summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--arch/arm/mach-ux500/board-mop500-mcde.c5
-rw-r--r--arch/arm/mach-ux500/board-u5500-mcde.c2
-rw-r--r--include/video/mcde.h5
3 files changed, 5 insertions, 7 deletions
diff --git a/arch/arm/mach-ux500/board-mop500-mcde.c b/arch/arm/mach-ux500/board-mop500-mcde.c
index 7d2f160f6c0..b90bf78c60d 100644
--- a/arch/arm/mach-ux500/board-mop500-mcde.c
+++ b/arch/arm/mach-ux500/board-mop500-mcde.c
@@ -104,9 +104,6 @@ static struct mcde_display_device samsung_s6d16d0_display0 = {
#else
.synchronized_update = false,
#endif
- /* TODO: Remove rotation buffers once ESRAM driver is completed */
- .rotbuf1 = U8500_ESRAM_BASE + 0x20000 * 4 + 0x2000,
- .rotbuf2 = U8500_ESRAM_BASE + 0x20000 * 4 + 0x10000,
.dev = {
.platform_data = &samsung_s6d16d0_pdata0,
},
@@ -134,8 +131,6 @@ static struct mcde_display_device sony_acx424akp_display0 = {
#else
.synchronized_update = false,
#endif
- .rotbuf1 = U8500_ESRAM_BASE + 0x20000 * 4 + 0x2000,
- .rotbuf2 = U8500_ESRAM_BASE + 0x20000 * 4 + 0x10000,
.dev = {
.platform_data = &sony_acx424akp_display0_pdata,
},
diff --git a/arch/arm/mach-ux500/board-u5500-mcde.c b/arch/arm/mach-ux500/board-u5500-mcde.c
index 5c4ba76055d..b002b6f6688 100644
--- a/arch/arm/mach-ux500/board-u5500-mcde.c
+++ b/arch/arm/mach-ux500/board-u5500-mcde.c
@@ -87,8 +87,6 @@ static struct mcde_display_device sony_acx424akp_display0 = {
#else
.synchronized_update = false,
#endif
- .rotbuf1 = U5500_ESRAM_BASE + 0x20000 * 2,
- .rotbuf2 = U5500_ESRAM_BASE + 0x20000 * 2 + 0x10000,
.dev = {
.platform_data = &sony_acx424akp_display0_pdata,
},
diff --git a/include/video/mcde.h b/include/video/mcde.h
index 015350f4495..f55ad8dd69e 100644
--- a/include/video/mcde.h
+++ b/include/video/mcde.h
@@ -372,6 +372,11 @@ struct mcde_platform_data {
u8 outmux[5]; /* MCDE_CONF0.OUTMUXx */
u8 syncmux; /* MCDE_CONF0.SYNCMUXx */
+ /* TODO: Remove once ESRAM allocator is done */
+ u32 rotbuf1;
+ u32 rotbuf2;
+ u32 rotbufsize;
+
const char *regulator_vana_id;
const char *regulator_mcde_epod_id;
const char *regulator_esram_epod_id;