225 lines
7.6 KiB
C++
225 lines
7.6 KiB
C++
/*
|
|
* Copyright (c) 2017 - 2018, Intel Corporation
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included
|
|
* in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "hw_info_skl.h"
|
|
#include "hw_cmds.h"
|
|
#include "runtime/helpers/engine_node.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
const char *HwMapper<IGFX_SKYLAKE>::abbreviation = "skl";
|
|
|
|
bool isSimulationSKL(unsigned short deviceId) {
|
|
switch (deviceId) {
|
|
case ISKL_GT0_DESK_DEVICE_F0_ID:
|
|
case ISKL_GT1_DESK_DEVICE_F0_ID:
|
|
case ISKL_GT2_DESK_DEVICE_F0_ID:
|
|
case ISKL_GT3_DESK_DEVICE_F0_ID:
|
|
case ISKL_GT4_DESK_DEVICE_F0_ID:
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
|
|
const PLATFORM SKL::platform = {
|
|
IGFX_SKYLAKE,
|
|
PCH_UNKNOWN,
|
|
IGFX_GEN9_CORE,
|
|
IGFX_GEN9_CORE,
|
|
PLATFORM_NONE, // default init
|
|
0, // usDeviceID
|
|
9, // usRevId. 0 sets the stepping to A0
|
|
0, // usDeviceID_PCH
|
|
0, // usRevId_PCH
|
|
GTTYPE_UNDEFINED};
|
|
|
|
const RuntimeCapabilityTable SKL::capabilityTable{
|
|
0,
|
|
83.333,
|
|
21,
|
|
true,
|
|
true,
|
|
true,
|
|
true,
|
|
true, // ftrSupportsVmeAvcTextureSampler
|
|
false, // ftrSupportsVmeAvcPreemption
|
|
false,
|
|
PreemptionMode::MidThread,
|
|
{true, false},
|
|
&isSimulationSKL,
|
|
true,
|
|
true, // forceStatelessCompilationFor32Bit
|
|
false, // EnableKmdNotify
|
|
30, // delayKmdNotifyMs
|
|
true, // ftr64KBpages
|
|
EngineType::ENGINE_RCS // nodeOrdinal
|
|
};
|
|
|
|
const HardwareInfo SKL_1x2x6::hwInfo = {
|
|
&SKL::platform,
|
|
&emptySkuTable,
|
|
&emptyWaTable,
|
|
&SKL_1x2x6::gtSystemInfo,
|
|
SKL::capabilityTable,
|
|
};
|
|
GT_SYSTEM_INFO SKL_1x2x6::gtSystemInfo = {0};
|
|
void SKL_1x2x6::setupGtSystemInfo(GT_SYSTEM_INFO *gtSysInfo) {
|
|
gtSysInfo->EUCount = 11;
|
|
gtSysInfo->ThreadCount = 11 * SKL::threadsPerEu;
|
|
gtSysInfo->SliceCount = 1;
|
|
gtSysInfo->SubSliceCount = 2;
|
|
gtSysInfo->L3CacheSizeInKb = 384;
|
|
gtSysInfo->L3BankCount = 2;
|
|
gtSysInfo->MaxFillRate = 8;
|
|
gtSysInfo->TotalVsThreads = 336;
|
|
gtSysInfo->TotalHsThreads = 336;
|
|
gtSysInfo->TotalDsThreads = 336;
|
|
gtSysInfo->TotalGsThreads = 336;
|
|
gtSysInfo->TotalPsThreadsWindowerRange = 64;
|
|
gtSysInfo->CsrSizeInMb = 8;
|
|
gtSysInfo->MaxEuPerSubSlice = SKL::maxEuPerSubslice;
|
|
gtSysInfo->MaxSlicesSupported = SKL::maxSlicesSupported;
|
|
gtSysInfo->MaxSubSlicesSupported = SKL::maxSubslicesSupported;
|
|
gtSysInfo->IsL3HashModeEnabled = false;
|
|
gtSysInfo->IsDynamicallyPopulated = false;
|
|
};
|
|
|
|
const HardwareInfo SKL_1x3x6::hwInfo = {
|
|
&SKL::platform,
|
|
&emptySkuTable,
|
|
&emptyWaTable,
|
|
&SKL_1x3x6::gtSystemInfo,
|
|
SKL::capabilityTable,
|
|
};
|
|
GT_SYSTEM_INFO SKL_1x3x6::gtSystemInfo = {0};
|
|
void SKL_1x3x6::setupGtSystemInfo(GT_SYSTEM_INFO *gtSysInfo) {
|
|
gtSysInfo->EUCount = 17;
|
|
gtSysInfo->ThreadCount = 17 * SKL::threadsPerEu;
|
|
gtSysInfo->SliceCount = 1;
|
|
gtSysInfo->SubSliceCount = 3;
|
|
gtSysInfo->L3CacheSizeInKb = 768;
|
|
gtSysInfo->L3BankCount = 4;
|
|
gtSysInfo->MaxFillRate = 8;
|
|
gtSysInfo->TotalVsThreads = 336;
|
|
gtSysInfo->TotalHsThreads = 336;
|
|
gtSysInfo->TotalDsThreads = 336;
|
|
gtSysInfo->TotalGsThreads = 336;
|
|
gtSysInfo->TotalPsThreadsWindowerRange = 64;
|
|
gtSysInfo->CsrSizeInMb = 8;
|
|
gtSysInfo->MaxEuPerSubSlice = SKL::maxEuPerSubslice;
|
|
gtSysInfo->MaxSlicesSupported = SKL::maxSlicesSupported;
|
|
gtSysInfo->MaxSubSlicesSupported = SKL::maxSubslicesSupported;
|
|
gtSysInfo->IsL3HashModeEnabled = false;
|
|
gtSysInfo->IsDynamicallyPopulated = false;
|
|
};
|
|
|
|
const HardwareInfo SKL_1x3x8::hwInfo = {
|
|
&SKL::platform,
|
|
&emptySkuTable,
|
|
&emptyWaTable,
|
|
&SKL_1x3x8::gtSystemInfo,
|
|
SKL::capabilityTable,
|
|
};
|
|
GT_SYSTEM_INFO SKL_1x3x8::gtSystemInfo = {0};
|
|
void SKL_1x3x8::setupGtSystemInfo(GT_SYSTEM_INFO *gtSysInfo) {
|
|
gtSysInfo->EUCount = 23;
|
|
gtSysInfo->ThreadCount = 23 * SKL::threadsPerEu;
|
|
gtSysInfo->SliceCount = 1;
|
|
gtSysInfo->SubSliceCount = 3;
|
|
gtSysInfo->L3CacheSizeInKb = 768;
|
|
gtSysInfo->L3BankCount = 4;
|
|
gtSysInfo->MaxFillRate = 8;
|
|
gtSysInfo->TotalVsThreads = 336;
|
|
gtSysInfo->TotalHsThreads = 336;
|
|
gtSysInfo->TotalDsThreads = 336;
|
|
gtSysInfo->TotalGsThreads = 336;
|
|
gtSysInfo->TotalPsThreadsWindowerRange = 64;
|
|
gtSysInfo->CsrSizeInMb = 8;
|
|
gtSysInfo->MaxEuPerSubSlice = SKL::maxEuPerSubslice;
|
|
gtSysInfo->MaxSlicesSupported = SKL::maxSlicesSupported;
|
|
gtSysInfo->MaxSubSlicesSupported = SKL::maxSubslicesSupported;
|
|
gtSysInfo->IsL3HashModeEnabled = false;
|
|
gtSysInfo->IsDynamicallyPopulated = false;
|
|
};
|
|
|
|
const HardwareInfo SKL_2x3x8::hwInfo = {
|
|
&SKL::platform,
|
|
&emptySkuTable,
|
|
&emptyWaTable,
|
|
&SKL_2x3x8::gtSystemInfo,
|
|
SKL::capabilityTable,
|
|
};
|
|
GT_SYSTEM_INFO SKL_2x3x8::gtSystemInfo = {0};
|
|
void SKL_2x3x8::setupGtSystemInfo(GT_SYSTEM_INFO *gtSysInfo) {
|
|
gtSysInfo->EUCount = 47;
|
|
gtSysInfo->ThreadCount = 47 * SKL::threadsPerEu;
|
|
gtSysInfo->SliceCount = 2;
|
|
gtSysInfo->SubSliceCount = 6;
|
|
gtSysInfo->L3CacheSizeInKb = 1536;
|
|
gtSysInfo->L3BankCount = 8;
|
|
gtSysInfo->MaxFillRate = 16;
|
|
gtSysInfo->TotalVsThreads = 336;
|
|
gtSysInfo->TotalHsThreads = 336;
|
|
gtSysInfo->TotalDsThreads = 336;
|
|
gtSysInfo->TotalGsThreads = 336;
|
|
gtSysInfo->TotalPsThreadsWindowerRange = 64;
|
|
gtSysInfo->CsrSizeInMb = 8;
|
|
gtSysInfo->MaxEuPerSubSlice = SKL::maxEuPerSubslice;
|
|
gtSysInfo->MaxSlicesSupported = SKL::maxSlicesSupported;
|
|
gtSysInfo->MaxSubSlicesSupported = SKL::maxSubslicesSupported;
|
|
gtSysInfo->IsL3HashModeEnabled = false;
|
|
gtSysInfo->IsDynamicallyPopulated = false;
|
|
};
|
|
|
|
const HardwareInfo SKL_3x3x8::hwInfo = {
|
|
&SKL::platform,
|
|
&emptySkuTable,
|
|
&emptyWaTable,
|
|
&SKL_3x3x8::gtSystemInfo,
|
|
SKL::capabilityTable,
|
|
};
|
|
GT_SYSTEM_INFO SKL_3x3x8::gtSystemInfo = {0};
|
|
void SKL_3x3x8::setupGtSystemInfo(GT_SYSTEM_INFO *gtSysInfo) {
|
|
gtSysInfo->EUCount = 71;
|
|
gtSysInfo->ThreadCount = 71 * SKL::threadsPerEu;
|
|
gtSysInfo->SliceCount = 3;
|
|
gtSysInfo->SubSliceCount = 9;
|
|
gtSysInfo->L3CacheSizeInKb = 2304;
|
|
gtSysInfo->L3BankCount = 12;
|
|
gtSysInfo->MaxFillRate = 24;
|
|
gtSysInfo->TotalVsThreads = 336;
|
|
gtSysInfo->TotalHsThreads = 336;
|
|
gtSysInfo->TotalDsThreads = 336;
|
|
gtSysInfo->TotalGsThreads = 336;
|
|
gtSysInfo->TotalPsThreadsWindowerRange = 64;
|
|
gtSysInfo->CsrSizeInMb = 8;
|
|
gtSysInfo->MaxEuPerSubSlice = SKL::maxEuPerSubslice;
|
|
gtSysInfo->MaxSlicesSupported = SKL::maxSlicesSupported;
|
|
gtSysInfo->MaxSubSlicesSupported = SKL::maxSubslicesSupported;
|
|
gtSysInfo->IsL3HashModeEnabled = false;
|
|
gtSysInfo->IsDynamicallyPopulated = false;
|
|
};
|
|
|
|
const HardwareInfo SKL::hwInfo = SKL_1x3x8::hwInfo;
|
|
void (*SKL::setupGtSystemInfo)(GT_SYSTEM_INFO *) = SKL_1x3x8::setupGtSystemInfo;
|
|
} // namespace OCLRT
|