diff options
author | Liu Ying <Ying.liu@freescale.com> | 2012-09-11 18:16:12 +0800 |
---|---|---|
committer | Liu Ying <Ying.liu@freescale.com> | 2012-09-27 14:11:07 +0800 |
commit | 7b5990a96ddd0408d244cfcb83dd66aa658ab809 (patch) | |
tree | e1fc4af2e8d45be97eb57672b355bf9f388a45f3 /arch | |
parent | 5e54f5a78ae9a11422b52db8454a35984f8ccab2 (diff) |
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 <Ying.Liu@freescale.com>
(cherry picked from commit e558b2b6877a2b230c564a1c621bbba3d546f5f7)
Diffstat (limited to 'arch')
-rwxr-xr-x | arch/arm/plat-mxc/include/mach/ipu-v3.h | 7 |
1 files changed, 7 insertions, 0 deletions
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_ */ |