1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2009 Nokia Corporation
6 * Some code and ideas taken from drivers/video/omap/ driver
10 #define DSS_SUBSYS_NAME "DSS"
12 #include <linux/debugfs.h>
13 #include <linux/dma-mapping.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
17 #include <linux/export.h>
18 #include <linux/err.h>
19 #include <linux/delay.h>
20 #include <linux/seq_file.h>
21 #include <linux/clk.h>
22 #include <linux/pinctrl/consumer.h>
23 #include <linux/platform_device.h>
24 #include <linux/pm_runtime.h>
25 #include <linux/gfp.h>
26 #include <linux/sizes.h>
27 #include <linux/mfd/syscon.h>
28 #include <linux/regmap.h>
30 #include <linux/of_device.h>
31 #include <linux/of_graph.h>
32 #include <linux/regulator/consumer.h>
33 #include <linux/suspend.h>
34 #include <linux/component.h>
35 #include <linux/sys_soc.h>
44 #define DSS_REG(idx) ((const struct dss_reg) { idx })
46 #define DSS_REVISION DSS_REG(0x0000)
47 #define DSS_SYSCONFIG DSS_REG(0x0010)
48 #define DSS_SYSSTATUS DSS_REG(0x0014)
49 #define DSS_CONTROL DSS_REG(0x0040)
50 #define DSS_SDI_CONTROL DSS_REG(0x0044)
51 #define DSS_PLL_CONTROL DSS_REG(0x0048)
52 #define DSS_SDI_STATUS DSS_REG(0x005C)
54 #define REG_GET(dss, idx, start, end) \
55 FLD_GET(dss_read_reg(dss, idx), start, end)
57 #define REG_FLD_MOD(dss, idx, val, start, end) \
58 dss_write_reg(dss, idx, \
59 FLD_MOD(dss_read_reg(dss, idx), val, start, end))
62 int (*dpi_select_source)(struct dss_device *dss, int port,
63 enum omap_channel channel);
64 int (*select_lcd_source)(struct dss_device *dss,
65 enum omap_channel channel,
66 enum dss_clk_source clk_src);
72 unsigned int fck_freq_max;
73 u8 dss_fck_multiplier;
74 const char *parent_clk_name;
75 const enum omap_display_type *ports;
77 const enum omap_dss_output_id *outputs;
78 const struct dss_ops *ops;
79 struct dss_reg_field dispc_clk_switch;
83 static const char * const dss_generic_clk_source_names[] = {
84 [DSS_CLK_SRC_FCK] = "FCK",
85 [DSS_CLK_SRC_PLL1_1] = "PLL1:1",
86 [DSS_CLK_SRC_PLL1_2] = "PLL1:2",
87 [DSS_CLK_SRC_PLL1_3] = "PLL1:3",
88 [DSS_CLK_SRC_PLL2_1] = "PLL2:1",
89 [DSS_CLK_SRC_PLL2_2] = "PLL2:2",
90 [DSS_CLK_SRC_PLL2_3] = "PLL2:3",
91 [DSS_CLK_SRC_HDMI_PLL] = "HDMI PLL",
94 static inline void dss_write_reg(struct dss_device *dss,
95 const struct dss_reg idx, u32 val)
97 __raw_writel(val, dss->base + idx.idx);
100 static inline u32 dss_read_reg(struct dss_device *dss, const struct dss_reg idx)
102 return __raw_readl(dss->base + idx.idx);
105 #define SR(dss, reg) \
106 dss->ctx[(DSS_##reg).idx / sizeof(u32)] = dss_read_reg(dss, DSS_##reg)
107 #define RR(dss, reg) \
108 dss_write_reg(dss, DSS_##reg, dss->ctx[(DSS_##reg).idx / sizeof(u32)])
110 static void dss_save_context(struct dss_device *dss)
112 DSSDBG("dss_save_context\n");
116 if (dss->feat->outputs[OMAP_DSS_CHANNEL_LCD] & OMAP_DSS_OUTPUT_SDI) {
117 SR(dss, SDI_CONTROL);
118 SR(dss, PLL_CONTROL);
121 dss->ctx_valid = true;
123 DSSDBG("context saved\n");
126 static void dss_restore_context(struct dss_device *dss)
128 DSSDBG("dss_restore_context\n");
135 if (dss->feat->outputs[OMAP_DSS_CHANNEL_LCD] & OMAP_DSS_OUTPUT_SDI) {
136 RR(dss, SDI_CONTROL);
137 RR(dss, PLL_CONTROL);
140 DSSDBG("context restored\n");
146 void dss_ctrl_pll_enable(struct dss_pll *pll, bool enable)
151 if (!pll->dss->syscon_pll_ctrl)
167 DSSERR("illegal DSS PLL ID %d\n", pll->id);
171 regmap_update_bits(pll->dss->syscon_pll_ctrl,
172 pll->dss->syscon_pll_ctrl_offset,
173 1 << shift, val << shift);
176 static int dss_ctrl_pll_set_control_mux(struct dss_device *dss,
177 enum dss_clk_source clk_src,
178 enum omap_channel channel)
180 unsigned int shift, val;
182 if (!dss->syscon_pll_ctrl)
186 case OMAP_DSS_CHANNEL_LCD:
190 case DSS_CLK_SRC_PLL1_1:
192 case DSS_CLK_SRC_HDMI_PLL:
195 DSSERR("error in PLL mux config for LCD\n");
200 case OMAP_DSS_CHANNEL_LCD2:
204 case DSS_CLK_SRC_PLL1_3:
206 case DSS_CLK_SRC_PLL2_3:
208 case DSS_CLK_SRC_HDMI_PLL:
211 DSSERR("error in PLL mux config for LCD2\n");
216 case OMAP_DSS_CHANNEL_LCD3:
220 case DSS_CLK_SRC_PLL2_1:
222 case DSS_CLK_SRC_PLL1_3:
224 case DSS_CLK_SRC_HDMI_PLL:
227 DSSERR("error in PLL mux config for LCD3\n");
233 DSSERR("error in PLL mux config\n");
237 regmap_update_bits(dss->syscon_pll_ctrl, dss->syscon_pll_ctrl_offset,
238 0x3 << shift, val << shift);
243 void dss_sdi_init(struct dss_device *dss, int datapairs)
247 BUG_ON(datapairs > 3 || datapairs < 1);
249 l = dss_read_reg(dss, DSS_SDI_CONTROL);
250 l = FLD_MOD(l, 0xf, 19, 15); /* SDI_PDIV */
251 l = FLD_MOD(l, datapairs-1, 3, 2); /* SDI_PRSEL */
252 l = FLD_MOD(l, 2, 1, 0); /* SDI_BWSEL */
253 dss_write_reg(dss, DSS_SDI_CONTROL, l);
255 l = dss_read_reg(dss, DSS_PLL_CONTROL);
256 l = FLD_MOD(l, 0x7, 25, 22); /* SDI_PLL_FREQSEL */
257 l = FLD_MOD(l, 0xb, 16, 11); /* SDI_PLL_REGN */
258 l = FLD_MOD(l, 0xb4, 10, 1); /* SDI_PLL_REGM */
259 dss_write_reg(dss, DSS_PLL_CONTROL, l);
262 int dss_sdi_enable(struct dss_device *dss)
264 unsigned long timeout;
266 dispc_pck_free_enable(dss->dispc, 1);
269 REG_FLD_MOD(dss, DSS_PLL_CONTROL, 1, 18, 18); /* SDI_PLL_SYSRESET */
270 udelay(1); /* wait 2x PCLK */
273 REG_FLD_MOD(dss, DSS_PLL_CONTROL, 1, 28, 28); /* SDI_PLL_GOBIT */
275 /* Waiting for PLL lock request to complete */
276 timeout = jiffies + msecs_to_jiffies(500);
277 while (dss_read_reg(dss, DSS_SDI_STATUS) & (1 << 6)) {
278 if (time_after_eq(jiffies, timeout)) {
279 DSSERR("PLL lock request timed out\n");
284 /* Clearing PLL_GO bit */
285 REG_FLD_MOD(dss, DSS_PLL_CONTROL, 0, 28, 28);
287 /* Waiting for PLL to lock */
288 timeout = jiffies + msecs_to_jiffies(500);
289 while (!(dss_read_reg(dss, DSS_SDI_STATUS) & (1 << 5))) {
290 if (time_after_eq(jiffies, timeout)) {
291 DSSERR("PLL lock timed out\n");
296 dispc_lcd_enable_signal(dss->dispc, 1);
298 /* Waiting for SDI reset to complete */
299 timeout = jiffies + msecs_to_jiffies(500);
300 while (!(dss_read_reg(dss, DSS_SDI_STATUS) & (1 << 2))) {
301 if (time_after_eq(jiffies, timeout)) {
302 DSSERR("SDI reset timed out\n");
310 dispc_lcd_enable_signal(dss->dispc, 0);
313 REG_FLD_MOD(dss, DSS_PLL_CONTROL, 0, 18, 18); /* SDI_PLL_SYSRESET */
315 dispc_pck_free_enable(dss->dispc, 0);
320 void dss_sdi_disable(struct dss_device *dss)
322 dispc_lcd_enable_signal(dss->dispc, 0);
324 dispc_pck_free_enable(dss->dispc, 0);
327 REG_FLD_MOD(dss, DSS_PLL_CONTROL, 0, 18, 18); /* SDI_PLL_SYSRESET */
330 const char *dss_get_clk_source_name(enum dss_clk_source clk_src)
332 return dss_generic_clk_source_names[clk_src];
335 static void dss_dump_clocks(struct dss_device *dss, struct seq_file *s)
337 const char *fclk_name;
338 unsigned long fclk_rate;
340 if (dss_runtime_get(dss))
343 seq_printf(s, "- DSS -\n");
345 fclk_name = dss_get_clk_source_name(DSS_CLK_SRC_FCK);
346 fclk_rate = clk_get_rate(dss->dss_clk);
348 seq_printf(s, "%s = %lu\n",
352 dss_runtime_put(dss);
355 static int dss_dump_regs(struct seq_file *s, void *p)
357 struct dss_device *dss = s->private;
359 #define DUMPREG(dss, r) seq_printf(s, "%-35s %08x\n", #r, dss_read_reg(dss, r))
361 if (dss_runtime_get(dss))
364 DUMPREG(dss, DSS_REVISION);
365 DUMPREG(dss, DSS_SYSCONFIG);
366 DUMPREG(dss, DSS_SYSSTATUS);
367 DUMPREG(dss, DSS_CONTROL);
369 if (dss->feat->outputs[OMAP_DSS_CHANNEL_LCD] & OMAP_DSS_OUTPUT_SDI) {
370 DUMPREG(dss, DSS_SDI_CONTROL);
371 DUMPREG(dss, DSS_PLL_CONTROL);
372 DUMPREG(dss, DSS_SDI_STATUS);
375 dss_runtime_put(dss);
380 static int dss_debug_dump_clocks(struct seq_file *s, void *p)
382 struct dss_device *dss = s->private;
384 dss_dump_clocks(dss, s);
385 dispc_dump_clocks(dss->dispc, s);
389 static int dss_get_channel_index(enum omap_channel channel)
392 case OMAP_DSS_CHANNEL_LCD:
394 case OMAP_DSS_CHANNEL_LCD2:
396 case OMAP_DSS_CHANNEL_LCD3:
404 static void dss_select_dispc_clk_source(struct dss_device *dss,
405 enum dss_clk_source clk_src)
410 * We always use PRCM clock as the DISPC func clock, except on DSS3,
411 * where we don't have separate DISPC and LCD clock sources.
413 if (WARN_ON(dss->feat->has_lcd_clk_src && clk_src != DSS_CLK_SRC_FCK))
417 case DSS_CLK_SRC_FCK:
420 case DSS_CLK_SRC_PLL1_1:
423 case DSS_CLK_SRC_PLL2_1:
431 REG_FLD_MOD(dss, DSS_CONTROL, b, /* DISPC_CLK_SWITCH */
432 dss->feat->dispc_clk_switch.start,
433 dss->feat->dispc_clk_switch.end);
435 dss->dispc_clk_source = clk_src;
438 void dss_select_dsi_clk_source(struct dss_device *dss, int dsi_module,
439 enum dss_clk_source clk_src)
444 case DSS_CLK_SRC_FCK:
447 case DSS_CLK_SRC_PLL1_2:
448 BUG_ON(dsi_module != 0);
451 case DSS_CLK_SRC_PLL2_2:
452 BUG_ON(dsi_module != 1);
460 pos = dsi_module == 0 ? 1 : 10;
461 REG_FLD_MOD(dss, DSS_CONTROL, b, pos, pos); /* DSIx_CLK_SWITCH */
463 dss->dsi_clk_source[dsi_module] = clk_src;
466 static int dss_lcd_clk_mux_dra7(struct dss_device *dss,
467 enum omap_channel channel,
468 enum dss_clk_source clk_src)
470 const u8 ctrl_bits[] = {
471 [OMAP_DSS_CHANNEL_LCD] = 0,
472 [OMAP_DSS_CHANNEL_LCD2] = 12,
473 [OMAP_DSS_CHANNEL_LCD3] = 19,
476 u8 ctrl_bit = ctrl_bits[channel];
479 if (clk_src == DSS_CLK_SRC_FCK) {
480 /* LCDx_CLK_SWITCH */
481 REG_FLD_MOD(dss, DSS_CONTROL, 0, ctrl_bit, ctrl_bit);
485 r = dss_ctrl_pll_set_control_mux(dss, clk_src, channel);
489 REG_FLD_MOD(dss, DSS_CONTROL, 1, ctrl_bit, ctrl_bit);
494 static int dss_lcd_clk_mux_omap5(struct dss_device *dss,
495 enum omap_channel channel,
496 enum dss_clk_source clk_src)
498 const u8 ctrl_bits[] = {
499 [OMAP_DSS_CHANNEL_LCD] = 0,
500 [OMAP_DSS_CHANNEL_LCD2] = 12,
501 [OMAP_DSS_CHANNEL_LCD3] = 19,
503 const enum dss_clk_source allowed_plls[] = {
504 [OMAP_DSS_CHANNEL_LCD] = DSS_CLK_SRC_PLL1_1,
505 [OMAP_DSS_CHANNEL_LCD2] = DSS_CLK_SRC_FCK,
506 [OMAP_DSS_CHANNEL_LCD3] = DSS_CLK_SRC_PLL2_1,
509 u8 ctrl_bit = ctrl_bits[channel];
511 if (clk_src == DSS_CLK_SRC_FCK) {
512 /* LCDx_CLK_SWITCH */
513 REG_FLD_MOD(dss, DSS_CONTROL, 0, ctrl_bit, ctrl_bit);
517 if (WARN_ON(allowed_plls[channel] != clk_src))
520 REG_FLD_MOD(dss, DSS_CONTROL, 1, ctrl_bit, ctrl_bit);
525 static int dss_lcd_clk_mux_omap4(struct dss_device *dss,
526 enum omap_channel channel,
527 enum dss_clk_source clk_src)
529 const u8 ctrl_bits[] = {
530 [OMAP_DSS_CHANNEL_LCD] = 0,
531 [OMAP_DSS_CHANNEL_LCD2] = 12,
533 const enum dss_clk_source allowed_plls[] = {
534 [OMAP_DSS_CHANNEL_LCD] = DSS_CLK_SRC_PLL1_1,
535 [OMAP_DSS_CHANNEL_LCD2] = DSS_CLK_SRC_PLL2_1,
538 u8 ctrl_bit = ctrl_bits[channel];
540 if (clk_src == DSS_CLK_SRC_FCK) {
541 /* LCDx_CLK_SWITCH */
542 REG_FLD_MOD(dss, DSS_CONTROL, 0, ctrl_bit, ctrl_bit);
546 if (WARN_ON(allowed_plls[channel] != clk_src))
549 REG_FLD_MOD(dss, DSS_CONTROL, 1, ctrl_bit, ctrl_bit);
554 void dss_select_lcd_clk_source(struct dss_device *dss,
555 enum omap_channel channel,
556 enum dss_clk_source clk_src)
558 int idx = dss_get_channel_index(channel);
561 if (!dss->feat->has_lcd_clk_src) {
562 dss_select_dispc_clk_source(dss, clk_src);
563 dss->lcd_clk_source[idx] = clk_src;
567 r = dss->feat->ops->select_lcd_source(dss, channel, clk_src);
571 dss->lcd_clk_source[idx] = clk_src;
574 enum dss_clk_source dss_get_dispc_clk_source(struct dss_device *dss)
576 return dss->dispc_clk_source;
579 enum dss_clk_source dss_get_dsi_clk_source(struct dss_device *dss,
582 return dss->dsi_clk_source[dsi_module];
585 enum dss_clk_source dss_get_lcd_clk_source(struct dss_device *dss,
586 enum omap_channel channel)
588 if (dss->feat->has_lcd_clk_src) {
589 int idx = dss_get_channel_index(channel);
590 return dss->lcd_clk_source[idx];
592 /* LCD_CLK source is the same as DISPC_FCLK source for
594 return dss->dispc_clk_source;
598 bool dss_div_calc(struct dss_device *dss, unsigned long pck,
599 unsigned long fck_min, dss_div_calc_func func, void *data)
601 int fckd, fckd_start, fckd_stop;
603 unsigned long fck_hw_max;
604 unsigned long fckd_hw_max;
608 fck_hw_max = dss->feat->fck_freq_max;
610 if (dss->parent_clk == NULL) {
613 pckd = fck_hw_max / pck;
617 fck = clk_round_rate(dss->dss_clk, fck);
619 return func(fck, data);
622 fckd_hw_max = dss->feat->fck_div_max;
624 m = dss->feat->dss_fck_multiplier;
625 prate = clk_get_rate(dss->parent_clk);
627 fck_min = fck_min ? fck_min : 1;
629 fckd_start = min(prate * m / fck_min, fckd_hw_max);
630 fckd_stop = max(DIV_ROUND_UP(prate * m, fck_hw_max), 1ul);
632 for (fckd = fckd_start; fckd >= fckd_stop; --fckd) {
633 fck = DIV_ROUND_UP(prate, fckd) * m;
642 int dss_set_fck_rate(struct dss_device *dss, unsigned long rate)
646 DSSDBG("set fck to %lu\n", rate);
648 r = clk_set_rate(dss->dss_clk, rate);
652 dss->dss_clk_rate = clk_get_rate(dss->dss_clk);
654 WARN_ONCE(dss->dss_clk_rate != rate, "clk rate mismatch: %lu != %lu",
655 dss->dss_clk_rate, rate);
660 unsigned long dss_get_dispc_clk_rate(struct dss_device *dss)
662 return dss->dss_clk_rate;
665 unsigned long dss_get_max_fck_rate(struct dss_device *dss)
667 return dss->feat->fck_freq_max;
670 static int dss_setup_default_clock(struct dss_device *dss)
672 unsigned long max_dss_fck, prate;
674 unsigned int fck_div;
677 max_dss_fck = dss->feat->fck_freq_max;
679 if (dss->parent_clk == NULL) {
680 fck = clk_round_rate(dss->dss_clk, max_dss_fck);
682 prate = clk_get_rate(dss->parent_clk);
684 fck_div = DIV_ROUND_UP(prate * dss->feat->dss_fck_multiplier,
686 fck = DIV_ROUND_UP(prate, fck_div)
687 * dss->feat->dss_fck_multiplier;
690 r = dss_set_fck_rate(dss, fck);
697 void dss_set_venc_output(struct dss_device *dss, enum omap_dss_venc_type type)
701 if (type == OMAP_DSS_VENC_TYPE_COMPOSITE)
703 else if (type == OMAP_DSS_VENC_TYPE_SVIDEO)
708 /* venc out selection. 0 = comp, 1 = svideo */
709 REG_FLD_MOD(dss, DSS_CONTROL, l, 6, 6);
712 void dss_set_dac_pwrdn_bgz(struct dss_device *dss, bool enable)
714 /* DAC Power-Down Control */
715 REG_FLD_MOD(dss, DSS_CONTROL, enable, 5, 5);
718 void dss_select_hdmi_venc_clk_source(struct dss_device *dss,
719 enum dss_hdmi_venc_clk_source_select src)
721 enum omap_dss_output_id outputs;
723 outputs = dss->feat->outputs[OMAP_DSS_CHANNEL_DIGIT];
725 /* Complain about invalid selections */
726 WARN_ON((src == DSS_VENC_TV_CLK) && !(outputs & OMAP_DSS_OUTPUT_VENC));
727 WARN_ON((src == DSS_HDMI_M_PCLK) && !(outputs & OMAP_DSS_OUTPUT_HDMI));
729 /* Select only if we have options */
730 if ((outputs & OMAP_DSS_OUTPUT_VENC) &&
731 (outputs & OMAP_DSS_OUTPUT_HDMI))
732 /* VENC_HDMI_SWITCH */
733 REG_FLD_MOD(dss, DSS_CONTROL, src, 15, 15);
736 static int dss_dpi_select_source_omap2_omap3(struct dss_device *dss, int port,
737 enum omap_channel channel)
739 if (channel != OMAP_DSS_CHANNEL_LCD)
745 static int dss_dpi_select_source_omap4(struct dss_device *dss, int port,
746 enum omap_channel channel)
751 case OMAP_DSS_CHANNEL_LCD2:
754 case OMAP_DSS_CHANNEL_DIGIT:
761 REG_FLD_MOD(dss, DSS_CONTROL, val, 17, 17);
766 static int dss_dpi_select_source_omap5(struct dss_device *dss, int port,
767 enum omap_channel channel)
772 case OMAP_DSS_CHANNEL_LCD:
775 case OMAP_DSS_CHANNEL_LCD2:
778 case OMAP_DSS_CHANNEL_LCD3:
781 case OMAP_DSS_CHANNEL_DIGIT:
788 REG_FLD_MOD(dss, DSS_CONTROL, val, 17, 16);
793 static int dss_dpi_select_source_dra7xx(struct dss_device *dss, int port,
794 enum omap_channel channel)
798 return dss_dpi_select_source_omap5(dss, port, channel);
800 if (channel != OMAP_DSS_CHANNEL_LCD2)
804 if (channel != OMAP_DSS_CHANNEL_LCD3)
814 int dss_dpi_select_source(struct dss_device *dss, int port,
815 enum omap_channel channel)
817 return dss->feat->ops->dpi_select_source(dss, port, channel);
820 static int dss_get_clocks(struct dss_device *dss)
824 clk = devm_clk_get(&dss->pdev->dev, "fck");
826 DSSERR("can't get clock fck\n");
832 if (dss->feat->parent_clk_name) {
833 clk = clk_get(NULL, dss->feat->parent_clk_name);
835 DSSERR("Failed to get %s\n",
836 dss->feat->parent_clk_name);
843 dss->parent_clk = clk;
848 static void dss_put_clocks(struct dss_device *dss)
851 clk_put(dss->parent_clk);
854 int dss_runtime_get(struct dss_device *dss)
858 DSSDBG("dss_runtime_get\n");
860 r = pm_runtime_get_sync(&dss->pdev->dev);
861 if (WARN_ON(r < 0)) {
862 pm_runtime_put_noidle(&dss->pdev->dev);
868 void dss_runtime_put(struct dss_device *dss)
872 DSSDBG("dss_runtime_put\n");
874 r = pm_runtime_put_sync(&dss->pdev->dev);
875 WARN_ON(r < 0 && r != -ENOSYS && r != -EBUSY);
878 struct dss_device *dss_get_device(struct device *dev)
880 return dev_get_drvdata(dev);
884 #if defined(CONFIG_OMAP2_DSS_DEBUGFS)
885 static int dss_initialize_debugfs(struct dss_device *dss)
889 dir = debugfs_create_dir("omapdss", NULL);
893 dss->debugfs.root = dir;
898 static void dss_uninitialize_debugfs(struct dss_device *dss)
900 debugfs_remove_recursive(dss->debugfs.root);
903 struct dss_debugfs_entry {
904 struct dentry *dentry;
905 int (*show_fn)(struct seq_file *s, void *data);
909 static int dss_debug_open(struct inode *inode, struct file *file)
911 struct dss_debugfs_entry *entry = inode->i_private;
913 return single_open(file, entry->show_fn, entry->data);
916 static const struct file_operations dss_debug_fops = {
917 .open = dss_debug_open,
920 .release = single_release,
923 struct dss_debugfs_entry *
924 dss_debugfs_create_file(struct dss_device *dss, const char *name,
925 int (*show_fn)(struct seq_file *s, void *data),
928 struct dss_debugfs_entry *entry;
930 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
932 return ERR_PTR(-ENOMEM);
934 entry->show_fn = show_fn;
936 entry->dentry = debugfs_create_file(name, 0444, dss->debugfs.root,
937 entry, &dss_debug_fops);
942 void dss_debugfs_remove_file(struct dss_debugfs_entry *entry)
944 if (IS_ERR_OR_NULL(entry))
947 debugfs_remove(entry->dentry);
951 #else /* CONFIG_OMAP2_DSS_DEBUGFS */
952 static inline int dss_initialize_debugfs(struct dss_device *dss)
956 static inline void dss_uninitialize_debugfs(struct dss_device *dss)
959 #endif /* CONFIG_OMAP2_DSS_DEBUGFS */
961 static const struct dss_ops dss_ops_omap2_omap3 = {
962 .dpi_select_source = &dss_dpi_select_source_omap2_omap3,
965 static const struct dss_ops dss_ops_omap4 = {
966 .dpi_select_source = &dss_dpi_select_source_omap4,
967 .select_lcd_source = &dss_lcd_clk_mux_omap4,
970 static const struct dss_ops dss_ops_omap5 = {
971 .dpi_select_source = &dss_dpi_select_source_omap5,
972 .select_lcd_source = &dss_lcd_clk_mux_omap5,
975 static const struct dss_ops dss_ops_dra7 = {
976 .dpi_select_source = &dss_dpi_select_source_dra7xx,
977 .select_lcd_source = &dss_lcd_clk_mux_dra7,
980 static const enum omap_display_type omap2plus_ports[] = {
981 OMAP_DISPLAY_TYPE_DPI,
984 static const enum omap_display_type omap34xx_ports[] = {
985 OMAP_DISPLAY_TYPE_DPI,
986 OMAP_DISPLAY_TYPE_SDI,
989 static const enum omap_display_type dra7xx_ports[] = {
990 OMAP_DISPLAY_TYPE_DPI,
991 OMAP_DISPLAY_TYPE_DPI,
992 OMAP_DISPLAY_TYPE_DPI,
995 static const enum omap_dss_output_id omap2_dss_supported_outputs[] = {
996 /* OMAP_DSS_CHANNEL_LCD */
997 OMAP_DSS_OUTPUT_DPI | OMAP_DSS_OUTPUT_DBI,
999 /* OMAP_DSS_CHANNEL_DIGIT */
1000 OMAP_DSS_OUTPUT_VENC,
1003 static const enum omap_dss_output_id omap3430_dss_supported_outputs[] = {
1004 /* OMAP_DSS_CHANNEL_LCD */
1005 OMAP_DSS_OUTPUT_DPI | OMAP_DSS_OUTPUT_DBI |
1006 OMAP_DSS_OUTPUT_SDI | OMAP_DSS_OUTPUT_DSI1,
1008 /* OMAP_DSS_CHANNEL_DIGIT */
1009 OMAP_DSS_OUTPUT_VENC,
1012 static const enum omap_dss_output_id omap3630_dss_supported_outputs[] = {
1013 /* OMAP_DSS_CHANNEL_LCD */
1014 OMAP_DSS_OUTPUT_DPI | OMAP_DSS_OUTPUT_DBI |
1015 OMAP_DSS_OUTPUT_DSI1,
1017 /* OMAP_DSS_CHANNEL_DIGIT */
1018 OMAP_DSS_OUTPUT_VENC,
1021 static const enum omap_dss_output_id am43xx_dss_supported_outputs[] = {
1022 /* OMAP_DSS_CHANNEL_LCD */
1023 OMAP_DSS_OUTPUT_DPI | OMAP_DSS_OUTPUT_DBI,
1026 static const enum omap_dss_output_id omap4_dss_supported_outputs[] = {
1027 /* OMAP_DSS_CHANNEL_LCD */
1028 OMAP_DSS_OUTPUT_DBI | OMAP_DSS_OUTPUT_DSI1,
1030 /* OMAP_DSS_CHANNEL_DIGIT */
1031 OMAP_DSS_OUTPUT_VENC | OMAP_DSS_OUTPUT_HDMI,
1033 /* OMAP_DSS_CHANNEL_LCD2 */
1034 OMAP_DSS_OUTPUT_DPI | OMAP_DSS_OUTPUT_DBI |
1035 OMAP_DSS_OUTPUT_DSI2,
1038 static const enum omap_dss_output_id omap5_dss_supported_outputs[] = {
1039 /* OMAP_DSS_CHANNEL_LCD */
1040 OMAP_DSS_OUTPUT_DPI | OMAP_DSS_OUTPUT_DBI |
1041 OMAP_DSS_OUTPUT_DSI1 | OMAP_DSS_OUTPUT_DSI2,
1043 /* OMAP_DSS_CHANNEL_DIGIT */
1044 OMAP_DSS_OUTPUT_HDMI,
1046 /* OMAP_DSS_CHANNEL_LCD2 */
1047 OMAP_DSS_OUTPUT_DPI | OMAP_DSS_OUTPUT_DBI |
1048 OMAP_DSS_OUTPUT_DSI1,
1050 /* OMAP_DSS_CHANNEL_LCD3 */
1051 OMAP_DSS_OUTPUT_DPI | OMAP_DSS_OUTPUT_DBI |
1052 OMAP_DSS_OUTPUT_DSI2,
1055 static const struct dss_features omap24xx_dss_feats = {
1056 .model = DSS_MODEL_OMAP2,
1058 * fck div max is really 16, but the divider range has gaps. The range
1059 * from 1 to 6 has no gaps, so let's use that as a max.
1062 .fck_freq_max = 133000000,
1063 .dss_fck_multiplier = 2,
1064 .parent_clk_name = "core_ck",
1065 .ports = omap2plus_ports,
1066 .num_ports = ARRAY_SIZE(omap2plus_ports),
1067 .outputs = omap2_dss_supported_outputs,
1068 .ops = &dss_ops_omap2_omap3,
1069 .dispc_clk_switch = { 0, 0 },
1070 .has_lcd_clk_src = false,
1073 static const struct dss_features omap34xx_dss_feats = {
1074 .model = DSS_MODEL_OMAP3,
1076 .fck_freq_max = 173000000,
1077 .dss_fck_multiplier = 2,
1078 .parent_clk_name = "dpll4_ck",
1079 .ports = omap34xx_ports,
1080 .outputs = omap3430_dss_supported_outputs,
1081 .num_ports = ARRAY_SIZE(omap34xx_ports),
1082 .ops = &dss_ops_omap2_omap3,
1083 .dispc_clk_switch = { 0, 0 },
1084 .has_lcd_clk_src = false,
1087 static const struct dss_features omap3630_dss_feats = {
1088 .model = DSS_MODEL_OMAP3,
1090 .fck_freq_max = 173000000,
1091 .dss_fck_multiplier = 1,
1092 .parent_clk_name = "dpll4_ck",
1093 .ports = omap2plus_ports,
1094 .num_ports = ARRAY_SIZE(omap2plus_ports),
1095 .outputs = omap3630_dss_supported_outputs,
1096 .ops = &dss_ops_omap2_omap3,
1097 .dispc_clk_switch = { 0, 0 },
1098 .has_lcd_clk_src = false,
1101 static const struct dss_features omap44xx_dss_feats = {
1102 .model = DSS_MODEL_OMAP4,
1104 .fck_freq_max = 186000000,
1105 .dss_fck_multiplier = 1,
1106 .parent_clk_name = "dpll_per_x2_ck",
1107 .ports = omap2plus_ports,
1108 .num_ports = ARRAY_SIZE(omap2plus_ports),
1109 .outputs = omap4_dss_supported_outputs,
1110 .ops = &dss_ops_omap4,
1111 .dispc_clk_switch = { 9, 8 },
1112 .has_lcd_clk_src = true,
1115 static const struct dss_features omap54xx_dss_feats = {
1116 .model = DSS_MODEL_OMAP5,
1118 .fck_freq_max = 209250000,
1119 .dss_fck_multiplier = 1,
1120 .parent_clk_name = "dpll_per_x2_ck",
1121 .ports = omap2plus_ports,
1122 .num_ports = ARRAY_SIZE(omap2plus_ports),
1123 .outputs = omap5_dss_supported_outputs,
1124 .ops = &dss_ops_omap5,
1125 .dispc_clk_switch = { 9, 7 },
1126 .has_lcd_clk_src = true,
1129 static const struct dss_features am43xx_dss_feats = {
1130 .model = DSS_MODEL_OMAP3,
1132 .fck_freq_max = 200000000,
1133 .dss_fck_multiplier = 0,
1134 .parent_clk_name = NULL,
1135 .ports = omap2plus_ports,
1136 .num_ports = ARRAY_SIZE(omap2plus_ports),
1137 .outputs = am43xx_dss_supported_outputs,
1138 .ops = &dss_ops_omap2_omap3,
1139 .dispc_clk_switch = { 0, 0 },
1140 .has_lcd_clk_src = true,
1143 static const struct dss_features dra7xx_dss_feats = {
1144 .model = DSS_MODEL_DRA7,
1146 .fck_freq_max = 209250000,
1147 .dss_fck_multiplier = 1,
1148 .parent_clk_name = "dpll_per_x2_ck",
1149 .ports = dra7xx_ports,
1150 .num_ports = ARRAY_SIZE(dra7xx_ports),
1151 .outputs = omap5_dss_supported_outputs,
1152 .ops = &dss_ops_dra7,
1153 .dispc_clk_switch = { 9, 7 },
1154 .has_lcd_clk_src = true,
1157 static void __dss_uninit_ports(struct dss_device *dss, unsigned int num_ports)
1159 struct platform_device *pdev = dss->pdev;
1160 struct device_node *parent = pdev->dev.of_node;
1161 struct device_node *port;
1164 for (i = 0; i < num_ports; i++) {
1165 port = of_graph_get_port_by_id(parent, i);
1169 switch (dss->feat->ports[i]) {
1170 case OMAP_DISPLAY_TYPE_DPI:
1171 dpi_uninit_port(port);
1173 case OMAP_DISPLAY_TYPE_SDI:
1174 sdi_uninit_port(port);
1182 static int dss_init_ports(struct dss_device *dss)
1184 struct platform_device *pdev = dss->pdev;
1185 struct device_node *parent = pdev->dev.of_node;
1186 struct device_node *port;
1190 for (i = 0; i < dss->feat->num_ports; i++) {
1191 port = of_graph_get_port_by_id(parent, i);
1195 switch (dss->feat->ports[i]) {
1196 case OMAP_DISPLAY_TYPE_DPI:
1197 r = dpi_init_port(dss, pdev, port, dss->feat->model);
1202 case OMAP_DISPLAY_TYPE_SDI:
1203 r = sdi_init_port(dss, pdev, port);
1216 __dss_uninit_ports(dss, i);
1220 static void dss_uninit_ports(struct dss_device *dss)
1222 __dss_uninit_ports(dss, dss->feat->num_ports);
1225 static int dss_video_pll_probe(struct dss_device *dss)
1227 struct platform_device *pdev = dss->pdev;
1228 struct device_node *np = pdev->dev.of_node;
1229 struct regulator *pll_regulator;
1235 if (of_property_read_bool(np, "syscon-pll-ctrl")) {
1236 dss->syscon_pll_ctrl = syscon_regmap_lookup_by_phandle(np,
1238 if (IS_ERR(dss->syscon_pll_ctrl)) {
1240 "failed to get syscon-pll-ctrl regmap\n");
1241 return PTR_ERR(dss->syscon_pll_ctrl);
1244 if (of_property_read_u32_index(np, "syscon-pll-ctrl", 1,
1245 &dss->syscon_pll_ctrl_offset)) {
1247 "failed to get syscon-pll-ctrl offset\n");
1252 pll_regulator = devm_regulator_get(&pdev->dev, "vdda_video");
1253 if (IS_ERR(pll_regulator)) {
1254 r = PTR_ERR(pll_regulator);
1258 pll_regulator = NULL;
1262 return -EPROBE_DEFER;
1265 DSSERR("can't get DPLL VDDA regulator\n");
1270 if (of_property_match_string(np, "reg-names", "pll1") >= 0) {
1271 dss->video1_pll = dss_video_pll_init(dss, pdev, 0,
1273 if (IS_ERR(dss->video1_pll))
1274 return PTR_ERR(dss->video1_pll);
1277 if (of_property_match_string(np, "reg-names", "pll2") >= 0) {
1278 dss->video2_pll = dss_video_pll_init(dss, pdev, 1,
1280 if (IS_ERR(dss->video2_pll)) {
1281 dss_video_pll_uninit(dss->video1_pll);
1282 return PTR_ERR(dss->video2_pll);
1289 /* DSS HW IP initialisation */
1290 static const struct of_device_id dss_of_match[] = {
1291 { .compatible = "ti,omap2-dss", .data = &omap24xx_dss_feats },
1292 { .compatible = "ti,omap3-dss", .data = &omap3630_dss_feats },
1293 { .compatible = "ti,omap4-dss", .data = &omap44xx_dss_feats },
1294 { .compatible = "ti,omap5-dss", .data = &omap54xx_dss_feats },
1295 { .compatible = "ti,dra7-dss", .data = &dra7xx_dss_feats },
1298 MODULE_DEVICE_TABLE(of, dss_of_match);
1300 static const struct soc_device_attribute dss_soc_devices[] = {
1301 { .machine = "OMAP3430/3530", .data = &omap34xx_dss_feats },
1302 { .machine = "AM35??", .data = &omap34xx_dss_feats },
1303 { .family = "AM43xx", .data = &am43xx_dss_feats },
1307 static int dss_bind(struct device *dev)
1309 struct dss_device *dss = dev_get_drvdata(dev);
1310 struct platform_device *drm_pdev;
1311 struct dss_pdata pdata;
1314 r = component_bind_all(dev, NULL);
1318 pm_set_vt_switch(0);
1321 drm_pdev = platform_device_register_data(NULL, "omapdrm", 0,
1322 &pdata, sizeof(pdata));
1323 if (IS_ERR(drm_pdev)) {
1324 component_unbind_all(dev, NULL);
1325 return PTR_ERR(drm_pdev);
1328 dss->drm_pdev = drm_pdev;
1333 static void dss_unbind(struct device *dev)
1335 struct dss_device *dss = dev_get_drvdata(dev);
1337 platform_device_unregister(dss->drm_pdev);
1339 component_unbind_all(dev, NULL);
1342 static const struct component_master_ops dss_component_ops = {
1344 .unbind = dss_unbind,
1347 static int dss_component_compare(struct device *dev, void *data)
1349 struct device *child = data;
1350 return dev == child;
1353 struct dss_component_match_data {
1355 struct component_match **match;
1358 static int dss_add_child_component(struct device *dev, void *data)
1360 struct dss_component_match_data *cmatch = data;
1361 struct component_match **match = cmatch->match;
1365 * We don't have a working driver for rfbi, so skip it here always.
1366 * Otherwise dss will never get probed successfully, as it will wait
1367 * for rfbi to get probed.
1369 if (strstr(dev_name(dev), "rfbi"))
1373 * Handle possible interconnect target modules defined within the DSS.
1374 * The DSS components can be children of an interconnect target module
1375 * after the device tree has been updated for the module data.
1376 * See also omapdss_boot_init() for compatible fixup.
1378 if (strstr(dev_name(dev), "target-module"))
1379 return device_for_each_child(dev, cmatch,
1380 dss_add_child_component);
1382 component_match_add(cmatch->dev, match, dss_component_compare, dev);
1387 static int dss_probe_hardware(struct dss_device *dss)
1392 r = dss_runtime_get(dss);
1396 dss->dss_clk_rate = clk_get_rate(dss->dss_clk);
1399 REG_FLD_MOD(dss, DSS_CONTROL, 0, 0, 0);
1401 dss_select_dispc_clk_source(dss, DSS_CLK_SRC_FCK);
1403 #ifdef CONFIG_OMAP2_DSS_VENC
1404 REG_FLD_MOD(dss, DSS_CONTROL, 1, 4, 4); /* venc dac demen */
1405 REG_FLD_MOD(dss, DSS_CONTROL, 1, 3, 3); /* venc clock 4x enable */
1406 REG_FLD_MOD(dss, DSS_CONTROL, 0, 2, 2); /* venc clock mode = normal */
1408 dss->dsi_clk_source[0] = DSS_CLK_SRC_FCK;
1409 dss->dsi_clk_source[1] = DSS_CLK_SRC_FCK;
1410 dss->dispc_clk_source = DSS_CLK_SRC_FCK;
1411 dss->lcd_clk_source[0] = DSS_CLK_SRC_FCK;
1412 dss->lcd_clk_source[1] = DSS_CLK_SRC_FCK;
1414 rev = dss_read_reg(dss, DSS_REVISION);
1415 pr_info("OMAP DSS rev %d.%d\n", FLD_GET(rev, 7, 4), FLD_GET(rev, 3, 0));
1417 dss_runtime_put(dss);
1422 static int dss_probe(struct platform_device *pdev)
1424 const struct soc_device_attribute *soc;
1425 struct dss_component_match_data cmatch;
1426 struct component_match *match = NULL;
1427 struct resource *dss_mem;
1428 struct dss_device *dss;
1431 dss = kzalloc(sizeof(*dss), GFP_KERNEL);
1436 platform_set_drvdata(pdev, dss);
1438 r = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
1440 dev_err(&pdev->dev, "Failed to set the DMA mask\n");
1445 * The various OMAP3-based SoCs can't be told apart using the compatible
1446 * string, use SoC device matching.
1448 soc = soc_device_match(dss_soc_devices);
1450 dss->feat = soc->data;
1452 dss->feat = of_match_device(dss_of_match, &pdev->dev)->data;
1454 /* Map I/O registers, get and setup clocks. */
1455 dss_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1456 dss->base = devm_ioremap_resource(&pdev->dev, dss_mem);
1457 if (IS_ERR(dss->base)) {
1458 r = PTR_ERR(dss->base);
1462 r = dss_get_clocks(dss);
1466 r = dss_setup_default_clock(dss);
1468 goto err_put_clocks;
1470 /* Setup the video PLLs and the DPI and SDI ports. */
1471 r = dss_video_pll_probe(dss);
1473 goto err_put_clocks;
1475 r = dss_init_ports(dss);
1477 goto err_uninit_plls;
1479 /* Enable runtime PM and probe the hardware. */
1480 pm_runtime_enable(&pdev->dev);
1482 r = dss_probe_hardware(dss);
1484 goto err_pm_runtime_disable;
1486 /* Initialize debugfs. */
1487 r = dss_initialize_debugfs(dss);
1489 goto err_pm_runtime_disable;
1491 dss->debugfs.clk = dss_debugfs_create_file(dss, "clk",
1492 dss_debug_dump_clocks, dss);
1493 dss->debugfs.dss = dss_debugfs_create_file(dss, "dss", dss_dump_regs,
1496 /* Add all the child devices as components. */
1497 r = of_platform_populate(pdev->dev.of_node, NULL, NULL, &pdev->dev);
1499 goto err_uninit_debugfs;
1501 omapdss_gather_components(&pdev->dev);
1503 cmatch.dev = &pdev->dev;
1504 cmatch.match = &match;
1505 device_for_each_child(&pdev->dev, &cmatch, dss_add_child_component);
1507 r = component_master_add_with_match(&pdev->dev, &dss_component_ops, match);
1509 goto err_of_depopulate;
1514 of_platform_depopulate(&pdev->dev);
1517 dss_debugfs_remove_file(dss->debugfs.clk);
1518 dss_debugfs_remove_file(dss->debugfs.dss);
1519 dss_uninitialize_debugfs(dss);
1521 err_pm_runtime_disable:
1522 pm_runtime_disable(&pdev->dev);
1523 dss_uninit_ports(dss);
1526 if (dss->video1_pll)
1527 dss_video_pll_uninit(dss->video1_pll);
1528 if (dss->video2_pll)
1529 dss_video_pll_uninit(dss->video2_pll);
1532 dss_put_clocks(dss);
1540 static int dss_remove(struct platform_device *pdev)
1542 struct dss_device *dss = platform_get_drvdata(pdev);
1544 of_platform_depopulate(&pdev->dev);
1546 component_master_del(&pdev->dev, &dss_component_ops);
1548 dss_debugfs_remove_file(dss->debugfs.clk);
1549 dss_debugfs_remove_file(dss->debugfs.dss);
1550 dss_uninitialize_debugfs(dss);
1552 pm_runtime_disable(&pdev->dev);
1554 dss_uninit_ports(dss);
1556 if (dss->video1_pll)
1557 dss_video_pll_uninit(dss->video1_pll);
1559 if (dss->video2_pll)
1560 dss_video_pll_uninit(dss->video2_pll);
1562 dss_put_clocks(dss);
1569 static void dss_shutdown(struct platform_device *pdev)
1571 DSSDBG("shutdown\n");
1574 static int dss_runtime_suspend(struct device *dev)
1576 struct dss_device *dss = dev_get_drvdata(dev);
1578 dss_save_context(dss);
1579 dss_set_min_bus_tput(dev, 0);
1581 pinctrl_pm_select_sleep_state(dev);
1586 static int dss_runtime_resume(struct device *dev)
1588 struct dss_device *dss = dev_get_drvdata(dev);
1591 pinctrl_pm_select_default_state(dev);
1594 * Set an arbitrarily high tput request to ensure OPP100.
1595 * What we should really do is to make a request to stay in OPP100,
1596 * without any tput requirements, but that is not currently possible
1600 r = dss_set_min_bus_tput(dev, 1000000000);
1604 dss_restore_context(dss);
1608 static const struct dev_pm_ops dss_pm_ops = {
1609 .runtime_suspend = dss_runtime_suspend,
1610 .runtime_resume = dss_runtime_resume,
1611 SET_LATE_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, pm_runtime_force_resume)
1614 struct platform_driver omap_dsshw_driver = {
1616 .remove = dss_remove,
1617 .shutdown = dss_shutdown,
1619 .name = "omapdss_dss",
1621 .of_match_table = dss_of_match,
1622 .suppress_bind_attrs = true,
1627 static struct platform_driver * const omap_dss_drivers[] = {
1629 &omap_dispchw_driver,
1630 #ifdef CONFIG_OMAP2_DSS_DSI
1633 #ifdef CONFIG_OMAP2_DSS_VENC
1634 &omap_venchw_driver,
1636 #ifdef CONFIG_OMAP4_DSS_HDMI
1637 &omapdss_hdmi4hw_driver,
1639 #ifdef CONFIG_OMAP5_DSS_HDMI
1640 &omapdss_hdmi5hw_driver,
1644 int __init omap_dss_init(void)
1646 return platform_register_drivers(omap_dss_drivers,
1647 ARRAY_SIZE(omap_dss_drivers));
1650 void omap_dss_exit(void)
1652 platform_unregister_drivers(omap_dss_drivers,
1653 ARRAY_SIZE(omap_dss_drivers));