mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 23:33:20 +08:00
Change-Id: I8299bdf4b388bb05de7640240d033ba680e5ca14 Signed-off-by: mraghuwa <mayank.raghuwanshi@intel.com> Signed-off-by: Vilvaraj, T J Vivek <t.j.vivek.vilvaraj@intel.com>
24 lines
384 B
C++
24 lines
384 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "level_zero/tools/source/sysman/os_sysman.h"
|
|
#include <level_zero/zes_api.h>
|
|
|
|
namespace L0 {
|
|
|
|
class OsFirmware {
|
|
public:
|
|
virtual bool isFirmwareSupported(void) = 0;
|
|
|
|
static OsFirmware *create(OsSysman *pOsSysman);
|
|
virtual ~OsFirmware() {}
|
|
};
|
|
|
|
} // namespace L0
|