1 #ifndef __ASM_SH_MOBILE_LCDC_H__
2 #define __ASM_SH_MOBILE_LCDC_H__
6 enum { RGB8
, /* 24bpp, 8:8:8 */
8 RGB12A
, /* 24bpp, 12:12 */
13 SYS8A
, /* 24bpp, 8:8:8 */
14 SYS8B
, /* 18bpp, 8:8:2 */
15 SYS8C
, /* 18bpp, 2:8:8 */
16 SYS8D
, /* 16bpp, 8:8 */
17 SYS9
, /* 18bpp, 9:9 */
18 SYS12
, /* 24bpp, 12:12 */
20 SYS16B
, /* 18bpp, 16:2 */
21 SYS16C
, /* 18bpp, 2:16 */
25 enum { LCDC_CHAN_DISABLED
= 0,
29 enum { LCDC_CLK_BUS
, LCDC_CLK_PERIPHERAL
, LCDC_CLK_EXTERNAL
};
31 #define LCDC_FLAGS_DWPOL (1 << 0) /* Rising edge dot clock data latch */
32 #define LCDC_FLAGS_DIPOL (1 << 1) /* Active low display enable polarity */
33 #define LCDC_FLAGS_DAPOL (1 << 2) /* Active low display data polarity */
34 #define LCDC_FLAGS_HSCNT (1 << 3) /* Disable HSYNC during VBLANK */
35 #define LCDC_FLAGS_DWCNT (1 << 4) /* Disable dotclock during blanking */
37 struct sh_mobile_lcdc_sys_bus_cfg
{
42 struct sh_mobile_lcdc_sys_bus_ops
{
43 void (*write_index
)(void *handle
, unsigned long data
);
44 void (*write_data
)(void *handle
, unsigned long data
);
45 unsigned long (*read_data
)(void *handle
);
48 struct sh_mobile_lcdc_board_cfg
{
50 int (*setup_sys
)(void *board_data
, void *sys_ops_handle
,
51 struct sh_mobile_lcdc_sys_bus_ops
*sys_ops
);
52 void (*display_on
)(void *board_data
);
53 void (*display_off
)(void *board_data
);
56 struct sh_mobile_lcdc_lcd_size_cfg
{ /* width and height of panel in mm */
61 struct sh_mobile_lcdc_chan_cfg
{
64 int interface_type
; /* selects RGBn or SYSn I/F, see above */
66 unsigned long flags
; /* LCDC_FLAGS_... */
67 struct fb_videomode lcd_cfg
;
68 struct sh_mobile_lcdc_lcd_size_cfg lcd_size_cfg
;
69 struct sh_mobile_lcdc_board_cfg board_cfg
;
70 struct sh_mobile_lcdc_sys_bus_cfg sys_bus_cfg
; /* only for SYSn I/F */
73 struct sh_mobile_lcdc_info
{
75 struct sh_mobile_lcdc_chan_cfg ch
[2];
78 #endif /* __ASM_SH_MOBILE_LCDC_H__ */