2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2019-02-18 13:43:10 +01:00
|
|
|
* Copyright (C) 2017-2019 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
|
|
|
|
|
#include "runtime/helpers/preamble.h"
|
|
|
|
|
|
|
|
|
|
namespace OCLRT {
|
|
|
|
|
|
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;
|
|
|
|
|
};
|
2018-06-12 21:54:39 +02:00
|
|
|
} // namespace OCLRT
|