mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 15:53:45 +08:00
- wddm_allocation.h/.cpp - os_context.h - residency_container.h Change-Id: I9f933a09d1142f86550c0d67626f0719b6450303 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
71 lines
3.2 KiB
C++
71 lines
3.2 KiB
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/os_interface/os_context.h"
|
|
#include "core/unit_tests/helpers/debug_manager_state_restore.h"
|
|
#include "runtime/aub_mem_dump/page_table_entry_bits.h"
|
|
#include "runtime/command_stream/aub_command_stream_receiver_hw.h"
|
|
#include "test.h"
|
|
#include "unit_tests/fixtures/device_fixture.h"
|
|
#include "unit_tests/helpers/hw_helper_tests.h"
|
|
#include "unit_tests/mocks/mock_aub_csr.h"
|
|
#include "unit_tests/mocks/mock_graphics_allocation.h"
|
|
#include "unit_tests/mocks/mock_os_context.h"
|
|
|
|
using namespace NEO;
|
|
|
|
using Gen12LPAubCommandStreamReceiverTests = Test<DeviceFixture>;
|
|
|
|
GEN12LPTEST_F(Gen12LPAubCommandStreamReceiverTests, givenAubCommandStreamReceiverWhenGetGUCWorkQueueItemHeaderIsCalledThenAppropriateValueDependingOnEngineTypeIsReturned) {
|
|
std::unique_ptr<AUBCommandStreamReceiverHw<FamilyType>> aubCsr(new AUBCommandStreamReceiverHw<FamilyType>("", true, *pDevice->executionEnvironment, pDevice->getRootDeviceIndex()));
|
|
MockOsContext rcsOsContext(0, 1, aub_stream::ENGINE_RCS, PreemptionMode::Disabled, false);
|
|
MockOsContext ccsOsContext(0, 1, aub_stream::ENGINE_CCS, PreemptionMode::Disabled, false);
|
|
|
|
aubCsr->setupContext(ccsOsContext);
|
|
uint32_t headerCCS = aubCsr->getGUCWorkQueueItemHeader();
|
|
aubCsr->setupContext(rcsOsContext);
|
|
uint32_t headerRCS = aubCsr->getGUCWorkQueueItemHeader();
|
|
|
|
EXPECT_EQ(0x00030401u, headerCCS);
|
|
EXPECT_EQ(0x00030001u, headerRCS);
|
|
}
|
|
|
|
GEN12LPTEST_F(Gen12LPAubCommandStreamReceiverTests, givenGraphicsAlloctionWhenGetPPGTTAdditionalBitsIsCalledThenAppropriateValueIsReturned) {
|
|
std::unique_ptr<AUBCommandStreamReceiverHw<FamilyType>> aubCsr(new AUBCommandStreamReceiverHw<FamilyType>("", true, *pDevice->executionEnvironment, pDevice->getRootDeviceIndex()));
|
|
MockGraphicsAllocation allocation(nullptr, 0);
|
|
auto bits = aubCsr->getPPGTTAdditionalBits(&allocation);
|
|
constexpr uint64_t expectedBits = BIT(PageTableEntry::presentBit) | BIT(PageTableEntry::writableBit);
|
|
|
|
EXPECT_EQ(expectedBits, bits);
|
|
}
|
|
|
|
GEN12LPTEST_F(Gen12LPAubCommandStreamReceiverTests, givenCCSEnabledWhenEngineMmiosAreInitializedThenExpectL3ConfigMmioIsWritten) {
|
|
MockOsContext osContext(0, 1, aub_stream::ENGINE_CCS, PreemptionMode::Disabled, false);
|
|
AUBCommandStreamReceiverHw<FamilyType> aubCsr("", true, *pDevice->executionEnvironment, pDevice->getRootDeviceIndex());
|
|
aubCsr.setupContext(osContext);
|
|
|
|
auto stream = std::make_unique<MockAubFileStreamMockMmioWrite>();
|
|
aubCsr.stream = stream.get();
|
|
|
|
aubCsr.initEngineMMIO();
|
|
|
|
EXPECT_TRUE(stream->isOnMmioList(MMIOPair(0xB234, 0xD0000020u)));
|
|
}
|
|
|
|
GEN12LPTEST_F(Gen12LPAubCommandStreamReceiverTests, givenRCSEnabledWhenEngineMmiosAreInitializedThenExpectL3ConfigMmioIsWritten) {
|
|
MockOsContext osContext(0, 1, aub_stream::ENGINE_RCS, PreemptionMode::Disabled, false);
|
|
AUBCommandStreamReceiverHw<FamilyType> aubCsr("", true, *pDevice->executionEnvironment, pDevice->getRootDeviceIndex());
|
|
aubCsr.setupContext(osContext);
|
|
|
|
auto stream = std::make_unique<MockAubFileStreamMockMmioWrite>();
|
|
aubCsr.stream = stream.get();
|
|
|
|
aubCsr.initEngineMMIO();
|
|
|
|
EXPECT_TRUE(stream->isOnMmioList(MMIOPair(0xB134, 0xD0000020u)));
|
|
}
|