fbdev: sh_mobile_lcdc: Store configuration in channel structure
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / video / sh_mobile_lcdcfb.h
CommitLineData
6de9edd5
GL
1#ifndef SH_MOBILE_LCDCFB_H
2#define SH_MOBILE_LCDCFB_H
3
4#include <linux/completion.h>
5#include <linux/fb.h>
dd210503 6#include <linux/mutex.h>
6de9edd5
GL
7#include <linux/wait.h>
8
9/* per-channel registers */
10enum { LDDCKPAT1R, LDDCKPAT2R, LDMT1R, LDMT2R, LDMT3R, LDDFR, LDSM1R,
53b50314 11 LDSM2R, LDSA1R, LDSA2R, LDMLSR, LDHCNR, LDHSYNR, LDVLNR, LDVSYNR, LDPMR,
6de9edd5
GL
12 LDHAJR,
13 NR_CH_REGS };
14
15#define PALETTE_NR 16
16
3b0fd9d7 17struct backlight_device;
d2ccdc80
LP
18struct fb_info;
19struct module;
fc9e78e6 20struct sh_mobile_lcdc_chan;
d2ccdc80 21struct sh_mobile_lcdc_entity;
fc9e78e6 22struct sh_mobile_lcdc_format_info;
d2ccdc80
LP
23struct sh_mobile_lcdc_priv;
24
458981c3
LP
25#define SH_MOBILE_LCDC_DISPLAY_DISCONNECTED 0
26#define SH_MOBILE_LCDC_DISPLAY_CONNECTED 1
27
d2ccdc80
LP
28struct sh_mobile_lcdc_entity_ops {
29 /* Display */
5864ace1 30 int (*display_on)(struct sh_mobile_lcdc_entity *entity);
d2ccdc80
LP
31 void (*display_off)(struct sh_mobile_lcdc_entity *entity);
32};
33
ecd29947
LP
34enum 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
d2ccdc80
LP
40struct sh_mobile_lcdc_entity {
41 struct module *owner;
42 const struct sh_mobile_lcdc_entity_ops *ops;
e34d0bbb 43 struct sh_mobile_lcdc_chan *lcdc;
13f80eea 44 struct fb_videomode def_mode;
d2ccdc80 45};
6de9edd5 46
9a217e34
LP
47/*
48 * struct sh_mobile_lcdc_chan - LCDC display channel
49 *
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
53 */
6de9edd5
GL
54struct sh_mobile_lcdc_chan {
55 struct sh_mobile_lcdc_priv *lcdc;
9a2985e7 56 struct sh_mobile_lcdc_entity *tx_dev;
740f802a 57 struct sh_mobile_lcdc_chan_cfg cfg;
9a2985e7 58
6de9edd5
GL
59 unsigned long *reg_offs;
60 unsigned long ldmt1r_value;
61 unsigned long enabled; /* ME and SE in LDCNT2R */
740f802a
LP
62 int meram_enabled;
63
64 struct mutex open_lock; /* protects the use counter */
65 int use_count;
66
a67f379d
LP
67 void *fb_mem;
68 unsigned long fb_size;
6de9edd5 69 dma_addr_t dma_handle;
6de9edd5 70 unsigned long pan_offset;
740f802a
LP
71
72 unsigned long frame_end;
6de9edd5
GL
73 wait_queue_head_t frame_end_wait;
74 struct completion vsync_completion;
9a217e34 75
fc9e78e6 76 const struct sh_mobile_lcdc_format_info *format;
58f03d99
LP
77 u32 colorspace;
78 unsigned int xres;
79 unsigned int xres_virtual;
80 unsigned int yres;
81 unsigned int yres_virtual;
82 unsigned int pitch;
83
9a217e34
LP
84 unsigned long base_addr_y;
85 unsigned long base_addr_c;
ecd29947
LP
86
87 int (*notify)(struct sh_mobile_lcdc_chan *ch,
88 enum sh_mobile_lcdc_entity_event event,
e0c8601a
LP
89 const struct fb_videomode *mode,
90 const struct fb_monspecs *monspec);
740f802a
LP
91
92 /* Backlight */
93 struct backlight_device *bl;
94
95 /* FB */
96 struct fb_info *info;
97 u32 pseudo_palette[PALETTE_NR];
98 struct {
99 unsigned int width;
100 unsigned int height;
101 struct fb_videomode mode;
102 } display;
103 struct fb_deferred_io defio;
104 struct scatterlist *sglist;
105 int blank_status;
6de9edd5
GL
106};
107
108#endif