From 695af9abc660c674966f02b0ecc85f5524a7aede Mon Sep 17 00:00:00 2001 From: Fabio Estevam Date: Thu, 31 May 2012 07:23:56 +0000 Subject: video: Rename CONFIG_VIDEO_MX5 Rename CONFIG_VIDEO_MX5 as this driver can also be used on mx6. Signed-off-by: Fabio Estevam --- include/configs/mx51evk.h | 2 +- include/configs/mx53loco.h | 2 +- include/configs/vision2.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/configs/mx51evk.h b/include/configs/mx51evk.h index bd04c02..c3f4521 100644 --- a/include/configs/mx51evk.h +++ b/include/configs/mx51evk.h @@ -126,7 +126,7 @@ /* Framebuffer and LCD */ #define CONFIG_PREBOOT #define CONFIG_VIDEO -#define CONFIG_VIDEO_MX5 +#define CONFIG_VIDEO_IPUV3 #define CONFIG_CFB_CONSOLE #define CONFIG_VGA_AS_SINGLE_DEVICE #define CONFIG_VIDEO_BMP_RLE8 diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index e71148d..e58548e 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -219,7 +219,7 @@ /* Framebuffer and LCD */ #define CONFIG_PREBOOT #define CONFIG_VIDEO -#define CONFIG_VIDEO_MX5 +#define CONFIG_VIDEO_IPUV3 #define CONFIG_CFB_CONSOLE #define CONFIG_VGA_AS_SINGLE_DEVICE #define CONFIG_VIDEO_BMP_RLE8 diff --git a/include/configs/vision2.h b/include/configs/vision2.h index 24905a0..919f5ce 100644 --- a/include/configs/vision2.h +++ b/include/configs/vision2.h @@ -212,7 +212,7 @@ */ #define CONFIG_PREBOOT #define CONFIG_VIDEO -#define CONFIG_VIDEO_MX5 +#define CONFIG_VIDEO_IPUV3 #define CONFIG_CFB_CONSOLE #define CONFIG_VGA_AS_SINGLE_DEVICE #define CONFIG_VIDEO_BMP_RLE8 -- cgit v1.1 From 9fbdb1aac5583197270c5d1a7634b7f93b34a654 Mon Sep 17 00:00:00 2001 From: Fabio Estevam Date: Thu, 31 May 2012 07:24:00 +0000 Subject: ipu_common: Do not hardcode the ipu_clk frequency Do not hardcode the ipu_clk frequency and let the board file pass this value. Signed-off-by: Fabio Estevam --- include/configs/mx51evk.h | 1 + include/configs/mx53loco.h | 1 + include/configs/vision2.h | 1 + 3 files changed, 3 insertions(+) (limited to 'include') diff --git a/include/configs/mx51evk.h b/include/configs/mx51evk.h index c3f4521..6af5ed7 100644 --- a/include/configs/mx51evk.h +++ b/include/configs/mx51evk.h @@ -133,6 +133,7 @@ #define CONFIG_SPLASH_SCREEN #define CONFIG_BMP_16BPP #define CONFIG_VIDEO_LOGO +#define CONFIG_IPUV3_CLK 133000000 /* allow to overwrite serial and ethaddr */ #define CONFIG_ENV_OVERWRITE diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index e58548e..f936785 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -226,5 +226,6 @@ #define CONFIG_SPLASH_SCREEN #define CONFIG_BMP_16BPP #define CONFIG_VIDEO_LOGO +#define CONFIG_IPUV3_CLK 133000000 #endif /* __CONFIG_H */ diff --git a/include/configs/vision2.h b/include/configs/vision2.h index 919f5ce..0ed53d2 100644 --- a/include/configs/vision2.h +++ b/include/configs/vision2.h @@ -219,5 +219,6 @@ #define CONFIG_SPLASH_SCREEN #define CONFIG_CMD_BMP #define CONFIG_BMP_16BPP +#define CONFIG_IPUV3_CLK 133000000 #endif /* __CONFIG_H */ -- cgit v1.1