]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/video/omapfb_dss.h
nvme_fc: add module to ops template to allow module references
[mirror_ubuntu-bionic-kernel.git] / include / video / omapfb_dss.h
CommitLineData
559d6701 1/*
62d9e44e 2 * Copyright (C) 2016 Texas Instruments, Inc.
559d6701 3 *
62d9e44e
PU
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
559d6701
TV
8 */
9
62d9e44e
PU
10#ifndef __OMAPFB_DSS_H
11#define __OMAPFB_DSS_H
559d6701
TV
12
13#include <linux/list.h>
14#include <linux/kobject.h>
15#include <linux/device.h>
348be69d 16#include <linux/interrupt.h>
62d9e44e 17#include <linux/platform_data/omapdss.h>
559d6701 18
6fcd485b
TV
19#include <video/videomode.h>
20
559d6701
TV
21#define DISPC_IRQ_FRAMEDONE (1 << 0)
22#define DISPC_IRQ_VSYNC (1 << 1)
23#define DISPC_IRQ_EVSYNC_EVEN (1 << 2)
24#define DISPC_IRQ_EVSYNC_ODD (1 << 3)
25#define DISPC_IRQ_ACBIAS_COUNT_STAT (1 << 4)
26#define DISPC_IRQ_PROG_LINE_NUM (1 << 5)
27#define DISPC_IRQ_GFX_FIFO_UNDERFLOW (1 << 6)
28#define DISPC_IRQ_GFX_END_WIN (1 << 7)
29#define DISPC_IRQ_PAL_GAMMA_MASK (1 << 8)
30#define DISPC_IRQ_OCP_ERR (1 << 9)
31#define DISPC_IRQ_VID1_FIFO_UNDERFLOW (1 << 10)
32#define DISPC_IRQ_VID1_END_WIN (1 << 11)
33#define DISPC_IRQ_VID2_FIFO_UNDERFLOW (1 << 12)
34#define DISPC_IRQ_VID2_END_WIN (1 << 13)
35#define DISPC_IRQ_SYNC_LOST (1 << 14)
36#define DISPC_IRQ_SYNC_LOST_DIGIT (1 << 15)
37#define DISPC_IRQ_WAKEUP (1 << 16)
2a205f34
SS
38#define DISPC_IRQ_SYNC_LOST2 (1 << 17)
39#define DISPC_IRQ_VSYNC2 (1 << 18)
b8c095b4
AT
40#define DISPC_IRQ_VID3_END_WIN (1 << 19)
41#define DISPC_IRQ_VID3_FIFO_UNDERFLOW (1 << 20)
2a205f34
SS
42#define DISPC_IRQ_ACBIAS_COUNT_STAT2 (1 << 21)
43#define DISPC_IRQ_FRAMEDONE2 (1 << 22)
7f6f3c4b
TV
44#define DISPC_IRQ_FRAMEDONEWB (1 << 23)
45#define DISPC_IRQ_FRAMEDONETV (1 << 24)
46#define DISPC_IRQ_WBBUFFEROVERFLOW (1 << 25)
5bcbab17 47#define DISPC_IRQ_WBUNCOMPLETEERROR (1 << 26)
14d33d38
CM
48#define DISPC_IRQ_SYNC_LOST3 (1 << 27)
49#define DISPC_IRQ_VSYNC3 (1 << 28)
50#define DISPC_IRQ_ACBIAS_COUNT_STAT3 (1 << 29)
51#define DISPC_IRQ_FRAMEDONE3 (1 << 30)
559d6701
TV
52
53struct omap_dss_device;
54struct omap_overlay_manager;
a97a9634 55struct dss_lcd_mgr_config;
9c0b8420
RN
56struct snd_aes_iec958;
57struct snd_cea_861_aud_if;
8c071caa 58struct hdmi_avi_infoframe;
559d6701
TV
59
60enum omap_display_type {
61 OMAP_DISPLAY_TYPE_NONE = 0,
62 OMAP_DISPLAY_TYPE_DPI = 1 << 0,
63 OMAP_DISPLAY_TYPE_DBI = 1 << 1,
64 OMAP_DISPLAY_TYPE_SDI = 1 << 2,
65 OMAP_DISPLAY_TYPE_DSI = 1 << 3,
66 OMAP_DISPLAY_TYPE_VENC = 1 << 4,
b119601d 67 OMAP_DISPLAY_TYPE_HDMI = 1 << 5,
bc24b8b6 68 OMAP_DISPLAY_TYPE_DVI = 1 << 6,
559d6701
TV
69};
70
71enum omap_plane {
72 OMAP_DSS_GFX = 0,
73 OMAP_DSS_VIDEO1 = 1,
b8c095b4
AT
74 OMAP_DSS_VIDEO2 = 2,
75 OMAP_DSS_VIDEO3 = 3,
66a0f9e4 76 OMAP_DSS_WB = 4,
559d6701
TV
77};
78
79enum omap_channel {
80 OMAP_DSS_CHANNEL_LCD = 0,
81 OMAP_DSS_CHANNEL_DIGIT = 1,
8613b000 82 OMAP_DSS_CHANNEL_LCD2 = 2,
ff6331e2 83 OMAP_DSS_CHANNEL_LCD3 = 3,
249ad8a3 84 OMAP_DSS_CHANNEL_WB = 4,
559d6701
TV
85};
86
87enum omap_color_mode {
88 OMAP_DSS_COLOR_CLUT1 = 1 << 0, /* BITMAP 1 */
89 OMAP_DSS_COLOR_CLUT2 = 1 << 1, /* BITMAP 2 */
90 OMAP_DSS_COLOR_CLUT4 = 1 << 2, /* BITMAP 4 */
91 OMAP_DSS_COLOR_CLUT8 = 1 << 3, /* BITMAP 8 */
92 OMAP_DSS_COLOR_RGB12U = 1 << 4, /* RGB12, 16-bit container */
93 OMAP_DSS_COLOR_ARGB16 = 1 << 5, /* ARGB16 */
94 OMAP_DSS_COLOR_RGB16 = 1 << 6, /* RGB16 */
95 OMAP_DSS_COLOR_RGB24U = 1 << 7, /* RGB24, 32-bit container */
96 OMAP_DSS_COLOR_RGB24P = 1 << 8, /* RGB24, 24-bit container */
97 OMAP_DSS_COLOR_YUV2 = 1 << 9, /* YUV2 4:2:2 co-sited */
98 OMAP_DSS_COLOR_UYVY = 1 << 10, /* UYVY 4:2:2 co-sited */
99 OMAP_DSS_COLOR_ARGB32 = 1 << 11, /* ARGB32 */
100 OMAP_DSS_COLOR_RGBA32 = 1 << 12, /* RGBA32 */
101 OMAP_DSS_COLOR_RGBX32 = 1 << 13, /* RGBx32 */
f20e4220
AJ
102 OMAP_DSS_COLOR_NV12 = 1 << 14, /* NV12 format: YUV 4:2:0 */
103 OMAP_DSS_COLOR_RGBA16 = 1 << 15, /* RGBA16 - 4444 */
104 OMAP_DSS_COLOR_RGBX16 = 1 << 16, /* RGBx16 - 4444 */
105 OMAP_DSS_COLOR_ARGB16_1555 = 1 << 17, /* ARGB16 - 1555 */
106 OMAP_DSS_COLOR_XRGB16_1555 = 1 << 18, /* xRGB16 - 1555 */
559d6701
TV
107};
108
559d6701
TV
109enum omap_dss_load_mode {
110 OMAP_DSS_LOAD_CLUT_AND_FRAME = 0,
111 OMAP_DSS_LOAD_CLUT_ONLY = 1,
112 OMAP_DSS_LOAD_FRAME_ONLY = 2,
113 OMAP_DSS_LOAD_CLUT_ONCE_FRAME = 3,
114};
115
116enum omap_dss_trans_key_type {
117 OMAP_DSS_COLOR_KEY_GFX_DST = 0,
118 OMAP_DSS_COLOR_KEY_VID_SRC = 1,
119};
120
121enum omap_rfbi_te_mode {
122 OMAP_DSS_RFBI_TE_MODE_1 = 1,
123 OMAP_DSS_RFBI_TE_MODE_2 = 2,
124};
125
a8d5e41c 126enum omap_dss_signal_level {
7ad582be
TV
127 OMAPDSS_SIG_ACTIVE_LOW,
128 OMAPDSS_SIG_ACTIVE_HIGH,
a8d5e41c
AT
129};
130
131enum omap_dss_signal_edge {
a8d5e41c 132 OMAPDSS_DRIVE_SIG_FALLING_EDGE,
7ad582be 133 OMAPDSS_DRIVE_SIG_RISING_EDGE,
a8d5e41c
AT
134};
135
559d6701
TV
136enum omap_dss_venc_type {
137 OMAP_DSS_VENC_TYPE_COMPOSITE,
138 OMAP_DSS_VENC_TYPE_SVIDEO,
139};
140
a3b3cc2b
AT
141enum omap_dss_dsi_pixel_format {
142 OMAP_DSS_DSI_FMT_RGB888,
143 OMAP_DSS_DSI_FMT_RGB666,
144 OMAP_DSS_DSI_FMT_RGB666_PACKED,
145 OMAP_DSS_DSI_FMT_RGB565,
146};
147
7e951ee9
AT
148enum omap_dss_dsi_mode {
149 OMAP_DSS_DSI_CMD_MODE = 0,
150 OMAP_DSS_DSI_VIDEO_MODE,
151};
152
559d6701
TV
153enum omap_display_caps {
154 OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE = 1 << 0,
155 OMAP_DSS_DISPLAY_CAP_TEAR_ELIM = 1 << 1,
156};
157
559d6701
TV
158enum omap_dss_display_state {
159 OMAP_DSS_DISPLAY_DISABLED = 0,
160 OMAP_DSS_DISPLAY_ACTIVE,
559d6701
TV
161};
162
559d6701 163enum omap_dss_rotation_type {
65e006ff
CM
164 OMAP_DSS_ROT_DMA = 1 << 0,
165 OMAP_DSS_ROT_VRFB = 1 << 1,
166 OMAP_DSS_ROT_TILER = 1 << 2,
559d6701
TV
167};
168
169/* clockwise rotation angle */
170enum omap_dss_rotation_angle {
171 OMAP_DSS_ROT_0 = 0,
172 OMAP_DSS_ROT_90 = 1,
173 OMAP_DSS_ROT_180 = 2,
174 OMAP_DSS_ROT_270 = 3,
175};
176
177enum omap_overlay_caps {
178 OMAP_DSS_OVL_CAP_SCALE = 1 << 0,
f6dc8150
TV
179 OMAP_DSS_OVL_CAP_GLOBAL_ALPHA = 1 << 1,
180 OMAP_DSS_OVL_CAP_PRE_MULT_ALPHA = 1 << 2,
11354dd5 181 OMAP_DSS_OVL_CAP_ZORDER = 1 << 3,
d79db853
AT
182 OMAP_DSS_OVL_CAP_POS = 1 << 4,
183 OMAP_DSS_OVL_CAP_REPLICATION = 1 << 5,
559d6701
TV
184};
185
484dc404
AT
186enum omap_dss_output_id {
187 OMAP_DSS_OUTPUT_DPI = 1 << 0,
188 OMAP_DSS_OUTPUT_DBI = 1 << 1,
189 OMAP_DSS_OUTPUT_SDI = 1 << 2,
190 OMAP_DSS_OUTPUT_DSI1 = 1 << 3,
191 OMAP_DSS_OUTPUT_DSI2 = 1 << 4,
192 OMAP_DSS_OUTPUT_VENC = 1 << 5,
193 OMAP_DSS_OUTPUT_HDMI = 1 << 6,
194};
195
559d6701
TV
196/* RFBI */
197
198struct rfbi_timings {
199 int cs_on_time;
200 int cs_off_time;
201 int we_on_time;
202 int we_off_time;
203 int re_on_time;
204 int re_off_time;
205 int we_cycle_time;
206 int re_cycle_time;
207 int cs_pulse_width;
208 int access_time;
209
210 int clk_div;
211
212 u32 tim[5]; /* set by rfbi_convert_timings() */
213
214 int converted;
215};
216
559d6701 217/* DSI */
8af6ff01 218
478d7df8
TV
219enum omap_dss_dsi_trans_mode {
220 /* Sync Pulses: both sync start and end packets sent */
221 OMAP_DSS_DSI_PULSE_MODE,
222 /* Sync Events: only sync start packets sent */
223 OMAP_DSS_DSI_EVENT_MODE,
224 /* Burst: only sync start packets sent, pixels are time compressed */
225 OMAP_DSS_DSI_BURST_MODE,
226};
227
6b849375 228struct omap_dss_dsi_videomode_timings {
f1e0001f
TV
229 unsigned long hsclk;
230
231 unsigned ndl;
232 unsigned bitspp;
233
234 /* pixels */
235 u16 hact;
236 /* lines */
237 u16 vact;
238
8af6ff01
AT
239 /* DSI video mode blanking data */
240 /* Unit: byte clock cycles */
f1e0001f 241 u16 hss;
8af6ff01 242 u16 hsa;
f1e0001f 243 u16 hse;
8af6ff01
AT
244 u16 hfp;
245 u16 hbp;
246 /* Unit: line clocks */
247 u16 vsa;
248 u16 vfp;
249 u16 vbp;
250
251 /* DSI blanking modes */
252 int blanking_mode;
253 int hsa_blanking_mode;
254 int hbp_blanking_mode;
255 int hfp_blanking_mode;
256
478d7df8 257 enum omap_dss_dsi_trans_mode trans_mode;
8af6ff01
AT
258
259 bool ddr_clk_always_on;
260 int window_sync;
261};
262
777f05cc
TV
263struct omap_dss_dsi_config {
264 enum omap_dss_dsi_mode mode;
265 enum omap_dss_dsi_pixel_format pixel_format;
266 const struct omap_video_timings *timings;
777f05cc 267
f1e0001f
TV
268 unsigned long hs_clk_min, hs_clk_max;
269 unsigned long lp_clk_min, lp_clk_max;
270
271 bool ddr_clk_always_on;
272 enum omap_dss_dsi_trans_mode trans_mode;
777f05cc
TV
273};
274
559d6701
TV
275struct omap_video_timings {
276 /* Unit: pixels */
277 u16 x_res;
278 /* Unit: pixels */
279 u16 y_res;
d8d78941
TV
280 /* Unit: Hz */
281 u32 pixelclock;
559d6701
TV
282 /* Unit: pixel clocks */
283 u16 hsw; /* Horizontal synchronization pulse width */
284 /* Unit: pixel clocks */
285 u16 hfp; /* Horizontal front porch */
286 /* Unit: pixel clocks */
287 u16 hbp; /* Horizontal back porch */
288 /* Unit: line clocks */
289 u16 vsw; /* Vertical synchronization pulse width */
290 /* Unit: line clocks */
291 u16 vfp; /* Vertical front porch */
292 /* Unit: line clocks */
293 u16 vbp; /* Vertical back porch */
a8d5e41c
AT
294
295 /* Vsync logic level */
296 enum omap_dss_signal_level vsync_level;
297 /* Hsync logic level */
298 enum omap_dss_signal_level hsync_level;
23c8f88e
AT
299 /* Interlaced or Progressive timings */
300 bool interlace;
a8d5e41c
AT
301 /* Pixel clock edge to drive LCD data */
302 enum omap_dss_signal_edge data_pclk_edge;
303 /* Data enable logic level */
304 enum omap_dss_signal_level de_level;
305 /* Pixel clock edges to drive HSYNC and VSYNC signals */
306 enum omap_dss_signal_edge sync_pclk_edge;
3a38ed53
TV
307
308 bool double_pixel;
559d6701
TV
309};
310
559d6701
TV
311/* Hardcoded timings for tv modes. Venc only uses these to
312 * identify the mode, and does not actually use the configs
313 * itself. However, the configs should be something that
314 * a normal monitor can also show */
5a1819e3
TK
315extern const struct omap_video_timings omap_dss_pal_timings;
316extern const struct omap_video_timings omap_dss_ntsc_timings;
559d6701 317
3c07cae2
TV
318struct omap_dss_cpr_coefs {
319 s16 rr, rg, rb;
320 s16 gr, gg, gb;
321 s16 br, bg, bb;
322};
323
559d6701 324struct omap_overlay_info {
24f13a66
AB
325 dma_addr_t paddr;
326 dma_addr_t p_uv_addr; /* for NV12 format */
559d6701
TV
327 u16 screen_width;
328 u16 width;
329 u16 height;
330 enum omap_color_mode color_mode;
331 u8 rotation;
332 enum omap_dss_rotation_type rotation_type;
333 bool mirror;
334
335 u16 pos_x;
336 u16 pos_y;
337 u16 out_width; /* if 0, out_width == width */
338 u16 out_height; /* if 0, out_height == height */
339 u8 global_alpha;
fd28a390 340 u8 pre_mult_alpha;
54128701 341 u8 zorder;
559d6701
TV
342};
343
344struct omap_overlay {
345 struct kobject kobj;
346 struct list_head list;
347
348 /* static fields */
349 const char *name;
4a9e78ab 350 enum omap_plane id;
559d6701
TV
351 enum omap_color_mode supported_modes;
352 enum omap_overlay_caps caps;
353
354 /* dynamic fields */
355 struct omap_overlay_manager *manager;
559d6701 356
9d11c321
TV
357 /*
358 * The following functions do not block:
359 *
360 * is_enabled
361 * set_overlay_info
362 * get_overlay_info
363 *
364 * The rest of the functions may block and cannot be called from
365 * interrupt context
366 */
367
aaa874a9
TV
368 int (*enable)(struct omap_overlay *ovl);
369 int (*disable)(struct omap_overlay *ovl);
370 bool (*is_enabled)(struct omap_overlay *ovl);
371
559d6701
TV
372 int (*set_manager)(struct omap_overlay *ovl,
373 struct omap_overlay_manager *mgr);
374 int (*unset_manager)(struct omap_overlay *ovl);
375
376 int (*set_overlay_info)(struct omap_overlay *ovl,
377 struct omap_overlay_info *info);
378 void (*get_overlay_info)(struct omap_overlay *ovl,
379 struct omap_overlay_info *info);
380
381 int (*wait_for_go)(struct omap_overlay *ovl);
794bc4ee
AT
382
383 struct omap_dss_device *(*get_device)(struct omap_overlay *ovl);
559d6701
TV
384};
385
386struct omap_overlay_manager_info {
387 u32 default_color;
388
389 enum omap_dss_trans_key_type trans_key_type;
390 u32 trans_key;
391 bool trans_enabled;
392
11354dd5 393 bool partial_alpha_enabled;
3c07cae2
TV
394
395 bool cpr_enable;
396 struct omap_dss_cpr_coefs cpr_coefs;
559d6701
TV
397};
398
399struct omap_overlay_manager {
400 struct kobject kobj;
559d6701
TV
401
402 /* static fields */
403 const char *name;
4a9e78ab 404 enum omap_channel id;
07e327c9 405 struct list_head overlays;
559d6701 406 enum omap_display_type supported_displays;
97f01b3a 407 enum omap_dss_output_id supported_outputs;
559d6701
TV
408
409 /* dynamic fields */
1f68d9c4 410 struct omap_dss_device *output;
559d6701 411
9d11c321
TV
412 /*
413 * The following functions do not block:
414 *
415 * set_manager_info
416 * get_manager_info
417 * apply
418 *
419 * The rest of the functions may block and cannot be called from
420 * interrupt context
421 */
422
97f01b3a 423 int (*set_output)(struct omap_overlay_manager *mgr,
1f68d9c4 424 struct omap_dss_device *output);
97f01b3a 425 int (*unset_output)(struct omap_overlay_manager *mgr);
559d6701
TV
426
427 int (*set_manager_info)(struct omap_overlay_manager *mgr,
428 struct omap_overlay_manager_info *info);
429 void (*get_manager_info)(struct omap_overlay_manager *mgr,
430 struct omap_overlay_manager_info *info);
431
432 int (*apply)(struct omap_overlay_manager *mgr);
433 int (*wait_for_go)(struct omap_overlay_manager *mgr);
3f71cbe7 434 int (*wait_for_vsync)(struct omap_overlay_manager *mgr);
794bc4ee
AT
435
436 struct omap_dss_device *(*get_device)(struct omap_overlay_manager *mgr);
559d6701
TV
437};
438
e4a9e94c
TV
439/* 22 pins means 1 clk lane and 10 data lanes */
440#define OMAP_DSS_MAX_DSI_PINS 22
441
442struct omap_dsi_pin_config {
443 int num_pins;
444 /*
445 * pin numbers in the following order:
446 * clk+, clk-
447 * data1+, data1-
448 * data2+, data2-
449 * ...
450 */
451 int pins[OMAP_DSS_MAX_DSI_PINS];
452};
453
749feffa
AT
454struct omap_dss_writeback_info {
455 u32 paddr;
456 u32 p_uv_addr;
457 u16 buf_width;
458 u16 width;
459 u16 height;
460 enum omap_color_mode color_mode;
461 u8 rotation;
462 enum omap_dss_rotation_type rotation_type;
463 bool mirror;
464 u8 pre_mult_alpha;
465};
466
0b24edb1
TV
467struct omapdss_dpi_ops {
468 int (*connect)(struct omap_dss_device *dssdev,
469 struct omap_dss_device *dst);
470 void (*disconnect)(struct omap_dss_device *dssdev,
471 struct omap_dss_device *dst);
472
473 int (*enable)(struct omap_dss_device *dssdev);
474 void (*disable)(struct omap_dss_device *dssdev);
475
476 int (*check_timings)(struct omap_dss_device *dssdev,
477 struct omap_video_timings *timings);
478 void (*set_timings)(struct omap_dss_device *dssdev,
479 struct omap_video_timings *timings);
480 void (*get_timings)(struct omap_dss_device *dssdev,
481 struct omap_video_timings *timings);
482
483 void (*set_data_lines)(struct omap_dss_device *dssdev, int data_lines);
484};
485
b1082dfd
TV
486struct omapdss_sdi_ops {
487 int (*connect)(struct omap_dss_device *dssdev,
488 struct omap_dss_device *dst);
489 void (*disconnect)(struct omap_dss_device *dssdev,
490 struct omap_dss_device *dst);
491
492 int (*enable)(struct omap_dss_device *dssdev);
493 void (*disable)(struct omap_dss_device *dssdev);
494
495 int (*check_timings)(struct omap_dss_device *dssdev,
496 struct omap_video_timings *timings);
497 void (*set_timings)(struct omap_dss_device *dssdev,
498 struct omap_video_timings *timings);
499 void (*get_timings)(struct omap_dss_device *dssdev,
500 struct omap_video_timings *timings);
501
502 void (*set_datapairs)(struct omap_dss_device *dssdev, int datapairs);
503};
504
7700c2d4
TV
505struct omapdss_dvi_ops {
506 int (*connect)(struct omap_dss_device *dssdev,
507 struct omap_dss_device *dst);
508 void (*disconnect)(struct omap_dss_device *dssdev,
509 struct omap_dss_device *dst);
510
511 int (*enable)(struct omap_dss_device *dssdev);
512 void (*disable)(struct omap_dss_device *dssdev);
513
514 int (*check_timings)(struct omap_dss_device *dssdev,
515 struct omap_video_timings *timings);
516 void (*set_timings)(struct omap_dss_device *dssdev,
517 struct omap_video_timings *timings);
518 void (*get_timings)(struct omap_dss_device *dssdev,
519 struct omap_video_timings *timings);
520};
521
fb8efa49
TV
522struct omapdss_atv_ops {
523 int (*connect)(struct omap_dss_device *dssdev,
524 struct omap_dss_device *dst);
525 void (*disconnect)(struct omap_dss_device *dssdev,
526 struct omap_dss_device *dst);
527
528 int (*enable)(struct omap_dss_device *dssdev);
529 void (*disable)(struct omap_dss_device *dssdev);
530
531 int (*check_timings)(struct omap_dss_device *dssdev,
532 struct omap_video_timings *timings);
533 void (*set_timings)(struct omap_dss_device *dssdev,
534 struct omap_video_timings *timings);
535 void (*get_timings)(struct omap_dss_device *dssdev,
536 struct omap_video_timings *timings);
537
538 void (*set_type)(struct omap_dss_device *dssdev,
539 enum omap_dss_venc_type type);
540 void (*invert_vid_out_polarity)(struct omap_dss_device *dssdev,
541 bool invert_polarity);
542
543 int (*set_wss)(struct omap_dss_device *dssdev, u32 wss);
544 u32 (*get_wss)(struct omap_dss_device *dssdev);
545};
546
0b450c31
TV
547struct omapdss_hdmi_ops {
548 int (*connect)(struct omap_dss_device *dssdev,
549 struct omap_dss_device *dst);
550 void (*disconnect)(struct omap_dss_device *dssdev,
551 struct omap_dss_device *dst);
552
553 int (*enable)(struct omap_dss_device *dssdev);
554 void (*disable)(struct omap_dss_device *dssdev);
555
556 int (*check_timings)(struct omap_dss_device *dssdev,
557 struct omap_video_timings *timings);
558 void (*set_timings)(struct omap_dss_device *dssdev,
559 struct omap_video_timings *timings);
560 void (*get_timings)(struct omap_dss_device *dssdev,
561 struct omap_video_timings *timings);
562
563 int (*read_edid)(struct omap_dss_device *dssdev, u8 *buf, int len);
564 bool (*detect)(struct omap_dss_device *dssdev);
565
8c071caa
TV
566 int (*set_hdmi_mode)(struct omap_dss_device *dssdev, bool hdmi_mode);
567 int (*set_infoframe)(struct omap_dss_device *dssdev,
568 const struct hdmi_avi_infoframe *avi);
0b450c31
TV
569};
570
deb16df8
TV
571struct omapdss_dsi_ops {
572 int (*connect)(struct omap_dss_device *dssdev,
573 struct omap_dss_device *dst);
574 void (*disconnect)(struct omap_dss_device *dssdev,
575 struct omap_dss_device *dst);
576
577 int (*enable)(struct omap_dss_device *dssdev);
578 void (*disable)(struct omap_dss_device *dssdev, bool disconnect_lanes,
579 bool enter_ulps);
580
581 /* bus configuration */
582 int (*set_config)(struct omap_dss_device *dssdev,
583 const struct omap_dss_dsi_config *cfg);
584 int (*configure_pins)(struct omap_dss_device *dssdev,
585 const struct omap_dsi_pin_config *pin_cfg);
586
587 void (*enable_hs)(struct omap_dss_device *dssdev, int channel,
588 bool enable);
589 int (*enable_te)(struct omap_dss_device *dssdev, bool enable);
590
591 int (*update)(struct omap_dss_device *dssdev, int channel,
592 void (*callback)(int, void *), void *data);
593
594 void (*bus_lock)(struct omap_dss_device *dssdev);
595 void (*bus_unlock)(struct omap_dss_device *dssdev);
596
597 int (*enable_video_output)(struct omap_dss_device *dssdev, int channel);
598 void (*disable_video_output)(struct omap_dss_device *dssdev,
599 int channel);
600
601 int (*request_vc)(struct omap_dss_device *dssdev, int *channel);
602 int (*set_vc_id)(struct omap_dss_device *dssdev, int channel,
603 int vc_id);
604 void (*release_vc)(struct omap_dss_device *dssdev, int channel);
605
606 /* data transfer */
607 int (*dcs_write)(struct omap_dss_device *dssdev, int channel,
608 u8 *data, int len);
609 int (*dcs_write_nosync)(struct omap_dss_device *dssdev, int channel,
610 u8 *data, int len);
611 int (*dcs_read)(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd,
612 u8 *data, int len);
613
614 int (*gen_write)(struct omap_dss_device *dssdev, int channel,
615 u8 *data, int len);
616 int (*gen_write_nosync)(struct omap_dss_device *dssdev, int channel,
617 u8 *data, int len);
618 int (*gen_read)(struct omap_dss_device *dssdev, int channel,
619 u8 *reqdata, int reqlen,
620 u8 *data, int len);
621
622 int (*bta_sync)(struct omap_dss_device *dssdev, int channel);
623
624 int (*set_max_rx_packet_size)(struct omap_dss_device *dssdev,
625 int channel, u16 plen);
626};
627
559d6701 628struct omap_dss_device {
a38bb793 629 struct kobject kobj;
ecc8b370 630 struct device *dev;
559d6701 631
4f3e44ea
TV
632 struct module *owner;
633
2e7e3dc7
TV
634 struct list_head panel_list;
635
636 /* alias in the form of "display%d" */
637 char alias[16];
638
559d6701 639 enum omap_display_type type;
1f68d9c4 640 enum omap_display_type output_type;
559d6701
TV
641
642 union {
643 struct {
644 u8 data_lines;
645 } dpi;
646
647 struct {
648 u8 channel;
649 u8 data_lines;
650 } rfbi;
651
652 struct {
653 u8 datapairs;
654 } sdi;
655
656 struct {
a72b64b9 657 int module;
559d6701
TV
658 } dsi;
659
660 struct {
661 enum omap_dss_venc_type type;
662 bool invert_polarity;
663 } venc;
664 } phy;
665
666 struct {
667 struct omap_video_timings timings;
668
a3b3cc2b 669 enum omap_dss_dsi_pixel_format dsi_pix_fmt;
7e951ee9 670 enum omap_dss_dsi_mode dsi_mode;
559d6701
TV
671 } panel;
672
673 struct {
674 u8 pixel_size;
675 struct rfbi_timings rfbi_timings;
559d6701
TV
676 } ctrl;
677
559d6701
TV
678 const char *name;
679
680 /* used to match device to driver */
681 const char *driver_name;
682
683 void *data;
684
685 struct omap_dss_driver *driver;
686
0b24edb1
TV
687 union {
688 const struct omapdss_dpi_ops *dpi;
b1082dfd 689 const struct omapdss_sdi_ops *sdi;
7700c2d4 690 const struct omapdss_dvi_ops *dvi;
0b450c31 691 const struct omapdss_hdmi_ops *hdmi;
fb8efa49 692 const struct omapdss_atv_ops *atv;
deb16df8 693 const struct omapdss_dsi_ops *dsi;
0b24edb1
TV
694 } ops;
695
559d6701
TV
696 /* helper variable for driver suspend/resume */
697 bool activate_after_resume;
698
699 enum omap_display_caps caps;
700
a73fdc64 701 struct omap_dss_device *src;
559d6701
TV
702
703 enum omap_dss_display_state state;
704
1f68d9c4
TV
705 /* OMAP DSS output specific fields */
706
707 struct list_head list;
708
709 /* DISPC channel for this output */
710 enum omap_channel dispc_channel;
49239503 711 bool dispc_channel_connected;
1f68d9c4
TV
712
713 /* output instance */
714 enum omap_dss_output_id id;
715
ef691ff4
AT
716 /* the port number in the DT node */
717 int port_num;
718
1f68d9c4
TV
719 /* dynamic fields */
720 struct omap_overlay_manager *manager;
721
9560dc10 722 struct omap_dss_device *dst;
559d6701
TV
723};
724
725struct omap_dss_driver {
559d6701
TV
726 int (*probe)(struct omap_dss_device *);
727 void (*remove)(struct omap_dss_device *);
728
a7e71e7f
TV
729 int (*connect)(struct omap_dss_device *dssdev);
730 void (*disconnect)(struct omap_dss_device *dssdev);
731
559d6701
TV
732 int (*enable)(struct omap_dss_device *display);
733 void (*disable)(struct omap_dss_device *display);
559d6701
TV
734 int (*run_test)(struct omap_dss_device *display, int test);
735
18946f62
TV
736 int (*update)(struct omap_dss_device *dssdev,
737 u16 x, u16 y, u16 w, u16 h);
738 int (*sync)(struct omap_dss_device *dssdev);
739
559d6701 740 int (*enable_te)(struct omap_dss_device *dssdev, bool enable);
225b650d 741 int (*get_te)(struct omap_dss_device *dssdev);
559d6701
TV
742
743 u8 (*get_rotate)(struct omap_dss_device *dssdev);
744 int (*set_rotate)(struct omap_dss_device *dssdev, u8 rotate);
745
746 bool (*get_mirror)(struct omap_dss_device *dssdev);
747 int (*set_mirror)(struct omap_dss_device *dssdev, bool enable);
748
749 int (*memory_read)(struct omap_dss_device *dssdev,
750 void *buf, size_t size,
751 u16 x, u16 y, u16 w, u16 h);
96adcece
TV
752
753 void (*get_resolution)(struct omap_dss_device *dssdev,
754 u16 *xres, u16 *yres);
7a0987bf
JN
755 void (*get_dimensions)(struct omap_dss_device *dssdev,
756 u32 *width, u32 *height);
a2699504 757 int (*get_recommended_bpp)(struct omap_dss_device *dssdev);
36511312 758
69b2048f
TV
759 int (*check_timings)(struct omap_dss_device *dssdev,
760 struct omap_video_timings *timings);
761 void (*set_timings)(struct omap_dss_device *dssdev,
762 struct omap_video_timings *timings);
763 void (*get_timings)(struct omap_dss_device *dssdev,
764 struct omap_video_timings *timings);
765
36511312
TV
766 int (*set_wss)(struct omap_dss_device *dssdev, u32 wss);
767 u32 (*get_wss)(struct omap_dss_device *dssdev);
3d5e0ef7
TV
768
769 int (*read_edid)(struct omap_dss_device *dssdev, u8 *buf, int len);
df4769c9 770 bool (*detect)(struct omap_dss_device *dssdev);
9c0b8420 771
8c071caa
TV
772 int (*set_hdmi_mode)(struct omap_dss_device *dssdev, bool hdmi_mode);
773 int (*set_hdmi_infoframe)(struct omap_dss_device *dssdev,
774 const struct hdmi_avi_infoframe *avi);
559d6701
TV
775};
776
b2c7d54f 777enum omapdss_version omapdss_get_version(void);
591a0ac7 778bool omapdss_is_initialized(void);
b2c7d54f 779
559d6701
TV
780int omap_dss_register_driver(struct omap_dss_driver *);
781void omap_dss_unregister_driver(struct omap_dss_driver *);
782
2e7e3dc7
TV
783int omapdss_register_display(struct omap_dss_device *dssdev);
784void omapdss_unregister_display(struct omap_dss_device *dssdev);
785
d35317a4 786struct omap_dss_device *omap_dss_get_device(struct omap_dss_device *dssdev);
559d6701
TV
787void omap_dss_put_device(struct omap_dss_device *dssdev);
788#define for_each_dss_dev(d) while ((d = omap_dss_get_next_device(d)) != NULL)
789struct omap_dss_device *omap_dss_get_next_device(struct omap_dss_device *from);
790struct omap_dss_device *omap_dss_find_device(void *data,
791 int (*match)(struct omap_dss_device *dssdev, void *data));
2bbcce5e 792const char *omapdss_get_default_display_name(void);
559d6701 793
6fcd485b
TV
794void videomode_to_omap_video_timings(const struct videomode *vm,
795 struct omap_video_timings *ovt);
796void omap_video_timings_to_videomode(const struct omap_video_timings *ovt,
797 struct videomode *vm);
798
eda34273
TV
799int dss_feat_get_num_mgrs(void);
800int dss_feat_get_num_ovls(void);
eda34273
TV
801enum omap_color_mode dss_feat_get_supported_color_modes(enum omap_plane plane);
802
803
804
559d6701
TV
805int omap_dss_get_num_overlay_managers(void);
806struct omap_overlay_manager *omap_dss_get_overlay_manager(int num);
807
808int omap_dss_get_num_overlays(void);
809struct omap_overlay *omap_dss_get_overlay(int num);
810
5d47dbc8
TV
811int omapdss_register_output(struct omap_dss_device *output);
812void omapdss_unregister_output(struct omap_dss_device *output);
1f68d9c4
TV
813struct omap_dss_device *omap_dss_get_output(enum omap_dss_output_id id);
814struct omap_dss_device *omap_dss_find_output(const char *name);
ef691ff4 815struct omap_dss_device *omap_dss_find_output_by_port_node(struct device_node *port);
1f68d9c4 816int omapdss_output_set_device(struct omap_dss_device *out,
6d71b923 817 struct omap_dss_device *dssdev);
1f68d9c4 818int omapdss_output_unset_device(struct omap_dss_device *out);
484dc404 819
1f68d9c4 820struct omap_dss_device *omapdss_find_output_from_display(struct omap_dss_device *dssdev);
be8e8e1c
TV
821struct omap_overlay_manager *omapdss_find_mgr_from_display(struct omap_dss_device *dssdev);
822
96adcece
TV
823void omapdss_default_get_resolution(struct omap_dss_device *dssdev,
824 u16 *xres, u16 *yres);
a2699504 825int omapdss_default_get_recommended_bpp(struct omap_dss_device *dssdev);
4b6430fc
GI
826void omapdss_default_get_timings(struct omap_dss_device *dssdev,
827 struct omap_video_timings *timings);
a2699504 828
559d6701
TV
829typedef void (*omap_dispc_isr_t) (void *arg, u32 mask);
830int omap_dispc_register_isr(omap_dispc_isr_t isr, void *arg, u32 mask);
831int omap_dispc_unregister_isr(omap_dispc_isr_t isr, void *arg, u32 mask);
832
8dd2491a
TV
833int omapdss_compat_init(void);
834void omapdss_compat_uninit(void);
835
a7e71e7f
TV
836static inline bool omapdss_device_is_connected(struct omap_dss_device *dssdev)
837{
a73fdc64 838 return dssdev->src;
a7e71e7f
TV
839}
840
841static inline bool omapdss_device_is_enabled(struct omap_dss_device *dssdev)
842{
843 return dssdev->state == OMAP_DSS_DISPLAY_ACTIVE;
844}
845
4e7470dd
TV
846struct device_node *
847omapdss_of_get_next_port(const struct device_node *parent,
848 struct device_node *prev);
849
850struct device_node *
851omapdss_of_get_next_endpoint(const struct device_node *parent,
852 struct device_node *prev);
853
854struct device_node *
855omapdss_of_get_first_endpoint(const struct device_node *parent);
856
857struct omap_dss_device *
858omapdss_of_find_source_for_first_ep(struct device_node *node);
859
62d9e44e 860#endif /* __OMAPFB_DSS_H */