mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
- for DG2 platforms it is valid only for G10/G11/G12 - for MTL platforms it is valid only for 12.70.0 and 12.71.0 Additionally: - setup default hw ip version for each platform - merge dg2 specific product helper tests to single file Related-To: HSD-14015808183, HSD-14015812625, HSD-14016015202 Related-To: HSD-14015812559, HSD-14015816823 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
27 lines
511 B
C++
27 lines
511 B
C++
/*
|
|
* Copyright (C) 2022-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
struct HardwareIpVersion {
|
|
HardwareIpVersion() = default;
|
|
HardwareIpVersion(uint32_t ipVersion) : value(ipVersion){};
|
|
union {
|
|
uint32_t value;
|
|
struct
|
|
{
|
|
uint32_t revision : 6;
|
|
uint32_t reserved : 8;
|
|
uint32_t release : 8;
|
|
uint32_t architecture : 10;
|
|
};
|
|
};
|
|
};
|
|
} // namespace NEO
|