/* * Copyright (C) 2018-2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "runtime/command_stream/command_stream_receiver_with_aub_dump.inl" #include "runtime/command_stream/tbx_command_stream_receiver_hw.h" #include "runtime/command_stream/tbx_command_stream_receiver_hw.inl" #include "runtime/helpers/array_count.h" #include "runtime/helpers/base_object.h" #include "hw_cmds.h" namespace NEO { typedef ICLFamily Family; static auto gfxCore = IGFX_GEN11_CORE; template <> uint32_t TbxCommandStreamReceiverHw::getMaskAndValueForPollForCompletion() const { return 0x80; } template <> bool TbxCommandStreamReceiverHw::getpollNotEqualValueForPollForCompletion() const { return true; } template <> void populateFactoryTable>() { extern TbxCommandStreamReceiverCreateFunc tbxCommandStreamReceiverFactory[IGFX_MAX_CORE]; UNRECOVERABLE_IF(!isInRange(gfxCore, tbxCommandStreamReceiverFactory)); tbxCommandStreamReceiverFactory[gfxCore] = TbxCommandStreamReceiverHw::create; } template class TbxCommandStreamReceiverHw; template class CommandStreamReceiverWithAUBDump>; } // namespace NEO