Add the empty setAdditionalMmioList function to AubHelper class

Related-To: NEO-2993

Change-Id: I4d91b34578aecccf37920ffdf99428993803a1c2
Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
This commit is contained in:
Milczarek, Slawomir
2020-01-14 10:57:55 +01:00
committed by sys_ocldev
parent 1fca390c15
commit 0a60b6c099
3 changed files with 7 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2019 Intel Corporation
* Copyright (C) 2018-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -30,6 +30,7 @@ AubCenter::AubCenter(const HardwareInfo *pHwInfo, bool localMemoryEnabled, const
aubStreamMode = getAubStreamMode(aubFileName, type);
AubHelper::setAdditionalMmioList();
if (DebugManager.flags.AubDumpAddMmioRegistersList.get() != "unk") {
aub_stream::injectMMIOList(AubHelper::getAdditionalMmioList());
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2019 Intel Corporation
* Copyright (C) 2018-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -33,4 +33,7 @@ uint64_t AubHelper::getMemBankSize(const HardwareInfo *pHwInfo) {
return getTotalMemBankSize();
}
void AubHelper::setAdditionalMmioList() {
}
} // namespace NEO

View File

@@ -42,6 +42,7 @@ class AubHelper : public NonCopyableOrMovableClass {
static uint32_t getMemType(uint32_t addressSpace);
static uint64_t getMemBankSize(const HardwareInfo *pHwInfo);
static MMIOList getAdditionalMmioList();
static void setAdditionalMmioList();
virtual int getDataHintForPml4Entry() const = 0;
virtual int getDataHintForPdpEntry() const = 0;