summaryrefslogtreecommitdiff
path: root/include/lcd.h
diff options
context:
space:
mode:
authorEric Sun <jian.sun@freescale.com>2012-05-02 19:11:15 +0800
committerEric Sun <jian.sun@freescale.com>2012-05-03 14:14:03 +0800
commit636ccbbb69257d3a7513b2ae006ca166129bba9c (patch)
treef5a1e68b56f8f2dce1f4a6cd244e3a687b7d60e0 /include/lcd.h
parent6abbb225663d632af220cc7a13ac7b19f3fed1b5 (diff)
downloadu-boot-imx-636ccbbb69257d3a7513b2ae006ca166129bba9c.zip
u-boot-imx-636ccbbb69257d3a7513b2ae006ca166129bba9c.tar.gz
u-boot-imx-636ccbbb69257d3a7513b2ae006ca166129bba9c.tar.bz2
ENGR00181337-2 i.mx6 : i.mx6sl arm2 add EPDC support
Add EPDC splash screen support for U-Boot Signed-off-by: Danny Nold <dannynold@freescale.com>
Diffstat (limited to 'include/lcd.h')
-rw-r--r--include/lcd.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/include/lcd.h b/include/lcd.h
index ae3afc3..73e2e84 100644
--- a/include/lcd.h
+++ b/include/lcd.h
@@ -7,7 +7,7 @@
* (C) Copyright 2001
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
- * Copyright (C) 2004-2011 Freescale Semiconductor, Inc.
+ * Copyright (C) 2004-2012 Freescale Semiconductor, Inc.
*
* See file CREDITS for list of people who contributed to this
* project.
@@ -214,6 +214,19 @@ struct waveform_modes {
int mode_gc32;
};
+struct epdc_timing_params {
+ int vscan_holdoff;
+ int sdoed_width;
+ int sdoed_delay;
+ int sdoez_width;
+ int sdoez_delay;
+ int gdclk_hp_offs;
+ int gdsp_offs;
+ int gdoe_offs;
+ int gdclk_offs;
+ int num_ce;
+};
+
struct epdc_data_struct {
/* EPDC buffer pointers */
u_long working_buf_addr;
@@ -221,6 +234,7 @@ struct epdc_data_struct {
/* Waveform mode definitions */
struct waveform_modes wv_modes;
+ struct epdc_timing_params epdc_timings;
};
typedef struct vidinfo {