| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 1 | #ifndef __ASM_SH_MOBILE_LCDC_H__ | 
 | 2 | #define __ASM_SH_MOBILE_LCDC_H__ | 
 | 3 |  | 
 | 4 | #include <linux/fb.h> | 
| Damian | 7caa434 | 2011-05-18 11:10:07 +0000 | [diff] [blame] | 5 | #include <video/sh_mobile_meram.h> | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 6 |  | 
| Guennadi Liakhovetski | 1430e00 | 2010-05-21 15:15:41 +0000 | [diff] [blame] | 7 | enum { | 
 | 8 | 	RGB8,   /* 24bpp, 8:8:8 */ | 
 | 9 | 	RGB9,   /* 18bpp, 9:9 */ | 
 | 10 | 	RGB12A, /* 24bpp, 12:12 */ | 
 | 11 | 	RGB12B, /* 12bpp */ | 
 | 12 | 	RGB16,  /* 16bpp */ | 
 | 13 | 	RGB18,  /* 18bpp */ | 
 | 14 | 	RGB24,  /* 24bpp */ | 
 | 15 | 	YUV422, /* 16bpp */ | 
 | 16 | 	SYS8A,  /* 24bpp, 8:8:8 */ | 
 | 17 | 	SYS8B,  /* 18bpp, 8:8:2 */ | 
 | 18 | 	SYS8C,  /* 18bpp, 2:8:8 */ | 
 | 19 | 	SYS8D,  /* 16bpp, 8:8 */ | 
 | 20 | 	SYS9,   /* 18bpp, 9:9 */ | 
 | 21 | 	SYS12,  /* 24bpp, 12:12 */ | 
 | 22 | 	SYS16A, /* 16bpp */ | 
 | 23 | 	SYS16B, /* 18bpp, 16:2 */ | 
 | 24 | 	SYS16C, /* 18bpp, 2:16 */ | 
 | 25 | 	SYS18,  /* 18bpp */ | 
 | 26 | 	SYS24,  /* 24bpp */ | 
 | 27 | }; | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 28 |  | 
 | 29 | enum { LCDC_CHAN_DISABLED = 0, | 
 | 30 |        LCDC_CHAN_MAINLCD, | 
 | 31 |        LCDC_CHAN_SUBLCD }; | 
 | 32 |  | 
 | 33 | enum { LCDC_CLK_BUS, LCDC_CLK_PERIPHERAL, LCDC_CLK_EXTERNAL }; | 
 | 34 |  | 
| Magnus Damm | f400f51 | 2008-10-09 18:48:16 +0900 | [diff] [blame] | 35 | #define LCDC_FLAGS_DWPOL (1 << 0) /* Rising edge dot clock data latch */ | 
 | 36 | #define LCDC_FLAGS_DIPOL (1 << 1) /* Active low display enable polarity */ | 
 | 37 | #define LCDC_FLAGS_DAPOL (1 << 2) /* Active low display data polarity */ | 
 | 38 | #define LCDC_FLAGS_HSCNT (1 << 3) /* Disable HSYNC during VBLANK */ | 
 | 39 | #define LCDC_FLAGS_DWCNT (1 << 4) /* Disable dotclock during blanking */ | 
 | 40 |  | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 41 | struct sh_mobile_lcdc_sys_bus_cfg { | 
 | 42 | 	unsigned long ldmt2r; | 
 | 43 | 	unsigned long ldmt3r; | 
| Magnus Damm | 8564557 | 2008-12-19 15:34:41 +0900 | [diff] [blame] | 44 | 	unsigned long deferred_io_msec; | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 45 | }; | 
 | 46 |  | 
 | 47 | struct sh_mobile_lcdc_sys_bus_ops { | 
 | 48 | 	void (*write_index)(void *handle, unsigned long data); | 
 | 49 | 	void (*write_data)(void *handle, unsigned long data); | 
 | 50 | 	unsigned long (*read_data)(void *handle); | 
 | 51 | }; | 
 | 52 |  | 
| Guennadi Liakhovetski | 6de9edd | 2010-09-03 07:20:23 +0000 | [diff] [blame] | 53 | struct module; | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 54 | struct sh_mobile_lcdc_board_cfg { | 
| Guennadi Liakhovetski | 6de9edd | 2010-09-03 07:20:23 +0000 | [diff] [blame] | 55 | 	struct module *owner; | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 56 | 	void *board_data; | 
 | 57 | 	int (*setup_sys)(void *board_data, void *sys_ops_handle, | 
 | 58 | 			 struct sh_mobile_lcdc_sys_bus_ops *sys_ops); | 
| Magnus Damm | ef61aae | 2009-12-07 14:20:06 +0000 | [diff] [blame] | 59 | 	void (*start_transfer)(void *board_data, void *sys_ops_handle, | 
 | 60 | 			       struct sh_mobile_lcdc_sys_bus_ops *sys_ops); | 
| Guennadi Liakhovetski | c243939 | 2010-07-21 10:13:17 +0000 | [diff] [blame] | 61 | 	void (*display_on)(void *board_data, struct fb_info *info); | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 62 | 	void (*display_off)(void *board_data); | 
| Alexandre Courbot | 3b0fd9d | 2011-02-16 03:49:01 +0000 | [diff] [blame] | 63 | 	int (*set_brightness)(void *board_data, int brightness); | 
 | 64 | 	int (*get_brightness)(void *board_data); | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 65 | }; | 
 | 66 |  | 
| Magnus Damm | ce9c008 | 2008-08-11 15:26:00 +0900 | [diff] [blame] | 67 | struct sh_mobile_lcdc_lcd_size_cfg { /* width and height of panel in mm */ | 
 | 68 | 	unsigned long width; | 
 | 69 | 	unsigned long height; | 
 | 70 | }; | 
 | 71 |  | 
| Alexandre Courbot | 3b0fd9d | 2011-02-16 03:49:01 +0000 | [diff] [blame] | 72 | /* backlight info */ | 
 | 73 | struct sh_mobile_lcdc_bl_info { | 
 | 74 | 	const char *name; | 
 | 75 | 	int max_brightness; | 
 | 76 | }; | 
 | 77 |  | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 78 | struct sh_mobile_lcdc_chan_cfg { | 
 | 79 | 	int chan; | 
 | 80 | 	int bpp; | 
 | 81 | 	int interface_type; /* selects RGBn or SYSn I/F, see above */ | 
 | 82 | 	int clock_divider; | 
| Magnus Damm | f400f51 | 2008-10-09 18:48:16 +0900 | [diff] [blame] | 83 | 	unsigned long flags; /* LCDC_FLAGS_... */ | 
| Guennadi Liakhovetski | 4443240 | 2010-09-03 07:20:04 +0000 | [diff] [blame] | 84 | 	const struct fb_videomode *lcd_cfg; | 
 | 85 | 	int num_cfg; | 
| Magnus Damm | ce9c008 | 2008-08-11 15:26:00 +0900 | [diff] [blame] | 86 | 	struct sh_mobile_lcdc_lcd_size_cfg lcd_size_cfg; | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 87 | 	struct sh_mobile_lcdc_board_cfg board_cfg; | 
| Alexandre Courbot | 3b0fd9d | 2011-02-16 03:49:01 +0000 | [diff] [blame] | 88 | 	struct sh_mobile_lcdc_bl_info bl_info; | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 89 | 	struct sh_mobile_lcdc_sys_bus_cfg sys_bus_cfg; /* only for SYSn I/F */ | 
| Damian Hobson-Garcia | 53b5031 | 2011-02-24 05:47:13 +0000 | [diff] [blame] | 90 | 	int nonstd; | 
| Damian | 7caa434 | 2011-05-18 11:10:07 +0000 | [diff] [blame] | 91 | 	struct sh_mobile_meram_cfg *meram_cfg; | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 92 | }; | 
 | 93 |  | 
 | 94 | struct sh_mobile_lcdc_info { | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 95 | 	int clock_source; | 
 | 96 | 	struct sh_mobile_lcdc_chan_cfg ch[2]; | 
| Damian | 7caa434 | 2011-05-18 11:10:07 +0000 | [diff] [blame] | 97 | 	struct sh_mobile_meram_info *meram_dev; | 
| Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 98 | }; | 
 | 99 |  | 
 | 100 | #endif /* __ASM_SH_MOBILE_LCDC_H__ */ |