Skip to content

Commit e2aa165

Browse files
aford173Shawn Guo
authored andcommitted
soc: imx: imx8m-blk-ctrl: Fix IMX8MN_DISPBLK_PD_ISI hang
The imx8mn clock list for the ISI lists four clocks, but DOMAIN_MAX_CLKS was set to 3. Because of this, attempts to enable the fourth clock failed, threw some splat, and ultimately hung. Fixes: 7f511d5 ("soc: imx: imx8m-blk-ctrl: add i.MX8MN DISP blk-ctrl") Signed-off-by: Adam Ford <aford173@gmail.com> Reviewed-by: Lucas Stach <l.stach@pengutronix.de> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
1 parent dd2737f commit e2aa165

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/soc/imx/imx8m-blk-ctrl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ struct imx8m_blk_ctrl_domain_data {
5050
u32 mipi_phy_rst_mask;
5151
};
5252

53-
#define DOMAIN_MAX_CLKS 3
53+
#define DOMAIN_MAX_CLKS 4
5454

5555
struct imx8m_blk_ctrl_domain {
5656
struct generic_pm_domain genpd;

0 commit comments

Comments
 (0)