mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 08:37:12 +08:00
- Use inline constexpr for declaring global variables - Avoid using Macros - Use string_view type instead of std::string Signed-off-by: Jitendra Sharma <jitendra.sharma@intel.com>
101 lines
3.7 KiB
C++
101 lines
3.7 KiB
C++
/*
|
|
* Copyright (C) 2023-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <level_zero/zes_api.h>
|
|
|
|
#include <chrono>
|
|
#include <map>
|
|
#include <string_view>
|
|
|
|
namespace L0 {
|
|
namespace Sysman {
|
|
|
|
inline constexpr std::string_view vendorIntel("Intel(R) Corporation");
|
|
inline constexpr std::string_view unknown("unknown");
|
|
inline constexpr std::string_view intelPciId("0x8086");
|
|
inline constexpr std::string_view guid64BitMemoryCounters("0xb15a0ede");
|
|
inline constexpr uint32_t mbpsToBytesPerSecond = 125000;
|
|
inline constexpr double milliVoltsFactor = 1000.0;
|
|
inline constexpr uint32_t maxRasErrorCategoryCount = 7;
|
|
inline constexpr uint32_t maxRasErrorCategoryExpCount = 10;
|
|
|
|
inline constexpr double maxPerformanceFactor = 100;
|
|
inline constexpr double halfOfMaxPerformanceFactor = 50;
|
|
inline constexpr double minPerformanceFactor = 0;
|
|
|
|
inline constexpr uint32_t numSocTemperatureEntries = 7; // entries would be PCH or GT_TEMP, DRAM, SA, PSF, DE, PCIE, TYPEC
|
|
inline constexpr uint32_t numCoreTemperatureEntries = 4; // entries would be CORE0, CORE1, CORE2, CORE3
|
|
inline constexpr uint32_t numComputeTemperatureEntries = 3; // entries would be IA, GT and LLC
|
|
inline constexpr uint32_t invalidMaxTemperature = 125;
|
|
inline constexpr uint32_t invalidMinTemperature = 10;
|
|
inline constexpr uint32_t vendorIdIntel = 0x8086;
|
|
|
|
struct SteadyClock {
|
|
typedef std::chrono::duration<uint64_t, std::milli> duration;
|
|
typedef duration::rep rep;
|
|
typedef duration::period period;
|
|
typedef std::chrono::time_point<SteadyClock> time_point;
|
|
static time_point now() noexcept {
|
|
static auto epoch = std::chrono::steady_clock::now();
|
|
return time_point(std::chrono::duration_cast<duration>(std::chrono::steady_clock::now() - epoch));
|
|
}
|
|
};
|
|
|
|
namespace PciLinkSpeeds {
|
|
inline constexpr double pci2Dot5GigaTransfersPerSecond = 2.5;
|
|
inline constexpr double pci5GigaTransfersPerSecond = 5.0;
|
|
inline constexpr double pci8GigaTransfersPerSecond = 8.0;
|
|
inline constexpr double pci16GigaTransfersPerSecond = 16.0;
|
|
inline constexpr double pci32GigaTransfersPerSecond = 32.0;
|
|
|
|
} // namespace PciLinkSpeeds
|
|
enum PciGenerations {
|
|
PciGen1 = 1,
|
|
PciGen2,
|
|
PciGen3,
|
|
PciGen4,
|
|
PciGen5,
|
|
};
|
|
|
|
inline constexpr uint8_t maxPciBars = 6;
|
|
// Linux kernel would report 255 link width, as an indication of unknown.
|
|
inline constexpr uint32_t unknownPcieLinkWidth = 255u;
|
|
|
|
inline constexpr uint32_t microSecondsToNanoSeconds = 1000u;
|
|
|
|
inline constexpr uint64_t convertJouleToMicroJoule = 1000000u;
|
|
inline constexpr uint64_t minTimeoutModeHeartbeat = 5000u;
|
|
inline constexpr uint64_t minTimeoutInMicroSeconds = 1000u;
|
|
inline constexpr uint16_t milliSecsToMicroSecs = 1000;
|
|
inline constexpr uint32_t milliFactor = 1000u;
|
|
inline constexpr uint32_t microFactor = milliFactor * milliFactor;
|
|
inline constexpr uint64_t gigaUnitTransferToUnitTransfer = 1000 * 1000 * 1000;
|
|
inline constexpr uint64_t megaBytesToBytes = 1000 * 1000;
|
|
|
|
inline constexpr int32_t memoryBusWidth = 128; // bus width in bytes
|
|
inline constexpr int32_t numMemoryChannels = 8;
|
|
inline constexpr uint32_t unknownMemoryType = UINT32_MAX;
|
|
|
|
inline constexpr uint32_t bits(uint32_t x, uint32_t at, uint32_t width) {
|
|
return (((x) >> (at)) & ((1 << (width)) - 1));
|
|
}
|
|
|
|
inline constexpr uint64_t packInto64Bit(uint32_t msb, uint32_t lsb) {
|
|
return ((static_cast<uint64_t>(msb) << 32) | static_cast<uint64_t>(lsb));
|
|
}
|
|
|
|
const std::map<std::string_view, zes_engine_type_flag_t> sysfsEngineMapToLevel0EngineType = {
|
|
{"rcs", ZES_ENGINE_TYPE_FLAG_RENDER},
|
|
{"ccs", ZES_ENGINE_TYPE_FLAG_COMPUTE},
|
|
{"bcs", ZES_ENGINE_TYPE_FLAG_DMA},
|
|
{"vcs", ZES_ENGINE_TYPE_FLAG_MEDIA},
|
|
{"vecs", ZES_ENGINE_TYPE_FLAG_OTHER}};
|
|
|
|
} // namespace Sysman
|
|
} // namespace L0
|