build: dependencies update

Signed-off-by: ocldev <ocldev@intel.com>
This commit is contained in:
ocldev
2024-05-13 14:24:33 +02:00
committed by Compute-Runtime-Automation
parent 61721be724
commit 4abe8c8253
4 changed files with 12 additions and 5 deletions

2
Jenkinsfile vendored
View File

@@ -7,5 +7,5 @@
* *
*/ */
dependenciesRevision='52a53e6a45698894fc239a8dbf3b9401c16189f0-2413' dependenciesRevision='ddd15727ca5bd2d8045aba89ca10132faf18150f-2433'
kernelVersion='dev-5478' kernelVersion='dev-5478'

View File

@@ -3,7 +3,7 @@ components:
branch: master branch: master
dest_dir: aub_stream dest_dir: aub_stream
repository: https://github.com/intel/aubstream repository: https://github.com/intel/aubstream
revision: 22732c4cd078470cc019bf5289ee0dab186383c9 revision: f6e055bab58f0790ce4900940307cbf9c1b5e761
type: git type: git
gmmlib: gmmlib:
asset_name: gmmlib asset_name: gmmlib
@@ -42,7 +42,7 @@ components:
dest_dir: kernels_bin dest_dir: kernels_bin
type: git type: git
branch: kernels_bin branch: kernels_bin
revision: 2413-1684 revision: 2433-1685
kmdaf: kmdaf:
branch: kmdaf branch: kmdaf
dest_dir: kmdaf dest_dir: kmdaf
@@ -85,11 +85,11 @@ components:
dest_dir: wdk dest_dir: wdk
type: git type: git
branch: wdk branch: wdk
revision: af47eb52bcc938c167ae79b8edc74b621a673761-2369 revision: ddd15727ca5bd2d8045aba89ca10132faf18150f-2433
wsl: wsl:
branch: wsl branch: wsl
dest_dir: wsl dest_dir: wsl
revision: 56430997dac34ca0e9e18c177636234cac26ad54 revision: 56430997dac34ca0e9e18c177636234cac26ad54
type: git type: git
converter: M-2413 converter: M-2433
version: '1' version: '1'

View File

@@ -67,6 +67,8 @@ class AubManager {
virtual uint32_t readMMIO(uint32_t offset) { return 0; } virtual uint32_t readMMIO(uint32_t offset) { return 0; }
virtual void writePCICFG(uint32_t offset, uint32_t value) {} virtual void writePCICFG(uint32_t offset, uint32_t value) {}
virtual uint32_t readPCICFG(uint32_t offset) { return 0; } virtual uint32_t readPCICFG(uint32_t offset) { return 0; }
virtual void blockMemWritesViaTbx(bool onoff) {}
}; };
} // namespace aub_stream } // namespace aub_stream

View File

@@ -63,6 +63,8 @@ constexpr uint32_t tbxShm = 3;
constexpr uint32_t tbxShm3 = 4; constexpr uint32_t tbxShm3 = 4;
constexpr uint32_t tbxShm4 = 5; constexpr uint32_t tbxShm4 = 5;
constexpr uint32_t null = 6; constexpr uint32_t null = 6;
constexpr uint32_t aubFileAndShm = 7;
constexpr uint32_t aubFileAndShm4 = 8;
} // namespace mode } // namespace mode
namespace clearColorType { namespace clearColorType {
@@ -79,6 +81,9 @@ extern "C" void setTbxServerIp(std::string server);
extern "C" void setTbxFrontdoorMode(bool frontdoor); extern "C" void setTbxFrontdoorMode(bool frontdoor);
extern "C" void setAubStreamCaller(uint32_t caller); extern "C" void setAubStreamCaller(uint32_t caller);
extern "C" void injectMMIOListLegacy(MMIOList mmioList);
extern "C" void setTbxServerIpLegacy(std::string server);
namespace caller { namespace caller {
constexpr uint32_t neo = 0; constexpr uint32_t neo = 0;
constexpr uint32_t rlr = 1; constexpr uint32_t rlr = 1;