Files
compute-runtime/level_zero/sysman/source/firmware/firmware_imp.cpp
Joshua Santosh Ranjan 5dbe905e74 [Sysman]Update Firmware module to support zesInit
Related-To: LOCI-4227

Signed-off-by: Joshua Santosh Ranjan <joshua.santosh.ranjan@intel.com>
2023-04-04 06:48:52 +02:00

42 lines
1.1 KiB
C++

/*
* Copyright (C) 2020-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "level_zero/sysman/source/firmware/firmware_imp.h"
#include "shared/source/helpers/debug_helpers.h"
#include "level_zero/sysman/source/firmware/os_firmware.h"
namespace L0 {
namespace Sysman {
ze_result_t FirmwareImp::firmwareGetProperties(zes_firmware_properties_t *pProperties) {
pOsFirmware->osGetFwProperties(pProperties);
std::string fwName = fwType;
if (fwName == "GSC") {
fwName = "GFX";
}
strncpy_s(pProperties->name, ZES_STRING_PROPERTY_SIZE, fwName.c_str(), fwName.size());
return ZE_RESULT_SUCCESS;
}
ze_result_t FirmwareImp::firmwareFlash(void *pImage, uint32_t size) {
return pOsFirmware->osFirmwareFlash(pImage, size);
}
FirmwareImp::FirmwareImp(OsSysman *pOsSysman, const std::string &initalizedFwType) {
pOsFirmware = OsFirmware::create(pOsSysman, initalizedFwType);
fwType = initalizedFwType;
UNRECOVERABLE_IF(nullptr == pOsFirmware);
}
FirmwareImp::~FirmwareImp() {
}
} // namespace Sysman
} // namespace L0