2 * linux/drivers/video/omap2/dss/dss.c
4 * Copyright (C) 2009 Nokia Corporation
5 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
7 * Some code and ideas taken from drivers/video/omap/ driver
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published by
12 * the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * You should have received a copy of the GNU General Public License along with
20 * this program. If not, see <http://www.gnu.org/licenses/>.
23 #define DSS_SUBSYS_NAME "DSS"
25 #include <linux/kernel.h>
27 #include <linux/err.h>
28 #include <linux/delay.h>
29 #include <linux/interrupt.h>
30 #include <linux/seq_file.h>
31 #include <linux/clk.h>
33 #include <plat/display.h>
36 #define DSS_BASE 0x48050000
38 #define DSS_SZ_REGS SZ_512
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_IRQSTATUS DSS_REG(0x0018)
50 #define DSS_CONTROL DSS_REG(0x0040)
51 #define DSS_SDI_CONTROL DSS_REG(0x0044)
52 #define DSS_PLL_CONTROL DSS_REG(0x0048)
53 #define DSS_SDI_STATUS DSS_REG(0x005C)
55 #define REG_GET(idx, start, end) \
56 FLD_GET(dss_read_reg(idx), start, end)
58 #define REG_FLD_MOD(idx, val, start, end) \
59 dss_write_reg(idx, FLD_MOD(dss_read_reg(idx), val, start, end))
64 struct clk
*dpll4_m4_ck
;
66 unsigned long cache_req_pck
;
67 unsigned long cache_prate
;
68 struct dss_clock_info cache_dss_cinfo
;
69 struct dispc_clock_info cache_dispc_cinfo
;
71 u32 ctx
[DSS_SZ_REGS
/ sizeof(u32
)];
74 static int _omap_dss_wait_reset(void);
76 static inline void dss_write_reg(const struct dss_reg idx
, u32 val
)
78 __raw_writel(val
, dss
.base
+ idx
.idx
);
81 static inline u32
dss_read_reg(const struct dss_reg idx
)
83 return __raw_readl(dss
.base
+ idx
.idx
);
87 dss.ctx[(DSS_##reg).idx / sizeof(u32)] = dss_read_reg(DSS_##reg)
89 dss_write_reg(DSS_##reg, dss.ctx[(DSS_##reg).idx / sizeof(u32)])
91 void dss_save_context(void)
93 if (cpu_is_omap24xx())
99 #ifdef CONFIG_OMAP2_DSS_SDI
105 void dss_restore_context(void)
107 if (_omap_dss_wait_reset())
108 DSSERR("DSS not coming out of reset after sleep\n");
113 #ifdef CONFIG_OMAP2_DSS_SDI
122 void dss_sdi_init(u8 datapairs
)
126 BUG_ON(datapairs
> 3 || datapairs
< 1);
128 l
= dss_read_reg(DSS_SDI_CONTROL
);
129 l
= FLD_MOD(l
, 0xf, 19, 15); /* SDI_PDIV */
130 l
= FLD_MOD(l
, datapairs
-1, 3, 2); /* SDI_PRSEL */
131 l
= FLD_MOD(l
, 2, 1, 0); /* SDI_BWSEL */
132 dss_write_reg(DSS_SDI_CONTROL
, l
);
134 l
= dss_read_reg(DSS_PLL_CONTROL
);
135 l
= FLD_MOD(l
, 0x7, 25, 22); /* SDI_PLL_FREQSEL */
136 l
= FLD_MOD(l
, 0xb, 16, 11); /* SDI_PLL_REGN */
137 l
= FLD_MOD(l
, 0xb4, 10, 1); /* SDI_PLL_REGM */
138 dss_write_reg(DSS_PLL_CONTROL
, l
);
141 int dss_sdi_enable(void)
143 unsigned long timeout
;
145 dispc_pck_free_enable(1);
148 REG_FLD_MOD(DSS_PLL_CONTROL
, 1, 18, 18); /* SDI_PLL_SYSRESET */
149 udelay(1); /* wait 2x PCLK */
152 REG_FLD_MOD(DSS_PLL_CONTROL
, 1, 28, 28); /* SDI_PLL_GOBIT */
154 /* Waiting for PLL lock request to complete */
155 timeout
= jiffies
+ msecs_to_jiffies(500);
156 while (dss_read_reg(DSS_SDI_STATUS
) & (1 << 6)) {
157 if (time_after_eq(jiffies
, timeout
)) {
158 DSSERR("PLL lock request timed out\n");
163 /* Clearing PLL_GO bit */
164 REG_FLD_MOD(DSS_PLL_CONTROL
, 0, 28, 28);
166 /* Waiting for PLL to lock */
167 timeout
= jiffies
+ msecs_to_jiffies(500);
168 while (!(dss_read_reg(DSS_SDI_STATUS
) & (1 << 5))) {
169 if (time_after_eq(jiffies
, timeout
)) {
170 DSSERR("PLL lock timed out\n");
175 dispc_lcd_enable_signal(1);
177 /* Waiting for SDI reset to complete */
178 timeout
= jiffies
+ msecs_to_jiffies(500);
179 while (!(dss_read_reg(DSS_SDI_STATUS
) & (1 << 2))) {
180 if (time_after_eq(jiffies
, timeout
)) {
181 DSSERR("SDI reset timed out\n");
189 dispc_lcd_enable_signal(0);
192 REG_FLD_MOD(DSS_PLL_CONTROL
, 0, 18, 18); /* SDI_PLL_SYSRESET */
194 dispc_pck_free_enable(0);
199 void dss_sdi_disable(void)
201 dispc_lcd_enable_signal(0);
203 dispc_pck_free_enable(0);
206 REG_FLD_MOD(DSS_PLL_CONTROL
, 0, 18, 18); /* SDI_PLL_SYSRESET */
209 void dss_dump_clocks(struct seq_file
*s
)
211 unsigned long dpll4_ck_rate
;
212 unsigned long dpll4_m4_ck_rate
;
214 dss_clk_enable(DSS_CLK_ICK
| DSS_CLK_FCK1
);
216 dpll4_ck_rate
= clk_get_rate(clk_get_parent(dss
.dpll4_m4_ck
));
217 dpll4_m4_ck_rate
= clk_get_rate(dss
.dpll4_m4_ck
);
219 seq_printf(s
, "- DSS -\n");
221 seq_printf(s
, "dpll4_ck %lu\n", dpll4_ck_rate
);
223 seq_printf(s
, "dss1_alwon_fclk = %lu / %lu * 2 = %lu\n",
225 dpll4_ck_rate
/ dpll4_m4_ck_rate
,
226 dss_clk_get_rate(DSS_CLK_FCK1
));
228 dss_clk_disable(DSS_CLK_ICK
| DSS_CLK_FCK1
);
231 void dss_dump_regs(struct seq_file
*s
)
233 #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, dss_read_reg(r))
235 dss_clk_enable(DSS_CLK_ICK
| DSS_CLK_FCK1
);
237 DUMPREG(DSS_REVISION
);
238 DUMPREG(DSS_SYSCONFIG
);
239 DUMPREG(DSS_SYSSTATUS
);
240 DUMPREG(DSS_IRQSTATUS
);
241 DUMPREG(DSS_CONTROL
);
242 DUMPREG(DSS_SDI_CONTROL
);
243 DUMPREG(DSS_PLL_CONTROL
);
244 DUMPREG(DSS_SDI_STATUS
);
246 dss_clk_disable(DSS_CLK_ICK
| DSS_CLK_FCK1
);
250 void dss_select_clk_source(bool dsi
, bool dispc
)
253 r
= dss_read_reg(DSS_CONTROL
);
254 r
= FLD_MOD(r
, dsi
, 1, 1); /* DSI_CLK_SWITCH */
255 r
= FLD_MOD(r
, dispc
, 0, 0); /* DISPC_CLK_SWITCH */
256 dss_write_reg(DSS_CONTROL
, r
);
259 int dss_get_dsi_clk_source(void)
261 return FLD_GET(dss_read_reg(DSS_CONTROL
), 1, 1);
264 int dss_get_dispc_clk_source(void)
266 return FLD_GET(dss_read_reg(DSS_CONTROL
), 0, 0);
269 /* calculate clock rates using dividers in cinfo */
270 int dss_calc_clock_rates(struct dss_clock_info
*cinfo
)
274 if (cinfo
->fck_div
> 16 || cinfo
->fck_div
== 0)
277 prate
= clk_get_rate(clk_get_parent(dss
.dpll4_m4_ck
));
279 cinfo
->fck
= prate
/ cinfo
->fck_div
;
284 int dss_set_clock_div(struct dss_clock_info
*cinfo
)
289 if (cpu_is_omap34xx()) {
290 prate
= clk_get_rate(clk_get_parent(dss
.dpll4_m4_ck
));
291 DSSDBG("dpll4_m4 = %ld\n", prate
);
293 r
= clk_set_rate(dss
.dpll4_m4_ck
, prate
/ cinfo
->fck_div
);
298 DSSDBG("fck = %ld (%d)\n", cinfo
->fck
, cinfo
->fck_div
);
303 int dss_get_clock_div(struct dss_clock_info
*cinfo
)
305 cinfo
->fck
= dss_clk_get_rate(DSS_CLK_FCK1
);
307 if (cpu_is_omap34xx()) {
309 prate
= clk_get_rate(clk_get_parent(dss
.dpll4_m4_ck
));
310 cinfo
->fck_div
= prate
/ (cinfo
->fck
/ 2);
318 unsigned long dss_get_dpll4_rate(void)
320 if (cpu_is_omap34xx())
321 return clk_get_rate(clk_get_parent(dss
.dpll4_m4_ck
));
326 int dss_calc_clock_div(bool is_tft
, unsigned long req_pck
,
327 struct dss_clock_info
*dss_cinfo
,
328 struct dispc_clock_info
*dispc_cinfo
)
331 struct dss_clock_info best_dss
;
332 struct dispc_clock_info best_dispc
;
341 prate
= dss_get_dpll4_rate();
343 fck
= dss_clk_get_rate(DSS_CLK_FCK1
);
344 if (req_pck
== dss
.cache_req_pck
&&
345 ((cpu_is_omap34xx() && prate
== dss
.cache_prate
) ||
346 dss
.cache_dss_cinfo
.fck
== fck
)) {
347 DSSDBG("dispc clock info found from cache.\n");
348 *dss_cinfo
= dss
.cache_dss_cinfo
;
349 *dispc_cinfo
= dss
.cache_dispc_cinfo
;
353 min_fck_per_pck
= CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK
;
355 if (min_fck_per_pck
&&
356 req_pck
* min_fck_per_pck
> DISPC_MAX_FCK
) {
357 DSSERR("Requested pixel clock not possible with the current "
358 "OMAP2_DSS_MIN_FCK_PER_PCK setting. Turning "
359 "the constraint off.\n");
364 memset(&best_dss
, 0, sizeof(best_dss
));
365 memset(&best_dispc
, 0, sizeof(best_dispc
));
367 if (cpu_is_omap24xx()) {
368 struct dispc_clock_info cur_dispc
;
369 /* XXX can we change the clock on omap2? */
370 fck
= dss_clk_get_rate(DSS_CLK_FCK1
);
373 dispc_find_clk_divs(is_tft
, req_pck
, fck
, &cur_dispc
);
377 best_dss
.fck_div
= fck_div
;
379 best_dispc
= cur_dispc
;
382 } else if (cpu_is_omap34xx()) {
383 for (fck_div
= 16; fck_div
> 0; --fck_div
) {
384 struct dispc_clock_info cur_dispc
;
386 fck
= prate
/ fck_div
* 2;
388 if (fck
> DISPC_MAX_FCK
)
391 if (min_fck_per_pck
&&
392 fck
< req_pck
* min_fck_per_pck
)
397 dispc_find_clk_divs(is_tft
, req_pck
, fck
, &cur_dispc
);
399 if (abs(cur_dispc
.pck
- req_pck
) <
400 abs(best_dispc
.pck
- req_pck
)) {
403 best_dss
.fck_div
= fck_div
;
405 best_dispc
= cur_dispc
;
407 if (cur_dispc
.pck
== req_pck
)
417 if (min_fck_per_pck
) {
418 DSSERR("Could not find suitable clock settings.\n"
419 "Turning FCK/PCK constraint off and"
425 DSSERR("Could not find suitable clock settings.\n");
431 *dss_cinfo
= best_dss
;
433 *dispc_cinfo
= best_dispc
;
435 dss
.cache_req_pck
= req_pck
;
436 dss
.cache_prate
= prate
;
437 dss
.cache_dss_cinfo
= best_dss
;
438 dss
.cache_dispc_cinfo
= best_dispc
;
445 static irqreturn_t
dss_irq_handler_omap2(int irq
, void *arg
)
452 static irqreturn_t
dss_irq_handler_omap3(int irq
, void *arg
)
456 irqstatus
= dss_read_reg(DSS_IRQSTATUS
);
458 if (irqstatus
& (1<<0)) /* DISPC_IRQ */
460 #ifdef CONFIG_OMAP2_DSS_DSI
461 if (irqstatus
& (1<<1)) /* DSI_IRQ */
468 static int _omap_dss_wait_reset(void)
470 unsigned timeout
= 1000;
472 while (REG_GET(DSS_SYSSTATUS
, 0, 0) == 0) {
475 DSSERR("soft reset failed\n");
483 static int _omap_dss_reset(void)
486 REG_FLD_MOD(DSS_SYSCONFIG
, 1, 1, 1);
487 return _omap_dss_wait_reset();
490 void dss_set_venc_output(enum omap_dss_venc_type type
)
494 if (type
== OMAP_DSS_VENC_TYPE_COMPOSITE
)
496 else if (type
== OMAP_DSS_VENC_TYPE_SVIDEO
)
501 /* venc out selection. 0 = comp, 1 = svideo */
502 REG_FLD_MOD(DSS_CONTROL
, l
, 6, 6);
505 void dss_set_dac_pwrdn_bgz(bool enable
)
507 REG_FLD_MOD(DSS_CONTROL
, enable
, 5, 5); /* DAC Power-Down Control */
510 int dss_init(bool skip_init
)
515 dss
.base
= ioremap(DSS_BASE
, DSS_SZ_REGS
);
517 DSSERR("can't ioremap DSS\n");
523 /* disable LCD and DIGIT output. This seems to fix the synclost
524 * problem that we get, if the bootloader starts the DSS and
525 * the kernel resets it */
526 omap_writel(omap_readl(0x48050440) & ~0x3, 0x48050440);
528 /* We need to wait here a bit, otherwise we sometimes start to
529 * get synclost errors, and after that only power cycle will
530 * restore DSS functionality. I have no idea why this happens.
531 * And we have to wait _before_ resetting the DSS, but after
540 REG_FLD_MOD(DSS_SYSCONFIG
, 1, 0, 0);
543 REG_FLD_MOD(DSS_CONTROL
, 0, 0, 0);
545 #ifdef CONFIG_OMAP2_DSS_VENC
546 REG_FLD_MOD(DSS_CONTROL
, 1, 4, 4); /* venc dac demen */
547 REG_FLD_MOD(DSS_CONTROL
, 1, 3, 3); /* venc clock 4x enable */
548 REG_FLD_MOD(DSS_CONTROL
, 0, 2, 2); /* venc clock mode = normal */
551 r
= request_irq(INT_24XX_DSS_IRQ
,
553 ? dss_irq_handler_omap2
554 : dss_irq_handler_omap3
,
555 0, "OMAP DSS", NULL
);
558 DSSERR("omap2 dss: request_irq failed\n");
562 if (cpu_is_omap34xx()) {
563 dss
.dpll4_m4_ck
= clk_get(NULL
, "dpll4_m4_ck");
564 if (IS_ERR(dss
.dpll4_m4_ck
)) {
565 DSSERR("Failed to get dpll4_m4_ck\n");
566 r
= PTR_ERR(dss
.dpll4_m4_ck
);
573 rev
= dss_read_reg(DSS_REVISION
);
574 printk(KERN_INFO
"OMAP DSS rev %d.%d\n",
575 FLD_GET(rev
, 7, 4), FLD_GET(rev
, 3, 0));
580 free_irq(INT_24XX_DSS_IRQ
, NULL
);
589 if (cpu_is_omap34xx())
590 clk_put(dss
.dpll4_m4_ck
);
592 free_irq(INT_24XX_DSS_IRQ
, NULL
);