mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
- Added support for the Standby APIs in the new sysman design. - Added ULTs for the Standby APIs in the new sysman design. Related-To: LOCI-4097 Signed-off-by: Bari, Pratik <pratik.bari@intel.com>
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/helpers/non_copyable_or_moveable.h"
|
|
|
|
#include "level_zero/sysman/source/linux/fs_access.h"
|
|
#include "level_zero/sysman/source/linux/os_sysman_imp.h"
|
|
#include "level_zero/sysman/source/standby/os_standby.h"
|
|
#include "level_zero/sysman/source/standby/standby_imp.h"
|
|
|
|
namespace L0 {
|
|
namespace Sysman {
|
|
|
|
class LinuxStandbyImp : public OsStandby, NEO::NonCopyableOrMovableClass {
|
|
public:
|
|
ze_result_t getMode(zes_standby_promo_mode_t &mode) override;
|
|
ze_result_t setMode(zes_standby_promo_mode_t mode) override;
|
|
ze_result_t osStandbyGetProperties(zes_standby_properties_t &properties) override;
|
|
|
|
bool isStandbySupported(void) override;
|
|
|
|
LinuxStandbyImp() = default;
|
|
LinuxStandbyImp(OsSysman *pOsSysman, ze_bool_t onSubdevice, uint32_t subdeviceId);
|
|
~LinuxStandbyImp() override = default;
|
|
|
|
protected:
|
|
SysfsAccess *pSysfsAccess = nullptr;
|
|
|
|
private:
|
|
std::string standbyModeFile;
|
|
static const int standbyModeDefault = 1;
|
|
static const int standbyModeNever = 0;
|
|
bool isSubdevice = false;
|
|
uint32_t subdeviceId = 0;
|
|
void init();
|
|
};
|
|
|
|
} // namespace Sysman
|
|
} // namespace L0
|