1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2023 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
// This file stores version of indirect access detection mechanism that is supported
// by IGC. The version is used to generate .note.intelgt.compat in ZEBinary. It is also
// shared with Neo, so that a decision whether a kernel binary requires recompilation can be made.
// It also includes the major version of Indirect Access Buffer layout,
// as defined in its spec.
#pragma once
const uint32_t INDIRECT_ACCESS_DETECTION_VERSION = 10;
const uint32_t INDIRECT_ACCESS_BUFFER_MAJOR_VERSION = 1;
|