| Author | Tokens | Token Proportion | Commits | Commit Proportion |
|---|---|---|---|---|
| yipechai | 493 | 80.95% | 1 | 50.00% |
| ganglxie | 116 | 19.05% | 1 | 50.00% |
| Total | 609 | 2 |
// SPDX-License-Identifier: MIT /* * Copyright 2025 Advanced Micro Devices, Inc. * * 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 COPYRIGHT HOLDER(S) OR AUTHOR(S) 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 "amdgpu_smu.h" #include "amdgpu_reset.h" #include "amdgpu_ras_mp1_v13_0.h" #define RAS_MP1_MSG_QueryValidMcaCeCount 0x3A #define RAS_MP1_MSG_McaBankCeDumpDW 0x3B static const enum smu_message_type pmfw_eeprom_msgs[] = { [RAS_SMU_GetRASTableVersion] = SMU_MSG_GetRASTableVersion, [RAS_SMU_GetBadPageCount] = SMU_MSG_GetBadPageCount, [RAS_SMU_SetTimestamp] = SMU_MSG_SetTimestamp, [RAS_SMU_GetTimestamp] = SMU_MSG_GetTimestamp, [RAS_SMU_GetBadPageIpid] = SMU_MSG_GetBadPageIpid, [RAS_SMU_EraseRasTable] = SMU_MSG_EraseRasTable, [RAS_SMU_GetBadPageMcaAddr] = SMU_MSG_GetBadPageMcaAddr, }; static int mp1_v13_0_get_valid_bank_count(struct ras_core_context *ras_core, u32 msg, u32 *count) { struct amdgpu_device *adev = (struct amdgpu_device *)ras_core->dev; u32 smu_msg; int ret = 0; if (!count) return -EINVAL; smu_msg = (msg == RAS_MP1_MSG_QueryValidMcaCeCount) ? SMU_MSG_QueryValidMcaCeCount : SMU_MSG_QueryValidMcaCount; if (down_read_trylock(&adev->reset_domain->sem)) { ret = amdgpu_smu_ras_send_msg(adev, smu_msg, 0, count); up_read(&adev->reset_domain->sem); } else { ret = -RAS_CORE_GPU_IN_MODE1_RESET; } if (ret) *count = 0; return ret; } static int mp1_v13_0_dump_valid_bank(struct ras_core_context *ras_core, u32 msg, u32 idx, u32 reg_idx, u64 *val) { struct amdgpu_device *adev = (struct amdgpu_device *)ras_core->dev; uint32_t data[2] = {0, 0}; uint32_t param; int ret = 0; int i, offset; u32 smu_msg = (msg == RAS_MP1_MSG_McaBankCeDumpDW) ? SMU_MSG_McaBankCeDumpDW : SMU_MSG_McaBankDumpDW; if (down_read_trylock(&adev->reset_domain->sem)) { offset = reg_idx * 8; for (i = 0; i < ARRAY_SIZE(data); i++) { param = ((idx & 0xffff) << 16) | ((offset + (i << 2)) & 0xfffc); ret = amdgpu_smu_ras_send_msg(adev, smu_msg, param, &data[i]); if (ret) { RAS_DEV_ERR(adev, "ACA failed to read register[%d], offset:0x%x\n", reg_idx, offset); break; } } up_read(&adev->reset_domain->sem); if (!ret) *val = (uint64_t)data[1] << 32 | data[0]; } else { ret = -RAS_CORE_GPU_IN_MODE1_RESET; } return ret; } static int mp1_v13_0_eeprom_send_msg(struct ras_core_context *ras_core, enum ras_fw_eeprom_cmd index, uint32_t param, uint32_t *read_arg) { struct amdgpu_device *adev = (struct amdgpu_device *)ras_core->dev; int ret = 0; if (down_read_trylock(&adev->reset_domain->sem)) { ret = amdgpu_smu_ras_send_msg(adev, pmfw_eeprom_msgs[index], param, read_arg); up_read(&adev->reset_domain->sem); } else { ret = -RAS_CORE_GPU_IN_MODE1_RESET; } return ret; } static int mp1_v13_0_get_ras_enabled_mask(struct ras_core_context *ras_core, uint64_t *enabled_mask) { struct amdgpu_device *adev = (struct amdgpu_device *)ras_core->dev; int ret = 0; if (down_read_trylock(&adev->reset_domain->sem)) { if (amdgpu_smu_ras_feature_is_enabled(adev, SMU_FEATURE_HROM_EN_BIT)) *enabled_mask |= RAS_CORE_FW_FEATURE_BIT__RAS_EEPROM; up_read(&adev->reset_domain->sem); } else { ret = -RAS_CORE_GPU_IN_MODE1_RESET; } return ret; } const struct ras_mp1_sys_func amdgpu_ras_mp1_sys_func_v13_0 = { .mp1_get_valid_bank_count = mp1_v13_0_get_valid_bank_count, .mp1_dump_valid_bank = mp1_v13_0_dump_valid_bank, .mp1_send_eeprom_msg = mp1_v13_0_eeprom_send_msg, .mp1_get_ras_enabled_mask = mp1_v13_0_get_ras_enabled_mask, };
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with Cregit http://github.com/cregit/cregit
Version 2.0-RC1