mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
drm/amdgpu: clear uncorrectable parity error status bit
This should be cleared during every nbif uncorrectable error cleanup work. Signed-off-by: Le Ma <le.ma@amd.com> Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
28f87950d9
commit
5c39d600e3
@ -482,10 +482,12 @@ static int nbio_v7_4_init_ras_err_event_athub_interrupt (struct amdgpu_device *a
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define smnPARITY_ERROR_STATUS_UNCORR_GRP2 0x13a20030
|
||||||
|
|
||||||
static void nbio_v7_4_query_ras_error_count(struct amdgpu_device *adev,
|
static void nbio_v7_4_query_ras_error_count(struct amdgpu_device *adev,
|
||||||
void *ras_error_status)
|
void *ras_error_status)
|
||||||
{
|
{
|
||||||
uint32_t global_sts, central_sts, int_eoi;
|
uint32_t global_sts, central_sts, int_eoi, parity_sts;
|
||||||
uint32_t corr, fatal, non_fatal;
|
uint32_t corr, fatal, non_fatal;
|
||||||
struct ras_err_data *err_data = (struct ras_err_data *)ras_error_status;
|
struct ras_err_data *err_data = (struct ras_err_data *)ras_error_status;
|
||||||
|
|
||||||
@ -494,6 +496,7 @@ static void nbio_v7_4_query_ras_error_count(struct amdgpu_device *adev,
|
|||||||
fatal = REG_GET_FIELD(global_sts, RAS_GLOBAL_STATUS_LO, ParityErrFatal);
|
fatal = REG_GET_FIELD(global_sts, RAS_GLOBAL_STATUS_LO, ParityErrFatal);
|
||||||
non_fatal = REG_GET_FIELD(global_sts, RAS_GLOBAL_STATUS_LO,
|
non_fatal = REG_GET_FIELD(global_sts, RAS_GLOBAL_STATUS_LO,
|
||||||
ParityErrNonFatal);
|
ParityErrNonFatal);
|
||||||
|
parity_sts = RREG32_PCIE(smnPARITY_ERROR_STATUS_UNCORR_GRP2);
|
||||||
|
|
||||||
if (corr)
|
if (corr)
|
||||||
err_data->ce_count++;
|
err_data->ce_count++;
|
||||||
@ -505,6 +508,11 @@ static void nbio_v7_4_query_ras_error_count(struct amdgpu_device *adev,
|
|||||||
/* clear error status register */
|
/* clear error status register */
|
||||||
WREG32_PCIE(smnRAS_GLOBAL_STATUS_LO, global_sts);
|
WREG32_PCIE(smnRAS_GLOBAL_STATUS_LO, global_sts);
|
||||||
|
|
||||||
|
if (fatal)
|
||||||
|
/* clear parity fatal error indication field */
|
||||||
|
WREG32_PCIE(smnPARITY_ERROR_STATUS_UNCORR_GRP2,
|
||||||
|
parity_sts);
|
||||||
|
|
||||||
if (REG_GET_FIELD(central_sts, BIFL_RAS_CENTRAL_STATUS,
|
if (REG_GET_FIELD(central_sts, BIFL_RAS_CENTRAL_STATUS,
|
||||||
BIFL_RasContller_Intr_Recv)) {
|
BIFL_RasContller_Intr_Recv)) {
|
||||||
/* clear interrupt status register */
|
/* clear interrupt status register */
|
||||||
|
Loading…
Reference in New Issue
Block a user