2019-09-18 19:32:33 +02:00
|
|
|
/*
|
2020-01-27 17:28:10 +01:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-09-18 19:32:33 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2019-11-29 15:41:47 +01:00
|
|
|
#include "core/gen12lp/hw_cmds.h"
|
2020-01-27 17:28:10 +01:00
|
|
|
#include "core/helpers/array_count.h"
|
2019-09-18 19:32:33 +02:00
|
|
|
#include "core/memory_manager/memory_pool.h"
|
2020-02-22 09:28:27 +01:00
|
|
|
|
|
|
|
|
#include "aub_mem_dump/aub_mem_dump.h"
|
|
|
|
|
#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-09-18 19:32:33 +02: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
|