diff options
| author | Tom Rini <trini@ti.com> | 2013-03-18 12:31:00 -0400 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-03-18 14:37:18 -0400 | 
| commit | 0ce033d2582129243aca10d3072a221386bbba44 (patch) | |
| tree | 6e50a3f4eed22007549dc740d0fa647a6c8cec5b /arch/arm/include/asm/arch-omap3/dss.h | |
| parent | b5bec88434adb52413f1bc33fa63d7642cb8fd35 (diff) | |
| parent | b27673ccbd3d5435319b5c09c3e7061f559f925d (diff) | |
| download | olio-uboot-2014.01-0ce033d2582129243aca10d3072a221386bbba44.tar.xz olio-uboot-2014.01-0ce033d2582129243aca10d3072a221386bbba44.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Albert's rework of the linker scripts conflicted with Simon's making
everyone use __bss_end.  We also had a minor conflict over
README.scrapyard being added to in mainline and enhanced in
u-boot-arm/master with proper formatting.
Conflicts:
	arch/arm/cpu/ixp/u-boot.lds
	arch/arm/cpu/u-boot.lds
	arch/arm/lib/Makefile
	board/actux1/u-boot.lds
	board/actux2/u-boot.lds
	board/actux3/u-boot.lds
	board/dvlhost/u-boot.lds
	board/freescale/mx31ads/u-boot.lds
	doc/README.scrapyard
	include/configs/tegra-common.h
Build tested for all of ARM and run-time tested on am335x_evm.
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/include/asm/arch-omap3/dss.h')
| -rw-r--r-- | arch/arm/include/asm/arch-omap3/dss.h | 31 | 
1 files changed, 31 insertions, 0 deletions
| diff --git a/arch/arm/include/asm/arch-omap3/dss.h b/arch/arm/include/asm/arch-omap3/dss.h index ffaffbb3b..ae0babf17 100644 --- a/arch/arm/include/asm/arch-omap3/dss.h +++ b/arch/arm/include/asm/arch-omap3/dss.h @@ -167,6 +167,36 @@ struct venc_regs {  #define VENC_OUT_SEL				(1 << 6)  #define DIG_LPP_SHIFT				16 +/* LCD display type */ +#define PASSIVE_DISPLAY			0 +#define ACTIVE_DISPLAY			1 + +/* TFTDATALINES */ +#define LCD_INTERFACE_12_BIT	0 +#define LCD_INTERFACE_16_BIT	1 +#define LCD_INTERFACE_18_BIT	2 +#define LCD_INTERFACE_24_BIT	3 + +/* Polarity */ +#define DSS_IVS	(1 << 12) +#define DSS_IHS	(1 << 13) +#define DSS_IPC	(1 << 14) +#define DSS_IEO	(1 << 15) + +/* GFX format */ +#define GFXFORMAT_BITMAP1		(0x0 << 1) +#define GFXFORMAT_BITMAP2		(0x1 << 1) +#define GFXFORMAT_BITMAP4		(0x2 << 1) +#define GFXFORMAT_BITMAP8		(0x3 << 1) +#define GFXFORMAT_RGB12			(0x4 << 1) +#define GFXFORMAT_ARGB16		(0x5 << 1) +#define GFXFORMAT_RGB16			(0x6 << 1) +#define GFXFORMAT_RGB24_UNPACKED	(0x8 << 1) +#define GFXFORMAT_RGB24_PACKED		(0x9 << 1) +#define GFXFORMAT_ARGB32		(0xC << 1) +#define GFXFORMAT_RGBA32		(0xD << 1) +#define GFXFORMAT_RGBx32		(0xE << 1) +  /* Panel Configuration */  struct panel_config {  	u32 timing_h; @@ -178,6 +208,7 @@ struct panel_config {  	u32 data_lines;  	u32 load_mode;  	u32 panel_color; +	u32 gfx_format;  	void *frame_buffer;  }; |