diff options
author | Justin Waters <justin@justin-linux.(none)> | 2008-01-21 13:46:21 -0500 |
---|---|---|
committer | Justin Waters <justin@justin-linux.(none)> | 2008-01-21 13:46:21 -0500 |
commit | 037af3481edfb2b7a3fbed1dffd277df25f677b9 (patch) | |
tree | 2c39b8891b4494298b7ee447c480645d96e13bdb /include/lcd.h | |
parent | ba999c531ed16ec749b2b6f4b0133cee38842b91 (diff) |
Add Atmel AT91 patch version 1.5
This patch adds support for the following boards:
AT91RM9200-EK
AT91SAM9260-EK
AT91SAM9261-EK
AT91SAM9263-EK
AT91SAM9RL-EK
It was downloaded from http://www.linux4sam.org/twiki/pub/Linux4SAM/U-Boot/u-boot-1.1.5_atmel_1.5.diff.bz2
Signed-off-by: Justin Waters <justin.waters@timesys.com>
Diffstat (limited to 'include/lcd.h')
-rw-r--r-- | include/lcd.h | 54 |
1 files changed, 53 insertions, 1 deletions
diff --git a/include/lcd.h b/include/lcd.h index b688583828b..822c68103c4 100644 --- a/include/lcd.h +++ b/include/lcd.h @@ -155,7 +155,59 @@ typedef struct vidinfo { u_char vl_bpix; /* Bits per pixel, 0 = 1 */ } vidinfo_t; -#endif /* CONFIG_MPC823, CONFIG_PXA250 or CONFIG_MCC200 */ + +#elif defined(CONFIG_AT91SAM9261EK) || defined(CONFIG_AT91SAM9263EK) || \ + defined(CONFIG_AT91SAM9RLEK) + +#include <asm/arch/hardware.h> +/* + * Infos on LCDC for AT91SAM9261. Contains frame buffer address + */ +struct lcdc_info { + AT91PS_LCDC lcdc; + unsigned long frame_buffer; +}; + +/* + * LCD Controller structure for AT91SAM9x + */ +typedef struct vidinfo { + ushort vl_col; /* Number of columns (i.e. 640) */ + ushort vl_row; /* Number of rows (i.e. 480) */ + ushort vl_width; /* Width of display area in millimeters */ + ushort vl_height; /* Height of display area in millimeters */ + __u32 vl_pixclock; /* pixel clock in ps */ + + /* LCD configuration register */ + u_char vl_clkp; /* Clock polarity */ + u_char vl_oep; /* Output Enable polarity */ + u_char vl_hsp; /* Horizontal Sync polarity */ + u_char vl_vsp; /* Vertical Sync polarity */ + u_char vl_dp; /* Data polarity */ + u_char vl_bpix; /* Bits per pixel, 0 = 1, 1 = 2, 2 = 4, 3 = 8, 4 = 16 */ + u_char vl_lbw; /* LCD Bus width, 0 = 4, 1 = 8 */ + u_char vl_splt; /* Split display, 0 = single-scan, 1 = dual-scan */ + u_char vl_clor; /* Color, 0 = mono, 1 = color */ + u_char vl_tft; /* 0 = passive, 1 = TFT */ + + /* Horizontal control register. Timing from data sheet */ + ushort vl_hpw; /* Horz sync pulse width */ + u_char vl_blw; /* Wait before of line */ + u_char vl_elw; /* Wait end of line */ + + /* Vertical control register. */ + u_char vl_vpw; /* Vertical sync pulse width */ + u_char vl_bfw; /* Wait before of frame */ + u_char vl_efw; /* Wait end of frame */ + + /* PXA LCD controller params */ + struct lcdc_info controller; + +} vidinfo_t; + +extern vidinfo_t panel_info; + +#endif /* CONFIG_MPC823, CONFIG_PXA250 or CONFIG_MCC200 or CONFIG_AT91SAM9261EK or CONFIG_AT91SAM9263EK */ /* Video functions */ |