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