diff options
Diffstat (limited to 'drivers/video/sh_mobile_lcdcfb.h')
-rw-r--r-- | drivers/video/sh_mobile_lcdcfb.h | 84 |
1 files changed, 69 insertions, 15 deletions
diff --git a/drivers/video/sh_mobile_lcdcfb.h b/drivers/video/sh_mobile_lcdcfb.h index a58a0f38848b..da1c26e78a57 100644 --- a/drivers/video/sh_mobile_lcdcfb.h +++ b/drivers/video/sh_mobile_lcdcfb.h | |||
@@ -14,9 +14,35 @@ enum { LDDCKPAT1R, LDDCKPAT2R, LDMT1R, LDMT2R, LDMT3R, LDDFR, LDSM1R, | |||
14 | 14 | ||
15 | #define PALETTE_NR 16 | 15 | #define PALETTE_NR 16 |
16 | 16 | ||
17 | struct sh_mobile_lcdc_priv; | ||
18 | struct fb_info; | ||
19 | struct backlight_device; | 17 | struct backlight_device; |
18 | struct fb_info; | ||
19 | struct module; | ||
20 | struct sh_mobile_lcdc_chan; | ||
21 | struct sh_mobile_lcdc_entity; | ||
22 | struct sh_mobile_lcdc_format_info; | ||
23 | struct sh_mobile_lcdc_priv; | ||
24 | |||
25 | #define SH_MOBILE_LCDC_DISPLAY_DISCONNECTED 0 | ||
26 | #define SH_MOBILE_LCDC_DISPLAY_CONNECTED 1 | ||
27 | |||
28 | struct sh_mobile_lcdc_entity_ops { | ||
29 | /* Display */ | ||
30 | int (*display_on)(struct sh_mobile_lcdc_entity *entity); | ||
31 | void (*display_off)(struct sh_mobile_lcdc_entity *entity); | ||
32 | }; | ||
33 | |||
34 | enum sh_mobile_lcdc_entity_event { | ||
35 | SH_MOBILE_LCDC_EVENT_DISPLAY_CONNECT, | ||
36 | SH_MOBILE_LCDC_EVENT_DISPLAY_DISCONNECT, | ||
37 | SH_MOBILE_LCDC_EVENT_DISPLAY_MODE, | ||
38 | }; | ||
39 | |||
40 | struct sh_mobile_lcdc_entity { | ||
41 | struct module *owner; | ||
42 | const struct sh_mobile_lcdc_entity_ops *ops; | ||
43 | struct sh_mobile_lcdc_chan *lcdc; | ||
44 | struct fb_videomode def_mode; | ||
45 | }; | ||
20 | 46 | ||
21 | /* | 47 | /* |
22 | * struct sh_mobile_lcdc_chan - LCDC display channel | 48 | * struct sh_mobile_lcdc_chan - LCDC display channel |
@@ -27,29 +53,57 @@ struct backlight_device; | |||
27 | */ | 53 | */ |
28 | struct sh_mobile_lcdc_chan { | 54 | struct sh_mobile_lcdc_chan { |
29 | struct sh_mobile_lcdc_priv *lcdc; | 55 | struct sh_mobile_lcdc_priv *lcdc; |
56 | struct sh_mobile_lcdc_entity *tx_dev; | ||
57 | const struct sh_mobile_lcdc_chan_cfg *cfg; | ||
58 | |||
30 | unsigned long *reg_offs; | 59 | unsigned long *reg_offs; |
31 | unsigned long ldmt1r_value; | 60 | unsigned long ldmt1r_value; |
32 | unsigned long enabled; /* ME and SE in LDCNT2R */ | 61 | unsigned long enabled; /* ME and SE in LDCNT2R */ |
33 | struct sh_mobile_lcdc_chan_cfg cfg; | 62 | void *meram; |
34 | u32 pseudo_palette[PALETTE_NR]; | 63 | |
35 | struct fb_info *info; | 64 | struct mutex open_lock; /* protects the use counter */ |
36 | struct backlight_device *bl; | 65 | int use_count; |
66 | |||
67 | void *fb_mem; | ||
68 | unsigned long fb_size; | ||
69 | |||
37 | dma_addr_t dma_handle; | 70 | dma_addr_t dma_handle; |
38 | struct fb_deferred_io defio; | ||
39 | struct scatterlist *sglist; | ||
40 | unsigned long frame_end; | ||
41 | unsigned long pan_offset; | 71 | unsigned long pan_offset; |
72 | |||
73 | unsigned long frame_end; | ||
42 | wait_queue_head_t frame_end_wait; | 74 | wait_queue_head_t frame_end_wait; |
43 | struct completion vsync_completion; | 75 | struct completion vsync_completion; |
44 | struct fb_var_screeninfo display_var; | 76 | |
45 | int use_count; | 77 | const struct sh_mobile_lcdc_format_info *format; |
46 | int blank_status; | 78 | u32 colorspace; |
47 | struct mutex open_lock; /* protects the use counter */ | 79 | unsigned int xres; |
48 | int meram_enabled; | 80 | unsigned int xres_virtual; |
81 | unsigned int yres; | ||
82 | unsigned int yres_virtual; | ||
83 | unsigned int pitch; | ||
49 | 84 | ||
50 | unsigned long base_addr_y; | 85 | unsigned long base_addr_y; |
51 | unsigned long base_addr_c; | 86 | unsigned long base_addr_c; |
52 | unsigned int pitch; | 87 | |
88 | int (*notify)(struct sh_mobile_lcdc_chan *ch, | ||
89 | enum sh_mobile_lcdc_entity_event event, | ||
90 | const struct fb_videomode *mode, | ||
91 | const struct fb_monspecs *monspec); | ||
92 | |||
93 | /* Backlight */ | ||
94 | struct backlight_device *bl; | ||
95 | |||
96 | /* FB */ | ||
97 | struct fb_info *info; | ||
98 | u32 pseudo_palette[PALETTE_NR]; | ||
99 | struct { | ||
100 | unsigned int width; | ||
101 | unsigned int height; | ||
102 | struct fb_videomode mode; | ||
103 | } display; | ||
104 | struct fb_deferred_io defio; | ||
105 | struct scatterlist *sglist; | ||
106 | int blank_status; | ||
53 | }; | 107 | }; |
54 | 108 | ||
55 | #endif | 109 | #endif |