2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2020-02-22 09:28:27 +01:00
|
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/helpers/preamble.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2018-01-17 08:37:47 +01:00
|
|
|
struct BDWFamily;
|
2017-12-21 00:45:38 +01:00
|
|
|
template <>
|
|
|
|
|
struct L3CNTLREGConfig<IGFX_BROADWELL> {
|
2019-02-18 13:43:10 +01:00
|
|
|
static const uint32_t valueForSLM = 0x60000321u;
|
|
|
|
|
static const uint32_t valueForNoSLM = 0x80000340u;
|
2017-12-21 00:45:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <>
|
|
|
|
|
struct L3CNTLRegisterOffset<BDWFamily> {
|
|
|
|
|
static const uint32_t registerOffset = 0x7034;
|
|
|
|
|
};
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|