1 /* 2 * OMAP2plus display device setup / initialization. 3 * 4 * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ 5 * Senthilvadivu Guruswamy 6 * Sumit Semwal 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License version 2 as 10 * published by the Free Software Foundation. 11 * 12 * This program is distributed "as is" WITHOUT ANY WARRANTY of any 13 * kind, whether express or implied; without even the implied warranty 14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 */ 17 18 #include <linux/string.h> 19 #include <linux/kernel.h> 20 #include <linux/init.h> 21 #include <linux/platform_device.h> 22 #include <linux/io.h> 23 #include <linux/clk.h> 24 #include <linux/err.h> 25 #include <linux/delay.h> 26 27 #include <video/omapdss.h> 28 #include "omap_hwmod.h" 29 #include "omap_device.h" 30 #include "omap-pm.h" 31 #include "common.h" 32 33 #include "soc.h" 34 #include "iomap.h" 35 #include "mux.h" 36 #include "control.h" 37 #include "display.h" 38 #include "prm.h" 39 40 #define DISPC_CONTROL 0x0040 41 #define DISPC_CONTROL2 0x0238 42 #define DISPC_CONTROL3 0x0848 43 #define DISPC_IRQSTATUS 0x0018 44 45 #define DSS_SYSCONFIG 0x10 46 #define DSS_SYSSTATUS 0x14 47 #define DSS_CONTROL 0x40 48 #define DSS_SDI_CONTROL 0x44 49 #define DSS_PLL_CONTROL 0x48 50 51 #define LCD_EN_MASK (0x1 << 0) 52 #define DIGIT_EN_MASK (0x1 << 1) 53 54 #define FRAMEDONE_IRQ_SHIFT 0 55 #define EVSYNC_EVEN_IRQ_SHIFT 2 56 #define EVSYNC_ODD_IRQ_SHIFT 3 57 #define FRAMEDONE2_IRQ_SHIFT 22 58 #define FRAMEDONE3_IRQ_SHIFT 30 59 #define FRAMEDONETV_IRQ_SHIFT 24 60 61 /* 62 * FRAMEDONE_IRQ_TIMEOUT: how long (in milliseconds) to wait during DISPC 63 * reset before deciding that something has gone wrong 64 */ 65 #define FRAMEDONE_IRQ_TIMEOUT 100 66 67 static struct platform_device omap_display_device = { 68 .name = "omapdss", 69 .id = -1, 70 .dev = { 71 .platform_data = NULL, 72 }, 73 }; 74 75 struct omap_dss_hwmod_data { 76 const char *oh_name; 77 const char *dev_name; 78 const int id; 79 }; 80 81 static const struct omap_dss_hwmod_data omap2_dss_hwmod_data[] __initconst = { 82 { "dss_core", "omapdss_dss", -1 }, 83 { "dss_dispc", "omapdss_dispc", -1 }, 84 { "dss_rfbi", "omapdss_rfbi", -1 }, 85 { "dss_venc", "omapdss_venc", -1 }, 86 }; 87 88 static const struct omap_dss_hwmod_data omap3_dss_hwmod_data[] __initconst = { 89 { "dss_core", "omapdss_dss", -1 }, 90 { "dss_dispc", "omapdss_dispc", -1 }, 91 { "dss_rfbi", "omapdss_rfbi", -1 }, 92 { "dss_venc", "omapdss_venc", -1 }, 93 { "dss_dsi1", "omapdss_dsi", 0 }, 94 }; 95 96 static const struct omap_dss_hwmod_data omap4_dss_hwmod_data[] __initconst = { 97 { "dss_core", "omapdss_dss", -1 }, 98 { "dss_dispc", "omapdss_dispc", -1 }, 99 { "dss_rfbi", "omapdss_rfbi", -1 }, 100 { "dss_dsi1", "omapdss_dsi", 0 }, 101 { "dss_dsi2", "omapdss_dsi", 1 }, 102 { "dss_hdmi", "omapdss_hdmi", -1 }, 103 }; 104 105 static void __init omap4_tpd12s015_mux_pads(void) 106 { 107 omap_mux_init_signal("hdmi_cec", 108 OMAP_PIN_INPUT_PULLUP); 109 omap_mux_init_signal("hdmi_ddc_scl", 110 OMAP_PIN_INPUT_PULLUP); 111 omap_mux_init_signal("hdmi_ddc_sda", 112 OMAP_PIN_INPUT_PULLUP); 113 } 114 115 static void __init omap4_hdmi_mux_pads(enum omap_hdmi_flags flags) 116 { 117 u32 reg; 118 u16 control_i2c_1; 119 120 /* 121 * CONTROL_I2C_1: HDMI_DDC_SDA_PULLUPRESX (bit 28) and 122 * HDMI_DDC_SCL_PULLUPRESX (bit 24) are set to disable 123 * internal pull up resistor. 124 */ 125 if (flags & OMAP_HDMI_SDA_SCL_EXTERNAL_PULLUP) { 126 control_i2c_1 = OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_I2C_1; 127 reg = omap4_ctrl_pad_readl(control_i2c_1); 128 reg |= (OMAP4_HDMI_DDC_SDA_PULLUPRESX_MASK | 129 OMAP4_HDMI_DDC_SCL_PULLUPRESX_MASK); 130 omap4_ctrl_pad_writel(reg, control_i2c_1); 131 } 132 } 133 134 static int omap4_dsi_mux_pads(int dsi_id, unsigned lanes) 135 { 136 u32 enable_mask, enable_shift; 137 u32 pipd_mask, pipd_shift; 138 u32 reg; 139 140 if (dsi_id == 0) { 141 enable_mask = OMAP4_DSI1_LANEENABLE_MASK; 142 enable_shift = OMAP4_DSI1_LANEENABLE_SHIFT; 143 pipd_mask = OMAP4_DSI1_PIPD_MASK; 144 pipd_shift = OMAP4_DSI1_PIPD_SHIFT; 145 } else if (dsi_id == 1) { 146 enable_mask = OMAP4_DSI2_LANEENABLE_MASK; 147 enable_shift = OMAP4_DSI2_LANEENABLE_SHIFT; 148 pipd_mask = OMAP4_DSI2_PIPD_MASK; 149 pipd_shift = OMAP4_DSI2_PIPD_SHIFT; 150 } else { 151 return -ENODEV; 152 } 153 154 reg = omap4_ctrl_pad_readl(OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_DSIPHY); 155 156 reg &= ~enable_mask; 157 reg &= ~pipd_mask; 158 159 reg |= (lanes << enable_shift) & enable_mask; 160 reg |= (lanes << pipd_shift) & pipd_mask; 161 162 omap4_ctrl_pad_writel(reg, OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_DSIPHY); 163 164 return 0; 165 } 166 167 int __init omap_hdmi_init(enum omap_hdmi_flags flags) 168 { 169 if (cpu_is_omap44xx()) { 170 omap4_hdmi_mux_pads(flags); 171 omap4_tpd12s015_mux_pads(); 172 } 173 174 return 0; 175 } 176 177 static int omap_dsi_enable_pads(int dsi_id, unsigned lane_mask) 178 { 179 if (cpu_is_omap44xx()) 180 return omap4_dsi_mux_pads(dsi_id, lane_mask); 181 182 return 0; 183 } 184 185 static void omap_dsi_disable_pads(int dsi_id, unsigned lane_mask) 186 { 187 if (cpu_is_omap44xx()) 188 omap4_dsi_mux_pads(dsi_id, 0); 189 } 190 191 static int omap_dss_set_min_bus_tput(struct device *dev, unsigned long tput) 192 { 193 return omap_pm_set_min_bus_tput(dev, OCP_INITIATOR_AGENT, tput); 194 } 195 196 static struct platform_device *create_dss_pdev(const char *pdev_name, 197 int pdev_id, const char *oh_name, void *pdata, int pdata_len, 198 struct platform_device *parent) 199 { 200 struct platform_device *pdev; 201 struct omap_device *od; 202 struct omap_hwmod *ohs[1]; 203 struct omap_hwmod *oh; 204 int r; 205 206 oh = omap_hwmod_lookup(oh_name); 207 if (!oh) { 208 pr_err("Could not look up %s\n", oh_name); 209 r = -ENODEV; 210 goto err; 211 } 212 213 pdev = platform_device_alloc(pdev_name, pdev_id); 214 if (!pdev) { 215 pr_err("Could not create pdev for %s\n", pdev_name); 216 r = -ENOMEM; 217 goto err; 218 } 219 220 if (parent != NULL) 221 pdev->dev.parent = &parent->dev; 222 223 if (pdev->id != -1) 224 dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id); 225 else 226 dev_set_name(&pdev->dev, "%s", pdev->name); 227 228 ohs[0] = oh; 229 od = omap_device_alloc(pdev, ohs, 1); 230 if (IS_ERR(od)) { 231 pr_err("Could not alloc omap_device for %s\n", pdev_name); 232 r = -ENOMEM; 233 goto err; 234 } 235 236 r = platform_device_add_data(pdev, pdata, pdata_len); 237 if (r) { 238 pr_err("Could not set pdata for %s\n", pdev_name); 239 goto err; 240 } 241 242 r = omap_device_register(pdev); 243 if (r) { 244 pr_err("Could not register omap_device for %s\n", pdev_name); 245 goto err; 246 } 247 248 return pdev; 249 250 err: 251 return ERR_PTR(r); 252 } 253 254 static struct platform_device *create_simple_dss_pdev(const char *pdev_name, 255 int pdev_id, void *pdata, int pdata_len, 256 struct platform_device *parent) 257 { 258 struct platform_device *pdev; 259 int r; 260 261 pdev = platform_device_alloc(pdev_name, pdev_id); 262 if (!pdev) { 263 pr_err("Could not create pdev for %s\n", pdev_name); 264 r = -ENOMEM; 265 goto err; 266 } 267 268 if (parent != NULL) 269 pdev->dev.parent = &parent->dev; 270 271 if (pdev->id != -1) 272 dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id); 273 else 274 dev_set_name(&pdev->dev, "%s", pdev->name); 275 276 r = platform_device_add_data(pdev, pdata, pdata_len); 277 if (r) { 278 pr_err("Could not set pdata for %s\n", pdev_name); 279 goto err; 280 } 281 282 r = platform_device_add(pdev); 283 if (r) { 284 pr_err("Could not register platform_device for %s\n", pdev_name); 285 goto err; 286 } 287 288 return pdev; 289 290 err: 291 return ERR_PTR(r); 292 } 293 294 static enum omapdss_version __init omap_display_get_version(void) 295 { 296 if (cpu_is_omap24xx()) 297 return OMAPDSS_VER_OMAP24xx; 298 else if (cpu_is_omap3630()) 299 return OMAPDSS_VER_OMAP3630; 300 else if (cpu_is_omap34xx()) { 301 if (soc_is_am35xx()) { 302 return OMAPDSS_VER_AM35xx; 303 } else { 304 if (omap_rev() < OMAP3430_REV_ES3_0) 305 return OMAPDSS_VER_OMAP34xx_ES1; 306 else 307 return OMAPDSS_VER_OMAP34xx_ES3; 308 } 309 } else if (omap_rev() == OMAP4430_REV_ES1_0) 310 return OMAPDSS_VER_OMAP4430_ES1; 311 else if (omap_rev() == OMAP4430_REV_ES2_0 || 312 omap_rev() == OMAP4430_REV_ES2_1 || 313 omap_rev() == OMAP4430_REV_ES2_2) 314 return OMAPDSS_VER_OMAP4430_ES2; 315 else if (cpu_is_omap44xx()) 316 return OMAPDSS_VER_OMAP4; 317 else if (soc_is_omap54xx()) 318 return OMAPDSS_VER_OMAP5; 319 else 320 return OMAPDSS_VER_UNKNOWN; 321 } 322 323 int __init omap_display_init(struct omap_dss_board_info *board_data) 324 { 325 int r = 0; 326 struct platform_device *pdev; 327 int i, oh_count; 328 const struct omap_dss_hwmod_data *curr_dss_hwmod; 329 struct platform_device *dss_pdev; 330 enum omapdss_version ver; 331 332 /* create omapdss device */ 333 334 ver = omap_display_get_version(); 335 336 if (ver == OMAPDSS_VER_UNKNOWN) { 337 pr_err("DSS not supported on this SoC\n"); 338 return -ENODEV; 339 } 340 341 board_data->version = ver; 342 board_data->dsi_enable_pads = omap_dsi_enable_pads; 343 board_data->dsi_disable_pads = omap_dsi_disable_pads; 344 board_data->get_context_loss_count = omap_pm_get_dev_context_loss_count; 345 board_data->set_min_bus_tput = omap_dss_set_min_bus_tput; 346 347 omap_display_device.dev.platform_data = board_data; 348 349 r = platform_device_register(&omap_display_device); 350 if (r < 0) { 351 pr_err("Unable to register omapdss device\n"); 352 return r; 353 } 354 355 /* create devices for dss hwmods */ 356 357 if (cpu_is_omap24xx()) { 358 curr_dss_hwmod = omap2_dss_hwmod_data; 359 oh_count = ARRAY_SIZE(omap2_dss_hwmod_data); 360 } else if (cpu_is_omap34xx()) { 361 curr_dss_hwmod = omap3_dss_hwmod_data; 362 oh_count = ARRAY_SIZE(omap3_dss_hwmod_data); 363 } else { 364 curr_dss_hwmod = omap4_dss_hwmod_data; 365 oh_count = ARRAY_SIZE(omap4_dss_hwmod_data); 366 } 367 368 /* 369 * First create the pdev for dss_core, which is used as a parent device 370 * by the other dss pdevs. Note: dss_core has to be the first item in 371 * the hwmod list. 372 */ 373 dss_pdev = create_dss_pdev(curr_dss_hwmod[0].dev_name, 374 curr_dss_hwmod[0].id, 375 curr_dss_hwmod[0].oh_name, 376 board_data, sizeof(*board_data), 377 NULL); 378 379 if (IS_ERR(dss_pdev)) { 380 pr_err("Could not build omap_device for %s\n", 381 curr_dss_hwmod[0].oh_name); 382 383 return PTR_ERR(dss_pdev); 384 } 385 386 for (i = 1; i < oh_count; i++) { 387 pdev = create_dss_pdev(curr_dss_hwmod[i].dev_name, 388 curr_dss_hwmod[i].id, 389 curr_dss_hwmod[i].oh_name, 390 board_data, sizeof(*board_data), 391 dss_pdev); 392 393 if (IS_ERR(pdev)) { 394 pr_err("Could not build omap_device for %s\n", 395 curr_dss_hwmod[i].oh_name); 396 397 return PTR_ERR(pdev); 398 } 399 } 400 401 /* Create devices for DPI and SDI */ 402 403 pdev = create_simple_dss_pdev("omapdss_dpi", 0, 404 board_data, sizeof(*board_data), dss_pdev); 405 if (IS_ERR(pdev)) { 406 pr_err("Could not build platform_device for omapdss_dpi\n"); 407 return PTR_ERR(pdev); 408 } 409 410 if (cpu_is_omap34xx()) { 411 pdev = create_simple_dss_pdev("omapdss_sdi", 0, 412 board_data, sizeof(*board_data), dss_pdev); 413 if (IS_ERR(pdev)) { 414 pr_err("Could not build platform_device for omapdss_sdi\n"); 415 return PTR_ERR(pdev); 416 } 417 } 418 419 /* create DRM device */ 420 r = omap_init_drm(); 421 if (r < 0) { 422 pr_err("Unable to register omapdrm device\n"); 423 return r; 424 } 425 426 /* create vrfb device */ 427 r = omap_init_vrfb(); 428 if (r < 0) { 429 pr_err("Unable to register omapvrfb device\n"); 430 return r; 431 } 432 433 /* create FB device */ 434 r = omap_init_fb(); 435 if (r < 0) { 436 pr_err("Unable to register omapfb device\n"); 437 return r; 438 } 439 440 /* create V4L2 display device */ 441 r = omap_init_vout(); 442 if (r < 0) { 443 pr_err("Unable to register omap_vout device\n"); 444 return r; 445 } 446 447 return 0; 448 } 449 450 static void dispc_disable_outputs(void) 451 { 452 u32 v, irq_mask = 0; 453 bool lcd_en, digit_en, lcd2_en = false, lcd3_en = false; 454 int i; 455 struct omap_dss_dispc_dev_attr *da; 456 struct omap_hwmod *oh; 457 458 oh = omap_hwmod_lookup("dss_dispc"); 459 if (!oh) { 460 WARN(1, "display: could not disable outputs during reset - could not find dss_dispc hwmod\n"); 461 return; 462 } 463 464 if (!oh->dev_attr) { 465 pr_err("display: could not disable outputs during reset due to missing dev_attr\n"); 466 return; 467 } 468 469 da = (struct omap_dss_dispc_dev_attr *)oh->dev_attr; 470 471 /* store value of LCDENABLE and DIGITENABLE bits */ 472 v = omap_hwmod_read(oh, DISPC_CONTROL); 473 lcd_en = v & LCD_EN_MASK; 474 digit_en = v & DIGIT_EN_MASK; 475 476 /* store value of LCDENABLE for LCD2 */ 477 if (da->manager_count > 2) { 478 v = omap_hwmod_read(oh, DISPC_CONTROL2); 479 lcd2_en = v & LCD_EN_MASK; 480 } 481 482 /* store value of LCDENABLE for LCD3 */ 483 if (da->manager_count > 3) { 484 v = omap_hwmod_read(oh, DISPC_CONTROL3); 485 lcd3_en = v & LCD_EN_MASK; 486 } 487 488 if (!(lcd_en | digit_en | lcd2_en | lcd3_en)) 489 return; /* no managers currently enabled */ 490 491 /* 492 * If any manager was enabled, we need to disable it before 493 * DSS clocks are disabled or DISPC module is reset 494 */ 495 if (lcd_en) 496 irq_mask |= 1 << FRAMEDONE_IRQ_SHIFT; 497 498 if (digit_en) { 499 if (da->has_framedonetv_irq) { 500 irq_mask |= 1 << FRAMEDONETV_IRQ_SHIFT; 501 } else { 502 irq_mask |= 1 << EVSYNC_EVEN_IRQ_SHIFT | 503 1 << EVSYNC_ODD_IRQ_SHIFT; 504 } 505 } 506 507 if (lcd2_en) 508 irq_mask |= 1 << FRAMEDONE2_IRQ_SHIFT; 509 if (lcd3_en) 510 irq_mask |= 1 << FRAMEDONE3_IRQ_SHIFT; 511 512 /* 513 * clear any previous FRAMEDONE, FRAMEDONETV, 514 * EVSYNC_EVEN/ODD, FRAMEDONE2 or FRAMEDONE3 interrupts 515 */ 516 omap_hwmod_write(irq_mask, oh, DISPC_IRQSTATUS); 517 518 /* disable LCD and TV managers */ 519 v = omap_hwmod_read(oh, DISPC_CONTROL); 520 v &= ~(LCD_EN_MASK | DIGIT_EN_MASK); 521 omap_hwmod_write(v, oh, DISPC_CONTROL); 522 523 /* disable LCD2 manager */ 524 if (da->manager_count > 2) { 525 v = omap_hwmod_read(oh, DISPC_CONTROL2); 526 v &= ~LCD_EN_MASK; 527 omap_hwmod_write(v, oh, DISPC_CONTROL2); 528 } 529 530 /* disable LCD3 manager */ 531 if (da->manager_count > 3) { 532 v = omap_hwmod_read(oh, DISPC_CONTROL3); 533 v &= ~LCD_EN_MASK; 534 omap_hwmod_write(v, oh, DISPC_CONTROL3); 535 } 536 537 i = 0; 538 while ((omap_hwmod_read(oh, DISPC_IRQSTATUS) & irq_mask) != 539 irq_mask) { 540 i++; 541 if (i > FRAMEDONE_IRQ_TIMEOUT) { 542 pr_err("didn't get FRAMEDONE1/2/3 or TV interrupt\n"); 543 break; 544 } 545 mdelay(1); 546 } 547 } 548 549 int omap_dss_reset(struct omap_hwmod *oh) 550 { 551 struct omap_hwmod_opt_clk *oc; 552 int c = 0; 553 int i, r; 554 555 if (!(oh->class->sysc->sysc_flags & SYSS_HAS_RESET_STATUS)) { 556 pr_err("dss_core: hwmod data doesn't contain reset data\n"); 557 return -EINVAL; 558 } 559 560 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) 561 if (oc->_clk) 562 clk_prepare_enable(oc->_clk); 563 564 dispc_disable_outputs(); 565 566 /* clear SDI registers */ 567 if (cpu_is_omap3430()) { 568 omap_hwmod_write(0x0, oh, DSS_SDI_CONTROL); 569 omap_hwmod_write(0x0, oh, DSS_PLL_CONTROL); 570 } 571 572 /* 573 * clear DSS_CONTROL register to switch DSS clock sources to 574 * PRCM clock, if any 575 */ 576 omap_hwmod_write(0x0, oh, DSS_CONTROL); 577 578 omap_test_timeout((omap_hwmod_read(oh, oh->class->sysc->syss_offs) 579 & SYSS_RESETDONE_MASK), 580 MAX_MODULE_SOFTRESET_WAIT, c); 581 582 if (c == MAX_MODULE_SOFTRESET_WAIT) 583 pr_warning("dss_core: waiting for reset to finish failed\n"); 584 else 585 pr_debug("dss_core: softreset done\n"); 586 587 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) 588 if (oc->_clk) 589 clk_disable_unprepare(oc->_clk); 590 591 r = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0; 592 593 return r; 594 } 595