/* * Copyright (C) 2018-2024 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/aub_mem_dump/definitions/aub_services.h" #include "shared/source/command_stream/preemption_mode.h" #include "shared/source/gen9/hw_cmds_kbl.h" #include "shared/source/gen9/kbl/device_ids_configs_kbl.h" #include "shared/source/helpers/constants.h" #include "aubstream/engine_node.h" namespace NEO { const char *HwMapper::abbreviation = "kbl"; const PLATFORM KBL::platform = { IGFX_KABYLAKE, PCH_UNKNOWN, IGFX_GEN9_CORE, IGFX_GEN9_CORE, PLATFORM_NONE, // default init kblDeviceIds[0], // usDeviceID 9, // usRevId. 0 sets the stepping to A0 0, // usDeviceID_PCH 0, // usRevId_PCH GTTYPE_UNDEFINED}; const RuntimeCapabilityTable KBL::capabilityTable{ EngineDirectSubmissionInitVec{ {aub_stream::ENGINE_RCS, {true, true}}}, // directSubmissionEngines {0, 0, 0, 0, false, false, false, false}, // kmdNotifyProperties MemoryConstants::max48BitAddress, // gpuAddressSpace 0, // sharedSystemMemCapabilities 83.333, // defaultProfilingTimerResolution MemoryConstants::pageSize, // requiredPreemptionSurfaceSize "", // deviceName nullptr, // preferredPlatformName PreemptionMode::MidThread, // defaultPreemptionMode aub_stream::ENGINE_RCS, // defaultEngineType 0, // maxRenderFrequency 30, // clVersionSupport CmdServicesMemTraceVersion::DeviceValues::Kbl, // aubDeviceId 0, // extraQuantityThreadsPerEU 64, // slmSize sizeof(KBL::GRF), // grfSize 36u, // timestampValidBits 32u, // kernelTimestampValidBits false, // blitterOperationsSupported true, // ftrSupportsInteger64BitAtomics true, // ftrSupportsFP64 false, // ftrSupportsFP64Emulation true, // ftrSupports64BitMath true, // ftrSvm true, // ftrSupportsCoherency true, // ftrSupportsVmeAvcTextureSampler false, // ftrSupportsVmeAvcPreemption false, // ftrRenderCompressedBuffers false, // ftrRenderCompressedImages true, // ftr64KBpages true, // instrumentationEnabled true, // supportsVme false, // supportCacheFlushAfterWalker true, // supportsImages false, // supportsDeviceEnqueue true, // supportsPipes true, // supportsOcl21Features false, // supportsOnDemandPageFaults true, // supportsIndependentForwardProgress true, // hostPtrTrackingEnabled true, // levelZeroSupported true, // isIntegratedDevice true, // supportsMediaBlock false, // p2pAccessSupported false, // p2pAtomicAccessSupported false, // fusedEuEnabled false, // l0DebuggerSupported; false, // supportsFloatAtomics 0 // cxlType }; WorkaroundTable KBL::workaroundTable = {}; FeatureTable KBL::featureTable = {}; void KBL::setupFeatureAndWorkaroundTable(HardwareInfo *hwInfo) { PLATFORM *platform = &hwInfo->platform; FeatureTable *featureTable = &hwInfo->featureTable; WorkaroundTable *workaroundTable = &hwInfo->workaroundTable; featureTable->flags.ftrGpGpuMidBatchPreempt = true; featureTable->flags.ftrGpGpuThreadGroupLevelPreempt = true; featureTable->flags.ftrL3IACoherency = true; featureTable->flags.ftrGpGpuMidThreadLevelPreempt = true; featureTable->flags.ftrPPGTT = true; featureTable->flags.ftrSVM = true; featureTable->flags.ftrIA32eGfxPTEs = true; featureTable->flags.ftrDisplayYTiling = true; featureTable->flags.ftrTranslationTable = true; featureTable->flags.ftrUserModeTranslationTable = true; featureTable->flags.ftrFbc = true; featureTable->flags.ftrTileY = true; workaroundTable->flags.waSendMIFLUSHBeforeVFE = true; workaroundTable->flags.waMsaa8xTileYDepthPitchAlignment = true; workaroundTable->flags.waLosslessCompressionSurfaceStride = true; workaroundTable->flags.waFbcLinearSurfaceStride = true; workaroundTable->flags.wa4kAlignUVOffsetNV12LinearSurface = true; workaroundTable->flags.waSamplerCacheFlushBetweenRedescribedSurfaceReads = true; if (platform->usRevId <= 0x6) { workaroundTable->flags.waDisableLSQCROPERFforOCL = true; workaroundTable->flags.waEncryptedEdramOnlyPartials = true; } } void KBL::setupHardwareInfoBase(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, const ReleaseHelper *releaseHelper) { GT_SYSTEM_INFO *gtSysInfo = &hwInfo->gtSystemInfo; gtSysInfo->ThreadCount = gtSysInfo->EUCount * 7u; gtSysInfo->TotalVsThreads = 336; gtSysInfo->TotalHsThreads = 336; gtSysInfo->TotalDsThreads = 336; gtSysInfo->TotalGsThreads = 336; gtSysInfo->TotalPsThreadsWindowerRange = 64; gtSysInfo->CsrSizeInMb = 8; gtSysInfo->MaxEuPerSubSlice = KBL::maxEuPerSubslice; gtSysInfo->MaxSlicesSupported = KBL::maxSlicesSupported; gtSysInfo->MaxSubSlicesSupported = KBL::maxSubslicesSupported; gtSysInfo->IsL3HashModeEnabled = false; gtSysInfo->IsDynamicallyPopulated = false; if (setupFeatureTableAndWorkaroundTable) { setupFeatureAndWorkaroundTable(hwInfo); } } const HardwareInfo KblHw1x2x6::hwInfo = { &KBL::platform, &KBL::featureTable, &KBL::workaroundTable, &KblHw1x2x6::gtSystemInfo, KBL::capabilityTable}; GT_SYSTEM_INFO KblHw1x2x6::gtSystemInfo = {0}; void KblHw1x2x6::setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, const ReleaseHelper *releaseHelper) { KBL::setupHardwareInfoBase(hwInfo, setupFeatureTableAndWorkaroundTable, releaseHelper); GT_SYSTEM_INFO *gtSysInfo = &hwInfo->gtSystemInfo; gtSysInfo->SliceCount = 1; gtSysInfo->L3CacheSizeInKb = 384; gtSysInfo->L3BankCount = 2; gtSysInfo->MaxFillRate = 8; }; const HardwareInfo KblHw1x3x6::hwInfo = { &KBL::platform, &KBL::featureTable, &KBL::workaroundTable, &KblHw1x3x6::gtSystemInfo, KBL::capabilityTable}; GT_SYSTEM_INFO KblHw1x3x6::gtSystemInfo = {0}; void KblHw1x3x6::setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, const ReleaseHelper *releaseHelper) { KBL::setupHardwareInfoBase(hwInfo, setupFeatureTableAndWorkaroundTable, releaseHelper); GT_SYSTEM_INFO *gtSysInfo = &hwInfo->gtSystemInfo; gtSysInfo->SliceCount = 1; gtSysInfo->L3CacheSizeInKb = 768; gtSysInfo->L3BankCount = 4; gtSysInfo->MaxFillRate = 8; }; const HardwareInfo KblHw1x3x8::hwInfo = { &KBL::platform, &KBL::featureTable, &KBL::workaroundTable, &KblHw1x3x8::gtSystemInfo, KBL::capabilityTable}; GT_SYSTEM_INFO KblHw1x3x8::gtSystemInfo = {0}; void KblHw1x3x8::setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, const ReleaseHelper *releaseHelper) { KBL::setupHardwareInfoBase(hwInfo, setupFeatureTableAndWorkaroundTable, releaseHelper); GT_SYSTEM_INFO *gtSysInfo = &hwInfo->gtSystemInfo; gtSysInfo->SliceCount = 1; gtSysInfo->L3CacheSizeInKb = 768; gtSysInfo->L3BankCount = 4; gtSysInfo->MaxFillRate = 8; }; const HardwareInfo KblHw2x3x8::hwInfo = { &KBL::platform, &KBL::featureTable, &KBL::workaroundTable, &KblHw2x3x8::gtSystemInfo, KBL::capabilityTable}; GT_SYSTEM_INFO KblHw2x3x8::gtSystemInfo = {0}; void KblHw2x3x8::setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, const ReleaseHelper *releaseHelper) { KBL::setupHardwareInfoBase(hwInfo, setupFeatureTableAndWorkaroundTable, releaseHelper); GT_SYSTEM_INFO *gtSysInfo = &hwInfo->gtSystemInfo; gtSysInfo->SliceCount = 2; gtSysInfo->L3CacheSizeInKb = 1536; gtSysInfo->L3BankCount = 8; gtSysInfo->MaxFillRate = 16; }; const HardwareInfo KblHw3x3x8::hwInfo = { &KBL::platform, &KBL::featureTable, &KBL::workaroundTable, &KblHw3x3x8::gtSystemInfo, KBL::capabilityTable}; GT_SYSTEM_INFO KblHw3x3x8::gtSystemInfo = {0}; void KblHw3x3x8::setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, const ReleaseHelper *releaseHelper) { KBL::setupHardwareInfoBase(hwInfo, setupFeatureTableAndWorkaroundTable, releaseHelper); GT_SYSTEM_INFO *gtSysInfo = &hwInfo->gtSystemInfo; gtSysInfo->SliceCount = 3; gtSysInfo->L3CacheSizeInKb = 2304; gtSysInfo->L3BankCount = 12; gtSysInfo->MaxFillRate = 23; }; const HardwareInfo KBL::hwInfo = KblHw1x3x6::hwInfo; void setupKBLHardwareInfoImpl(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, uint64_t hwInfoConfig, const ReleaseHelper *releaseHelper) { if (hwInfoConfig == 0x100030008) { KblHw1x3x8::setupHardwareInfo(hwInfo, setupFeatureTableAndWorkaroundTable, releaseHelper); } else if (hwInfoConfig == 0x200030008) { KblHw2x3x8::setupHardwareInfo(hwInfo, setupFeatureTableAndWorkaroundTable, releaseHelper); } else if (hwInfoConfig == 0x300030008) { KblHw3x3x8::setupHardwareInfo(hwInfo, setupFeatureTableAndWorkaroundTable, releaseHelper); } else if (hwInfoConfig == 0x100020006) { KblHw1x2x6::setupHardwareInfo(hwInfo, setupFeatureTableAndWorkaroundTable, releaseHelper); } else if (hwInfoConfig == 0x100030006) { KblHw1x3x6::setupHardwareInfo(hwInfo, setupFeatureTableAndWorkaroundTable, releaseHelper); } else if (hwInfoConfig == 0x0) { // Default config KblHw1x3x6::setupHardwareInfo(hwInfo, setupFeatureTableAndWorkaroundTable, releaseHelper); } else { UNRECOVERABLE_IF(true); } } void (*KBL::setupHardwareInfo)(HardwareInfo *, bool, uint64_t, const ReleaseHelper *) = setupKBLHardwareInfoImpl; } // namespace NEO