mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Updating files modified in 2018 only. Older files remain with old style copyright header Change-Id: Ic99f2e190ad74b4b7f2bd79dd7b9fa5fbe36ec92 Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
28 lines
530 B
C++
28 lines
530 B
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/helpers/preamble.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
struct CNLFamily;
|
|
template <>
|
|
struct L3CNTLREGConfig<IGFX_CANNONLAKE> {
|
|
static const uint32_t valueForSLM = 0xA0000121u;
|
|
static const uint32_t valueForNoSLM = 0xc0000140u;
|
|
};
|
|
|
|
template <>
|
|
struct L3CNTLRegisterOffset<CNLFamily> {
|
|
static const uint32_t registerOffset = 0x7034;
|
|
};
|
|
|
|
const uint32_t gen10HdcModeRegisterAddresss = 0xE5F0;
|
|
|
|
} // namespace OCLRT
|