mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-09-03 10:33:11 +02:00

We should not do reset & clock gating before the ADB400 handshake done when HDMIMIX power down. Change the flow to align with what we used in ATF to fix the HDMI random hang issue due to ADB400 async bridge power down failure. Signed-off-by: Jacky Bai <ping.bai@nxp.com> Reviewed-by: Sandor Yu <Sandor.yu@nxp.com> Reviewed-by: Peng Fan <peng.fan@nxp.com> Acked-by: Jason Liu <jason.hui.liu@nxp.com>
11 lines
317 B
C
11 lines
317 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#ifndef __SOC_IMX_GPCV2_H
|
|
#define __SOC_IMX_GPCV2_H
|
|
|
|
/* Avoid conflict with GENPD_NOTIFY_XX */
|
|
#define IMX_GPCV2_NOTIFY_ON_ADB400 0x80000000
|
|
#define IMX_GPCV2_NOTIFY_ON_CLK_ENABLED 0x80000001
|
|
#define IMX_GPCV2_NOTIFY_OFF_ADB400 0x80000002
|
|
|
|
#endif /* __SOC_IMX_GPC_H */
|