3052ad4220
Change copyrights to MIT and remove date Signed-off-by: Joe Narlo <Joseph.Narlo@amd.com> Change-Id: I16f5b412f2b9ddefaaa1771aa714cc18829a1be4
70 строки
2.7 KiB
C++
70 строки
2.7 KiB
C++
/*
|
|
* Copyright (c) Advanced Micro Devices, Inc. All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
#include <map>
|
|
|
|
#include "amd_smi/amdsmi.h"
|
|
#include "test_utils.h"
|
|
|
|
static const std::map<amdsmi_fw_block_t, const char *> kDevFWNameMap = {
|
|
{AMDSMI_FW_ID_ASD, "asd"},
|
|
{AMDSMI_FW_ID_CP_CE, "ce"},
|
|
{AMDSMI_FW_ID_DMCU_ERAM, "dmcu"}, // TODO(bliu): double check
|
|
{AMDSMI_FW_ID_MC, "mc"},
|
|
{AMDSMI_FW_ID_CP_ME, "me"},
|
|
{AMDSMI_FW_ID_CP_MEC1, "mec1"},
|
|
{AMDSMI_FW_ID_CP_MEC2, "mec2"},
|
|
{AMDSMI_FW_ID_CP_MES, "mes"},
|
|
{AMDSMI_FW_ID_MES_KIQ, "mes_kiq"}, // TODO: double check
|
|
{AMDSMI_FW_ID_CP_PFP, "pfp"},
|
|
{AMDSMI_FW_ID_RLC, "rlc"},
|
|
{AMDSMI_FW_ID_RLC_SRLG, "rlc_srlg"},
|
|
{AMDSMI_FW_ID_RLC_SRLS, "rlc_srls"},
|
|
{AMDSMI_FW_ID_SDMA1, "sdma1"},
|
|
{AMDSMI_FW_ID_SDMA2, "sdma2"},
|
|
{AMDSMI_FW_ID_PM, "pm"},
|
|
{AMDSMI_FW_ID_PSP_SOSDRV, "sos"},
|
|
{AMDSMI_FW_ID_TA_RAS, "ta_ras"},
|
|
{AMDSMI_FW_ID_TA_XGMI, "ta_xgmi"},
|
|
{AMDSMI_FW_ID_UVD, "uvd"},
|
|
{AMDSMI_FW_ID_VCE, "vce"},
|
|
{AMDSMI_FW_ID_VCN, "vcn"},
|
|
};
|
|
|
|
const char *
|
|
NameFromFWEnum(amdsmi_fw_block_t blk) {
|
|
return kDevFWNameMap.at(blk);
|
|
}
|
|
|
|
static const std::map<amdsmi_evt_notification_type_t, const char *>
|
|
kEvtNotifEvntNameMap = {
|
|
{AMDSMI_EVT_NOTIF_VMFAULT, "AMDSMI_EVT_NOTIF_VMFAULT"},
|
|
{AMDSMI_EVT_NOTIF_THERMAL_THROTTLE, "AMDSMI_EVT_NOTIF_THERMAL_THROTTLE"},
|
|
{AMDSMI_EVT_NOTIF_GPU_PRE_RESET, "AMDSMI_EVT_NOTIF_GPU_PRE_RESET"},
|
|
{AMDSMI_EVT_NOTIF_GPU_POST_RESET, "AMDSMI_EVT_NOTIF_GPU_POST_RESET"},
|
|
{AMDSMI_EVT_NOTIF_RING_HANG, "AMDSMI_EVT_NOTIF_RING_HANG"},
|
|
};
|
|
const char *
|
|
NameFromEvtNotifType(amdsmi_evt_notification_type_t evt) {
|
|
return kEvtNotifEvntNameMap.at(evt);
|
|
}
|