]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/gpu/drm/omapdrm/dss/omapdss.h
drm/omap: Pass drm_display_mode to .check_timings() and .set_timings()
[linux.git] / drivers / gpu / drm / omapdrm / dss / omapdss.h
1 /*
2  * Copyright (C) 2016 Texas Instruments Incorporated - http://www.ti.com/
3  * Author: Tomi Valkeinen <tomi.valkeinen@ti.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
18 #ifndef __OMAP_DRM_DSS_H
19 #define __OMAP_DRM_DSS_H
20
21 #include <linux/list.h>
22 #include <linux/device.h>
23 #include <linux/interrupt.h>
24 #include <video/videomode.h>
25 #include <linux/platform_data/omapdss.h>
26 #include <uapi/drm/drm_mode.h>
27 #include <drm/drm_crtc.h>
28
29 #define DISPC_IRQ_FRAMEDONE             (1 << 0)
30 #define DISPC_IRQ_VSYNC                 (1 << 1)
31 #define DISPC_IRQ_EVSYNC_EVEN           (1 << 2)
32 #define DISPC_IRQ_EVSYNC_ODD            (1 << 3)
33 #define DISPC_IRQ_ACBIAS_COUNT_STAT     (1 << 4)
34 #define DISPC_IRQ_PROG_LINE_NUM         (1 << 5)
35 #define DISPC_IRQ_GFX_FIFO_UNDERFLOW    (1 << 6)
36 #define DISPC_IRQ_GFX_END_WIN           (1 << 7)
37 #define DISPC_IRQ_PAL_GAMMA_MASK        (1 << 8)
38 #define DISPC_IRQ_OCP_ERR               (1 << 9)
39 #define DISPC_IRQ_VID1_FIFO_UNDERFLOW   (1 << 10)
40 #define DISPC_IRQ_VID1_END_WIN          (1 << 11)
41 #define DISPC_IRQ_VID2_FIFO_UNDERFLOW   (1 << 12)
42 #define DISPC_IRQ_VID2_END_WIN          (1 << 13)
43 #define DISPC_IRQ_SYNC_LOST             (1 << 14)
44 #define DISPC_IRQ_SYNC_LOST_DIGIT       (1 << 15)
45 #define DISPC_IRQ_WAKEUP                (1 << 16)
46 #define DISPC_IRQ_SYNC_LOST2            (1 << 17)
47 #define DISPC_IRQ_VSYNC2                (1 << 18)
48 #define DISPC_IRQ_VID3_END_WIN          (1 << 19)
49 #define DISPC_IRQ_VID3_FIFO_UNDERFLOW   (1 << 20)
50 #define DISPC_IRQ_ACBIAS_COUNT_STAT2    (1 << 21)
51 #define DISPC_IRQ_FRAMEDONE2            (1 << 22)
52 #define DISPC_IRQ_FRAMEDONEWB           (1 << 23)
53 #define DISPC_IRQ_FRAMEDONETV           (1 << 24)
54 #define DISPC_IRQ_WBBUFFEROVERFLOW      (1 << 25)
55 #define DISPC_IRQ_WBUNCOMPLETEERROR     (1 << 26)
56 #define DISPC_IRQ_SYNC_LOST3            (1 << 27)
57 #define DISPC_IRQ_VSYNC3                (1 << 28)
58 #define DISPC_IRQ_ACBIAS_COUNT_STAT3    (1 << 29)
59 #define DISPC_IRQ_FRAMEDONE3            (1 << 30)
60
61 struct dss_device;
62 struct omap_drm_private;
63 struct omap_dss_device;
64 struct dispc_device;
65 struct dss_device;
66 struct dss_lcd_mgr_config;
67 struct snd_aes_iec958;
68 struct snd_cea_861_aud_if;
69 struct hdmi_avi_infoframe;
70 struct drm_connector;
71
72 enum omap_display_type {
73         OMAP_DISPLAY_TYPE_NONE          = 0,
74         OMAP_DISPLAY_TYPE_DPI           = 1 << 0,
75         OMAP_DISPLAY_TYPE_DBI           = 1 << 1,
76         OMAP_DISPLAY_TYPE_SDI           = 1 << 2,
77         OMAP_DISPLAY_TYPE_DSI           = 1 << 3,
78         OMAP_DISPLAY_TYPE_VENC          = 1 << 4,
79         OMAP_DISPLAY_TYPE_HDMI          = 1 << 5,
80         OMAP_DISPLAY_TYPE_DVI           = 1 << 6,
81 };
82
83 enum omap_plane_id {
84         OMAP_DSS_GFX    = 0,
85         OMAP_DSS_VIDEO1 = 1,
86         OMAP_DSS_VIDEO2 = 2,
87         OMAP_DSS_VIDEO3 = 3,
88         OMAP_DSS_WB     = 4,
89 };
90
91 enum omap_channel {
92         OMAP_DSS_CHANNEL_LCD    = 0,
93         OMAP_DSS_CHANNEL_DIGIT  = 1,
94         OMAP_DSS_CHANNEL_LCD2   = 2,
95         OMAP_DSS_CHANNEL_LCD3   = 3,
96         OMAP_DSS_CHANNEL_WB     = 4,
97 };
98
99 enum omap_color_mode {
100         _UNUSED_,
101 };
102
103 enum omap_dss_load_mode {
104         OMAP_DSS_LOAD_CLUT_AND_FRAME    = 0,
105         OMAP_DSS_LOAD_CLUT_ONLY         = 1,
106         OMAP_DSS_LOAD_FRAME_ONLY        = 2,
107         OMAP_DSS_LOAD_CLUT_ONCE_FRAME   = 3,
108 };
109
110 enum omap_dss_trans_key_type {
111         OMAP_DSS_COLOR_KEY_GFX_DST = 0,
112         OMAP_DSS_COLOR_KEY_VID_SRC = 1,
113 };
114
115 enum omap_dss_signal_level {
116         OMAPDSS_SIG_ACTIVE_LOW,
117         OMAPDSS_SIG_ACTIVE_HIGH,
118 };
119
120 enum omap_dss_signal_edge {
121         OMAPDSS_DRIVE_SIG_FALLING_EDGE,
122         OMAPDSS_DRIVE_SIG_RISING_EDGE,
123 };
124
125 enum omap_dss_venc_type {
126         OMAP_DSS_VENC_TYPE_COMPOSITE,
127         OMAP_DSS_VENC_TYPE_SVIDEO,
128 };
129
130 enum omap_dss_dsi_pixel_format {
131         OMAP_DSS_DSI_FMT_RGB888,
132         OMAP_DSS_DSI_FMT_RGB666,
133         OMAP_DSS_DSI_FMT_RGB666_PACKED,
134         OMAP_DSS_DSI_FMT_RGB565,
135 };
136
137 enum omap_dss_dsi_mode {
138         OMAP_DSS_DSI_CMD_MODE = 0,
139         OMAP_DSS_DSI_VIDEO_MODE,
140 };
141
142 enum omap_display_caps {
143         OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE      = 1 << 0,
144         OMAP_DSS_DISPLAY_CAP_TEAR_ELIM          = 1 << 1,
145 };
146
147 enum omap_dss_display_state {
148         OMAP_DSS_DISPLAY_DISABLED = 0,
149         OMAP_DSS_DISPLAY_ACTIVE,
150 };
151
152 enum omap_dss_rotation_type {
153         OMAP_DSS_ROT_NONE       = 0,
154         OMAP_DSS_ROT_TILER      = 1 << 0,
155 };
156
157 enum omap_overlay_caps {
158         OMAP_DSS_OVL_CAP_SCALE = 1 << 0,
159         OMAP_DSS_OVL_CAP_GLOBAL_ALPHA = 1 << 1,
160         OMAP_DSS_OVL_CAP_PRE_MULT_ALPHA = 1 << 2,
161         OMAP_DSS_OVL_CAP_ZORDER = 1 << 3,
162         OMAP_DSS_OVL_CAP_POS = 1 << 4,
163         OMAP_DSS_OVL_CAP_REPLICATION = 1 << 5,
164 };
165
166 enum omap_dss_output_id {
167         OMAP_DSS_OUTPUT_DPI     = 1 << 0,
168         OMAP_DSS_OUTPUT_DBI     = 1 << 1,
169         OMAP_DSS_OUTPUT_SDI     = 1 << 2,
170         OMAP_DSS_OUTPUT_DSI1    = 1 << 3,
171         OMAP_DSS_OUTPUT_DSI2    = 1 << 4,
172         OMAP_DSS_OUTPUT_VENC    = 1 << 5,
173         OMAP_DSS_OUTPUT_HDMI    = 1 << 6,
174 };
175
176 /* DSI */
177
178 enum omap_dss_dsi_trans_mode {
179         /* Sync Pulses: both sync start and end packets sent */
180         OMAP_DSS_DSI_PULSE_MODE,
181         /* Sync Events: only sync start packets sent */
182         OMAP_DSS_DSI_EVENT_MODE,
183         /* Burst: only sync start packets sent, pixels are time compressed */
184         OMAP_DSS_DSI_BURST_MODE,
185 };
186
187 struct omap_dss_dsi_videomode_timings {
188         unsigned long hsclk;
189
190         unsigned int ndl;
191         unsigned int bitspp;
192
193         /* pixels */
194         u16 hact;
195         /* lines */
196         u16 vact;
197
198         /* DSI video mode blanking data */
199         /* Unit: byte clock cycles */
200         u16 hss;
201         u16 hsa;
202         u16 hse;
203         u16 hfp;
204         u16 hbp;
205         /* Unit: line clocks */
206         u16 vsa;
207         u16 vfp;
208         u16 vbp;
209
210         /* DSI blanking modes */
211         int blanking_mode;
212         int hsa_blanking_mode;
213         int hbp_blanking_mode;
214         int hfp_blanking_mode;
215
216         enum omap_dss_dsi_trans_mode trans_mode;
217
218         bool ddr_clk_always_on;
219         int window_sync;
220 };
221
222 struct omap_dss_dsi_config {
223         enum omap_dss_dsi_mode mode;
224         enum omap_dss_dsi_pixel_format pixel_format;
225         const struct videomode *vm;
226
227         unsigned long hs_clk_min, hs_clk_max;
228         unsigned long lp_clk_min, lp_clk_max;
229
230         bool ddr_clk_always_on;
231         enum omap_dss_dsi_trans_mode trans_mode;
232 };
233
234 struct omap_dss_cpr_coefs {
235         s16 rr, rg, rb;
236         s16 gr, gg, gb;
237         s16 br, bg, bb;
238 };
239
240 struct omap_overlay_info {
241         dma_addr_t paddr;
242         dma_addr_t p_uv_addr;  /* for NV12 format */
243         u16 screen_width;
244         u16 width;
245         u16 height;
246         u32 fourcc;
247         u8 rotation;
248         enum omap_dss_rotation_type rotation_type;
249
250         u16 pos_x;
251         u16 pos_y;
252         u16 out_width;  /* if 0, out_width == width */
253         u16 out_height; /* if 0, out_height == height */
254         u8 global_alpha;
255         u8 pre_mult_alpha;
256         u8 zorder;
257 };
258
259 struct omap_overlay_manager_info {
260         u32 default_color;
261
262         enum omap_dss_trans_key_type trans_key_type;
263         u32 trans_key;
264         bool trans_enabled;
265
266         bool partial_alpha_enabled;
267
268         bool cpr_enable;
269         struct omap_dss_cpr_coefs cpr_coefs;
270 };
271
272 /* 22 pins means 1 clk lane and 10 data lanes */
273 #define OMAP_DSS_MAX_DSI_PINS 22
274
275 struct omap_dsi_pin_config {
276         int num_pins;
277         /*
278          * pin numbers in the following order:
279          * clk+, clk-
280          * data1+, data1-
281          * data2+, data2-
282          * ...
283          */
284         int pins[OMAP_DSS_MAX_DSI_PINS];
285 };
286
287 struct omap_dss_writeback_info {
288         u32 paddr;
289         u32 p_uv_addr;
290         u16 buf_width;
291         u16 width;
292         u16 height;
293         u32 fourcc;
294         u8 rotation;
295         enum omap_dss_rotation_type rotation_type;
296         u8 pre_mult_alpha;
297 };
298
299 struct omapdss_hdmi_ops {
300         void (*lost_hotplug)(struct omap_dss_device *dssdev);
301         int (*set_hdmi_mode)(struct omap_dss_device *dssdev, bool hdmi_mode);
302         int (*set_infoframe)(struct omap_dss_device *dssdev,
303                 const struct hdmi_avi_infoframe *avi);
304 };
305
306 struct omapdss_dsi_ops {
307         void (*disable)(struct omap_dss_device *dssdev, bool disconnect_lanes,
308                         bool enter_ulps);
309
310         /* bus configuration */
311         int (*set_config)(struct omap_dss_device *dssdev,
312                         const struct omap_dss_dsi_config *cfg);
313         int (*configure_pins)(struct omap_dss_device *dssdev,
314                         const struct omap_dsi_pin_config *pin_cfg);
315
316         void (*enable_hs)(struct omap_dss_device *dssdev, int channel,
317                         bool enable);
318         int (*enable_te)(struct omap_dss_device *dssdev, bool enable);
319
320         int (*update)(struct omap_dss_device *dssdev, int channel,
321                         void (*callback)(int, void *), void *data);
322
323         void (*bus_lock)(struct omap_dss_device *dssdev);
324         void (*bus_unlock)(struct omap_dss_device *dssdev);
325
326         int (*enable_video_output)(struct omap_dss_device *dssdev, int channel);
327         void (*disable_video_output)(struct omap_dss_device *dssdev,
328                         int channel);
329
330         int (*request_vc)(struct omap_dss_device *dssdev, int *channel);
331         int (*set_vc_id)(struct omap_dss_device *dssdev, int channel,
332                         int vc_id);
333         void (*release_vc)(struct omap_dss_device *dssdev, int channel);
334
335         /* data transfer */
336         int (*dcs_write)(struct omap_dss_device *dssdev, int channel,
337                         u8 *data, int len);
338         int (*dcs_write_nosync)(struct omap_dss_device *dssdev, int channel,
339                         u8 *data, int len);
340         int (*dcs_read)(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd,
341                         u8 *data, int len);
342
343         int (*gen_write)(struct omap_dss_device *dssdev, int channel,
344                         u8 *data, int len);
345         int (*gen_write_nosync)(struct omap_dss_device *dssdev, int channel,
346                         u8 *data, int len);
347         int (*gen_read)(struct omap_dss_device *dssdev, int channel,
348                         u8 *reqdata, int reqlen,
349                         u8 *data, int len);
350
351         int (*bta_sync)(struct omap_dss_device *dssdev, int channel);
352
353         int (*set_max_rx_packet_size)(struct omap_dss_device *dssdev,
354                         int channel, u16 plen);
355 };
356
357 struct omap_dss_device_ops {
358         int (*connect)(struct omap_dss_device *dssdev,
359                         struct omap_dss_device *dst);
360         void (*disconnect)(struct omap_dss_device *dssdev,
361                         struct omap_dss_device *dst);
362
363         void (*pre_enable)(struct omap_dss_device *dssdev);
364         void (*enable)(struct omap_dss_device *dssdev);
365         void (*disable)(struct omap_dss_device *dssdev);
366         void (*post_disable)(struct omap_dss_device *dssdev);
367
368         int (*check_timings)(struct omap_dss_device *dssdev,
369                              struct drm_display_mode *mode);
370         void (*set_timings)(struct omap_dss_device *dssdev,
371                             const struct drm_display_mode *mode);
372
373         bool (*detect)(struct omap_dss_device *dssdev);
374
375         void (*register_hpd_cb)(struct omap_dss_device *dssdev,
376                                 void (*cb)(void *cb_data,
377                                           enum drm_connector_status status),
378                                 void *cb_data);
379         void (*unregister_hpd_cb)(struct omap_dss_device *dssdev);
380
381         int (*read_edid)(struct omap_dss_device *dssdev, u8 *buf, int len);
382
383         int (*get_modes)(struct omap_dss_device *dssdev,
384                          struct drm_connector *connector);
385
386         union {
387                 const struct omapdss_hdmi_ops hdmi;
388                 const struct omapdss_dsi_ops dsi;
389         };
390 };
391
392 /**
393  * enum omap_dss_device_ops_flag - Indicates which device ops are supported
394  * @OMAP_DSS_DEVICE_OP_DETECT: The device supports output connection detection
395  * @OMAP_DSS_DEVICE_OP_HPD: The device supports all hot-plug-related operations
396  * @OMAP_DSS_DEVICE_OP_EDID: The device supports reading EDID
397  * @OMAP_DSS_DEVICE_OP_MODES: The device supports reading modes
398  */
399 enum omap_dss_device_ops_flag {
400         OMAP_DSS_DEVICE_OP_DETECT = BIT(0),
401         OMAP_DSS_DEVICE_OP_HPD = BIT(1),
402         OMAP_DSS_DEVICE_OP_EDID = BIT(2),
403         OMAP_DSS_DEVICE_OP_MODES = BIT(3),
404 };
405
406 struct omap_dss_device {
407         struct device *dev;
408
409         struct module *owner;
410
411         struct dss_device *dss;
412         struct omap_dss_device *next;
413
414         struct list_head list;
415
416         enum omap_display_type type;
417         /*
418          * DSS output type that this device generates (for DSS internal devices)
419          * or requires (for external encoders). Must be OMAP_DISPLAY_TYPE_NONE
420          * for display devices (connectors and panels) and to non-zero value for
421          * all other devices.
422          */
423         enum omap_display_type output_type;
424
425         const char *name;
426
427         const struct omap_dss_driver *driver;
428         const struct omap_dss_device_ops *ops;
429         unsigned long ops_flags;
430         u32 bus_flags;
431
432         enum omap_display_caps caps;
433
434         enum omap_dss_display_state state;
435
436         /* OMAP DSS output specific fields */
437
438         /* DISPC channel for this output */
439         enum omap_channel dispc_channel;
440
441         /* output instance */
442         enum omap_dss_output_id id;
443
444         /* bitmask of port numbers in DT */
445         unsigned int of_ports;
446 };
447
448 struct omap_dss_driver {
449         int (*update)(struct omap_dss_device *dssdev,
450                                u16 x, u16 y, u16 w, u16 h);
451         int (*sync)(struct omap_dss_device *dssdev);
452
453         int (*enable_te)(struct omap_dss_device *dssdev, bool enable);
454         int (*get_te)(struct omap_dss_device *dssdev);
455
456         int (*memory_read)(struct omap_dss_device *dssdev,
457                         void *buf, size_t size,
458                         u16 x, u16 y, u16 w, u16 h);
459 };
460
461 struct dss_device *omapdss_get_dss(void);
462 void omapdss_set_dss(struct dss_device *dss);
463 static inline bool omapdss_is_initialized(void)
464 {
465         return !!omapdss_get_dss();
466 }
467
468 void omapdss_display_init(struct omap_dss_device *dssdev);
469 struct omap_dss_device *omapdss_display_get(struct omap_dss_device *output);
470 int omapdss_display_get_modes(struct drm_connector *connector,
471                               const struct videomode *vm);
472
473 void omapdss_device_register(struct omap_dss_device *dssdev);
474 void omapdss_device_unregister(struct omap_dss_device *dssdev);
475 struct omap_dss_device *omapdss_device_get(struct omap_dss_device *dssdev);
476 void omapdss_device_put(struct omap_dss_device *dssdev);
477 struct omap_dss_device *omapdss_find_device_by_port(struct device_node *src,
478                                                     unsigned int port);
479 int omapdss_device_connect(struct dss_device *dss,
480                            struct omap_dss_device *src,
481                            struct omap_dss_device *dst);
482 void omapdss_device_disconnect(struct omap_dss_device *src,
483                                struct omap_dss_device *dst);
484 void omapdss_device_pre_enable(struct omap_dss_device *dssdev);
485 void omapdss_device_enable(struct omap_dss_device *dssdev);
486 void omapdss_device_disable(struct omap_dss_device *dssdev);
487 void omapdss_device_post_disable(struct omap_dss_device *dssdev);
488
489 int omap_dss_get_num_overlay_managers(void);
490
491 int omap_dss_get_num_overlays(void);
492
493 #define for_each_dss_output(d) \
494         while ((d = omapdss_device_next_output(d)) != NULL)
495 struct omap_dss_device *omapdss_device_next_output(struct omap_dss_device *from);
496 int omapdss_device_init_output(struct omap_dss_device *out);
497 void omapdss_device_cleanup_output(struct omap_dss_device *out);
498
499 typedef void (*omap_dispc_isr_t) (void *arg, u32 mask);
500 int omap_dispc_register_isr(omap_dispc_isr_t isr, void *arg, u32 mask);
501 int omap_dispc_unregister_isr(omap_dispc_isr_t isr, void *arg, u32 mask);
502
503 int omapdss_compat_init(void);
504 void omapdss_compat_uninit(void);
505
506 static inline bool omapdss_device_is_enabled(struct omap_dss_device *dssdev)
507 {
508         return dssdev->state == OMAP_DSS_DISPLAY_ACTIVE;
509 }
510
511 struct omap_dss_device *
512 omapdss_of_find_connected_device(struct device_node *node, unsigned int port);
513
514 enum dss_writeback_channel {
515         DSS_WB_LCD1_MGR =       0,
516         DSS_WB_LCD2_MGR =       1,
517         DSS_WB_TV_MGR =         2,
518         DSS_WB_OVL0 =           3,
519         DSS_WB_OVL1 =           4,
520         DSS_WB_OVL2 =           5,
521         DSS_WB_OVL3 =           6,
522         DSS_WB_LCD3_MGR =       7,
523 };
524
525 struct dss_mgr_ops {
526         void (*start_update)(struct omap_drm_private *priv,
527                              enum omap_channel channel);
528         int (*enable)(struct omap_drm_private *priv,
529                       enum omap_channel channel);
530         void (*disable)(struct omap_drm_private *priv,
531                         enum omap_channel channel);
532         void (*set_timings)(struct omap_drm_private *priv,
533                             enum omap_channel channel,
534                             const struct videomode *vm);
535         void (*set_lcd_config)(struct omap_drm_private *priv,
536                                enum omap_channel channel,
537                                const struct dss_lcd_mgr_config *config);
538         int (*register_framedone_handler)(struct omap_drm_private *priv,
539                         enum omap_channel channel,
540                         void (*handler)(void *), void *data);
541         void (*unregister_framedone_handler)(struct omap_drm_private *priv,
542                         enum omap_channel channel,
543                         void (*handler)(void *), void *data);
544 };
545
546 int dss_install_mgr_ops(struct dss_device *dss,
547                         const struct dss_mgr_ops *mgr_ops,
548                         struct omap_drm_private *priv);
549 void dss_uninstall_mgr_ops(struct dss_device *dss);
550
551 void dss_mgr_set_timings(struct omap_dss_device *dssdev,
552                 const struct videomode *vm);
553 void dss_mgr_set_lcd_config(struct omap_dss_device *dssdev,
554                 const struct dss_lcd_mgr_config *config);
555 int dss_mgr_enable(struct omap_dss_device *dssdev);
556 void dss_mgr_disable(struct omap_dss_device *dssdev);
557 void dss_mgr_start_update(struct omap_dss_device *dssdev);
558 int dss_mgr_register_framedone_handler(struct omap_dss_device *dssdev,
559                 void (*handler)(void *), void *data);
560 void dss_mgr_unregister_framedone_handler(struct omap_dss_device *dssdev,
561                 void (*handler)(void *), void *data);
562
563 /* dispc ops */
564
565 struct dispc_ops {
566         u32 (*read_irqstatus)(struct dispc_device *dispc);
567         void (*clear_irqstatus)(struct dispc_device *dispc, u32 mask);
568         void (*write_irqenable)(struct dispc_device *dispc, u32 mask);
569
570         int (*request_irq)(struct dispc_device *dispc, irq_handler_t handler,
571                            void *dev_id);
572         void (*free_irq)(struct dispc_device *dispc, void *dev_id);
573
574         int (*runtime_get)(struct dispc_device *dispc);
575         void (*runtime_put)(struct dispc_device *dispc);
576
577         int (*get_num_ovls)(struct dispc_device *dispc);
578         int (*get_num_mgrs)(struct dispc_device *dispc);
579
580         u32 (*get_memory_bandwidth_limit)(struct dispc_device *dispc);
581
582         void (*mgr_enable)(struct dispc_device *dispc,
583                            enum omap_channel channel, bool enable);
584         bool (*mgr_is_enabled)(struct dispc_device *dispc,
585                                enum omap_channel channel);
586         u32 (*mgr_get_vsync_irq)(struct dispc_device *dispc,
587                                  enum omap_channel channel);
588         u32 (*mgr_get_framedone_irq)(struct dispc_device *dispc,
589                                      enum omap_channel channel);
590         u32 (*mgr_get_sync_lost_irq)(struct dispc_device *dispc,
591                                      enum omap_channel channel);
592         bool (*mgr_go_busy)(struct dispc_device *dispc,
593                             enum omap_channel channel);
594         void (*mgr_go)(struct dispc_device *dispc, enum omap_channel channel);
595         void (*mgr_set_lcd_config)(struct dispc_device *dispc,
596                                    enum omap_channel channel,
597                                    const struct dss_lcd_mgr_config *config);
598         int (*mgr_check_timings)(struct dispc_device *dispc,
599                                  enum omap_channel channel,
600                                  const struct videomode *vm);
601         void (*mgr_set_timings)(struct dispc_device *dispc,
602                                 enum omap_channel channel,
603                                 const struct videomode *vm);
604         void (*mgr_setup)(struct dispc_device *dispc, enum omap_channel channel,
605                           const struct omap_overlay_manager_info *info);
606         u32 (*mgr_gamma_size)(struct dispc_device *dispc,
607                               enum omap_channel channel);
608         void (*mgr_set_gamma)(struct dispc_device *dispc,
609                               enum omap_channel channel,
610                               const struct drm_color_lut *lut,
611                               unsigned int length);
612
613         int (*ovl_enable)(struct dispc_device *dispc, enum omap_plane_id plane,
614                           bool enable);
615         int (*ovl_setup)(struct dispc_device *dispc, enum omap_plane_id plane,
616                          const struct omap_overlay_info *oi,
617                          const struct videomode *vm, bool mem_to_mem,
618                          enum omap_channel channel);
619
620         const u32 *(*ovl_get_color_modes)(struct dispc_device *dispc,
621                                           enum omap_plane_id plane);
622
623         u32 (*wb_get_framedone_irq)(struct dispc_device *dispc);
624         int (*wb_setup)(struct dispc_device *dispc,
625                 const struct omap_dss_writeback_info *wi,
626                 bool mem_to_mem, const struct videomode *vm,
627                 enum dss_writeback_channel channel_in);
628         bool (*has_writeback)(struct dispc_device *dispc);
629         bool (*wb_go_busy)(struct dispc_device *dispc);
630         void (*wb_go)(struct dispc_device *dispc);
631 };
632
633 struct dispc_device *dispc_get_dispc(struct dss_device *dss);
634 const struct dispc_ops *dispc_get_ops(struct dss_device *dss);
635
636 bool omapdss_stack_is_ready(void);
637 void omapdss_gather_components(struct device *dev);
638
639 #endif /* __OMAP_DRM_DSS_H */