Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1 | /* |
| 2 | * hdmi.c |
| 3 | * |
| 4 | * HDMI interface DSS driver setting for TI's OMAP4 family of processor. |
| 5 | * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com/ |
| 6 | * Authors: Yong Zhi |
| 7 | * Mythri pk <mythripk@ti.com> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify it |
| 10 | * under the terms of the GNU General Public License version 2 as published by |
| 11 | * the Free Software Foundation. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 14 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 15 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 16 | * more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along with |
| 19 | * this program. If not, see <http://www.gnu.org/licenses/>. |
| 20 | */ |
| 21 | |
| 22 | #define DSS_SUBSYS_NAME "HDMI" |
| 23 | |
| 24 | #include <linux/kernel.h> |
| 25 | #include <linux/module.h> |
| 26 | #include <linux/err.h> |
| 27 | #include <linux/io.h> |
| 28 | #include <linux/interrupt.h> |
| 29 | #include <linux/mutex.h> |
| 30 | #include <linux/delay.h> |
| 31 | #include <linux/string.h> |
Tomi Valkeinen | 24e6289 | 2011-05-23 11:51:18 +0300 | [diff] [blame] | 32 | #include <linux/platform_device.h> |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 33 | #include <linux/pm_runtime.h> |
| 34 | #include <linux/clk.h> |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 35 | #include <linux/gpio.h> |
Tomi Valkeinen | 1748694 | 2012-08-15 15:55:04 +0300 | [diff] [blame] | 36 | #include <linux/regulator/consumer.h> |
Tomi Valkeinen | a0b38cc | 2011-05-11 14:05:07 +0300 | [diff] [blame] | 37 | #include <video/omapdss.h> |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 38 | |
Mythri P K | 94c5298 | 2011-09-08 19:06:21 +0530 | [diff] [blame] | 39 | #include "ti_hdmi.h" |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 40 | #include "dss.h" |
Ricardo Neri | ad44cc3 | 2011-05-18 22:31:56 -0500 | [diff] [blame] | 41 | #include "dss_features.h" |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 42 | |
Mythri P K | 95a8aeb | 2011-09-08 19:06:18 +0530 | [diff] [blame] | 43 | #define HDMI_WP 0x0 |
| 44 | #define HDMI_CORE_SYS 0x400 |
| 45 | #define HDMI_CORE_AV 0x900 |
| 46 | #define HDMI_PLLCTRL 0x200 |
| 47 | #define HDMI_PHY 0x300 |
| 48 | |
Mythri P K | 7c1f1ec | 2011-09-08 19:06:22 +0530 | [diff] [blame] | 49 | /* HDMI EDID Length move this */ |
| 50 | #define HDMI_EDID_MAX_LENGTH 256 |
| 51 | #define EDID_TIMING_DESCRIPTOR_SIZE 0x12 |
| 52 | #define EDID_DESCRIPTOR_BLOCK0_ADDRESS 0x36 |
| 53 | #define EDID_DESCRIPTOR_BLOCK1_ADDRESS 0x80 |
| 54 | #define EDID_SIZE_BLOCK0_TIMING_DESCRIPTOR 4 |
| 55 | #define EDID_SIZE_BLOCK1_TIMING_DESCRIPTOR 4 |
| 56 | |
Tomi Valkeinen | b44e458 | 2011-08-22 13:16:24 +0300 | [diff] [blame] | 57 | #define HDMI_DEFAULT_REGN 16 |
Tomi Valkeinen | 8d88767a | 2011-08-22 13:02:52 +0300 | [diff] [blame] | 58 | #define HDMI_DEFAULT_REGM2 1 |
| 59 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 60 | static struct { |
| 61 | struct mutex lock; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 62 | struct platform_device *pdev; |
Ricardo Neri | 66a06b0 | 2012-11-06 00:19:14 -0600 | [diff] [blame] | 63 | |
Mythri P K | 95a8aeb | 2011-09-08 19:06:18 +0530 | [diff] [blame] | 64 | struct hdmi_ip_data ip_data; |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 65 | |
| 66 | struct clk *sys_clk; |
Tomi Valkeinen | 1748694 | 2012-08-15 15:55:04 +0300 | [diff] [blame] | 67 | struct regulator *vdda_hdmi_dac_reg; |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 68 | |
| 69 | int ct_cp_hpd_gpio; |
| 70 | int ls_oe_gpio; |
| 71 | int hpd_gpio; |
Archit Taneja | 81b87f5 | 2012-09-26 16:30:49 +0530 | [diff] [blame] | 72 | |
| 73 | struct omap_dss_output output; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 74 | } hdmi; |
| 75 | |
| 76 | /* |
| 77 | * Logic for the below structure : |
| 78 | * user enters the CEA or VESA timings by specifying the HDMI/DVI code. |
| 79 | * There is a correspondence between CEA/VESA timing and code, please |
| 80 | * refer to section 6.3 in HDMI 1.3 specification for timing code. |
| 81 | * |
| 82 | * In the below structure, cea_vesa_timings corresponds to all OMAP4 |
| 83 | * supported CEA and VESA timing values.code_cea corresponds to the CEA |
| 84 | * code, It is used to get the timing from cea_vesa_timing array.Similarly |
| 85 | * with code_vesa. Code_index is used for back mapping, that is once EDID |
| 86 | * is read from the TV, EDID is parsed to find the timing values and then |
| 87 | * map it to corresponding CEA or VESA index. |
| 88 | */ |
| 89 | |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 90 | static const struct hdmi_config cea_timings[] = { |
Archit Taneja | cc937e5 | 2012-06-24 13:08:10 +0530 | [diff] [blame] | 91 | { |
| 92 | { 640, 480, 25200, 96, 16, 48, 2, 10, 33, |
| 93 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_LOW, |
| 94 | false, }, |
| 95 | { 1, HDMI_HDMI }, |
| 96 | }, |
| 97 | { |
| 98 | { 720, 480, 27027, 62, 16, 60, 6, 9, 30, |
| 99 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_LOW, |
| 100 | false, }, |
| 101 | { 2, HDMI_HDMI }, |
| 102 | }, |
| 103 | { |
| 104 | { 1280, 720, 74250, 40, 110, 220, 5, 5, 20, |
| 105 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 106 | false, }, |
| 107 | { 4, HDMI_HDMI }, |
| 108 | }, |
| 109 | { |
| 110 | { 1920, 540, 74250, 44, 88, 148, 5, 2, 15, |
| 111 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 112 | true, }, |
| 113 | { 5, HDMI_HDMI }, |
| 114 | }, |
| 115 | { |
| 116 | { 1440, 240, 27027, 124, 38, 114, 3, 4, 15, |
| 117 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_LOW, |
| 118 | true, }, |
| 119 | { 6, HDMI_HDMI }, |
| 120 | }, |
| 121 | { |
| 122 | { 1920, 1080, 148500, 44, 88, 148, 5, 4, 36, |
| 123 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 124 | false, }, |
| 125 | { 16, HDMI_HDMI }, |
| 126 | }, |
| 127 | { |
| 128 | { 720, 576, 27000, 64, 12, 68, 5, 5, 39, |
| 129 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_LOW, |
| 130 | false, }, |
| 131 | { 17, HDMI_HDMI }, |
| 132 | }, |
| 133 | { |
| 134 | { 1280, 720, 74250, 40, 440, 220, 5, 5, 20, |
| 135 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 136 | false, }, |
| 137 | { 19, HDMI_HDMI }, |
| 138 | }, |
| 139 | { |
| 140 | { 1920, 540, 74250, 44, 528, 148, 5, 2, 15, |
| 141 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 142 | true, }, |
| 143 | { 20, HDMI_HDMI }, |
| 144 | }, |
| 145 | { |
| 146 | { 1440, 288, 27000, 126, 24, 138, 3, 2, 19, |
| 147 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_LOW, |
| 148 | true, }, |
| 149 | { 21, HDMI_HDMI }, |
| 150 | }, |
| 151 | { |
| 152 | { 1440, 576, 54000, 128, 24, 136, 5, 5, 39, |
| 153 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_LOW, |
| 154 | false, }, |
| 155 | { 29, HDMI_HDMI }, |
| 156 | }, |
| 157 | { |
| 158 | { 1920, 1080, 148500, 44, 528, 148, 5, 4, 36, |
| 159 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 160 | false, }, |
| 161 | { 31, HDMI_HDMI }, |
| 162 | }, |
| 163 | { |
| 164 | { 1920, 1080, 74250, 44, 638, 148, 5, 4, 36, |
| 165 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 166 | false, }, |
| 167 | { 32, HDMI_HDMI }, |
| 168 | }, |
| 169 | { |
| 170 | { 2880, 480, 108108, 248, 64, 240, 6, 9, 30, |
| 171 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_LOW, |
| 172 | false, }, |
| 173 | { 35, HDMI_HDMI }, |
| 174 | }, |
| 175 | { |
| 176 | { 2880, 576, 108000, 256, 48, 272, 5, 5, 39, |
| 177 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_LOW, |
| 178 | false, }, |
| 179 | { 37, HDMI_HDMI }, |
| 180 | }, |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 181 | }; |
Archit Taneja | cc937e5 | 2012-06-24 13:08:10 +0530 | [diff] [blame] | 182 | |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 183 | static const struct hdmi_config vesa_timings[] = { |
Mythri P K | a05ce78 | 2012-01-06 17:52:08 +0530 | [diff] [blame] | 184 | /* VESA From Here */ |
Archit Taneja | cc937e5 | 2012-06-24 13:08:10 +0530 | [diff] [blame] | 185 | { |
| 186 | { 640, 480, 25175, 96, 16, 48, 2, 11, 31, |
| 187 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_LOW, |
| 188 | false, }, |
| 189 | { 4, HDMI_DVI }, |
| 190 | }, |
| 191 | { |
| 192 | { 800, 600, 40000, 128, 40, 88, 4, 1, 23, |
| 193 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 194 | false, }, |
| 195 | { 9, HDMI_DVI }, |
| 196 | }, |
| 197 | { |
| 198 | { 848, 480, 33750, 112, 16, 112, 8, 6, 23, |
| 199 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 200 | false, }, |
| 201 | { 0xE, HDMI_DVI }, |
| 202 | }, |
| 203 | { |
| 204 | { 1280, 768, 79500, 128, 64, 192, 7, 3, 20, |
| 205 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_LOW, |
| 206 | false, }, |
| 207 | { 0x17, HDMI_DVI }, |
| 208 | }, |
| 209 | { |
| 210 | { 1280, 800, 83500, 128, 72, 200, 6, 3, 22, |
| 211 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_LOW, |
| 212 | false, }, |
| 213 | { 0x1C, HDMI_DVI }, |
| 214 | }, |
| 215 | { |
| 216 | { 1360, 768, 85500, 112, 64, 256, 6, 3, 18, |
| 217 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 218 | false, }, |
| 219 | { 0x27, HDMI_DVI }, |
| 220 | }, |
| 221 | { |
| 222 | { 1280, 960, 108000, 112, 96, 312, 3, 1, 36, |
| 223 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 224 | false, }, |
| 225 | { 0x20, HDMI_DVI }, |
| 226 | }, |
| 227 | { |
| 228 | { 1280, 1024, 108000, 112, 48, 248, 3, 1, 38, |
| 229 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 230 | false, }, |
| 231 | { 0x23, HDMI_DVI }, |
| 232 | }, |
| 233 | { |
| 234 | { 1024, 768, 65000, 136, 24, 160, 6, 3, 29, |
| 235 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_LOW, |
| 236 | false, }, |
| 237 | { 0x10, HDMI_DVI }, |
| 238 | }, |
| 239 | { |
| 240 | { 1400, 1050, 121750, 144, 88, 232, 4, 3, 32, |
| 241 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_LOW, |
| 242 | false, }, |
| 243 | { 0x2A, HDMI_DVI }, |
| 244 | }, |
| 245 | { |
| 246 | { 1440, 900, 106500, 152, 80, 232, 6, 3, 25, |
| 247 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_LOW, |
| 248 | false, }, |
| 249 | { 0x2F, HDMI_DVI }, |
| 250 | }, |
| 251 | { |
| 252 | { 1680, 1050, 146250, 176 , 104, 280, 6, 3, 30, |
| 253 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_LOW, |
| 254 | false, }, |
| 255 | { 0x3A, HDMI_DVI }, |
| 256 | }, |
| 257 | { |
| 258 | { 1366, 768, 85500, 143, 70, 213, 3, 3, 24, |
| 259 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 260 | false, }, |
| 261 | { 0x51, HDMI_DVI }, |
| 262 | }, |
| 263 | { |
| 264 | { 1920, 1080, 148500, 44, 148, 80, 5, 4, 36, |
| 265 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 266 | false, }, |
| 267 | { 0x52, HDMI_DVI }, |
| 268 | }, |
| 269 | { |
| 270 | { 1280, 768, 68250, 32, 48, 80, 7, 3, 12, |
| 271 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_HIGH, |
| 272 | false, }, |
| 273 | { 0x16, HDMI_DVI }, |
| 274 | }, |
| 275 | { |
| 276 | { 1400, 1050, 101000, 32, 48, 80, 4, 3, 23, |
| 277 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_HIGH, |
| 278 | false, }, |
| 279 | { 0x29, HDMI_DVI }, |
| 280 | }, |
| 281 | { |
| 282 | { 1680, 1050, 119000, 32, 48, 80, 6, 3, 21, |
| 283 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_HIGH, |
| 284 | false, }, |
| 285 | { 0x39, HDMI_DVI }, |
| 286 | }, |
| 287 | { |
| 288 | { 1280, 800, 79500, 32, 48, 80, 6, 3, 14, |
| 289 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_HIGH, |
| 290 | false, }, |
| 291 | { 0x1B, HDMI_DVI }, |
| 292 | }, |
| 293 | { |
| 294 | { 1280, 720, 74250, 40, 110, 220, 5, 5, 20, |
| 295 | OMAPDSS_SIG_ACTIVE_HIGH, OMAPDSS_SIG_ACTIVE_HIGH, |
| 296 | false, }, |
| 297 | { 0x55, HDMI_DVI }, |
| 298 | }, |
Tomi Valkeinen | 7a7ce2c | 2012-10-24 11:55:39 +0300 | [diff] [blame] | 299 | { |
| 300 | { 1920, 1200, 154000, 32, 48, 80, 6, 3, 26, |
| 301 | OMAPDSS_SIG_ACTIVE_LOW, OMAPDSS_SIG_ACTIVE_HIGH, |
| 302 | false, }, |
| 303 | { 0x44, HDMI_DVI }, |
| 304 | }, |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 305 | }; |
| 306 | |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 307 | static int hdmi_runtime_get(void) |
| 308 | { |
| 309 | int r; |
| 310 | |
| 311 | DSSDBG("hdmi_runtime_get\n"); |
| 312 | |
| 313 | r = pm_runtime_get_sync(&hdmi.pdev->dev); |
| 314 | WARN_ON(r < 0); |
Archit Taneja | a247ce78 | 2012-02-10 11:45:52 +0530 | [diff] [blame] | 315 | if (r < 0) |
Tomi Valkeinen | 852f083 | 2012-02-17 17:58:04 +0200 | [diff] [blame] | 316 | return r; |
Archit Taneja | a247ce78 | 2012-02-10 11:45:52 +0530 | [diff] [blame] | 317 | |
| 318 | return 0; |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | static void hdmi_runtime_put(void) |
| 322 | { |
| 323 | int r; |
| 324 | |
| 325 | DSSDBG("hdmi_runtime_put\n"); |
| 326 | |
Tomi Valkeinen | 0eaf9f5 | 2012-01-23 13:23:08 +0200 | [diff] [blame] | 327 | r = pm_runtime_put_sync(&hdmi.pdev->dev); |
Tomi Valkeinen | 5be3aeb | 2012-06-27 16:37:18 +0300 | [diff] [blame] | 328 | WARN_ON(r < 0 && r != -ENOSYS); |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 329 | } |
| 330 | |
Tomi Valkeinen | 17ae4e8 | 2013-04-26 14:48:43 +0300 | [diff] [blame^] | 331 | static int hdmi_init_display(struct omap_dss_device *dssdev) |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 332 | { |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 333 | int r; |
| 334 | |
| 335 | struct gpio gpios[] = { |
| 336 | { hdmi.ct_cp_hpd_gpio, GPIOF_OUT_INIT_LOW, "hdmi_ct_cp_hpd" }, |
| 337 | { hdmi.ls_oe_gpio, GPIOF_OUT_INIT_LOW, "hdmi_ls_oe" }, |
| 338 | { hdmi.hpd_gpio, GPIOF_DIR_IN, "hdmi_hpd" }, |
| 339 | }; |
| 340 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 341 | DSSDBG("init_display\n"); |
| 342 | |
Tomi Valkeinen | b2c7d54 | 2012-10-18 13:46:29 +0300 | [diff] [blame] | 343 | dss_init_hdmi_ip_ops(&hdmi.ip_data, omapdss_get_version()); |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 344 | |
Tomi Valkeinen | 1748694 | 2012-08-15 15:55:04 +0300 | [diff] [blame] | 345 | if (hdmi.vdda_hdmi_dac_reg == NULL) { |
| 346 | struct regulator *reg; |
| 347 | |
| 348 | reg = devm_regulator_get(&hdmi.pdev->dev, "vdda_hdmi_dac"); |
| 349 | |
Tomi Valkeinen | 76eed4b | 2012-11-05 13:41:25 +0200 | [diff] [blame] | 350 | /* DT HACK: try VDAC to make omapdss work for o4 sdp/panda */ |
| 351 | if (IS_ERR(reg)) |
| 352 | reg = devm_regulator_get(&hdmi.pdev->dev, "VDAC"); |
| 353 | |
Tomi Valkeinen | 1748694 | 2012-08-15 15:55:04 +0300 | [diff] [blame] | 354 | if (IS_ERR(reg)) { |
| 355 | DSSERR("can't get VDDA_HDMI_DAC regulator\n"); |
| 356 | return PTR_ERR(reg); |
| 357 | } |
| 358 | |
| 359 | hdmi.vdda_hdmi_dac_reg = reg; |
| 360 | } |
| 361 | |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 362 | r = gpio_request_array(gpios, ARRAY_SIZE(gpios)); |
| 363 | if (r) |
| 364 | return r; |
| 365 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 366 | return 0; |
| 367 | } |
| 368 | |
Ricardo Neri | 3758476 | 2012-11-06 21:37:14 -0600 | [diff] [blame] | 369 | static void hdmi_uninit_display(struct omap_dss_device *dssdev) |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 370 | { |
| 371 | DSSDBG("uninit_display\n"); |
| 372 | |
| 373 | gpio_free(hdmi.ct_cp_hpd_gpio); |
| 374 | gpio_free(hdmi.ls_oe_gpio); |
| 375 | gpio_free(hdmi.hpd_gpio); |
| 376 | } |
| 377 | |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 378 | static const struct hdmi_config *hdmi_find_timing( |
| 379 | const struct hdmi_config *timings_arr, |
| 380 | int len) |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 381 | { |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 382 | int i; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 383 | |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 384 | for (i = 0; i < len; i++) { |
Mythri P K | 9e4ed60 | 2012-01-06 17:52:10 +0530 | [diff] [blame] | 385 | if (timings_arr[i].cm.code == hdmi.ip_data.cfg.cm.code) |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 386 | return &timings_arr[i]; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 387 | } |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 388 | return NULL; |
| 389 | } |
| 390 | |
| 391 | static const struct hdmi_config *hdmi_get_timings(void) |
| 392 | { |
| 393 | const struct hdmi_config *arr; |
| 394 | int len; |
| 395 | |
Mythri P K | 9e4ed60 | 2012-01-06 17:52:10 +0530 | [diff] [blame] | 396 | if (hdmi.ip_data.cfg.cm.mode == HDMI_DVI) { |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 397 | arr = vesa_timings; |
| 398 | len = ARRAY_SIZE(vesa_timings); |
| 399 | } else { |
| 400 | arr = cea_timings; |
| 401 | len = ARRAY_SIZE(cea_timings); |
| 402 | } |
| 403 | |
| 404 | return hdmi_find_timing(arr, len); |
| 405 | } |
| 406 | |
| 407 | static bool hdmi_timings_compare(struct omap_video_timings *timing1, |
Archit Taneja | cc937e5 | 2012-06-24 13:08:10 +0530 | [diff] [blame] | 408 | const struct omap_video_timings *timing2) |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 409 | { |
| 410 | int timing1_vsync, timing1_hsync, timing2_vsync, timing2_hsync; |
| 411 | |
Tomi Valkeinen | f236b89 | 2012-10-24 11:55:54 +0300 | [diff] [blame] | 412 | if ((DIV_ROUND_CLOSEST(timing2->pixel_clock, 1000) == |
| 413 | DIV_ROUND_CLOSEST(timing1->pixel_clock, 1000)) && |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 414 | (timing2->x_res == timing1->x_res) && |
| 415 | (timing2->y_res == timing1->y_res)) { |
| 416 | |
| 417 | timing2_hsync = timing2->hfp + timing2->hsw + timing2->hbp; |
| 418 | timing1_hsync = timing1->hfp + timing1->hsw + timing1->hbp; |
| 419 | timing2_vsync = timing2->vfp + timing2->vsw + timing2->vbp; |
| 420 | timing1_vsync = timing2->vfp + timing2->vsw + timing2->vbp; |
| 421 | |
| 422 | DSSDBG("timing1_hsync = %d timing1_vsync = %d"\ |
| 423 | "timing2_hsync = %d timing2_vsync = %d\n", |
| 424 | timing1_hsync, timing1_vsync, |
| 425 | timing2_hsync, timing2_vsync); |
| 426 | |
| 427 | if ((timing1_hsync == timing2_hsync) && |
| 428 | (timing1_vsync == timing2_vsync)) { |
| 429 | return true; |
| 430 | } |
| 431 | } |
| 432 | return false; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | static struct hdmi_cm hdmi_get_code(struct omap_video_timings *timing) |
| 436 | { |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 437 | int i; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 438 | struct hdmi_cm cm = {-1}; |
| 439 | DSSDBG("hdmi_get_code\n"); |
| 440 | |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 441 | for (i = 0; i < ARRAY_SIZE(cea_timings); i++) { |
| 442 | if (hdmi_timings_compare(timing, &cea_timings[i].timings)) { |
| 443 | cm = cea_timings[i].cm; |
| 444 | goto end; |
| 445 | } |
| 446 | } |
| 447 | for (i = 0; i < ARRAY_SIZE(vesa_timings); i++) { |
| 448 | if (hdmi_timings_compare(timing, &vesa_timings[i].timings)) { |
| 449 | cm = vesa_timings[i].cm; |
| 450 | goto end; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 451 | } |
| 452 | } |
| 453 | |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 454 | end: return cm; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 455 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 456 | } |
| 457 | |
Archit Taneja | c3dc6a7 | 2011-09-13 18:28:41 +0530 | [diff] [blame] | 458 | unsigned long hdmi_get_pixel_clock(void) |
| 459 | { |
| 460 | /* HDMI Pixel Clock in Mhz */ |
Mythri P K | a05ce78 | 2012-01-06 17:52:08 +0530 | [diff] [blame] | 461 | return hdmi.ip_data.cfg.timings.pixel_clock * 1000; |
Archit Taneja | c3dc6a7 | 2011-09-13 18:28:41 +0530 | [diff] [blame] | 462 | } |
| 463 | |
Archit Taneja | 6cb07b2 | 2011-04-12 13:52:25 +0530 | [diff] [blame] | 464 | static void hdmi_compute_pll(struct omap_dss_device *dssdev, int phy, |
| 465 | struct hdmi_pll_info *pi) |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 466 | { |
Archit Taneja | 6cb07b2 | 2011-04-12 13:52:25 +0530 | [diff] [blame] | 467 | unsigned long clkin, refclk; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 468 | u32 mf; |
| 469 | |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 470 | clkin = clk_get_rate(hdmi.sys_clk) / 10000; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 471 | /* |
| 472 | * Input clock is predivided by N + 1 |
| 473 | * out put of which is reference clk |
| 474 | */ |
Tomi Valkeinen | 4fdfdf0 | 2013-02-12 15:15:21 +0200 | [diff] [blame] | 475 | |
| 476 | pi->regn = HDMI_DEFAULT_REGN; |
Tomi Valkeinen | 8d88767a | 2011-08-22 13:02:52 +0300 | [diff] [blame] | 477 | |
Tomi Valkeinen | b44e458 | 2011-08-22 13:16:24 +0300 | [diff] [blame] | 478 | refclk = clkin / pi->regn; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 479 | |
Tomi Valkeinen | 4fdfdf0 | 2013-02-12 15:15:21 +0200 | [diff] [blame] | 480 | pi->regm2 = HDMI_DEFAULT_REGM2; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 481 | |
| 482 | /* |
Mythri P K | dd2116a | 2012-02-21 12:10:58 +0530 | [diff] [blame] | 483 | * multiplier is pixel_clk/ref_clk |
| 484 | * Multiplying by 100 to avoid fractional part removal |
| 485 | */ |
| 486 | pi->regm = phy * pi->regm2 / refclk; |
| 487 | |
| 488 | /* |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 489 | * fractional multiplier is remainder of the difference between |
| 490 | * multiplier and actual phy(required pixel clock thus should be |
| 491 | * multiplied by 2^18(262144) divided by the reference clock |
| 492 | */ |
Mythri P K | dd2116a | 2012-02-21 12:10:58 +0530 | [diff] [blame] | 493 | mf = (phy - pi->regm / pi->regm2 * refclk) * 262144; |
| 494 | pi->regmf = pi->regm2 * mf / refclk; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 495 | |
| 496 | /* |
| 497 | * Dcofreq should be set to 1 if required pixel clock |
| 498 | * is greater than 1000MHz |
| 499 | */ |
| 500 | pi->dcofreq = phy > 1000 * 100; |
Tomi Valkeinen | b44e458 | 2011-08-22 13:16:24 +0300 | [diff] [blame] | 501 | pi->regsd = ((pi->regm * clkin / 10) / (pi->regn * 250) + 5) / 10; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 502 | |
Mythri P K | 7b27da5 | 2011-09-08 19:06:19 +0530 | [diff] [blame] | 503 | /* Set the reference clock to sysclk reference */ |
| 504 | pi->refsel = HDMI_REFSEL_SYSCLK; |
| 505 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 506 | DSSDBG("M = %d Mf = %d\n", pi->regm, pi->regmf); |
| 507 | DSSDBG("range = %d sd = %d\n", pi->dcofreq, pi->regsd); |
| 508 | } |
| 509 | |
Tomi Valkeinen | bb426fc9 | 2012-10-19 17:42:10 +0300 | [diff] [blame] | 510 | static int hdmi_power_on_core(struct omap_dss_device *dssdev) |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 511 | { |
Mythri P K | 46095b2 | 2012-01-06 17:52:09 +0530 | [diff] [blame] | 512 | int r; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 513 | |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 514 | gpio_set_value(hdmi.ct_cp_hpd_gpio, 1); |
| 515 | gpio_set_value(hdmi.ls_oe_gpio, 1); |
| 516 | |
Tomi Valkeinen | a84b20654b | 2012-04-26 14:58:41 +0300 | [diff] [blame] | 517 | /* wait 300us after CT_CP_HPD for the 5V power output to reach 90% */ |
| 518 | udelay(300); |
| 519 | |
Tomi Valkeinen | 1748694 | 2012-08-15 15:55:04 +0300 | [diff] [blame] | 520 | r = regulator_enable(hdmi.vdda_hdmi_dac_reg); |
| 521 | if (r) |
| 522 | goto err_vdac_enable; |
| 523 | |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 524 | r = hdmi_runtime_get(); |
| 525 | if (r) |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 526 | goto err_runtime_get; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 527 | |
Tomi Valkeinen | bb426fc9 | 2012-10-19 17:42:10 +0300 | [diff] [blame] | 528 | /* Make selection of HDMI in DSS */ |
| 529 | dss_select_hdmi_venc_clk_source(DSS_HDMI_M_PCLK); |
| 530 | |
Tomi Valkeinen | bb426fc9 | 2012-10-19 17:42:10 +0300 | [diff] [blame] | 531 | return 0; |
| 532 | |
| 533 | err_runtime_get: |
| 534 | regulator_disable(hdmi.vdda_hdmi_dac_reg); |
| 535 | err_vdac_enable: |
| 536 | gpio_set_value(hdmi.ct_cp_hpd_gpio, 0); |
| 537 | gpio_set_value(hdmi.ls_oe_gpio, 0); |
| 538 | return r; |
| 539 | } |
| 540 | |
| 541 | static void hdmi_power_off_core(struct omap_dss_device *dssdev) |
| 542 | { |
| 543 | hdmi_runtime_put(); |
| 544 | regulator_disable(hdmi.vdda_hdmi_dac_reg); |
| 545 | gpio_set_value(hdmi.ct_cp_hpd_gpio, 0); |
| 546 | gpio_set_value(hdmi.ls_oe_gpio, 0); |
| 547 | } |
| 548 | |
| 549 | static int hdmi_power_on_full(struct omap_dss_device *dssdev) |
| 550 | { |
| 551 | int r; |
| 552 | struct omap_video_timings *p; |
| 553 | struct omap_overlay_manager *mgr = dssdev->output->manager; |
| 554 | unsigned long phy; |
| 555 | |
| 556 | r = hdmi_power_on_core(dssdev); |
| 557 | if (r) |
| 558 | return r; |
| 559 | |
Archit Taneja | cea87b9 | 2012-09-07 17:56:20 +0530 | [diff] [blame] | 560 | dss_mgr_disable(mgr); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 561 | |
Archit Taneja | 7849398 | 2012-08-08 16:50:42 +0530 | [diff] [blame] | 562 | p = &hdmi.ip_data.cfg.timings; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 563 | |
Archit Taneja | 7849398 | 2012-08-08 16:50:42 +0530 | [diff] [blame] | 564 | DSSDBG("hdmi_power_on x_res= %d y_res = %d\n", p->x_res, p->y_res); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 565 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 566 | phy = p->pixel_clock; |
| 567 | |
Mythri P K | 7b27da5 | 2011-09-08 19:06:19 +0530 | [diff] [blame] | 568 | hdmi_compute_pll(dssdev, phy, &hdmi.ip_data.pll_data); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 569 | |
Ricardo Neri | c0456be | 2012-04-27 13:48:45 -0500 | [diff] [blame] | 570 | hdmi.ip_data.ops->video_disable(&hdmi.ip_data); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 571 | |
Mythri P K | 95a8aeb | 2011-09-08 19:06:18 +0530 | [diff] [blame] | 572 | /* config the PLL and PHY hdmi_set_pll_pwrfirst */ |
Mythri P K | 60634a2 | 2011-09-08 19:06:26 +0530 | [diff] [blame] | 573 | r = hdmi.ip_data.ops->pll_enable(&hdmi.ip_data); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 574 | if (r) { |
| 575 | DSSDBG("Failed to lock PLL\n"); |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 576 | goto err_pll_enable; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 577 | } |
| 578 | |
Mythri P K | 60634a2 | 2011-09-08 19:06:26 +0530 | [diff] [blame] | 579 | r = hdmi.ip_data.ops->phy_enable(&hdmi.ip_data); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 580 | if (r) { |
| 581 | DSSDBG("Failed to start PHY\n"); |
Ricardo Neri | d3b4aa5 | 2012-07-30 19:12:02 -0500 | [diff] [blame] | 582 | goto err_phy_enable; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 583 | } |
| 584 | |
Mythri P K | 60634a2 | 2011-09-08 19:06:26 +0530 | [diff] [blame] | 585 | hdmi.ip_data.ops->video_configure(&hdmi.ip_data); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 586 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 587 | /* bypass TV gamma table */ |
| 588 | dispc_enable_gamma_table(0); |
| 589 | |
| 590 | /* tv size */ |
Archit Taneja | cea87b9 | 2012-09-07 17:56:20 +0530 | [diff] [blame] | 591 | dss_mgr_set_timings(mgr, p); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 592 | |
Ricardo Neri | c0456be | 2012-04-27 13:48:45 -0500 | [diff] [blame] | 593 | r = hdmi.ip_data.ops->video_enable(&hdmi.ip_data); |
| 594 | if (r) |
| 595 | goto err_vid_enable; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 596 | |
Archit Taneja | cea87b9 | 2012-09-07 17:56:20 +0530 | [diff] [blame] | 597 | r = dss_mgr_enable(mgr); |
Tomi Valkeinen | 33ca237 | 2011-11-21 13:42:58 +0200 | [diff] [blame] | 598 | if (r) |
| 599 | goto err_mgr_enable; |
Tomi Valkeinen | 3870c90 | 2011-08-31 14:47:11 +0300 | [diff] [blame] | 600 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 601 | return 0; |
Tomi Valkeinen | 33ca237 | 2011-11-21 13:42:58 +0200 | [diff] [blame] | 602 | |
| 603 | err_mgr_enable: |
Ricardo Neri | c0456be | 2012-04-27 13:48:45 -0500 | [diff] [blame] | 604 | hdmi.ip_data.ops->video_disable(&hdmi.ip_data); |
| 605 | err_vid_enable: |
Tomi Valkeinen | 33ca237 | 2011-11-21 13:42:58 +0200 | [diff] [blame] | 606 | hdmi.ip_data.ops->phy_disable(&hdmi.ip_data); |
Ricardo Neri | d3b4aa5 | 2012-07-30 19:12:02 -0500 | [diff] [blame] | 607 | err_phy_enable: |
Tomi Valkeinen | 33ca237 | 2011-11-21 13:42:58 +0200 | [diff] [blame] | 608 | hdmi.ip_data.ops->pll_disable(&hdmi.ip_data); |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 609 | err_pll_enable: |
Tomi Valkeinen | bb426fc9 | 2012-10-19 17:42:10 +0300 | [diff] [blame] | 610 | hdmi_power_off_core(dssdev); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 611 | return -EIO; |
| 612 | } |
| 613 | |
Tomi Valkeinen | bb426fc9 | 2012-10-19 17:42:10 +0300 | [diff] [blame] | 614 | static void hdmi_power_off_full(struct omap_dss_device *dssdev) |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 615 | { |
Archit Taneja | cea87b9 | 2012-09-07 17:56:20 +0530 | [diff] [blame] | 616 | struct omap_overlay_manager *mgr = dssdev->output->manager; |
| 617 | |
| 618 | dss_mgr_disable(mgr); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 619 | |
Ricardo Neri | c0456be | 2012-04-27 13:48:45 -0500 | [diff] [blame] | 620 | hdmi.ip_data.ops->video_disable(&hdmi.ip_data); |
Mythri P K | 60634a2 | 2011-09-08 19:06:26 +0530 | [diff] [blame] | 621 | hdmi.ip_data.ops->phy_disable(&hdmi.ip_data); |
| 622 | hdmi.ip_data.ops->pll_disable(&hdmi.ip_data); |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 623 | |
Tomi Valkeinen | bb426fc9 | 2012-10-19 17:42:10 +0300 | [diff] [blame] | 624 | hdmi_power_off_core(dssdev); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | int omapdss_hdmi_display_check_timing(struct omap_dss_device *dssdev, |
| 628 | struct omap_video_timings *timings) |
| 629 | { |
| 630 | struct hdmi_cm cm; |
| 631 | |
| 632 | cm = hdmi_get_code(timings); |
| 633 | if (cm.code == -1) { |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 634 | return -EINVAL; |
| 635 | } |
| 636 | |
| 637 | return 0; |
| 638 | |
| 639 | } |
| 640 | |
Archit Taneja | 7849398 | 2012-08-08 16:50:42 +0530 | [diff] [blame] | 641 | void omapdss_hdmi_display_set_timing(struct omap_dss_device *dssdev, |
| 642 | struct omap_video_timings *timings) |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 643 | { |
| 644 | struct hdmi_cm cm; |
Archit Taneja | 7849398 | 2012-08-08 16:50:42 +0530 | [diff] [blame] | 645 | const struct hdmi_config *t; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 646 | |
Archit Taneja | ed1aa90 | 2012-08-15 00:40:31 +0530 | [diff] [blame] | 647 | mutex_lock(&hdmi.lock); |
| 648 | |
Archit Taneja | 7849398 | 2012-08-08 16:50:42 +0530 | [diff] [blame] | 649 | cm = hdmi_get_code(timings); |
| 650 | hdmi.ip_data.cfg.cm = cm; |
| 651 | |
| 652 | t = hdmi_get_timings(); |
| 653 | if (t != NULL) |
| 654 | hdmi.ip_data.cfg = *t; |
Tomi Valkeinen | fa70dc5 | 2011-08-22 14:57:33 +0300 | [diff] [blame] | 655 | |
Archit Taneja | ed1aa90 | 2012-08-15 00:40:31 +0530 | [diff] [blame] | 656 | mutex_unlock(&hdmi.lock); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 657 | } |
| 658 | |
Tomi Valkeinen | e40402c | 2012-03-02 18:01:07 +0200 | [diff] [blame] | 659 | static void hdmi_dump_regs(struct seq_file *s) |
Mythri P K | 162874d | 2011-09-22 13:37:45 +0530 | [diff] [blame] | 660 | { |
| 661 | mutex_lock(&hdmi.lock); |
| 662 | |
Wei Yongjun | f8fb7d7 | 2012-10-21 20:54:26 +0800 | [diff] [blame] | 663 | if (hdmi_runtime_get()) { |
| 664 | mutex_unlock(&hdmi.lock); |
Mythri P K | 162874d | 2011-09-22 13:37:45 +0530 | [diff] [blame] | 665 | return; |
Wei Yongjun | f8fb7d7 | 2012-10-21 20:54:26 +0800 | [diff] [blame] | 666 | } |
Mythri P K | 162874d | 2011-09-22 13:37:45 +0530 | [diff] [blame] | 667 | |
| 668 | hdmi.ip_data.ops->dump_wrapper(&hdmi.ip_data, s); |
| 669 | hdmi.ip_data.ops->dump_pll(&hdmi.ip_data, s); |
| 670 | hdmi.ip_data.ops->dump_phy(&hdmi.ip_data, s); |
| 671 | hdmi.ip_data.ops->dump_core(&hdmi.ip_data, s); |
| 672 | |
| 673 | hdmi_runtime_put(); |
| 674 | mutex_unlock(&hdmi.lock); |
| 675 | } |
| 676 | |
Tomi Valkeinen | 4702456 | 2011-08-25 17:12:56 +0300 | [diff] [blame] | 677 | int omapdss_hdmi_read_edid(u8 *buf, int len) |
| 678 | { |
| 679 | int r; |
| 680 | |
| 681 | mutex_lock(&hdmi.lock); |
| 682 | |
| 683 | r = hdmi_runtime_get(); |
| 684 | BUG_ON(r); |
| 685 | |
| 686 | r = hdmi.ip_data.ops->read_edid(&hdmi.ip_data, buf, len); |
| 687 | |
| 688 | hdmi_runtime_put(); |
| 689 | mutex_unlock(&hdmi.lock); |
| 690 | |
| 691 | return r; |
| 692 | } |
| 693 | |
Tomi Valkeinen | 759593f | 2011-08-29 18:10:20 +0300 | [diff] [blame] | 694 | bool omapdss_hdmi_detect(void) |
| 695 | { |
| 696 | int r; |
| 697 | |
| 698 | mutex_lock(&hdmi.lock); |
| 699 | |
| 700 | r = hdmi_runtime_get(); |
| 701 | BUG_ON(r); |
| 702 | |
| 703 | r = hdmi.ip_data.ops->detect(&hdmi.ip_data); |
| 704 | |
| 705 | hdmi_runtime_put(); |
| 706 | mutex_unlock(&hdmi.lock); |
| 707 | |
| 708 | return r == 1; |
| 709 | } |
| 710 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 711 | int omapdss_hdmi_display_enable(struct omap_dss_device *dssdev) |
| 712 | { |
Archit Taneja | cea87b9 | 2012-09-07 17:56:20 +0530 | [diff] [blame] | 713 | struct omap_dss_output *out = dssdev->output; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 714 | int r = 0; |
| 715 | |
| 716 | DSSDBG("ENTER hdmi_display_enable\n"); |
| 717 | |
| 718 | mutex_lock(&hdmi.lock); |
| 719 | |
Archit Taneja | cea87b9 | 2012-09-07 17:56:20 +0530 | [diff] [blame] | 720 | if (out == NULL || out->manager == NULL) { |
| 721 | DSSERR("failed to enable display: no output/manager\n"); |
Tomi Valkeinen | 05e1d60 | 2011-06-23 16:38:21 +0300 | [diff] [blame] | 722 | r = -ENODEV; |
| 723 | goto err0; |
| 724 | } |
| 725 | |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 726 | hdmi.ip_data.hpd_gpio = hdmi.hpd_gpio; |
Tomi Valkeinen | c49d005 | 2012-01-17 11:09:57 +0200 | [diff] [blame] | 727 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 728 | r = omap_dss_start_device(dssdev); |
| 729 | if (r) { |
| 730 | DSSERR("failed to start device\n"); |
| 731 | goto err0; |
| 732 | } |
| 733 | |
Tomi Valkeinen | bb426fc9 | 2012-10-19 17:42:10 +0300 | [diff] [blame] | 734 | r = hdmi_power_on_full(dssdev); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 735 | if (r) { |
| 736 | DSSERR("failed to power on device\n"); |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 737 | goto err1; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | mutex_unlock(&hdmi.lock); |
| 741 | return 0; |
| 742 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 743 | err1: |
| 744 | omap_dss_stop_device(dssdev); |
| 745 | err0: |
| 746 | mutex_unlock(&hdmi.lock); |
| 747 | return r; |
| 748 | } |
| 749 | |
| 750 | void omapdss_hdmi_display_disable(struct omap_dss_device *dssdev) |
| 751 | { |
| 752 | DSSDBG("Enter hdmi_display_disable\n"); |
| 753 | |
| 754 | mutex_lock(&hdmi.lock); |
| 755 | |
Tomi Valkeinen | bb426fc9 | 2012-10-19 17:42:10 +0300 | [diff] [blame] | 756 | hdmi_power_off_full(dssdev); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 757 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 758 | omap_dss_stop_device(dssdev); |
| 759 | |
| 760 | mutex_unlock(&hdmi.lock); |
| 761 | } |
| 762 | |
Tomi Valkeinen | 4489823 | 2012-10-19 17:42:27 +0300 | [diff] [blame] | 763 | int omapdss_hdmi_core_enable(struct omap_dss_device *dssdev) |
| 764 | { |
| 765 | int r = 0; |
| 766 | |
| 767 | DSSDBG("ENTER omapdss_hdmi_core_enable\n"); |
| 768 | |
| 769 | mutex_lock(&hdmi.lock); |
| 770 | |
| 771 | hdmi.ip_data.hpd_gpio = hdmi.hpd_gpio; |
| 772 | |
| 773 | r = hdmi_power_on_core(dssdev); |
| 774 | if (r) { |
| 775 | DSSERR("failed to power on device\n"); |
| 776 | goto err0; |
| 777 | } |
| 778 | |
| 779 | mutex_unlock(&hdmi.lock); |
| 780 | return 0; |
| 781 | |
| 782 | err0: |
| 783 | mutex_unlock(&hdmi.lock); |
| 784 | return r; |
| 785 | } |
| 786 | |
| 787 | void omapdss_hdmi_core_disable(struct omap_dss_device *dssdev) |
| 788 | { |
| 789 | DSSDBG("Enter omapdss_hdmi_core_disable\n"); |
| 790 | |
| 791 | mutex_lock(&hdmi.lock); |
| 792 | |
| 793 | hdmi_power_off_core(dssdev); |
| 794 | |
| 795 | mutex_unlock(&hdmi.lock); |
| 796 | } |
| 797 | |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 798 | static int hdmi_get_clocks(struct platform_device *pdev) |
| 799 | { |
| 800 | struct clk *clk; |
| 801 | |
Archit Taneja | b2c9c8e | 2013-04-08 11:55:00 +0300 | [diff] [blame] | 802 | clk = devm_clk_get(&pdev->dev, "sys_clk"); |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 803 | if (IS_ERR(clk)) { |
| 804 | DSSERR("can't get sys_clk\n"); |
| 805 | return PTR_ERR(clk); |
| 806 | } |
| 807 | |
| 808 | hdmi.sys_clk = clk; |
| 809 | |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 810 | return 0; |
| 811 | } |
| 812 | |
Ricardo Neri | 3554762 | 2012-03-20 21:02:01 -0600 | [diff] [blame] | 813 | #if defined(CONFIG_OMAP4_DSS_HDMI_AUDIO) |
| 814 | int hdmi_compute_acr(u32 sample_freq, u32 *n, u32 *cts) |
| 815 | { |
| 816 | u32 deep_color; |
Ricardo Neri | 25a6535 | 2012-03-23 15:49:02 -0600 | [diff] [blame] | 817 | bool deep_color_correct = false; |
Ricardo Neri | 3554762 | 2012-03-20 21:02:01 -0600 | [diff] [blame] | 818 | u32 pclk = hdmi.ip_data.cfg.timings.pixel_clock; |
| 819 | |
| 820 | if (n == NULL || cts == NULL) |
| 821 | return -EINVAL; |
| 822 | |
| 823 | /* TODO: When implemented, query deep color mode here. */ |
| 824 | deep_color = 100; |
| 825 | |
Ricardo Neri | 25a6535 | 2012-03-23 15:49:02 -0600 | [diff] [blame] | 826 | /* |
| 827 | * When using deep color, the default N value (as in the HDMI |
| 828 | * specification) yields to an non-integer CTS. Hence, we |
| 829 | * modify it while keeping the restrictions described in |
| 830 | * section 7.2.1 of the HDMI 1.4a specification. |
| 831 | */ |
Ricardo Neri | 3554762 | 2012-03-20 21:02:01 -0600 | [diff] [blame] | 832 | switch (sample_freq) { |
| 833 | case 32000: |
Ricardo Neri | 25a6535 | 2012-03-23 15:49:02 -0600 | [diff] [blame] | 834 | case 48000: |
| 835 | case 96000: |
| 836 | case 192000: |
| 837 | if (deep_color == 125) |
| 838 | if (pclk == 27027 || pclk == 74250) |
| 839 | deep_color_correct = true; |
| 840 | if (deep_color == 150) |
| 841 | if (pclk == 27027) |
| 842 | deep_color_correct = true; |
Ricardo Neri | 3554762 | 2012-03-20 21:02:01 -0600 | [diff] [blame] | 843 | break; |
| 844 | case 44100: |
Ricardo Neri | 25a6535 | 2012-03-23 15:49:02 -0600 | [diff] [blame] | 845 | case 88200: |
| 846 | case 176400: |
| 847 | if (deep_color == 125) |
| 848 | if (pclk == 27027) |
| 849 | deep_color_correct = true; |
Ricardo Neri | 3554762 | 2012-03-20 21:02:01 -0600 | [diff] [blame] | 850 | break; |
| 851 | default: |
Ricardo Neri | 3554762 | 2012-03-20 21:02:01 -0600 | [diff] [blame] | 852 | return -EINVAL; |
| 853 | } |
| 854 | |
Ricardo Neri | 25a6535 | 2012-03-23 15:49:02 -0600 | [diff] [blame] | 855 | if (deep_color_correct) { |
| 856 | switch (sample_freq) { |
| 857 | case 32000: |
| 858 | *n = 8192; |
| 859 | break; |
| 860 | case 44100: |
| 861 | *n = 12544; |
| 862 | break; |
| 863 | case 48000: |
| 864 | *n = 8192; |
| 865 | break; |
| 866 | case 88200: |
| 867 | *n = 25088; |
| 868 | break; |
| 869 | case 96000: |
| 870 | *n = 16384; |
| 871 | break; |
| 872 | case 176400: |
| 873 | *n = 50176; |
| 874 | break; |
| 875 | case 192000: |
| 876 | *n = 32768; |
| 877 | break; |
| 878 | default: |
| 879 | return -EINVAL; |
| 880 | } |
| 881 | } else { |
| 882 | switch (sample_freq) { |
| 883 | case 32000: |
| 884 | *n = 4096; |
| 885 | break; |
| 886 | case 44100: |
| 887 | *n = 6272; |
| 888 | break; |
| 889 | case 48000: |
| 890 | *n = 6144; |
| 891 | break; |
| 892 | case 88200: |
| 893 | *n = 12544; |
| 894 | break; |
| 895 | case 96000: |
| 896 | *n = 12288; |
| 897 | break; |
| 898 | case 176400: |
| 899 | *n = 25088; |
| 900 | break; |
| 901 | case 192000: |
| 902 | *n = 24576; |
| 903 | break; |
| 904 | default: |
| 905 | return -EINVAL; |
| 906 | } |
| 907 | } |
Ricardo Neri | 3554762 | 2012-03-20 21:02:01 -0600 | [diff] [blame] | 908 | /* Calculate CTS. See HDMI 1.3a or 1.4a specifications */ |
| 909 | *cts = pclk * (*n / 128) * deep_color / (sample_freq / 10); |
| 910 | |
| 911 | return 0; |
| 912 | } |
Ricardo Neri | f3a97491 | 2012-05-09 21:09:50 -0500 | [diff] [blame] | 913 | |
| 914 | int hdmi_audio_enable(void) |
| 915 | { |
| 916 | DSSDBG("audio_enable\n"); |
| 917 | |
| 918 | return hdmi.ip_data.ops->audio_enable(&hdmi.ip_data); |
| 919 | } |
| 920 | |
| 921 | void hdmi_audio_disable(void) |
| 922 | { |
| 923 | DSSDBG("audio_disable\n"); |
| 924 | |
| 925 | hdmi.ip_data.ops->audio_disable(&hdmi.ip_data); |
| 926 | } |
| 927 | |
| 928 | int hdmi_audio_start(void) |
| 929 | { |
| 930 | DSSDBG("audio_start\n"); |
| 931 | |
| 932 | return hdmi.ip_data.ops->audio_start(&hdmi.ip_data); |
| 933 | } |
| 934 | |
| 935 | void hdmi_audio_stop(void) |
| 936 | { |
| 937 | DSSDBG("audio_stop\n"); |
| 938 | |
| 939 | hdmi.ip_data.ops->audio_stop(&hdmi.ip_data); |
| 940 | } |
| 941 | |
| 942 | bool hdmi_mode_has_audio(void) |
| 943 | { |
| 944 | if (hdmi.ip_data.cfg.cm.mode == HDMI_HDMI) |
| 945 | return true; |
| 946 | else |
| 947 | return false; |
| 948 | } |
| 949 | |
| 950 | int hdmi_audio_config(struct omap_dss_audio *audio) |
| 951 | { |
| 952 | return hdmi.ip_data.ops->audio_config(&hdmi.ip_data, audio); |
| 953 | } |
| 954 | |
Ricardo Neri | 3554762 | 2012-03-20 21:02:01 -0600 | [diff] [blame] | 955 | #endif |
| 956 | |
Tomi Valkeinen | 17ae4e8 | 2013-04-26 14:48:43 +0300 | [diff] [blame^] | 957 | static struct omap_dss_device *hdmi_find_dssdev(struct platform_device *pdev) |
Tomi Valkeinen | 38f3daf | 2012-05-02 14:55:12 +0300 | [diff] [blame] | 958 | { |
| 959 | struct omap_dss_board_info *pdata = pdev->dev.platform_data; |
Tomi Valkeinen | 2bbcce5 | 2012-10-29 12:40:46 +0200 | [diff] [blame] | 960 | const char *def_disp_name = omapdss_get_default_display_name(); |
Tomi Valkeinen | 1521653 | 2012-09-06 14:29:31 +0300 | [diff] [blame] | 961 | struct omap_dss_device *def_dssdev; |
| 962 | int i; |
| 963 | |
| 964 | def_dssdev = NULL; |
Tomi Valkeinen | 38f3daf | 2012-05-02 14:55:12 +0300 | [diff] [blame] | 965 | |
| 966 | for (i = 0; i < pdata->num_devices; ++i) { |
| 967 | struct omap_dss_device *dssdev = pdata->devices[i]; |
| 968 | |
| 969 | if (dssdev->type != OMAP_DISPLAY_TYPE_HDMI) |
| 970 | continue; |
| 971 | |
Tomi Valkeinen | 1521653 | 2012-09-06 14:29:31 +0300 | [diff] [blame] | 972 | if (def_dssdev == NULL) |
| 973 | def_dssdev = dssdev; |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 974 | |
Tomi Valkeinen | 1521653 | 2012-09-06 14:29:31 +0300 | [diff] [blame] | 975 | if (def_disp_name != NULL && |
| 976 | strcmp(dssdev->name, def_disp_name) == 0) { |
| 977 | def_dssdev = dssdev; |
| 978 | break; |
Tomi Valkeinen | 38f3daf | 2012-05-02 14:55:12 +0300 | [diff] [blame] | 979 | } |
Tomi Valkeinen | 1521653 | 2012-09-06 14:29:31 +0300 | [diff] [blame] | 980 | } |
Tomi Valkeinen | 38f3daf | 2012-05-02 14:55:12 +0300 | [diff] [blame] | 981 | |
Tomi Valkeinen | 1521653 | 2012-09-06 14:29:31 +0300 | [diff] [blame] | 982 | return def_dssdev; |
| 983 | } |
| 984 | |
Tomi Valkeinen | 17ae4e8 | 2013-04-26 14:48:43 +0300 | [diff] [blame^] | 985 | static void hdmi_probe_pdata(struct platform_device *pdev) |
Tomi Valkeinen | 1521653 | 2012-09-06 14:29:31 +0300 | [diff] [blame] | 986 | { |
Tomi Valkeinen | 5274484 | 2012-09-10 13:58:29 +0300 | [diff] [blame] | 987 | struct omap_dss_device *plat_dssdev; |
Tomi Valkeinen | 1521653 | 2012-09-06 14:29:31 +0300 | [diff] [blame] | 988 | struct omap_dss_device *dssdev; |
| 989 | struct omap_dss_hdmi_data *priv; |
| 990 | int r; |
| 991 | |
Tomi Valkeinen | 5274484 | 2012-09-10 13:58:29 +0300 | [diff] [blame] | 992 | plat_dssdev = hdmi_find_dssdev(pdev); |
Tomi Valkeinen | 1521653 | 2012-09-06 14:29:31 +0300 | [diff] [blame] | 993 | |
Tomi Valkeinen | 5274484 | 2012-09-10 13:58:29 +0300 | [diff] [blame] | 994 | if (!plat_dssdev) |
| 995 | return; |
| 996 | |
| 997 | dssdev = dss_alloc_and_init_device(&pdev->dev); |
Tomi Valkeinen | 1521653 | 2012-09-06 14:29:31 +0300 | [diff] [blame] | 998 | if (!dssdev) |
| 999 | return; |
| 1000 | |
Tomi Valkeinen | 5274484 | 2012-09-10 13:58:29 +0300 | [diff] [blame] | 1001 | dss_copy_device_pdata(dssdev, plat_dssdev); |
| 1002 | |
Tomi Valkeinen | 1521653 | 2012-09-06 14:29:31 +0300 | [diff] [blame] | 1003 | priv = dssdev->data; |
| 1004 | |
| 1005 | hdmi.ct_cp_hpd_gpio = priv->ct_cp_hpd_gpio; |
| 1006 | hdmi.ls_oe_gpio = priv->ls_oe_gpio; |
| 1007 | hdmi.hpd_gpio = priv->hpd_gpio; |
| 1008 | |
| 1009 | r = hdmi_init_display(dssdev); |
| 1010 | if (r) { |
| 1011 | DSSERR("device %s init failed: %d\n", dssdev->name, r); |
Tomi Valkeinen | 5274484 | 2012-09-10 13:58:29 +0300 | [diff] [blame] | 1012 | dss_put_device(dssdev); |
Tomi Valkeinen | 1521653 | 2012-09-06 14:29:31 +0300 | [diff] [blame] | 1013 | return; |
| 1014 | } |
| 1015 | |
Tomi Valkeinen | 486c0e1 | 2012-12-07 12:50:08 +0200 | [diff] [blame] | 1016 | r = omapdss_output_set_device(&hdmi.output, dssdev); |
| 1017 | if (r) { |
| 1018 | DSSERR("failed to connect output to new device: %s\n", |
| 1019 | dssdev->name); |
| 1020 | dss_put_device(dssdev); |
| 1021 | return; |
| 1022 | } |
| 1023 | |
Tomi Valkeinen | 5274484 | 2012-09-10 13:58:29 +0300 | [diff] [blame] | 1024 | r = dss_add_device(dssdev); |
Tomi Valkeinen | 1521653 | 2012-09-06 14:29:31 +0300 | [diff] [blame] | 1025 | if (r) { |
| 1026 | DSSERR("device %s register failed: %d\n", dssdev->name, r); |
Tomi Valkeinen | 486c0e1 | 2012-12-07 12:50:08 +0200 | [diff] [blame] | 1027 | omapdss_output_unset_device(&hdmi.output); |
Ricardo Neri | d18bc45 | 2012-11-06 00:19:15 -0600 | [diff] [blame] | 1028 | hdmi_uninit_display(dssdev); |
Tomi Valkeinen | 5274484 | 2012-09-10 13:58:29 +0300 | [diff] [blame] | 1029 | dss_put_device(dssdev); |
Tomi Valkeinen | 1521653 | 2012-09-06 14:29:31 +0300 | [diff] [blame] | 1030 | return; |
Tomi Valkeinen | 38f3daf | 2012-05-02 14:55:12 +0300 | [diff] [blame] | 1031 | } |
| 1032 | } |
| 1033 | |
Tomi Valkeinen | 17ae4e8 | 2013-04-26 14:48:43 +0300 | [diff] [blame^] | 1034 | static void hdmi_init_output(struct platform_device *pdev) |
Archit Taneja | 81b87f5 | 2012-09-26 16:30:49 +0530 | [diff] [blame] | 1035 | { |
| 1036 | struct omap_dss_output *out = &hdmi.output; |
| 1037 | |
| 1038 | out->pdev = pdev; |
| 1039 | out->id = OMAP_DSS_OUTPUT_HDMI; |
| 1040 | out->type = OMAP_DISPLAY_TYPE_HDMI; |
Tomi Valkeinen | 7286a08 | 2013-02-18 13:06:01 +0200 | [diff] [blame] | 1041 | out->name = "hdmi.0"; |
Tomi Valkeinen | 2eea5ae | 2013-02-13 11:23:54 +0200 | [diff] [blame] | 1042 | out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT; |
Archit Taneja | 81b87f5 | 2012-09-26 16:30:49 +0530 | [diff] [blame] | 1043 | |
| 1044 | dss_register_output(out); |
| 1045 | } |
| 1046 | |
| 1047 | static void __exit hdmi_uninit_output(struct platform_device *pdev) |
| 1048 | { |
| 1049 | struct omap_dss_output *out = &hdmi.output; |
| 1050 | |
| 1051 | dss_unregister_output(out); |
| 1052 | } |
| 1053 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1054 | /* HDMI HW IP initialisation */ |
Tomi Valkeinen | 17ae4e8 | 2013-04-26 14:48:43 +0300 | [diff] [blame^] | 1055 | static int omapdss_hdmihw_probe(struct platform_device *pdev) |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1056 | { |
Ricardo Neri | af23cb3 | 2012-11-06 00:19:11 -0600 | [diff] [blame] | 1057 | struct resource *res; |
Tomi Valkeinen | 38f3daf | 2012-05-02 14:55:12 +0300 | [diff] [blame] | 1058 | int r; |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1059 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1060 | hdmi.pdev = pdev; |
| 1061 | |
| 1062 | mutex_init(&hdmi.lock); |
Ricardo Neri | 66a06b0 | 2012-11-06 00:19:14 -0600 | [diff] [blame] | 1063 | mutex_init(&hdmi.ip_data.lock); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1064 | |
Ricardo Neri | af23cb3 | 2012-11-06 00:19:11 -0600 | [diff] [blame] | 1065 | res = platform_get_resource(hdmi.pdev, IORESOURCE_MEM, 0); |
| 1066 | if (!res) { |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1067 | DSSERR("can't get IORESOURCE_MEM HDMI\n"); |
| 1068 | return -EINVAL; |
| 1069 | } |
| 1070 | |
| 1071 | /* Base address taken from platform */ |
Thierry Reding | bc3bad1 | 2013-01-21 11:09:23 +0100 | [diff] [blame] | 1072 | hdmi.ip_data.base_wp = devm_ioremap_resource(&pdev->dev, res); |
| 1073 | if (IS_ERR(hdmi.ip_data.base_wp)) |
| 1074 | return PTR_ERR(hdmi.ip_data.base_wp); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1075 | |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 1076 | r = hdmi_get_clocks(pdev); |
| 1077 | if (r) { |
Ricardo Neri | 47e443b | 2012-11-06 00:19:12 -0600 | [diff] [blame] | 1078 | DSSERR("can't get clocks\n"); |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 1079 | return r; |
| 1080 | } |
| 1081 | |
| 1082 | pm_runtime_enable(&pdev->dev); |
| 1083 | |
Mythri P K | 95a8aeb | 2011-09-08 19:06:18 +0530 | [diff] [blame] | 1084 | hdmi.ip_data.core_sys_offset = HDMI_CORE_SYS; |
| 1085 | hdmi.ip_data.core_av_offset = HDMI_CORE_AV; |
| 1086 | hdmi.ip_data.pll_offset = HDMI_PLLCTRL; |
| 1087 | hdmi.ip_data.phy_offset = HDMI_PHY; |
Archit Taneja | 7849398 | 2012-08-08 16:50:42 +0530 | [diff] [blame] | 1088 | |
Tomi Valkeinen | 002d368 | 2013-02-13 12:17:43 +0200 | [diff] [blame] | 1089 | hdmi_init_output(pdev); |
| 1090 | |
Ricardo Neri | 66a06b0 | 2012-11-06 00:19:14 -0600 | [diff] [blame] | 1091 | r = hdmi_panel_init(); |
| 1092 | if (r) { |
| 1093 | DSSERR("can't init panel\n"); |
Archit Taneja | b2c9c8e | 2013-04-08 11:55:00 +0300 | [diff] [blame] | 1094 | return r; |
Ricardo Neri | 66a06b0 | 2012-11-06 00:19:14 -0600 | [diff] [blame] | 1095 | } |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1096 | |
Tomi Valkeinen | e40402c | 2012-03-02 18:01:07 +0200 | [diff] [blame] | 1097 | dss_debugfs_create_file("hdmi", hdmi_dump_regs); |
| 1098 | |
Tomi Valkeinen | 38f3daf | 2012-05-02 14:55:12 +0300 | [diff] [blame] | 1099 | hdmi_probe_pdata(pdev); |
Tomi Valkeinen | 35deca3 | 2012-03-01 15:45:53 +0200 | [diff] [blame] | 1100 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1101 | return 0; |
| 1102 | } |
| 1103 | |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 1104 | static int __exit hdmi_remove_child(struct device *dev, void *data) |
| 1105 | { |
| 1106 | struct omap_dss_device *dssdev = to_dss_device(dev); |
| 1107 | hdmi_uninit_display(dssdev); |
| 1108 | return 0; |
| 1109 | } |
| 1110 | |
Tomi Valkeinen | 6e7e8f0 | 2012-02-17 17:41:13 +0200 | [diff] [blame] | 1111 | static int __exit omapdss_hdmihw_remove(struct platform_device *pdev) |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1112 | { |
Tomi Valkeinen | cca3501 | 2012-04-26 14:48:32 +0300 | [diff] [blame] | 1113 | device_for_each_child(&pdev->dev, NULL, hdmi_remove_child); |
| 1114 | |
Tomi Valkeinen | 5274484 | 2012-09-10 13:58:29 +0300 | [diff] [blame] | 1115 | dss_unregister_child_devices(&pdev->dev); |
Tomi Valkeinen | 35deca3 | 2012-03-01 15:45:53 +0200 | [diff] [blame] | 1116 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1117 | hdmi_panel_exit(); |
| 1118 | |
Archit Taneja | 81b87f5 | 2012-09-26 16:30:49 +0530 | [diff] [blame] | 1119 | hdmi_uninit_output(pdev); |
| 1120 | |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 1121 | pm_runtime_disable(&pdev->dev); |
| 1122 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1123 | return 0; |
| 1124 | } |
| 1125 | |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 1126 | static int hdmi_runtime_suspend(struct device *dev) |
| 1127 | { |
Rajendra Nayak | f11766d | 2012-06-27 14:21:26 +0530 | [diff] [blame] | 1128 | clk_disable_unprepare(hdmi.sys_clk); |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 1129 | |
| 1130 | dispc_runtime_put(); |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 1131 | |
| 1132 | return 0; |
| 1133 | } |
| 1134 | |
| 1135 | static int hdmi_runtime_resume(struct device *dev) |
| 1136 | { |
| 1137 | int r; |
| 1138 | |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 1139 | r = dispc_runtime_get(); |
| 1140 | if (r < 0) |
Tomi Valkeinen | 852f083 | 2012-02-17 17:58:04 +0200 | [diff] [blame] | 1141 | return r; |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 1142 | |
Rajendra Nayak | f11766d | 2012-06-27 14:21:26 +0530 | [diff] [blame] | 1143 | clk_prepare_enable(hdmi.sys_clk); |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 1144 | |
| 1145 | return 0; |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 1146 | } |
| 1147 | |
| 1148 | static const struct dev_pm_ops hdmi_pm_ops = { |
| 1149 | .runtime_suspend = hdmi_runtime_suspend, |
| 1150 | .runtime_resume = hdmi_runtime_resume, |
| 1151 | }; |
| 1152 | |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1153 | static struct platform_driver omapdss_hdmihw_driver = { |
Tomi Valkeinen | 17ae4e8 | 2013-04-26 14:48:43 +0300 | [diff] [blame^] | 1154 | .probe = omapdss_hdmihw_probe, |
Tomi Valkeinen | 6e7e8f0 | 2012-02-17 17:41:13 +0200 | [diff] [blame] | 1155 | .remove = __exit_p(omapdss_hdmihw_remove), |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1156 | .driver = { |
| 1157 | .name = "omapdss_hdmi", |
| 1158 | .owner = THIS_MODULE, |
Tomi Valkeinen | 4fbafaf | 2011-05-27 10:52:19 +0300 | [diff] [blame] | 1159 | .pm = &hdmi_pm_ops, |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1160 | }, |
| 1161 | }; |
| 1162 | |
Tomi Valkeinen | 6e7e8f0 | 2012-02-17 17:41:13 +0200 | [diff] [blame] | 1163 | int __init hdmi_init_platform_driver(void) |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1164 | { |
Tomi Valkeinen | 17ae4e8 | 2013-04-26 14:48:43 +0300 | [diff] [blame^] | 1165 | return platform_driver_register(&omapdss_hdmihw_driver); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1166 | } |
| 1167 | |
Tomi Valkeinen | 6e7e8f0 | 2012-02-17 17:41:13 +0200 | [diff] [blame] | 1168 | void __exit hdmi_uninit_platform_driver(void) |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1169 | { |
Tomi Valkeinen | 04c742c | 2012-02-23 15:32:37 +0200 | [diff] [blame] | 1170 | platform_driver_unregister(&omapdss_hdmihw_driver); |
Mythri P K | c3198a5 | 2011-03-12 12:04:27 +0530 | [diff] [blame] | 1171 | } |