1 #ifndef SH_MOBILE_LCDCFB_H
2 #define SH_MOBILE_LCDCFB_H
4 #include <linux/completion.h>
6 #include <linux/mutex.h>
7 #include <linux/wait.h>
9 /* per-channel registers */
10 enum { LDDCKPAT1R
, LDDCKPAT2R
, LDMT1R
, LDMT2R
, LDMT3R
, LDDFR
, LDSM1R
,
11 LDSM2R
, LDSA1R
, LDSA2R
, LDMLSR
, LDHCNR
, LDHSYNR
, LDVLNR
, LDVSYNR
, LDPMR
,
17 struct backlight_device
;
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
;
25 #define SH_MOBILE_LCDC_DISPLAY_DISCONNECTED 0
26 #define SH_MOBILE_LCDC_DISPLAY_CONNECTED 1
28 struct sh_mobile_lcdc_entity_ops
{
30 int (*display_on
)(struct sh_mobile_lcdc_entity
*entity
);
31 void (*display_off
)(struct sh_mobile_lcdc_entity
*entity
);
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
,
40 struct sh_mobile_lcdc_entity
{
42 const struct sh_mobile_lcdc_entity_ops
*ops
;
43 struct sh_mobile_lcdc_chan
*lcdc
;
44 struct fb_videomode def_mode
;
48 * struct sh_mobile_lcdc_chan - LCDC display channel
50 * @base_addr_y: Frame buffer viewport base address (luma component)
51 * @base_addr_c: Frame buffer viewport base address (chroma component)
52 * @pitch: Frame buffer line pitch
54 struct sh_mobile_lcdc_chan
{
55 struct sh_mobile_lcdc_priv
*lcdc
;
56 struct sh_mobile_lcdc_entity
*tx_dev
;
57 const struct sh_mobile_lcdc_chan_cfg
*cfg
;
59 unsigned long *reg_offs
;
60 unsigned long ldmt1r_value
;
61 unsigned long enabled
; /* ME and SE in LDCNT2R */
64 struct mutex open_lock
; /* protects the use counter */
68 unsigned long fb_size
;
70 dma_addr_t dma_handle
;
71 unsigned long pan_offset
;
73 unsigned long frame_end
;
74 wait_queue_head_t frame_end_wait
;
75 struct completion vsync_completion
;
77 const struct sh_mobile_lcdc_format_info
*format
;
80 unsigned int xres_virtual
;
82 unsigned int yres_virtual
;
85 unsigned long base_addr_y
;
86 unsigned long base_addr_c
;
87 unsigned int line_size
;
89 int (*notify
)(struct sh_mobile_lcdc_chan
*ch
,
90 enum sh_mobile_lcdc_entity_event event
,
91 const struct fb_videomode
*mode
,
92 const struct fb_monspecs
*monspec
);
95 struct backlight_device
*bl
;
99 u32 pseudo_palette
[PALETTE_NR
];
103 struct fb_videomode mode
;
105 struct fb_deferred_io defio
;
106 struct scatterlist
*sglist
;