From: Liu Ying Date: Tue, 11 Sep 2012 10:16:12 +0000 (+0800) Subject: ENGR00223797-1 ARM:IPUv3:Add bypass reset in pdata X-Git-Tag: v3.0.35-fsl~425 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=56bff8f8d49647842f3cc1588c3e5a0a35bc17c2;p=karo-tx-linux.git ENGR00223797-1 ARM:IPUv3:Add bypass reset in pdata This patch adds bypass reset field support in ipuv3 platform data, so that a platform may choose not to reset ipuv3 when doing probe, which may support smooth transition from bootloader splashimage to system UI. Signed-off-by: Liu Ying (cherry picked from commit e558b2b6877a2b230c564a1c621bbba3d546f5f7) --- diff --git a/arch/arm/plat-mxc/include/mach/ipu-v3.h b/arch/arm/plat-mxc/include/mach/ipu-v3.h index 82da102f44fe..48daf4db337c 100755 --- a/arch/arm/plat-mxc/include/mach/ipu-v3.h +++ b/arch/arm/plat-mxc/include/mach/ipu-v3.h @@ -745,6 +745,13 @@ struct imx_ipuv3_platform_data { void (*pg) (int); char *csi_clk[2]; + + /* + * Bypass reset to avoid display channel being + * stopped by probe since it may starts to work + * in bootloader. + */ + bool bypass_reset; }; #endif /* __MACH_IPU_V3_H_ */