48 lines
1.4 KiB
C++
48 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/gen9/hw_cmds_base.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct BXT : public Gen9Family {
|
|
static const PLATFORM platform;
|
|
static const HardwareInfo hwInfo;
|
|
static const uint64_t defaultHardwareInfoConfig;
|
|
static FeatureTable featureTable;
|
|
static WorkaroundTable workaroundTable;
|
|
static const uint32_t threadsPerEu = 6;
|
|
static const uint32_t maxEuPerSubslice = 6;
|
|
static const uint32_t maxSlicesSupported = 1;
|
|
static const uint32_t maxSubslicesSupported = 3;
|
|
|
|
static const RuntimeCapabilityTable capabilityTable;
|
|
static void (*setupHardwareInfo)(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, uint64_t hwInfoConfig);
|
|
static void setupFeatureAndWorkaroundTable(HardwareInfo *hwInfo);
|
|
static void setupHardwareInfoBase(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable);
|
|
};
|
|
|
|
class BxtHw1x2x6 : public BXT {
|
|
public:
|
|
static void setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable);
|
|
static const HardwareInfo hwInfo;
|
|
|
|
private:
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
};
|
|
|
|
class BxtHw1x3x6 : public BXT {
|
|
public:
|
|
static void setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable);
|
|
static const HardwareInfo hwInfo;
|
|
|
|
private:
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
};
|
|
} // namespace NEO
|