2019-09-18 19:32:33 +02:00
|
|
|
/*
|
2020-02-22 09:28:27 +01:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-09-18 19:32:33 +02:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/helpers/preamble.h"
|
2019-09-18 19:32:33 +02:00
|
|
|
|
|
|
|
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
|