2 * linux/drivers/video/omap2/dss/dsi.c
4 * Copyright (C) 2009 Nokia Corporation
5 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
20 #define DSS_SUBSYS_NAME "DSI"
22 #include <linux/kernel.h>
24 #include <linux/clk.h>
25 #include <linux/device.h>
26 #include <linux/err.h>
27 #include <linux/interrupt.h>
28 #include <linux/delay.h>
29 #include <linux/mutex.h>
30 #include <linux/seq_file.h>
31 #include <linux/platform_device.h>
32 #include <linux/regulator/consumer.h>
33 #include <linux/kthread.h>
34 #include <linux/wait.h>
36 #include <plat/display.h>
37 #include <plat/clock.h>
41 /*#define VERBOSE_IRQ*/
42 #define DSI_CATCH_MISSING_TE
44 #define DSI_BASE 0x4804FC00
46 struct dsi_reg
{ u16 idx
; };
48 #define DSI_REG(idx) ((const struct dsi_reg) { idx })
50 #define DSI_SZ_REGS SZ_1K
51 /* DSI Protocol Engine */
53 #define DSI_REVISION DSI_REG(0x0000)
54 #define DSI_SYSCONFIG DSI_REG(0x0010)
55 #define DSI_SYSSTATUS DSI_REG(0x0014)
56 #define DSI_IRQSTATUS DSI_REG(0x0018)
57 #define DSI_IRQENABLE DSI_REG(0x001C)
58 #define DSI_CTRL DSI_REG(0x0040)
59 #define DSI_COMPLEXIO_CFG1 DSI_REG(0x0048)
60 #define DSI_COMPLEXIO_IRQ_STATUS DSI_REG(0x004C)
61 #define DSI_COMPLEXIO_IRQ_ENABLE DSI_REG(0x0050)
62 #define DSI_CLK_CTRL DSI_REG(0x0054)
63 #define DSI_TIMING1 DSI_REG(0x0058)
64 #define DSI_TIMING2 DSI_REG(0x005C)
65 #define DSI_VM_TIMING1 DSI_REG(0x0060)
66 #define DSI_VM_TIMING2 DSI_REG(0x0064)
67 #define DSI_VM_TIMING3 DSI_REG(0x0068)
68 #define DSI_CLK_TIMING DSI_REG(0x006C)
69 #define DSI_TX_FIFO_VC_SIZE DSI_REG(0x0070)
70 #define DSI_RX_FIFO_VC_SIZE DSI_REG(0x0074)
71 #define DSI_COMPLEXIO_CFG2 DSI_REG(0x0078)
72 #define DSI_RX_FIFO_VC_FULLNESS DSI_REG(0x007C)
73 #define DSI_VM_TIMING4 DSI_REG(0x0080)
74 #define DSI_TX_FIFO_VC_EMPTINESS DSI_REG(0x0084)
75 #define DSI_VM_TIMING5 DSI_REG(0x0088)
76 #define DSI_VM_TIMING6 DSI_REG(0x008C)
77 #define DSI_VM_TIMING7 DSI_REG(0x0090)
78 #define DSI_STOPCLK_TIMING DSI_REG(0x0094)
79 #define DSI_VC_CTRL(n) DSI_REG(0x0100 + (n * 0x20))
80 #define DSI_VC_TE(n) DSI_REG(0x0104 + (n * 0x20))
81 #define DSI_VC_LONG_PACKET_HEADER(n) DSI_REG(0x0108 + (n * 0x20))
82 #define DSI_VC_LONG_PACKET_PAYLOAD(n) DSI_REG(0x010C + (n * 0x20))
83 #define DSI_VC_SHORT_PACKET_HEADER(n) DSI_REG(0x0110 + (n * 0x20))
84 #define DSI_VC_IRQSTATUS(n) DSI_REG(0x0118 + (n * 0x20))
85 #define DSI_VC_IRQENABLE(n) DSI_REG(0x011C + (n * 0x20))
89 #define DSI_DSIPHY_CFG0 DSI_REG(0x200 + 0x0000)
90 #define DSI_DSIPHY_CFG1 DSI_REG(0x200 + 0x0004)
91 #define DSI_DSIPHY_CFG2 DSI_REG(0x200 + 0x0008)
92 #define DSI_DSIPHY_CFG5 DSI_REG(0x200 + 0x0014)
94 /* DSI_PLL_CTRL_SCP */
96 #define DSI_PLL_CONTROL DSI_REG(0x300 + 0x0000)
97 #define DSI_PLL_STATUS DSI_REG(0x300 + 0x0004)
98 #define DSI_PLL_GO DSI_REG(0x300 + 0x0008)
99 #define DSI_PLL_CONFIGURATION1 DSI_REG(0x300 + 0x000C)
100 #define DSI_PLL_CONFIGURATION2 DSI_REG(0x300 + 0x0010)
102 #define REG_GET(idx, start, end) \
103 FLD_GET(dsi_read_reg(idx), start, end)
105 #define REG_FLD_MOD(idx, val, start, end) \
106 dsi_write_reg(idx, FLD_MOD(dsi_read_reg(idx), val, start, end))
108 /* Global interrupts */
109 #define DSI_IRQ_VC0 (1 << 0)
110 #define DSI_IRQ_VC1 (1 << 1)
111 #define DSI_IRQ_VC2 (1 << 2)
112 #define DSI_IRQ_VC3 (1 << 3)
113 #define DSI_IRQ_WAKEUP (1 << 4)
114 #define DSI_IRQ_RESYNC (1 << 5)
115 #define DSI_IRQ_PLL_LOCK (1 << 7)
116 #define DSI_IRQ_PLL_UNLOCK (1 << 8)
117 #define DSI_IRQ_PLL_RECALL (1 << 9)
118 #define DSI_IRQ_COMPLEXIO_ERR (1 << 10)
119 #define DSI_IRQ_HS_TX_TIMEOUT (1 << 14)
120 #define DSI_IRQ_LP_RX_TIMEOUT (1 << 15)
121 #define DSI_IRQ_TE_TRIGGER (1 << 16)
122 #define DSI_IRQ_ACK_TRIGGER (1 << 17)
123 #define DSI_IRQ_SYNC_LOST (1 << 18)
124 #define DSI_IRQ_LDO_POWER_GOOD (1 << 19)
125 #define DSI_IRQ_TA_TIMEOUT (1 << 20)
126 #define DSI_IRQ_ERROR_MASK \
127 (DSI_IRQ_HS_TX_TIMEOUT | DSI_IRQ_LP_RX_TIMEOUT | DSI_IRQ_SYNC_LOST | \
129 #define DSI_IRQ_CHANNEL_MASK 0xf
131 /* Virtual channel interrupts */
132 #define DSI_VC_IRQ_CS (1 << 0)
133 #define DSI_VC_IRQ_ECC_CORR (1 << 1)
134 #define DSI_VC_IRQ_PACKET_SENT (1 << 2)
135 #define DSI_VC_IRQ_FIFO_TX_OVF (1 << 3)
136 #define DSI_VC_IRQ_FIFO_RX_OVF (1 << 4)
137 #define DSI_VC_IRQ_BTA (1 << 5)
138 #define DSI_VC_IRQ_ECC_NO_CORR (1 << 6)
139 #define DSI_VC_IRQ_FIFO_TX_UDF (1 << 7)
140 #define DSI_VC_IRQ_PP_BUSY_CHANGE (1 << 8)
141 #define DSI_VC_IRQ_ERROR_MASK \
142 (DSI_VC_IRQ_CS | DSI_VC_IRQ_ECC_CORR | DSI_VC_IRQ_FIFO_TX_OVF | \
143 DSI_VC_IRQ_FIFO_RX_OVF | DSI_VC_IRQ_ECC_NO_CORR | \
144 DSI_VC_IRQ_FIFO_TX_UDF)
146 /* ComplexIO interrupts */
147 #define DSI_CIO_IRQ_ERRSYNCESC1 (1 << 0)
148 #define DSI_CIO_IRQ_ERRSYNCESC2 (1 << 1)
149 #define DSI_CIO_IRQ_ERRSYNCESC3 (1 << 2)
150 #define DSI_CIO_IRQ_ERRESC1 (1 << 5)
151 #define DSI_CIO_IRQ_ERRESC2 (1 << 6)
152 #define DSI_CIO_IRQ_ERRESC3 (1 << 7)
153 #define DSI_CIO_IRQ_ERRCONTROL1 (1 << 10)
154 #define DSI_CIO_IRQ_ERRCONTROL2 (1 << 11)
155 #define DSI_CIO_IRQ_ERRCONTROL3 (1 << 12)
156 #define DSI_CIO_IRQ_STATEULPS1 (1 << 15)
157 #define DSI_CIO_IRQ_STATEULPS2 (1 << 16)
158 #define DSI_CIO_IRQ_STATEULPS3 (1 << 17)
159 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_1 (1 << 20)
160 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_1 (1 << 21)
161 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_2 (1 << 22)
162 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_2 (1 << 23)
163 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_3 (1 << 24)
164 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_3 (1 << 25)
165 #define DSI_CIO_IRQ_ULPSACTIVENOT_ALL0 (1 << 30)
166 #define DSI_CIO_IRQ_ULPSACTIVENOT_ALL1 (1 << 31)
168 #define DSI_DT_DCS_SHORT_WRITE_0 0x05
169 #define DSI_DT_DCS_SHORT_WRITE_1 0x15
170 #define DSI_DT_DCS_READ 0x06
171 #define DSI_DT_SET_MAX_RET_PKG_SIZE 0x37
172 #define DSI_DT_NULL_PACKET 0x09
173 #define DSI_DT_DCS_LONG_WRITE 0x39
175 #define DSI_DT_RX_ACK_WITH_ERR 0x02
176 #define DSI_DT_RX_DCS_LONG_READ 0x1c
177 #define DSI_DT_RX_SHORT_READ_1 0x21
178 #define DSI_DT_RX_SHORT_READ_2 0x22
180 #define FINT_MAX 2100000
181 #define FINT_MIN 750000
182 #define REGN_MAX (1 << 7)
183 #define REGM_MAX ((1 << 11) - 1)
184 #define REGM3_MAX (1 << 4)
185 #define REGM4_MAX (1 << 4)
186 #define LP_DIV_MAX ((1 << 13) - 1)
190 DSI_FIFO_SIZE_32
= 1,
191 DSI_FIFO_SIZE_64
= 2,
192 DSI_FIFO_SIZE_96
= 3,
193 DSI_FIFO_SIZE_128
= 4,
201 struct dsi_update_region
{
204 struct omap_dss_device
*device
;
211 struct dsi_clock_info current_cinfo
;
213 struct regulator
*vdds_dsi_reg
;
216 enum dsi_vc_mode mode
;
217 struct omap_dss_device
*dssdev
;
218 enum fifo_size fifo_size
;
219 int dest_per
; /* destination peripheral 0-3 */
223 struct mutex bus_lock
;
227 struct completion bta_completion
;
229 struct task_struct
*thread
;
230 wait_queue_head_t waitqueue
;
232 spinlock_t update_lock
;
233 bool framedone_received
;
234 struct dsi_update_region update_region
;
235 struct dsi_update_region active_update_region
;
236 struct completion update_completion
;
238 enum omap_dss_update_mode user_update_mode
;
239 enum omap_dss_update_mode update_mode
;
243 #ifdef DSI_CATCH_MISSING_TE
244 struct timer_list te_timer
;
247 unsigned long cache_req_pck
;
248 unsigned long cache_clk_freq
;
249 struct dsi_clock_info cache_cinfo
;
252 spinlock_t errors_lock
;
254 ktime_t perf_setup_time
;
255 ktime_t perf_start_time
;
256 ktime_t perf_start_time_auto
;
257 int perf_measure_frames
;
264 static unsigned int dsi_perf
;
265 module_param_named(dsi_perf
, dsi_perf
, bool, 0644);
268 static inline void dsi_write_reg(const struct dsi_reg idx
, u32 val
)
270 __raw_writel(val
, dsi
.base
+ idx
.idx
);
273 static inline u32
dsi_read_reg(const struct dsi_reg idx
)
275 return __raw_readl(dsi
.base
+ idx
.idx
);
279 void dsi_save_context(void)
283 void dsi_restore_context(void)
287 void dsi_bus_lock(void)
289 mutex_lock(&dsi
.bus_lock
);
291 EXPORT_SYMBOL(dsi_bus_lock
);
293 void dsi_bus_unlock(void)
295 mutex_unlock(&dsi
.bus_lock
);
297 EXPORT_SYMBOL(dsi_bus_unlock
);
299 static inline int wait_for_bit_change(const struct dsi_reg idx
, int bitnum
,
304 while (REG_GET(idx
, bitnum
, bitnum
) != value
) {
313 static void dsi_perf_mark_setup(void)
315 dsi
.perf_setup_time
= ktime_get();
318 static void dsi_perf_mark_start(void)
320 dsi
.perf_start_time
= ktime_get();
323 static void dsi_perf_mark_start_auto(void)
325 dsi
.perf_measure_frames
= 0;
326 dsi
.perf_start_time_auto
= ktime_get();
329 static void dsi_perf_show(const char *name
)
331 ktime_t t
, setup_time
, trans_time
;
333 u32 setup_us
, trans_us
, total_us
;
338 if (dsi
.update_mode
== OMAP_DSS_UPDATE_DISABLED
)
343 setup_time
= ktime_sub(dsi
.perf_start_time
, dsi
.perf_setup_time
);
344 setup_us
= (u32
)ktime_to_us(setup_time
);
348 trans_time
= ktime_sub(t
, dsi
.perf_start_time
);
349 trans_us
= (u32
)ktime_to_us(trans_time
);
353 total_us
= setup_us
+ trans_us
;
355 total_bytes
= dsi
.active_update_region
.w
*
356 dsi
.active_update_region
.h
*
357 dsi
.active_update_region
.device
->ctrl
.pixel_size
/ 8;
359 if (dsi
.update_mode
== OMAP_DSS_UPDATE_AUTO
) {
360 static u32 s_total_trans_us
, s_total_setup_us
;
361 static u32 s_min_trans_us
= 0xffffffff, s_min_setup_us
;
362 static u32 s_max_trans_us
, s_max_setup_us
;
363 const int numframes
= 100;
364 ktime_t total_time_auto
;
365 u32 total_time_auto_us
;
367 dsi
.perf_measure_frames
++;
369 if (setup_us
< s_min_setup_us
)
370 s_min_setup_us
= setup_us
;
372 if (setup_us
> s_max_setup_us
)
373 s_max_setup_us
= setup_us
;
375 s_total_setup_us
+= setup_us
;
377 if (trans_us
< s_min_trans_us
)
378 s_min_trans_us
= trans_us
;
380 if (trans_us
> s_max_trans_us
)
381 s_max_trans_us
= trans_us
;
383 s_total_trans_us
+= trans_us
;
385 if (dsi
.perf_measure_frames
< numframes
)
388 total_time_auto
= ktime_sub(t
, dsi
.perf_start_time_auto
);
389 total_time_auto_us
= (u32
)ktime_to_us(total_time_auto
);
391 printk(KERN_INFO
"DSI(%s): %u fps, setup %u/%u/%u, "
394 1000 * 1000 * numframes
/ total_time_auto_us
,
397 s_total_setup_us
/ numframes
,
400 s_total_trans_us
/ numframes
);
402 s_total_setup_us
= 0;
403 s_min_setup_us
= 0xffffffff;
405 s_total_trans_us
= 0;
406 s_min_trans_us
= 0xffffffff;
408 dsi_perf_mark_start_auto();
410 printk(KERN_INFO
"DSI(%s): %u us + %u us = %u us (%uHz), "
411 "%u bytes, %u kbytes/sec\n",
416 1000*1000 / total_us
,
418 total_bytes
* 1000 / total_us
);
422 #define dsi_perf_mark_setup()
423 #define dsi_perf_mark_start()
424 #define dsi_perf_mark_start_auto()
425 #define dsi_perf_show(x)
428 static void print_irq_status(u32 status
)
431 if ((status
& ~DSI_IRQ_CHANNEL_MASK
) == 0)
434 printk(KERN_DEBUG
"DSI IRQ: 0x%x: ", status
);
437 if (status & DSI_IRQ_##x) \
463 static void print_irq_status_vc(int channel
, u32 status
)
466 if ((status
& ~DSI_VC_IRQ_PACKET_SENT
) == 0)
469 printk(KERN_DEBUG
"DSI VC(%d) IRQ 0x%x: ", channel
, status
);
472 if (status & DSI_VC_IRQ_##x) \
489 static void print_irq_status_cio(u32 status
)
491 printk(KERN_DEBUG
"DSI CIO IRQ 0x%x: ", status
);
494 if (status & DSI_CIO_IRQ_##x) \
508 PIS(ERRCONTENTIONLP0_1
);
509 PIS(ERRCONTENTIONLP1_1
);
510 PIS(ERRCONTENTIONLP0_2
);
511 PIS(ERRCONTENTIONLP1_2
);
512 PIS(ERRCONTENTIONLP0_3
);
513 PIS(ERRCONTENTIONLP1_3
);
514 PIS(ULPSACTIVENOT_ALL0
);
515 PIS(ULPSACTIVENOT_ALL1
);
521 static int debug_irq
;
523 /* called from dss */
524 void dsi_irq_handler(void)
526 u32 irqstatus
, vcstatus
, ciostatus
;
529 irqstatus
= dsi_read_reg(DSI_IRQSTATUS
);
531 if (irqstatus
& DSI_IRQ_ERROR_MASK
) {
532 DSSERR("DSI error, irqstatus %x\n", irqstatus
);
533 print_irq_status(irqstatus
);
534 spin_lock(&dsi
.errors_lock
);
535 dsi
.errors
|= irqstatus
& DSI_IRQ_ERROR_MASK
;
536 spin_unlock(&dsi
.errors_lock
);
537 } else if (debug_irq
) {
538 print_irq_status(irqstatus
);
541 #ifdef DSI_CATCH_MISSING_TE
542 if (irqstatus
& DSI_IRQ_TE_TRIGGER
)
543 del_timer(&dsi
.te_timer
);
546 for (i
= 0; i
< 4; ++i
) {
547 if ((irqstatus
& (1<<i
)) == 0)
550 vcstatus
= dsi_read_reg(DSI_VC_IRQSTATUS(i
));
552 if (vcstatus
& DSI_VC_IRQ_BTA
)
553 complete(&dsi
.bta_completion
);
555 if (vcstatus
& DSI_VC_IRQ_ERROR_MASK
) {
556 DSSERR("DSI VC(%d) error, vc irqstatus %x\n",
558 print_irq_status_vc(i
, vcstatus
);
559 } else if (debug_irq
) {
560 print_irq_status_vc(i
, vcstatus
);
563 dsi_write_reg(DSI_VC_IRQSTATUS(i
), vcstatus
);
564 /* flush posted write */
565 dsi_read_reg(DSI_VC_IRQSTATUS(i
));
568 if (irqstatus
& DSI_IRQ_COMPLEXIO_ERR
) {
569 ciostatus
= dsi_read_reg(DSI_COMPLEXIO_IRQ_STATUS
);
571 dsi_write_reg(DSI_COMPLEXIO_IRQ_STATUS
, ciostatus
);
572 /* flush posted write */
573 dsi_read_reg(DSI_COMPLEXIO_IRQ_STATUS
);
575 DSSERR("DSI CIO error, cio irqstatus %x\n", ciostatus
);
576 print_irq_status_cio(ciostatus
);
579 dsi_write_reg(DSI_IRQSTATUS
, irqstatus
& ~DSI_IRQ_CHANNEL_MASK
);
580 /* flush posted write */
581 dsi_read_reg(DSI_IRQSTATUS
);
585 static void _dsi_initialize_irq(void)
590 /* disable all interrupts */
591 dsi_write_reg(DSI_IRQENABLE
, 0);
592 for (i
= 0; i
< 4; ++i
)
593 dsi_write_reg(DSI_VC_IRQENABLE(i
), 0);
594 dsi_write_reg(DSI_COMPLEXIO_IRQ_ENABLE
, 0);
596 /* clear interrupt status */
597 l
= dsi_read_reg(DSI_IRQSTATUS
);
598 dsi_write_reg(DSI_IRQSTATUS
, l
& ~DSI_IRQ_CHANNEL_MASK
);
600 for (i
= 0; i
< 4; ++i
) {
601 l
= dsi_read_reg(DSI_VC_IRQSTATUS(i
));
602 dsi_write_reg(DSI_VC_IRQSTATUS(i
), l
);
605 l
= dsi_read_reg(DSI_COMPLEXIO_IRQ_STATUS
);
606 dsi_write_reg(DSI_COMPLEXIO_IRQ_STATUS
, l
);
608 /* enable error irqs */
609 l
= DSI_IRQ_ERROR_MASK
;
610 #ifdef DSI_CATCH_MISSING_TE
611 l
|= DSI_IRQ_TE_TRIGGER
;
613 dsi_write_reg(DSI_IRQENABLE
, l
);
615 l
= DSI_VC_IRQ_ERROR_MASK
;
616 for (i
= 0; i
< 4; ++i
)
617 dsi_write_reg(DSI_VC_IRQENABLE(i
), l
);
619 /* XXX zonda responds incorrectly, causing control error:
620 Exit from LP-ESC mode to LP11 uses wrong transition states on the
621 data lines LP0 and LN0. */
622 dsi_write_reg(DSI_COMPLEXIO_IRQ_ENABLE
,
623 -1 & (~DSI_CIO_IRQ_ERRCONTROL2
));
626 static u32
dsi_get_errors(void)
630 spin_lock_irqsave(&dsi
.errors_lock
, flags
);
633 spin_unlock_irqrestore(&dsi
.errors_lock
, flags
);
637 static void dsi_vc_enable_bta_irq(int channel
)
641 dsi_write_reg(DSI_VC_IRQSTATUS(channel
), DSI_VC_IRQ_BTA
);
643 l
= dsi_read_reg(DSI_VC_IRQENABLE(channel
));
645 dsi_write_reg(DSI_VC_IRQENABLE(channel
), l
);
648 static void dsi_vc_disable_bta_irq(int channel
)
652 l
= dsi_read_reg(DSI_VC_IRQENABLE(channel
));
653 l
&= ~DSI_VC_IRQ_BTA
;
654 dsi_write_reg(DSI_VC_IRQENABLE(channel
), l
);
657 /* DSI func clock. this could also be DSI2_PLL_FCLK */
658 static inline void enable_clocks(bool enable
)
661 dss_clk_enable(DSS_CLK_ICK
| DSS_CLK_FCK1
);
663 dss_clk_disable(DSS_CLK_ICK
| DSS_CLK_FCK1
);
666 /* source clock for DSI PLL. this could also be PCLKFREE */
667 static inline void dsi_enable_pll_clock(bool enable
)
670 dss_clk_enable(DSS_CLK_FCK2
);
672 dss_clk_disable(DSS_CLK_FCK2
);
674 if (enable
&& dsi
.pll_locked
) {
675 if (wait_for_bit_change(DSI_PLL_STATUS
, 1, 1) != 1)
676 DSSERR("cannot lock PLL when enabling clocks\n");
681 static void _dsi_print_reset_status(void)
688 /* A dummy read using the SCP interface to any DSIPHY register is
689 * required after DSIPHY reset to complete the reset of the DSI complex
691 l
= dsi_read_reg(DSI_DSIPHY_CFG5
);
693 printk(KERN_DEBUG
"DSI resets: ");
695 l
= dsi_read_reg(DSI_PLL_STATUS
);
696 printk("PLL (%d) ", FLD_GET(l
, 0, 0));
698 l
= dsi_read_reg(DSI_COMPLEXIO_CFG1
);
699 printk("CIO (%d) ", FLD_GET(l
, 29, 29));
701 l
= dsi_read_reg(DSI_DSIPHY_CFG5
);
702 printk("PHY (%x, %d, %d, %d)\n",
709 #define _dsi_print_reset_status()
712 static inline int dsi_if_enable(bool enable
)
714 DSSDBG("dsi_if_enable(%d)\n", enable
);
716 enable
= enable
? 1 : 0;
717 REG_FLD_MOD(DSI_CTRL
, enable
, 0, 0); /* IF_EN */
719 if (wait_for_bit_change(DSI_CTRL
, 0, enable
) != enable
) {
720 DSSERR("Failed to set dsi_if_enable to %d\n", enable
);
727 unsigned long dsi_get_dsi1_pll_rate(void)
729 return dsi
.current_cinfo
.dsi1_pll_fclk
;
732 static unsigned long dsi_get_dsi2_pll_rate(void)
734 return dsi
.current_cinfo
.dsi2_pll_fclk
;
737 static unsigned long dsi_get_txbyteclkhs(void)
739 return dsi
.current_cinfo
.clkin4ddr
/ 16;
742 static unsigned long dsi_fclk_rate(void)
746 if (dss_get_dsi_clk_source() == 0) {
747 /* DSI FCLK source is DSS1_ALWON_FCK, which is dss1_fck */
748 r
= dss_clk_get_rate(DSS_CLK_FCK1
);
750 /* DSI FCLK source is DSI2_PLL_FCLK */
751 r
= dsi_get_dsi2_pll_rate();
757 static int dsi_set_lp_clk_divisor(struct omap_dss_device
*dssdev
)
759 unsigned long dsi_fclk
;
761 unsigned long lp_clk
;
763 lp_clk_div
= dssdev
->phy
.dsi
.div
.lp_clk_div
;
765 if (lp_clk_div
== 0 || lp_clk_div
> LP_DIV_MAX
)
768 dsi_fclk
= dsi_fclk_rate();
770 lp_clk
= dsi_fclk
/ 2 / lp_clk_div
;
772 DSSDBG("LP_CLK_DIV %u, LP_CLK %lu\n", lp_clk_div
, lp_clk
);
773 dsi
.current_cinfo
.lp_clk
= lp_clk
;
774 dsi
.current_cinfo
.lp_clk_div
= lp_clk_div
;
776 REG_FLD_MOD(DSI_CLK_CTRL
, lp_clk_div
, 12, 0); /* LP_CLK_DIVISOR */
778 REG_FLD_MOD(DSI_CLK_CTRL
, dsi_fclk
> 30000000 ? 1 : 0,
779 21, 21); /* LP_RX_SYNCHRO_ENABLE */
785 enum dsi_pll_power_state
{
786 DSI_PLL_POWER_OFF
= 0x0,
787 DSI_PLL_POWER_ON_HSCLK
= 0x1,
788 DSI_PLL_POWER_ON_ALL
= 0x2,
789 DSI_PLL_POWER_ON_DIV
= 0x3,
792 static int dsi_pll_power(enum dsi_pll_power_state state
)
796 REG_FLD_MOD(DSI_CLK_CTRL
, state
, 31, 30); /* PLL_PWR_CMD */
799 while (FLD_GET(dsi_read_reg(DSI_CLK_CTRL
), 29, 28) != state
) {
802 DSSERR("Failed to set DSI PLL power mode to %d\n",
811 /* calculate clock rates using dividers in cinfo */
812 static int dsi_calc_clock_rates(struct dsi_clock_info
*cinfo
)
814 if (cinfo
->regn
== 0 || cinfo
->regn
> REGN_MAX
)
817 if (cinfo
->regm
== 0 || cinfo
->regm
> REGM_MAX
)
820 if (cinfo
->regm3
> REGM3_MAX
)
823 if (cinfo
->regm4
> REGM4_MAX
)
826 if (cinfo
->use_dss2_fck
) {
827 cinfo
->clkin
= dss_clk_get_rate(DSS_CLK_FCK2
);
828 /* XXX it is unclear if highfreq should be used
829 * with DSS2_FCK source also */
832 cinfo
->clkin
= dispc_pclk_rate();
834 if (cinfo
->clkin
< 32000000)
840 cinfo
->fint
= cinfo
->clkin
/ (cinfo
->regn
* (cinfo
->highfreq
? 2 : 1));
842 if (cinfo
->fint
> FINT_MAX
|| cinfo
->fint
< FINT_MIN
)
845 cinfo
->clkin4ddr
= 2 * cinfo
->regm
* cinfo
->fint
;
847 if (cinfo
->clkin4ddr
> 1800 * 1000 * 1000)
850 if (cinfo
->regm3
> 0)
851 cinfo
->dsi1_pll_fclk
= cinfo
->clkin4ddr
/ cinfo
->regm3
;
853 cinfo
->dsi1_pll_fclk
= 0;
855 if (cinfo
->regm4
> 0)
856 cinfo
->dsi2_pll_fclk
= cinfo
->clkin4ddr
/ cinfo
->regm4
;
858 cinfo
->dsi2_pll_fclk
= 0;
863 int dsi_pll_calc_clock_div_pck(bool is_tft
, unsigned long req_pck
,
864 struct dsi_clock_info
*dsi_cinfo
,
865 struct dispc_clock_info
*dispc_cinfo
)
867 struct dsi_clock_info cur
, best
;
868 struct dispc_clock_info best_dispc
;
871 unsigned long dss_clk_fck2
;
873 dss_clk_fck2
= dss_clk_get_rate(DSS_CLK_FCK2
);
875 if (req_pck
== dsi
.cache_req_pck
&&
876 dsi
.cache_cinfo
.clkin
== dss_clk_fck2
) {
877 DSSDBG("DSI clock info found from cache\n");
878 *dsi_cinfo
= dsi
.cache_cinfo
;
882 min_fck_per_pck
= CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK
;
884 if (min_fck_per_pck
&&
885 req_pck
* min_fck_per_pck
> DISPC_MAX_FCK
) {
886 DSSERR("Requested pixel clock not possible with the current "
887 "OMAP2_DSS_MIN_FCK_PER_PCK setting. Turning "
888 "the constraint off.\n");
892 DSSDBG("dsi_pll_calc\n");
895 memset(&best
, 0, sizeof(best
));
896 memset(&best_dispc
, 0, sizeof(best_dispc
));
898 memset(&cur
, 0, sizeof(cur
));
899 cur
.clkin
= dss_clk_fck2
;
900 cur
.use_dss2_fck
= 1;
903 /* no highfreq: 0.75MHz < Fint = clkin / regn < 2.1MHz */
904 /* highfreq: 0.75MHz < Fint = clkin / (2*regn) < 2.1MHz */
905 /* To reduce PLL lock time, keep Fint high (around 2 MHz) */
906 for (cur
.regn
= 1; cur
.regn
< REGN_MAX
; ++cur
.regn
) {
907 if (cur
.highfreq
== 0)
908 cur
.fint
= cur
.clkin
/ cur
.regn
;
910 cur
.fint
= cur
.clkin
/ (2 * cur
.regn
);
912 if (cur
.fint
> FINT_MAX
|| cur
.fint
< FINT_MIN
)
915 /* DSIPHY(MHz) = (2 * regm / regn) * (clkin / (highfreq + 1)) */
916 for (cur
.regm
= 1; cur
.regm
< REGM_MAX
; ++cur
.regm
) {
919 a
= 2 * cur
.regm
* (cur
.clkin
/1000);
920 b
= cur
.regn
* (cur
.highfreq
+ 1);
921 cur
.clkin4ddr
= a
/ b
* 1000;
923 if (cur
.clkin4ddr
> 1800 * 1000 * 1000)
926 /* DSI1_PLL_FCLK(MHz) = DSIPHY(MHz) / regm3 < 173MHz */
927 for (cur
.regm3
= 1; cur
.regm3
< REGM3_MAX
;
929 struct dispc_clock_info cur_dispc
;
930 cur
.dsi1_pll_fclk
= cur
.clkin4ddr
/ cur
.regm3
;
932 /* this will narrow down the search a bit,
933 * but still give pixclocks below what was
935 if (cur
.dsi1_pll_fclk
< req_pck
)
938 if (cur
.dsi1_pll_fclk
> DISPC_MAX_FCK
)
941 if (min_fck_per_pck
&&
943 req_pck
* min_fck_per_pck
)
948 dispc_find_clk_divs(is_tft
, req_pck
,
952 if (abs(cur_dispc
.pck
- req_pck
) <
953 abs(best_dispc
.pck
- req_pck
)) {
955 best_dispc
= cur_dispc
;
957 if (cur_dispc
.pck
== req_pck
)
965 if (min_fck_per_pck
) {
966 DSSERR("Could not find suitable clock settings.\n"
967 "Turning FCK/PCK constraint off and"
973 DSSERR("Could not find suitable clock settings.\n");
978 /* DSI2_PLL_FCLK (regm4) is not used */
980 best
.dsi2_pll_fclk
= 0;
985 *dispc_cinfo
= best_dispc
;
987 dsi
.cache_req_pck
= req_pck
;
988 dsi
.cache_clk_freq
= 0;
989 dsi
.cache_cinfo
= best
;
994 int dsi_pll_set_clock_div(struct dsi_clock_info
*cinfo
)
1002 dsi
.current_cinfo
.fint
= cinfo
->fint
;
1003 dsi
.current_cinfo
.clkin4ddr
= cinfo
->clkin4ddr
;
1004 dsi
.current_cinfo
.dsi1_pll_fclk
= cinfo
->dsi1_pll_fclk
;
1005 dsi
.current_cinfo
.dsi2_pll_fclk
= cinfo
->dsi2_pll_fclk
;
1007 dsi
.current_cinfo
.regn
= cinfo
->regn
;
1008 dsi
.current_cinfo
.regm
= cinfo
->regm
;
1009 dsi
.current_cinfo
.regm3
= cinfo
->regm3
;
1010 dsi
.current_cinfo
.regm4
= cinfo
->regm4
;
1012 DSSDBG("DSI Fint %ld\n", cinfo
->fint
);
1014 DSSDBG("clkin (%s) rate %ld, highfreq %d\n",
1015 cinfo
->use_dss2_fck
? "dss2_fck" : "pclkfree",
1019 /* DSIPHY == CLKIN4DDR */
1020 DSSDBG("CLKIN4DDR = 2 * %d / %d * %lu / %d = %lu\n",
1024 cinfo
->highfreq
+ 1,
1027 DSSDBG("Data rate on 1 DSI lane %ld Mbps\n",
1028 cinfo
->clkin4ddr
/ 1000 / 1000 / 2);
1030 DSSDBG("Clock lane freq %ld Hz\n", cinfo
->clkin4ddr
/ 4);
1032 DSSDBG("regm3 = %d, dsi1_pll_fclk = %lu\n",
1033 cinfo
->regm3
, cinfo
->dsi1_pll_fclk
);
1034 DSSDBG("regm4 = %d, dsi2_pll_fclk = %lu\n",
1035 cinfo
->regm4
, cinfo
->dsi2_pll_fclk
);
1037 REG_FLD_MOD(DSI_PLL_CONTROL
, 0, 0, 0); /* DSI_PLL_AUTOMODE = manual */
1039 l
= dsi_read_reg(DSI_PLL_CONFIGURATION1
);
1040 l
= FLD_MOD(l
, 1, 0, 0); /* DSI_PLL_STOPMODE */
1041 l
= FLD_MOD(l
, cinfo
->regn
- 1, 7, 1); /* DSI_PLL_REGN */
1042 l
= FLD_MOD(l
, cinfo
->regm
, 18, 8); /* DSI_PLL_REGM */
1043 l
= FLD_MOD(l
, cinfo
->regm3
> 0 ? cinfo
->regm3
- 1 : 0,
1044 22, 19); /* DSI_CLOCK_DIV */
1045 l
= FLD_MOD(l
, cinfo
->regm4
> 0 ? cinfo
->regm4
- 1 : 0,
1046 26, 23); /* DSIPROTO_CLOCK_DIV */
1047 dsi_write_reg(DSI_PLL_CONFIGURATION1
, l
);
1049 BUG_ON(cinfo
->fint
< 750000 || cinfo
->fint
> 2100000);
1050 if (cinfo
->fint
< 1000000)
1052 else if (cinfo
->fint
< 1250000)
1054 else if (cinfo
->fint
< 1500000)
1056 else if (cinfo
->fint
< 1750000)
1061 l
= dsi_read_reg(DSI_PLL_CONFIGURATION2
);
1062 l
= FLD_MOD(l
, f
, 4, 1); /* DSI_PLL_FREQSEL */
1063 l
= FLD_MOD(l
, cinfo
->use_dss2_fck
? 0 : 1,
1064 11, 11); /* DSI_PLL_CLKSEL */
1065 l
= FLD_MOD(l
, cinfo
->highfreq
,
1066 12, 12); /* DSI_PLL_HIGHFREQ */
1067 l
= FLD_MOD(l
, 1, 13, 13); /* DSI_PLL_REFEN */
1068 l
= FLD_MOD(l
, 0, 14, 14); /* DSIPHY_CLKINEN */
1069 l
= FLD_MOD(l
, 1, 20, 20); /* DSI_HSDIVBYPASS */
1070 dsi_write_reg(DSI_PLL_CONFIGURATION2
, l
);
1072 REG_FLD_MOD(DSI_PLL_GO
, 1, 0, 0); /* DSI_PLL_GO */
1074 if (wait_for_bit_change(DSI_PLL_GO
, 0, 0) != 0) {
1075 DSSERR("dsi pll go bit not going down.\n");
1080 if (wait_for_bit_change(DSI_PLL_STATUS
, 1, 1) != 1) {
1081 DSSERR("cannot lock PLL\n");
1088 l
= dsi_read_reg(DSI_PLL_CONFIGURATION2
);
1089 l
= FLD_MOD(l
, 0, 0, 0); /* DSI_PLL_IDLE */
1090 l
= FLD_MOD(l
, 0, 5, 5); /* DSI_PLL_PLLLPMODE */
1091 l
= FLD_MOD(l
, 0, 6, 6); /* DSI_PLL_LOWCURRSTBY */
1092 l
= FLD_MOD(l
, 0, 7, 7); /* DSI_PLL_TIGHTPHASELOCK */
1093 l
= FLD_MOD(l
, 0, 8, 8); /* DSI_PLL_DRIFTGUARDEN */
1094 l
= FLD_MOD(l
, 0, 10, 9); /* DSI_PLL_LOCKSEL */
1095 l
= FLD_MOD(l
, 1, 13, 13); /* DSI_PLL_REFEN */
1096 l
= FLD_MOD(l
, 1, 14, 14); /* DSIPHY_CLKINEN */
1097 l
= FLD_MOD(l
, 0, 15, 15); /* DSI_BYPASSEN */
1098 l
= FLD_MOD(l
, 1, 16, 16); /* DSS_CLOCK_EN */
1099 l
= FLD_MOD(l
, 0, 17, 17); /* DSS_CLOCK_PWDN */
1100 l
= FLD_MOD(l
, 1, 18, 18); /* DSI_PROTO_CLOCK_EN */
1101 l
= FLD_MOD(l
, 0, 19, 19); /* DSI_PROTO_CLOCK_PWDN */
1102 l
= FLD_MOD(l
, 0, 20, 20); /* DSI_HSDIVBYPASS */
1103 dsi_write_reg(DSI_PLL_CONFIGURATION2
, l
);
1105 DSSDBG("PLL config done\n");
1110 int dsi_pll_init(struct omap_dss_device
*dssdev
, bool enable_hsclk
,
1114 enum dsi_pll_power_state pwstate
;
1116 DSSDBG("PLL init\n");
1119 dsi_enable_pll_clock(1);
1121 r
= regulator_enable(dsi
.vdds_dsi_reg
);
1125 /* XXX PLL does not come out of reset without this... */
1126 dispc_pck_free_enable(1);
1128 if (wait_for_bit_change(DSI_PLL_STATUS
, 0, 1) != 1) {
1129 DSSERR("PLL not coming out of reset.\n");
1134 /* XXX ... but if left on, we get problems when planes do not
1135 * fill the whole display. No idea about this */
1136 dispc_pck_free_enable(0);
1138 if (enable_hsclk
&& enable_hsdiv
)
1139 pwstate
= DSI_PLL_POWER_ON_ALL
;
1140 else if (enable_hsclk
)
1141 pwstate
= DSI_PLL_POWER_ON_HSCLK
;
1142 else if (enable_hsdiv
)
1143 pwstate
= DSI_PLL_POWER_ON_DIV
;
1145 pwstate
= DSI_PLL_POWER_OFF
;
1147 r
= dsi_pll_power(pwstate
);
1152 DSSDBG("PLL init done\n");
1156 regulator_disable(dsi
.vdds_dsi_reg
);
1159 dsi_enable_pll_clock(0);
1163 void dsi_pll_uninit(void)
1166 dsi_enable_pll_clock(0);
1169 dsi_pll_power(DSI_PLL_POWER_OFF
);
1170 regulator_disable(dsi
.vdds_dsi_reg
);
1171 DSSDBG("PLL uninit done\n");
1174 void dsi_dump_clocks(struct seq_file
*s
)
1177 struct dsi_clock_info
*cinfo
= &dsi
.current_cinfo
;
1181 clksel
= REG_GET(DSI_PLL_CONFIGURATION2
, 11, 11);
1183 seq_printf(s
, "- DSI PLL -\n");
1185 seq_printf(s
, "dsi pll source = %s\n",
1187 "dss2_alwon_fclk" : "pclkfree");
1189 seq_printf(s
, "Fint\t\t%-16luregn %u\n", cinfo
->fint
, cinfo
->regn
);
1191 seq_printf(s
, "CLKIN4DDR\t%-16luregm %u\n",
1192 cinfo
->clkin4ddr
, cinfo
->regm
);
1194 seq_printf(s
, "dsi1_pll_fck\t%-16luregm3 %u\t(%s)\n",
1195 cinfo
->dsi1_pll_fclk
,
1197 dss_get_dispc_clk_source() == 0 ? "off" : "on");
1199 seq_printf(s
, "dsi2_pll_fck\t%-16luregm4 %u\t(%s)\n",
1200 cinfo
->dsi2_pll_fclk
,
1202 dss_get_dsi_clk_source() == 0 ? "off" : "on");
1204 seq_printf(s
, "- DSI -\n");
1206 seq_printf(s
, "dsi fclk source = %s\n",
1207 dss_get_dsi_clk_source() == 0 ?
1208 "dss1_alwon_fclk" : "dsi2_pll_fclk");
1210 seq_printf(s
, "DSI_FCLK\t%lu\n", dsi_fclk_rate());
1212 seq_printf(s
, "DDR_CLK\t\t%lu\n",
1213 cinfo
->clkin4ddr
/ 4);
1215 seq_printf(s
, "TxByteClkHS\t%lu\n", dsi_get_txbyteclkhs());
1217 seq_printf(s
, "LP_CLK\t\t%lu\n", cinfo
->lp_clk
);
1219 seq_printf(s
, "VP_CLK\t\t%lu\n"
1227 void dsi_dump_regs(struct seq_file
*s
)
1229 #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, dsi_read_reg(r))
1231 dss_clk_enable(DSS_CLK_ICK
| DSS_CLK_FCK1
);
1233 DUMPREG(DSI_REVISION
);
1234 DUMPREG(DSI_SYSCONFIG
);
1235 DUMPREG(DSI_SYSSTATUS
);
1236 DUMPREG(DSI_IRQSTATUS
);
1237 DUMPREG(DSI_IRQENABLE
);
1239 DUMPREG(DSI_COMPLEXIO_CFG1
);
1240 DUMPREG(DSI_COMPLEXIO_IRQ_STATUS
);
1241 DUMPREG(DSI_COMPLEXIO_IRQ_ENABLE
);
1242 DUMPREG(DSI_CLK_CTRL
);
1243 DUMPREG(DSI_TIMING1
);
1244 DUMPREG(DSI_TIMING2
);
1245 DUMPREG(DSI_VM_TIMING1
);
1246 DUMPREG(DSI_VM_TIMING2
);
1247 DUMPREG(DSI_VM_TIMING3
);
1248 DUMPREG(DSI_CLK_TIMING
);
1249 DUMPREG(DSI_TX_FIFO_VC_SIZE
);
1250 DUMPREG(DSI_RX_FIFO_VC_SIZE
);
1251 DUMPREG(DSI_COMPLEXIO_CFG2
);
1252 DUMPREG(DSI_RX_FIFO_VC_FULLNESS
);
1253 DUMPREG(DSI_VM_TIMING4
);
1254 DUMPREG(DSI_TX_FIFO_VC_EMPTINESS
);
1255 DUMPREG(DSI_VM_TIMING5
);
1256 DUMPREG(DSI_VM_TIMING6
);
1257 DUMPREG(DSI_VM_TIMING7
);
1258 DUMPREG(DSI_STOPCLK_TIMING
);
1260 DUMPREG(DSI_VC_CTRL(0));
1261 DUMPREG(DSI_VC_TE(0));
1262 DUMPREG(DSI_VC_LONG_PACKET_HEADER(0));
1263 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(0));
1264 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(0));
1265 DUMPREG(DSI_VC_IRQSTATUS(0));
1266 DUMPREG(DSI_VC_IRQENABLE(0));
1268 DUMPREG(DSI_VC_CTRL(1));
1269 DUMPREG(DSI_VC_TE(1));
1270 DUMPREG(DSI_VC_LONG_PACKET_HEADER(1));
1271 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(1));
1272 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(1));
1273 DUMPREG(DSI_VC_IRQSTATUS(1));
1274 DUMPREG(DSI_VC_IRQENABLE(1));
1276 DUMPREG(DSI_VC_CTRL(2));
1277 DUMPREG(DSI_VC_TE(2));
1278 DUMPREG(DSI_VC_LONG_PACKET_HEADER(2));
1279 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(2));
1280 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(2));
1281 DUMPREG(DSI_VC_IRQSTATUS(2));
1282 DUMPREG(DSI_VC_IRQENABLE(2));
1284 DUMPREG(DSI_VC_CTRL(3));
1285 DUMPREG(DSI_VC_TE(3));
1286 DUMPREG(DSI_VC_LONG_PACKET_HEADER(3));
1287 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(3));
1288 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(3));
1289 DUMPREG(DSI_VC_IRQSTATUS(3));
1290 DUMPREG(DSI_VC_IRQENABLE(3));
1292 DUMPREG(DSI_DSIPHY_CFG0
);
1293 DUMPREG(DSI_DSIPHY_CFG1
);
1294 DUMPREG(DSI_DSIPHY_CFG2
);
1295 DUMPREG(DSI_DSIPHY_CFG5
);
1297 DUMPREG(DSI_PLL_CONTROL
);
1298 DUMPREG(DSI_PLL_STATUS
);
1299 DUMPREG(DSI_PLL_GO
);
1300 DUMPREG(DSI_PLL_CONFIGURATION1
);
1301 DUMPREG(DSI_PLL_CONFIGURATION2
);
1303 dss_clk_disable(DSS_CLK_ICK
| DSS_CLK_FCK1
);
1307 enum dsi_complexio_power_state
{
1308 DSI_COMPLEXIO_POWER_OFF
= 0x0,
1309 DSI_COMPLEXIO_POWER_ON
= 0x1,
1310 DSI_COMPLEXIO_POWER_ULPS
= 0x2,
1313 static int dsi_complexio_power(enum dsi_complexio_power_state state
)
1318 REG_FLD_MOD(DSI_COMPLEXIO_CFG1
, state
, 28, 27);
1321 while (FLD_GET(dsi_read_reg(DSI_COMPLEXIO_CFG1
), 26, 25) != state
) {
1324 DSSERR("failed to set complexio power state to "
1333 static void dsi_complexio_config(struct omap_dss_device
*dssdev
)
1337 int clk_lane
= dssdev
->phy
.dsi
.clk_lane
;
1338 int data1_lane
= dssdev
->phy
.dsi
.data1_lane
;
1339 int data2_lane
= dssdev
->phy
.dsi
.data2_lane
;
1340 int clk_pol
= dssdev
->phy
.dsi
.clk_pol
;
1341 int data1_pol
= dssdev
->phy
.dsi
.data1_pol
;
1342 int data2_pol
= dssdev
->phy
.dsi
.data2_pol
;
1344 r
= dsi_read_reg(DSI_COMPLEXIO_CFG1
);
1345 r
= FLD_MOD(r
, clk_lane
, 2, 0);
1346 r
= FLD_MOD(r
, clk_pol
, 3, 3);
1347 r
= FLD_MOD(r
, data1_lane
, 6, 4);
1348 r
= FLD_MOD(r
, data1_pol
, 7, 7);
1349 r
= FLD_MOD(r
, data2_lane
, 10, 8);
1350 r
= FLD_MOD(r
, data2_pol
, 11, 11);
1351 dsi_write_reg(DSI_COMPLEXIO_CFG1
, r
);
1353 /* The configuration of the DSI complex I/O (number of data lanes,
1354 position, differential order) should not be changed while
1355 DSS.DSI_CLK_CRTRL[20] LP_CLK_ENABLE bit is set to 1. In order for
1356 the hardware to take into account a new configuration of the complex
1357 I/O (done in DSS.DSI_COMPLEXIO_CFG1 register), it is recommended to
1358 follow this sequence: First set the DSS.DSI_CTRL[0] IF_EN bit to 1,
1359 then reset the DSS.DSI_CTRL[0] IF_EN to 0, then set
1360 DSS.DSI_CLK_CTRL[20] LP_CLK_ENABLE to 1 and finally set again the
1361 DSS.DSI_CTRL[0] IF_EN bit to 1. If the sequence is not followed, the
1362 DSI complex I/O configuration is unknown. */
1365 REG_FLD_MOD(DSI_CTRL, 1, 0, 0);
1366 REG_FLD_MOD(DSI_CTRL, 0, 0, 0);
1367 REG_FLD_MOD(DSI_CLK_CTRL, 1, 20, 20);
1368 REG_FLD_MOD(DSI_CTRL, 1, 0, 0);
1372 static inline unsigned ns2ddr(unsigned ns
)
1374 /* convert time in ns to ddr ticks, rounding up */
1375 unsigned long ddr_clk
= dsi
.current_cinfo
.clkin4ddr
/ 4;
1376 return (ns
* (ddr_clk
/ 1000 / 1000) + 999) / 1000;
1379 static inline unsigned ddr2ns(unsigned ddr
)
1381 unsigned long ddr_clk
= dsi
.current_cinfo
.clkin4ddr
/ 4;
1382 return ddr
* 1000 * 1000 / (ddr_clk
/ 1000);
1385 static void dsi_complexio_timings(void)
1388 u32 ths_prepare
, ths_prepare_ths_zero
, ths_trail
, ths_exit
;
1389 u32 tlpx_half
, tclk_trail
, tclk_zero
;
1392 /* calculate timings */
1394 /* 1 * DDR_CLK = 2 * UI */
1396 /* min 40ns + 4*UI max 85ns + 6*UI */
1397 ths_prepare
= ns2ddr(70) + 2;
1399 /* min 145ns + 10*UI */
1400 ths_prepare_ths_zero
= ns2ddr(175) + 2;
1402 /* min max(8*UI, 60ns+4*UI) */
1403 ths_trail
= ns2ddr(60) + 5;
1406 ths_exit
= ns2ddr(145);
1409 tlpx_half
= ns2ddr(25);
1412 tclk_trail
= ns2ddr(60) + 2;
1414 /* min 38ns, max 95ns */
1415 tclk_prepare
= ns2ddr(65);
1417 /* min tclk-prepare + tclk-zero = 300ns */
1418 tclk_zero
= ns2ddr(260);
1420 DSSDBG("ths_prepare %u (%uns), ths_prepare_ths_zero %u (%uns)\n",
1421 ths_prepare
, ddr2ns(ths_prepare
),
1422 ths_prepare_ths_zero
, ddr2ns(ths_prepare_ths_zero
));
1423 DSSDBG("ths_trail %u (%uns), ths_exit %u (%uns)\n",
1424 ths_trail
, ddr2ns(ths_trail
),
1425 ths_exit
, ddr2ns(ths_exit
));
1427 DSSDBG("tlpx_half %u (%uns), tclk_trail %u (%uns), "
1428 "tclk_zero %u (%uns)\n",
1429 tlpx_half
, ddr2ns(tlpx_half
),
1430 tclk_trail
, ddr2ns(tclk_trail
),
1431 tclk_zero
, ddr2ns(tclk_zero
));
1432 DSSDBG("tclk_prepare %u (%uns)\n",
1433 tclk_prepare
, ddr2ns(tclk_prepare
));
1435 /* program timings */
1437 r
= dsi_read_reg(DSI_DSIPHY_CFG0
);
1438 r
= FLD_MOD(r
, ths_prepare
, 31, 24);
1439 r
= FLD_MOD(r
, ths_prepare_ths_zero
, 23, 16);
1440 r
= FLD_MOD(r
, ths_trail
, 15, 8);
1441 r
= FLD_MOD(r
, ths_exit
, 7, 0);
1442 dsi_write_reg(DSI_DSIPHY_CFG0
, r
);
1444 r
= dsi_read_reg(DSI_DSIPHY_CFG1
);
1445 r
= FLD_MOD(r
, tlpx_half
, 22, 16);
1446 r
= FLD_MOD(r
, tclk_trail
, 15, 8);
1447 r
= FLD_MOD(r
, tclk_zero
, 7, 0);
1448 dsi_write_reg(DSI_DSIPHY_CFG1
, r
);
1450 r
= dsi_read_reg(DSI_DSIPHY_CFG2
);
1451 r
= FLD_MOD(r
, tclk_prepare
, 7, 0);
1452 dsi_write_reg(DSI_DSIPHY_CFG2
, r
);
1456 static int dsi_complexio_init(struct omap_dss_device
*dssdev
)
1460 DSSDBG("dsi_complexio_init\n");
1462 /* CIO_CLK_ICG, enable L3 clk to CIO */
1463 REG_FLD_MOD(DSI_CLK_CTRL
, 1, 14, 14);
1465 /* A dummy read using the SCP interface to any DSIPHY register is
1466 * required after DSIPHY reset to complete the reset of the DSI complex
1468 dsi_read_reg(DSI_DSIPHY_CFG5
);
1470 if (wait_for_bit_change(DSI_DSIPHY_CFG5
, 30, 1) != 1) {
1471 DSSERR("ComplexIO PHY not coming out of reset.\n");
1476 dsi_complexio_config(dssdev
);
1478 r
= dsi_complexio_power(DSI_COMPLEXIO_POWER_ON
);
1483 if (wait_for_bit_change(DSI_COMPLEXIO_CFG1
, 29, 1) != 1) {
1484 DSSERR("ComplexIO not coming out of reset.\n");
1489 if (wait_for_bit_change(DSI_COMPLEXIO_CFG1
, 21, 1) != 1) {
1490 DSSERR("ComplexIO LDO power down.\n");
1495 dsi_complexio_timings();
1498 The configuration of the DSI complex I/O (number of data lanes,
1499 position, differential order) should not be changed while
1500 DSS.DSI_CLK_CRTRL[20] LP_CLK_ENABLE bit is set to 1. For the
1501 hardware to recognize a new configuration of the complex I/O (done
1502 in DSS.DSI_COMPLEXIO_CFG1 register), it is recommended to follow
1503 this sequence: First set the DSS.DSI_CTRL[0] IF_EN bit to 1, next
1504 reset the DSS.DSI_CTRL[0] IF_EN to 0, then set DSS.DSI_CLK_CTRL[20]
1505 LP_CLK_ENABLE to 1, and finally, set again the DSS.DSI_CTRL[0] IF_EN
1506 bit to 1. If the sequence is not followed, the DSi complex I/O
1507 configuration is undetermined.
1511 REG_FLD_MOD(DSI_CLK_CTRL
, 1, 20, 20); /* LP_CLK_ENABLE */
1515 DSSDBG("CIO init done\n");
1520 static void dsi_complexio_uninit(void)
1522 dsi_complexio_power(DSI_COMPLEXIO_POWER_OFF
);
1525 static int _dsi_wait_reset(void)
1529 while (REG_GET(DSI_SYSSTATUS
, 0, 0) == 0) {
1531 DSSERR("soft reset failed\n");
1540 static int _dsi_reset(void)
1543 REG_FLD_MOD(DSI_SYSCONFIG
, 1, 1, 1);
1544 return _dsi_wait_reset();
1547 static void dsi_reset_tx_fifo(int channel
)
1552 /* set fifosize of the channel to 0, then return the old size */
1553 l
= dsi_read_reg(DSI_TX_FIFO_VC_SIZE
);
1555 mask
= FLD_MASK((8 * channel
) + 7, (8 * channel
) + 4);
1556 dsi_write_reg(DSI_TX_FIFO_VC_SIZE
, l
& ~mask
);
1558 dsi_write_reg(DSI_TX_FIFO_VC_SIZE
, l
);
1561 static void dsi_config_tx_fifo(enum fifo_size size1
, enum fifo_size size2
,
1562 enum fifo_size size3
, enum fifo_size size4
)
1568 dsi
.vc
[0].fifo_size
= size1
;
1569 dsi
.vc
[1].fifo_size
= size2
;
1570 dsi
.vc
[2].fifo_size
= size3
;
1571 dsi
.vc
[3].fifo_size
= size4
;
1573 for (i
= 0; i
< 4; i
++) {
1575 int size
= dsi
.vc
[i
].fifo_size
;
1577 if (add
+ size
> 4) {
1578 DSSERR("Illegal FIFO configuration\n");
1582 v
= FLD_VAL(add
, 2, 0) | FLD_VAL(size
, 7, 4);
1584 /*DSSDBG("TX FIFO vc %d: size %d, add %d\n", i, size, add); */
1588 dsi_write_reg(DSI_TX_FIFO_VC_SIZE
, r
);
1591 static void dsi_config_rx_fifo(enum fifo_size size1
, enum fifo_size size2
,
1592 enum fifo_size size3
, enum fifo_size size4
)
1598 dsi
.vc
[0].fifo_size
= size1
;
1599 dsi
.vc
[1].fifo_size
= size2
;
1600 dsi
.vc
[2].fifo_size
= size3
;
1601 dsi
.vc
[3].fifo_size
= size4
;
1603 for (i
= 0; i
< 4; i
++) {
1605 int size
= dsi
.vc
[i
].fifo_size
;
1607 if (add
+ size
> 4) {
1608 DSSERR("Illegal FIFO configuration\n");
1612 v
= FLD_VAL(add
, 2, 0) | FLD_VAL(size
, 7, 4);
1614 /*DSSDBG("RX FIFO vc %d: size %d, add %d\n", i, size, add); */
1618 dsi_write_reg(DSI_RX_FIFO_VC_SIZE
, r
);
1621 static int dsi_force_tx_stop_mode_io(void)
1625 r
= dsi_read_reg(DSI_TIMING1
);
1626 r
= FLD_MOD(r
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
1627 dsi_write_reg(DSI_TIMING1
, r
);
1629 if (wait_for_bit_change(DSI_TIMING1
, 15, 0) != 0) {
1630 DSSERR("TX_STOP bit not going down\n");
1637 static void dsi_vc_print_status(int channel
)
1641 r
= dsi_read_reg(DSI_VC_CTRL(channel
));
1642 DSSDBG("vc %d: TX_FIFO_NOT_EMPTY %d, BTA_EN %d, VC_BUSY %d, "
1643 "TX_FIFO_FULL %d, RX_FIFO_NOT_EMPTY %d, ",
1649 FLD_GET(r
, 20, 20));
1651 r
= dsi_read_reg(DSI_TX_FIFO_VC_EMPTINESS
);
1652 DSSDBG("EMPTINESS %d\n", (r
>> (8 * channel
)) & 0xff);
1655 static int dsi_vc_enable(int channel
, bool enable
)
1657 if (dsi
.update_mode
!= OMAP_DSS_UPDATE_AUTO
)
1658 DSSDBG("dsi_vc_enable channel %d, enable %d\n",
1661 enable
= enable
? 1 : 0;
1663 REG_FLD_MOD(DSI_VC_CTRL(channel
), enable
, 0, 0);
1665 if (wait_for_bit_change(DSI_VC_CTRL(channel
), 0, enable
) != enable
) {
1666 DSSERR("Failed to set dsi_vc_enable to %d\n", enable
);
1673 static void dsi_vc_initial_config(int channel
)
1677 DSSDBGF("%d", channel
);
1679 r
= dsi_read_reg(DSI_VC_CTRL(channel
));
1681 if (FLD_GET(r
, 15, 15)) /* VC_BUSY */
1682 DSSERR("VC(%d) busy when trying to configure it!\n",
1685 r
= FLD_MOD(r
, 0, 1, 1); /* SOURCE, 0 = L4 */
1686 r
= FLD_MOD(r
, 0, 2, 2); /* BTA_SHORT_EN */
1687 r
= FLD_MOD(r
, 0, 3, 3); /* BTA_LONG_EN */
1688 r
= FLD_MOD(r
, 0, 4, 4); /* MODE, 0 = command */
1689 r
= FLD_MOD(r
, 1, 7, 7); /* CS_TX_EN */
1690 r
= FLD_MOD(r
, 1, 8, 8); /* ECC_TX_EN */
1691 r
= FLD_MOD(r
, 0, 9, 9); /* MODE_SPEED, high speed on/off */
1693 r
= FLD_MOD(r
, 4, 29, 27); /* DMA_RX_REQ_NB = no dma */
1694 r
= FLD_MOD(r
, 4, 23, 21); /* DMA_TX_REQ_NB = no dma */
1696 dsi_write_reg(DSI_VC_CTRL(channel
), r
);
1698 dsi
.vc
[channel
].mode
= DSI_VC_MODE_L4
;
1701 static void dsi_vc_config_l4(int channel
)
1703 if (dsi
.vc
[channel
].mode
== DSI_VC_MODE_L4
)
1706 DSSDBGF("%d", channel
);
1708 dsi_vc_enable(channel
, 0);
1710 if (REG_GET(DSI_VC_CTRL(channel
), 15, 15)) /* VC_BUSY */
1711 DSSERR("vc(%d) busy when trying to config for L4\n", channel
);
1713 REG_FLD_MOD(DSI_VC_CTRL(channel
), 0, 1, 1); /* SOURCE, 0 = L4 */
1715 dsi_vc_enable(channel
, 1);
1717 dsi
.vc
[channel
].mode
= DSI_VC_MODE_L4
;
1720 static void dsi_vc_config_vp(int channel
)
1722 if (dsi
.vc
[channel
].mode
== DSI_VC_MODE_VP
)
1725 DSSDBGF("%d", channel
);
1727 dsi_vc_enable(channel
, 0);
1729 if (REG_GET(DSI_VC_CTRL(channel
), 15, 15)) /* VC_BUSY */
1730 DSSERR("vc(%d) busy when trying to config for VP\n", channel
);
1732 REG_FLD_MOD(DSI_VC_CTRL(channel
), 1, 1, 1); /* SOURCE, 1 = video port */
1734 dsi_vc_enable(channel
, 1);
1736 dsi
.vc
[channel
].mode
= DSI_VC_MODE_VP
;
1740 static void dsi_vc_enable_hs(int channel
, bool enable
)
1742 DSSDBG("dsi_vc_enable_hs(%d, %d)\n", channel
, enable
);
1744 dsi_vc_enable(channel
, 0);
1747 REG_FLD_MOD(DSI_VC_CTRL(channel
), enable
, 9, 9);
1749 dsi_vc_enable(channel
, 1);
1752 dsi_force_tx_stop_mode_io();
1755 static void dsi_vc_flush_long_data(int channel
)
1757 while (REG_GET(DSI_VC_CTRL(channel
), 20, 20)) {
1759 val
= dsi_read_reg(DSI_VC_SHORT_PACKET_HEADER(channel
));
1760 DSSDBG("\t\tb1 %#02x b2 %#02x b3 %#02x b4 %#02x\n",
1764 (val
>> 24) & 0xff);
1768 static void dsi_show_rx_ack_with_err(u16 err
)
1770 DSSERR("\tACK with ERROR (%#x):\n", err
);
1772 DSSERR("\t\tSoT Error\n");
1774 DSSERR("\t\tSoT Sync Error\n");
1776 DSSERR("\t\tEoT Sync Error\n");
1778 DSSERR("\t\tEscape Mode Entry Command Error\n");
1780 DSSERR("\t\tLP Transmit Sync Error\n");
1782 DSSERR("\t\tHS Receive Timeout Error\n");
1784 DSSERR("\t\tFalse Control Error\n");
1786 DSSERR("\t\t(reserved7)\n");
1788 DSSERR("\t\tECC Error, single-bit (corrected)\n");
1790 DSSERR("\t\tECC Error, multi-bit (not corrected)\n");
1791 if (err
& (1 << 10))
1792 DSSERR("\t\tChecksum Error\n");
1793 if (err
& (1 << 11))
1794 DSSERR("\t\tData type not recognized\n");
1795 if (err
& (1 << 12))
1796 DSSERR("\t\tInvalid VC ID\n");
1797 if (err
& (1 << 13))
1798 DSSERR("\t\tInvalid Transmission Length\n");
1799 if (err
& (1 << 14))
1800 DSSERR("\t\t(reserved14)\n");
1801 if (err
& (1 << 15))
1802 DSSERR("\t\tDSI Protocol Violation\n");
1805 static u16
dsi_vc_flush_receive_data(int channel
)
1807 /* RX_FIFO_NOT_EMPTY */
1808 while (REG_GET(DSI_VC_CTRL(channel
), 20, 20)) {
1811 val
= dsi_read_reg(DSI_VC_SHORT_PACKET_HEADER(channel
));
1812 DSSDBG("\trawval %#08x\n", val
);
1813 dt
= FLD_GET(val
, 5, 0);
1814 if (dt
== DSI_DT_RX_ACK_WITH_ERR
) {
1815 u16 err
= FLD_GET(val
, 23, 8);
1816 dsi_show_rx_ack_with_err(err
);
1817 } else if (dt
== DSI_DT_RX_SHORT_READ_1
) {
1818 DSSDBG("\tDCS short response, 1 byte: %#x\n",
1819 FLD_GET(val
, 23, 8));
1820 } else if (dt
== DSI_DT_RX_SHORT_READ_2
) {
1821 DSSDBG("\tDCS short response, 2 byte: %#x\n",
1822 FLD_GET(val
, 23, 8));
1823 } else if (dt
== DSI_DT_RX_DCS_LONG_READ
) {
1824 DSSDBG("\tDCS long response, len %d\n",
1825 FLD_GET(val
, 23, 8));
1826 dsi_vc_flush_long_data(channel
);
1828 DSSERR("\tunknown datatype 0x%02x\n", dt
);
1834 static int dsi_vc_send_bta(int channel
)
1836 if (dsi
.update_mode
!= OMAP_DSS_UPDATE_AUTO
&&
1837 (dsi
.debug_write
|| dsi
.debug_read
))
1838 DSSDBG("dsi_vc_send_bta %d\n", channel
);
1840 WARN_ON(!mutex_is_locked(&dsi
.bus_lock
));
1842 if (REG_GET(DSI_VC_CTRL(channel
), 20, 20)) { /* RX_FIFO_NOT_EMPTY */
1843 DSSERR("rx fifo not empty when sending BTA, dumping data:\n");
1844 dsi_vc_flush_receive_data(channel
);
1847 REG_FLD_MOD(DSI_VC_CTRL(channel
), 1, 6, 6); /* BTA_EN */
1852 int dsi_vc_send_bta_sync(int channel
)
1857 INIT_COMPLETION(dsi
.bta_completion
);
1859 dsi_vc_enable_bta_irq(channel
);
1861 r
= dsi_vc_send_bta(channel
);
1865 if (wait_for_completion_timeout(&dsi
.bta_completion
,
1866 msecs_to_jiffies(500)) == 0) {
1867 DSSERR("Failed to receive BTA\n");
1872 err
= dsi_get_errors();
1874 DSSERR("Error while sending BTA: %x\n", err
);
1879 dsi_vc_disable_bta_irq(channel
);
1883 EXPORT_SYMBOL(dsi_vc_send_bta_sync
);
1885 static inline void dsi_vc_write_long_header(int channel
, u8 data_type
,
1891 WARN_ON(!mutex_is_locked(&dsi
.bus_lock
));
1893 /*data_id = data_type | channel << 6; */
1894 data_id
= data_type
| dsi
.vc
[channel
].dest_per
<< 6;
1896 val
= FLD_VAL(data_id
, 7, 0) | FLD_VAL(len
, 23, 8) |
1897 FLD_VAL(ecc
, 31, 24);
1899 dsi_write_reg(DSI_VC_LONG_PACKET_HEADER(channel
), val
);
1902 static inline void dsi_vc_write_long_payload(int channel
,
1903 u8 b1
, u8 b2
, u8 b3
, u8 b4
)
1907 val
= b4
<< 24 | b3
<< 16 | b2
<< 8 | b1
<< 0;
1909 /* DSSDBG("\twriting %02x, %02x, %02x, %02x (%#010x)\n",
1910 b1, b2, b3, b4, val); */
1912 dsi_write_reg(DSI_VC_LONG_PACKET_PAYLOAD(channel
), val
);
1915 static int dsi_vc_send_long(int channel
, u8 data_type
, u8
*data
, u16 len
,
1924 if (dsi
.debug_write
)
1925 DSSDBG("dsi_vc_send_long, %d bytes\n", len
);
1928 if (dsi
.vc
[channel
].fifo_size
* 32 * 4 < len
+ 4) {
1929 DSSERR("unable to send long packet: packet too long.\n");
1933 dsi_vc_config_l4(channel
);
1935 dsi_vc_write_long_header(channel
, data_type
, len
, ecc
);
1937 /*dsi_vc_print_status(0); */
1940 for (i
= 0; i
< len
>> 2; i
++) {
1941 if (dsi
.debug_write
)
1942 DSSDBG("\tsending full packet %d\n", i
);
1943 /*dsi_vc_print_status(0); */
1950 dsi_vc_write_long_payload(channel
, b1
, b2
, b3
, b4
);
1955 b1
= 0; b2
= 0; b3
= 0;
1957 if (dsi
.debug_write
)
1958 DSSDBG("\tsending remainder bytes %d\n", i
);
1975 dsi_vc_write_long_payload(channel
, b1
, b2
, b3
, 0);
1981 static int dsi_vc_send_short(int channel
, u8 data_type
, u16 data
, u8 ecc
)
1986 WARN_ON(!mutex_is_locked(&dsi
.bus_lock
));
1988 if (dsi
.debug_write
)
1989 DSSDBG("dsi_vc_send_short(ch%d, dt %#x, b1 %#x, b2 %#x)\n",
1991 data_type
, data
& 0xff, (data
>> 8) & 0xff);
1993 dsi_vc_config_l4(channel
);
1995 if (FLD_GET(dsi_read_reg(DSI_VC_CTRL(channel
)), 16, 16)) {
1996 DSSERR("ERROR FIFO FULL, aborting transfer\n");
2000 data_id
= data_type
| channel
<< 6;
2002 r
= (data_id
<< 0) | (data
<< 8) | (ecc
<< 24);
2004 dsi_write_reg(DSI_VC_SHORT_PACKET_HEADER(channel
), r
);
2009 int dsi_vc_send_null(int channel
)
2011 u8 nullpkg
[] = {0, 0, 0, 0};
2012 return dsi_vc_send_long(0, DSI_DT_NULL_PACKET
, nullpkg
, 4, 0);
2014 EXPORT_SYMBOL(dsi_vc_send_null
);
2016 int dsi_vc_dcs_write_nosync(int channel
, u8
*data
, int len
)
2023 r
= dsi_vc_send_short(channel
, DSI_DT_DCS_SHORT_WRITE_0
,
2025 } else if (len
== 2) {
2026 r
= dsi_vc_send_short(channel
, DSI_DT_DCS_SHORT_WRITE_1
,
2027 data
[0] | (data
[1] << 8), 0);
2029 /* 0x39 = DCS Long Write */
2030 r
= dsi_vc_send_long(channel
, DSI_DT_DCS_LONG_WRITE
,
2036 EXPORT_SYMBOL(dsi_vc_dcs_write_nosync
);
2038 int dsi_vc_dcs_write(int channel
, u8
*data
, int len
)
2042 r
= dsi_vc_dcs_write_nosync(channel
, data
, len
);
2046 r
= dsi_vc_send_bta_sync(channel
);
2050 EXPORT_SYMBOL(dsi_vc_dcs_write
);
2052 int dsi_vc_dcs_read(int channel
, u8 dcs_cmd
, u8
*buf
, int buflen
)
2059 DSSDBG("dsi_vc_dcs_read(ch%d, dcs_cmd %u)\n", channel
, dcs_cmd
);
2061 r
= dsi_vc_send_short(channel
, DSI_DT_DCS_READ
, dcs_cmd
, 0);
2065 r
= dsi_vc_send_bta_sync(channel
);
2069 /* RX_FIFO_NOT_EMPTY */
2070 if (REG_GET(DSI_VC_CTRL(channel
), 20, 20) == 0) {
2071 DSSERR("RX fifo empty when trying to read.\n");
2075 val
= dsi_read_reg(DSI_VC_SHORT_PACKET_HEADER(channel
));
2077 DSSDBG("\theader: %08x\n", val
);
2078 dt
= FLD_GET(val
, 5, 0);
2079 if (dt
== DSI_DT_RX_ACK_WITH_ERR
) {
2080 u16 err
= FLD_GET(val
, 23, 8);
2081 dsi_show_rx_ack_with_err(err
);
2084 } else if (dt
== DSI_DT_RX_SHORT_READ_1
) {
2085 u8 data
= FLD_GET(val
, 15, 8);
2087 DSSDBG("\tDCS short response, 1 byte: %02x\n", data
);
2095 } else if (dt
== DSI_DT_RX_SHORT_READ_2
) {
2096 u16 data
= FLD_GET(val
, 23, 8);
2098 DSSDBG("\tDCS short response, 2 byte: %04x\n", data
);
2103 buf
[0] = data
& 0xff;
2104 buf
[1] = (data
>> 8) & 0xff;
2107 } else if (dt
== DSI_DT_RX_DCS_LONG_READ
) {
2109 int len
= FLD_GET(val
, 23, 8);
2111 DSSDBG("\tDCS long response, len %d\n", len
);
2116 /* two byte checksum ends the packet, not included in len */
2117 for (w
= 0; w
< len
+ 2;) {
2119 val
= dsi_read_reg(DSI_VC_SHORT_PACKET_HEADER(channel
));
2121 DSSDBG("\t\t%02x %02x %02x %02x\n",
2125 (val
>> 24) & 0xff);
2127 for (b
= 0; b
< 4; ++b
) {
2129 buf
[w
] = (val
>> (b
* 8)) & 0xff;
2130 /* we discard the 2 byte checksum */
2138 DSSERR("\tunknown datatype 0x%02x\n", dt
);
2142 EXPORT_SYMBOL(dsi_vc_dcs_read
);
2145 int dsi_vc_set_max_rx_packet_size(int channel
, u16 len
)
2148 r
= dsi_vc_send_short(channel
, DSI_DT_SET_MAX_RET_PKG_SIZE
,
2154 r
= dsi_vc_send_bta_sync(channel
);
2158 EXPORT_SYMBOL(dsi_vc_set_max_rx_packet_size
);
2160 static void dsi_set_lp_rx_timeout(unsigned long ns
)
2165 unsigned long ticks
;
2167 /* ticks in DSI_FCK */
2169 fck
= dsi_fclk_rate();
2170 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000;
2174 if (ticks
> 0x1fff) {
2175 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000 / 4;
2180 if (ticks
> 0x1fff) {
2181 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000 / 16;
2186 if (ticks
> 0x1fff) {
2187 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000 / (4 * 16);
2192 if (ticks
> 0x1fff) {
2193 DSSWARN("LP_TX_TO over limit, setting it to max\n");
2199 r
= dsi_read_reg(DSI_TIMING2
);
2200 r
= FLD_MOD(r
, 1, 15, 15); /* LP_RX_TO */
2201 r
= FLD_MOD(r
, x16
, 14, 14); /* LP_RX_TO_X16 */
2202 r
= FLD_MOD(r
, x4
, 13, 13); /* LP_RX_TO_X4 */
2203 r
= FLD_MOD(r
, ticks
, 12, 0); /* LP_RX_COUNTER */
2204 dsi_write_reg(DSI_TIMING2
, r
);
2206 DSSDBG("LP_RX_TO %lu ns (%#lx ticks%s%s)\n",
2207 (ticks
* (x16
? 16 : 1) * (x4
? 4 : 1) * 1000) /
2208 (fck
/ 1000 / 1000),
2209 ticks
, x4
? " x4" : "", x16
? " x16" : "");
2212 static void dsi_set_ta_timeout(unsigned long ns
)
2217 unsigned long ticks
;
2219 /* ticks in DSI_FCK */
2220 fck
= dsi_fclk_rate();
2221 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000;
2225 if (ticks
> 0x1fff) {
2226 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000 / 8;
2231 if (ticks
> 0x1fff) {
2232 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000 / 16;
2237 if (ticks
> 0x1fff) {
2238 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000 / (8 * 16);
2243 if (ticks
> 0x1fff) {
2244 DSSWARN("TA_TO over limit, setting it to max\n");
2250 r
= dsi_read_reg(DSI_TIMING1
);
2251 r
= FLD_MOD(r
, 1, 31, 31); /* TA_TO */
2252 r
= FLD_MOD(r
, x16
, 30, 30); /* TA_TO_X16 */
2253 r
= FLD_MOD(r
, x8
, 29, 29); /* TA_TO_X8 */
2254 r
= FLD_MOD(r
, ticks
, 28, 16); /* TA_TO_COUNTER */
2255 dsi_write_reg(DSI_TIMING1
, r
);
2257 DSSDBG("TA_TO %lu ns (%#lx ticks%s%s)\n",
2258 (ticks
* (x16
? 16 : 1) * (x8
? 8 : 1) * 1000) /
2259 (fck
/ 1000 / 1000),
2260 ticks
, x8
? " x8" : "", x16
? " x16" : "");
2263 static void dsi_set_stop_state_counter(unsigned long ns
)
2268 unsigned long ticks
;
2270 /* ticks in DSI_FCK */
2272 fck
= dsi_fclk_rate();
2273 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000;
2277 if (ticks
> 0x1fff) {
2278 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000 / 4;
2283 if (ticks
> 0x1fff) {
2284 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000 / 16;
2289 if (ticks
> 0x1fff) {
2290 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000 / (4 * 16);
2295 if (ticks
> 0x1fff) {
2296 DSSWARN("STOP_STATE_COUNTER_IO over limit, "
2297 "setting it to max\n");
2303 r
= dsi_read_reg(DSI_TIMING1
);
2304 r
= FLD_MOD(r
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
2305 r
= FLD_MOD(r
, x16
, 14, 14); /* STOP_STATE_X16_IO */
2306 r
= FLD_MOD(r
, x4
, 13, 13); /* STOP_STATE_X4_IO */
2307 r
= FLD_MOD(r
, ticks
, 12, 0); /* STOP_STATE_COUNTER_IO */
2308 dsi_write_reg(DSI_TIMING1
, r
);
2310 DSSDBG("STOP_STATE_COUNTER %lu ns (%#lx ticks%s%s)\n",
2311 (ticks
* (x16
? 16 : 1) * (x4
? 4 : 1) * 1000) /
2312 (fck
/ 1000 / 1000),
2313 ticks
, x4
? " x4" : "", x16
? " x16" : "");
2316 static void dsi_set_hs_tx_timeout(unsigned long ns
)
2321 unsigned long ticks
;
2323 /* ticks in TxByteClkHS */
2325 fck
= dsi_get_txbyteclkhs();
2326 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000;
2330 if (ticks
> 0x1fff) {
2331 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000 / 4;
2336 if (ticks
> 0x1fff) {
2337 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000 / 16;
2342 if (ticks
> 0x1fff) {
2343 ticks
= (fck
/ 1000 / 1000) * ns
/ 1000 / (4 * 16);
2348 if (ticks
> 0x1fff) {
2349 DSSWARN("HS_TX_TO over limit, setting it to max\n");
2355 r
= dsi_read_reg(DSI_TIMING2
);
2356 r
= FLD_MOD(r
, 1, 31, 31); /* HS_TX_TO */
2357 r
= FLD_MOD(r
, x16
, 30, 30); /* HS_TX_TO_X16 */
2358 r
= FLD_MOD(r
, x4
, 29, 29); /* HS_TX_TO_X8 (4 really) */
2359 r
= FLD_MOD(r
, ticks
, 28, 16); /* HS_TX_TO_COUNTER */
2360 dsi_write_reg(DSI_TIMING2
, r
);
2362 DSSDBG("HS_TX_TO %lu ns (%#lx ticks%s%s)\n",
2363 (ticks
* (x16
? 16 : 1) * (x4
? 4 : 1) * 1000) /
2364 (fck
/ 1000 / 1000),
2365 ticks
, x4
? " x4" : "", x16
? " x16" : "");
2367 static int dsi_proto_config(struct omap_dss_device
*dssdev
)
2372 dsi_config_tx_fifo(DSI_FIFO_SIZE_128
,
2377 dsi_config_rx_fifo(DSI_FIFO_SIZE_128
,
2382 /* XXX what values for the timeouts? */
2383 dsi_set_stop_state_counter(1000);
2384 dsi_set_ta_timeout(6400000);
2385 dsi_set_lp_rx_timeout(48000);
2386 dsi_set_hs_tx_timeout(1000000);
2388 switch (dssdev
->ctrl
.pixel_size
) {
2402 r
= dsi_read_reg(DSI_CTRL
);
2403 r
= FLD_MOD(r
, 1, 1, 1); /* CS_RX_EN */
2404 r
= FLD_MOD(r
, 1, 2, 2); /* ECC_RX_EN */
2405 r
= FLD_MOD(r
, 1, 3, 3); /* TX_FIFO_ARBITRATION */
2406 r
= FLD_MOD(r
, 1, 4, 4); /* VP_CLK_RATIO, always 1, see errata*/
2407 r
= FLD_MOD(r
, buswidth
, 7, 6); /* VP_DATA_BUS_WIDTH */
2408 r
= FLD_MOD(r
, 0, 8, 8); /* VP_CLK_POL */
2409 r
= FLD_MOD(r
, 2, 13, 12); /* LINE_BUFFER, 2 lines */
2410 r
= FLD_MOD(r
, 1, 14, 14); /* TRIGGER_RESET_MODE */
2411 r
= FLD_MOD(r
, 1, 19, 19); /* EOT_ENABLE */
2412 r
= FLD_MOD(r
, 1, 24, 24); /* DCS_CMD_ENABLE */
2413 r
= FLD_MOD(r
, 0, 25, 25); /* DCS_CMD_CODE, 1=start, 0=continue */
2415 dsi_write_reg(DSI_CTRL
, r
);
2417 dsi_vc_initial_config(0);
2419 /* set all vc targets to peripheral 0 */
2420 dsi
.vc
[0].dest_per
= 0;
2421 dsi
.vc
[1].dest_per
= 0;
2422 dsi
.vc
[2].dest_per
= 0;
2423 dsi
.vc
[3].dest_per
= 0;
2428 static void dsi_proto_timings(struct omap_dss_device
*dssdev
)
2430 unsigned tlpx
, tclk_zero
, tclk_prepare
, tclk_trail
;
2431 unsigned tclk_pre
, tclk_post
;
2432 unsigned ths_prepare
, ths_prepare_ths_zero
, ths_zero
;
2433 unsigned ths_trail
, ths_exit
;
2434 unsigned ddr_clk_pre
, ddr_clk_post
;
2435 unsigned enter_hs_mode_lat
, exit_hs_mode_lat
;
2439 r
= dsi_read_reg(DSI_DSIPHY_CFG0
);
2440 ths_prepare
= FLD_GET(r
, 31, 24);
2441 ths_prepare_ths_zero
= FLD_GET(r
, 23, 16);
2442 ths_zero
= ths_prepare_ths_zero
- ths_prepare
;
2443 ths_trail
= FLD_GET(r
, 15, 8);
2444 ths_exit
= FLD_GET(r
, 7, 0);
2446 r
= dsi_read_reg(DSI_DSIPHY_CFG1
);
2447 tlpx
= FLD_GET(r
, 22, 16) * 2;
2448 tclk_trail
= FLD_GET(r
, 15, 8);
2449 tclk_zero
= FLD_GET(r
, 7, 0);
2451 r
= dsi_read_reg(DSI_DSIPHY_CFG2
);
2452 tclk_prepare
= FLD_GET(r
, 7, 0);
2456 /* min 60ns + 52*UI */
2457 tclk_post
= ns2ddr(60) + 26;
2459 /* ths_eot is 2 for 2 datalanes and 4 for 1 datalane */
2460 if (dssdev
->phy
.dsi
.data1_lane
!= 0 &&
2461 dssdev
->phy
.dsi
.data2_lane
!= 0)
2466 ddr_clk_pre
= DIV_ROUND_UP(tclk_pre
+ tlpx
+ tclk_zero
+ tclk_prepare
,
2468 ddr_clk_post
= DIV_ROUND_UP(tclk_post
+ ths_trail
, 4) + ths_eot
;
2470 BUG_ON(ddr_clk_pre
== 0 || ddr_clk_pre
> 255);
2471 BUG_ON(ddr_clk_post
== 0 || ddr_clk_post
> 255);
2473 r
= dsi_read_reg(DSI_CLK_TIMING
);
2474 r
= FLD_MOD(r
, ddr_clk_pre
, 15, 8);
2475 r
= FLD_MOD(r
, ddr_clk_post
, 7, 0);
2476 dsi_write_reg(DSI_CLK_TIMING
, r
);
2478 DSSDBG("ddr_clk_pre %u, ddr_clk_post %u\n",
2482 enter_hs_mode_lat
= 1 + DIV_ROUND_UP(tlpx
, 4) +
2483 DIV_ROUND_UP(ths_prepare
, 4) +
2484 DIV_ROUND_UP(ths_zero
+ 3, 4);
2486 exit_hs_mode_lat
= DIV_ROUND_UP(ths_trail
+ ths_exit
, 4) + 1 + ths_eot
;
2488 r
= FLD_VAL(enter_hs_mode_lat
, 31, 16) |
2489 FLD_VAL(exit_hs_mode_lat
, 15, 0);
2490 dsi_write_reg(DSI_VM_TIMING7
, r
);
2492 DSSDBG("enter_hs_mode_lat %u, exit_hs_mode_lat %u\n",
2493 enter_hs_mode_lat
, exit_hs_mode_lat
);
2497 #define DSI_DECL_VARS \
2498 int __dsi_cb = 0; u32 __dsi_cv = 0;
2500 #define DSI_FLUSH(ch) \
2501 if (__dsi_cb > 0) { \
2502 /*DSSDBG("sending long packet %#010x\n", __dsi_cv);*/ \
2503 dsi_write_reg(DSI_VC_LONG_PACKET_PAYLOAD(ch), __dsi_cv); \
2504 __dsi_cb = __dsi_cv = 0; \
2507 #define DSI_PUSH(ch, data) \
2509 __dsi_cv |= (data) << (__dsi_cb * 8); \
2510 /*DSSDBG("cv = %#010x, cb = %d\n", __dsi_cv, __dsi_cb);*/ \
2511 if (++__dsi_cb > 3) \
2515 static int dsi_update_screen_l4(struct omap_dss_device
*dssdev
,
2516 int x
, int y
, int w
, int h
)
2518 /* Note: supports only 24bit colors in 32bit container */
2520 int fifo_stalls
= 0;
2521 int max_dsi_packet_size
;
2522 int max_data_per_packet
;
2523 int max_pixels_per_packet
;
2525 int bytespp
= dssdev
->ctrl
.pixel_size
/ 8;
2531 struct omap_overlay
*ovl
;
2535 DSSDBG("dsi_update_screen_l4 (%d,%d %dx%d)\n",
2538 ovl
= dssdev
->manager
->overlays
[0];
2540 if (ovl
->info
.color_mode
!= OMAP_DSS_COLOR_RGB24U
)
2543 if (dssdev
->ctrl
.pixel_size
!= 24)
2546 scr_width
= ovl
->info
.screen_width
;
2547 data
= ovl
->info
.vaddr
;
2549 start_offset
= scr_width
* y
+ x
;
2550 horiz_inc
= scr_width
- w
;
2553 /* We need header(4) + DCSCMD(1) + pixels(numpix*bytespp) bytes
2556 /* When using CPU, max long packet size is TX buffer size */
2557 max_dsi_packet_size
= dsi
.vc
[0].fifo_size
* 32 * 4;
2559 /* we seem to get better perf if we divide the tx fifo to half,
2560 and while the other half is being sent, we fill the other half
2561 max_dsi_packet_size /= 2; */
2563 max_data_per_packet
= max_dsi_packet_size
- 4 - 1;
2565 max_pixels_per_packet
= max_data_per_packet
/ bytespp
;
2567 DSSDBG("max_pixels_per_packet %d\n", max_pixels_per_packet
);
2569 pixels_left
= w
* h
;
2571 DSSDBG("total pixels %d\n", pixels_left
);
2573 data
+= start_offset
;
2575 while (pixels_left
> 0) {
2576 /* 0x2c = write_memory_start */
2577 /* 0x3c = write_memory_continue */
2578 u8 dcs_cmd
= first
? 0x2c : 0x3c;
2584 /* using fifo not empty */
2585 /* TX_FIFO_NOT_EMPTY */
2586 while (FLD_GET(dsi_read_reg(DSI_VC_CTRL(0)), 5, 5)) {
2589 if (fifo_stalls
> 0xfffff) {
2590 DSSERR("fifo stalls overflow, pixels left %d\n",
2597 /* using fifo emptiness */
2598 while ((REG_GET(DSI_TX_FIFO_VC_EMPTINESS
, 7, 0)+1)*4 <
2599 max_dsi_packet_size
) {
2601 if (fifo_stalls
> 0xfffff) {
2602 DSSERR("fifo stalls overflow, pixels left %d\n",
2609 while ((REG_GET(DSI_TX_FIFO_VC_EMPTINESS
, 7, 0)+1)*4 == 0) {
2611 if (fifo_stalls
> 0xfffff) {
2612 DSSERR("fifo stalls overflow, pixels left %d\n",
2619 pixels
= min(max_pixels_per_packet
, pixels_left
);
2621 pixels_left
-= pixels
;
2623 dsi_vc_write_long_header(0, DSI_DT_DCS_LONG_WRITE
,
2624 1 + pixels
* bytespp
, 0);
2626 DSI_PUSH(0, dcs_cmd
);
2628 while (pixels
-- > 0) {
2629 u32 pix
= __raw_readl(data
++);
2631 DSI_PUSH(0, (pix
>> 16) & 0xff);
2632 DSI_PUSH(0, (pix
>> 8) & 0xff);
2633 DSI_PUSH(0, (pix
>> 0) & 0xff);
2636 if (current_x
== x
+w
) {
2648 static void dsi_update_screen_dispc(struct omap_dss_device
*dssdev
,
2649 u16 x
, u16 y
, u16 w
, u16 h
)
2655 unsigned packet_payload
;
2656 unsigned packet_len
;
2658 bool use_te_trigger
;
2659 const unsigned channel
= 0;
2660 /* line buffer is 1024 x 24bits */
2661 /* XXX: for some reason using full buffer size causes considerable TX
2662 * slowdown with update sizes that fill the whole buffer */
2663 const unsigned line_buf_size
= 1023 * 3;
2665 use_te_trigger
= dsi
.te_enabled
&& !dsi
.use_ext_te
;
2667 if (dsi
.update_mode
!= OMAP_DSS_UPDATE_AUTO
)
2668 DSSDBG("dsi_update_screen_dispc(%d,%d %dx%d)\n",
2671 bytespp
= dssdev
->ctrl
.pixel_size
/ 8;
2672 bytespl
= w
* bytespp
;
2673 bytespf
= bytespl
* h
;
2675 /* NOTE: packet_payload has to be equal to N * bytespl, where N is
2676 * number of lines in a packet. See errata about VP_CLK_RATIO */
2678 if (bytespf
< line_buf_size
)
2679 packet_payload
= bytespf
;
2681 packet_payload
= (line_buf_size
) / bytespl
* bytespl
;
2683 packet_len
= packet_payload
+ 1; /* 1 byte for DCS cmd */
2684 total_len
= (bytespf
/ packet_payload
) * packet_len
;
2686 if (bytespf
% packet_payload
)
2687 total_len
+= (bytespf
% packet_payload
) + 1;
2690 dsi_vc_print_status(1);
2692 l
= FLD_VAL(total_len
, 23, 0); /* TE_SIZE */
2693 dsi_write_reg(DSI_VC_TE(channel
), l
);
2695 dsi_vc_write_long_header(channel
, DSI_DT_DCS_LONG_WRITE
, packet_len
, 0);
2698 l
= FLD_MOD(l
, 1, 30, 30); /* TE_EN */
2700 l
= FLD_MOD(l
, 1, 31, 31); /* TE_START */
2701 dsi_write_reg(DSI_VC_TE(channel
), l
);
2703 /* We put SIDLEMODE to no-idle for the duration of the transfer,
2704 * because DSS interrupts are not capable of waking up the CPU and the
2705 * framedone interrupt could be delayed for quite a long time. I think
2706 * the same goes for any DSS interrupts, but for some reason I have not
2707 * seen the problem anywhere else than here.
2709 dispc_disable_sidle();
2711 dss_start_update(dssdev
);
2713 if (use_te_trigger
) {
2714 /* disable LP_RX_TO, so that we can receive TE. Time to wait
2715 * for TE is longer than the timer allows */
2716 REG_FLD_MOD(DSI_TIMING2
, 0, 15, 15); /* LP_RX_TO */
2718 dsi_vc_send_bta(channel
);
2720 #ifdef DSI_CATCH_MISSING_TE
2721 mod_timer(&dsi
.te_timer
, jiffies
+ msecs_to_jiffies(250));
2726 #ifdef DSI_CATCH_MISSING_TE
2727 static void dsi_te_timeout(unsigned long arg
)
2729 DSSERR("TE not received for 250ms!\n");
2733 static void dsi_framedone_irq_callback(void *data
, u32 mask
)
2735 /* Note: We get FRAMEDONE when DISPC has finished sending pixels and
2736 * turns itself off. However, DSI still has the pixels in its buffers,
2737 * and is sending the data.
2740 /* SIDLEMODE back to smart-idle */
2741 dispc_enable_sidle();
2743 dsi
.framedone_received
= true;
2744 wake_up(&dsi
.waitqueue
);
2747 static void dsi_set_update_region(struct omap_dss_device
*dssdev
,
2748 u16 x
, u16 y
, u16 w
, u16 h
)
2750 spin_lock(&dsi
.update_lock
);
2751 if (dsi
.update_region
.dirty
) {
2752 dsi
.update_region
.x
= min(x
, dsi
.update_region
.x
);
2753 dsi
.update_region
.y
= min(y
, dsi
.update_region
.y
);
2754 dsi
.update_region
.w
= max(w
, dsi
.update_region
.w
);
2755 dsi
.update_region
.h
= max(h
, dsi
.update_region
.h
);
2757 dsi
.update_region
.x
= x
;
2758 dsi
.update_region
.y
= y
;
2759 dsi
.update_region
.w
= w
;
2760 dsi
.update_region
.h
= h
;
2763 dsi
.update_region
.device
= dssdev
;
2764 dsi
.update_region
.dirty
= true;
2766 spin_unlock(&dsi
.update_lock
);
2770 static int dsi_set_update_mode(struct omap_dss_device
*dssdev
,
2771 enum omap_dss_update_mode mode
)
2776 WARN_ON(!mutex_is_locked(&dsi
.bus_lock
));
2778 if (dsi
.update_mode
!= mode
) {
2779 dsi
.update_mode
= mode
;
2781 /* Mark the overlays dirty, and do apply(), so that we get the
2782 * overlays configured properly after update mode change. */
2783 for (i
= 0; i
< omap_dss_get_num_overlays(); ++i
) {
2784 struct omap_overlay
*ovl
;
2785 ovl
= omap_dss_get_overlay(i
);
2786 if (ovl
->manager
== dssdev
->manager
)
2787 ovl
->info_dirty
= true;
2790 r
= dssdev
->manager
->apply(dssdev
->manager
);
2792 if (dssdev
->state
== OMAP_DSS_DISPLAY_ACTIVE
&&
2793 mode
== OMAP_DSS_UPDATE_AUTO
) {
2796 DSSDBG("starting auto update\n");
2798 dssdev
->get_resolution(dssdev
, &w
, &h
);
2800 dsi_set_update_region(dssdev
, 0, 0, w
, h
);
2802 dsi_perf_mark_start_auto();
2804 wake_up(&dsi
.waitqueue
);
2811 static int dsi_set_te(struct omap_dss_device
*dssdev
, bool enable
)
2814 r
= dssdev
->driver
->enable_te(dssdev
, enable
);
2815 /* XXX for some reason, DSI TE breaks if we don't wait here.
2816 * Panel bug? Needs more studying */
2821 static void dsi_handle_framedone(void)
2824 const int channel
= 0;
2825 bool use_te_trigger
;
2827 use_te_trigger
= dsi
.te_enabled
&& !dsi
.use_ext_te
;
2829 if (dsi
.update_mode
!= OMAP_DSS_UPDATE_AUTO
)
2830 DSSDBG("FRAMEDONE\n");
2832 if (use_te_trigger
) {
2833 /* enable LP_RX_TO again after the TE */
2834 REG_FLD_MOD(DSI_TIMING2
, 1, 15, 15); /* LP_RX_TO */
2837 /* Send BTA after the frame. We need this for the TE to work, as TE
2838 * trigger is only sent for BTAs without preceding packet. Thus we need
2839 * to BTA after the pixel packets so that next BTA will cause TE
2842 * This is not needed when TE is not in use, but we do it anyway to
2843 * make sure that the transfer has been completed. It would be more
2844 * optimal, but more complex, to wait only just before starting next
2846 r
= dsi_vc_send_bta_sync(channel
);
2848 DSSERR("BTA after framedone failed\n");
2850 /* RX_FIFO_NOT_EMPTY */
2851 if (REG_GET(DSI_VC_CTRL(channel
), 20, 20)) {
2852 DSSERR("Received error during frame transfer:\n");
2853 dsi_vc_flush_receive_data(0);
2856 #ifdef CONFIG_OMAP2_DSS_FAKE_VSYNC
2857 dispc_fake_vsync_irq();
2861 static int dsi_update_thread(void *data
)
2863 unsigned long timeout
;
2864 struct omap_dss_device
*device
;
2870 wait_event_interruptible(dsi
.waitqueue
,
2871 dsi
.update_mode
== OMAP_DSS_UPDATE_AUTO
||
2872 (dsi
.update_mode
== OMAP_DSS_UPDATE_MANUAL
&&
2873 dsi
.update_region
.dirty
== true) ||
2874 kthread_should_stop());
2876 if (kthread_should_stop())
2881 if (dsi
.update_mode
== OMAP_DSS_UPDATE_DISABLED
||
2882 kthread_should_stop()) {
2887 dsi_perf_mark_setup();
2889 if (dsi
.update_region
.dirty
) {
2890 spin_lock(&dsi
.update_lock
);
2891 dsi
.active_update_region
= dsi
.update_region
;
2892 dsi
.update_region
.dirty
= false;
2893 spin_unlock(&dsi
.update_lock
);
2896 device
= dsi
.active_update_region
.device
;
2897 x
= dsi
.active_update_region
.x
;
2898 y
= dsi
.active_update_region
.y
;
2899 w
= dsi
.active_update_region
.w
;
2900 h
= dsi
.active_update_region
.h
;
2902 if (device
->manager
->caps
& OMAP_DSS_OVL_MGR_CAP_DISPC
) {
2904 if (dsi
.update_mode
== OMAP_DSS_UPDATE_MANUAL
)
2905 dss_setup_partial_planes(device
,
2908 dispc_set_lcd_size(w
, h
);
2911 if (dsi
.active_update_region
.dirty
) {
2912 dsi
.active_update_region
.dirty
= false;
2913 /* XXX TODO we don't need to send the coords, if they
2914 * are the same that are already programmed to the
2915 * panel. That should speed up manual update a bit */
2916 device
->driver
->setup_update(device
, x
, y
, w
, h
);
2919 dsi_perf_mark_start();
2921 if (device
->manager
->caps
& OMAP_DSS_OVL_MGR_CAP_DISPC
) {
2922 dsi_vc_config_vp(0);
2924 if (dsi
.te_enabled
&& dsi
.use_ext_te
)
2925 device
->driver
->wait_for_te(device
);
2927 dsi
.framedone_received
= false;
2929 dsi_update_screen_dispc(device
, x
, y
, w
, h
);
2931 /* wait for framedone */
2932 timeout
= msecs_to_jiffies(1000);
2933 wait_event_timeout(dsi
.waitqueue
,
2934 dsi
.framedone_received
== true,
2937 if (!dsi
.framedone_received
) {
2938 DSSERR("framedone timeout\n");
2939 DSSERR("failed update %d,%d %dx%d\n",
2942 dispc_enable_sidle();
2943 dispc_enable_lcd_out(0);
2945 dsi_reset_tx_fifo(0);
2947 dsi_handle_framedone();
2948 dsi_perf_show("DISPC");
2951 dsi_update_screen_l4(device
, x
, y
, w
, h
);
2952 dsi_perf_show("L4");
2955 sched
= atomic_read(&dsi
.bus_lock
.count
) < 0;
2957 complete_all(&dsi
.update_completion
);
2961 /* XXX We need to give others chance to get the bus lock. Is
2962 * there a better way for this? */
2963 if (dsi
.update_mode
== OMAP_DSS_UPDATE_AUTO
&& sched
)
2964 schedule_timeout_interruptible(1);
2967 DSSDBG("update thread exiting\n");
2976 static int dsi_display_init_dispc(struct omap_dss_device
*dssdev
)
2980 r
= omap_dispc_register_isr(dsi_framedone_irq_callback
, NULL
,
2981 DISPC_IRQ_FRAMEDONE
);
2983 DSSERR("can't get FRAMEDONE irq\n");
2987 dispc_set_lcd_display_type(OMAP_DSS_LCD_DISPLAY_TFT
);
2989 dispc_set_parallel_interface_mode(OMAP_DSS_PARALLELMODE_DSI
);
2990 dispc_enable_fifohandcheck(1);
2992 dispc_set_tft_data_lines(dssdev
->ctrl
.pixel_size
);
2995 struct omap_video_timings timings
= {
3004 dispc_set_lcd_timings(&timings
);
3010 static void dsi_display_uninit_dispc(struct omap_dss_device
*dssdev
)
3012 omap_dispc_unregister_isr(dsi_framedone_irq_callback
, NULL
,
3013 DISPC_IRQ_FRAMEDONE
);
3016 static int dsi_configure_dsi_clocks(struct omap_dss_device
*dssdev
)
3018 struct dsi_clock_info cinfo
;
3021 /* we always use DSS2_FCK as input clock */
3022 cinfo
.use_dss2_fck
= true;
3023 cinfo
.regn
= dssdev
->phy
.dsi
.div
.regn
;
3024 cinfo
.regm
= dssdev
->phy
.dsi
.div
.regm
;
3025 cinfo
.regm3
= dssdev
->phy
.dsi
.div
.regm3
;
3026 cinfo
.regm4
= dssdev
->phy
.dsi
.div
.regm4
;
3027 r
= dsi_calc_clock_rates(&cinfo
);
3031 r
= dsi_pll_set_clock_div(&cinfo
);
3033 DSSERR("Failed to set dsi clocks\n");
3040 static int dsi_configure_dispc_clocks(struct omap_dss_device
*dssdev
)
3042 struct dispc_clock_info dispc_cinfo
;
3044 unsigned long long fck
;
3046 fck
= dsi_get_dsi1_pll_rate();
3048 dispc_cinfo
.lck_div
= dssdev
->phy
.dsi
.div
.lck_div
;
3049 dispc_cinfo
.pck_div
= dssdev
->phy
.dsi
.div
.pck_div
;
3051 r
= dispc_calc_clock_rates(fck
, &dispc_cinfo
);
3053 DSSERR("Failed to calc dispc clocks\n");
3057 r
= dispc_set_clock_div(&dispc_cinfo
);
3059 DSSERR("Failed to set dispc clocks\n");
3066 static int dsi_display_init_dsi(struct omap_dss_device
*dssdev
)
3070 _dsi_print_reset_status();
3072 r
= dsi_pll_init(dssdev
, true, true);
3076 r
= dsi_configure_dsi_clocks(dssdev
);
3080 dss_select_clk_source(true, true);
3084 r
= dsi_configure_dispc_clocks(dssdev
);
3088 r
= dsi_complexio_init(dssdev
);
3092 _dsi_print_reset_status();
3094 dsi_proto_timings(dssdev
);
3095 dsi_set_lp_clk_divisor(dssdev
);
3098 _dsi_print_reset_status();
3100 r
= dsi_proto_config(dssdev
);
3104 /* enable interface */
3105 dsi_vc_enable(0, 1);
3107 dsi_force_tx_stop_mode_io();
3109 if (dssdev
->driver
->enable
) {
3110 r
= dssdev
->driver
->enable(dssdev
);
3115 /* enable high-speed after initial config */
3116 dsi_vc_enable_hs(0, 1);
3122 dsi_complexio_uninit();
3124 dss_select_clk_source(false, false);
3131 static void dsi_display_uninit_dsi(struct omap_dss_device
*dssdev
)
3133 if (dssdev
->driver
->disable
)
3134 dssdev
->driver
->disable(dssdev
);
3136 dss_select_clk_source(false, false);
3137 dsi_complexio_uninit();
3141 static int dsi_core_init(void)
3144 REG_FLD_MOD(DSI_SYSCONFIG
, 1, 0, 0);
3147 REG_FLD_MOD(DSI_SYSCONFIG
, 1, 2, 2);
3149 /* SIDLEMODE smart-idle */
3150 REG_FLD_MOD(DSI_SYSCONFIG
, 2, 4, 3);
3152 _dsi_initialize_irq();
3157 static int dsi_display_enable(struct omap_dss_device
*dssdev
)
3161 DSSDBG("dsi_display_enable\n");
3163 mutex_lock(&dsi
.lock
);
3166 r
= omap_dss_start_device(dssdev
);
3168 DSSERR("failed to start device\n");
3172 if (dssdev
->state
!= OMAP_DSS_DISPLAY_DISABLED
) {
3173 DSSERR("dssdev already enabled\n");
3179 dsi_enable_pll_clock(1);
3187 r
= dsi_display_init_dispc(dssdev
);
3191 r
= dsi_display_init_dsi(dssdev
);
3195 dssdev
->state
= OMAP_DSS_DISPLAY_ACTIVE
;
3197 dsi
.use_ext_te
= dssdev
->phy
.dsi
.ext_te
;
3198 r
= dsi_set_te(dssdev
, dsi
.te_enabled
);
3202 dsi_set_update_mode(dssdev
, dsi
.user_update_mode
);
3205 mutex_unlock(&dsi
.lock
);
3211 dsi_display_uninit_dsi(dssdev
);
3213 dsi_display_uninit_dispc(dssdev
);
3216 dsi_enable_pll_clock(0);
3218 omap_dss_stop_device(dssdev
);
3221 mutex_unlock(&dsi
.lock
);
3222 DSSDBG("dsi_display_enable FAILED\n");
3226 static void dsi_display_disable(struct omap_dss_device
*dssdev
)
3228 DSSDBG("dsi_display_disable\n");
3230 mutex_lock(&dsi
.lock
);
3233 if (dssdev
->state
== OMAP_DSS_DISPLAY_DISABLED
||
3234 dssdev
->state
== OMAP_DSS_DISPLAY_SUSPENDED
)
3237 dsi
.update_mode
= OMAP_DSS_UPDATE_DISABLED
;
3238 dssdev
->state
= OMAP_DSS_DISPLAY_DISABLED
;
3240 dsi_display_uninit_dispc(dssdev
);
3242 dsi_display_uninit_dsi(dssdev
);
3245 dsi_enable_pll_clock(0);
3247 omap_dss_stop_device(dssdev
);
3250 mutex_unlock(&dsi
.lock
);
3253 static int dsi_display_suspend(struct omap_dss_device
*dssdev
)
3255 DSSDBG("dsi_display_suspend\n");
3257 mutex_lock(&dsi
.lock
);
3260 if (dssdev
->state
== OMAP_DSS_DISPLAY_DISABLED
||
3261 dssdev
->state
== OMAP_DSS_DISPLAY_SUSPENDED
)
3264 dsi
.update_mode
= OMAP_DSS_UPDATE_DISABLED
;
3265 dssdev
->state
= OMAP_DSS_DISPLAY_SUSPENDED
;
3267 dsi_display_uninit_dispc(dssdev
);
3269 dsi_display_uninit_dsi(dssdev
);
3272 dsi_enable_pll_clock(0);
3275 mutex_unlock(&dsi
.lock
);
3280 static int dsi_display_resume(struct omap_dss_device
*dssdev
)
3284 DSSDBG("dsi_display_resume\n");
3286 mutex_lock(&dsi
.lock
);
3289 if (dssdev
->state
!= OMAP_DSS_DISPLAY_SUSPENDED
) {
3290 DSSERR("dssdev not suspended\n");
3296 dsi_enable_pll_clock(1);
3304 r
= dsi_display_init_dispc(dssdev
);
3308 r
= dsi_display_init_dsi(dssdev
);
3312 dssdev
->state
= OMAP_DSS_DISPLAY_ACTIVE
;
3314 r
= dsi_set_te(dssdev
, dsi
.te_enabled
);
3318 dsi_set_update_mode(dssdev
, dsi
.user_update_mode
);
3321 mutex_unlock(&dsi
.lock
);
3326 dsi_display_uninit_dispc(dssdev
);
3329 dsi_enable_pll_clock(0);
3332 mutex_unlock(&dsi
.lock
);
3333 DSSDBG("dsi_display_resume FAILED\n");
3337 static int dsi_display_update(struct omap_dss_device
*dssdev
,
3338 u16 x
, u16 y
, u16 w
, u16 h
)
3343 DSSDBG("dsi_display_update(%d,%d %dx%d)\n", x
, y
, w
, h
);
3345 mutex_lock(&dsi
.lock
);
3347 if (dsi
.update_mode
!= OMAP_DSS_UPDATE_MANUAL
)
3350 if (dssdev
->state
!= OMAP_DSS_DISPLAY_ACTIVE
)
3353 dssdev
->get_resolution(dssdev
, &dw
, &dh
);
3355 if (x
> dw
|| y
> dh
)
3364 if (w
== 0 || h
== 0)
3372 dsi_set_update_region(dssdev
, x
, y
, w
, h
);
3374 wake_up(&dsi
.waitqueue
);
3377 mutex_unlock(&dsi
.lock
);
3382 static int dsi_display_sync(struct omap_dss_device
*dssdev
)
3386 DSSDBG("dsi_display_sync()\n");
3388 mutex_lock(&dsi
.lock
);
3391 if (dsi
.update_mode
== OMAP_DSS_UPDATE_MANUAL
&&
3392 dsi
.update_region
.dirty
) {
3393 INIT_COMPLETION(dsi
.update_completion
);
3400 mutex_unlock(&dsi
.lock
);
3403 wait_for_completion_interruptible(&dsi
.update_completion
);
3405 DSSDBG("dsi_display_sync() done\n");
3409 static int dsi_display_set_update_mode(struct omap_dss_device
*dssdev
,
3410 enum omap_dss_update_mode mode
)
3414 DSSDBGF("%d", mode
);
3416 mutex_lock(&dsi
.lock
);
3419 dsi
.user_update_mode
= mode
;
3420 r
= dsi_set_update_mode(dssdev
, mode
);
3423 mutex_unlock(&dsi
.lock
);
3428 static enum omap_dss_update_mode
dsi_display_get_update_mode(
3429 struct omap_dss_device
*dssdev
)
3431 return dsi
.update_mode
;
3435 static int dsi_display_enable_te(struct omap_dss_device
*dssdev
, bool enable
)
3439 DSSDBGF("%d", enable
);
3441 if (!dssdev
->driver
->enable_te
)
3446 dsi
.te_enabled
= enable
;
3448 if (dssdev
->state
!= OMAP_DSS_DISPLAY_ACTIVE
)
3451 r
= dsi_set_te(dssdev
, enable
);
3458 static int dsi_display_get_te(struct omap_dss_device
*dssdev
)
3460 return dsi
.te_enabled
;
3463 static int dsi_display_set_rotate(struct omap_dss_device
*dssdev
, u8 rotate
)
3466 DSSDBGF("%d", rotate
);
3468 if (!dssdev
->driver
->set_rotate
|| !dssdev
->driver
->get_rotate
)
3472 dssdev
->driver
->set_rotate(dssdev
, rotate
);
3473 if (dsi
.update_mode
== OMAP_DSS_UPDATE_AUTO
) {
3475 /* the display dimensions may have changed, so set a new
3477 dssdev
->get_resolution(dssdev
, &w
, &h
);
3478 dsi_set_update_region(dssdev
, 0, 0, w
, h
);
3485 static u8
dsi_display_get_rotate(struct omap_dss_device
*dssdev
)
3487 if (!dssdev
->driver
->set_rotate
|| !dssdev
->driver
->get_rotate
)
3490 return dssdev
->driver
->get_rotate(dssdev
);
3493 static int dsi_display_set_mirror(struct omap_dss_device
*dssdev
, bool mirror
)
3495 DSSDBGF("%d", mirror
);
3497 if (!dssdev
->driver
->set_mirror
|| !dssdev
->driver
->get_mirror
)
3501 dssdev
->driver
->set_mirror(dssdev
, mirror
);
3507 static bool dsi_display_get_mirror(struct omap_dss_device
*dssdev
)
3509 if (!dssdev
->driver
->set_mirror
|| !dssdev
->driver
->get_mirror
)
3512 return dssdev
->driver
->get_mirror(dssdev
);
3515 static int dsi_display_run_test(struct omap_dss_device
*dssdev
, int test_num
)
3519 if (dssdev
->state
!= OMAP_DSS_DISPLAY_ACTIVE
)
3522 DSSDBGF("%d", test_num
);
3526 /* run test first in low speed mode */
3527 dsi_vc_enable_hs(0, 0);
3529 if (dssdev
->driver
->run_test
) {
3530 r
= dssdev
->driver
->run_test(dssdev
, test_num
);
3535 /* then in high speed */
3536 dsi_vc_enable_hs(0, 1);
3538 if (dssdev
->driver
->run_test
) {
3539 r
= dssdev
->driver
->run_test(dssdev
, test_num
);
3545 dsi_vc_enable_hs(0, 1);
3552 static int dsi_display_memory_read(struct omap_dss_device
*dssdev
,
3553 void *buf
, size_t size
,
3554 u16 x
, u16 y
, u16 w
, u16 h
)
3560 if (!dssdev
->driver
->memory_read
)
3563 if (dssdev
->state
!= OMAP_DSS_DISPLAY_ACTIVE
)
3568 r
= dssdev
->driver
->memory_read(dssdev
, buf
, size
,
3571 /* Memory read usually changes the update area. This will
3572 * force the next update to re-set the update area */
3573 dsi
.active_update_region
.dirty
= true;
3580 void dsi_get_overlay_fifo_thresholds(enum omap_plane plane
,
3581 u32 fifo_size
, enum omap_burst_size
*burst_size
,
3582 u32
*fifo_low
, u32
*fifo_high
)
3584 unsigned burst_size_bytes
;
3586 *burst_size
= OMAP_DSS_BURST_16x32
;
3587 burst_size_bytes
= 16 * 32 / 8;
3589 *fifo_high
= fifo_size
- burst_size_bytes
;
3590 *fifo_low
= fifo_size
- burst_size_bytes
* 8;
3593 int dsi_init_display(struct omap_dss_device
*dssdev
)
3595 DSSDBG("DSI init\n");
3597 dssdev
->enable
= dsi_display_enable
;
3598 dssdev
->disable
= dsi_display_disable
;
3599 dssdev
->suspend
= dsi_display_suspend
;
3600 dssdev
->resume
= dsi_display_resume
;
3601 dssdev
->update
= dsi_display_update
;
3602 dssdev
->sync
= dsi_display_sync
;
3603 dssdev
->set_update_mode
= dsi_display_set_update_mode
;
3604 dssdev
->get_update_mode
= dsi_display_get_update_mode
;
3605 dssdev
->enable_te
= dsi_display_enable_te
;
3606 dssdev
->get_te
= dsi_display_get_te
;
3608 dssdev
->get_rotate
= dsi_display_get_rotate
;
3609 dssdev
->set_rotate
= dsi_display_set_rotate
;
3611 dssdev
->get_mirror
= dsi_display_get_mirror
;
3612 dssdev
->set_mirror
= dsi_display_set_mirror
;
3614 dssdev
->run_test
= dsi_display_run_test
;
3615 dssdev
->memory_read
= dsi_display_memory_read
;
3617 /* XXX these should be figured out dynamically */
3618 dssdev
->caps
= OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE
|
3619 OMAP_DSS_DISPLAY_CAP_TEAR_ELIM
;
3621 dsi
.vc
[0].dssdev
= dssdev
;
3622 dsi
.vc
[1].dssdev
= dssdev
;
3627 int dsi_init(struct platform_device
*pdev
)
3631 struct sched_param param
= {
3632 .sched_priority
= MAX_USER_RT_PRIO
-1
3635 spin_lock_init(&dsi
.errors_lock
);
3638 init_completion(&dsi
.bta_completion
);
3639 init_completion(&dsi
.update_completion
);
3641 dsi
.thread
= kthread_create(dsi_update_thread
, NULL
, "dsi");
3642 if (IS_ERR(dsi
.thread
)) {
3643 DSSERR("cannot create kthread\n");
3644 r
= PTR_ERR(dsi
.thread
);
3647 sched_setscheduler(dsi
.thread
, SCHED_FIFO
, ¶m
);
3649 init_waitqueue_head(&dsi
.waitqueue
);
3650 spin_lock_init(&dsi
.update_lock
);
3652 mutex_init(&dsi
.lock
);
3653 mutex_init(&dsi
.bus_lock
);
3655 #ifdef DSI_CATCH_MISSING_TE
3656 init_timer(&dsi
.te_timer
);
3657 dsi
.te_timer
.function
= dsi_te_timeout
;
3658 dsi
.te_timer
.data
= 0;
3661 dsi
.update_mode
= OMAP_DSS_UPDATE_DISABLED
;
3662 dsi
.user_update_mode
= OMAP_DSS_UPDATE_DISABLED
;
3664 dsi
.base
= ioremap(DSI_BASE
, DSI_SZ_REGS
);
3666 DSSERR("can't ioremap DSI\n");
3671 dsi
.vdds_dsi_reg
= regulator_get(&pdev
->dev
, "vdds_dsi");
3672 if (IS_ERR(dsi
.vdds_dsi_reg
)) {
3674 DSSERR("can't get VDDS_DSI regulator\n");
3675 r
= PTR_ERR(dsi
.vdds_dsi_reg
);
3681 rev
= dsi_read_reg(DSI_REVISION
);
3682 printk(KERN_INFO
"OMAP DSI rev %d.%d\n",
3683 FLD_GET(rev
, 7, 4), FLD_GET(rev
, 3, 0));
3687 wake_up_process(dsi
.thread
);
3693 kthread_stop(dsi
.thread
);
3700 kthread_stop(dsi
.thread
);
3702 regulator_put(dsi
.vdds_dsi_reg
);
3706 DSSDBG("omap_dsi_exit\n");