mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Change-Id: I7d1bf567a67dc93c10d396aeb48ad1179b5b8ecb Signed-off-by: Daria Hinz <daria.hinz@intel.com>
26 lines
522 B
C++
26 lines
522 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "core/helpers/preamble.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct TGLLPFamily;
|
|
template <>
|
|
struct L3CNTLREGConfig<IGFX_TIGERLAKE_LP> {
|
|
static const uint32_t valueForSLM = 0xD0000020u;
|
|
static const uint32_t valueForNoSLM = 0xD0000020u;
|
|
};
|
|
|
|
template <>
|
|
struct L3CNTLRegisterOffset<TGLLPFamily> {
|
|
static const uint32_t registerOffset = 0xB134;
|
|
static const uint32_t registerOffsetCCS = 0xB234;
|
|
};
|
|
} // namespace NEO
|