/* * Copyright (C) 2021-2022 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/gen11/hw_cmds.h" #include "shared/source/gen11/hw_info.h" #include "shared/test/common/helpers/unit_test_helper.h" #include "shared/test/common/helpers/unit_test_helper.inl" #include "shared/test/common/helpers/unit_test_helper_bdw_and_later.inl" namespace NEO { using Family = Gen11Family; template <> uint32_t UnitTestHelper::getDebugModeRegisterOffset() { return 0x20d8; } template <> uint32_t UnitTestHelper::getDebugModeRegisterValue() { return (1u << 5) | (1u << 21); } template <> uint32_t UnitTestHelper::getTdCtlRegisterOffset() { return 0xe400; } template <> uint32_t UnitTestHelper::getTdCtlRegisterValue() { return (1u << 7) | (1u << 4); } template struct UnitTestHelper; } // namespace NEO