2019-09-19 01:32:33 +08:00
|
|
|
/*
|
2021-03-19 20:43:50 +08:00
|
|
|
* Copyright (C) 2019-2021 Intel Corporation
|
2019-09-19 01:32:33 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-12-07 19:22:25 +08:00
|
|
|
#include "shared/source/aub_mem_dump/aub_mem_dump.h"
|
2021-09-23 06:03:07 +08:00
|
|
|
#include "shared/source/command_stream/command_stream_receiver_with_aub_dump.inl"
|
2021-05-31 17:28:07 +08:00
|
|
|
#include "shared/source/command_stream/tbx_command_stream_receiver_hw.h"
|
|
|
|
#include "shared/source/command_stream/tbx_command_stream_receiver_hw.inl"
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/gen12lp/hw_cmds.h"
|
|
|
|
#include "shared/source/helpers/array_count.h"
|
2020-10-14 20:04:29 +08:00
|
|
|
#include "shared/source/helpers/populate_factory.h"
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/memory_manager/memory_pool.h"
|
2020-02-24 17:22:30 +08:00
|
|
|
|
2019-09-19 01:32:33 +08:00
|
|
|
namespace NEO {
|
|
|
|
typedef TGLLPFamily Family;
|
|
|
|
static auto gfxCore = IGFX_GEN12LP_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
|