2019-01-10 22:36:57 +08:00
|
|
|
/*
|
2020-01-14 17:57:08 +08:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2019-01-10 22:36:57 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-11-29 22:41:47 +08:00
|
|
|
#include "core/gen11/hw_cmds.h"
|
2020-01-28 00:28:10 +08:00
|
|
|
#include "core/helpers/array_count.h"
|
2020-02-22 16:28:27 +08:00
|
|
|
|
|
|
|
#include "command_stream/command_stream_receiver_with_aub_dump.inl"
|
|
|
|
#include "command_stream/tbx_command_stream_receiver_hw.h"
|
|
|
|
#include "command_stream/tbx_command_stream_receiver_hw.inl"
|
|
|
|
#include "helpers/base_object.h"
|
2019-01-10 22:36:57 +08:00
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
typedef ICLFamily Family;
|
|
|
|
static auto gfxCore = IGFX_GEN11_CORE;
|
|
|
|
|
|
|
|
template <>
|
|
|
|
uint32_t TbxCommandStreamReceiverHw<Family>::getMaskAndValueForPollForCompletion() const {
|
|
|
|
return 0x80;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
bool TbxCommandStreamReceiverHw<Family>::getpollNotEqualValueForPollForCompletion() const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
void populateFactoryTable<TbxCommandStreamReceiverHw<Family>>() {
|
|
|
|
extern TbxCommandStreamReceiverCreateFunc tbxCommandStreamReceiverFactory[IGFX_MAX_CORE];
|
|
|
|
UNRECOVERABLE_IF(!isInRange(gfxCore, tbxCommandStreamReceiverFactory));
|
|
|
|
tbxCommandStreamReceiverFactory[gfxCore] = TbxCommandStreamReceiverHw<Family>::create;
|
|
|
|
}
|
|
|
|
|
|
|
|
template class TbxCommandStreamReceiverHw<Family>;
|
|
|
|
template class CommandStreamReceiverWithAUBDump<TbxCommandStreamReceiverHw<Family>>;
|
|
|
|
} // namespace NEO
|