2 * OMAP2plus display device setup / initialization.
4 * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
5 * Senthilvadivu Guruswamy
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.
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.
18 #include <linux/string.h>
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/platform_device.h>
23 #include <linux/clk.h>
24 #include <linux/err.h>
25 #include <linux/delay.h>
27 #include <linux/of_platform.h>
28 #include <linux/slab.h>
29 #include <linux/mfd/syscon.h>
30 #include <linux/regmap.h>
32 #include <video/omapdss.h>
33 #include "omap_hwmod.h"
34 #include "omap_device.h"
44 #define DISPC_CONTROL 0x0040
45 #define DISPC_CONTROL2 0x0238
46 #define DISPC_CONTROL3 0x0848
47 #define DISPC_IRQSTATUS 0x0018
49 #define DSS_SYSCONFIG 0x10
50 #define DSS_SYSSTATUS 0x14
51 #define DSS_CONTROL 0x40
52 #define DSS_SDI_CONTROL 0x44
53 #define DSS_PLL_CONTROL 0x48
55 #define LCD_EN_MASK (0x1 << 0)
56 #define DIGIT_EN_MASK (0x1 << 1)
58 #define FRAMEDONE_IRQ_SHIFT 0
59 #define EVSYNC_EVEN_IRQ_SHIFT 2
60 #define EVSYNC_ODD_IRQ_SHIFT 3
61 #define FRAMEDONE2_IRQ_SHIFT 22
62 #define FRAMEDONE3_IRQ_SHIFT 30
63 #define FRAMEDONETV_IRQ_SHIFT 24
66 * FRAMEDONE_IRQ_TIMEOUT: how long (in milliseconds) to wait during DISPC
67 * reset before deciding that something has gone wrong
69 #define FRAMEDONE_IRQ_TIMEOUT 100
71 static struct platform_device omap_display_device
= {
75 .platform_data
= NULL
,
79 struct omap_dss_hwmod_data
{
85 static const struct omap_dss_hwmod_data omap2_dss_hwmod_data
[] __initconst
= {
86 { "dss_core", "omapdss_dss", -1 },
87 { "dss_dispc", "omapdss_dispc", -1 },
88 { "dss_rfbi", "omapdss_rfbi", -1 },
89 { "dss_venc", "omapdss_venc", -1 },
92 static const struct omap_dss_hwmod_data omap3_dss_hwmod_data
[] __initconst
= {
93 { "dss_core", "omapdss_dss", -1 },
94 { "dss_dispc", "omapdss_dispc", -1 },
95 { "dss_rfbi", "omapdss_rfbi", -1 },
96 { "dss_venc", "omapdss_venc", -1 },
97 { "dss_dsi1", "omapdss_dsi", 0 },
100 static const struct omap_dss_hwmod_data omap4_dss_hwmod_data
[] __initconst
= {
101 { "dss_core", "omapdss_dss", -1 },
102 { "dss_dispc", "omapdss_dispc", -1 },
103 { "dss_rfbi", "omapdss_rfbi", -1 },
104 { "dss_dsi1", "omapdss_dsi", 0 },
105 { "dss_dsi2", "omapdss_dsi", 1 },
106 { "dss_hdmi", "omapdss_hdmi", -1 },
109 #define OMAP4_DSIPHY_SYSCON_OFFSET 0x78
111 static struct regmap
*omap4_dsi_mux_syscon
;
113 static int omap4_dsi_mux_pads(int dsi_id
, unsigned lanes
)
115 u32 enable_mask
, enable_shift
;
116 u32 pipd_mask
, pipd_shift
;
120 enable_mask
= OMAP4_DSI1_LANEENABLE_MASK
;
121 enable_shift
= OMAP4_DSI1_LANEENABLE_SHIFT
;
122 pipd_mask
= OMAP4_DSI1_PIPD_MASK
;
123 pipd_shift
= OMAP4_DSI1_PIPD_SHIFT
;
124 } else if (dsi_id
== 1) {
125 enable_mask
= OMAP4_DSI2_LANEENABLE_MASK
;
126 enable_shift
= OMAP4_DSI2_LANEENABLE_SHIFT
;
127 pipd_mask
= OMAP4_DSI2_PIPD_MASK
;
128 pipd_shift
= OMAP4_DSI2_PIPD_SHIFT
;
133 regmap_read(omap4_dsi_mux_syscon
, OMAP4_DSIPHY_SYSCON_OFFSET
, ®
);
138 reg
|= (lanes
<< enable_shift
) & enable_mask
;
139 reg
|= (lanes
<< pipd_shift
) & pipd_mask
;
141 regmap_write(omap4_dsi_mux_syscon
, OMAP4_DSIPHY_SYSCON_OFFSET
, reg
);
146 static int omap_dsi_enable_pads(int dsi_id
, unsigned lane_mask
)
148 if (cpu_is_omap44xx())
149 return omap4_dsi_mux_pads(dsi_id
, lane_mask
);
154 static void omap_dsi_disable_pads(int dsi_id
, unsigned lane_mask
)
156 if (cpu_is_omap44xx())
157 omap4_dsi_mux_pads(dsi_id
, 0);
160 static int omap_dss_set_min_bus_tput(struct device
*dev
, unsigned long tput
)
162 return omap_pm_set_min_bus_tput(dev
, OCP_INITIATOR_AGENT
, tput
);
165 static struct platform_device
*create_dss_pdev(const char *pdev_name
,
166 int pdev_id
, const char *oh_name
, void *pdata
, int pdata_len
,
167 struct platform_device
*parent
)
169 struct platform_device
*pdev
;
170 struct omap_device
*od
;
171 struct omap_hwmod
*ohs
[1];
172 struct omap_hwmod
*oh
;
175 oh
= omap_hwmod_lookup(oh_name
);
177 pr_err("Could not look up %s\n", oh_name
);
182 pdev
= platform_device_alloc(pdev_name
, pdev_id
);
184 pr_err("Could not create pdev for %s\n", pdev_name
);
190 pdev
->dev
.parent
= &parent
->dev
;
193 dev_set_name(&pdev
->dev
, "%s.%d", pdev
->name
, pdev
->id
);
195 dev_set_name(&pdev
->dev
, "%s", pdev
->name
);
198 od
= omap_device_alloc(pdev
, ohs
, 1);
200 pr_err("Could not alloc omap_device for %s\n", pdev_name
);
205 r
= platform_device_add_data(pdev
, pdata
, pdata_len
);
207 pr_err("Could not set pdata for %s\n", pdev_name
);
211 r
= omap_device_register(pdev
);
213 pr_err("Could not register omap_device for %s\n", pdev_name
);
223 static struct platform_device
*create_simple_dss_pdev(const char *pdev_name
,
224 int pdev_id
, void *pdata
, int pdata_len
,
225 struct platform_device
*parent
)
227 struct platform_device
*pdev
;
230 pdev
= platform_device_alloc(pdev_name
, pdev_id
);
232 pr_err("Could not create pdev for %s\n", pdev_name
);
238 pdev
->dev
.parent
= &parent
->dev
;
241 dev_set_name(&pdev
->dev
, "%s.%d", pdev
->name
, pdev
->id
);
243 dev_set_name(&pdev
->dev
, "%s", pdev
->name
);
245 r
= platform_device_add_data(pdev
, pdata
, pdata_len
);
247 pr_err("Could not set pdata for %s\n", pdev_name
);
251 r
= platform_device_add(pdev
);
253 pr_err("Could not register platform_device for %s\n", pdev_name
);
263 static enum omapdss_version __init
omap_display_get_version(void)
265 if (cpu_is_omap24xx())
266 return OMAPDSS_VER_OMAP24xx
;
267 else if (cpu_is_omap3630())
268 return OMAPDSS_VER_OMAP3630
;
269 else if (cpu_is_omap34xx()) {
270 if (soc_is_am35xx()) {
271 return OMAPDSS_VER_AM35xx
;
273 if (omap_rev() < OMAP3430_REV_ES3_0
)
274 return OMAPDSS_VER_OMAP34xx_ES1
;
276 return OMAPDSS_VER_OMAP34xx_ES3
;
278 } else if (omap_rev() == OMAP4430_REV_ES1_0
)
279 return OMAPDSS_VER_OMAP4430_ES1
;
280 else if (omap_rev() == OMAP4430_REV_ES2_0
||
281 omap_rev() == OMAP4430_REV_ES2_1
||
282 omap_rev() == OMAP4430_REV_ES2_2
)
283 return OMAPDSS_VER_OMAP4430_ES2
;
284 else if (cpu_is_omap44xx())
285 return OMAPDSS_VER_OMAP4
;
286 else if (soc_is_omap54xx())
287 return OMAPDSS_VER_OMAP5
;
288 else if (soc_is_am43xx())
289 return OMAPDSS_VER_AM43xx
;
290 else if (soc_is_dra7xx())
291 return OMAPDSS_VER_DRA7xx
;
293 return OMAPDSS_VER_UNKNOWN
;
296 int __init
omap_display_init(struct omap_dss_board_info
*board_data
)
299 struct platform_device
*pdev
;
301 const struct omap_dss_hwmod_data
*curr_dss_hwmod
;
302 struct platform_device
*dss_pdev
;
303 enum omapdss_version ver
;
305 /* create omapdss device */
307 ver
= omap_display_get_version();
309 if (ver
== OMAPDSS_VER_UNKNOWN
) {
310 pr_err("DSS not supported on this SoC\n");
314 board_data
->version
= ver
;
315 board_data
->dsi_enable_pads
= omap_dsi_enable_pads
;
316 board_data
->dsi_disable_pads
= omap_dsi_disable_pads
;
317 board_data
->set_min_bus_tput
= omap_dss_set_min_bus_tput
;
319 omap_display_device
.dev
.platform_data
= board_data
;
321 r
= platform_device_register(&omap_display_device
);
323 pr_err("Unable to register omapdss device\n");
327 /* create devices for dss hwmods */
329 if (cpu_is_omap24xx()) {
330 curr_dss_hwmod
= omap2_dss_hwmod_data
;
331 oh_count
= ARRAY_SIZE(omap2_dss_hwmod_data
);
332 } else if (cpu_is_omap34xx()) {
333 curr_dss_hwmod
= omap3_dss_hwmod_data
;
334 oh_count
= ARRAY_SIZE(omap3_dss_hwmod_data
);
336 curr_dss_hwmod
= omap4_dss_hwmod_data
;
337 oh_count
= ARRAY_SIZE(omap4_dss_hwmod_data
);
341 * First create the pdev for dss_core, which is used as a parent device
342 * by the other dss pdevs. Note: dss_core has to be the first item in
345 dss_pdev
= create_dss_pdev(curr_dss_hwmod
[0].dev_name
,
346 curr_dss_hwmod
[0].id
,
347 curr_dss_hwmod
[0].oh_name
,
348 board_data
, sizeof(*board_data
),
351 if (IS_ERR(dss_pdev
)) {
352 pr_err("Could not build omap_device for %s\n",
353 curr_dss_hwmod
[0].oh_name
);
355 return PTR_ERR(dss_pdev
);
358 for (i
= 1; i
< oh_count
; i
++) {
359 pdev
= create_dss_pdev(curr_dss_hwmod
[i
].dev_name
,
360 curr_dss_hwmod
[i
].id
,
361 curr_dss_hwmod
[i
].oh_name
,
362 board_data
, sizeof(*board_data
),
366 pr_err("Could not build omap_device for %s\n",
367 curr_dss_hwmod
[i
].oh_name
);
369 return PTR_ERR(pdev
);
373 /* Create devices for DPI and SDI */
375 pdev
= create_simple_dss_pdev("omapdss_dpi", 0,
376 board_data
, sizeof(*board_data
), dss_pdev
);
378 pr_err("Could not build platform_device for omapdss_dpi\n");
379 return PTR_ERR(pdev
);
382 if (cpu_is_omap34xx()) {
383 pdev
= create_simple_dss_pdev("omapdss_sdi", 0,
384 board_data
, sizeof(*board_data
), dss_pdev
);
386 pr_err("Could not build platform_device for omapdss_sdi\n");
387 return PTR_ERR(pdev
);
391 /* create DRM device */
394 pr_err("Unable to register omapdrm device\n");
398 /* create vrfb device */
399 r
= omap_init_vrfb();
401 pr_err("Unable to register omapvrfb device\n");
405 /* create FB device */
408 pr_err("Unable to register omapfb device\n");
412 /* create V4L2 display device */
413 r
= omap_init_vout();
415 pr_err("Unable to register omap_vout device\n");
422 static void dispc_disable_outputs(void)
425 bool lcd_en
, digit_en
, lcd2_en
= false, lcd3_en
= false;
427 struct omap_dss_dispc_dev_attr
*da
;
428 struct omap_hwmod
*oh
;
430 oh
= omap_hwmod_lookup("dss_dispc");
432 WARN(1, "display: could not disable outputs during reset - could not find dss_dispc hwmod\n");
437 pr_err("display: could not disable outputs during reset due to missing dev_attr\n");
441 da
= (struct omap_dss_dispc_dev_attr
*)oh
->dev_attr
;
443 /* store value of LCDENABLE and DIGITENABLE bits */
444 v
= omap_hwmod_read(oh
, DISPC_CONTROL
);
445 lcd_en
= v
& LCD_EN_MASK
;
446 digit_en
= v
& DIGIT_EN_MASK
;
448 /* store value of LCDENABLE for LCD2 */
449 if (da
->manager_count
> 2) {
450 v
= omap_hwmod_read(oh
, DISPC_CONTROL2
);
451 lcd2_en
= v
& LCD_EN_MASK
;
454 /* store value of LCDENABLE for LCD3 */
455 if (da
->manager_count
> 3) {
456 v
= omap_hwmod_read(oh
, DISPC_CONTROL3
);
457 lcd3_en
= v
& LCD_EN_MASK
;
460 if (!(lcd_en
| digit_en
| lcd2_en
| lcd3_en
))
461 return; /* no managers currently enabled */
464 * If any manager was enabled, we need to disable it before
465 * DSS clocks are disabled or DISPC module is reset
468 irq_mask
|= 1 << FRAMEDONE_IRQ_SHIFT
;
471 if (da
->has_framedonetv_irq
) {
472 irq_mask
|= 1 << FRAMEDONETV_IRQ_SHIFT
;
474 irq_mask
|= 1 << EVSYNC_EVEN_IRQ_SHIFT
|
475 1 << EVSYNC_ODD_IRQ_SHIFT
;
480 irq_mask
|= 1 << FRAMEDONE2_IRQ_SHIFT
;
482 irq_mask
|= 1 << FRAMEDONE3_IRQ_SHIFT
;
485 * clear any previous FRAMEDONE, FRAMEDONETV,
486 * EVSYNC_EVEN/ODD, FRAMEDONE2 or FRAMEDONE3 interrupts
488 omap_hwmod_write(irq_mask
, oh
, DISPC_IRQSTATUS
);
490 /* disable LCD and TV managers */
491 v
= omap_hwmod_read(oh
, DISPC_CONTROL
);
492 v
&= ~(LCD_EN_MASK
| DIGIT_EN_MASK
);
493 omap_hwmod_write(v
, oh
, DISPC_CONTROL
);
495 /* disable LCD2 manager */
496 if (da
->manager_count
> 2) {
497 v
= omap_hwmod_read(oh
, DISPC_CONTROL2
);
499 omap_hwmod_write(v
, oh
, DISPC_CONTROL2
);
502 /* disable LCD3 manager */
503 if (da
->manager_count
> 3) {
504 v
= omap_hwmod_read(oh
, DISPC_CONTROL3
);
506 omap_hwmod_write(v
, oh
, DISPC_CONTROL3
);
510 while ((omap_hwmod_read(oh
, DISPC_IRQSTATUS
) & irq_mask
) !=
513 if (i
> FRAMEDONE_IRQ_TIMEOUT
) {
514 pr_err("didn't get FRAMEDONE1/2/3 or TV interrupt\n");
521 int omap_dss_reset(struct omap_hwmod
*oh
)
523 struct omap_hwmod_opt_clk
*oc
;
527 if (!(oh
->class->sysc
->sysc_flags
& SYSS_HAS_RESET_STATUS
)) {
528 pr_err("dss_core: hwmod data doesn't contain reset data\n");
532 for (i
= oh
->opt_clks_cnt
, oc
= oh
->opt_clks
; i
> 0; i
--, oc
++)
534 clk_prepare_enable(oc
->_clk
);
536 dispc_disable_outputs();
538 /* clear SDI registers */
539 if (cpu_is_omap3430()) {
540 omap_hwmod_write(0x0, oh
, DSS_SDI_CONTROL
);
541 omap_hwmod_write(0x0, oh
, DSS_PLL_CONTROL
);
545 * clear DSS_CONTROL register to switch DSS clock sources to
548 omap_hwmod_write(0x0, oh
, DSS_CONTROL
);
550 omap_test_timeout((omap_hwmod_read(oh
, oh
->class->sysc
->syss_offs
)
551 & SYSS_RESETDONE_MASK
),
552 MAX_MODULE_SOFTRESET_WAIT
, c
);
554 if (c
== MAX_MODULE_SOFTRESET_WAIT
)
555 pr_warn("dss_core: waiting for reset to finish failed\n");
557 pr_debug("dss_core: softreset done\n");
559 for (i
= oh
->opt_clks_cnt
, oc
= oh
->opt_clks
; i
> 0; i
--, oc
++)
561 clk_disable_unprepare(oc
->_clk
);
563 r
= (c
== MAX_MODULE_SOFTRESET_WAIT
) ? -ETIMEDOUT
: 0;
568 void __init
omapdss_early_init_of(void)
573 static const char * const omapdss_compat_names
[] __initconst
= {
581 struct device_node
* __init
omapdss_find_dss_of_node(void)
583 struct device_node
*node
;
586 for (i
= 0; i
< ARRAY_SIZE(omapdss_compat_names
); ++i
) {
587 node
= of_find_compatible_node(NULL
, NULL
,
588 omapdss_compat_names
[i
]);
596 int __init
omapdss_init_of(void)
599 enum omapdss_version ver
;
600 struct device_node
*node
;
601 struct platform_device
*pdev
;
603 static struct omap_dss_board_info board_data
= {
604 .dsi_enable_pads
= omap_dsi_enable_pads
,
605 .dsi_disable_pads
= omap_dsi_disable_pads
,
606 .set_min_bus_tput
= omap_dss_set_min_bus_tput
,
609 /* only create dss helper devices if dss is enabled in the .dts */
611 node
= omapdss_find_dss_of_node();
615 if (!of_device_is_available(node
))
618 ver
= omap_display_get_version();
620 if (ver
== OMAPDSS_VER_UNKNOWN
) {
621 pr_err("DSS not supported on this SoC\n");
625 pdev
= of_find_device_by_node(node
);
628 pr_err("Unable to find DSS platform device\n");
632 r
= of_platform_populate(node
, NULL
, NULL
, &pdev
->dev
);
634 pr_err("Unable to populate DSS submodule devices\n");
638 board_data
.version
= ver
;
640 omap_display_device
.dev
.platform_data
= &board_data
;
642 r
= platform_device_register(&omap_display_device
);
644 pr_err("Unable to register omapdss device\n");
648 /* create DRM device */
651 pr_err("Unable to register omapdrm device\n");
655 /* create vrfb device */
656 r
= omap_init_vrfb();
658 pr_err("Unable to register omapvrfb device\n");
662 /* create FB device */
665 pr_err("Unable to register omapfb device\n");
669 /* create V4L2 display device */
670 r
= omap_init_vout();
672 pr_err("Unable to register omap_vout device\n");
676 /* add DSI info for omap4 */
677 node
= of_find_node_by_name(NULL
, "omap4_padconf_global");
679 omap4_dsi_mux_syscon
= syscon_node_to_regmap(node
);