blob: e81ca66dfbb46920b86454c94983478a6ce5fd8f [file] [log] [blame]
Tomi Valkeinen559d6702009-11-03 11:23:50 +02001/*
2 * linux/include/asm-arm/arch-omap/display.h
3 *
4 * Copyright (C) 2008 Nokia Corporation
5 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef __ASM_ARCH_OMAP_DISPLAY_H
21#define __ASM_ARCH_OMAP_DISPLAY_H
22
23#include <linux/list.h>
24#include <linux/kobject.h>
25#include <linux/device.h>
Sumit Semwalb7ee79a2011-01-24 06:21:54 +000026#include <linux/platform_device.h>
Tomi Valkeinen559d6702009-11-03 11:23:50 +020027#include <asm/atomic.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)
Sumit Semwal2a205f32010-12-02 11:27:12 +000046#define DISPC_IRQ_SYNC_LOST2 (1 << 17)
47#define DISPC_IRQ_VSYNC2 (1 << 18)
48#define DISPC_IRQ_ACBIAS_COUNT_STAT2 (1 << 21)
49#define DISPC_IRQ_FRAMEDONE2 (1 << 22)
Tomi Valkeinen559d6702009-11-03 11:23:50 +020050
51struct omap_dss_device;
52struct omap_overlay_manager;
53
54enum omap_display_type {
55 OMAP_DISPLAY_TYPE_NONE = 0,
56 OMAP_DISPLAY_TYPE_DPI = 1 << 0,
57 OMAP_DISPLAY_TYPE_DBI = 1 << 1,
58 OMAP_DISPLAY_TYPE_SDI = 1 << 2,
59 OMAP_DISPLAY_TYPE_DSI = 1 << 3,
60 OMAP_DISPLAY_TYPE_VENC = 1 << 4,
61};
62
63enum omap_plane {
64 OMAP_DSS_GFX = 0,
65 OMAP_DSS_VIDEO1 = 1,
66 OMAP_DSS_VIDEO2 = 2
67};
68
69enum omap_channel {
70 OMAP_DSS_CHANNEL_LCD = 0,
71 OMAP_DSS_CHANNEL_DIGIT = 1,
Sumit Semwal8613b002010-12-02 11:27:09 +000072 OMAP_DSS_CHANNEL_LCD2 = 2,
Tomi Valkeinen559d6702009-11-03 11:23:50 +020073};
74
75enum omap_color_mode {
76 OMAP_DSS_COLOR_CLUT1 = 1 << 0, /* BITMAP 1 */
77 OMAP_DSS_COLOR_CLUT2 = 1 << 1, /* BITMAP 2 */
78 OMAP_DSS_COLOR_CLUT4 = 1 << 2, /* BITMAP 4 */
79 OMAP_DSS_COLOR_CLUT8 = 1 << 3, /* BITMAP 8 */
80 OMAP_DSS_COLOR_RGB12U = 1 << 4, /* RGB12, 16-bit container */
81 OMAP_DSS_COLOR_ARGB16 = 1 << 5, /* ARGB16 */
82 OMAP_DSS_COLOR_RGB16 = 1 << 6, /* RGB16 */
83 OMAP_DSS_COLOR_RGB24U = 1 << 7, /* RGB24, 32-bit container */
84 OMAP_DSS_COLOR_RGB24P = 1 << 8, /* RGB24, 24-bit container */
85 OMAP_DSS_COLOR_YUV2 = 1 << 9, /* YUV2 4:2:2 co-sited */
86 OMAP_DSS_COLOR_UYVY = 1 << 10, /* UYVY 4:2:2 co-sited */
87 OMAP_DSS_COLOR_ARGB32 = 1 << 11, /* ARGB32 */
88 OMAP_DSS_COLOR_RGBA32 = 1 << 12, /* RGBA32 */
89 OMAP_DSS_COLOR_RGBX32 = 1 << 13, /* RGBx32 */
Tomi Valkeinen559d6702009-11-03 11:23:50 +020090};
91
92enum omap_lcd_display_type {
93 OMAP_DSS_LCD_DISPLAY_STN,
94 OMAP_DSS_LCD_DISPLAY_TFT,
95};
96
97enum omap_dss_load_mode {
98 OMAP_DSS_LOAD_CLUT_AND_FRAME = 0,
99 OMAP_DSS_LOAD_CLUT_ONLY = 1,
100 OMAP_DSS_LOAD_FRAME_ONLY = 2,
101 OMAP_DSS_LOAD_CLUT_ONCE_FRAME = 3,
102};
103
104enum omap_dss_trans_key_type {
105 OMAP_DSS_COLOR_KEY_GFX_DST = 0,
106 OMAP_DSS_COLOR_KEY_VID_SRC = 1,
107};
108
109enum omap_rfbi_te_mode {
110 OMAP_DSS_RFBI_TE_MODE_1 = 1,
111 OMAP_DSS_RFBI_TE_MODE_2 = 2,
112};
113
114enum omap_panel_config {
115 OMAP_DSS_LCD_IVS = 1<<0,
116 OMAP_DSS_LCD_IHS = 1<<1,
117 OMAP_DSS_LCD_IPC = 1<<2,
118 OMAP_DSS_LCD_IEO = 1<<3,
119 OMAP_DSS_LCD_RF = 1<<4,
120 OMAP_DSS_LCD_ONOFF = 1<<5,
121
122 OMAP_DSS_LCD_TFT = 1<<20,
123};
124
125enum omap_dss_venc_type {
126 OMAP_DSS_VENC_TYPE_COMPOSITE,
127 OMAP_DSS_VENC_TYPE_SVIDEO,
128};
129
130enum omap_display_caps {
131 OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE = 1 << 0,
132 OMAP_DSS_DISPLAY_CAP_TEAR_ELIM = 1 << 1,
133};
134
135enum omap_dss_update_mode {
136 OMAP_DSS_UPDATE_DISABLED = 0,
137 OMAP_DSS_UPDATE_AUTO,
138 OMAP_DSS_UPDATE_MANUAL,
139};
140
141enum omap_dss_display_state {
142 OMAP_DSS_DISPLAY_DISABLED = 0,
143 OMAP_DSS_DISPLAY_ACTIVE,
144 OMAP_DSS_DISPLAY_SUSPENDED,
145};
146
147/* XXX perhaps this should be removed */
148enum omap_dss_overlay_managers {
149 OMAP_DSS_OVL_MGR_LCD,
150 OMAP_DSS_OVL_MGR_TV,
Sumit Semwal8613b002010-12-02 11:27:09 +0000151 OMAP_DSS_OVL_MGR_LCD2,
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200152};
153
154enum omap_dss_rotation_type {
155 OMAP_DSS_ROT_DMA = 0,
156 OMAP_DSS_ROT_VRFB = 1,
157};
158
159/* clockwise rotation angle */
160enum omap_dss_rotation_angle {
161 OMAP_DSS_ROT_0 = 0,
162 OMAP_DSS_ROT_90 = 1,
163 OMAP_DSS_ROT_180 = 2,
164 OMAP_DSS_ROT_270 = 3,
165};
166
167enum omap_overlay_caps {
168 OMAP_DSS_OVL_CAP_SCALE = 1 << 0,
169 OMAP_DSS_OVL_CAP_DISPC = 1 << 1,
170};
171
172enum omap_overlay_manager_caps {
173 OMAP_DSS_OVL_MGR_CAP_DISPC = 1 << 0,
174};
175
176/* RFBI */
177
178struct rfbi_timings {
179 int cs_on_time;
180 int cs_off_time;
181 int we_on_time;
182 int we_off_time;
183 int re_on_time;
184 int re_off_time;
185 int we_cycle_time;
186 int re_cycle_time;
187 int cs_pulse_width;
188 int access_time;
189
190 int clk_div;
191
192 u32 tim[5]; /* set by rfbi_convert_timings() */
193
194 int converted;
195};
196
197void omap_rfbi_write_command(const void *buf, u32 len);
198void omap_rfbi_read_data(void *buf, u32 len);
199void omap_rfbi_write_data(const void *buf, u32 len);
200void omap_rfbi_write_pixels(const void __iomem *buf, int scr_width,
201 u16 x, u16 y,
202 u16 w, u16 h);
203int omap_rfbi_enable_te(bool enable, unsigned line);
204int omap_rfbi_setup_te(enum omap_rfbi_te_mode mode,
205 unsigned hs_pulse_time, unsigned vs_pulse_time,
206 int hs_pol_inv, int vs_pol_inv, int extif_div);
207
208/* DSI */
209void dsi_bus_lock(void);
210void dsi_bus_unlock(void);
211int dsi_vc_dcs_write(int channel, u8 *data, int len);
Tomi Valkeinen828c48f2009-12-16 14:53:15 +0200212int dsi_vc_dcs_write_0(int channel, u8 dcs_cmd);
213int dsi_vc_dcs_write_1(int channel, u8 dcs_cmd, u8 param);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200214int dsi_vc_dcs_write_nosync(int channel, u8 *data, int len);
215int dsi_vc_dcs_read(int channel, u8 dcs_cmd, u8 *buf, int buflen);
Tomi Valkeinen828c48f2009-12-16 14:53:15 +0200216int dsi_vc_dcs_read_1(int channel, u8 dcs_cmd, u8 *data);
Tomi Valkeinen0c244f72010-06-09 15:19:29 +0300217int dsi_vc_dcs_read_2(int channel, u8 dcs_cmd, u8 *data1, u8 *data2);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200218int dsi_vc_set_max_rx_packet_size(int channel, u16 len);
219int dsi_vc_send_null(int channel);
220int dsi_vc_send_bta_sync(int channel);
221
222/* Board specific data */
223struct omap_dss_board_info {
224 int (*get_last_off_on_transaction_id)(struct device *dev);
225 int num_devices;
226 struct omap_dss_device **devices;
227 struct omap_dss_device *default_device;
228};
229
Sumit Semwalb7ee79a2011-01-24 06:21:54 +0000230#if defined(CONFIG_OMAP2_DSS_MODULE) || defined(CONFIG_OMAP2_DSS)
231/* Init with the board info */
232extern int omap_display_init(struct omap_dss_board_info *board_data);
233#else
234static inline int omap_display_init(struct omap_dss_board_info *board_data)
235{
236 return 0;
237}
238#endif
239
Senthilvadivu Guruswamycf07f532011-01-24 06:21:56 +0000240struct omap_display_platform_data {
241 struct omap_dss_board_info *board_data;
242 /* TODO: Additional members to be added when PM is considered */
Semwal, Sumitfd4b34f2011-03-01 02:42:13 -0600243
244 bool (*opt_clock_available)(const char *clk_role);
Senthilvadivu Guruswamycf07f532011-01-24 06:21:56 +0000245};
246
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200247struct omap_video_timings {
248 /* Unit: pixels */
249 u16 x_res;
250 /* Unit: pixels */
251 u16 y_res;
252 /* Unit: KHz */
253 u32 pixel_clock;
254 /* Unit: pixel clocks */
255 u16 hsw; /* Horizontal synchronization pulse width */
256 /* Unit: pixel clocks */
257 u16 hfp; /* Horizontal front porch */
258 /* Unit: pixel clocks */
259 u16 hbp; /* Horizontal back porch */
260 /* Unit: line clocks */
261 u16 vsw; /* Vertical synchronization pulse width */
262 /* Unit: line clocks */
263 u16 vfp; /* Vertical front porch */
264 /* Unit: line clocks */
265 u16 vbp; /* Vertical back porch */
266};
267
268#ifdef CONFIG_OMAP2_DSS_VENC
269/* Hardcoded timings for tv modes. Venc only uses these to
270 * identify the mode, and does not actually use the configs
271 * itself. However, the configs should be something that
272 * a normal monitor can also show */
Tobias Klauser5a1819e2010-05-20 17:12:52 +0200273extern const struct omap_video_timings omap_dss_pal_timings;
274extern const struct omap_video_timings omap_dss_ntsc_timings;
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200275#endif
276
277struct omap_overlay_info {
278 bool enabled;
279
280 u32 paddr;
281 void __iomem *vaddr;
282 u16 screen_width;
283 u16 width;
284 u16 height;
285 enum omap_color_mode color_mode;
286 u8 rotation;
287 enum omap_dss_rotation_type rotation_type;
288 bool mirror;
289
290 u16 pos_x;
291 u16 pos_y;
292 u16 out_width; /* if 0, out_width == width */
293 u16 out_height; /* if 0, out_height == height */
294 u8 global_alpha;
Rajkumar Nfd28a392010-11-04 12:28:42 +0100295 u8 pre_mult_alpha;
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200296};
297
298struct omap_overlay {
299 struct kobject kobj;
300 struct list_head list;
301
302 /* static fields */
303 const char *name;
304 int id;
305 enum omap_color_mode supported_modes;
306 enum omap_overlay_caps caps;
307
308 /* dynamic fields */
309 struct omap_overlay_manager *manager;
310 struct omap_overlay_info info;
311
312 /* if true, info has been changed, but not applied() yet */
313 bool info_dirty;
314
315 int (*set_manager)(struct omap_overlay *ovl,
316 struct omap_overlay_manager *mgr);
317 int (*unset_manager)(struct omap_overlay *ovl);
318
319 int (*set_overlay_info)(struct omap_overlay *ovl,
320 struct omap_overlay_info *info);
321 void (*get_overlay_info)(struct omap_overlay *ovl,
322 struct omap_overlay_info *info);
323
324 int (*wait_for_go)(struct omap_overlay *ovl);
325};
326
327struct omap_overlay_manager_info {
328 u32 default_color;
329
330 enum omap_dss_trans_key_type trans_key_type;
331 u32 trans_key;
332 bool trans_enabled;
333
334 bool alpha_enabled;
335};
336
337struct omap_overlay_manager {
338 struct kobject kobj;
339 struct list_head list;
340
341 /* static fields */
342 const char *name;
343 int id;
344 enum omap_overlay_manager_caps caps;
345 int num_overlays;
346 struct omap_overlay **overlays;
347 enum omap_display_type supported_displays;
348
349 /* dynamic fields */
350 struct omap_dss_device *device;
351 struct omap_overlay_manager_info info;
352
353 bool device_changed;
354 /* if true, info has been changed but not applied() yet */
355 bool info_dirty;
356
357 int (*set_device)(struct omap_overlay_manager *mgr,
358 struct omap_dss_device *dssdev);
359 int (*unset_device)(struct omap_overlay_manager *mgr);
360
361 int (*set_manager_info)(struct omap_overlay_manager *mgr,
362 struct omap_overlay_manager_info *info);
363 void (*get_manager_info)(struct omap_overlay_manager *mgr,
364 struct omap_overlay_manager_info *info);
365
366 int (*apply)(struct omap_overlay_manager *mgr);
367 int (*wait_for_go)(struct omap_overlay_manager *mgr);
Tomi Valkeinen3f71cbe2010-01-08 17:06:04 +0200368 int (*wait_for_vsync)(struct omap_overlay_manager *mgr);
Tomi Valkeinena2faee82010-01-08 17:14:53 +0200369
370 int (*enable)(struct omap_overlay_manager *mgr);
371 int (*disable)(struct omap_overlay_manager *mgr);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200372};
373
374struct omap_dss_device {
375 struct device dev;
376
377 enum omap_display_type type;
378
Sumit Semwal18faa1b2010-12-02 11:27:14 +0000379 enum omap_channel channel;
380
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200381 union {
382 struct {
383 u8 data_lines;
384 } dpi;
385
386 struct {
387 u8 channel;
388 u8 data_lines;
389 } rfbi;
390
391 struct {
392 u8 datapairs;
393 } sdi;
394
395 struct {
396 u8 clk_lane;
397 u8 clk_pol;
398 u8 data1_lane;
399 u8 data1_pol;
400 u8 data2_lane;
401 u8 data2_pol;
402
403 struct {
404 u16 regn;
405 u16 regm;
Archit Taneja1bb47832011-02-24 14:17:30 +0530406 u16 regm_dispc;
407 u16 regm_dsi;
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200408
409 u16 lp_clk_div;
410
411 u16 lck_div;
412 u16 pck_div;
413 } div;
414
415 bool ext_te;
416 u8 ext_te_gpio;
417 } dsi;
418
419 struct {
420 enum omap_dss_venc_type type;
421 bool invert_polarity;
422 } venc;
423 } phy;
424
425 struct {
426 struct omap_video_timings timings;
427
428 int acbi; /* ac-bias pin transitions per interrupt */
429 /* Unit: line clocks */
430 int acb; /* ac-bias pin frequency */
431
432 enum omap_panel_config config;
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200433 } panel;
434
435 struct {
436 u8 pixel_size;
437 struct rfbi_timings rfbi_timings;
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200438 } ctrl;
439
440 int reset_gpio;
441
442 int max_backlight_level;
443
444 const char *name;
445
446 /* used to match device to driver */
447 const char *driver_name;
448
449 void *data;
450
451 struct omap_dss_driver *driver;
452
453 /* helper variable for driver suspend/resume */
454 bool activate_after_resume;
455
456 enum omap_display_caps caps;
457
458 struct omap_overlay_manager *manager;
459
460 enum omap_dss_display_state state;
461
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200462 /* platform specific */
463 int (*platform_enable)(struct omap_dss_device *dssdev);
464 void (*platform_disable)(struct omap_dss_device *dssdev);
465 int (*set_backlight)(struct omap_dss_device *dssdev, int level);
466 int (*get_backlight)(struct omap_dss_device *dssdev);
467};
468
469struct omap_dss_driver {
470 struct device_driver driver;
471
472 int (*probe)(struct omap_dss_device *);
473 void (*remove)(struct omap_dss_device *);
474
475 int (*enable)(struct omap_dss_device *display);
476 void (*disable)(struct omap_dss_device *display);
477 int (*suspend)(struct omap_dss_device *display);
478 int (*resume)(struct omap_dss_device *display);
479 int (*run_test)(struct omap_dss_device *display, int test);
480
Tomi Valkeinen446f7bf2010-01-11 16:12:31 +0200481 int (*set_update_mode)(struct omap_dss_device *dssdev,
482 enum omap_dss_update_mode);
483 enum omap_dss_update_mode (*get_update_mode)(
484 struct omap_dss_device *dssdev);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200485
Tomi Valkeinen18946f62010-01-12 14:16:41 +0200486 int (*update)(struct omap_dss_device *dssdev,
487 u16 x, u16 y, u16 w, u16 h);
488 int (*sync)(struct omap_dss_device *dssdev);
489
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200490 int (*enable_te)(struct omap_dss_device *dssdev, bool enable);
Tomi Valkeinen225b6502010-01-11 15:11:01 +0200491 int (*get_te)(struct omap_dss_device *dssdev);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200492
493 u8 (*get_rotate)(struct omap_dss_device *dssdev);
494 int (*set_rotate)(struct omap_dss_device *dssdev, u8 rotate);
495
496 bool (*get_mirror)(struct omap_dss_device *dssdev);
497 int (*set_mirror)(struct omap_dss_device *dssdev, bool enable);
498
499 int (*memory_read)(struct omap_dss_device *dssdev,
500 void *buf, size_t size,
501 u16 x, u16 y, u16 w, u16 h);
Tomi Valkeinen96adcec2010-01-11 13:54:33 +0200502
503 void (*get_resolution)(struct omap_dss_device *dssdev,
504 u16 *xres, u16 *yres);
Tomi Valkeinena2699502010-01-11 14:33:40 +0200505 int (*get_recommended_bpp)(struct omap_dss_device *dssdev);
Tomi Valkeinen36511312010-01-19 15:53:16 +0200506
Tomi Valkeinen69b20482010-01-20 12:11:25 +0200507 int (*check_timings)(struct omap_dss_device *dssdev,
508 struct omap_video_timings *timings);
509 void (*set_timings)(struct omap_dss_device *dssdev,
510 struct omap_video_timings *timings);
511 void (*get_timings)(struct omap_dss_device *dssdev,
512 struct omap_video_timings *timings);
513
Tomi Valkeinen36511312010-01-19 15:53:16 +0200514 int (*set_wss)(struct omap_dss_device *dssdev, u32 wss);
515 u32 (*get_wss)(struct omap_dss_device *dssdev);
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200516};
517
518int omap_dss_register_driver(struct omap_dss_driver *);
519void omap_dss_unregister_driver(struct omap_dss_driver *);
520
521int omap_dss_register_device(struct omap_dss_device *);
522void omap_dss_unregister_device(struct omap_dss_device *);
523
524void omap_dss_get_device(struct omap_dss_device *dssdev);
525void omap_dss_put_device(struct omap_dss_device *dssdev);
526#define for_each_dss_dev(d) while ((d = omap_dss_get_next_device(d)) != NULL)
527struct omap_dss_device *omap_dss_get_next_device(struct omap_dss_device *from);
528struct omap_dss_device *omap_dss_find_device(void *data,
529 int (*match)(struct omap_dss_device *dssdev, void *data));
530
531int omap_dss_start_device(struct omap_dss_device *dssdev);
532void omap_dss_stop_device(struct omap_dss_device *dssdev);
533
534int omap_dss_get_num_overlay_managers(void);
535struct omap_overlay_manager *omap_dss_get_overlay_manager(int num);
536
537int omap_dss_get_num_overlays(void);
538struct omap_overlay *omap_dss_get_overlay(int num);
539
Tomi Valkeinen96adcec2010-01-11 13:54:33 +0200540void omapdss_default_get_resolution(struct omap_dss_device *dssdev,
541 u16 *xres, u16 *yres);
Tomi Valkeinena2699502010-01-11 14:33:40 +0200542int omapdss_default_get_recommended_bpp(struct omap_dss_device *dssdev);
543
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200544typedef void (*omap_dispc_isr_t) (void *arg, u32 mask);
545int omap_dispc_register_isr(omap_dispc_isr_t isr, void *arg, u32 mask);
546int omap_dispc_unregister_isr(omap_dispc_isr_t isr, void *arg, u32 mask);
547
548int omap_dispc_wait_for_irq_timeout(u32 irqmask, unsigned long timeout);
549int omap_dispc_wait_for_irq_interruptible_timeout(u32 irqmask,
550 unsigned long timeout);
551
552#define to_dss_driver(x) container_of((x), struct omap_dss_driver, driver)
553#define to_dss_device(x) container_of((x), struct omap_dss_device, dev)
554
Tomi Valkeinen61140c92010-01-12 16:00:30 +0200555void omapdss_dsi_vc_enable_hs(int channel, bool enable);
Tomi Valkeinen225b6502010-01-11 15:11:01 +0200556int omapdss_dsi_enable_te(struct omap_dss_device *dssdev, bool enable);
Tomi Valkeinen61140c92010-01-12 16:00:30 +0200557
Tomi Valkeinen18946f62010-01-12 14:16:41 +0200558int omap_dsi_prepare_update(struct omap_dss_device *dssdev,
Tomi Valkeinen26a8c252010-06-09 15:31:34 +0300559 u16 *x, u16 *y, u16 *w, u16 *h,
560 bool enlarge_update_area);
Tomi Valkeinen18946f62010-01-12 14:16:41 +0200561int omap_dsi_update(struct omap_dss_device *dssdev,
562 int channel,
563 u16 x, u16 y, u16 w, u16 h,
564 void (*callback)(int, void *), void *data);
Archit Taneja5ee3c142011-03-02 12:35:53 +0530565int omap_dsi_request_vc(struct omap_dss_device *dssdev, int *channel);
566int omap_dsi_set_vc_id(struct omap_dss_device *dssdev, int channel, int vc_id);
567void omap_dsi_release_vc(struct omap_dss_device *dssdev, int channel);
Tomi Valkeinen18946f62010-01-12 14:16:41 +0200568
Tomi Valkeinen37ac60e2010-01-12 15:12:07 +0200569int omapdss_dsi_display_enable(struct omap_dss_device *dssdev);
570void omapdss_dsi_display_disable(struct omap_dss_device *dssdev);
571
572int omapdss_dpi_display_enable(struct omap_dss_device *dssdev);
573void omapdss_dpi_display_disable(struct omap_dss_device *dssdev);
Tomi Valkeinen69b20482010-01-20 12:11:25 +0200574void dpi_set_timings(struct omap_dss_device *dssdev,
575 struct omap_video_timings *timings);
576int dpi_check_timings(struct omap_dss_device *dssdev,
577 struct omap_video_timings *timings);
Tomi Valkeinen37ac60e2010-01-12 15:12:07 +0200578
579int omapdss_sdi_display_enable(struct omap_dss_device *dssdev);
580void omapdss_sdi_display_disable(struct omap_dss_device *dssdev);
581
582int omapdss_rfbi_display_enable(struct omap_dss_device *dssdev);
583void omapdss_rfbi_display_disable(struct omap_dss_device *dssdev);
Tomi Valkeinen18946f62010-01-12 14:16:41 +0200584int omap_rfbi_prepare_update(struct omap_dss_device *dssdev,
585 u16 *x, u16 *y, u16 *w, u16 *h);
586int omap_rfbi_update(struct omap_dss_device *dssdev,
587 u16 x, u16 y, u16 w, u16 h,
588 void (*callback)(void *), void *data);
589
Tomi Valkeinen559d6702009-11-03 11:23:50 +0200590#endif