aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClark Wang <[email protected]>2023-02-08 07:56:35 +0100
committerShawn Guo <[email protected]>2023-03-06 11:12:36 +0800
commit300bd129f93ffc4dccb591cdd5aef378f0461467 (patch)
tree9a6169c1379d4acf192e9cab80eb549d5ec148cc
parent2a88e4792c6df4b6a93f2bdb1eaf0df7408bd40d (diff)
firmware: imx: scu-pd: add missed lvds lpi2c and pwm power domains
LVDS' lpi2c and pwm power domains definitions are missed. Add them here. Signed-off-by: Clark Wang <[email protected]> Reviewed-by: Frank Li <[email protected]> Signed-off-by: Marcel Ziswiler <[email protected]> Signed-off-by: Shawn Guo <[email protected]>
-rw-r--r--drivers/firmware/imx/scu-pd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/firmware/imx/scu-pd.c b/drivers/firmware/imx/scu-pd.c
index 2a4f07423365..84b673427073 100644
--- a/drivers/firmware/imx/scu-pd.c
+++ b/drivers/firmware/imx/scu-pd.c
@@ -180,7 +180,11 @@ static const struct imx_sc_pd_range imx8qxp_scu_pd_ranges[] = {
/* LVDS SS */
{ "lvds0", IMX_SC_R_LVDS_0, 1, false, 0 },
+ { "lvds0-pwm", IMX_SC_R_LVDS_0_PWM_0, 1, false, 0 },
+ { "lvds0-lpi2c", IMX_SC_R_LVDS_0_I2C_0, 2, true, 0 },
{ "lvds1", IMX_SC_R_LVDS_1, 1, false, 0 },
+ { "lvds1-pwm", IMX_SC_R_LVDS_1_PWM_0, 1, false, 0 },
+ { "lvds1-lpi2c", IMX_SC_R_LVDS_1_I2C_0, 2, true, 0 },
/* DC SS */
{ "dc0", IMX_SC_R_DC_0, 1, false, 0 },