OSDN Git Service

drm/amdgpu: Fix IH client ID naming table
authorOak Zeng <Oak.Zeng@amd.com>
Wed, 20 May 2020 16:00:58 +0000 (11:00 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 24 Mar 2021 02:53:22 +0000 (22:53 -0400)
Client ID 26 is reserved. Add it to the table.

Signed-off-by: Oak Zeng <Oak.Zeng@amd.com>
Reviewed-by: Le Ma <Le.Ma@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c
drivers/gpu/drm/amd/include/soc15_ih_clientid.h

index eea2bbb..9ab8d7d 100644 (file)
@@ -92,6 +92,7 @@ const char *soc15_ih_clientid_name[] = {
        "DF",
        "SDMA7 or VCE1",
        "PWR",
+       "reserved",
        "UTCL2",
        "EA",
        "UTCL2LOG",
index e3088c1..1ace2cf 100644 (file)
@@ -56,6 +56,7 @@ enum soc15_ih_clientid {
        SOC15_IH_CLIENTID_DF            = 0x17,
        SOC15_IH_CLIENTID_VCE1          = 0x18,
        SOC15_IH_CLIENTID_PWR           = 0x19,
+       SOC15_IH_CLIENTID_RESERVED      = 0x1a,
        SOC15_IH_CLIENTID_UTCL2         = 0x1b,
        SOC15_IH_CLIENTID_EA            = 0x1c,
        SOC15_IH_CLIENTID_UTCL2LOG      = 0x1d,