41 lines
1.0 KiB
C++
41 lines
1.0 KiB
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/helpers/non_copyable_or_moveable.h"
|
|
#include "shared/source/memory_manager/memory_manager.h"
|
|
|
|
#include "level_zero/core/source/device/device.h"
|
|
#include <level_zero/zet_api.h>
|
|
|
|
#include "os_pci.h"
|
|
#include "pci.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace L0 {
|
|
|
|
class PciImp : public 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;
|
|
|
|
PciImp() = default;
|
|
PciImp(OsSysman *pOsSysman) : pOsSysman(pOsSysman){};
|
|
~PciImp() override;
|
|
OsPci *pOsPci = nullptr;
|
|
|
|
private:
|
|
OsSysman *pOsSysman = nullptr;
|
|
zes_pci_properties_t pciProperties = {};
|
|
std::vector<zes_pci_bar_properties_t *> pciBarProperties = {};
|
|
};
|
|
|
|
} // namespace L0
|