mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2023-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/helpers/non_copyable_or_moveable.h"
|
|
|
|
#include "level_zero/sysman/source/api/pci/sysman_pci.h"
|
|
|
|
#include <mutex>
|
|
#include <vector>
|
|
|
|
namespace L0 {
|
|
namespace Sysman {
|
|
class OsPci;
|
|
struct OsSysman;
|
|
|
|
class PciImp : public L0::Sysman::Pci, NEO::NonCopyableOrMovableClass {
|
|
public:
|
|
void init() override;
|
|
ze_result_t pciStaticProperties(zes_pci_properties_t *pProperties) override;
|
|
ze_result_t pciGetInitializedBars(uint32_t *pCount, zes_pci_bar_properties_t *pProperties) override;
|
|
ze_result_t pciGetState(zes_pci_state_t *pState) override;
|
|
ze_result_t pciGetStats(zes_pci_stats_t *pStats) override;
|
|
void pciGetStaticFields();
|
|
|
|
PciImp(L0::Sysman::OsSysman *pOsSysman) : pOsSysman(pOsSysman){};
|
|
~PciImp() override;
|
|
L0::Sysman::OsPci *pOsPci = nullptr;
|
|
|
|
private:
|
|
L0::Sysman::OsSysman *pOsSysman = nullptr;
|
|
bool resizableBarSupported = false;
|
|
zes_pci_properties_t pciProperties = {};
|
|
std::vector<zes_pci_bar_properties_t *> pciBarProperties = {};
|
|
std::once_flag initPciOnce;
|
|
void initPci();
|
|
};
|
|
|
|
} // namespace Sysman
|
|
} // namespace L0
|