From: Tony Cheng <[email protected]>

[Why]
struct mpc has no instance identifier, unlike other DC hardware
blocks. Debug and tracing helpers need one to identify the block.

[How]
Add an inst member to struct mpc and initialize it to 0 in every
dcnXX_mpc_construct(), since there is one MPC instance per ASIC.

Reviewed-by: Jun Lei <[email protected]>
Signed-off-by: Tony Cheng <[email protected]>
Signed-off-by: Chenyu Chen <[email protected]>
---
 drivers/gpu/drm/amd/display/dc/inc/hw/mpc.h            | 1 +
 drivers/gpu/drm/amd/display/dc/mpc/dcn10/dcn10_mpc.c   | 1 +
 drivers/gpu/drm/amd/display/dc/mpc/dcn20/dcn20_mpc.c   | 1 +
 drivers/gpu/drm/amd/display/dc/mpc/dcn30/dcn30_mpc.c   | 1 +
 drivers/gpu/drm/amd/display/dc/mpc/dcn32/dcn32_mpc.c   | 1 +
 drivers/gpu/drm/amd/display/dc/mpc/dcn401/dcn401_mpc.c | 1 +
 drivers/gpu/drm/amd/display/dc/mpc/dcn42/dcn42_mpc.c   | 1 +
 drivers/gpu/drm/amd/display/dc/mpc/dcn60/dcn60_mpc.c   | 1 +
 8 files changed, 8 insertions(+)

diff --git a/drivers/gpu/drm/amd/display/dc/inc/hw/mpc.h 
b/drivers/gpu/drm/amd/display/dc/inc/hw/mpc.h
index d19f90a5893e..75ebfab87efc 100644
--- a/drivers/gpu/drm/amd/display/dc/inc/hw/mpc.h
+++ b/drivers/gpu/drm/amd/display/dc/inc/hw/mpc.h
@@ -281,6 +281,7 @@ struct mpc_tree {
 struct mpc {
        const struct mpc_funcs *funcs;
        struct dc_context *ctx;
+       int inst;
 
        struct mpcc mpcc_array[MAX_MPCC];
        struct pwl_params blender_params;
diff --git a/drivers/gpu/drm/amd/display/dc/mpc/dcn10/dcn10_mpc.c 
b/drivers/gpu/drm/amd/display/dc/mpc/dcn10/dcn10_mpc.c
index 0f2294bedcc3..f9bd1d6e1642 100644
--- a/drivers/gpu/drm/amd/display/dc/mpc/dcn10/dcn10_mpc.c
+++ b/drivers/gpu/drm/amd/display/dc/mpc/dcn10/dcn10_mpc.c
@@ -503,6 +503,7 @@ void dcn10_mpc_construct(struct dcn10_mpc *mpc10,
        int i;
 
        mpc10->base.ctx = ctx;
+       mpc10->base.inst = 0;
 
        mpc10->base.funcs = &dcn10_mpc_funcs;
 
diff --git a/drivers/gpu/drm/amd/display/dc/mpc/dcn20/dcn20_mpc.c 
b/drivers/gpu/drm/amd/display/dc/mpc/dcn20/dcn20_mpc.c
index 0e09d073ab29..905d4f23f92a 100644
--- a/drivers/gpu/drm/amd/display/dc/mpc/dcn20/dcn20_mpc.c
+++ b/drivers/gpu/drm/amd/display/dc/mpc/dcn20/dcn20_mpc.c
@@ -588,6 +588,7 @@ void dcn20_mpc_construct(struct dcn20_mpc *mpc20,
        int i;
 
        mpc20->base.ctx = ctx;
+       mpc20->base.inst = 0;
 
        mpc20->base.funcs = &dcn20_mpc_funcs;
 
diff --git a/drivers/gpu/drm/amd/display/dc/mpc/dcn30/dcn30_mpc.c 
b/drivers/gpu/drm/amd/display/dc/mpc/dcn30/dcn30_mpc.c
index 9cc6fd38da19..f3213ecb1745 100644
--- a/drivers/gpu/drm/amd/display/dc/mpc/dcn30/dcn30_mpc.c
+++ b/drivers/gpu/drm/amd/display/dc/mpc/dcn30/dcn30_mpc.c
@@ -1589,6 +1589,7 @@ void dcn30_mpc_construct(struct dcn30_mpc *mpc30,
        int i;
 
        mpc30->base.ctx = ctx;
+       mpc30->base.inst = 0;
 
        mpc30->base.funcs = &dcn30_mpc_funcs;
 
diff --git a/drivers/gpu/drm/amd/display/dc/mpc/dcn32/dcn32_mpc.c 
b/drivers/gpu/drm/amd/display/dc/mpc/dcn32/dcn32_mpc.c
index 1f15ada109b6..61a1e3f06575 100644
--- a/drivers/gpu/drm/amd/display/dc/mpc/dcn32/dcn32_mpc.c
+++ b/drivers/gpu/drm/amd/display/dc/mpc/dcn32/dcn32_mpc.c
@@ -1036,6 +1036,7 @@ void dcn32_mpc_construct(struct dcn30_mpc *mpc30,
        int i;
 
        mpc30->base.ctx = ctx;
+       mpc30->base.inst = 0;
 
        mpc30->base.funcs = &dcn32_mpc_funcs;
 
diff --git a/drivers/gpu/drm/amd/display/dc/mpc/dcn401/dcn401_mpc.c 
b/drivers/gpu/drm/amd/display/dc/mpc/dcn401/dcn401_mpc.c
index df92d8008fe6..e59454090691 100644
--- a/drivers/gpu/drm/amd/display/dc/mpc/dcn401/dcn401_mpc.c
+++ b/drivers/gpu/drm/amd/display/dc/mpc/dcn401/dcn401_mpc.c
@@ -680,6 +680,7 @@ void dcn401_mpc_construct(struct dcn401_mpc *mpc401,
        int i;
 
        mpc401->base.ctx = ctx;
+       mpc401->base.inst = 0;
 
        mpc401->base.funcs = &dcn401_mpc_funcs;
 
diff --git a/drivers/gpu/drm/amd/display/dc/mpc/dcn42/dcn42_mpc.c 
b/drivers/gpu/drm/amd/display/dc/mpc/dcn42/dcn42_mpc.c
index 0123a9fcfef5..37d024cfb3fb 100644
--- a/drivers/gpu/drm/amd/display/dc/mpc/dcn42/dcn42_mpc.c
+++ b/drivers/gpu/drm/amd/display/dc/mpc/dcn42/dcn42_mpc.c
@@ -121,6 +121,7 @@ void dcn42_mpc_construct(struct dcn42_mpc *mpc42,
        int i;
 
        mpc42->base.ctx = ctx;
+       mpc42->base.inst = 0;
 
        mpc42->base.funcs = &dcn42_mpc_funcs;
 
diff --git a/drivers/gpu/drm/amd/display/dc/mpc/dcn60/dcn60_mpc.c 
b/drivers/gpu/drm/amd/display/dc/mpc/dcn60/dcn60_mpc.c
index ae6f2f1b7eca..e38582f0a319 100644
--- a/drivers/gpu/drm/amd/display/dc/mpc/dcn60/dcn60_mpc.c
+++ b/drivers/gpu/drm/amd/display/dc/mpc/dcn60/dcn60_mpc.c
@@ -273,6 +273,7 @@ void dcn60_mpc_construct(struct dcn60_mpc *mpc60,
        int i;
 
        mpc60->base.ctx = ctx;
+       mpc60->base.inst = 0;
 
        mpc60->base.funcs = &dcn60_mpc_funcs;
 
-- 
2.43.0

Reply via email to