2019-01-10 15:36:57 +01:00
|
|
|
/*
|
2023-02-07 12:53:53 +00:00
|
|
|
* Copyright (C) 2019-2023 Intel Corporation
|
2019-01-10 15:36:57 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/gen11/hw_cmds_base.h"
|
2023-02-07 12:53:53 +00:00
|
|
|
#include "shared/source/helpers/hw_info.h"
|
2019-01-10 15:36:57 +01:00
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
2022-07-25 15:30:11 +00:00
|
|
|
struct ICLLP : public Gen11Family {
|
2019-01-10 15:36:57 +01:00
|
|
|
static const PLATFORM platform;
|
|
|
|
|
static const HardwareInfo hwInfo;
|
2019-03-28 15:34:26 +01:00
|
|
|
static FeatureTable featureTable;
|
|
|
|
|
static WorkaroundTable workaroundTable;
|
2019-01-10 15:36:57 +01:00
|
|
|
static const uint32_t maxEuPerSubslice = 8;
|
|
|
|
|
static const uint32_t maxSlicesSupported = 1;
|
|
|
|
|
static const uint32_t maxSubslicesSupported = 8;
|
|
|
|
|
static const RuntimeCapabilityTable capabilityTable;
|
2023-11-16 14:24:12 +00:00
|
|
|
static void (*setupHardwareInfo)(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, uint64_t hwInfoConfig, const ReleaseHelper *releaseHelper);
|
2019-03-28 15:34:26 +01:00
|
|
|
static void setupFeatureAndWorkaroundTable(HardwareInfo *hwInfo);
|
2023-11-16 14:24:12 +00:00
|
|
|
static void setupHardwareInfoBase(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, const ReleaseHelper *releaseHelper);
|
2019-01-10 15:36:57 +01:00
|
|
|
};
|
|
|
|
|
|
2022-06-02 15:10:04 +00:00
|
|
|
class IcllpHw1x8x8 : public ICLLP {
|
2019-01-10 15:36:57 +01:00
|
|
|
public:
|
2023-11-16 14:24:12 +00:00
|
|
|
static void setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, const ReleaseHelper *releaseHelper);
|
2019-01-10 15:36:57 +01:00
|
|
|
static const HardwareInfo hwInfo;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
|
|
|
};
|
|
|
|
|
|
2022-06-02 15:10:04 +00:00
|
|
|
class IcllpHw1x4x8 : public ICLLP {
|
2019-01-10 15:36:57 +01:00
|
|
|
public:
|
2023-11-16 14:24:12 +00:00
|
|
|
static void setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, const ReleaseHelper *releaseHelper);
|
2019-01-10 15:36:57 +01:00
|
|
|
static const HardwareInfo hwInfo;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
|
|
|
};
|
2022-06-02 15:10:04 +00:00
|
|
|
class IcllpHw1x6x8 : public ICLLP {
|
2019-01-10 15:36:57 +01:00
|
|
|
public:
|
2023-11-16 14:24:12 +00:00
|
|
|
static void setupHardwareInfo(HardwareInfo *hwInfo, bool setupFeatureTableAndWorkaroundTable, const ReleaseHelper *releaseHelper);
|
2019-01-10 15:36:57 +01:00
|
|
|
static const HardwareInfo hwInfo;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
static GT_SYSTEM_INFO gtSystemInfo;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace NEO
|