2 * Copyright (C) 2016 Texas Instruments, Inc.
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.
10 #ifndef __OMAPFB_DSS_H
11 #define __OMAPFB_DSS_H
13 #include <linux/list.h>
14 #include <linux/kobject.h>
15 #include <linux/device.h>
16 #include <linux/interrupt.h>
17 #include <linux/platform_data/omapdss.h>
19 #include <video/videomode.h>
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)
38 #define DISPC_IRQ_SYNC_LOST2 (1 << 17)
39 #define DISPC_IRQ_VSYNC2 (1 << 18)
40 #define DISPC_IRQ_VID3_END_WIN (1 << 19)
41 #define DISPC_IRQ_VID3_FIFO_UNDERFLOW (1 << 20)
42 #define DISPC_IRQ_ACBIAS_COUNT_STAT2 (1 << 21)
43 #define DISPC_IRQ_FRAMEDONE2 (1 << 22)
44 #define DISPC_IRQ_FRAMEDONEWB (1 << 23)
45 #define DISPC_IRQ_FRAMEDONETV (1 << 24)
46 #define DISPC_IRQ_WBBUFFEROVERFLOW (1 << 25)
47 #define DISPC_IRQ_WBUNCOMPLETEERROR (1 << 26)
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)
53 struct omap_dss_device
;
54 struct omap_overlay_manager
;
55 struct dss_lcd_mgr_config
;
56 struct snd_aes_iec958
;
57 struct snd_cea_861_aud_if
;
58 struct hdmi_avi_infoframe
;
60 enum 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,
67 OMAP_DISPLAY_TYPE_HDMI
= 1 << 5,
68 OMAP_DISPLAY_TYPE_DVI
= 1 << 6,
80 OMAP_DSS_CHANNEL_LCD
= 0,
81 OMAP_DSS_CHANNEL_DIGIT
= 1,
82 OMAP_DSS_CHANNEL_LCD2
= 2,
83 OMAP_DSS_CHANNEL_LCD3
= 3,
84 OMAP_DSS_CHANNEL_WB
= 4,
87 enum 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 */
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 */
109 enum 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,
116 enum omap_dss_trans_key_type
{
117 OMAP_DSS_COLOR_KEY_GFX_DST
= 0,
118 OMAP_DSS_COLOR_KEY_VID_SRC
= 1,
121 enum omap_rfbi_te_mode
{
122 OMAP_DSS_RFBI_TE_MODE_1
= 1,
123 OMAP_DSS_RFBI_TE_MODE_2
= 2,
126 enum omap_dss_signal_level
{
127 OMAPDSS_SIG_ACTIVE_LOW
,
128 OMAPDSS_SIG_ACTIVE_HIGH
,
131 enum omap_dss_signal_edge
{
132 OMAPDSS_DRIVE_SIG_FALLING_EDGE
,
133 OMAPDSS_DRIVE_SIG_RISING_EDGE
,
136 enum omap_dss_venc_type
{
137 OMAP_DSS_VENC_TYPE_COMPOSITE
,
138 OMAP_DSS_VENC_TYPE_SVIDEO
,
141 enum 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
,
148 enum omap_dss_dsi_mode
{
149 OMAP_DSS_DSI_CMD_MODE
= 0,
150 OMAP_DSS_DSI_VIDEO_MODE
,
153 enum omap_display_caps
{
154 OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE
= 1 << 0,
155 OMAP_DSS_DISPLAY_CAP_TEAR_ELIM
= 1 << 1,
158 enum omap_dss_display_state
{
159 OMAP_DSS_DISPLAY_DISABLED
= 0,
160 OMAP_DSS_DISPLAY_ACTIVE
,
163 enum omap_dss_rotation_type
{
164 OMAP_DSS_ROT_DMA
= 1 << 0,
165 OMAP_DSS_ROT_VRFB
= 1 << 1,
166 OMAP_DSS_ROT_TILER
= 1 << 2,
169 /* clockwise rotation angle */
170 enum omap_dss_rotation_angle
{
173 OMAP_DSS_ROT_180
= 2,
174 OMAP_DSS_ROT_270
= 3,
177 enum omap_overlay_caps
{
178 OMAP_DSS_OVL_CAP_SCALE
= 1 << 0,
179 OMAP_DSS_OVL_CAP_GLOBAL_ALPHA
= 1 << 1,
180 OMAP_DSS_OVL_CAP_PRE_MULT_ALPHA
= 1 << 2,
181 OMAP_DSS_OVL_CAP_ZORDER
= 1 << 3,
182 OMAP_DSS_OVL_CAP_POS
= 1 << 4,
183 OMAP_DSS_OVL_CAP_REPLICATION
= 1 << 5,
186 enum 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,
198 struct rfbi_timings
{
212 u32 tim
[5]; /* set by rfbi_convert_timings() */
219 enum 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
,
228 struct omap_dss_dsi_videomode_timings
{
239 /* DSI video mode blanking data */
240 /* Unit: byte clock cycles */
246 /* Unit: line clocks */
251 /* DSI blanking modes */
253 int hsa_blanking_mode
;
254 int hbp_blanking_mode
;
255 int hfp_blanking_mode
;
257 enum omap_dss_dsi_trans_mode trans_mode
;
259 bool ddr_clk_always_on
;
263 struct 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
;
268 unsigned long hs_clk_min
, hs_clk_max
;
269 unsigned long lp_clk_min
, lp_clk_max
;
271 bool ddr_clk_always_on
;
272 enum omap_dss_dsi_trans_mode trans_mode
;
275 struct omap_video_timings
{
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 */
295 /* Vsync logic level */
296 enum omap_dss_signal_level vsync_level
;
297 /* Hsync logic level */
298 enum omap_dss_signal_level hsync_level
;
299 /* Interlaced or Progressive timings */
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
;
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 */
315 extern const struct omap_video_timings omap_dss_pal_timings
;
316 extern const struct omap_video_timings omap_dss_ntsc_timings
;
318 struct omap_dss_cpr_coefs
{
324 struct omap_overlay_info
{
326 dma_addr_t p_uv_addr
; /* for NV12 format */
330 enum omap_color_mode color_mode
;
332 enum omap_dss_rotation_type rotation_type
;
337 u16 out_width
; /* if 0, out_width == width */
338 u16 out_height
; /* if 0, out_height == height */
344 struct omap_overlay
{
346 struct list_head list
;
351 enum omap_color_mode supported_modes
;
352 enum omap_overlay_caps caps
;
355 struct omap_overlay_manager
*manager
;
358 * The following functions do not block:
364 * The rest of the functions may block and cannot be called from
368 int (*enable
)(struct omap_overlay
*ovl
);
369 int (*disable
)(struct omap_overlay
*ovl
);
370 bool (*is_enabled
)(struct omap_overlay
*ovl
);
372 int (*set_manager
)(struct omap_overlay
*ovl
,
373 struct omap_overlay_manager
*mgr
);
374 int (*unset_manager
)(struct omap_overlay
*ovl
);
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
);
381 int (*wait_for_go
)(struct omap_overlay
*ovl
);
383 struct omap_dss_device
*(*get_device
)(struct omap_overlay
*ovl
);
386 struct omap_overlay_manager_info
{
389 enum omap_dss_trans_key_type trans_key_type
;
393 bool partial_alpha_enabled
;
396 struct omap_dss_cpr_coefs cpr_coefs
;
399 struct omap_overlay_manager
{
404 enum omap_channel id
;
405 struct list_head overlays
;
406 enum omap_display_type supported_displays
;
407 enum omap_dss_output_id supported_outputs
;
410 struct omap_dss_device
*output
;
413 * The following functions do not block:
419 * The rest of the functions may block and cannot be called from
423 int (*set_output
)(struct omap_overlay_manager
*mgr
,
424 struct omap_dss_device
*output
);
425 int (*unset_output
)(struct omap_overlay_manager
*mgr
);
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
);
432 int (*apply
)(struct omap_overlay_manager
*mgr
);
433 int (*wait_for_go
)(struct omap_overlay_manager
*mgr
);
434 int (*wait_for_vsync
)(struct omap_overlay_manager
*mgr
);
436 struct omap_dss_device
*(*get_device
)(struct omap_overlay_manager
*mgr
);
439 /* 22 pins means 1 clk lane and 10 data lanes */
440 #define OMAP_DSS_MAX_DSI_PINS 22
442 struct omap_dsi_pin_config
{
445 * pin numbers in the following order:
451 int pins
[OMAP_DSS_MAX_DSI_PINS
];
454 struct omap_dss_writeback_info
{
460 enum omap_color_mode color_mode
;
462 enum omap_dss_rotation_type rotation_type
;
467 struct 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
);
473 int (*enable
)(struct omap_dss_device
*dssdev
);
474 void (*disable
)(struct omap_dss_device
*dssdev
);
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
);
483 void (*set_data_lines
)(struct omap_dss_device
*dssdev
, int data_lines
);
486 struct 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
);
492 int (*enable
)(struct omap_dss_device
*dssdev
);
493 void (*disable
)(struct omap_dss_device
*dssdev
);
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
);
502 void (*set_datapairs
)(struct omap_dss_device
*dssdev
, int datapairs
);
505 struct 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
);
511 int (*enable
)(struct omap_dss_device
*dssdev
);
512 void (*disable
)(struct omap_dss_device
*dssdev
);
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
);
522 struct 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
);
528 int (*enable
)(struct omap_dss_device
*dssdev
);
529 void (*disable
)(struct omap_dss_device
*dssdev
);
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
);
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
);
543 int (*set_wss
)(struct omap_dss_device
*dssdev
, u32 wss
);
544 u32 (*get_wss
)(struct omap_dss_device
*dssdev
);
547 struct 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
);
553 int (*enable
)(struct omap_dss_device
*dssdev
);
554 void (*disable
)(struct omap_dss_device
*dssdev
);
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
);
563 int (*read_edid
)(struct omap_dss_device
*dssdev
, u8
*buf
, int len
);
564 bool (*detect
)(struct omap_dss_device
*dssdev
);
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
);
571 struct 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
);
577 int (*enable
)(struct omap_dss_device
*dssdev
);
578 void (*disable
)(struct omap_dss_device
*dssdev
, bool disconnect_lanes
,
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
);
587 void (*enable_hs
)(struct omap_dss_device
*dssdev
, int channel
,
589 int (*enable_te
)(struct omap_dss_device
*dssdev
, bool enable
);
591 int (*update
)(struct omap_dss_device
*dssdev
, int channel
,
592 void (*callback
)(int, void *), void *data
);
594 void (*bus_lock
)(struct omap_dss_device
*dssdev
);
595 void (*bus_unlock
)(struct omap_dss_device
*dssdev
);
597 int (*enable_video_output
)(struct omap_dss_device
*dssdev
, int channel
);
598 void (*disable_video_output
)(struct omap_dss_device
*dssdev
,
601 int (*request_vc
)(struct omap_dss_device
*dssdev
, int *channel
);
602 int (*set_vc_id
)(struct omap_dss_device
*dssdev
, int channel
,
604 void (*release_vc
)(struct omap_dss_device
*dssdev
, int channel
);
607 int (*dcs_write
)(struct omap_dss_device
*dssdev
, int channel
,
609 int (*dcs_write_nosync
)(struct omap_dss_device
*dssdev
, int channel
,
611 int (*dcs_read
)(struct omap_dss_device
*dssdev
, int channel
, u8 dcs_cmd
,
614 int (*gen_write
)(struct omap_dss_device
*dssdev
, int channel
,
616 int (*gen_write_nosync
)(struct omap_dss_device
*dssdev
, int channel
,
618 int (*gen_read
)(struct omap_dss_device
*dssdev
, int channel
,
619 u8
*reqdata
, int reqlen
,
622 int (*bta_sync
)(struct omap_dss_device
*dssdev
, int channel
);
624 int (*set_max_rx_packet_size
)(struct omap_dss_device
*dssdev
,
625 int channel
, u16 plen
);
628 struct omap_dss_device
{
632 struct module
*owner
;
634 struct list_head panel_list
;
636 /* alias in the form of "display%d" */
639 enum omap_display_type type
;
640 enum omap_display_type output_type
;
661 enum omap_dss_venc_type type
;
662 bool invert_polarity
;
667 struct omap_video_timings timings
;
669 enum omap_dss_dsi_pixel_format dsi_pix_fmt
;
670 enum omap_dss_dsi_mode dsi_mode
;
675 struct rfbi_timings rfbi_timings
;
680 /* used to match device to driver */
681 const char *driver_name
;
685 struct omap_dss_driver
*driver
;
688 const struct omapdss_dpi_ops
*dpi
;
689 const struct omapdss_sdi_ops
*sdi
;
690 const struct omapdss_dvi_ops
*dvi
;
691 const struct omapdss_hdmi_ops
*hdmi
;
692 const struct omapdss_atv_ops
*atv
;
693 const struct omapdss_dsi_ops
*dsi
;
696 /* helper variable for driver suspend/resume */
697 bool activate_after_resume
;
699 enum omap_display_caps caps
;
701 struct omap_dss_device
*src
;
703 enum omap_dss_display_state state
;
705 /* OMAP DSS output specific fields */
707 struct list_head list
;
709 /* DISPC channel for this output */
710 enum omap_channel dispc_channel
;
711 bool dispc_channel_connected
;
713 /* output instance */
714 enum omap_dss_output_id id
;
716 /* the port number in the DT node */
720 struct omap_overlay_manager
*manager
;
722 struct omap_dss_device
*dst
;
725 struct omap_dss_driver
{
726 int (*probe
)(struct omap_dss_device
*);
727 void (*remove
)(struct omap_dss_device
*);
729 int (*connect
)(struct omap_dss_device
*dssdev
);
730 void (*disconnect
)(struct omap_dss_device
*dssdev
);
732 int (*enable
)(struct omap_dss_device
*display
);
733 void (*disable
)(struct omap_dss_device
*display
);
734 int (*run_test
)(struct omap_dss_device
*display
, int test
);
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
);
740 int (*enable_te
)(struct omap_dss_device
*dssdev
, bool enable
);
741 int (*get_te
)(struct omap_dss_device
*dssdev
);
743 u8 (*get_rotate
)(struct omap_dss_device
*dssdev
);
744 int (*set_rotate
)(struct omap_dss_device
*dssdev
, u8 rotate
);
746 bool (*get_mirror
)(struct omap_dss_device
*dssdev
);
747 int (*set_mirror
)(struct omap_dss_device
*dssdev
, bool enable
);
749 int (*memory_read
)(struct omap_dss_device
*dssdev
,
750 void *buf
, size_t size
,
751 u16 x
, u16 y
, u16 w
, u16 h
);
753 void (*get_resolution
)(struct omap_dss_device
*dssdev
,
754 u16
*xres
, u16
*yres
);
755 void (*get_dimensions
)(struct omap_dss_device
*dssdev
,
756 u32
*width
, u32
*height
);
757 int (*get_recommended_bpp
)(struct omap_dss_device
*dssdev
);
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
);
766 int (*set_wss
)(struct omap_dss_device
*dssdev
, u32 wss
);
767 u32 (*get_wss
)(struct omap_dss_device
*dssdev
);
769 int (*read_edid
)(struct omap_dss_device
*dssdev
, u8
*buf
, int len
);
770 bool (*detect
)(struct omap_dss_device
*dssdev
);
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
);
777 enum omapdss_version
omapdss_get_version(void);
778 bool omapdss_is_initialized(void);
780 int omap_dss_register_driver(struct omap_dss_driver
*);
781 void omap_dss_unregister_driver(struct omap_dss_driver
*);
783 int omapdss_register_display(struct omap_dss_device
*dssdev
);
784 void omapdss_unregister_display(struct omap_dss_device
*dssdev
);
786 struct omap_dss_device
*omap_dss_get_device(struct omap_dss_device
*dssdev
);
787 void 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)
789 struct omap_dss_device
*omap_dss_get_next_device(struct omap_dss_device
*from
);
790 struct omap_dss_device
*omap_dss_find_device(void *data
,
791 int (*match
)(struct omap_dss_device
*dssdev
, void *data
));
792 const char *omapdss_get_default_display_name(void);
794 void videomode_to_omap_video_timings(const struct videomode
*vm
,
795 struct omap_video_timings
*ovt
);
796 void omap_video_timings_to_videomode(const struct omap_video_timings
*ovt
,
797 struct videomode
*vm
);
799 int dss_feat_get_num_mgrs(void);
800 int dss_feat_get_num_ovls(void);
801 enum omap_color_mode
dss_feat_get_supported_color_modes(enum omap_plane plane
);
805 int omap_dss_get_num_overlay_managers(void);
806 struct omap_overlay_manager
*omap_dss_get_overlay_manager(int num
);
808 int omap_dss_get_num_overlays(void);
809 struct omap_overlay
*omap_dss_get_overlay(int num
);
811 int omapdss_register_output(struct omap_dss_device
*output
);
812 void omapdss_unregister_output(struct omap_dss_device
*output
);
813 struct omap_dss_device
*omap_dss_get_output(enum omap_dss_output_id id
);
814 struct omap_dss_device
*omap_dss_find_output(const char *name
);
815 struct omap_dss_device
*omap_dss_find_output_by_port_node(struct device_node
*port
);
816 int omapdss_output_set_device(struct omap_dss_device
*out
,
817 struct omap_dss_device
*dssdev
);
818 int omapdss_output_unset_device(struct omap_dss_device
*out
);
820 struct omap_dss_device
*omapdss_find_output_from_display(struct omap_dss_device
*dssdev
);
821 struct omap_overlay_manager
*omapdss_find_mgr_from_display(struct omap_dss_device
*dssdev
);
823 void omapdss_default_get_resolution(struct omap_dss_device
*dssdev
,
824 u16
*xres
, u16
*yres
);
825 int omapdss_default_get_recommended_bpp(struct omap_dss_device
*dssdev
);
826 void omapdss_default_get_timings(struct omap_dss_device
*dssdev
,
827 struct omap_video_timings
*timings
);
829 typedef void (*omap_dispc_isr_t
) (void *arg
, u32 mask
);
830 int omap_dispc_register_isr(omap_dispc_isr_t isr
, void *arg
, u32 mask
);
831 int omap_dispc_unregister_isr(omap_dispc_isr_t isr
, void *arg
, u32 mask
);
833 int omapdss_compat_init(void);
834 void omapdss_compat_uninit(void);
836 static inline bool omapdss_device_is_connected(struct omap_dss_device
*dssdev
)
841 static inline bool omapdss_device_is_enabled(struct omap_dss_device
*dssdev
)
843 return dssdev
->state
== OMAP_DSS_DISPLAY_ACTIVE
;
847 omapdss_of_get_next_port(const struct device_node
*parent
,
848 struct device_node
*prev
);
851 omapdss_of_get_next_endpoint(const struct device_node
*parent
,
852 struct device_node
*prev
);
855 omapdss_of_get_first_endpoint(const struct device_node
*parent
);
857 struct omap_dss_device
*
858 omapdss_of_find_source_for_first_ep(struct device_node
*node
);
860 #endif /* __OMAPFB_DSS_H */