]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/video/omapdss.h
OMAPDSS: DVI: Add ops
[mirror_ubuntu-bionic-kernel.git] / include / video / omapdss.h
CommitLineData
559d6701 1/*
559d6701
TV
2 * Copyright (C) 2008 Nokia Corporation
3 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
a0b38cc4
TV
18#ifndef __OMAP_OMAPDSS_H
19#define __OMAP_OMAPDSS_H
559d6701
TV
20
21#include <linux/list.h>
22#include <linux/kobject.h>
23#include <linux/device.h>
348be69d 24#include <linux/interrupt.h>
559d6701 25
6fcd485b
TV
26#include <video/videomode.h>
27
559d6701
TV
28#define DISPC_IRQ_FRAMEDONE (1 << 0)
29#define DISPC_IRQ_VSYNC (1 << 1)
30#define DISPC_IRQ_EVSYNC_EVEN (1 << 2)
31#define DISPC_IRQ_EVSYNC_ODD (1 << 3)
32#define DISPC_IRQ_ACBIAS_COUNT_STAT (1 << 4)
33#define DISPC_IRQ_PROG_LINE_NUM (1 << 5)
34#define DISPC_IRQ_GFX_FIFO_UNDERFLOW (1 << 6)
35#define DISPC_IRQ_GFX_END_WIN (1 << 7)
36#define DISPC_IRQ_PAL_GAMMA_MASK (1 << 8)
37#define DISPC_IRQ_OCP_ERR (1 << 9)
38#define DISPC_IRQ_VID1_FIFO_UNDERFLOW (1 << 10)
39#define DISPC_IRQ_VID1_END_WIN (1 << 11)
40#define DISPC_IRQ_VID2_FIFO_UNDERFLOW (1 << 12)
41#define DISPC_IRQ_VID2_END_WIN (1 << 13)
42#define DISPC_IRQ_SYNC_LOST (1 << 14)
43#define DISPC_IRQ_SYNC_LOST_DIGIT (1 << 15)
44#define DISPC_IRQ_WAKEUP (1 << 16)
2a205f34
SS
45#define DISPC_IRQ_SYNC_LOST2 (1 << 17)
46#define DISPC_IRQ_VSYNC2 (1 << 18)
b8c095b4
AT
47#define DISPC_IRQ_VID3_END_WIN (1 << 19)
48#define DISPC_IRQ_VID3_FIFO_UNDERFLOW (1 << 20)
2a205f34
SS
49#define DISPC_IRQ_ACBIAS_COUNT_STAT2 (1 << 21)
50#define DISPC_IRQ_FRAMEDONE2 (1 << 22)
7f6f3c4b
TV
51#define DISPC_IRQ_FRAMEDONEWB (1 << 23)
52#define DISPC_IRQ_FRAMEDONETV (1 << 24)
53#define DISPC_IRQ_WBBUFFEROVERFLOW (1 << 25)
14d33d38
CM
54#define DISPC_IRQ_SYNC_LOST3 (1 << 27)
55#define DISPC_IRQ_VSYNC3 (1 << 28)
56#define DISPC_IRQ_ACBIAS_COUNT_STAT3 (1 << 29)
57#define DISPC_IRQ_FRAMEDONE3 (1 << 30)
559d6701
TV
58
59struct omap_dss_device;
60struct omap_overlay_manager;
a97a9634 61struct dss_lcd_mgr_config;
9c0b8420
RN
62struct snd_aes_iec958;
63struct snd_cea_861_aud_if;
559d6701
TV
64
65enum omap_display_type {
66 OMAP_DISPLAY_TYPE_NONE = 0,
67 OMAP_DISPLAY_TYPE_DPI = 1 << 0,
68 OMAP_DISPLAY_TYPE_DBI = 1 << 1,
69 OMAP_DISPLAY_TYPE_SDI = 1 << 2,
70 OMAP_DISPLAY_TYPE_DSI = 1 << 3,
71 OMAP_DISPLAY_TYPE_VENC = 1 << 4,
b119601d 72 OMAP_DISPLAY_TYPE_HDMI = 1 << 5,
bc24b8b6 73 OMAP_DISPLAY_TYPE_DVI = 1 << 6,
559d6701
TV
74};
75
76enum omap_plane {
77 OMAP_DSS_GFX = 0,
78 OMAP_DSS_VIDEO1 = 1,
b8c095b4
AT
79 OMAP_DSS_VIDEO2 = 2,
80 OMAP_DSS_VIDEO3 = 3,
66a0f9e4 81 OMAP_DSS_WB = 4,
559d6701
TV
82};
83
84enum omap_channel {
85 OMAP_DSS_CHANNEL_LCD = 0,
86 OMAP_DSS_CHANNEL_DIGIT = 1,
8613b000 87 OMAP_DSS_CHANNEL_LCD2 = 2,
ff6331e2 88 OMAP_DSS_CHANNEL_LCD3 = 3,
559d6701
TV
89};
90
91enum omap_color_mode {
92 OMAP_DSS_COLOR_CLUT1 = 1 << 0, /* BITMAP 1 */
93 OMAP_DSS_COLOR_CLUT2 = 1 << 1, /* BITMAP 2 */
94 OMAP_DSS_COLOR_CLUT4 = 1 << 2, /* BITMAP 4 */
95 OMAP_DSS_COLOR_CLUT8 = 1 << 3, /* BITMAP 8 */
96 OMAP_DSS_COLOR_RGB12U = 1 << 4, /* RGB12, 16-bit container */
97 OMAP_DSS_COLOR_ARGB16 = 1 << 5, /* ARGB16 */
98 OMAP_DSS_COLOR_RGB16 = 1 << 6, /* RGB16 */
99 OMAP_DSS_COLOR_RGB24U = 1 << 7, /* RGB24, 32-bit container */
100 OMAP_DSS_COLOR_RGB24P = 1 << 8, /* RGB24, 24-bit container */
101 OMAP_DSS_COLOR_YUV2 = 1 << 9, /* YUV2 4:2:2 co-sited */
102 OMAP_DSS_COLOR_UYVY = 1 << 10, /* UYVY 4:2:2 co-sited */
103 OMAP_DSS_COLOR_ARGB32 = 1 << 11, /* ARGB32 */
104 OMAP_DSS_COLOR_RGBA32 = 1 << 12, /* RGBA32 */
105 OMAP_DSS_COLOR_RGBX32 = 1 << 13, /* RGBx32 */
f20e4220
AJ
106 OMAP_DSS_COLOR_NV12 = 1 << 14, /* NV12 format: YUV 4:2:0 */
107 OMAP_DSS_COLOR_RGBA16 = 1 << 15, /* RGBA16 - 4444 */
108 OMAP_DSS_COLOR_RGBX16 = 1 << 16, /* RGBx16 - 4444 */
109 OMAP_DSS_COLOR_ARGB16_1555 = 1 << 17, /* ARGB16 - 1555 */
110 OMAP_DSS_COLOR_XRGB16_1555 = 1 << 18, /* xRGB16 - 1555 */
559d6701
TV
111};
112
559d6701
TV
113enum omap_dss_load_mode {
114 OMAP_DSS_LOAD_CLUT_AND_FRAME = 0,
115 OMAP_DSS_LOAD_CLUT_ONLY = 1,
116 OMAP_DSS_LOAD_FRAME_ONLY = 2,
117 OMAP_DSS_LOAD_CLUT_ONCE_FRAME = 3,
118};
119
120enum omap_dss_trans_key_type {
121 OMAP_DSS_COLOR_KEY_GFX_DST = 0,
122 OMAP_DSS_COLOR_KEY_VID_SRC = 1,
123};
124
125enum omap_rfbi_te_mode {
126 OMAP_DSS_RFBI_TE_MODE_1 = 1,
127 OMAP_DSS_RFBI_TE_MODE_2 = 2,
128};
129
a8d5e41c
AT
130enum omap_dss_signal_level {
131 OMAPDSS_SIG_ACTIVE_HIGH = 0,
132 OMAPDSS_SIG_ACTIVE_LOW = 1,
133};
134
135enum omap_dss_signal_edge {
136 OMAPDSS_DRIVE_SIG_OPPOSITE_EDGES,
137 OMAPDSS_DRIVE_SIG_RISING_EDGE,
138 OMAPDSS_DRIVE_SIG_FALLING_EDGE,
139};
140
559d6701
TV
141enum omap_dss_venc_type {
142 OMAP_DSS_VENC_TYPE_COMPOSITE,
143 OMAP_DSS_VENC_TYPE_SVIDEO,
144};
145
a3b3cc2b
AT
146enum omap_dss_dsi_pixel_format {
147 OMAP_DSS_DSI_FMT_RGB888,
148 OMAP_DSS_DSI_FMT_RGB666,
149 OMAP_DSS_DSI_FMT_RGB666_PACKED,
150 OMAP_DSS_DSI_FMT_RGB565,
151};
152
7e951ee9
AT
153enum omap_dss_dsi_mode {
154 OMAP_DSS_DSI_CMD_MODE = 0,
155 OMAP_DSS_DSI_VIDEO_MODE,
156};
157
559d6701
TV
158enum omap_display_caps {
159 OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE = 1 << 0,
160 OMAP_DSS_DISPLAY_CAP_TEAR_ELIM = 1 << 1,
161};
162
559d6701
TV
163enum omap_dss_display_state {
164 OMAP_DSS_DISPLAY_DISABLED = 0,
165 OMAP_DSS_DISPLAY_ACTIVE,
559d6701
TV
166};
167
9c0b8420
RN
168enum omap_dss_audio_state {
169 OMAP_DSS_AUDIO_DISABLED = 0,
170 OMAP_DSS_AUDIO_ENABLED,
171 OMAP_DSS_AUDIO_CONFIGURED,
172 OMAP_DSS_AUDIO_PLAYING,
173};
174
559d6701 175enum omap_dss_rotation_type {
65e006ff
CM
176 OMAP_DSS_ROT_DMA = 1 << 0,
177 OMAP_DSS_ROT_VRFB = 1 << 1,
178 OMAP_DSS_ROT_TILER = 1 << 2,
559d6701
TV
179};
180
181/* clockwise rotation angle */
182enum omap_dss_rotation_angle {
183 OMAP_DSS_ROT_0 = 0,
184 OMAP_DSS_ROT_90 = 1,
185 OMAP_DSS_ROT_180 = 2,
186 OMAP_DSS_ROT_270 = 3,
187};
188
189enum omap_overlay_caps {
190 OMAP_DSS_OVL_CAP_SCALE = 1 << 0,
f6dc8150
TV
191 OMAP_DSS_OVL_CAP_GLOBAL_ALPHA = 1 << 1,
192 OMAP_DSS_OVL_CAP_PRE_MULT_ALPHA = 1 << 2,
11354dd5 193 OMAP_DSS_OVL_CAP_ZORDER = 1 << 3,
d79db853
AT
194 OMAP_DSS_OVL_CAP_POS = 1 << 4,
195 OMAP_DSS_OVL_CAP_REPLICATION = 1 << 5,
559d6701
TV
196};
197
198enum omap_overlay_manager_caps {
4a9e78ab 199 OMAP_DSS_DUMMY_VALUE, /* add a dummy value to prevent compiler error */
559d6701
TV
200};
201
89a35e51
AT
202enum omap_dss_clk_source {
203 OMAP_DSS_CLK_SRC_FCK = 0, /* OMAP2/3: DSS1_ALWON_FCLK
204 * OMAP4: DSS_FCLK */
205 OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC, /* OMAP3: DSI1_PLL_FCLK
206 * OMAP4: PLL1_CLK1 */
207 OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI, /* OMAP3: DSI2_PLL_FCLK
208 * OMAP4: PLL1_CLK2 */
5a8b572d
AT
209 OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DISPC, /* OMAP4: PLL2_CLK1 */
210 OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DSI, /* OMAP4: PLL2_CLK2 */
89a35e51
AT
211};
212
9a901683
M
213enum omap_hdmi_flags {
214 OMAP_HDMI_SDA_SCL_EXTERNAL_PULLUP = 1 << 0,
215};
216
484dc404
AT
217enum omap_dss_output_id {
218 OMAP_DSS_OUTPUT_DPI = 1 << 0,
219 OMAP_DSS_OUTPUT_DBI = 1 << 1,
220 OMAP_DSS_OUTPUT_SDI = 1 << 2,
221 OMAP_DSS_OUTPUT_DSI1 = 1 << 3,
222 OMAP_DSS_OUTPUT_DSI2 = 1 << 4,
223 OMAP_DSS_OUTPUT_VENC = 1 << 5,
224 OMAP_DSS_OUTPUT_HDMI = 1 << 6,
225};
226
559d6701
TV
227/* RFBI */
228
229struct rfbi_timings {
230 int cs_on_time;
231 int cs_off_time;
232 int we_on_time;
233 int we_off_time;
234 int re_on_time;
235 int re_off_time;
236 int we_cycle_time;
237 int re_cycle_time;
238 int cs_pulse_width;
239 int access_time;
240
241 int clk_div;
242
243 u32 tim[5]; /* set by rfbi_convert_timings() */
244
245 int converted;
246};
247
248void omap_rfbi_write_command(const void *buf, u32 len);
249void omap_rfbi_read_data(void *buf, u32 len);
250void omap_rfbi_write_data(const void *buf, u32 len);
251void omap_rfbi_write_pixels(const void __iomem *buf, int scr_width,
252 u16 x, u16 y,
253 u16 w, u16 h);
254int omap_rfbi_enable_te(bool enable, unsigned line);
255int omap_rfbi_setup_te(enum omap_rfbi_te_mode mode,
256 unsigned hs_pulse_time, unsigned vs_pulse_time,
257 int hs_pol_inv, int vs_pol_inv, int extif_div);
773139f1
TV
258void rfbi_bus_lock(void);
259void rfbi_bus_unlock(void);
559d6701
TV
260
261/* DSI */
8af6ff01 262
478d7df8
TV
263enum omap_dss_dsi_trans_mode {
264 /* Sync Pulses: both sync start and end packets sent */
265 OMAP_DSS_DSI_PULSE_MODE,
266 /* Sync Events: only sync start packets sent */
267 OMAP_DSS_DSI_EVENT_MODE,
268 /* Burst: only sync start packets sent, pixels are time compressed */
269 OMAP_DSS_DSI_BURST_MODE,
270};
271
6b849375 272struct omap_dss_dsi_videomode_timings {
f1e0001f
TV
273 unsigned long hsclk;
274
275 unsigned ndl;
276 unsigned bitspp;
277
278 /* pixels */
279 u16 hact;
280 /* lines */
281 u16 vact;
282
8af6ff01
AT
283 /* DSI video mode blanking data */
284 /* Unit: byte clock cycles */
f1e0001f 285 u16 hss;
8af6ff01 286 u16 hsa;
f1e0001f 287 u16 hse;
8af6ff01
AT
288 u16 hfp;
289 u16 hbp;
290 /* Unit: line clocks */
291 u16 vsa;
292 u16 vfp;
293 u16 vbp;
294
295 /* DSI blanking modes */
296 int blanking_mode;
297 int hsa_blanking_mode;
298 int hbp_blanking_mode;
299 int hfp_blanking_mode;
300
478d7df8 301 enum omap_dss_dsi_trans_mode trans_mode;
8af6ff01
AT
302
303 bool ddr_clk_always_on;
304 int window_sync;
305};
306
777f05cc
TV
307struct omap_dss_dsi_config {
308 enum omap_dss_dsi_mode mode;
309 enum omap_dss_dsi_pixel_format pixel_format;
310 const struct omap_video_timings *timings;
777f05cc 311
f1e0001f
TV
312 unsigned long hs_clk_min, hs_clk_max;
313 unsigned long lp_clk_min, lp_clk_max;
314
315 bool ddr_clk_always_on;
316 enum omap_dss_dsi_trans_mode trans_mode;
777f05cc
TV
317};
318
1ffefe75
AT
319void dsi_bus_lock(struct omap_dss_device *dssdev);
320void dsi_bus_unlock(struct omap_dss_device *dssdev);
321int dsi_vc_dcs_write(struct omap_dss_device *dssdev, int channel, u8 *data,
322 int len);
6ff8aa31
AT
323int dsi_vc_generic_write(struct omap_dss_device *dssdev, int channel, u8 *data,
324 int len);
325int dsi_vc_dcs_write_0(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd);
326int dsi_vc_generic_write_0(struct omap_dss_device *dssdev, int channel);
1ffefe75
AT
327int dsi_vc_dcs_write_1(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd,
328 u8 param);
6ff8aa31
AT
329int dsi_vc_generic_write_1(struct omap_dss_device *dssdev, int channel,
330 u8 param);
331int dsi_vc_generic_write_2(struct omap_dss_device *dssdev, int channel,
332 u8 param1, u8 param2);
1ffefe75
AT
333int dsi_vc_dcs_write_nosync(struct omap_dss_device *dssdev, int channel,
334 u8 *data, int len);
6ff8aa31
AT
335int dsi_vc_generic_write_nosync(struct omap_dss_device *dssdev, int channel,
336 u8 *data, int len);
1ffefe75
AT
337int dsi_vc_dcs_read(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd,
338 u8 *buf, int buflen);
b3b89c05
AT
339int dsi_vc_generic_read_0(struct omap_dss_device *dssdev, int channel, u8 *buf,
340 int buflen);
341int dsi_vc_generic_read_1(struct omap_dss_device *dssdev, int channel, u8 param,
342 u8 *buf, int buflen);
343int dsi_vc_generic_read_2(struct omap_dss_device *dssdev, int channel,
344 u8 param1, u8 param2, u8 *buf, int buflen);
1ffefe75
AT
345int dsi_vc_set_max_rx_packet_size(struct omap_dss_device *dssdev, int channel,
346 u16 len);
347int dsi_vc_send_null(struct omap_dss_device *dssdev, int channel);
348int dsi_vc_send_bta_sync(struct omap_dss_device *dssdev, int channel);
9a147a65
TV
349int dsi_enable_video_output(struct omap_dss_device *dssdev, int channel);
350void dsi_disable_video_output(struct omap_dss_device *dssdev, int channel);
559d6701 351
acd18af9
TV
352enum omapdss_version {
353 OMAPDSS_VER_UNKNOWN = 0,
354 OMAPDSS_VER_OMAP24xx,
355 OMAPDSS_VER_OMAP34xx_ES1, /* OMAP3430 ES1.0, 2.0 */
356 OMAPDSS_VER_OMAP34xx_ES3, /* OMAP3430 ES3.0+ */
357 OMAPDSS_VER_OMAP3630,
358 OMAPDSS_VER_AM35xx,
359 OMAPDSS_VER_OMAP4430_ES1, /* OMAP4430 ES1.0 */
360 OMAPDSS_VER_OMAP4430_ES2, /* OMAP4430 ES2.0, 2.1, 2.2 */
361 OMAPDSS_VER_OMAP4, /* All other OMAP4s */
362 OMAPDSS_VER_OMAP5,
363};
364
559d6701
TV
365/* Board specific data */
366struct omap_dss_board_info {
aac927c9 367 int (*get_context_loss_count)(struct device *dev);
559d6701
TV
368 int num_devices;
369 struct omap_dss_device **devices;
370 struct omap_dss_device *default_device;
0a200126 371 const char *default_display_name;
5bc416cb
TV
372 int (*dsi_enable_pads)(int dsi_id, unsigned lane_mask);
373 void (*dsi_disable_pads)(int dsi_id, unsigned lane_mask);
62c1dcfc 374 int (*set_min_bus_tput)(struct device *dev, unsigned long r);
acd18af9 375 enum omapdss_version version;
559d6701
TV
376};
377
b7ee79ab
SS
378/* Init with the board info */
379extern int omap_display_init(struct omap_dss_board_info *board_data);
ee9dfd82 380/* HDMI mux init*/
9a901683 381extern int omap_hdmi_init(enum omap_hdmi_flags flags);
b7ee79ab 382
559d6701
TV
383struct omap_video_timings {
384 /* Unit: pixels */
385 u16 x_res;
386 /* Unit: pixels */
387 u16 y_res;
388 /* Unit: KHz */
389 u32 pixel_clock;
390 /* Unit: pixel clocks */
391 u16 hsw; /* Horizontal synchronization pulse width */
392 /* Unit: pixel clocks */
393 u16 hfp; /* Horizontal front porch */
394 /* Unit: pixel clocks */
395 u16 hbp; /* Horizontal back porch */
396 /* Unit: line clocks */
397 u16 vsw; /* Vertical synchronization pulse width */
398 /* Unit: line clocks */
399 u16 vfp; /* Vertical front porch */
400 /* Unit: line clocks */
401 u16 vbp; /* Vertical back porch */
a8d5e41c
AT
402
403 /* Vsync logic level */
404 enum omap_dss_signal_level vsync_level;
405 /* Hsync logic level */
406 enum omap_dss_signal_level hsync_level;
23c8f88e
AT
407 /* Interlaced or Progressive timings */
408 bool interlace;
a8d5e41c
AT
409 /* Pixel clock edge to drive LCD data */
410 enum omap_dss_signal_edge data_pclk_edge;
411 /* Data enable logic level */
412 enum omap_dss_signal_level de_level;
413 /* Pixel clock edges to drive HSYNC and VSYNC signals */
414 enum omap_dss_signal_edge sync_pclk_edge;
559d6701
TV
415};
416
417#ifdef CONFIG_OMAP2_DSS_VENC
418/* Hardcoded timings for tv modes. Venc only uses these to
419 * identify the mode, and does not actually use the configs
420 * itself. However, the configs should be something that
421 * a normal monitor can also show */
5a1819e3
TK
422extern const struct omap_video_timings omap_dss_pal_timings;
423extern const struct omap_video_timings omap_dss_ntsc_timings;
559d6701
TV
424#endif
425
3c07cae2
TV
426struct omap_dss_cpr_coefs {
427 s16 rr, rg, rb;
428 s16 gr, gg, gb;
429 s16 br, bg, bb;
430};
431
559d6701 432struct omap_overlay_info {
559d6701 433 u32 paddr;
0d66cbb5 434 u32 p_uv_addr; /* for NV12 format */
559d6701
TV
435 u16 screen_width;
436 u16 width;
437 u16 height;
438 enum omap_color_mode color_mode;
439 u8 rotation;
440 enum omap_dss_rotation_type rotation_type;
441 bool mirror;
442
443 u16 pos_x;
444 u16 pos_y;
445 u16 out_width; /* if 0, out_width == width */
446 u16 out_height; /* if 0, out_height == height */
447 u8 global_alpha;
fd28a390 448 u8 pre_mult_alpha;
54128701 449 u8 zorder;
559d6701
TV
450};
451
452struct omap_overlay {
453 struct kobject kobj;
454 struct list_head list;
455
456 /* static fields */
457 const char *name;
4a9e78ab 458 enum omap_plane id;
559d6701
TV
459 enum omap_color_mode supported_modes;
460 enum omap_overlay_caps caps;
461
462 /* dynamic fields */
463 struct omap_overlay_manager *manager;
559d6701 464
9d11c321
TV
465 /*
466 * The following functions do not block:
467 *
468 * is_enabled
469 * set_overlay_info
470 * get_overlay_info
471 *
472 * The rest of the functions may block and cannot be called from
473 * interrupt context
474 */
475
aaa874a9
TV
476 int (*enable)(struct omap_overlay *ovl);
477 int (*disable)(struct omap_overlay *ovl);
478 bool (*is_enabled)(struct omap_overlay *ovl);
479
559d6701
TV
480 int (*set_manager)(struct omap_overlay *ovl,
481 struct omap_overlay_manager *mgr);
482 int (*unset_manager)(struct omap_overlay *ovl);
483
484 int (*set_overlay_info)(struct omap_overlay *ovl,
485 struct omap_overlay_info *info);
486 void (*get_overlay_info)(struct omap_overlay *ovl,
487 struct omap_overlay_info *info);
488
489 int (*wait_for_go)(struct omap_overlay *ovl);
794bc4ee
AT
490
491 struct omap_dss_device *(*get_device)(struct omap_overlay *ovl);
559d6701
TV
492};
493
494struct omap_overlay_manager_info {
495 u32 default_color;
496
497 enum omap_dss_trans_key_type trans_key_type;
498 u32 trans_key;
499 bool trans_enabled;
500
11354dd5 501 bool partial_alpha_enabled;
3c07cae2
TV
502
503 bool cpr_enable;
504 struct omap_dss_cpr_coefs cpr_coefs;
559d6701
TV
505};
506
507struct omap_overlay_manager {
508 struct kobject kobj;
559d6701
TV
509
510 /* static fields */
511 const char *name;
4a9e78ab 512 enum omap_channel id;
559d6701 513 enum omap_overlay_manager_caps caps;
07e327c9 514 struct list_head overlays;
559d6701 515 enum omap_display_type supported_displays;
97f01b3a 516 enum omap_dss_output_id supported_outputs;
559d6701
TV
517
518 /* dynamic fields */
1f68d9c4 519 struct omap_dss_device *output;
559d6701 520
9d11c321
TV
521 /*
522 * The following functions do not block:
523 *
524 * set_manager_info
525 * get_manager_info
526 * apply
527 *
528 * The rest of the functions may block and cannot be called from
529 * interrupt context
530 */
531
97f01b3a 532 int (*set_output)(struct omap_overlay_manager *mgr,
1f68d9c4 533 struct omap_dss_device *output);
97f01b3a 534 int (*unset_output)(struct omap_overlay_manager *mgr);
559d6701
TV
535
536 int (*set_manager_info)(struct omap_overlay_manager *mgr,
537 struct omap_overlay_manager_info *info);
538 void (*get_manager_info)(struct omap_overlay_manager *mgr,
539 struct omap_overlay_manager_info *info);
540
541 int (*apply)(struct omap_overlay_manager *mgr);
542 int (*wait_for_go)(struct omap_overlay_manager *mgr);
3f71cbe7 543 int (*wait_for_vsync)(struct omap_overlay_manager *mgr);
794bc4ee
AT
544
545 struct omap_dss_device *(*get_device)(struct omap_overlay_manager *mgr);
559d6701
TV
546};
547
e4a9e94c
TV
548/* 22 pins means 1 clk lane and 10 data lanes */
549#define OMAP_DSS_MAX_DSI_PINS 22
550
551struct omap_dsi_pin_config {
552 int num_pins;
553 /*
554 * pin numbers in the following order:
555 * clk+, clk-
556 * data1+, data1-
557 * data2+, data2-
558 * ...
559 */
560 int pins[OMAP_DSS_MAX_DSI_PINS];
561};
562
749feffa
AT
563struct omap_dss_writeback_info {
564 u32 paddr;
565 u32 p_uv_addr;
566 u16 buf_width;
567 u16 width;
568 u16 height;
569 enum omap_color_mode color_mode;
570 u8 rotation;
571 enum omap_dss_rotation_type rotation_type;
572 bool mirror;
573 u8 pre_mult_alpha;
574};
575
0b24edb1
TV
576struct omapdss_dpi_ops {
577 int (*connect)(struct omap_dss_device *dssdev,
578 struct omap_dss_device *dst);
579 void (*disconnect)(struct omap_dss_device *dssdev,
580 struct omap_dss_device *dst);
581
582 int (*enable)(struct omap_dss_device *dssdev);
583 void (*disable)(struct omap_dss_device *dssdev);
584
585 int (*check_timings)(struct omap_dss_device *dssdev,
586 struct omap_video_timings *timings);
587 void (*set_timings)(struct omap_dss_device *dssdev,
588 struct omap_video_timings *timings);
589 void (*get_timings)(struct omap_dss_device *dssdev,
590 struct omap_video_timings *timings);
591
592 void (*set_data_lines)(struct omap_dss_device *dssdev, int data_lines);
593};
594
b1082dfd
TV
595struct omapdss_sdi_ops {
596 int (*connect)(struct omap_dss_device *dssdev,
597 struct omap_dss_device *dst);
598 void (*disconnect)(struct omap_dss_device *dssdev,
599 struct omap_dss_device *dst);
600
601 int (*enable)(struct omap_dss_device *dssdev);
602 void (*disable)(struct omap_dss_device *dssdev);
603
604 int (*check_timings)(struct omap_dss_device *dssdev,
605 struct omap_video_timings *timings);
606 void (*set_timings)(struct omap_dss_device *dssdev,
607 struct omap_video_timings *timings);
608 void (*get_timings)(struct omap_dss_device *dssdev,
609 struct omap_video_timings *timings);
610
611 void (*set_datapairs)(struct omap_dss_device *dssdev, int datapairs);
612};
613
7700c2d4
TV
614struct omapdss_dvi_ops {
615 int (*connect)(struct omap_dss_device *dssdev,
616 struct omap_dss_device *dst);
617 void (*disconnect)(struct omap_dss_device *dssdev,
618 struct omap_dss_device *dst);
619
620 int (*enable)(struct omap_dss_device *dssdev);
621 void (*disable)(struct omap_dss_device *dssdev);
622
623 int (*check_timings)(struct omap_dss_device *dssdev,
624 struct omap_video_timings *timings);
625 void (*set_timings)(struct omap_dss_device *dssdev,
626 struct omap_video_timings *timings);
627 void (*get_timings)(struct omap_dss_device *dssdev,
628 struct omap_video_timings *timings);
629};
630
559d6701 631struct omap_dss_device {
ecc8b370
TV
632 /* old device, to be removed */
633 struct device old_dev;
634
635 /* new device, pointer to panel device */
636 struct device *dev;
559d6701 637
4f3e44ea
TV
638 struct module *owner;
639
2e7e3dc7
TV
640 struct list_head panel_list;
641
642 /* alias in the form of "display%d" */
643 char alias[16];
644
559d6701 645 enum omap_display_type type;
1f68d9c4 646 enum omap_display_type output_type;
559d6701 647
2eea5ae6 648 /* obsolete, to be removed */
18faa1b6
SS
649 enum omap_channel channel;
650
559d6701
TV
651 union {
652 struct {
653 u8 data_lines;
654 } dpi;
655
656 struct {
657 u8 channel;
658 u8 data_lines;
659 } rfbi;
660
661 struct {
662 u8 datapairs;
663 } sdi;
664
665 struct {
a72b64b9 666 int module;
559d6701
TV
667 } dsi;
668
669 struct {
670 enum omap_dss_venc_type type;
671 bool invert_polarity;
672 } venc;
673 } phy;
674
675 struct {
676 struct omap_video_timings timings;
677
a3b3cc2b 678 enum omap_dss_dsi_pixel_format dsi_pix_fmt;
7e951ee9 679 enum omap_dss_dsi_mode dsi_mode;
559d6701
TV
680 } panel;
681
682 struct {
683 u8 pixel_size;
684 struct rfbi_timings rfbi_timings;
559d6701
TV
685 } ctrl;
686
559d6701
TV
687 const char *name;
688
689 /* used to match device to driver */
690 const char *driver_name;
691
692 void *data;
693
694 struct omap_dss_driver *driver;
695
0b24edb1
TV
696 union {
697 const struct omapdss_dpi_ops *dpi;
b1082dfd 698 const struct omapdss_sdi_ops *sdi;
7700c2d4 699 const struct omapdss_dvi_ops *dvi;
0b24edb1
TV
700 } ops;
701
559d6701
TV
702 /* helper variable for driver suspend/resume */
703 bool activate_after_resume;
704
705 enum omap_display_caps caps;
706
1f68d9c4 707 struct omap_dss_device *output;
559d6701
TV
708
709 enum omap_dss_display_state state;
710
9c0b8420
RN
711 enum omap_dss_audio_state audio_state;
712
1f68d9c4
TV
713 /* OMAP DSS output specific fields */
714
715 struct list_head list;
716
717 /* DISPC channel for this output */
718 enum omap_channel dispc_channel;
719
720 /* output instance */
721 enum omap_dss_output_id id;
722
723 /* dynamic fields */
724 struct omap_overlay_manager *manager;
725
726 struct omap_dss_device *device;
559d6701
TV
727};
728
c49d005b
TV
729struct omap_dss_hdmi_data
730{
cca35017
TV
731 int ct_cp_hpd_gpio;
732 int ls_oe_gpio;
c49d005b
TV
733 int hpd_gpio;
734};
735
9c0b8420
RN
736struct omap_dss_audio {
737 struct snd_aes_iec958 *iec;
738 struct snd_cea_861_aud_if *cea;
739};
740
559d6701
TV
741struct omap_dss_driver {
742 struct device_driver driver;
743
744 int (*probe)(struct omap_dss_device *);
745 void (*remove)(struct omap_dss_device *);
746
a7e71e7f
TV
747 int (*connect)(struct omap_dss_device *dssdev);
748 void (*disconnect)(struct omap_dss_device *dssdev);
749
559d6701
TV
750 int (*enable)(struct omap_dss_device *display);
751 void (*disable)(struct omap_dss_device *display);
559d6701
TV
752 int (*run_test)(struct omap_dss_device *display, int test);
753
18946f62
TV
754 int (*update)(struct omap_dss_device *dssdev,
755 u16 x, u16 y, u16 w, u16 h);
756 int (*sync)(struct omap_dss_device *dssdev);
757
559d6701 758 int (*enable_te)(struct omap_dss_device *dssdev, bool enable);
225b650d 759 int (*get_te)(struct omap_dss_device *dssdev);
559d6701
TV
760
761 u8 (*get_rotate)(struct omap_dss_device *dssdev);
762 int (*set_rotate)(struct omap_dss_device *dssdev, u8 rotate);
763
764 bool (*get_mirror)(struct omap_dss_device *dssdev);
765 int (*set_mirror)(struct omap_dss_device *dssdev, bool enable);
766
767 int (*memory_read)(struct omap_dss_device *dssdev,
768 void *buf, size_t size,
769 u16 x, u16 y, u16 w, u16 h);
96adcece
TV
770
771 void (*get_resolution)(struct omap_dss_device *dssdev,
772 u16 *xres, u16 *yres);
7a0987bf
JN
773 void (*get_dimensions)(struct omap_dss_device *dssdev,
774 u32 *width, u32 *height);
a2699504 775 int (*get_recommended_bpp)(struct omap_dss_device *dssdev);
36511312 776
69b2048f
TV
777 int (*check_timings)(struct omap_dss_device *dssdev,
778 struct omap_video_timings *timings);
779 void (*set_timings)(struct omap_dss_device *dssdev,
780 struct omap_video_timings *timings);
781 void (*get_timings)(struct omap_dss_device *dssdev,
782 struct omap_video_timings *timings);
783
36511312
TV
784 int (*set_wss)(struct omap_dss_device *dssdev, u32 wss);
785 u32 (*get_wss)(struct omap_dss_device *dssdev);
3d5e0ef7
TV
786
787 int (*read_edid)(struct omap_dss_device *dssdev, u8 *buf, int len);
df4769c9 788 bool (*detect)(struct omap_dss_device *dssdev);
9c0b8420
RN
789
790 /*
791 * For display drivers that support audio. This encompasses
792 * HDMI and DisplayPort at the moment.
793 */
794 /*
795 * Note: These functions might sleep. Do not call while
796 * holding a spinlock/readlock.
797 */
798 int (*audio_enable)(struct omap_dss_device *dssdev);
799 void (*audio_disable)(struct omap_dss_device *dssdev);
800 bool (*audio_supported)(struct omap_dss_device *dssdev);
801 int (*audio_config)(struct omap_dss_device *dssdev,
802 struct omap_dss_audio *audio);
803 /* Note: These functions may not sleep */
804 int (*audio_start)(struct omap_dss_device *dssdev);
805 void (*audio_stop)(struct omap_dss_device *dssdev);
806
559d6701
TV
807};
808
b2c7d54f 809enum omapdss_version omapdss_get_version(void);
591a0ac7 810bool omapdss_is_initialized(void);
b2c7d54f 811
559d6701
TV
812int omap_dss_register_driver(struct omap_dss_driver *);
813void omap_dss_unregister_driver(struct omap_dss_driver *);
814
2e7e3dc7
TV
815int omapdss_register_display(struct omap_dss_device *dssdev);
816void omapdss_unregister_display(struct omap_dss_device *dssdev);
817
d35317a4 818struct omap_dss_device *omap_dss_get_device(struct omap_dss_device *dssdev);
559d6701
TV
819void omap_dss_put_device(struct omap_dss_device *dssdev);
820#define for_each_dss_dev(d) while ((d = omap_dss_get_next_device(d)) != NULL)
821struct omap_dss_device *omap_dss_get_next_device(struct omap_dss_device *from);
822struct omap_dss_device *omap_dss_find_device(void *data,
823 int (*match)(struct omap_dss_device *dssdev, void *data));
2bbcce5e 824const char *omapdss_get_default_display_name(void);
559d6701 825
6fcd485b
TV
826void videomode_to_omap_video_timings(const struct videomode *vm,
827 struct omap_video_timings *ovt);
828void omap_video_timings_to_videomode(const struct omap_video_timings *ovt,
829 struct videomode *vm);
830
eda34273
TV
831int dss_feat_get_num_mgrs(void);
832int dss_feat_get_num_ovls(void);
833enum omap_display_type dss_feat_get_supported_displays(enum omap_channel channel);
834enum omap_dss_output_id dss_feat_get_supported_outputs(enum omap_channel channel);
835enum omap_color_mode dss_feat_get_supported_color_modes(enum omap_plane plane);
836
837
838
559d6701
TV
839int omap_dss_get_num_overlay_managers(void);
840struct omap_overlay_manager *omap_dss_get_overlay_manager(int num);
841
842int omap_dss_get_num_overlays(void);
843struct omap_overlay *omap_dss_get_overlay(int num);
844
5d47dbc8
TV
845int omapdss_register_output(struct omap_dss_device *output);
846void omapdss_unregister_output(struct omap_dss_device *output);
1f68d9c4
TV
847struct omap_dss_device *omap_dss_get_output(enum omap_dss_output_id id);
848struct omap_dss_device *omap_dss_find_output(const char *name);
849struct omap_dss_device *omap_dss_find_output_by_node(struct device_node *node);
850int omapdss_output_set_device(struct omap_dss_device *out,
6d71b923 851 struct omap_dss_device *dssdev);
1f68d9c4 852int omapdss_output_unset_device(struct omap_dss_device *out);
484dc404 853
1f68d9c4 854struct omap_dss_device *omapdss_find_output_from_display(struct omap_dss_device *dssdev);
be8e8e1c
TV
855struct omap_overlay_manager *omapdss_find_mgr_from_display(struct omap_dss_device *dssdev);
856
96adcece
TV
857void omapdss_default_get_resolution(struct omap_dss_device *dssdev,
858 u16 *xres, u16 *yres);
a2699504 859int omapdss_default_get_recommended_bpp(struct omap_dss_device *dssdev);
4b6430fc
GI
860void omapdss_default_get_timings(struct omap_dss_device *dssdev,
861 struct omap_video_timings *timings);
a2699504 862
559d6701
TV
863typedef void (*omap_dispc_isr_t) (void *arg, u32 mask);
864int omap_dispc_register_isr(omap_dispc_isr_t isr, void *arg, u32 mask);
865int omap_dispc_unregister_isr(omap_dispc_isr_t isr, void *arg, u32 mask);
866
348be69d
TV
867u32 dispc_read_irqstatus(void);
868void dispc_clear_irqstatus(u32 mask);
869u32 dispc_read_irqenable(void);
870void dispc_write_irqenable(u32 mask);
871
872int dispc_request_irq(irq_handler_t handler, void *dev_id);
873void dispc_free_irq(void *dev_id);
874
875int dispc_runtime_get(void);
876void dispc_runtime_put(void);
877
878void dispc_mgr_enable(enum omap_channel channel, bool enable);
879bool dispc_mgr_is_enabled(enum omap_channel channel);
880u32 dispc_mgr_get_vsync_irq(enum omap_channel channel);
881u32 dispc_mgr_get_framedone_irq(enum omap_channel channel);
882u32 dispc_mgr_get_sync_lost_irq(enum omap_channel channel);
883bool dispc_mgr_go_busy(enum omap_channel channel);
884void dispc_mgr_go(enum omap_channel channel);
885void dispc_mgr_set_lcd_config(enum omap_channel channel,
886 const struct dss_lcd_mgr_config *config);
887void dispc_mgr_set_timings(enum omap_channel channel,
888 const struct omap_video_timings *timings);
889void dispc_mgr_setup(enum omap_channel channel,
890 const struct omap_overlay_manager_info *info);
891
892int dispc_ovl_check(enum omap_plane plane, enum omap_channel channel,
893 const struct omap_overlay_info *oi,
894 const struct omap_video_timings *timings,
895 int *x_predecim, int *y_predecim);
896
897int dispc_ovl_enable(enum omap_plane plane, bool enable);
898bool dispc_ovl_enabled(enum omap_plane plane);
899void dispc_ovl_set_channel_out(enum omap_plane plane,
900 enum omap_channel channel);
901int dispc_ovl_setup(enum omap_plane plane, const struct omap_overlay_info *oi,
902 bool replication, const struct omap_video_timings *mgr_timings,
903 bool mem_to_mem);
904
559d6701 905#define to_dss_driver(x) container_of((x), struct omap_dss_driver, driver)
ecc8b370 906#define to_dss_device(x) container_of((x), struct omap_dss_device, old_dev)
559d6701 907
1ffefe75
AT
908void omapdss_dsi_vc_enable_hs(struct omap_dss_device *dssdev, int channel,
909 bool enable);
225b650d 910int omapdss_dsi_enable_te(struct omap_dss_device *dssdev, bool enable);
777f05cc
TV
911int omapdss_dsi_set_config(struct omap_dss_device *dssdev,
912 const struct omap_dss_dsi_config *config);
61140c9a 913
5476e74a 914int omap_dsi_update(struct omap_dss_device *dssdev, int channel,
18946f62 915 void (*callback)(int, void *), void *data);
5ee3c144
AT
916int omap_dsi_request_vc(struct omap_dss_device *dssdev, int *channel);
917int omap_dsi_set_vc_id(struct omap_dss_device *dssdev, int channel, int vc_id);
918void omap_dsi_release_vc(struct omap_dss_device *dssdev, int channel);
e4a9e94c
TV
919int omapdss_dsi_configure_pins(struct omap_dss_device *dssdev,
920 const struct omap_dsi_pin_config *pin_cfg);
18946f62 921
37ac60e4 922int omapdss_dsi_display_enable(struct omap_dss_device *dssdev);
2a89dc15 923void omapdss_dsi_display_disable(struct omap_dss_device *dssdev,
22d6d676 924 bool disconnect_lanes, bool enter_ulps);
37ac60e4
TV
925
926int omapdss_dpi_display_enable(struct omap_dss_device *dssdev);
927void omapdss_dpi_display_disable(struct omap_dss_device *dssdev);
c499144c
AT
928void omapdss_dpi_set_timings(struct omap_dss_device *dssdev,
929 struct omap_video_timings *timings);
69b2048f
TV
930int dpi_check_timings(struct omap_dss_device *dssdev,
931 struct omap_video_timings *timings);
c6b393d4 932void omapdss_dpi_set_data_lines(struct omap_dss_device *dssdev, int data_lines);
37ac60e4
TV
933
934int omapdss_sdi_display_enable(struct omap_dss_device *dssdev);
935void omapdss_sdi_display_disable(struct omap_dss_device *dssdev);
c7833f7b
AT
936void omapdss_sdi_set_timings(struct omap_dss_device *dssdev,
937 struct omap_video_timings *timings);
889b4fd7 938void omapdss_sdi_set_datapairs(struct omap_dss_device *dssdev, int datapairs);
37ac60e4
TV
939
940int omapdss_rfbi_display_enable(struct omap_dss_device *dssdev);
941void omapdss_rfbi_display_disable(struct omap_dss_device *dssdev);
43eab861
AT
942int omap_rfbi_update(struct omap_dss_device *dssdev, void (*callback)(void *),
943 void *data);
475989b7 944int omap_rfbi_configure(struct omap_dss_device *dssdev);
6ff9dd5a 945void omapdss_rfbi_set_size(struct omap_dss_device *dssdev, u16 w, u16 h);
b02875be
AT
946void omapdss_rfbi_set_pixel_size(struct omap_dss_device *dssdev,
947 int pixel_size);
475989b7
AT
948void omapdss_rfbi_set_data_lines(struct omap_dss_device *dssdev,
949 int data_lines);
6e883324
AT
950void omapdss_rfbi_set_interface_timings(struct omap_dss_device *dssdev,
951 struct rfbi_timings *timings);
18946f62 952
8dd2491a
TV
953int omapdss_compat_init(void);
954void omapdss_compat_uninit(void);
955
a97a9634 956struct dss_mgr_ops {
a7e71e7f 957 int (*connect)(struct omap_overlay_manager *mgr,
1f68d9c4 958 struct omap_dss_device *dst);
a7e71e7f 959 void (*disconnect)(struct omap_overlay_manager *mgr,
1f68d9c4 960 struct omap_dss_device *dst);
a7e71e7f 961
a97a9634
TV
962 void (*start_update)(struct omap_overlay_manager *mgr);
963 int (*enable)(struct omap_overlay_manager *mgr);
964 void (*disable)(struct omap_overlay_manager *mgr);
965 void (*set_timings)(struct omap_overlay_manager *mgr,
966 const struct omap_video_timings *timings);
967 void (*set_lcd_config)(struct omap_overlay_manager *mgr,
968 const struct dss_lcd_mgr_config *config);
969 int (*register_framedone_handler)(struct omap_overlay_manager *mgr,
970 void (*handler)(void *), void *data);
971 void (*unregister_framedone_handler)(struct omap_overlay_manager *mgr,
972 void (*handler)(void *), void *data);
973};
974
975int dss_install_mgr_ops(const struct dss_mgr_ops *mgr_ops);
976void dss_uninstall_mgr_ops(void);
977
a7e71e7f 978int dss_mgr_connect(struct omap_overlay_manager *mgr,
1f68d9c4 979 struct omap_dss_device *dst);
a7e71e7f 980void dss_mgr_disconnect(struct omap_overlay_manager *mgr,
1f68d9c4 981 struct omap_dss_device *dst);
a97a9634
TV
982void dss_mgr_set_timings(struct omap_overlay_manager *mgr,
983 const struct omap_video_timings *timings);
984void dss_mgr_set_lcd_config(struct omap_overlay_manager *mgr,
985 const struct dss_lcd_mgr_config *config);
986int dss_mgr_enable(struct omap_overlay_manager *mgr);
987void dss_mgr_disable(struct omap_overlay_manager *mgr);
988void dss_mgr_start_update(struct omap_overlay_manager *mgr);
989int dss_mgr_register_framedone_handler(struct omap_overlay_manager *mgr,
990 void (*handler)(void *), void *data);
991void dss_mgr_unregister_framedone_handler(struct omap_overlay_manager *mgr,
992 void (*handler)(void *), void *data);
a7e71e7f
TV
993
994static inline bool omapdss_device_is_connected(struct omap_dss_device *dssdev)
995{
996 return dssdev->output;
997}
998
999static inline bool omapdss_device_is_enabled(struct omap_dss_device *dssdev)
1000{
1001 return dssdev->state == OMAP_DSS_DISPLAY_ACTIVE;
1002}
1003
559d6701 1004#endif