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/module.h>
31 #include <linux/semaphore.h>
32 #include <linux/seq_file.h>
33 #include <linux/platform_device.h>
34 #include <linux/regulator/consumer.h>
35 #include <linux/wait.h>
36 #include <linux/workqueue.h>
37 #include <linux/sched.h>
38 #include <linux/slab.h>
39 #include <linux/debugfs.h>
40 #include <linux/pm_runtime.h>
42 #include <video/omapdss.h>
43 #include <video/mipi_display.h>
44 #include <plat/clock.h>
47 #include "dss_features.h"
49 /*#define VERBOSE_IRQ*/
50 #define DSI_CATCH_MISSING_TE
52 struct dsi_reg
{ u16 idx
; };
54 #define DSI_REG(idx) ((const struct dsi_reg) { idx })
56 #define DSI_SZ_REGS SZ_1K
57 /* DSI Protocol Engine */
59 #define DSI_REVISION DSI_REG(0x0000)
60 #define DSI_SYSCONFIG DSI_REG(0x0010)
61 #define DSI_SYSSTATUS DSI_REG(0x0014)
62 #define DSI_IRQSTATUS DSI_REG(0x0018)
63 #define DSI_IRQENABLE DSI_REG(0x001C)
64 #define DSI_CTRL DSI_REG(0x0040)
65 #define DSI_GNQ DSI_REG(0x0044)
66 #define DSI_COMPLEXIO_CFG1 DSI_REG(0x0048)
67 #define DSI_COMPLEXIO_IRQ_STATUS DSI_REG(0x004C)
68 #define DSI_COMPLEXIO_IRQ_ENABLE DSI_REG(0x0050)
69 #define DSI_CLK_CTRL DSI_REG(0x0054)
70 #define DSI_TIMING1 DSI_REG(0x0058)
71 #define DSI_TIMING2 DSI_REG(0x005C)
72 #define DSI_VM_TIMING1 DSI_REG(0x0060)
73 #define DSI_VM_TIMING2 DSI_REG(0x0064)
74 #define DSI_VM_TIMING3 DSI_REG(0x0068)
75 #define DSI_CLK_TIMING DSI_REG(0x006C)
76 #define DSI_TX_FIFO_VC_SIZE DSI_REG(0x0070)
77 #define DSI_RX_FIFO_VC_SIZE DSI_REG(0x0074)
78 #define DSI_COMPLEXIO_CFG2 DSI_REG(0x0078)
79 #define DSI_RX_FIFO_VC_FULLNESS DSI_REG(0x007C)
80 #define DSI_VM_TIMING4 DSI_REG(0x0080)
81 #define DSI_TX_FIFO_VC_EMPTINESS DSI_REG(0x0084)
82 #define DSI_VM_TIMING5 DSI_REG(0x0088)
83 #define DSI_VM_TIMING6 DSI_REG(0x008C)
84 #define DSI_VM_TIMING7 DSI_REG(0x0090)
85 #define DSI_STOPCLK_TIMING DSI_REG(0x0094)
86 #define DSI_VC_CTRL(n) DSI_REG(0x0100 + (n * 0x20))
87 #define DSI_VC_TE(n) DSI_REG(0x0104 + (n * 0x20))
88 #define DSI_VC_LONG_PACKET_HEADER(n) DSI_REG(0x0108 + (n * 0x20))
89 #define DSI_VC_LONG_PACKET_PAYLOAD(n) DSI_REG(0x010C + (n * 0x20))
90 #define DSI_VC_SHORT_PACKET_HEADER(n) DSI_REG(0x0110 + (n * 0x20))
91 #define DSI_VC_IRQSTATUS(n) DSI_REG(0x0118 + (n * 0x20))
92 #define DSI_VC_IRQENABLE(n) DSI_REG(0x011C + (n * 0x20))
96 #define DSI_DSIPHY_CFG0 DSI_REG(0x200 + 0x0000)
97 #define DSI_DSIPHY_CFG1 DSI_REG(0x200 + 0x0004)
98 #define DSI_DSIPHY_CFG2 DSI_REG(0x200 + 0x0008)
99 #define DSI_DSIPHY_CFG5 DSI_REG(0x200 + 0x0014)
100 #define DSI_DSIPHY_CFG10 DSI_REG(0x200 + 0x0028)
102 /* DSI_PLL_CTRL_SCP */
104 #define DSI_PLL_CONTROL DSI_REG(0x300 + 0x0000)
105 #define DSI_PLL_STATUS DSI_REG(0x300 + 0x0004)
106 #define DSI_PLL_GO DSI_REG(0x300 + 0x0008)
107 #define DSI_PLL_CONFIGURATION1 DSI_REG(0x300 + 0x000C)
108 #define DSI_PLL_CONFIGURATION2 DSI_REG(0x300 + 0x0010)
110 #define REG_GET(dsidev, idx, start, end) \
111 FLD_GET(dsi_read_reg(dsidev, idx), start, end)
113 #define REG_FLD_MOD(dsidev, idx, val, start, end) \
114 dsi_write_reg(dsidev, idx, FLD_MOD(dsi_read_reg(dsidev, idx), val, start, end))
116 /* Global interrupts */
117 #define DSI_IRQ_VC0 (1 << 0)
118 #define DSI_IRQ_VC1 (1 << 1)
119 #define DSI_IRQ_VC2 (1 << 2)
120 #define DSI_IRQ_VC3 (1 << 3)
121 #define DSI_IRQ_WAKEUP (1 << 4)
122 #define DSI_IRQ_RESYNC (1 << 5)
123 #define DSI_IRQ_PLL_LOCK (1 << 7)
124 #define DSI_IRQ_PLL_UNLOCK (1 << 8)
125 #define DSI_IRQ_PLL_RECALL (1 << 9)
126 #define DSI_IRQ_COMPLEXIO_ERR (1 << 10)
127 #define DSI_IRQ_HS_TX_TIMEOUT (1 << 14)
128 #define DSI_IRQ_LP_RX_TIMEOUT (1 << 15)
129 #define DSI_IRQ_TE_TRIGGER (1 << 16)
130 #define DSI_IRQ_ACK_TRIGGER (1 << 17)
131 #define DSI_IRQ_SYNC_LOST (1 << 18)
132 #define DSI_IRQ_LDO_POWER_GOOD (1 << 19)
133 #define DSI_IRQ_TA_TIMEOUT (1 << 20)
134 #define DSI_IRQ_ERROR_MASK \
135 (DSI_IRQ_HS_TX_TIMEOUT | DSI_IRQ_LP_RX_TIMEOUT | DSI_IRQ_SYNC_LOST | \
136 DSI_IRQ_TA_TIMEOUT | DSI_IRQ_SYNC_LOST)
137 #define DSI_IRQ_CHANNEL_MASK 0xf
139 /* Virtual channel interrupts */
140 #define DSI_VC_IRQ_CS (1 << 0)
141 #define DSI_VC_IRQ_ECC_CORR (1 << 1)
142 #define DSI_VC_IRQ_PACKET_SENT (1 << 2)
143 #define DSI_VC_IRQ_FIFO_TX_OVF (1 << 3)
144 #define DSI_VC_IRQ_FIFO_RX_OVF (1 << 4)
145 #define DSI_VC_IRQ_BTA (1 << 5)
146 #define DSI_VC_IRQ_ECC_NO_CORR (1 << 6)
147 #define DSI_VC_IRQ_FIFO_TX_UDF (1 << 7)
148 #define DSI_VC_IRQ_PP_BUSY_CHANGE (1 << 8)
149 #define DSI_VC_IRQ_ERROR_MASK \
150 (DSI_VC_IRQ_CS | DSI_VC_IRQ_ECC_CORR | DSI_VC_IRQ_FIFO_TX_OVF | \
151 DSI_VC_IRQ_FIFO_RX_OVF | DSI_VC_IRQ_ECC_NO_CORR | \
152 DSI_VC_IRQ_FIFO_TX_UDF)
154 /* ComplexIO interrupts */
155 #define DSI_CIO_IRQ_ERRSYNCESC1 (1 << 0)
156 #define DSI_CIO_IRQ_ERRSYNCESC2 (1 << 1)
157 #define DSI_CIO_IRQ_ERRSYNCESC3 (1 << 2)
158 #define DSI_CIO_IRQ_ERRSYNCESC4 (1 << 3)
159 #define DSI_CIO_IRQ_ERRSYNCESC5 (1 << 4)
160 #define DSI_CIO_IRQ_ERRESC1 (1 << 5)
161 #define DSI_CIO_IRQ_ERRESC2 (1 << 6)
162 #define DSI_CIO_IRQ_ERRESC3 (1 << 7)
163 #define DSI_CIO_IRQ_ERRESC4 (1 << 8)
164 #define DSI_CIO_IRQ_ERRESC5 (1 << 9)
165 #define DSI_CIO_IRQ_ERRCONTROL1 (1 << 10)
166 #define DSI_CIO_IRQ_ERRCONTROL2 (1 << 11)
167 #define DSI_CIO_IRQ_ERRCONTROL3 (1 << 12)
168 #define DSI_CIO_IRQ_ERRCONTROL4 (1 << 13)
169 #define DSI_CIO_IRQ_ERRCONTROL5 (1 << 14)
170 #define DSI_CIO_IRQ_STATEULPS1 (1 << 15)
171 #define DSI_CIO_IRQ_STATEULPS2 (1 << 16)
172 #define DSI_CIO_IRQ_STATEULPS3 (1 << 17)
173 #define DSI_CIO_IRQ_STATEULPS4 (1 << 18)
174 #define DSI_CIO_IRQ_STATEULPS5 (1 << 19)
175 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_1 (1 << 20)
176 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_1 (1 << 21)
177 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_2 (1 << 22)
178 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_2 (1 << 23)
179 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_3 (1 << 24)
180 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_3 (1 << 25)
181 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_4 (1 << 26)
182 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_4 (1 << 27)
183 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_5 (1 << 28)
184 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_5 (1 << 29)
185 #define DSI_CIO_IRQ_ULPSACTIVENOT_ALL0 (1 << 30)
186 #define DSI_CIO_IRQ_ULPSACTIVENOT_ALL1 (1 << 31)
187 #define DSI_CIO_IRQ_ERROR_MASK \
188 (DSI_CIO_IRQ_ERRSYNCESC1 | DSI_CIO_IRQ_ERRSYNCESC2 | \
189 DSI_CIO_IRQ_ERRSYNCESC3 | DSI_CIO_IRQ_ERRSYNCESC4 | \
190 DSI_CIO_IRQ_ERRSYNCESC5 | \
191 DSI_CIO_IRQ_ERRESC1 | DSI_CIO_IRQ_ERRESC2 | \
192 DSI_CIO_IRQ_ERRESC3 | DSI_CIO_IRQ_ERRESC4 | \
193 DSI_CIO_IRQ_ERRESC5 | \
194 DSI_CIO_IRQ_ERRCONTROL1 | DSI_CIO_IRQ_ERRCONTROL2 | \
195 DSI_CIO_IRQ_ERRCONTROL3 | DSI_CIO_IRQ_ERRCONTROL4 | \
196 DSI_CIO_IRQ_ERRCONTROL5 | \
197 DSI_CIO_IRQ_ERRCONTENTIONLP0_1 | DSI_CIO_IRQ_ERRCONTENTIONLP1_1 | \
198 DSI_CIO_IRQ_ERRCONTENTIONLP0_2 | DSI_CIO_IRQ_ERRCONTENTIONLP1_2 | \
199 DSI_CIO_IRQ_ERRCONTENTIONLP0_3 | DSI_CIO_IRQ_ERRCONTENTIONLP1_3 | \
200 DSI_CIO_IRQ_ERRCONTENTIONLP0_4 | DSI_CIO_IRQ_ERRCONTENTIONLP1_4 | \
201 DSI_CIO_IRQ_ERRCONTENTIONLP0_5 | DSI_CIO_IRQ_ERRCONTENTIONLP1_5)
203 typedef void (*omap_dsi_isr_t
) (void *arg
, u32 mask
);
205 #define DSI_MAX_NR_ISRS 2
206 #define DSI_MAX_NR_LANES 5
208 enum dsi_lane_function
{
217 struct dsi_lane_config
{
218 enum dsi_lane_function function
;
222 struct dsi_isr_data
{
230 DSI_FIFO_SIZE_32
= 1,
231 DSI_FIFO_SIZE_64
= 2,
232 DSI_FIFO_SIZE_96
= 3,
233 DSI_FIFO_SIZE_128
= 4,
237 DSI_VC_SOURCE_L4
= 0,
241 struct dsi_irq_stats
{
242 unsigned long last_reset
;
244 unsigned dsi_irqs
[32];
245 unsigned vc_irqs
[4][32];
246 unsigned cio_irqs
[32];
249 struct dsi_isr_tables
{
250 struct dsi_isr_data isr_table
[DSI_MAX_NR_ISRS
];
251 struct dsi_isr_data isr_table_vc
[4][DSI_MAX_NR_ISRS
];
252 struct dsi_isr_data isr_table_cio
[DSI_MAX_NR_ISRS
];
256 struct platform_device
*pdev
;
264 int (*enable_pads
)(int dsi_id
, unsigned lane_mask
);
265 void (*disable_pads
)(int dsi_id
, unsigned lane_mask
);
267 struct dsi_clock_info current_cinfo
;
269 bool vdds_dsi_enabled
;
270 struct regulator
*vdds_dsi_reg
;
273 enum dsi_vc_source source
;
274 struct omap_dss_device
*dssdev
;
275 enum fifo_size fifo_size
;
280 struct semaphore bus_lock
;
285 struct dsi_isr_tables isr_tables
;
286 /* space for a copy used by the interrupt handler */
287 struct dsi_isr_tables isr_tables_copy
;
291 unsigned update_bytes
;
297 void (*framedone_callback
)(int, void *);
298 void *framedone_data
;
300 struct delayed_work framedone_timeout_work
;
302 #ifdef DSI_CATCH_MISSING_TE
303 struct timer_list te_timer
;
306 unsigned long cache_req_pck
;
307 unsigned long cache_clk_freq
;
308 struct dsi_clock_info cache_cinfo
;
311 spinlock_t errors_lock
;
313 ktime_t perf_setup_time
;
314 ktime_t perf_start_time
;
319 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
320 spinlock_t irq_stats_lock
;
321 struct dsi_irq_stats irq_stats
;
323 /* DSI PLL Parameter Ranges */
324 unsigned long regm_max
, regn_max
;
325 unsigned long regm_dispc_max
, regm_dsi_max
;
326 unsigned long fint_min
, fint_max
;
327 unsigned long lpdiv_max
;
329 unsigned num_lanes_supported
;
331 struct dsi_lane_config lanes
[DSI_MAX_NR_LANES
];
332 unsigned num_lanes_used
;
334 unsigned scp_clk_refcount
;
337 struct dsi_packet_sent_handler_data
{
338 struct platform_device
*dsidev
;
339 struct completion
*completion
;
342 static struct platform_device
*dsi_pdev_map
[MAX_NUM_DSI
];
345 static bool dsi_perf
;
346 module_param(dsi_perf
, bool, 0644);
349 static inline struct dsi_data
*dsi_get_dsidrv_data(struct platform_device
*dsidev
)
351 return dev_get_drvdata(&dsidev
->dev
);
354 static inline struct platform_device
*dsi_get_dsidev_from_dssdev(struct omap_dss_device
*dssdev
)
356 return dsi_pdev_map
[dssdev
->phy
.dsi
.module
];
359 struct platform_device
*dsi_get_dsidev_from_id(int module
)
361 return dsi_pdev_map
[module
];
364 static inline int dsi_get_dsidev_id(struct platform_device
*dsidev
)
369 static inline void dsi_write_reg(struct platform_device
*dsidev
,
370 const struct dsi_reg idx
, u32 val
)
372 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
374 __raw_writel(val
, dsi
->base
+ idx
.idx
);
377 static inline u32
dsi_read_reg(struct platform_device
*dsidev
,
378 const struct dsi_reg idx
)
380 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
382 return __raw_readl(dsi
->base
+ idx
.idx
);
385 void dsi_bus_lock(struct omap_dss_device
*dssdev
)
387 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
388 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
390 down(&dsi
->bus_lock
);
392 EXPORT_SYMBOL(dsi_bus_lock
);
394 void dsi_bus_unlock(struct omap_dss_device
*dssdev
)
396 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
397 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
401 EXPORT_SYMBOL(dsi_bus_unlock
);
403 static bool dsi_bus_is_locked(struct platform_device
*dsidev
)
405 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
407 return dsi
->bus_lock
.count
== 0;
410 static void dsi_completion_handler(void *data
, u32 mask
)
412 complete((struct completion
*)data
);
415 static inline int wait_for_bit_change(struct platform_device
*dsidev
,
416 const struct dsi_reg idx
, int bitnum
, int value
)
418 unsigned long timeout
;
422 /* first busyloop to see if the bit changes right away */
425 if (REG_GET(dsidev
, idx
, bitnum
, bitnum
) == value
)
429 /* then loop for 500ms, sleeping for 1ms in between */
430 timeout
= jiffies
+ msecs_to_jiffies(500);
431 while (time_before(jiffies
, timeout
)) {
432 if (REG_GET(dsidev
, idx
, bitnum
, bitnum
) == value
)
435 wait
= ns_to_ktime(1000 * 1000);
436 set_current_state(TASK_UNINTERRUPTIBLE
);
437 schedule_hrtimeout(&wait
, HRTIMER_MODE_REL
);
443 u8
dsi_get_pixel_size(enum omap_dss_dsi_pixel_format fmt
)
446 case OMAP_DSS_DSI_FMT_RGB888
:
447 case OMAP_DSS_DSI_FMT_RGB666
:
449 case OMAP_DSS_DSI_FMT_RGB666_PACKED
:
451 case OMAP_DSS_DSI_FMT_RGB565
:
459 static void dsi_perf_mark_setup(struct platform_device
*dsidev
)
461 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
462 dsi
->perf_setup_time
= ktime_get();
465 static void dsi_perf_mark_start(struct platform_device
*dsidev
)
467 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
468 dsi
->perf_start_time
= ktime_get();
471 static void dsi_perf_show(struct platform_device
*dsidev
, const char *name
)
473 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
474 ktime_t t
, setup_time
, trans_time
;
476 u32 setup_us
, trans_us
, total_us
;
483 setup_time
= ktime_sub(dsi
->perf_start_time
, dsi
->perf_setup_time
);
484 setup_us
= (u32
)ktime_to_us(setup_time
);
488 trans_time
= ktime_sub(t
, dsi
->perf_start_time
);
489 trans_us
= (u32
)ktime_to_us(trans_time
);
493 total_us
= setup_us
+ trans_us
;
495 total_bytes
= dsi
->update_bytes
;
497 printk(KERN_INFO
"DSI(%s): %u us + %u us = %u us (%uHz), "
498 "%u bytes, %u kbytes/sec\n",
503 1000*1000 / total_us
,
505 total_bytes
* 1000 / total_us
);
508 static inline void dsi_perf_mark_setup(struct platform_device
*dsidev
)
512 static inline void dsi_perf_mark_start(struct platform_device
*dsidev
)
516 static inline void dsi_perf_show(struct platform_device
*dsidev
,
522 static void print_irq_status(u32 status
)
528 if ((status
& ~DSI_IRQ_CHANNEL_MASK
) == 0)
531 printk(KERN_DEBUG
"DSI IRQ: 0x%x: ", status
);
534 if (status & DSI_IRQ_##x) \
560 static void print_irq_status_vc(int channel
, u32 status
)
566 if ((status
& ~DSI_VC_IRQ_PACKET_SENT
) == 0)
569 printk(KERN_DEBUG
"DSI VC(%d) IRQ 0x%x: ", channel
, status
);
572 if (status & DSI_VC_IRQ_##x) \
589 static void print_irq_status_cio(u32 status
)
594 printk(KERN_DEBUG
"DSI CIO IRQ 0x%x: ", status
);
597 if (status & DSI_CIO_IRQ_##x) \
611 PIS(ERRCONTENTIONLP0_1
);
612 PIS(ERRCONTENTIONLP1_1
);
613 PIS(ERRCONTENTIONLP0_2
);
614 PIS(ERRCONTENTIONLP1_2
);
615 PIS(ERRCONTENTIONLP0_3
);
616 PIS(ERRCONTENTIONLP1_3
);
617 PIS(ULPSACTIVENOT_ALL0
);
618 PIS(ULPSACTIVENOT_ALL1
);
624 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
625 static void dsi_collect_irq_stats(struct platform_device
*dsidev
, u32 irqstatus
,
626 u32
*vcstatus
, u32 ciostatus
)
628 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
631 spin_lock(&dsi
->irq_stats_lock
);
633 dsi
->irq_stats
.irq_count
++;
634 dss_collect_irq_stats(irqstatus
, dsi
->irq_stats
.dsi_irqs
);
636 for (i
= 0; i
< 4; ++i
)
637 dss_collect_irq_stats(vcstatus
[i
], dsi
->irq_stats
.vc_irqs
[i
]);
639 dss_collect_irq_stats(ciostatus
, dsi
->irq_stats
.cio_irqs
);
641 spin_unlock(&dsi
->irq_stats_lock
);
644 #define dsi_collect_irq_stats(dsidev, irqstatus, vcstatus, ciostatus)
647 static int debug_irq
;
649 static void dsi_handle_irq_errors(struct platform_device
*dsidev
, u32 irqstatus
,
650 u32
*vcstatus
, u32 ciostatus
)
652 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
655 if (irqstatus
& DSI_IRQ_ERROR_MASK
) {
656 DSSERR("DSI error, irqstatus %x\n", irqstatus
);
657 print_irq_status(irqstatus
);
658 spin_lock(&dsi
->errors_lock
);
659 dsi
->errors
|= irqstatus
& DSI_IRQ_ERROR_MASK
;
660 spin_unlock(&dsi
->errors_lock
);
661 } else if (debug_irq
) {
662 print_irq_status(irqstatus
);
665 for (i
= 0; i
< 4; ++i
) {
666 if (vcstatus
[i
] & DSI_VC_IRQ_ERROR_MASK
) {
667 DSSERR("DSI VC(%d) error, vc irqstatus %x\n",
669 print_irq_status_vc(i
, vcstatus
[i
]);
670 } else if (debug_irq
) {
671 print_irq_status_vc(i
, vcstatus
[i
]);
675 if (ciostatus
& DSI_CIO_IRQ_ERROR_MASK
) {
676 DSSERR("DSI CIO error, cio irqstatus %x\n", ciostatus
);
677 print_irq_status_cio(ciostatus
);
678 } else if (debug_irq
) {
679 print_irq_status_cio(ciostatus
);
683 static void dsi_call_isrs(struct dsi_isr_data
*isr_array
,
684 unsigned isr_array_size
, u32 irqstatus
)
686 struct dsi_isr_data
*isr_data
;
689 for (i
= 0; i
< isr_array_size
; i
++) {
690 isr_data
= &isr_array
[i
];
691 if (isr_data
->isr
&& isr_data
->mask
& irqstatus
)
692 isr_data
->isr(isr_data
->arg
, irqstatus
);
696 static void dsi_handle_isrs(struct dsi_isr_tables
*isr_tables
,
697 u32 irqstatus
, u32
*vcstatus
, u32 ciostatus
)
701 dsi_call_isrs(isr_tables
->isr_table
,
702 ARRAY_SIZE(isr_tables
->isr_table
),
705 for (i
= 0; i
< 4; ++i
) {
706 if (vcstatus
[i
] == 0)
708 dsi_call_isrs(isr_tables
->isr_table_vc
[i
],
709 ARRAY_SIZE(isr_tables
->isr_table_vc
[i
]),
714 dsi_call_isrs(isr_tables
->isr_table_cio
,
715 ARRAY_SIZE(isr_tables
->isr_table_cio
),
719 static irqreturn_t
omap_dsi_irq_handler(int irq
, void *arg
)
721 struct platform_device
*dsidev
;
722 struct dsi_data
*dsi
;
723 u32 irqstatus
, vcstatus
[4], ciostatus
;
726 dsidev
= (struct platform_device
*) arg
;
727 dsi
= dsi_get_dsidrv_data(dsidev
);
729 spin_lock(&dsi
->irq_lock
);
731 irqstatus
= dsi_read_reg(dsidev
, DSI_IRQSTATUS
);
733 /* IRQ is not for us */
735 spin_unlock(&dsi
->irq_lock
);
739 dsi_write_reg(dsidev
, DSI_IRQSTATUS
, irqstatus
& ~DSI_IRQ_CHANNEL_MASK
);
740 /* flush posted write */
741 dsi_read_reg(dsidev
, DSI_IRQSTATUS
);
743 for (i
= 0; i
< 4; ++i
) {
744 if ((irqstatus
& (1 << i
)) == 0) {
749 vcstatus
[i
] = dsi_read_reg(dsidev
, DSI_VC_IRQSTATUS(i
));
751 dsi_write_reg(dsidev
, DSI_VC_IRQSTATUS(i
), vcstatus
[i
]);
752 /* flush posted write */
753 dsi_read_reg(dsidev
, DSI_VC_IRQSTATUS(i
));
756 if (irqstatus
& DSI_IRQ_COMPLEXIO_ERR
) {
757 ciostatus
= dsi_read_reg(dsidev
, DSI_COMPLEXIO_IRQ_STATUS
);
759 dsi_write_reg(dsidev
, DSI_COMPLEXIO_IRQ_STATUS
, ciostatus
);
760 /* flush posted write */
761 dsi_read_reg(dsidev
, DSI_COMPLEXIO_IRQ_STATUS
);
766 #ifdef DSI_CATCH_MISSING_TE
767 if (irqstatus
& DSI_IRQ_TE_TRIGGER
)
768 del_timer(&dsi
->te_timer
);
771 /* make a copy and unlock, so that isrs can unregister
773 memcpy(&dsi
->isr_tables_copy
, &dsi
->isr_tables
,
774 sizeof(dsi
->isr_tables
));
776 spin_unlock(&dsi
->irq_lock
);
778 dsi_handle_isrs(&dsi
->isr_tables_copy
, irqstatus
, vcstatus
, ciostatus
);
780 dsi_handle_irq_errors(dsidev
, irqstatus
, vcstatus
, ciostatus
);
782 dsi_collect_irq_stats(dsidev
, irqstatus
, vcstatus
, ciostatus
);
787 /* dsi->irq_lock has to be locked by the caller */
788 static void _omap_dsi_configure_irqs(struct platform_device
*dsidev
,
789 struct dsi_isr_data
*isr_array
,
790 unsigned isr_array_size
, u32 default_mask
,
791 const struct dsi_reg enable_reg
,
792 const struct dsi_reg status_reg
)
794 struct dsi_isr_data
*isr_data
;
801 for (i
= 0; i
< isr_array_size
; i
++) {
802 isr_data
= &isr_array
[i
];
804 if (isr_data
->isr
== NULL
)
807 mask
|= isr_data
->mask
;
810 old_mask
= dsi_read_reg(dsidev
, enable_reg
);
811 /* clear the irqstatus for newly enabled irqs */
812 dsi_write_reg(dsidev
, status_reg
, (mask
^ old_mask
) & mask
);
813 dsi_write_reg(dsidev
, enable_reg
, mask
);
815 /* flush posted writes */
816 dsi_read_reg(dsidev
, enable_reg
);
817 dsi_read_reg(dsidev
, status_reg
);
820 /* dsi->irq_lock has to be locked by the caller */
821 static void _omap_dsi_set_irqs(struct platform_device
*dsidev
)
823 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
824 u32 mask
= DSI_IRQ_ERROR_MASK
;
825 #ifdef DSI_CATCH_MISSING_TE
826 mask
|= DSI_IRQ_TE_TRIGGER
;
828 _omap_dsi_configure_irqs(dsidev
, dsi
->isr_tables
.isr_table
,
829 ARRAY_SIZE(dsi
->isr_tables
.isr_table
), mask
,
830 DSI_IRQENABLE
, DSI_IRQSTATUS
);
833 /* dsi->irq_lock has to be locked by the caller */
834 static void _omap_dsi_set_irqs_vc(struct platform_device
*dsidev
, int vc
)
836 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
838 _omap_dsi_configure_irqs(dsidev
, dsi
->isr_tables
.isr_table_vc
[vc
],
839 ARRAY_SIZE(dsi
->isr_tables
.isr_table_vc
[vc
]),
840 DSI_VC_IRQ_ERROR_MASK
,
841 DSI_VC_IRQENABLE(vc
), DSI_VC_IRQSTATUS(vc
));
844 /* dsi->irq_lock has to be locked by the caller */
845 static void _omap_dsi_set_irqs_cio(struct platform_device
*dsidev
)
847 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
849 _omap_dsi_configure_irqs(dsidev
, dsi
->isr_tables
.isr_table_cio
,
850 ARRAY_SIZE(dsi
->isr_tables
.isr_table_cio
),
851 DSI_CIO_IRQ_ERROR_MASK
,
852 DSI_COMPLEXIO_IRQ_ENABLE
, DSI_COMPLEXIO_IRQ_STATUS
);
855 static void _dsi_initialize_irq(struct platform_device
*dsidev
)
857 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
861 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
863 memset(&dsi
->isr_tables
, 0, sizeof(dsi
->isr_tables
));
865 _omap_dsi_set_irqs(dsidev
);
866 for (vc
= 0; vc
< 4; ++vc
)
867 _omap_dsi_set_irqs_vc(dsidev
, vc
);
868 _omap_dsi_set_irqs_cio(dsidev
);
870 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
873 static int _dsi_register_isr(omap_dsi_isr_t isr
, void *arg
, u32 mask
,
874 struct dsi_isr_data
*isr_array
, unsigned isr_array_size
)
876 struct dsi_isr_data
*isr_data
;
882 /* check for duplicate entry and find a free slot */
884 for (i
= 0; i
< isr_array_size
; i
++) {
885 isr_data
= &isr_array
[i
];
887 if (isr_data
->isr
== isr
&& isr_data
->arg
== arg
&&
888 isr_data
->mask
== mask
) {
892 if (isr_data
->isr
== NULL
&& free_idx
== -1)
899 isr_data
= &isr_array
[free_idx
];
902 isr_data
->mask
= mask
;
907 static int _dsi_unregister_isr(omap_dsi_isr_t isr
, void *arg
, u32 mask
,
908 struct dsi_isr_data
*isr_array
, unsigned isr_array_size
)
910 struct dsi_isr_data
*isr_data
;
913 for (i
= 0; i
< isr_array_size
; i
++) {
914 isr_data
= &isr_array
[i
];
915 if (isr_data
->isr
!= isr
|| isr_data
->arg
!= arg
||
916 isr_data
->mask
!= mask
)
919 isr_data
->isr
= NULL
;
920 isr_data
->arg
= NULL
;
929 static int dsi_register_isr(struct platform_device
*dsidev
, omap_dsi_isr_t isr
,
932 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
936 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
938 r
= _dsi_register_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table
,
939 ARRAY_SIZE(dsi
->isr_tables
.isr_table
));
942 _omap_dsi_set_irqs(dsidev
);
944 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
949 static int dsi_unregister_isr(struct platform_device
*dsidev
,
950 omap_dsi_isr_t isr
, void *arg
, u32 mask
)
952 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
956 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
958 r
= _dsi_unregister_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table
,
959 ARRAY_SIZE(dsi
->isr_tables
.isr_table
));
962 _omap_dsi_set_irqs(dsidev
);
964 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
969 static int dsi_register_isr_vc(struct platform_device
*dsidev
, int channel
,
970 omap_dsi_isr_t isr
, void *arg
, u32 mask
)
972 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
976 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
978 r
= _dsi_register_isr(isr
, arg
, mask
,
979 dsi
->isr_tables
.isr_table_vc
[channel
],
980 ARRAY_SIZE(dsi
->isr_tables
.isr_table_vc
[channel
]));
983 _omap_dsi_set_irqs_vc(dsidev
, channel
);
985 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
990 static int dsi_unregister_isr_vc(struct platform_device
*dsidev
, int channel
,
991 omap_dsi_isr_t isr
, void *arg
, u32 mask
)
993 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
997 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
999 r
= _dsi_unregister_isr(isr
, arg
, mask
,
1000 dsi
->isr_tables
.isr_table_vc
[channel
],
1001 ARRAY_SIZE(dsi
->isr_tables
.isr_table_vc
[channel
]));
1004 _omap_dsi_set_irqs_vc(dsidev
, channel
);
1006 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
1011 static int dsi_register_isr_cio(struct platform_device
*dsidev
,
1012 omap_dsi_isr_t isr
, void *arg
, u32 mask
)
1014 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1015 unsigned long flags
;
1018 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
1020 r
= _dsi_register_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table_cio
,
1021 ARRAY_SIZE(dsi
->isr_tables
.isr_table_cio
));
1024 _omap_dsi_set_irqs_cio(dsidev
);
1026 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
1031 static int dsi_unregister_isr_cio(struct platform_device
*dsidev
,
1032 omap_dsi_isr_t isr
, void *arg
, u32 mask
)
1034 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1035 unsigned long flags
;
1038 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
1040 r
= _dsi_unregister_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table_cio
,
1041 ARRAY_SIZE(dsi
->isr_tables
.isr_table_cio
));
1044 _omap_dsi_set_irqs_cio(dsidev
);
1046 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
1051 static u32
dsi_get_errors(struct platform_device
*dsidev
)
1053 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1054 unsigned long flags
;
1056 spin_lock_irqsave(&dsi
->errors_lock
, flags
);
1059 spin_unlock_irqrestore(&dsi
->errors_lock
, flags
);
1063 int dsi_runtime_get(struct platform_device
*dsidev
)
1066 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1068 DSSDBG("dsi_runtime_get\n");
1070 r
= pm_runtime_get_sync(&dsi
->pdev
->dev
);
1072 return r
< 0 ? r
: 0;
1075 void dsi_runtime_put(struct platform_device
*dsidev
)
1077 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1080 DSSDBG("dsi_runtime_put\n");
1082 r
= pm_runtime_put_sync(&dsi
->pdev
->dev
);
1086 /* source clock for DSI PLL. this could also be PCLKFREE */
1087 static inline void dsi_enable_pll_clock(struct platform_device
*dsidev
,
1090 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1093 clk_enable(dsi
->sys_clk
);
1095 clk_disable(dsi
->sys_clk
);
1097 if (enable
&& dsi
->pll_locked
) {
1098 if (wait_for_bit_change(dsidev
, DSI_PLL_STATUS
, 1, 1) != 1)
1099 DSSERR("cannot lock PLL when enabling clocks\n");
1104 static void _dsi_print_reset_status(struct platform_device
*dsidev
)
1112 /* A dummy read using the SCP interface to any DSIPHY register is
1113 * required after DSIPHY reset to complete the reset of the DSI complex
1115 l
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG5
);
1117 printk(KERN_DEBUG
"DSI resets: ");
1119 l
= dsi_read_reg(dsidev
, DSI_PLL_STATUS
);
1120 printk("PLL (%d) ", FLD_GET(l
, 0, 0));
1122 l
= dsi_read_reg(dsidev
, DSI_COMPLEXIO_CFG1
);
1123 printk("CIO (%d) ", FLD_GET(l
, 29, 29));
1125 if (dss_has_feature(FEAT_DSI_REVERSE_TXCLKESC
)) {
1135 l
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG5
);
1136 printk("PHY (%x%x%x, %d, %d, %d)\n",
1142 FLD_GET(l
, 31, 31));
1145 #define _dsi_print_reset_status(x)
1148 static inline int dsi_if_enable(struct platform_device
*dsidev
, bool enable
)
1150 DSSDBG("dsi_if_enable(%d)\n", enable
);
1152 enable
= enable
? 1 : 0;
1153 REG_FLD_MOD(dsidev
, DSI_CTRL
, enable
, 0, 0); /* IF_EN */
1155 if (wait_for_bit_change(dsidev
, DSI_CTRL
, 0, enable
) != enable
) {
1156 DSSERR("Failed to set dsi_if_enable to %d\n", enable
);
1163 unsigned long dsi_get_pll_hsdiv_dispc_rate(struct platform_device
*dsidev
)
1165 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1167 return dsi
->current_cinfo
.dsi_pll_hsdiv_dispc_clk
;
1170 static unsigned long dsi_get_pll_hsdiv_dsi_rate(struct platform_device
*dsidev
)
1172 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1174 return dsi
->current_cinfo
.dsi_pll_hsdiv_dsi_clk
;
1177 static unsigned long dsi_get_txbyteclkhs(struct platform_device
*dsidev
)
1179 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1181 return dsi
->current_cinfo
.clkin4ddr
/ 16;
1184 static unsigned long dsi_fclk_rate(struct platform_device
*dsidev
)
1187 int dsi_module
= dsi_get_dsidev_id(dsidev
);
1188 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1190 if (dss_get_dsi_clk_source(dsi_module
) == OMAP_DSS_CLK_SRC_FCK
) {
1191 /* DSI FCLK source is DSS_CLK_FCK */
1192 r
= clk_get_rate(dsi
->dss_clk
);
1194 /* DSI FCLK source is dsi_pll_hsdiv_dsi_clk */
1195 r
= dsi_get_pll_hsdiv_dsi_rate(dsidev
);
1201 static int dsi_set_lp_clk_divisor(struct omap_dss_device
*dssdev
)
1203 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
1204 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1205 unsigned long dsi_fclk
;
1206 unsigned lp_clk_div
;
1207 unsigned long lp_clk
;
1209 lp_clk_div
= dssdev
->clocks
.dsi
.lp_clk_div
;
1211 if (lp_clk_div
== 0 || lp_clk_div
> dsi
->lpdiv_max
)
1214 dsi_fclk
= dsi_fclk_rate(dsidev
);
1216 lp_clk
= dsi_fclk
/ 2 / lp_clk_div
;
1218 DSSDBG("LP_CLK_DIV %u, LP_CLK %lu\n", lp_clk_div
, lp_clk
);
1219 dsi
->current_cinfo
.lp_clk
= lp_clk
;
1220 dsi
->current_cinfo
.lp_clk_div
= lp_clk_div
;
1222 /* LP_CLK_DIVISOR */
1223 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, lp_clk_div
, 12, 0);
1225 /* LP_RX_SYNCHRO_ENABLE */
1226 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, dsi_fclk
> 30000000 ? 1 : 0, 21, 21);
1231 static void dsi_enable_scp_clk(struct platform_device
*dsidev
)
1233 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1235 if (dsi
->scp_clk_refcount
++ == 0)
1236 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, 1, 14, 14); /* CIO_CLK_ICG */
1239 static void dsi_disable_scp_clk(struct platform_device
*dsidev
)
1241 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1243 WARN_ON(dsi
->scp_clk_refcount
== 0);
1244 if (--dsi
->scp_clk_refcount
== 0)
1245 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, 0, 14, 14); /* CIO_CLK_ICG */
1248 enum dsi_pll_power_state
{
1249 DSI_PLL_POWER_OFF
= 0x0,
1250 DSI_PLL_POWER_ON_HSCLK
= 0x1,
1251 DSI_PLL_POWER_ON_ALL
= 0x2,
1252 DSI_PLL_POWER_ON_DIV
= 0x3,
1255 static int dsi_pll_power(struct platform_device
*dsidev
,
1256 enum dsi_pll_power_state state
)
1260 /* DSI-PLL power command 0x3 is not working */
1261 if (dss_has_feature(FEAT_DSI_PLL_PWR_BUG
) &&
1262 state
== DSI_PLL_POWER_ON_DIV
)
1263 state
= DSI_PLL_POWER_ON_ALL
;
1266 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, state
, 31, 30);
1268 /* PLL_PWR_STATUS */
1269 while (FLD_GET(dsi_read_reg(dsidev
, DSI_CLK_CTRL
), 29, 28) != state
) {
1271 DSSERR("Failed to set DSI PLL power mode to %d\n",
1281 /* calculate clock rates using dividers in cinfo */
1282 static int dsi_calc_clock_rates(struct omap_dss_device
*dssdev
,
1283 struct dsi_clock_info
*cinfo
)
1285 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
1286 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1288 if (cinfo
->regn
== 0 || cinfo
->regn
> dsi
->regn_max
)
1291 if (cinfo
->regm
== 0 || cinfo
->regm
> dsi
->regm_max
)
1294 if (cinfo
->regm_dispc
> dsi
->regm_dispc_max
)
1297 if (cinfo
->regm_dsi
> dsi
->regm_dsi_max
)
1300 if (cinfo
->use_sys_clk
) {
1301 cinfo
->clkin
= clk_get_rate(dsi
->sys_clk
);
1302 /* XXX it is unclear if highfreq should be used
1303 * with DSS_SYS_CLK source also */
1304 cinfo
->highfreq
= 0;
1306 cinfo
->clkin
= dispc_mgr_pclk_rate(dssdev
->manager
->id
);
1308 if (cinfo
->clkin
< 32000000)
1309 cinfo
->highfreq
= 0;
1311 cinfo
->highfreq
= 1;
1314 cinfo
->fint
= cinfo
->clkin
/ (cinfo
->regn
* (cinfo
->highfreq
? 2 : 1));
1316 if (cinfo
->fint
> dsi
->fint_max
|| cinfo
->fint
< dsi
->fint_min
)
1319 cinfo
->clkin4ddr
= 2 * cinfo
->regm
* cinfo
->fint
;
1321 if (cinfo
->clkin4ddr
> 1800 * 1000 * 1000)
1324 if (cinfo
->regm_dispc
> 0)
1325 cinfo
->dsi_pll_hsdiv_dispc_clk
=
1326 cinfo
->clkin4ddr
/ cinfo
->regm_dispc
;
1328 cinfo
->dsi_pll_hsdiv_dispc_clk
= 0;
1330 if (cinfo
->regm_dsi
> 0)
1331 cinfo
->dsi_pll_hsdiv_dsi_clk
=
1332 cinfo
->clkin4ddr
/ cinfo
->regm_dsi
;
1334 cinfo
->dsi_pll_hsdiv_dsi_clk
= 0;
1339 int dsi_pll_calc_clock_div_pck(struct platform_device
*dsidev
, bool is_tft
,
1340 unsigned long req_pck
, struct dsi_clock_info
*dsi_cinfo
,
1341 struct dispc_clock_info
*dispc_cinfo
)
1343 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1344 struct dsi_clock_info cur
, best
;
1345 struct dispc_clock_info best_dispc
;
1346 int min_fck_per_pck
;
1348 unsigned long dss_sys_clk
, max_dss_fck
;
1350 dss_sys_clk
= clk_get_rate(dsi
->sys_clk
);
1352 max_dss_fck
= dss_feat_get_param_max(FEAT_PARAM_DSS_FCK
);
1354 if (req_pck
== dsi
->cache_req_pck
&&
1355 dsi
->cache_cinfo
.clkin
== dss_sys_clk
) {
1356 DSSDBG("DSI clock info found from cache\n");
1357 *dsi_cinfo
= dsi
->cache_cinfo
;
1358 dispc_find_clk_divs(is_tft
, req_pck
,
1359 dsi_cinfo
->dsi_pll_hsdiv_dispc_clk
, dispc_cinfo
);
1363 min_fck_per_pck
= CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK
;
1365 if (min_fck_per_pck
&&
1366 req_pck
* min_fck_per_pck
> max_dss_fck
) {
1367 DSSERR("Requested pixel clock not possible with the current "
1368 "OMAP2_DSS_MIN_FCK_PER_PCK setting. Turning "
1369 "the constraint off.\n");
1370 min_fck_per_pck
= 0;
1373 DSSDBG("dsi_pll_calc\n");
1376 memset(&best
, 0, sizeof(best
));
1377 memset(&best_dispc
, 0, sizeof(best_dispc
));
1379 memset(&cur
, 0, sizeof(cur
));
1380 cur
.clkin
= dss_sys_clk
;
1381 cur
.use_sys_clk
= 1;
1384 /* no highfreq: 0.75MHz < Fint = clkin / regn < 2.1MHz */
1385 /* highfreq: 0.75MHz < Fint = clkin / (2*regn) < 2.1MHz */
1386 /* To reduce PLL lock time, keep Fint high (around 2 MHz) */
1387 for (cur
.regn
= 1; cur
.regn
< dsi
->regn_max
; ++cur
.regn
) {
1388 if (cur
.highfreq
== 0)
1389 cur
.fint
= cur
.clkin
/ cur
.regn
;
1391 cur
.fint
= cur
.clkin
/ (2 * cur
.regn
);
1393 if (cur
.fint
> dsi
->fint_max
|| cur
.fint
< dsi
->fint_min
)
1396 /* DSIPHY(MHz) = (2 * regm / regn) * (clkin / (highfreq + 1)) */
1397 for (cur
.regm
= 1; cur
.regm
< dsi
->regm_max
; ++cur
.regm
) {
1400 a
= 2 * cur
.regm
* (cur
.clkin
/1000);
1401 b
= cur
.regn
* (cur
.highfreq
+ 1);
1402 cur
.clkin4ddr
= a
/ b
* 1000;
1404 if (cur
.clkin4ddr
> 1800 * 1000 * 1000)
1407 /* dsi_pll_hsdiv_dispc_clk(MHz) =
1408 * DSIPHY(MHz) / regm_dispc < 173MHz/186Mhz */
1409 for (cur
.regm_dispc
= 1; cur
.regm_dispc
<
1410 dsi
->regm_dispc_max
; ++cur
.regm_dispc
) {
1411 struct dispc_clock_info cur_dispc
;
1412 cur
.dsi_pll_hsdiv_dispc_clk
=
1413 cur
.clkin4ddr
/ cur
.regm_dispc
;
1415 /* this will narrow down the search a bit,
1416 * but still give pixclocks below what was
1418 if (cur
.dsi_pll_hsdiv_dispc_clk
< req_pck
)
1421 if (cur
.dsi_pll_hsdiv_dispc_clk
> max_dss_fck
)
1424 if (min_fck_per_pck
&&
1425 cur
.dsi_pll_hsdiv_dispc_clk
<
1426 req_pck
* min_fck_per_pck
)
1431 dispc_find_clk_divs(is_tft
, req_pck
,
1432 cur
.dsi_pll_hsdiv_dispc_clk
,
1435 if (abs(cur_dispc
.pck
- req_pck
) <
1436 abs(best_dispc
.pck
- req_pck
)) {
1438 best_dispc
= cur_dispc
;
1440 if (cur_dispc
.pck
== req_pck
)
1448 if (min_fck_per_pck
) {
1449 DSSERR("Could not find suitable clock settings.\n"
1450 "Turning FCK/PCK constraint off and"
1452 min_fck_per_pck
= 0;
1456 DSSERR("Could not find suitable clock settings.\n");
1461 /* dsi_pll_hsdiv_dsi_clk (regm_dsi) is not used */
1463 best
.dsi_pll_hsdiv_dsi_clk
= 0;
1468 *dispc_cinfo
= best_dispc
;
1470 dsi
->cache_req_pck
= req_pck
;
1471 dsi
->cache_clk_freq
= 0;
1472 dsi
->cache_cinfo
= best
;
1477 int dsi_pll_set_clock_div(struct platform_device
*dsidev
,
1478 struct dsi_clock_info
*cinfo
)
1480 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1484 u8 regn_start
, regn_end
, regm_start
, regm_end
;
1485 u8 regm_dispc_start
, regm_dispc_end
, regm_dsi_start
, regm_dsi_end
;
1489 dsi
->current_cinfo
.use_sys_clk
= cinfo
->use_sys_clk
;
1490 dsi
->current_cinfo
.highfreq
= cinfo
->highfreq
;
1492 dsi
->current_cinfo
.fint
= cinfo
->fint
;
1493 dsi
->current_cinfo
.clkin4ddr
= cinfo
->clkin4ddr
;
1494 dsi
->current_cinfo
.dsi_pll_hsdiv_dispc_clk
=
1495 cinfo
->dsi_pll_hsdiv_dispc_clk
;
1496 dsi
->current_cinfo
.dsi_pll_hsdiv_dsi_clk
=
1497 cinfo
->dsi_pll_hsdiv_dsi_clk
;
1499 dsi
->current_cinfo
.regn
= cinfo
->regn
;
1500 dsi
->current_cinfo
.regm
= cinfo
->regm
;
1501 dsi
->current_cinfo
.regm_dispc
= cinfo
->regm_dispc
;
1502 dsi
->current_cinfo
.regm_dsi
= cinfo
->regm_dsi
;
1504 DSSDBG("DSI Fint %ld\n", cinfo
->fint
);
1506 DSSDBG("clkin (%s) rate %ld, highfreq %d\n",
1507 cinfo
->use_sys_clk
? "dss_sys_clk" : "pclkfree",
1511 /* DSIPHY == CLKIN4DDR */
1512 DSSDBG("CLKIN4DDR = 2 * %d / %d * %lu / %d = %lu\n",
1516 cinfo
->highfreq
+ 1,
1519 DSSDBG("Data rate on 1 DSI lane %ld Mbps\n",
1520 cinfo
->clkin4ddr
/ 1000 / 1000 / 2);
1522 DSSDBG("Clock lane freq %ld Hz\n", cinfo
->clkin4ddr
/ 4);
1524 DSSDBG("regm_dispc = %d, %s (%s) = %lu\n", cinfo
->regm_dispc
,
1525 dss_get_generic_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC
),
1526 dss_feat_get_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC
),
1527 cinfo
->dsi_pll_hsdiv_dispc_clk
);
1528 DSSDBG("regm_dsi = %d, %s (%s) = %lu\n", cinfo
->regm_dsi
,
1529 dss_get_generic_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI
),
1530 dss_feat_get_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI
),
1531 cinfo
->dsi_pll_hsdiv_dsi_clk
);
1533 dss_feat_get_reg_field(FEAT_REG_DSIPLL_REGN
, ®n_start
, ®n_end
);
1534 dss_feat_get_reg_field(FEAT_REG_DSIPLL_REGM
, ®m_start
, ®m_end
);
1535 dss_feat_get_reg_field(FEAT_REG_DSIPLL_REGM_DISPC
, ®m_dispc_start
,
1537 dss_feat_get_reg_field(FEAT_REG_DSIPLL_REGM_DSI
, ®m_dsi_start
,
1540 /* DSI_PLL_AUTOMODE = manual */
1541 REG_FLD_MOD(dsidev
, DSI_PLL_CONTROL
, 0, 0, 0);
1543 l
= dsi_read_reg(dsidev
, DSI_PLL_CONFIGURATION1
);
1544 l
= FLD_MOD(l
, 1, 0, 0); /* DSI_PLL_STOPMODE */
1546 l
= FLD_MOD(l
, cinfo
->regn
- 1, regn_start
, regn_end
);
1548 l
= FLD_MOD(l
, cinfo
->regm
, regm_start
, regm_end
);
1550 l
= FLD_MOD(l
, cinfo
->regm_dispc
> 0 ? cinfo
->regm_dispc
- 1 : 0,
1551 regm_dispc_start
, regm_dispc_end
);
1552 /* DSIPROTO_CLOCK_DIV */
1553 l
= FLD_MOD(l
, cinfo
->regm_dsi
> 0 ? cinfo
->regm_dsi
- 1 : 0,
1554 regm_dsi_start
, regm_dsi_end
);
1555 dsi_write_reg(dsidev
, DSI_PLL_CONFIGURATION1
, l
);
1557 BUG_ON(cinfo
->fint
< dsi
->fint_min
|| cinfo
->fint
> dsi
->fint_max
);
1559 if (dss_has_feature(FEAT_DSI_PLL_FREQSEL
)) {
1560 f
= cinfo
->fint
< 1000000 ? 0x3 :
1561 cinfo
->fint
< 1250000 ? 0x4 :
1562 cinfo
->fint
< 1500000 ? 0x5 :
1563 cinfo
->fint
< 1750000 ? 0x6 :
1567 l
= dsi_read_reg(dsidev
, DSI_PLL_CONFIGURATION2
);
1569 if (dss_has_feature(FEAT_DSI_PLL_FREQSEL
))
1570 l
= FLD_MOD(l
, f
, 4, 1); /* DSI_PLL_FREQSEL */
1571 l
= FLD_MOD(l
, cinfo
->use_sys_clk
? 0 : 1,
1572 11, 11); /* DSI_PLL_CLKSEL */
1573 l
= FLD_MOD(l
, cinfo
->highfreq
,
1574 12, 12); /* DSI_PLL_HIGHFREQ */
1575 l
= FLD_MOD(l
, 1, 13, 13); /* DSI_PLL_REFEN */
1576 l
= FLD_MOD(l
, 0, 14, 14); /* DSIPHY_CLKINEN */
1577 l
= FLD_MOD(l
, 1, 20, 20); /* DSI_HSDIVBYPASS */
1578 dsi_write_reg(dsidev
, DSI_PLL_CONFIGURATION2
, l
);
1580 REG_FLD_MOD(dsidev
, DSI_PLL_GO
, 1, 0, 0); /* DSI_PLL_GO */
1582 if (wait_for_bit_change(dsidev
, DSI_PLL_GO
, 0, 0) != 0) {
1583 DSSERR("dsi pll go bit not going down.\n");
1588 if (wait_for_bit_change(dsidev
, DSI_PLL_STATUS
, 1, 1) != 1) {
1589 DSSERR("cannot lock PLL\n");
1594 dsi
->pll_locked
= 1;
1596 l
= dsi_read_reg(dsidev
, DSI_PLL_CONFIGURATION2
);
1597 l
= FLD_MOD(l
, 0, 0, 0); /* DSI_PLL_IDLE */
1598 l
= FLD_MOD(l
, 0, 5, 5); /* DSI_PLL_PLLLPMODE */
1599 l
= FLD_MOD(l
, 0, 6, 6); /* DSI_PLL_LOWCURRSTBY */
1600 l
= FLD_MOD(l
, 0, 7, 7); /* DSI_PLL_TIGHTPHASELOCK */
1601 l
= FLD_MOD(l
, 0, 8, 8); /* DSI_PLL_DRIFTGUARDEN */
1602 l
= FLD_MOD(l
, 0, 10, 9); /* DSI_PLL_LOCKSEL */
1603 l
= FLD_MOD(l
, 1, 13, 13); /* DSI_PLL_REFEN */
1604 l
= FLD_MOD(l
, 1, 14, 14); /* DSIPHY_CLKINEN */
1605 l
= FLD_MOD(l
, 0, 15, 15); /* DSI_BYPASSEN */
1606 l
= FLD_MOD(l
, 1, 16, 16); /* DSS_CLOCK_EN */
1607 l
= FLD_MOD(l
, 0, 17, 17); /* DSS_CLOCK_PWDN */
1608 l
= FLD_MOD(l
, 1, 18, 18); /* DSI_PROTO_CLOCK_EN */
1609 l
= FLD_MOD(l
, 0, 19, 19); /* DSI_PROTO_CLOCK_PWDN */
1610 l
= FLD_MOD(l
, 0, 20, 20); /* DSI_HSDIVBYPASS */
1611 dsi_write_reg(dsidev
, DSI_PLL_CONFIGURATION2
, l
);
1613 DSSDBG("PLL config done\n");
1618 int dsi_pll_init(struct platform_device
*dsidev
, bool enable_hsclk
,
1621 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1623 enum dsi_pll_power_state pwstate
;
1625 DSSDBG("PLL init\n");
1627 if (dsi
->vdds_dsi_reg
== NULL
) {
1628 struct regulator
*vdds_dsi
;
1630 vdds_dsi
= regulator_get(&dsi
->pdev
->dev
, "vdds_dsi");
1632 if (IS_ERR(vdds_dsi
)) {
1633 DSSERR("can't get VDDS_DSI regulator\n");
1634 return PTR_ERR(vdds_dsi
);
1637 dsi
->vdds_dsi_reg
= vdds_dsi
;
1640 dsi_enable_pll_clock(dsidev
, 1);
1642 * Note: SCP CLK is not required on OMAP3, but it is required on OMAP4.
1644 dsi_enable_scp_clk(dsidev
);
1646 if (!dsi
->vdds_dsi_enabled
) {
1647 r
= regulator_enable(dsi
->vdds_dsi_reg
);
1650 dsi
->vdds_dsi_enabled
= true;
1653 /* XXX PLL does not come out of reset without this... */
1654 dispc_pck_free_enable(1);
1656 if (wait_for_bit_change(dsidev
, DSI_PLL_STATUS
, 0, 1) != 1) {
1657 DSSERR("PLL not coming out of reset.\n");
1659 dispc_pck_free_enable(0);
1663 /* XXX ... but if left on, we get problems when planes do not
1664 * fill the whole display. No idea about this */
1665 dispc_pck_free_enable(0);
1667 if (enable_hsclk
&& enable_hsdiv
)
1668 pwstate
= DSI_PLL_POWER_ON_ALL
;
1669 else if (enable_hsclk
)
1670 pwstate
= DSI_PLL_POWER_ON_HSCLK
;
1671 else if (enable_hsdiv
)
1672 pwstate
= DSI_PLL_POWER_ON_DIV
;
1674 pwstate
= DSI_PLL_POWER_OFF
;
1676 r
= dsi_pll_power(dsidev
, pwstate
);
1681 DSSDBG("PLL init done\n");
1685 if (dsi
->vdds_dsi_enabled
) {
1686 regulator_disable(dsi
->vdds_dsi_reg
);
1687 dsi
->vdds_dsi_enabled
= false;
1690 dsi_disable_scp_clk(dsidev
);
1691 dsi_enable_pll_clock(dsidev
, 0);
1695 void dsi_pll_uninit(struct platform_device
*dsidev
, bool disconnect_lanes
)
1697 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1699 dsi
->pll_locked
= 0;
1700 dsi_pll_power(dsidev
, DSI_PLL_POWER_OFF
);
1701 if (disconnect_lanes
) {
1702 WARN_ON(!dsi
->vdds_dsi_enabled
);
1703 regulator_disable(dsi
->vdds_dsi_reg
);
1704 dsi
->vdds_dsi_enabled
= false;
1707 dsi_disable_scp_clk(dsidev
);
1708 dsi_enable_pll_clock(dsidev
, 0);
1710 DSSDBG("PLL uninit done\n");
1713 static void dsi_dump_dsidev_clocks(struct platform_device
*dsidev
,
1716 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1717 struct dsi_clock_info
*cinfo
= &dsi
->current_cinfo
;
1718 enum omap_dss_clk_source dispc_clk_src
, dsi_clk_src
;
1719 int dsi_module
= dsi_get_dsidev_id(dsidev
);
1721 dispc_clk_src
= dss_get_dispc_clk_source();
1722 dsi_clk_src
= dss_get_dsi_clk_source(dsi_module
);
1724 if (dsi_runtime_get(dsidev
))
1727 seq_printf(s
, "- DSI%d PLL -\n", dsi_module
+ 1);
1729 seq_printf(s
, "dsi pll source = %s\n",
1730 cinfo
->use_sys_clk
? "dss_sys_clk" : "pclkfree");
1732 seq_printf(s
, "Fint\t\t%-16luregn %u\n", cinfo
->fint
, cinfo
->regn
);
1734 seq_printf(s
, "CLKIN4DDR\t%-16luregm %u\n",
1735 cinfo
->clkin4ddr
, cinfo
->regm
);
1737 seq_printf(s
, "DSI_PLL_HSDIV_DISPC (%s)\t%-16luregm_dispc %u\t(%s)\n",
1738 dss_feat_get_clk_source_name(dsi_module
== 0 ?
1739 OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC
:
1740 OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DISPC
),
1741 cinfo
->dsi_pll_hsdiv_dispc_clk
,
1743 dispc_clk_src
== OMAP_DSS_CLK_SRC_FCK
?
1746 seq_printf(s
, "DSI_PLL_HSDIV_DSI (%s)\t%-16luregm_dsi %u\t(%s)\n",
1747 dss_feat_get_clk_source_name(dsi_module
== 0 ?
1748 OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI
:
1749 OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DSI
),
1750 cinfo
->dsi_pll_hsdiv_dsi_clk
,
1752 dsi_clk_src
== OMAP_DSS_CLK_SRC_FCK
?
1755 seq_printf(s
, "- DSI%d -\n", dsi_module
+ 1);
1757 seq_printf(s
, "dsi fclk source = %s (%s)\n",
1758 dss_get_generic_clk_source_name(dsi_clk_src
),
1759 dss_feat_get_clk_source_name(dsi_clk_src
));
1761 seq_printf(s
, "DSI_FCLK\t%lu\n", dsi_fclk_rate(dsidev
));
1763 seq_printf(s
, "DDR_CLK\t\t%lu\n",
1764 cinfo
->clkin4ddr
/ 4);
1766 seq_printf(s
, "TxByteClkHS\t%lu\n", dsi_get_txbyteclkhs(dsidev
));
1768 seq_printf(s
, "LP_CLK\t\t%lu\n", cinfo
->lp_clk
);
1770 dsi_runtime_put(dsidev
);
1773 void dsi_dump_clocks(struct seq_file
*s
)
1775 struct platform_device
*dsidev
;
1778 for (i
= 0; i
< MAX_NUM_DSI
; i
++) {
1779 dsidev
= dsi_get_dsidev_from_id(i
);
1781 dsi_dump_dsidev_clocks(dsidev
, s
);
1785 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
1786 static void dsi_dump_dsidev_irqs(struct platform_device
*dsidev
,
1789 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1790 unsigned long flags
;
1791 struct dsi_irq_stats stats
;
1792 int dsi_module
= dsi_get_dsidev_id(dsidev
);
1794 spin_lock_irqsave(&dsi
->irq_stats_lock
, flags
);
1796 stats
= dsi
->irq_stats
;
1797 memset(&dsi
->irq_stats
, 0, sizeof(dsi
->irq_stats
));
1798 dsi
->irq_stats
.last_reset
= jiffies
;
1800 spin_unlock_irqrestore(&dsi
->irq_stats_lock
, flags
);
1802 seq_printf(s
, "period %u ms\n",
1803 jiffies_to_msecs(jiffies
- stats
.last_reset
));
1805 seq_printf(s
, "irqs %d\n", stats
.irq_count
);
1807 seq_printf(s, "%-20s %10d\n", #x, stats.dsi_irqs[ffs(DSI_IRQ_##x)-1]);
1809 seq_printf(s
, "-- DSI%d interrupts --\n", dsi_module
+ 1);
1825 PIS(LDO_POWER_GOOD
);
1830 seq_printf(s, "%-20s %10d %10d %10d %10d\n", #x, \
1831 stats.vc_irqs[0][ffs(DSI_VC_IRQ_##x)-1], \
1832 stats.vc_irqs[1][ffs(DSI_VC_IRQ_##x)-1], \
1833 stats.vc_irqs[2][ffs(DSI_VC_IRQ_##x)-1], \
1834 stats.vc_irqs[3][ffs(DSI_VC_IRQ_##x)-1]);
1836 seq_printf(s
, "-- VC interrupts --\n");
1845 PIS(PP_BUSY_CHANGE
);
1849 seq_printf(s, "%-20s %10d\n", #x, \
1850 stats.cio_irqs[ffs(DSI_CIO_IRQ_##x)-1]);
1852 seq_printf(s
, "-- CIO interrupts --\n");
1865 PIS(ERRCONTENTIONLP0_1
);
1866 PIS(ERRCONTENTIONLP1_1
);
1867 PIS(ERRCONTENTIONLP0_2
);
1868 PIS(ERRCONTENTIONLP1_2
);
1869 PIS(ERRCONTENTIONLP0_3
);
1870 PIS(ERRCONTENTIONLP1_3
);
1871 PIS(ULPSACTIVENOT_ALL0
);
1872 PIS(ULPSACTIVENOT_ALL1
);
1876 static void dsi1_dump_irqs(struct seq_file
*s
)
1878 struct platform_device
*dsidev
= dsi_get_dsidev_from_id(0);
1880 dsi_dump_dsidev_irqs(dsidev
, s
);
1883 static void dsi2_dump_irqs(struct seq_file
*s
)
1885 struct platform_device
*dsidev
= dsi_get_dsidev_from_id(1);
1887 dsi_dump_dsidev_irqs(dsidev
, s
);
1890 void dsi_create_debugfs_files_irq(struct dentry
*debugfs_dir
,
1891 const struct file_operations
*debug_fops
)
1893 struct platform_device
*dsidev
;
1895 dsidev
= dsi_get_dsidev_from_id(0);
1897 debugfs_create_file("dsi1_irqs", S_IRUGO
, debugfs_dir
,
1898 &dsi1_dump_irqs
, debug_fops
);
1900 dsidev
= dsi_get_dsidev_from_id(1);
1902 debugfs_create_file("dsi2_irqs", S_IRUGO
, debugfs_dir
,
1903 &dsi2_dump_irqs
, debug_fops
);
1907 static void dsi_dump_dsidev_regs(struct platform_device
*dsidev
,
1910 #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, dsi_read_reg(dsidev, r))
1912 if (dsi_runtime_get(dsidev
))
1914 dsi_enable_scp_clk(dsidev
);
1916 DUMPREG(DSI_REVISION
);
1917 DUMPREG(DSI_SYSCONFIG
);
1918 DUMPREG(DSI_SYSSTATUS
);
1919 DUMPREG(DSI_IRQSTATUS
);
1920 DUMPREG(DSI_IRQENABLE
);
1922 DUMPREG(DSI_COMPLEXIO_CFG1
);
1923 DUMPREG(DSI_COMPLEXIO_IRQ_STATUS
);
1924 DUMPREG(DSI_COMPLEXIO_IRQ_ENABLE
);
1925 DUMPREG(DSI_CLK_CTRL
);
1926 DUMPREG(DSI_TIMING1
);
1927 DUMPREG(DSI_TIMING2
);
1928 DUMPREG(DSI_VM_TIMING1
);
1929 DUMPREG(DSI_VM_TIMING2
);
1930 DUMPREG(DSI_VM_TIMING3
);
1931 DUMPREG(DSI_CLK_TIMING
);
1932 DUMPREG(DSI_TX_FIFO_VC_SIZE
);
1933 DUMPREG(DSI_RX_FIFO_VC_SIZE
);
1934 DUMPREG(DSI_COMPLEXIO_CFG2
);
1935 DUMPREG(DSI_RX_FIFO_VC_FULLNESS
);
1936 DUMPREG(DSI_VM_TIMING4
);
1937 DUMPREG(DSI_TX_FIFO_VC_EMPTINESS
);
1938 DUMPREG(DSI_VM_TIMING5
);
1939 DUMPREG(DSI_VM_TIMING6
);
1940 DUMPREG(DSI_VM_TIMING7
);
1941 DUMPREG(DSI_STOPCLK_TIMING
);
1943 DUMPREG(DSI_VC_CTRL(0));
1944 DUMPREG(DSI_VC_TE(0));
1945 DUMPREG(DSI_VC_LONG_PACKET_HEADER(0));
1946 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(0));
1947 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(0));
1948 DUMPREG(DSI_VC_IRQSTATUS(0));
1949 DUMPREG(DSI_VC_IRQENABLE(0));
1951 DUMPREG(DSI_VC_CTRL(1));
1952 DUMPREG(DSI_VC_TE(1));
1953 DUMPREG(DSI_VC_LONG_PACKET_HEADER(1));
1954 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(1));
1955 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(1));
1956 DUMPREG(DSI_VC_IRQSTATUS(1));
1957 DUMPREG(DSI_VC_IRQENABLE(1));
1959 DUMPREG(DSI_VC_CTRL(2));
1960 DUMPREG(DSI_VC_TE(2));
1961 DUMPREG(DSI_VC_LONG_PACKET_HEADER(2));
1962 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(2));
1963 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(2));
1964 DUMPREG(DSI_VC_IRQSTATUS(2));
1965 DUMPREG(DSI_VC_IRQENABLE(2));
1967 DUMPREG(DSI_VC_CTRL(3));
1968 DUMPREG(DSI_VC_TE(3));
1969 DUMPREG(DSI_VC_LONG_PACKET_HEADER(3));
1970 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(3));
1971 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(3));
1972 DUMPREG(DSI_VC_IRQSTATUS(3));
1973 DUMPREG(DSI_VC_IRQENABLE(3));
1975 DUMPREG(DSI_DSIPHY_CFG0
);
1976 DUMPREG(DSI_DSIPHY_CFG1
);
1977 DUMPREG(DSI_DSIPHY_CFG2
);
1978 DUMPREG(DSI_DSIPHY_CFG5
);
1980 DUMPREG(DSI_PLL_CONTROL
);
1981 DUMPREG(DSI_PLL_STATUS
);
1982 DUMPREG(DSI_PLL_GO
);
1983 DUMPREG(DSI_PLL_CONFIGURATION1
);
1984 DUMPREG(DSI_PLL_CONFIGURATION2
);
1986 dsi_disable_scp_clk(dsidev
);
1987 dsi_runtime_put(dsidev
);
1991 static void dsi1_dump_regs(struct seq_file
*s
)
1993 struct platform_device
*dsidev
= dsi_get_dsidev_from_id(0);
1995 dsi_dump_dsidev_regs(dsidev
, s
);
1998 static void dsi2_dump_regs(struct seq_file
*s
)
2000 struct platform_device
*dsidev
= dsi_get_dsidev_from_id(1);
2002 dsi_dump_dsidev_regs(dsidev
, s
);
2005 void dsi_create_debugfs_files_reg(struct dentry
*debugfs_dir
,
2006 const struct file_operations
*debug_fops
)
2008 struct platform_device
*dsidev
;
2010 dsidev
= dsi_get_dsidev_from_id(0);
2012 debugfs_create_file("dsi1_regs", S_IRUGO
, debugfs_dir
,
2013 &dsi1_dump_regs
, debug_fops
);
2015 dsidev
= dsi_get_dsidev_from_id(1);
2017 debugfs_create_file("dsi2_regs", S_IRUGO
, debugfs_dir
,
2018 &dsi2_dump_regs
, debug_fops
);
2020 enum dsi_cio_power_state
{
2021 DSI_COMPLEXIO_POWER_OFF
= 0x0,
2022 DSI_COMPLEXIO_POWER_ON
= 0x1,
2023 DSI_COMPLEXIO_POWER_ULPS
= 0x2,
2026 static int dsi_cio_power(struct platform_device
*dsidev
,
2027 enum dsi_cio_power_state state
)
2032 REG_FLD_MOD(dsidev
, DSI_COMPLEXIO_CFG1
, state
, 28, 27);
2035 while (FLD_GET(dsi_read_reg(dsidev
, DSI_COMPLEXIO_CFG1
),
2038 DSSERR("failed to set complexio power state to "
2048 static unsigned dsi_get_line_buf_size(struct platform_device
*dsidev
)
2052 /* line buffer on OMAP3 is 1024 x 24bits */
2053 /* XXX: for some reason using full buffer size causes
2054 * considerable TX slowdown with update sizes that fill the
2056 if (!dss_has_feature(FEAT_DSI_GNQ
))
2059 val
= REG_GET(dsidev
, DSI_GNQ
, 14, 12); /* VP1_LINE_BUFFER_SIZE */
2063 return 512 * 3; /* 512x24 bits */
2065 return 682 * 3; /* 682x24 bits */
2067 return 853 * 3; /* 853x24 bits */
2069 return 1024 * 3; /* 1024x24 bits */
2071 return 1194 * 3; /* 1194x24 bits */
2073 return 1365 * 3; /* 1365x24 bits */
2079 static int dsi_parse_lane_config(struct omap_dss_device
*dssdev
)
2081 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2082 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2083 u8 lanes
[DSI_MAX_NR_LANES
];
2084 u8 polarities
[DSI_MAX_NR_LANES
];
2087 static const enum dsi_lane_function functions
[] = {
2095 lanes
[0] = dssdev
->phy
.dsi
.clk_lane
;
2096 lanes
[1] = dssdev
->phy
.dsi
.data1_lane
;
2097 lanes
[2] = dssdev
->phy
.dsi
.data2_lane
;
2098 lanes
[3] = dssdev
->phy
.dsi
.data3_lane
;
2099 lanes
[4] = dssdev
->phy
.dsi
.data4_lane
;
2100 polarities
[0] = dssdev
->phy
.dsi
.clk_pol
;
2101 polarities
[1] = dssdev
->phy
.dsi
.data1_pol
;
2102 polarities
[2] = dssdev
->phy
.dsi
.data2_pol
;
2103 polarities
[3] = dssdev
->phy
.dsi
.data3_pol
;
2104 polarities
[4] = dssdev
->phy
.dsi
.data4_pol
;
2108 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
)
2109 dsi
->lanes
[i
].function
= DSI_LANE_UNUSED
;
2111 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
2114 if (lanes
[i
] == DSI_LANE_UNUSED
)
2119 if (num
>= dsi
->num_lanes_supported
)
2122 if (dsi
->lanes
[num
].function
!= DSI_LANE_UNUSED
)
2125 dsi
->lanes
[num
].function
= functions
[i
];
2126 dsi
->lanes
[num
].polarity
= polarities
[i
];
2130 if (num_lanes
< 2 || num_lanes
> dsi
->num_lanes_supported
)
2133 dsi
->num_lanes_used
= num_lanes
;
2138 static int dsi_set_lane_config(struct omap_dss_device
*dssdev
)
2140 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2141 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2142 static const u8 offsets
[] = { 0, 4, 8, 12, 16 };
2143 static const enum dsi_lane_function functions
[] = {
2153 r
= dsi_read_reg(dsidev
, DSI_COMPLEXIO_CFG1
);
2155 for (i
= 0; i
< dsi
->num_lanes_used
; ++i
) {
2156 unsigned offset
= offsets
[i
];
2157 unsigned polarity
, lane_number
;
2160 for (t
= 0; t
< dsi
->num_lanes_supported
; ++t
)
2161 if (dsi
->lanes
[t
].function
== functions
[i
])
2164 if (t
== dsi
->num_lanes_supported
)
2168 polarity
= dsi
->lanes
[t
].polarity
;
2170 r
= FLD_MOD(r
, lane_number
+ 1, offset
+ 2, offset
);
2171 r
= FLD_MOD(r
, polarity
, offset
+ 3, offset
+ 3);
2174 /* clear the unused lanes */
2175 for (; i
< dsi
->num_lanes_supported
; ++i
) {
2176 unsigned offset
= offsets
[i
];
2178 r
= FLD_MOD(r
, 0, offset
+ 2, offset
);
2179 r
= FLD_MOD(r
, 0, offset
+ 3, offset
+ 3);
2182 dsi_write_reg(dsidev
, DSI_COMPLEXIO_CFG1
, r
);
2187 static inline unsigned ns2ddr(struct platform_device
*dsidev
, unsigned ns
)
2189 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2191 /* convert time in ns to ddr ticks, rounding up */
2192 unsigned long ddr_clk
= dsi
->current_cinfo
.clkin4ddr
/ 4;
2193 return (ns
* (ddr_clk
/ 1000 / 1000) + 999) / 1000;
2196 static inline unsigned ddr2ns(struct platform_device
*dsidev
, unsigned ddr
)
2198 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2200 unsigned long ddr_clk
= dsi
->current_cinfo
.clkin4ddr
/ 4;
2201 return ddr
* 1000 * 1000 / (ddr_clk
/ 1000);
2204 static void dsi_cio_timings(struct platform_device
*dsidev
)
2207 u32 ths_prepare
, ths_prepare_ths_zero
, ths_trail
, ths_exit
;
2208 u32 tlpx_half
, tclk_trail
, tclk_zero
;
2211 /* calculate timings */
2213 /* 1 * DDR_CLK = 2 * UI */
2215 /* min 40ns + 4*UI max 85ns + 6*UI */
2216 ths_prepare
= ns2ddr(dsidev
, 70) + 2;
2218 /* min 145ns + 10*UI */
2219 ths_prepare_ths_zero
= ns2ddr(dsidev
, 175) + 2;
2221 /* min max(8*UI, 60ns+4*UI) */
2222 ths_trail
= ns2ddr(dsidev
, 60) + 5;
2225 ths_exit
= ns2ddr(dsidev
, 145);
2228 tlpx_half
= ns2ddr(dsidev
, 25);
2231 tclk_trail
= ns2ddr(dsidev
, 60) + 2;
2233 /* min 38ns, max 95ns */
2234 tclk_prepare
= ns2ddr(dsidev
, 65);
2236 /* min tclk-prepare + tclk-zero = 300ns */
2237 tclk_zero
= ns2ddr(dsidev
, 260);
2239 DSSDBG("ths_prepare %u (%uns), ths_prepare_ths_zero %u (%uns)\n",
2240 ths_prepare
, ddr2ns(dsidev
, ths_prepare
),
2241 ths_prepare_ths_zero
, ddr2ns(dsidev
, ths_prepare_ths_zero
));
2242 DSSDBG("ths_trail %u (%uns), ths_exit %u (%uns)\n",
2243 ths_trail
, ddr2ns(dsidev
, ths_trail
),
2244 ths_exit
, ddr2ns(dsidev
, ths_exit
));
2246 DSSDBG("tlpx_half %u (%uns), tclk_trail %u (%uns), "
2247 "tclk_zero %u (%uns)\n",
2248 tlpx_half
, ddr2ns(dsidev
, tlpx_half
),
2249 tclk_trail
, ddr2ns(dsidev
, tclk_trail
),
2250 tclk_zero
, ddr2ns(dsidev
, tclk_zero
));
2251 DSSDBG("tclk_prepare %u (%uns)\n",
2252 tclk_prepare
, ddr2ns(dsidev
, tclk_prepare
));
2254 /* program timings */
2256 r
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG0
);
2257 r
= FLD_MOD(r
, ths_prepare
, 31, 24);
2258 r
= FLD_MOD(r
, ths_prepare_ths_zero
, 23, 16);
2259 r
= FLD_MOD(r
, ths_trail
, 15, 8);
2260 r
= FLD_MOD(r
, ths_exit
, 7, 0);
2261 dsi_write_reg(dsidev
, DSI_DSIPHY_CFG0
, r
);
2263 r
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG1
);
2264 r
= FLD_MOD(r
, tlpx_half
, 22, 16);
2265 r
= FLD_MOD(r
, tclk_trail
, 15, 8);
2266 r
= FLD_MOD(r
, tclk_zero
, 7, 0);
2267 dsi_write_reg(dsidev
, DSI_DSIPHY_CFG1
, r
);
2269 r
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG2
);
2270 r
= FLD_MOD(r
, tclk_prepare
, 7, 0);
2271 dsi_write_reg(dsidev
, DSI_DSIPHY_CFG2
, r
);
2274 /* lane masks have lane 0 at lsb. mask_p for positive lines, n for negative */
2275 static void dsi_cio_enable_lane_override(struct omap_dss_device
*dssdev
,
2276 unsigned mask_p
, unsigned mask_n
)
2278 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2279 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2282 u8 lptxscp_start
= dsi
->num_lanes_supported
== 3 ? 22 : 26;
2286 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
2287 unsigned p
= dsi
->lanes
[i
].polarity
;
2289 if (mask_p
& (1 << i
))
2290 l
|= 1 << (i
* 2 + (p
? 0 : 1));
2292 if (mask_n
& (1 << i
))
2293 l
|= 1 << (i
* 2 + (p
? 1 : 0));
2297 * Bits in REGLPTXSCPDAT4TO0DXDY:
2305 /* Set the lane override configuration */
2307 /* REGLPTXSCPDAT4TO0DXDY */
2308 REG_FLD_MOD(dsidev
, DSI_DSIPHY_CFG10
, l
, lptxscp_start
, 17);
2310 /* Enable lane override */
2313 REG_FLD_MOD(dsidev
, DSI_DSIPHY_CFG10
, 1, 27, 27);
2316 static void dsi_cio_disable_lane_override(struct platform_device
*dsidev
)
2318 /* Disable lane override */
2319 REG_FLD_MOD(dsidev
, DSI_DSIPHY_CFG10
, 0, 27, 27); /* ENLPTXSCPDAT */
2320 /* Reset the lane override configuration */
2321 /* REGLPTXSCPDAT4TO0DXDY */
2322 REG_FLD_MOD(dsidev
, DSI_DSIPHY_CFG10
, 0, 22, 17);
2325 static int dsi_cio_wait_tx_clk_esc_reset(struct omap_dss_device
*dssdev
)
2327 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2328 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2330 bool in_use
[DSI_MAX_NR_LANES
];
2331 static const u8 offsets_old
[] = { 28, 27, 26 };
2332 static const u8 offsets_new
[] = { 24, 25, 26, 27, 28 };
2335 if (dss_has_feature(FEAT_DSI_REVERSE_TXCLKESC
))
2336 offsets
= offsets_old
;
2338 offsets
= offsets_new
;
2340 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
)
2341 in_use
[i
] = dsi
->lanes
[i
].function
!= DSI_LANE_UNUSED
;
2348 l
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG5
);
2351 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
2352 if (!in_use
[i
] || (l
& (1 << offsets
[i
])))
2356 if (ok
== dsi
->num_lanes_supported
)
2360 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
2361 if (!in_use
[i
] || (l
& (1 << offsets
[i
])))
2364 DSSERR("CIO TXCLKESC%d domain not coming " \
2365 "out of reset\n", i
);
2374 /* return bitmask of enabled lanes, lane0 being the lsb */
2375 static unsigned dsi_get_lane_mask(struct omap_dss_device
*dssdev
)
2377 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2378 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2382 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
2383 if (dsi
->lanes
[i
].function
!= DSI_LANE_UNUSED
)
2390 static int dsi_cio_init(struct omap_dss_device
*dssdev
)
2392 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2393 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2399 r
= dsi
->enable_pads(dsidev
->id
, dsi_get_lane_mask(dssdev
));
2403 dsi_enable_scp_clk(dsidev
);
2405 /* A dummy read using the SCP interface to any DSIPHY register is
2406 * required after DSIPHY reset to complete the reset of the DSI complex
2408 dsi_read_reg(dsidev
, DSI_DSIPHY_CFG5
);
2410 if (wait_for_bit_change(dsidev
, DSI_DSIPHY_CFG5
, 30, 1) != 1) {
2411 DSSERR("CIO SCP Clock domain not coming out of reset.\n");
2413 goto err_scp_clk_dom
;
2416 r
= dsi_set_lane_config(dssdev
);
2418 goto err_scp_clk_dom
;
2420 /* set TX STOP MODE timer to maximum for this operation */
2421 l
= dsi_read_reg(dsidev
, DSI_TIMING1
);
2422 l
= FLD_MOD(l
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
2423 l
= FLD_MOD(l
, 1, 14, 14); /* STOP_STATE_X16_IO */
2424 l
= FLD_MOD(l
, 1, 13, 13); /* STOP_STATE_X4_IO */
2425 l
= FLD_MOD(l
, 0x1fff, 12, 0); /* STOP_STATE_COUNTER_IO */
2426 dsi_write_reg(dsidev
, DSI_TIMING1
, l
);
2428 if (dsi
->ulps_enabled
) {
2432 DSSDBG("manual ulps exit\n");
2434 /* ULPS is exited by Mark-1 state for 1ms, followed by
2435 * stop state. DSS HW cannot do this via the normal
2436 * ULPS exit sequence, as after reset the DSS HW thinks
2437 * that we are not in ULPS mode, and refuses to send the
2438 * sequence. So we need to send the ULPS exit sequence
2439 * manually by setting positive lines high and negative lines
2445 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
2446 if (dsi
->lanes
[i
].function
== DSI_LANE_UNUSED
)
2451 dsi_cio_enable_lane_override(dssdev
, mask_p
, 0);
2454 r
= dsi_cio_power(dsidev
, DSI_COMPLEXIO_POWER_ON
);
2458 if (wait_for_bit_change(dsidev
, DSI_COMPLEXIO_CFG1
, 29, 1) != 1) {
2459 DSSERR("CIO PWR clock domain not coming out of reset.\n");
2461 goto err_cio_pwr_dom
;
2464 dsi_if_enable(dsidev
, true);
2465 dsi_if_enable(dsidev
, false);
2466 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, 1, 20, 20); /* LP_CLK_ENABLE */
2468 r
= dsi_cio_wait_tx_clk_esc_reset(dssdev
);
2470 goto err_tx_clk_esc_rst
;
2472 if (dsi
->ulps_enabled
) {
2473 /* Keep Mark-1 state for 1ms (as per DSI spec) */
2474 ktime_t wait
= ns_to_ktime(1000 * 1000);
2475 set_current_state(TASK_UNINTERRUPTIBLE
);
2476 schedule_hrtimeout(&wait
, HRTIMER_MODE_REL
);
2478 /* Disable the override. The lanes should be set to Mark-11
2479 * state by the HW */
2480 dsi_cio_disable_lane_override(dsidev
);
2483 /* FORCE_TX_STOP_MODE_IO */
2484 REG_FLD_MOD(dsidev
, DSI_TIMING1
, 0, 15, 15);
2486 dsi_cio_timings(dsidev
);
2488 if (dssdev
->panel
.dsi_mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
2489 /* DDR_CLK_ALWAYS_ON */
2490 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
,
2491 dssdev
->panel
.dsi_vm_data
.ddr_clk_always_on
, 13, 13);
2494 dsi
->ulps_enabled
= false;
2496 DSSDBG("CIO init done\n");
2501 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, 0, 20, 20); /* LP_CLK_ENABLE */
2503 dsi_cio_power(dsidev
, DSI_COMPLEXIO_POWER_OFF
);
2505 if (dsi
->ulps_enabled
)
2506 dsi_cio_disable_lane_override(dsidev
);
2508 dsi_disable_scp_clk(dsidev
);
2509 dsi
->disable_pads(dsidev
->id
, dsi_get_lane_mask(dssdev
));
2513 static void dsi_cio_uninit(struct omap_dss_device
*dssdev
)
2515 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2516 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2518 /* DDR_CLK_ALWAYS_ON */
2519 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, 0, 13, 13);
2521 dsi_cio_power(dsidev
, DSI_COMPLEXIO_POWER_OFF
);
2522 dsi_disable_scp_clk(dsidev
);
2523 dsi
->disable_pads(dsidev
->id
, dsi_get_lane_mask(dssdev
));
2526 static void dsi_config_tx_fifo(struct platform_device
*dsidev
,
2527 enum fifo_size size1
, enum fifo_size size2
,
2528 enum fifo_size size3
, enum fifo_size size4
)
2530 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2535 dsi
->vc
[0].fifo_size
= size1
;
2536 dsi
->vc
[1].fifo_size
= size2
;
2537 dsi
->vc
[2].fifo_size
= size3
;
2538 dsi
->vc
[3].fifo_size
= size4
;
2540 for (i
= 0; i
< 4; i
++) {
2542 int size
= dsi
->vc
[i
].fifo_size
;
2544 if (add
+ size
> 4) {
2545 DSSERR("Illegal FIFO configuration\n");
2549 v
= FLD_VAL(add
, 2, 0) | FLD_VAL(size
, 7, 4);
2551 /*DSSDBG("TX FIFO vc %d: size %d, add %d\n", i, size, add); */
2555 dsi_write_reg(dsidev
, DSI_TX_FIFO_VC_SIZE
, r
);
2558 static void dsi_config_rx_fifo(struct platform_device
*dsidev
,
2559 enum fifo_size size1
, enum fifo_size size2
,
2560 enum fifo_size size3
, enum fifo_size size4
)
2562 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2567 dsi
->vc
[0].fifo_size
= size1
;
2568 dsi
->vc
[1].fifo_size
= size2
;
2569 dsi
->vc
[2].fifo_size
= size3
;
2570 dsi
->vc
[3].fifo_size
= size4
;
2572 for (i
= 0; i
< 4; i
++) {
2574 int size
= dsi
->vc
[i
].fifo_size
;
2576 if (add
+ size
> 4) {
2577 DSSERR("Illegal FIFO configuration\n");
2581 v
= FLD_VAL(add
, 2, 0) | FLD_VAL(size
, 7, 4);
2583 /*DSSDBG("RX FIFO vc %d: size %d, add %d\n", i, size, add); */
2587 dsi_write_reg(dsidev
, DSI_RX_FIFO_VC_SIZE
, r
);
2590 static int dsi_force_tx_stop_mode_io(struct platform_device
*dsidev
)
2594 r
= dsi_read_reg(dsidev
, DSI_TIMING1
);
2595 r
= FLD_MOD(r
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
2596 dsi_write_reg(dsidev
, DSI_TIMING1
, r
);
2598 if (wait_for_bit_change(dsidev
, DSI_TIMING1
, 15, 0) != 0) {
2599 DSSERR("TX_STOP bit not going down\n");
2606 static bool dsi_vc_is_enabled(struct platform_device
*dsidev
, int channel
)
2608 return REG_GET(dsidev
, DSI_VC_CTRL(channel
), 0, 0);
2611 static void dsi_packet_sent_handler_vp(void *data
, u32 mask
)
2613 struct dsi_packet_sent_handler_data
*vp_data
=
2614 (struct dsi_packet_sent_handler_data
*) data
;
2615 struct dsi_data
*dsi
= dsi_get_dsidrv_data(vp_data
->dsidev
);
2616 const int channel
= dsi
->update_channel
;
2617 u8 bit
= dsi
->te_enabled
? 30 : 31;
2619 if (REG_GET(vp_data
->dsidev
, DSI_VC_TE(channel
), bit
, bit
) == 0)
2620 complete(vp_data
->completion
);
2623 static int dsi_sync_vc_vp(struct platform_device
*dsidev
, int channel
)
2625 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2626 DECLARE_COMPLETION_ONSTACK(completion
);
2627 struct dsi_packet_sent_handler_data vp_data
= { dsidev
, &completion
};
2631 bit
= dsi
->te_enabled
? 30 : 31;
2633 r
= dsi_register_isr_vc(dsidev
, channel
, dsi_packet_sent_handler_vp
,
2634 &vp_data
, DSI_VC_IRQ_PACKET_SENT
);
2638 /* Wait for completion only if TE_EN/TE_START is still set */
2639 if (REG_GET(dsidev
, DSI_VC_TE(channel
), bit
, bit
)) {
2640 if (wait_for_completion_timeout(&completion
,
2641 msecs_to_jiffies(10)) == 0) {
2642 DSSERR("Failed to complete previous frame transfer\n");
2648 dsi_unregister_isr_vc(dsidev
, channel
, dsi_packet_sent_handler_vp
,
2649 &vp_data
, DSI_VC_IRQ_PACKET_SENT
);
2653 dsi_unregister_isr_vc(dsidev
, channel
, dsi_packet_sent_handler_vp
,
2654 &vp_data
, DSI_VC_IRQ_PACKET_SENT
);
2659 static void dsi_packet_sent_handler_l4(void *data
, u32 mask
)
2661 struct dsi_packet_sent_handler_data
*l4_data
=
2662 (struct dsi_packet_sent_handler_data
*) data
;
2663 struct dsi_data
*dsi
= dsi_get_dsidrv_data(l4_data
->dsidev
);
2664 const int channel
= dsi
->update_channel
;
2666 if (REG_GET(l4_data
->dsidev
, DSI_VC_CTRL(channel
), 5, 5) == 0)
2667 complete(l4_data
->completion
);
2670 static int dsi_sync_vc_l4(struct platform_device
*dsidev
, int channel
)
2672 DECLARE_COMPLETION_ONSTACK(completion
);
2673 struct dsi_packet_sent_handler_data l4_data
= { dsidev
, &completion
};
2676 r
= dsi_register_isr_vc(dsidev
, channel
, dsi_packet_sent_handler_l4
,
2677 &l4_data
, DSI_VC_IRQ_PACKET_SENT
);
2681 /* Wait for completion only if TX_FIFO_NOT_EMPTY is still set */
2682 if (REG_GET(dsidev
, DSI_VC_CTRL(channel
), 5, 5)) {
2683 if (wait_for_completion_timeout(&completion
,
2684 msecs_to_jiffies(10)) == 0) {
2685 DSSERR("Failed to complete previous l4 transfer\n");
2691 dsi_unregister_isr_vc(dsidev
, channel
, dsi_packet_sent_handler_l4
,
2692 &l4_data
, DSI_VC_IRQ_PACKET_SENT
);
2696 dsi_unregister_isr_vc(dsidev
, channel
, dsi_packet_sent_handler_l4
,
2697 &l4_data
, DSI_VC_IRQ_PACKET_SENT
);
2702 static int dsi_sync_vc(struct platform_device
*dsidev
, int channel
)
2704 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2706 WARN_ON(!dsi_bus_is_locked(dsidev
));
2708 WARN_ON(in_interrupt());
2710 if (!dsi_vc_is_enabled(dsidev
, channel
))
2713 switch (dsi
->vc
[channel
].source
) {
2714 case DSI_VC_SOURCE_VP
:
2715 return dsi_sync_vc_vp(dsidev
, channel
);
2716 case DSI_VC_SOURCE_L4
:
2717 return dsi_sync_vc_l4(dsidev
, channel
);
2723 static int dsi_vc_enable(struct platform_device
*dsidev
, int channel
,
2726 DSSDBG("dsi_vc_enable channel %d, enable %d\n",
2729 enable
= enable
? 1 : 0;
2731 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), enable
, 0, 0);
2733 if (wait_for_bit_change(dsidev
, DSI_VC_CTRL(channel
),
2734 0, enable
) != enable
) {
2735 DSSERR("Failed to set dsi_vc_enable to %d\n", enable
);
2742 static void dsi_vc_initial_config(struct platform_device
*dsidev
, int channel
)
2746 DSSDBGF("%d", channel
);
2748 r
= dsi_read_reg(dsidev
, DSI_VC_CTRL(channel
));
2750 if (FLD_GET(r
, 15, 15)) /* VC_BUSY */
2751 DSSERR("VC(%d) busy when trying to configure it!\n",
2754 r
= FLD_MOD(r
, 0, 1, 1); /* SOURCE, 0 = L4 */
2755 r
= FLD_MOD(r
, 0, 2, 2); /* BTA_SHORT_EN */
2756 r
= FLD_MOD(r
, 0, 3, 3); /* BTA_LONG_EN */
2757 r
= FLD_MOD(r
, 0, 4, 4); /* MODE, 0 = command */
2758 r
= FLD_MOD(r
, 1, 7, 7); /* CS_TX_EN */
2759 r
= FLD_MOD(r
, 1, 8, 8); /* ECC_TX_EN */
2760 r
= FLD_MOD(r
, 0, 9, 9); /* MODE_SPEED, high speed on/off */
2761 if (dss_has_feature(FEAT_DSI_VC_OCP_WIDTH
))
2762 r
= FLD_MOD(r
, 3, 11, 10); /* OCP_WIDTH = 32 bit */
2764 r
= FLD_MOD(r
, 4, 29, 27); /* DMA_RX_REQ_NB = no dma */
2765 r
= FLD_MOD(r
, 4, 23, 21); /* DMA_TX_REQ_NB = no dma */
2767 dsi_write_reg(dsidev
, DSI_VC_CTRL(channel
), r
);
2770 static int dsi_vc_config_source(struct platform_device
*dsidev
, int channel
,
2771 enum dsi_vc_source source
)
2773 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2775 if (dsi
->vc
[channel
].source
== source
)
2778 DSSDBGF("%d", channel
);
2780 dsi_sync_vc(dsidev
, channel
);
2782 dsi_vc_enable(dsidev
, channel
, 0);
2785 if (wait_for_bit_change(dsidev
, DSI_VC_CTRL(channel
), 15, 0) != 0) {
2786 DSSERR("vc(%d) busy when trying to config for VP\n", channel
);
2790 /* SOURCE, 0 = L4, 1 = video port */
2791 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), source
, 1, 1);
2793 /* DCS_CMD_ENABLE */
2794 if (dss_has_feature(FEAT_DSI_DCS_CMD_CONFIG_VC
)) {
2795 bool enable
= source
== DSI_VC_SOURCE_VP
;
2796 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), enable
, 30, 30);
2799 dsi_vc_enable(dsidev
, channel
, 1);
2801 dsi
->vc
[channel
].source
= source
;
2806 void omapdss_dsi_vc_enable_hs(struct omap_dss_device
*dssdev
, int channel
,
2809 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2811 DSSDBG("dsi_vc_enable_hs(%d, %d)\n", channel
, enable
);
2813 WARN_ON(!dsi_bus_is_locked(dsidev
));
2815 dsi_vc_enable(dsidev
, channel
, 0);
2816 dsi_if_enable(dsidev
, 0);
2818 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), enable
, 9, 9);
2820 dsi_vc_enable(dsidev
, channel
, 1);
2821 dsi_if_enable(dsidev
, 1);
2823 dsi_force_tx_stop_mode_io(dsidev
);
2825 /* start the DDR clock by sending a NULL packet */
2826 if (dssdev
->panel
.dsi_vm_data
.ddr_clk_always_on
&& enable
)
2827 dsi_vc_send_null(dssdev
, channel
);
2829 EXPORT_SYMBOL(omapdss_dsi_vc_enable_hs
);
2831 static void dsi_vc_flush_long_data(struct platform_device
*dsidev
, int channel
)
2833 while (REG_GET(dsidev
, DSI_VC_CTRL(channel
), 20, 20)) {
2835 val
= dsi_read_reg(dsidev
, DSI_VC_SHORT_PACKET_HEADER(channel
));
2836 DSSDBG("\t\tb1 %#02x b2 %#02x b3 %#02x b4 %#02x\n",
2840 (val
>> 24) & 0xff);
2844 static void dsi_show_rx_ack_with_err(u16 err
)
2846 DSSERR("\tACK with ERROR (%#x):\n", err
);
2848 DSSERR("\t\tSoT Error\n");
2850 DSSERR("\t\tSoT Sync Error\n");
2852 DSSERR("\t\tEoT Sync Error\n");
2854 DSSERR("\t\tEscape Mode Entry Command Error\n");
2856 DSSERR("\t\tLP Transmit Sync Error\n");
2858 DSSERR("\t\tHS Receive Timeout Error\n");
2860 DSSERR("\t\tFalse Control Error\n");
2862 DSSERR("\t\t(reserved7)\n");
2864 DSSERR("\t\tECC Error, single-bit (corrected)\n");
2866 DSSERR("\t\tECC Error, multi-bit (not corrected)\n");
2867 if (err
& (1 << 10))
2868 DSSERR("\t\tChecksum Error\n");
2869 if (err
& (1 << 11))
2870 DSSERR("\t\tData type not recognized\n");
2871 if (err
& (1 << 12))
2872 DSSERR("\t\tInvalid VC ID\n");
2873 if (err
& (1 << 13))
2874 DSSERR("\t\tInvalid Transmission Length\n");
2875 if (err
& (1 << 14))
2876 DSSERR("\t\t(reserved14)\n");
2877 if (err
& (1 << 15))
2878 DSSERR("\t\tDSI Protocol Violation\n");
2881 static u16
dsi_vc_flush_receive_data(struct platform_device
*dsidev
,
2884 /* RX_FIFO_NOT_EMPTY */
2885 while (REG_GET(dsidev
, DSI_VC_CTRL(channel
), 20, 20)) {
2888 val
= dsi_read_reg(dsidev
, DSI_VC_SHORT_PACKET_HEADER(channel
));
2889 DSSERR("\trawval %#08x\n", val
);
2890 dt
= FLD_GET(val
, 5, 0);
2891 if (dt
== MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT
) {
2892 u16 err
= FLD_GET(val
, 23, 8);
2893 dsi_show_rx_ack_with_err(err
);
2894 } else if (dt
== MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE
) {
2895 DSSERR("\tDCS short response, 1 byte: %#x\n",
2896 FLD_GET(val
, 23, 8));
2897 } else if (dt
== MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE
) {
2898 DSSERR("\tDCS short response, 2 byte: %#x\n",
2899 FLD_GET(val
, 23, 8));
2900 } else if (dt
== MIPI_DSI_RX_DCS_LONG_READ_RESPONSE
) {
2901 DSSERR("\tDCS long response, len %d\n",
2902 FLD_GET(val
, 23, 8));
2903 dsi_vc_flush_long_data(dsidev
, channel
);
2905 DSSERR("\tunknown datatype 0x%02x\n", dt
);
2911 static int dsi_vc_send_bta(struct platform_device
*dsidev
, int channel
)
2913 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2915 if (dsi
->debug_write
|| dsi
->debug_read
)
2916 DSSDBG("dsi_vc_send_bta %d\n", channel
);
2918 WARN_ON(!dsi_bus_is_locked(dsidev
));
2920 /* RX_FIFO_NOT_EMPTY */
2921 if (REG_GET(dsidev
, DSI_VC_CTRL(channel
), 20, 20)) {
2922 DSSERR("rx fifo not empty when sending BTA, dumping data:\n");
2923 dsi_vc_flush_receive_data(dsidev
, channel
);
2926 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), 1, 6, 6); /* BTA_EN */
2928 /* flush posted write */
2929 dsi_read_reg(dsidev
, DSI_VC_CTRL(channel
));
2934 int dsi_vc_send_bta_sync(struct omap_dss_device
*dssdev
, int channel
)
2936 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2937 DECLARE_COMPLETION_ONSTACK(completion
);
2941 r
= dsi_register_isr_vc(dsidev
, channel
, dsi_completion_handler
,
2942 &completion
, DSI_VC_IRQ_BTA
);
2946 r
= dsi_register_isr(dsidev
, dsi_completion_handler
, &completion
,
2947 DSI_IRQ_ERROR_MASK
);
2951 r
= dsi_vc_send_bta(dsidev
, channel
);
2955 if (wait_for_completion_timeout(&completion
,
2956 msecs_to_jiffies(500)) == 0) {
2957 DSSERR("Failed to receive BTA\n");
2962 err
= dsi_get_errors(dsidev
);
2964 DSSERR("Error while sending BTA: %x\n", err
);
2969 dsi_unregister_isr(dsidev
, dsi_completion_handler
, &completion
,
2970 DSI_IRQ_ERROR_MASK
);
2972 dsi_unregister_isr_vc(dsidev
, channel
, dsi_completion_handler
,
2973 &completion
, DSI_VC_IRQ_BTA
);
2977 EXPORT_SYMBOL(dsi_vc_send_bta_sync
);
2979 static inline void dsi_vc_write_long_header(struct platform_device
*dsidev
,
2980 int channel
, u8 data_type
, u16 len
, u8 ecc
)
2982 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2986 WARN_ON(!dsi_bus_is_locked(dsidev
));
2988 data_id
= data_type
| dsi
->vc
[channel
].vc_id
<< 6;
2990 val
= FLD_VAL(data_id
, 7, 0) | FLD_VAL(len
, 23, 8) |
2991 FLD_VAL(ecc
, 31, 24);
2993 dsi_write_reg(dsidev
, DSI_VC_LONG_PACKET_HEADER(channel
), val
);
2996 static inline void dsi_vc_write_long_payload(struct platform_device
*dsidev
,
2997 int channel
, u8 b1
, u8 b2
, u8 b3
, u8 b4
)
3001 val
= b4
<< 24 | b3
<< 16 | b2
<< 8 | b1
<< 0;
3003 /* DSSDBG("\twriting %02x, %02x, %02x, %02x (%#010x)\n",
3004 b1, b2, b3, b4, val); */
3006 dsi_write_reg(dsidev
, DSI_VC_LONG_PACKET_PAYLOAD(channel
), val
);
3009 static int dsi_vc_send_long(struct platform_device
*dsidev
, int channel
,
3010 u8 data_type
, u8
*data
, u16 len
, u8 ecc
)
3013 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3019 if (dsi
->debug_write
)
3020 DSSDBG("dsi_vc_send_long, %d bytes\n", len
);
3023 if (dsi
->vc
[channel
].fifo_size
* 32 * 4 < len
+ 4) {
3024 DSSERR("unable to send long packet: packet too long.\n");
3028 dsi_vc_config_source(dsidev
, channel
, DSI_VC_SOURCE_L4
);
3030 dsi_vc_write_long_header(dsidev
, channel
, data_type
, len
, ecc
);
3033 for (i
= 0; i
< len
>> 2; i
++) {
3034 if (dsi
->debug_write
)
3035 DSSDBG("\tsending full packet %d\n", i
);
3042 dsi_vc_write_long_payload(dsidev
, channel
, b1
, b2
, b3
, b4
);
3047 b1
= 0; b2
= 0; b3
= 0;
3049 if (dsi
->debug_write
)
3050 DSSDBG("\tsending remainder bytes %d\n", i
);
3067 dsi_vc_write_long_payload(dsidev
, channel
, b1
, b2
, b3
, 0);
3073 static int dsi_vc_send_short(struct platform_device
*dsidev
, int channel
,
3074 u8 data_type
, u16 data
, u8 ecc
)
3076 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3080 WARN_ON(!dsi_bus_is_locked(dsidev
));
3082 if (dsi
->debug_write
)
3083 DSSDBG("dsi_vc_send_short(ch%d, dt %#x, b1 %#x, b2 %#x)\n",
3085 data_type
, data
& 0xff, (data
>> 8) & 0xff);
3087 dsi_vc_config_source(dsidev
, channel
, DSI_VC_SOURCE_L4
);
3089 if (FLD_GET(dsi_read_reg(dsidev
, DSI_VC_CTRL(channel
)), 16, 16)) {
3090 DSSERR("ERROR FIFO FULL, aborting transfer\n");
3094 data_id
= data_type
| dsi
->vc
[channel
].vc_id
<< 6;
3096 r
= (data_id
<< 0) | (data
<< 8) | (ecc
<< 24);
3098 dsi_write_reg(dsidev
, DSI_VC_SHORT_PACKET_HEADER(channel
), r
);
3103 int dsi_vc_send_null(struct omap_dss_device
*dssdev
, int channel
)
3105 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3107 return dsi_vc_send_long(dsidev
, channel
, MIPI_DSI_NULL_PACKET
, NULL
,
3110 EXPORT_SYMBOL(dsi_vc_send_null
);
3112 static int dsi_vc_write_nosync_common(struct omap_dss_device
*dssdev
,
3113 int channel
, u8
*data
, int len
, enum dss_dsi_content_type type
)
3115 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3119 BUG_ON(type
== DSS_DSI_CONTENT_DCS
);
3120 r
= dsi_vc_send_short(dsidev
, channel
,
3121 MIPI_DSI_GENERIC_SHORT_WRITE_0_PARAM
, 0, 0);
3122 } else if (len
== 1) {
3123 r
= dsi_vc_send_short(dsidev
, channel
,
3124 type
== DSS_DSI_CONTENT_GENERIC
?
3125 MIPI_DSI_GENERIC_SHORT_WRITE_1_PARAM
:
3126 MIPI_DSI_DCS_SHORT_WRITE
, data
[0], 0);
3127 } else if (len
== 2) {
3128 r
= dsi_vc_send_short(dsidev
, channel
,
3129 type
== DSS_DSI_CONTENT_GENERIC
?
3130 MIPI_DSI_GENERIC_SHORT_WRITE_2_PARAM
:
3131 MIPI_DSI_DCS_SHORT_WRITE_PARAM
,
3132 data
[0] | (data
[1] << 8), 0);
3134 r
= dsi_vc_send_long(dsidev
, channel
,
3135 type
== DSS_DSI_CONTENT_GENERIC
?
3136 MIPI_DSI_GENERIC_LONG_WRITE
:
3137 MIPI_DSI_DCS_LONG_WRITE
, data
, len
, 0);
3143 int dsi_vc_dcs_write_nosync(struct omap_dss_device
*dssdev
, int channel
,
3146 return dsi_vc_write_nosync_common(dssdev
, channel
, data
, len
,
3147 DSS_DSI_CONTENT_DCS
);
3149 EXPORT_SYMBOL(dsi_vc_dcs_write_nosync
);
3151 int dsi_vc_generic_write_nosync(struct omap_dss_device
*dssdev
, int channel
,
3154 return dsi_vc_write_nosync_common(dssdev
, channel
, data
, len
,
3155 DSS_DSI_CONTENT_GENERIC
);
3157 EXPORT_SYMBOL(dsi_vc_generic_write_nosync
);
3159 static int dsi_vc_write_common(struct omap_dss_device
*dssdev
, int channel
,
3160 u8
*data
, int len
, enum dss_dsi_content_type type
)
3162 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3165 r
= dsi_vc_write_nosync_common(dssdev
, channel
, data
, len
, type
);
3169 r
= dsi_vc_send_bta_sync(dssdev
, channel
);
3173 /* RX_FIFO_NOT_EMPTY */
3174 if (REG_GET(dsidev
, DSI_VC_CTRL(channel
), 20, 20)) {
3175 DSSERR("rx fifo not empty after write, dumping data:\n");
3176 dsi_vc_flush_receive_data(dsidev
, channel
);
3183 DSSERR("dsi_vc_write_common(ch %d, cmd 0x%02x, len %d) failed\n",
3184 channel
, data
[0], len
);
3188 int dsi_vc_dcs_write(struct omap_dss_device
*dssdev
, int channel
, u8
*data
,
3191 return dsi_vc_write_common(dssdev
, channel
, data
, len
,
3192 DSS_DSI_CONTENT_DCS
);
3194 EXPORT_SYMBOL(dsi_vc_dcs_write
);
3196 int dsi_vc_generic_write(struct omap_dss_device
*dssdev
, int channel
, u8
*data
,
3199 return dsi_vc_write_common(dssdev
, channel
, data
, len
,
3200 DSS_DSI_CONTENT_GENERIC
);
3202 EXPORT_SYMBOL(dsi_vc_generic_write
);
3204 int dsi_vc_dcs_write_0(struct omap_dss_device
*dssdev
, int channel
, u8 dcs_cmd
)
3206 return dsi_vc_dcs_write(dssdev
, channel
, &dcs_cmd
, 1);
3208 EXPORT_SYMBOL(dsi_vc_dcs_write_0
);
3210 int dsi_vc_generic_write_0(struct omap_dss_device
*dssdev
, int channel
)
3212 return dsi_vc_generic_write(dssdev
, channel
, NULL
, 0);
3214 EXPORT_SYMBOL(dsi_vc_generic_write_0
);
3216 int dsi_vc_dcs_write_1(struct omap_dss_device
*dssdev
, int channel
, u8 dcs_cmd
,
3222 return dsi_vc_dcs_write(dssdev
, channel
, buf
, 2);
3224 EXPORT_SYMBOL(dsi_vc_dcs_write_1
);
3226 int dsi_vc_generic_write_1(struct omap_dss_device
*dssdev
, int channel
,
3229 return dsi_vc_generic_write(dssdev
, channel
, ¶m
, 1);
3231 EXPORT_SYMBOL(dsi_vc_generic_write_1
);
3233 int dsi_vc_generic_write_2(struct omap_dss_device
*dssdev
, int channel
,
3234 u8 param1
, u8 param2
)
3239 return dsi_vc_generic_write(dssdev
, channel
, buf
, 2);
3241 EXPORT_SYMBOL(dsi_vc_generic_write_2
);
3243 static int dsi_vc_dcs_send_read_request(struct omap_dss_device
*dssdev
,
3244 int channel
, u8 dcs_cmd
)
3246 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3247 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3250 if (dsi
->debug_read
)
3251 DSSDBG("dsi_vc_dcs_send_read_request(ch%d, dcs_cmd %x)\n",
3254 r
= dsi_vc_send_short(dsidev
, channel
, MIPI_DSI_DCS_READ
, dcs_cmd
, 0);
3256 DSSERR("dsi_vc_dcs_send_read_request(ch %d, cmd 0x%02x)"
3257 " failed\n", channel
, dcs_cmd
);
3264 static int dsi_vc_generic_send_read_request(struct omap_dss_device
*dssdev
,
3265 int channel
, u8
*reqdata
, int reqlen
)
3267 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3268 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3273 if (dsi
->debug_read
)
3274 DSSDBG("dsi_vc_generic_send_read_request(ch %d, reqlen %d)\n",
3278 data_type
= MIPI_DSI_GENERIC_READ_REQUEST_0_PARAM
;
3280 } else if (reqlen
== 1) {
3281 data_type
= MIPI_DSI_GENERIC_READ_REQUEST_1_PARAM
;
3283 } else if (reqlen
== 2) {
3284 data_type
= MIPI_DSI_GENERIC_READ_REQUEST_2_PARAM
;
3285 data
= reqdata
[0] | (reqdata
[1] << 8);
3290 r
= dsi_vc_send_short(dsidev
, channel
, data_type
, data
, 0);
3292 DSSERR("dsi_vc_generic_send_read_request(ch %d, reqlen %d)"
3293 " failed\n", channel
, reqlen
);
3300 static int dsi_vc_read_rx_fifo(struct platform_device
*dsidev
, int channel
,
3301 u8
*buf
, int buflen
, enum dss_dsi_content_type type
)
3303 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3308 /* RX_FIFO_NOT_EMPTY */
3309 if (REG_GET(dsidev
, DSI_VC_CTRL(channel
), 20, 20) == 0) {
3310 DSSERR("RX fifo empty when trying to read.\n");
3315 val
= dsi_read_reg(dsidev
, DSI_VC_SHORT_PACKET_HEADER(channel
));
3316 if (dsi
->debug_read
)
3317 DSSDBG("\theader: %08x\n", val
);
3318 dt
= FLD_GET(val
, 5, 0);
3319 if (dt
== MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT
) {
3320 u16 err
= FLD_GET(val
, 23, 8);
3321 dsi_show_rx_ack_with_err(err
);
3325 } else if (dt
== (type
== DSS_DSI_CONTENT_GENERIC
?
3326 MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_1BYTE
:
3327 MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE
)) {
3328 u8 data
= FLD_GET(val
, 15, 8);
3329 if (dsi
->debug_read
)
3330 DSSDBG("\t%s short response, 1 byte: %02x\n",
3331 type
== DSS_DSI_CONTENT_GENERIC
? "GENERIC" :
3342 } else if (dt
== (type
== DSS_DSI_CONTENT_GENERIC
?
3343 MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_2BYTE
:
3344 MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE
)) {
3345 u16 data
= FLD_GET(val
, 23, 8);
3346 if (dsi
->debug_read
)
3347 DSSDBG("\t%s short response, 2 byte: %04x\n",
3348 type
== DSS_DSI_CONTENT_GENERIC
? "GENERIC" :
3356 buf
[0] = data
& 0xff;
3357 buf
[1] = (data
>> 8) & 0xff;
3360 } else if (dt
== (type
== DSS_DSI_CONTENT_GENERIC
?
3361 MIPI_DSI_RX_GENERIC_LONG_READ_RESPONSE
:
3362 MIPI_DSI_RX_DCS_LONG_READ_RESPONSE
)) {
3364 int len
= FLD_GET(val
, 23, 8);
3365 if (dsi
->debug_read
)
3366 DSSDBG("\t%s long response, len %d\n",
3367 type
== DSS_DSI_CONTENT_GENERIC
? "GENERIC" :
3375 /* two byte checksum ends the packet, not included in len */
3376 for (w
= 0; w
< len
+ 2;) {
3378 val
= dsi_read_reg(dsidev
,
3379 DSI_VC_SHORT_PACKET_HEADER(channel
));
3380 if (dsi
->debug_read
)
3381 DSSDBG("\t\t%02x %02x %02x %02x\n",
3385 (val
>> 24) & 0xff);
3387 for (b
= 0; b
< 4; ++b
) {
3389 buf
[w
] = (val
>> (b
* 8)) & 0xff;
3390 /* we discard the 2 byte checksum */
3397 DSSERR("\tunknown datatype 0x%02x\n", dt
);
3404 DSSERR("dsi_vc_read_rx_fifo(ch %d type %s) failed\n", channel
,
3405 type
== DSS_DSI_CONTENT_GENERIC
? "GENERIC" : "DCS");
3410 int dsi_vc_dcs_read(struct omap_dss_device
*dssdev
, int channel
, u8 dcs_cmd
,
3411 u8
*buf
, int buflen
)
3413 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3416 r
= dsi_vc_dcs_send_read_request(dssdev
, channel
, dcs_cmd
);
3420 r
= dsi_vc_send_bta_sync(dssdev
, channel
);
3424 r
= dsi_vc_read_rx_fifo(dsidev
, channel
, buf
, buflen
,
3425 DSS_DSI_CONTENT_DCS
);
3436 DSSERR("dsi_vc_dcs_read(ch %d, cmd 0x%02x) failed\n", channel
, dcs_cmd
);
3439 EXPORT_SYMBOL(dsi_vc_dcs_read
);
3441 static int dsi_vc_generic_read(struct omap_dss_device
*dssdev
, int channel
,
3442 u8
*reqdata
, int reqlen
, u8
*buf
, int buflen
)
3444 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3447 r
= dsi_vc_generic_send_read_request(dssdev
, channel
, reqdata
, reqlen
);
3451 r
= dsi_vc_send_bta_sync(dssdev
, channel
);
3455 r
= dsi_vc_read_rx_fifo(dsidev
, channel
, buf
, buflen
,
3456 DSS_DSI_CONTENT_GENERIC
);
3468 int dsi_vc_generic_read_0(struct omap_dss_device
*dssdev
, int channel
, u8
*buf
,
3473 r
= dsi_vc_generic_read(dssdev
, channel
, NULL
, 0, buf
, buflen
);
3475 DSSERR("dsi_vc_generic_read_0(ch %d) failed\n", channel
);
3481 EXPORT_SYMBOL(dsi_vc_generic_read_0
);
3483 int dsi_vc_generic_read_1(struct omap_dss_device
*dssdev
, int channel
, u8 param
,
3484 u8
*buf
, int buflen
)
3488 r
= dsi_vc_generic_read(dssdev
, channel
, ¶m
, 1, buf
, buflen
);
3490 DSSERR("dsi_vc_generic_read_1(ch %d) failed\n", channel
);
3496 EXPORT_SYMBOL(dsi_vc_generic_read_1
);
3498 int dsi_vc_generic_read_2(struct omap_dss_device
*dssdev
, int channel
,
3499 u8 param1
, u8 param2
, u8
*buf
, int buflen
)
3504 reqdata
[0] = param1
;
3505 reqdata
[1] = param2
;
3507 r
= dsi_vc_generic_read(dssdev
, channel
, reqdata
, 2, buf
, buflen
);
3509 DSSERR("dsi_vc_generic_read_2(ch %d) failed\n", channel
);
3515 EXPORT_SYMBOL(dsi_vc_generic_read_2
);
3517 int dsi_vc_set_max_rx_packet_size(struct omap_dss_device
*dssdev
, int channel
,
3520 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3522 return dsi_vc_send_short(dsidev
, channel
,
3523 MIPI_DSI_SET_MAXIMUM_RETURN_PACKET_SIZE
, len
, 0);
3525 EXPORT_SYMBOL(dsi_vc_set_max_rx_packet_size
);
3527 static int dsi_enter_ulps(struct platform_device
*dsidev
)
3529 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3530 DECLARE_COMPLETION_ONSTACK(completion
);
3536 WARN_ON(!dsi_bus_is_locked(dsidev
));
3538 WARN_ON(dsi
->ulps_enabled
);
3540 if (dsi
->ulps_enabled
)
3543 /* DDR_CLK_ALWAYS_ON */
3544 if (REG_GET(dsidev
, DSI_CLK_CTRL
, 13, 13)) {
3545 dsi_if_enable(dsidev
, 0);
3546 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, 0, 13, 13);
3547 dsi_if_enable(dsidev
, 1);
3550 dsi_sync_vc(dsidev
, 0);
3551 dsi_sync_vc(dsidev
, 1);
3552 dsi_sync_vc(dsidev
, 2);
3553 dsi_sync_vc(dsidev
, 3);
3555 dsi_force_tx_stop_mode_io(dsidev
);
3557 dsi_vc_enable(dsidev
, 0, false);
3558 dsi_vc_enable(dsidev
, 1, false);
3559 dsi_vc_enable(dsidev
, 2, false);
3560 dsi_vc_enable(dsidev
, 3, false);
3562 if (REG_GET(dsidev
, DSI_COMPLEXIO_CFG2
, 16, 16)) { /* HS_BUSY */
3563 DSSERR("HS busy when enabling ULPS\n");
3567 if (REG_GET(dsidev
, DSI_COMPLEXIO_CFG2
, 17, 17)) { /* LP_BUSY */
3568 DSSERR("LP busy when enabling ULPS\n");
3572 r
= dsi_register_isr_cio(dsidev
, dsi_completion_handler
, &completion
,
3573 DSI_CIO_IRQ_ULPSACTIVENOT_ALL0
);
3579 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
3580 if (dsi
->lanes
[i
].function
== DSI_LANE_UNUSED
)
3584 /* Assert TxRequestEsc for data lanes and TxUlpsClk for clk lane */
3585 /* LANEx_ULPS_SIG2 */
3586 REG_FLD_MOD(dsidev
, DSI_COMPLEXIO_CFG2
, mask
, 9, 5);
3588 /* flush posted write and wait for SCP interface to finish the write */
3589 dsi_read_reg(dsidev
, DSI_COMPLEXIO_CFG2
);
3591 if (wait_for_completion_timeout(&completion
,
3592 msecs_to_jiffies(1000)) == 0) {
3593 DSSERR("ULPS enable timeout\n");
3598 dsi_unregister_isr_cio(dsidev
, dsi_completion_handler
, &completion
,
3599 DSI_CIO_IRQ_ULPSACTIVENOT_ALL0
);
3601 /* Reset LANEx_ULPS_SIG2 */
3602 REG_FLD_MOD(dsidev
, DSI_COMPLEXIO_CFG2
, 0, 9, 5);
3604 /* flush posted write and wait for SCP interface to finish the write */
3605 dsi_read_reg(dsidev
, DSI_COMPLEXIO_CFG2
);
3607 dsi_cio_power(dsidev
, DSI_COMPLEXIO_POWER_ULPS
);
3609 dsi_if_enable(dsidev
, false);
3611 dsi
->ulps_enabled
= true;
3616 dsi_unregister_isr_cio(dsidev
, dsi_completion_handler
, &completion
,
3617 DSI_CIO_IRQ_ULPSACTIVENOT_ALL0
);
3621 static void dsi_set_lp_rx_timeout(struct platform_device
*dsidev
,
3622 unsigned ticks
, bool x4
, bool x16
)
3625 unsigned long total_ticks
;
3628 BUG_ON(ticks
> 0x1fff);
3630 /* ticks in DSI_FCK */
3631 fck
= dsi_fclk_rate(dsidev
);
3633 r
= dsi_read_reg(dsidev
, DSI_TIMING2
);
3634 r
= FLD_MOD(r
, 1, 15, 15); /* LP_RX_TO */
3635 r
= FLD_MOD(r
, x16
? 1 : 0, 14, 14); /* LP_RX_TO_X16 */
3636 r
= FLD_MOD(r
, x4
? 1 : 0, 13, 13); /* LP_RX_TO_X4 */
3637 r
= FLD_MOD(r
, ticks
, 12, 0); /* LP_RX_COUNTER */
3638 dsi_write_reg(dsidev
, DSI_TIMING2
, r
);
3640 total_ticks
= ticks
* (x16
? 16 : 1) * (x4
? 4 : 1);
3642 DSSDBG("LP_RX_TO %lu ticks (%#x%s%s) = %lu ns\n",
3644 ticks
, x4
? " x4" : "", x16
? " x16" : "",
3645 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
3648 static void dsi_set_ta_timeout(struct platform_device
*dsidev
, unsigned ticks
,
3652 unsigned long total_ticks
;
3655 BUG_ON(ticks
> 0x1fff);
3657 /* ticks in DSI_FCK */
3658 fck
= dsi_fclk_rate(dsidev
);
3660 r
= dsi_read_reg(dsidev
, DSI_TIMING1
);
3661 r
= FLD_MOD(r
, 1, 31, 31); /* TA_TO */
3662 r
= FLD_MOD(r
, x16
? 1 : 0, 30, 30); /* TA_TO_X16 */
3663 r
= FLD_MOD(r
, x8
? 1 : 0, 29, 29); /* TA_TO_X8 */
3664 r
= FLD_MOD(r
, ticks
, 28, 16); /* TA_TO_COUNTER */
3665 dsi_write_reg(dsidev
, DSI_TIMING1
, r
);
3667 total_ticks
= ticks
* (x16
? 16 : 1) * (x8
? 8 : 1);
3669 DSSDBG("TA_TO %lu ticks (%#x%s%s) = %lu ns\n",
3671 ticks
, x8
? " x8" : "", x16
? " x16" : "",
3672 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
3675 static void dsi_set_stop_state_counter(struct platform_device
*dsidev
,
3676 unsigned ticks
, bool x4
, bool x16
)
3679 unsigned long total_ticks
;
3682 BUG_ON(ticks
> 0x1fff);
3684 /* ticks in DSI_FCK */
3685 fck
= dsi_fclk_rate(dsidev
);
3687 r
= dsi_read_reg(dsidev
, DSI_TIMING1
);
3688 r
= FLD_MOD(r
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
3689 r
= FLD_MOD(r
, x16
? 1 : 0, 14, 14); /* STOP_STATE_X16_IO */
3690 r
= FLD_MOD(r
, x4
? 1 : 0, 13, 13); /* STOP_STATE_X4_IO */
3691 r
= FLD_MOD(r
, ticks
, 12, 0); /* STOP_STATE_COUNTER_IO */
3692 dsi_write_reg(dsidev
, DSI_TIMING1
, r
);
3694 total_ticks
= ticks
* (x16
? 16 : 1) * (x4
? 4 : 1);
3696 DSSDBG("STOP_STATE_COUNTER %lu ticks (%#x%s%s) = %lu ns\n",
3698 ticks
, x4
? " x4" : "", x16
? " x16" : "",
3699 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
3702 static void dsi_set_hs_tx_timeout(struct platform_device
*dsidev
,
3703 unsigned ticks
, bool x4
, bool x16
)
3706 unsigned long total_ticks
;
3709 BUG_ON(ticks
> 0x1fff);
3711 /* ticks in TxByteClkHS */
3712 fck
= dsi_get_txbyteclkhs(dsidev
);
3714 r
= dsi_read_reg(dsidev
, DSI_TIMING2
);
3715 r
= FLD_MOD(r
, 1, 31, 31); /* HS_TX_TO */
3716 r
= FLD_MOD(r
, x16
? 1 : 0, 30, 30); /* HS_TX_TO_X16 */
3717 r
= FLD_MOD(r
, x4
? 1 : 0, 29, 29); /* HS_TX_TO_X8 (4 really) */
3718 r
= FLD_MOD(r
, ticks
, 28, 16); /* HS_TX_TO_COUNTER */
3719 dsi_write_reg(dsidev
, DSI_TIMING2
, r
);
3721 total_ticks
= ticks
* (x16
? 16 : 1) * (x4
? 4 : 1);
3723 DSSDBG("HS_TX_TO %lu ticks (%#x%s%s) = %lu ns\n",
3725 ticks
, x4
? " x4" : "", x16
? " x16" : "",
3726 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
3729 static void dsi_config_vp_num_line_buffers(struct omap_dss_device
*dssdev
)
3731 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3732 int num_line_buffers
;
3734 if (dssdev
->panel
.dsi_mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
3735 int bpp
= dsi_get_pixel_size(dssdev
->panel
.dsi_pix_fmt
);
3736 unsigned line_buf_size
= dsi_get_line_buf_size(dsidev
);
3737 struct omap_video_timings
*timings
= &dssdev
->panel
.timings
;
3739 * Don't use line buffers if width is greater than the video
3740 * port's line buffer size
3742 if (line_buf_size
<= timings
->x_res
* bpp
/ 8)
3743 num_line_buffers
= 0;
3745 num_line_buffers
= 2;
3747 /* Use maximum number of line buffers in command mode */
3748 num_line_buffers
= 2;
3752 REG_FLD_MOD(dsidev
, DSI_CTRL
, num_line_buffers
, 13, 12);
3755 static void dsi_config_vp_sync_events(struct omap_dss_device
*dssdev
)
3757 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3758 int de_pol
= dssdev
->panel
.dsi_vm_data
.vp_de_pol
;
3759 int hsync_pol
= dssdev
->panel
.dsi_vm_data
.vp_hsync_pol
;
3760 int vsync_pol
= dssdev
->panel
.dsi_vm_data
.vp_vsync_pol
;
3761 bool vsync_end
= dssdev
->panel
.dsi_vm_data
.vp_vsync_end
;
3762 bool hsync_end
= dssdev
->panel
.dsi_vm_data
.vp_hsync_end
;
3765 r
= dsi_read_reg(dsidev
, DSI_CTRL
);
3766 r
= FLD_MOD(r
, de_pol
, 9, 9); /* VP_DE_POL */
3767 r
= FLD_MOD(r
, hsync_pol
, 10, 10); /* VP_HSYNC_POL */
3768 r
= FLD_MOD(r
, vsync_pol
, 11, 11); /* VP_VSYNC_POL */
3769 r
= FLD_MOD(r
, 1, 15, 15); /* VP_VSYNC_START */
3770 r
= FLD_MOD(r
, vsync_end
, 16, 16); /* VP_VSYNC_END */
3771 r
= FLD_MOD(r
, 1, 17, 17); /* VP_HSYNC_START */
3772 r
= FLD_MOD(r
, hsync_end
, 18, 18); /* VP_HSYNC_END */
3773 dsi_write_reg(dsidev
, DSI_CTRL
, r
);
3776 static void dsi_config_blanking_modes(struct omap_dss_device
*dssdev
)
3778 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3779 int blanking_mode
= dssdev
->panel
.dsi_vm_data
.blanking_mode
;
3780 int hfp_blanking_mode
= dssdev
->panel
.dsi_vm_data
.hfp_blanking_mode
;
3781 int hbp_blanking_mode
= dssdev
->panel
.dsi_vm_data
.hbp_blanking_mode
;
3782 int hsa_blanking_mode
= dssdev
->panel
.dsi_vm_data
.hsa_blanking_mode
;
3786 * 0 = TX FIFO packets sent or LPS in corresponding blanking periods
3787 * 1 = Long blanking packets are sent in corresponding blanking periods
3789 r
= dsi_read_reg(dsidev
, DSI_CTRL
);
3790 r
= FLD_MOD(r
, blanking_mode
, 20, 20); /* BLANKING_MODE */
3791 r
= FLD_MOD(r
, hfp_blanking_mode
, 21, 21); /* HFP_BLANKING */
3792 r
= FLD_MOD(r
, hbp_blanking_mode
, 22, 22); /* HBP_BLANKING */
3793 r
= FLD_MOD(r
, hsa_blanking_mode
, 23, 23); /* HSA_BLANKING */
3794 dsi_write_reg(dsidev
, DSI_CTRL
, r
);
3797 static int dsi_proto_config(struct omap_dss_device
*dssdev
)
3799 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3803 dsi_config_tx_fifo(dsidev
, DSI_FIFO_SIZE_32
,
3808 dsi_config_rx_fifo(dsidev
, DSI_FIFO_SIZE_32
,
3813 /* XXX what values for the timeouts? */
3814 dsi_set_stop_state_counter(dsidev
, 0x1000, false, false);
3815 dsi_set_ta_timeout(dsidev
, 0x1fff, true, true);
3816 dsi_set_lp_rx_timeout(dsidev
, 0x1fff, true, true);
3817 dsi_set_hs_tx_timeout(dsidev
, 0x1fff, true, true);
3819 switch (dsi_get_pixel_size(dssdev
->panel
.dsi_pix_fmt
)) {
3833 r
= dsi_read_reg(dsidev
, DSI_CTRL
);
3834 r
= FLD_MOD(r
, 1, 1, 1); /* CS_RX_EN */
3835 r
= FLD_MOD(r
, 1, 2, 2); /* ECC_RX_EN */
3836 r
= FLD_MOD(r
, 1, 3, 3); /* TX_FIFO_ARBITRATION */
3837 r
= FLD_MOD(r
, 1, 4, 4); /* VP_CLK_RATIO, always 1, see errata*/
3838 r
= FLD_MOD(r
, buswidth
, 7, 6); /* VP_DATA_BUS_WIDTH */
3839 r
= FLD_MOD(r
, 0, 8, 8); /* VP_CLK_POL */
3840 r
= FLD_MOD(r
, 1, 14, 14); /* TRIGGER_RESET_MODE */
3841 r
= FLD_MOD(r
, 1, 19, 19); /* EOT_ENABLE */
3842 if (!dss_has_feature(FEAT_DSI_DCS_CMD_CONFIG_VC
)) {
3843 r
= FLD_MOD(r
, 1, 24, 24); /* DCS_CMD_ENABLE */
3844 /* DCS_CMD_CODE, 1=start, 0=continue */
3845 r
= FLD_MOD(r
, 0, 25, 25);
3848 dsi_write_reg(dsidev
, DSI_CTRL
, r
);
3850 dsi_config_vp_num_line_buffers(dssdev
);
3852 if (dssdev
->panel
.dsi_mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
3853 dsi_config_vp_sync_events(dssdev
);
3854 dsi_config_blanking_modes(dssdev
);
3857 dsi_vc_initial_config(dsidev
, 0);
3858 dsi_vc_initial_config(dsidev
, 1);
3859 dsi_vc_initial_config(dsidev
, 2);
3860 dsi_vc_initial_config(dsidev
, 3);
3865 static void dsi_proto_timings(struct omap_dss_device
*dssdev
)
3867 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3868 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3869 unsigned tlpx
, tclk_zero
, tclk_prepare
, tclk_trail
;
3870 unsigned tclk_pre
, tclk_post
;
3871 unsigned ths_prepare
, ths_prepare_ths_zero
, ths_zero
;
3872 unsigned ths_trail
, ths_exit
;
3873 unsigned ddr_clk_pre
, ddr_clk_post
;
3874 unsigned enter_hs_mode_lat
, exit_hs_mode_lat
;
3876 int ndl
= dsi
->num_lanes_used
- 1;
3879 r
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG0
);
3880 ths_prepare
= FLD_GET(r
, 31, 24);
3881 ths_prepare_ths_zero
= FLD_GET(r
, 23, 16);
3882 ths_zero
= ths_prepare_ths_zero
- ths_prepare
;
3883 ths_trail
= FLD_GET(r
, 15, 8);
3884 ths_exit
= FLD_GET(r
, 7, 0);
3886 r
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG1
);
3887 tlpx
= FLD_GET(r
, 22, 16) * 2;
3888 tclk_trail
= FLD_GET(r
, 15, 8);
3889 tclk_zero
= FLD_GET(r
, 7, 0);
3891 r
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG2
);
3892 tclk_prepare
= FLD_GET(r
, 7, 0);
3896 /* min 60ns + 52*UI */
3897 tclk_post
= ns2ddr(dsidev
, 60) + 26;
3899 ths_eot
= DIV_ROUND_UP(4, ndl
);
3901 ddr_clk_pre
= DIV_ROUND_UP(tclk_pre
+ tlpx
+ tclk_zero
+ tclk_prepare
,
3903 ddr_clk_post
= DIV_ROUND_UP(tclk_post
+ ths_trail
, 4) + ths_eot
;
3905 BUG_ON(ddr_clk_pre
== 0 || ddr_clk_pre
> 255);
3906 BUG_ON(ddr_clk_post
== 0 || ddr_clk_post
> 255);
3908 r
= dsi_read_reg(dsidev
, DSI_CLK_TIMING
);
3909 r
= FLD_MOD(r
, ddr_clk_pre
, 15, 8);
3910 r
= FLD_MOD(r
, ddr_clk_post
, 7, 0);
3911 dsi_write_reg(dsidev
, DSI_CLK_TIMING
, r
);
3913 DSSDBG("ddr_clk_pre %u, ddr_clk_post %u\n",
3917 enter_hs_mode_lat
= 1 + DIV_ROUND_UP(tlpx
, 4) +
3918 DIV_ROUND_UP(ths_prepare
, 4) +
3919 DIV_ROUND_UP(ths_zero
+ 3, 4);
3921 exit_hs_mode_lat
= DIV_ROUND_UP(ths_trail
+ ths_exit
, 4) + 1 + ths_eot
;
3923 r
= FLD_VAL(enter_hs_mode_lat
, 31, 16) |
3924 FLD_VAL(exit_hs_mode_lat
, 15, 0);
3925 dsi_write_reg(dsidev
, DSI_VM_TIMING7
, r
);
3927 DSSDBG("enter_hs_mode_lat %u, exit_hs_mode_lat %u\n",
3928 enter_hs_mode_lat
, exit_hs_mode_lat
);
3930 if (dssdev
->panel
.dsi_mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
3931 /* TODO: Implement a video mode check_timings function */
3932 int hsa
= dssdev
->panel
.dsi_vm_data
.hsa
;
3933 int hfp
= dssdev
->panel
.dsi_vm_data
.hfp
;
3934 int hbp
= dssdev
->panel
.dsi_vm_data
.hbp
;
3935 int vsa
= dssdev
->panel
.dsi_vm_data
.vsa
;
3936 int vfp
= dssdev
->panel
.dsi_vm_data
.vfp
;
3937 int vbp
= dssdev
->panel
.dsi_vm_data
.vbp
;
3938 int window_sync
= dssdev
->panel
.dsi_vm_data
.window_sync
;
3939 bool hsync_end
= dssdev
->panel
.dsi_vm_data
.vp_hsync_end
;
3940 struct omap_video_timings
*timings
= &dssdev
->panel
.timings
;
3941 int bpp
= dsi_get_pixel_size(dssdev
->panel
.dsi_pix_fmt
);
3942 int tl
, t_he
, width_bytes
;
3945 ((hsa
== 0 && ndl
== 3) ? 1 : DIV_ROUND_UP(4, ndl
)) : 0;
3947 width_bytes
= DIV_ROUND_UP(timings
->x_res
* bpp
, 8);
3949 /* TL = t_HS + HSA + t_HE + HFP + ceil((WC + 6) / NDL) + HBP */
3950 tl
= DIV_ROUND_UP(4, ndl
) + (hsync_end
? hsa
: 0) + t_he
+ hfp
+
3951 DIV_ROUND_UP(width_bytes
+ 6, ndl
) + hbp
;
3953 DSSDBG("HBP: %d, HFP: %d, HSA: %d, TL: %d TXBYTECLKHS\n", hbp
,
3954 hfp
, hsync_end
? hsa
: 0, tl
);
3955 DSSDBG("VBP: %d, VFP: %d, VSA: %d, VACT: %d lines\n", vbp
, vfp
,
3956 vsa
, timings
->y_res
);
3958 r
= dsi_read_reg(dsidev
, DSI_VM_TIMING1
);
3959 r
= FLD_MOD(r
, hbp
, 11, 0); /* HBP */
3960 r
= FLD_MOD(r
, hfp
, 23, 12); /* HFP */
3961 r
= FLD_MOD(r
, hsync_end
? hsa
: 0, 31, 24); /* HSA */
3962 dsi_write_reg(dsidev
, DSI_VM_TIMING1
, r
);
3964 r
= dsi_read_reg(dsidev
, DSI_VM_TIMING2
);
3965 r
= FLD_MOD(r
, vbp
, 7, 0); /* VBP */
3966 r
= FLD_MOD(r
, vfp
, 15, 8); /* VFP */
3967 r
= FLD_MOD(r
, vsa
, 23, 16); /* VSA */
3968 r
= FLD_MOD(r
, window_sync
, 27, 24); /* WINDOW_SYNC */
3969 dsi_write_reg(dsidev
, DSI_VM_TIMING2
, r
);
3971 r
= dsi_read_reg(dsidev
, DSI_VM_TIMING3
);
3972 r
= FLD_MOD(r
, timings
->y_res
, 14, 0); /* VACT */
3973 r
= FLD_MOD(r
, tl
, 31, 16); /* TL */
3974 dsi_write_reg(dsidev
, DSI_VM_TIMING3
, r
);
3978 int dsi_enable_video_output(struct omap_dss_device
*dssdev
, int channel
)
3980 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3981 int bpp
= dsi_get_pixel_size(dssdev
->panel
.dsi_pix_fmt
);
3986 if (dssdev
->panel
.dsi_mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
3987 switch (dssdev
->panel
.dsi_pix_fmt
) {
3988 case OMAP_DSS_DSI_FMT_RGB888
:
3989 data_type
= MIPI_DSI_PACKED_PIXEL_STREAM_24
;
3991 case OMAP_DSS_DSI_FMT_RGB666
:
3992 data_type
= MIPI_DSI_PIXEL_STREAM_3BYTE_18
;
3994 case OMAP_DSS_DSI_FMT_RGB666_PACKED
:
3995 data_type
= MIPI_DSI_PACKED_PIXEL_STREAM_18
;
3997 case OMAP_DSS_DSI_FMT_RGB565
:
3998 data_type
= MIPI_DSI_PACKED_PIXEL_STREAM_16
;
4004 dsi_if_enable(dsidev
, false);
4005 dsi_vc_enable(dsidev
, channel
, false);
4007 /* MODE, 1 = video mode */
4008 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), 1, 4, 4);
4010 word_count
= DIV_ROUND_UP(dssdev
->panel
.timings
.x_res
* bpp
, 8);
4012 dsi_vc_write_long_header(dsidev
, channel
, data_type
,
4015 dsi_vc_enable(dsidev
, channel
, true);
4016 dsi_if_enable(dsidev
, true);
4019 r
= dss_mgr_enable(dssdev
->manager
);
4021 if (dssdev
->panel
.dsi_mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
4022 dsi_if_enable(dsidev
, false);
4023 dsi_vc_enable(dsidev
, channel
, false);
4031 EXPORT_SYMBOL(dsi_enable_video_output
);
4033 void dsi_disable_video_output(struct omap_dss_device
*dssdev
, int channel
)
4035 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4037 if (dssdev
->panel
.dsi_mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
4038 dsi_if_enable(dsidev
, false);
4039 dsi_vc_enable(dsidev
, channel
, false);
4041 /* MODE, 0 = command mode */
4042 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), 0, 4, 4);
4044 dsi_vc_enable(dsidev
, channel
, true);
4045 dsi_if_enable(dsidev
, true);
4048 dss_mgr_disable(dssdev
->manager
);
4050 EXPORT_SYMBOL(dsi_disable_video_output
);
4052 static void dsi_update_screen_dispc(struct omap_dss_device
*dssdev
,
4055 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4056 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4061 unsigned packet_payload
;
4062 unsigned packet_len
;
4065 const unsigned channel
= dsi
->update_channel
;
4066 const unsigned line_buf_size
= dsi_get_line_buf_size(dsidev
);
4068 DSSDBG("dsi_update_screen_dispc(%dx%d)\n", w
, h
);
4070 dsi_vc_config_source(dsidev
, channel
, DSI_VC_SOURCE_VP
);
4072 bytespp
= dsi_get_pixel_size(dssdev
->panel
.dsi_pix_fmt
) / 8;
4073 bytespl
= w
* bytespp
;
4074 bytespf
= bytespl
* h
;
4076 /* NOTE: packet_payload has to be equal to N * bytespl, where N is
4077 * number of lines in a packet. See errata about VP_CLK_RATIO */
4079 if (bytespf
< line_buf_size
)
4080 packet_payload
= bytespf
;
4082 packet_payload
= (line_buf_size
) / bytespl
* bytespl
;
4084 packet_len
= packet_payload
+ 1; /* 1 byte for DCS cmd */
4085 total_len
= (bytespf
/ packet_payload
) * packet_len
;
4087 if (bytespf
% packet_payload
)
4088 total_len
+= (bytespf
% packet_payload
) + 1;
4090 l
= FLD_VAL(total_len
, 23, 0); /* TE_SIZE */
4091 dsi_write_reg(dsidev
, DSI_VC_TE(channel
), l
);
4093 dsi_vc_write_long_header(dsidev
, channel
, MIPI_DSI_DCS_LONG_WRITE
,
4096 if (dsi
->te_enabled
)
4097 l
= FLD_MOD(l
, 1, 30, 30); /* TE_EN */
4099 l
= FLD_MOD(l
, 1, 31, 31); /* TE_START */
4100 dsi_write_reg(dsidev
, DSI_VC_TE(channel
), l
);
4102 /* We put SIDLEMODE to no-idle for the duration of the transfer,
4103 * because DSS interrupts are not capable of waking up the CPU and the
4104 * framedone interrupt could be delayed for quite a long time. I think
4105 * the same goes for any DSS interrupts, but for some reason I have not
4106 * seen the problem anywhere else than here.
4108 dispc_disable_sidle();
4110 dsi_perf_mark_start(dsidev
);
4112 r
= schedule_delayed_work(&dsi
->framedone_timeout_work
,
4113 msecs_to_jiffies(250));
4116 dss_mgr_start_update(dssdev
->manager
);
4118 if (dsi
->te_enabled
) {
4119 /* disable LP_RX_TO, so that we can receive TE. Time to wait
4120 * for TE is longer than the timer allows */
4121 REG_FLD_MOD(dsidev
, DSI_TIMING2
, 0, 15, 15); /* LP_RX_TO */
4123 dsi_vc_send_bta(dsidev
, channel
);
4125 #ifdef DSI_CATCH_MISSING_TE
4126 mod_timer(&dsi
->te_timer
, jiffies
+ msecs_to_jiffies(250));
4131 #ifdef DSI_CATCH_MISSING_TE
4132 static void dsi_te_timeout(unsigned long arg
)
4134 DSSERR("TE not received for 250ms!\n");
4138 static void dsi_handle_framedone(struct platform_device
*dsidev
, int error
)
4140 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4142 /* SIDLEMODE back to smart-idle */
4143 dispc_enable_sidle();
4145 if (dsi
->te_enabled
) {
4146 /* enable LP_RX_TO again after the TE */
4147 REG_FLD_MOD(dsidev
, DSI_TIMING2
, 1, 15, 15); /* LP_RX_TO */
4150 dsi
->framedone_callback(error
, dsi
->framedone_data
);
4153 dsi_perf_show(dsidev
, "DISPC");
4156 static void dsi_framedone_timeout_work_callback(struct work_struct
*work
)
4158 struct dsi_data
*dsi
= container_of(work
, struct dsi_data
,
4159 framedone_timeout_work
.work
);
4160 /* XXX While extremely unlikely, we could get FRAMEDONE interrupt after
4161 * 250ms which would conflict with this timeout work. What should be
4162 * done is first cancel the transfer on the HW, and then cancel the
4163 * possibly scheduled framedone work. However, cancelling the transfer
4164 * on the HW is buggy, and would probably require resetting the whole
4167 DSSERR("Framedone not received for 250ms!\n");
4169 dsi_handle_framedone(dsi
->pdev
, -ETIMEDOUT
);
4172 static void dsi_framedone_irq_callback(void *data
, u32 mask
)
4174 struct omap_dss_device
*dssdev
= (struct omap_dss_device
*) data
;
4175 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4176 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4178 /* Note: We get FRAMEDONE when DISPC has finished sending pixels and
4179 * turns itself off. However, DSI still has the pixels in its buffers,
4180 * and is sending the data.
4183 __cancel_delayed_work(&dsi
->framedone_timeout_work
);
4185 dsi_handle_framedone(dsidev
, 0);
4187 #ifdef CONFIG_OMAP2_DSS_FAKE_VSYNC
4188 dispc_fake_vsync_irq();
4192 int omap_dsi_update(struct omap_dss_device
*dssdev
, int channel
,
4193 void (*callback
)(int, void *), void *data
)
4195 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4196 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4199 dsi_perf_mark_setup(dsidev
);
4201 dsi
->update_channel
= channel
;
4203 dsi
->framedone_callback
= callback
;
4204 dsi
->framedone_data
= data
;
4206 dssdev
->driver
->get_resolution(dssdev
, &dw
, &dh
);
4209 dsi
->update_bytes
= dw
* dh
*
4210 dsi_get_pixel_size(dssdev
->panel
.dsi_pix_fmt
) / 8;
4212 dsi_update_screen_dispc(dssdev
, dw
, dh
);
4216 EXPORT_SYMBOL(omap_dsi_update
);
4220 static int dsi_display_init_dispc(struct omap_dss_device
*dssdev
)
4224 if (dssdev
->panel
.dsi_mode
== OMAP_DSS_DSI_CMD_MODE
) {
4227 struct omap_video_timings timings
= {
4236 dssdev
->driver
->get_resolution(dssdev
, &dw
, &dh
);
4240 irq
= dssdev
->manager
->id
== OMAP_DSS_CHANNEL_LCD
?
4241 DISPC_IRQ_FRAMEDONE
: DISPC_IRQ_FRAMEDONE2
;
4243 r
= omap_dispc_register_isr(dsi_framedone_irq_callback
,
4244 (void *) dssdev
, irq
);
4246 DSSERR("can't get FRAMEDONE irq\n");
4250 dispc_mgr_enable_stallmode(dssdev
->manager
->id
, true);
4251 dispc_mgr_enable_fifohandcheck(dssdev
->manager
->id
, 1);
4253 dispc_mgr_set_lcd_timings(dssdev
->manager
->id
, &timings
);
4255 dispc_mgr_enable_stallmode(dssdev
->manager
->id
, false);
4256 dispc_mgr_enable_fifohandcheck(dssdev
->manager
->id
, 0);
4258 dispc_mgr_set_lcd_timings(dssdev
->manager
->id
,
4259 &dssdev
->panel
.timings
);
4262 dispc_mgr_set_lcd_display_type(dssdev
->manager
->id
,
4263 OMAP_DSS_LCD_DISPLAY_TFT
);
4264 dispc_mgr_set_tft_data_lines(dssdev
->manager
->id
,
4265 dsi_get_pixel_size(dssdev
->panel
.dsi_pix_fmt
));
4269 static void dsi_display_uninit_dispc(struct omap_dss_device
*dssdev
)
4271 if (dssdev
->panel
.dsi_mode
== OMAP_DSS_DSI_CMD_MODE
) {
4274 irq
= dssdev
->manager
->id
== OMAP_DSS_CHANNEL_LCD
?
4275 DISPC_IRQ_FRAMEDONE
: DISPC_IRQ_FRAMEDONE2
;
4277 omap_dispc_unregister_isr(dsi_framedone_irq_callback
,
4278 (void *) dssdev
, irq
);
4282 static int dsi_configure_dsi_clocks(struct omap_dss_device
*dssdev
)
4284 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4285 struct dsi_clock_info cinfo
;
4288 /* we always use DSS_CLK_SYSCK as input clock */
4289 cinfo
.use_sys_clk
= true;
4290 cinfo
.regn
= dssdev
->clocks
.dsi
.regn
;
4291 cinfo
.regm
= dssdev
->clocks
.dsi
.regm
;
4292 cinfo
.regm_dispc
= dssdev
->clocks
.dsi
.regm_dispc
;
4293 cinfo
.regm_dsi
= dssdev
->clocks
.dsi
.regm_dsi
;
4294 r
= dsi_calc_clock_rates(dssdev
, &cinfo
);
4296 DSSERR("Failed to calc dsi clocks\n");
4300 r
= dsi_pll_set_clock_div(dsidev
, &cinfo
);
4302 DSSERR("Failed to set dsi clocks\n");
4309 static int dsi_configure_dispc_clocks(struct omap_dss_device
*dssdev
)
4311 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4312 struct dispc_clock_info dispc_cinfo
;
4314 unsigned long long fck
;
4316 fck
= dsi_get_pll_hsdiv_dispc_rate(dsidev
);
4318 dispc_cinfo
.lck_div
= dssdev
->clocks
.dispc
.channel
.lck_div
;
4319 dispc_cinfo
.pck_div
= dssdev
->clocks
.dispc
.channel
.pck_div
;
4321 r
= dispc_calc_clock_rates(fck
, &dispc_cinfo
);
4323 DSSERR("Failed to calc dispc clocks\n");
4327 r
= dispc_mgr_set_clock_div(dssdev
->manager
->id
, &dispc_cinfo
);
4329 DSSERR("Failed to set dispc clocks\n");
4336 static int dsi_display_init_dsi(struct omap_dss_device
*dssdev
)
4338 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4339 int dsi_module
= dsi_get_dsidev_id(dsidev
);
4342 r
= dsi_parse_lane_config(dssdev
);
4344 DSSERR("illegal lane config");
4348 r
= dsi_pll_init(dsidev
, true, true);
4352 r
= dsi_configure_dsi_clocks(dssdev
);
4356 dss_select_dispc_clk_source(dssdev
->clocks
.dispc
.dispc_fclk_src
);
4357 dss_select_dsi_clk_source(dsi_module
, dssdev
->clocks
.dsi
.dsi_fclk_src
);
4358 dss_select_lcd_clk_source(dssdev
->manager
->id
,
4359 dssdev
->clocks
.dispc
.channel
.lcd_clk_src
);
4363 r
= dsi_configure_dispc_clocks(dssdev
);
4367 r
= dsi_cio_init(dssdev
);
4371 _dsi_print_reset_status(dsidev
);
4373 dsi_proto_timings(dssdev
);
4374 dsi_set_lp_clk_divisor(dssdev
);
4377 _dsi_print_reset_status(dsidev
);
4379 r
= dsi_proto_config(dssdev
);
4383 /* enable interface */
4384 dsi_vc_enable(dsidev
, 0, 1);
4385 dsi_vc_enable(dsidev
, 1, 1);
4386 dsi_vc_enable(dsidev
, 2, 1);
4387 dsi_vc_enable(dsidev
, 3, 1);
4388 dsi_if_enable(dsidev
, 1);
4389 dsi_force_tx_stop_mode_io(dsidev
);
4393 dsi_cio_uninit(dssdev
);
4395 dss_select_dispc_clk_source(OMAP_DSS_CLK_SRC_FCK
);
4396 dss_select_dsi_clk_source(dsi_module
, OMAP_DSS_CLK_SRC_FCK
);
4397 dss_select_lcd_clk_source(dssdev
->manager
->id
, OMAP_DSS_CLK_SRC_FCK
);
4400 dsi_pll_uninit(dsidev
, true);
4405 static void dsi_display_uninit_dsi(struct omap_dss_device
*dssdev
,
4406 bool disconnect_lanes
, bool enter_ulps
)
4408 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4409 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4410 int dsi_module
= dsi_get_dsidev_id(dsidev
);
4412 if (enter_ulps
&& !dsi
->ulps_enabled
)
4413 dsi_enter_ulps(dsidev
);
4415 /* disable interface */
4416 dsi_if_enable(dsidev
, 0);
4417 dsi_vc_enable(dsidev
, 0, 0);
4418 dsi_vc_enable(dsidev
, 1, 0);
4419 dsi_vc_enable(dsidev
, 2, 0);
4420 dsi_vc_enable(dsidev
, 3, 0);
4422 dss_select_dispc_clk_source(OMAP_DSS_CLK_SRC_FCK
);
4423 dss_select_dsi_clk_source(dsi_module
, OMAP_DSS_CLK_SRC_FCK
);
4424 dss_select_lcd_clk_source(dssdev
->manager
->id
, OMAP_DSS_CLK_SRC_FCK
);
4425 dsi_cio_uninit(dssdev
);
4426 dsi_pll_uninit(dsidev
, disconnect_lanes
);
4429 int omapdss_dsi_display_enable(struct omap_dss_device
*dssdev
)
4431 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4432 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4435 DSSDBG("dsi_display_enable\n");
4437 WARN_ON(!dsi_bus_is_locked(dsidev
));
4439 mutex_lock(&dsi
->lock
);
4441 if (dssdev
->manager
== NULL
) {
4442 DSSERR("failed to enable display: no manager\n");
4447 r
= omap_dss_start_device(dssdev
);
4449 DSSERR("failed to start device\n");
4453 r
= dsi_runtime_get(dsidev
);
4457 dsi_enable_pll_clock(dsidev
, 1);
4459 _dsi_initialize_irq(dsidev
);
4461 r
= dsi_display_init_dispc(dssdev
);
4463 goto err_init_dispc
;
4465 r
= dsi_display_init_dsi(dssdev
);
4469 mutex_unlock(&dsi
->lock
);
4474 dsi_display_uninit_dispc(dssdev
);
4476 dsi_enable_pll_clock(dsidev
, 0);
4477 dsi_runtime_put(dsidev
);
4479 omap_dss_stop_device(dssdev
);
4481 mutex_unlock(&dsi
->lock
);
4482 DSSDBG("dsi_display_enable FAILED\n");
4485 EXPORT_SYMBOL(omapdss_dsi_display_enable
);
4487 void omapdss_dsi_display_disable(struct omap_dss_device
*dssdev
,
4488 bool disconnect_lanes
, bool enter_ulps
)
4490 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4491 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4493 DSSDBG("dsi_display_disable\n");
4495 WARN_ON(!dsi_bus_is_locked(dsidev
));
4497 mutex_lock(&dsi
->lock
);
4499 dsi_sync_vc(dsidev
, 0);
4500 dsi_sync_vc(dsidev
, 1);
4501 dsi_sync_vc(dsidev
, 2);
4502 dsi_sync_vc(dsidev
, 3);
4504 dsi_display_uninit_dispc(dssdev
);
4506 dsi_display_uninit_dsi(dssdev
, disconnect_lanes
, enter_ulps
);
4508 dsi_runtime_put(dsidev
);
4509 dsi_enable_pll_clock(dsidev
, 0);
4511 omap_dss_stop_device(dssdev
);
4513 mutex_unlock(&dsi
->lock
);
4515 EXPORT_SYMBOL(omapdss_dsi_display_disable
);
4517 int omapdss_dsi_enable_te(struct omap_dss_device
*dssdev
, bool enable
)
4519 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4520 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4522 dsi
->te_enabled
= enable
;
4525 EXPORT_SYMBOL(omapdss_dsi_enable_te
);
4527 void dsi_get_overlay_fifo_thresholds(enum omap_plane plane
,
4528 u32 fifo_size
, u32 burst_size
,
4529 u32
*fifo_low
, u32
*fifo_high
)
4531 *fifo_high
= fifo_size
- burst_size
;
4532 *fifo_low
= fifo_size
- burst_size
* 2;
4535 int dsi_init_display(struct omap_dss_device
*dssdev
)
4537 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4538 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4540 DSSDBG("DSI init\n");
4542 if (dssdev
->panel
.dsi_mode
== OMAP_DSS_DSI_CMD_MODE
) {
4543 dssdev
->caps
= OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE
|
4544 OMAP_DSS_DISPLAY_CAP_TEAR_ELIM
;
4547 if (dsi
->vdds_dsi_reg
== NULL
) {
4548 struct regulator
*vdds_dsi
;
4550 vdds_dsi
= regulator_get(&dsi
->pdev
->dev
, "vdds_dsi");
4552 if (IS_ERR(vdds_dsi
)) {
4553 DSSERR("can't get VDDS_DSI regulator\n");
4554 return PTR_ERR(vdds_dsi
);
4557 dsi
->vdds_dsi_reg
= vdds_dsi
;
4563 int omap_dsi_request_vc(struct omap_dss_device
*dssdev
, int *channel
)
4565 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4566 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4569 for (i
= 0; i
< ARRAY_SIZE(dsi
->vc
); i
++) {
4570 if (!dsi
->vc
[i
].dssdev
) {
4571 dsi
->vc
[i
].dssdev
= dssdev
;
4577 DSSERR("cannot get VC for display %s", dssdev
->name
);
4580 EXPORT_SYMBOL(omap_dsi_request_vc
);
4582 int omap_dsi_set_vc_id(struct omap_dss_device
*dssdev
, int channel
, int vc_id
)
4584 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4585 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4587 if (vc_id
< 0 || vc_id
> 3) {
4588 DSSERR("VC ID out of range\n");
4592 if (channel
< 0 || channel
> 3) {
4593 DSSERR("Virtual Channel out of range\n");
4597 if (dsi
->vc
[channel
].dssdev
!= dssdev
) {
4598 DSSERR("Virtual Channel not allocated to display %s\n",
4603 dsi
->vc
[channel
].vc_id
= vc_id
;
4607 EXPORT_SYMBOL(omap_dsi_set_vc_id
);
4609 void omap_dsi_release_vc(struct omap_dss_device
*dssdev
, int channel
)
4611 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4612 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4614 if ((channel
>= 0 && channel
<= 3) &&
4615 dsi
->vc
[channel
].dssdev
== dssdev
) {
4616 dsi
->vc
[channel
].dssdev
= NULL
;
4617 dsi
->vc
[channel
].vc_id
= 0;
4620 EXPORT_SYMBOL(omap_dsi_release_vc
);
4622 void dsi_wait_pll_hsdiv_dispc_active(struct platform_device
*dsidev
)
4624 if (wait_for_bit_change(dsidev
, DSI_PLL_STATUS
, 7, 1) != 1)
4625 DSSERR("%s (%s) not active\n",
4626 dss_get_generic_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC
),
4627 dss_feat_get_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC
));
4630 void dsi_wait_pll_hsdiv_dsi_active(struct platform_device
*dsidev
)
4632 if (wait_for_bit_change(dsidev
, DSI_PLL_STATUS
, 8, 1) != 1)
4633 DSSERR("%s (%s) not active\n",
4634 dss_get_generic_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI
),
4635 dss_feat_get_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI
));
4638 static void dsi_calc_clock_param_ranges(struct platform_device
*dsidev
)
4640 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4642 dsi
->regn_max
= dss_feat_get_param_max(FEAT_PARAM_DSIPLL_REGN
);
4643 dsi
->regm_max
= dss_feat_get_param_max(FEAT_PARAM_DSIPLL_REGM
);
4644 dsi
->regm_dispc_max
=
4645 dss_feat_get_param_max(FEAT_PARAM_DSIPLL_REGM_DISPC
);
4646 dsi
->regm_dsi_max
= dss_feat_get_param_max(FEAT_PARAM_DSIPLL_REGM_DSI
);
4647 dsi
->fint_min
= dss_feat_get_param_min(FEAT_PARAM_DSIPLL_FINT
);
4648 dsi
->fint_max
= dss_feat_get_param_max(FEAT_PARAM_DSIPLL_FINT
);
4649 dsi
->lpdiv_max
= dss_feat_get_param_max(FEAT_PARAM_DSIPLL_LPDIV
);
4652 static int dsi_get_clocks(struct platform_device
*dsidev
)
4654 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4657 clk
= clk_get(&dsidev
->dev
, "fck");
4659 DSSERR("can't get fck\n");
4660 return PTR_ERR(clk
);
4665 clk
= clk_get(&dsidev
->dev
, "sys_clk");
4667 DSSERR("can't get sys_clk\n");
4668 clk_put(dsi
->dss_clk
);
4669 dsi
->dss_clk
= NULL
;
4670 return PTR_ERR(clk
);
4678 static void dsi_put_clocks(struct platform_device
*dsidev
)
4680 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4683 clk_put(dsi
->dss_clk
);
4685 clk_put(dsi
->sys_clk
);
4688 /* DSI1 HW IP initialisation */
4689 static int omap_dsihw_probe(struct platform_device
*dsidev
)
4691 struct omap_display_platform_data
*dss_plat_data
;
4692 struct omap_dss_board_info
*board_info
;
4694 int r
, i
, dsi_module
= dsi_get_dsidev_id(dsidev
);
4695 struct resource
*dsi_mem
;
4696 struct dsi_data
*dsi
;
4698 dsi
= kzalloc(sizeof(*dsi
), GFP_KERNEL
);
4705 dsi_pdev_map
[dsi_module
] = dsidev
;
4706 dev_set_drvdata(&dsidev
->dev
, dsi
);
4708 dss_plat_data
= dsidev
->dev
.platform_data
;
4709 board_info
= dss_plat_data
->board_data
;
4710 dsi
->enable_pads
= board_info
->dsi_enable_pads
;
4711 dsi
->disable_pads
= board_info
->dsi_disable_pads
;
4713 spin_lock_init(&dsi
->irq_lock
);
4714 spin_lock_init(&dsi
->errors_lock
);
4717 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
4718 spin_lock_init(&dsi
->irq_stats_lock
);
4719 dsi
->irq_stats
.last_reset
= jiffies
;
4722 mutex_init(&dsi
->lock
);
4723 sema_init(&dsi
->bus_lock
, 1);
4725 r
= dsi_get_clocks(dsidev
);
4729 pm_runtime_enable(&dsidev
->dev
);
4731 INIT_DELAYED_WORK_DEFERRABLE(&dsi
->framedone_timeout_work
,
4732 dsi_framedone_timeout_work_callback
);
4734 #ifdef DSI_CATCH_MISSING_TE
4735 init_timer(&dsi
->te_timer
);
4736 dsi
->te_timer
.function
= dsi_te_timeout
;
4737 dsi
->te_timer
.data
= 0;
4739 dsi_mem
= platform_get_resource(dsi
->pdev
, IORESOURCE_MEM
, 0);
4741 DSSERR("can't get IORESOURCE_MEM DSI\n");
4745 dsi
->base
= ioremap(dsi_mem
->start
, resource_size(dsi_mem
));
4747 DSSERR("can't ioremap DSI\n");
4751 dsi
->irq
= platform_get_irq(dsi
->pdev
, 0);
4753 DSSERR("platform_get_irq failed\n");
4758 r
= request_irq(dsi
->irq
, omap_dsi_irq_handler
, IRQF_SHARED
,
4759 dev_name(&dsidev
->dev
), dsi
->pdev
);
4761 DSSERR("request_irq failed\n");
4765 /* DSI VCs initialization */
4766 for (i
= 0; i
< ARRAY_SIZE(dsi
->vc
); i
++) {
4767 dsi
->vc
[i
].source
= DSI_VC_SOURCE_L4
;
4768 dsi
->vc
[i
].dssdev
= NULL
;
4769 dsi
->vc
[i
].vc_id
= 0;
4772 dsi_calc_clock_param_ranges(dsidev
);
4774 r
= dsi_runtime_get(dsidev
);
4778 rev
= dsi_read_reg(dsidev
, DSI_REVISION
);
4779 dev_dbg(&dsidev
->dev
, "OMAP DSI rev %d.%d\n",
4780 FLD_GET(rev
, 7, 4), FLD_GET(rev
, 3, 0));
4782 /* DSI on OMAP3 doesn't have register DSI_GNQ, set number
4783 * of data to 3 by default */
4784 if (dss_has_feature(FEAT_DSI_GNQ
))
4786 dsi
->num_lanes_supported
= 1 + REG_GET(dsidev
, DSI_GNQ
, 11, 9);
4788 dsi
->num_lanes_supported
= 3;
4790 dsi_runtime_put(dsidev
);
4795 free_irq(dsi
->irq
, dsi
->pdev
);
4799 pm_runtime_disable(&dsidev
->dev
);
4806 static int omap_dsihw_remove(struct platform_device
*dsidev
)
4808 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4810 WARN_ON(dsi
->scp_clk_refcount
> 0);
4812 pm_runtime_disable(&dsidev
->dev
);
4814 dsi_put_clocks(dsidev
);
4816 if (dsi
->vdds_dsi_reg
!= NULL
) {
4817 if (dsi
->vdds_dsi_enabled
) {
4818 regulator_disable(dsi
->vdds_dsi_reg
);
4819 dsi
->vdds_dsi_enabled
= false;
4822 regulator_put(dsi
->vdds_dsi_reg
);
4823 dsi
->vdds_dsi_reg
= NULL
;
4826 free_irq(dsi
->irq
, dsi
->pdev
);
4834 static int dsi_runtime_suspend(struct device
*dev
)
4836 dispc_runtime_put();
4842 static int dsi_runtime_resume(struct device
*dev
)
4846 r
= dss_runtime_get();
4850 r
= dispc_runtime_get();
4862 static const struct dev_pm_ops dsi_pm_ops
= {
4863 .runtime_suspend
= dsi_runtime_suspend
,
4864 .runtime_resume
= dsi_runtime_resume
,
4867 static struct platform_driver omap_dsihw_driver
= {
4868 .probe
= omap_dsihw_probe
,
4869 .remove
= omap_dsihw_remove
,
4871 .name
= "omapdss_dsi",
4872 .owner
= THIS_MODULE
,
4877 int dsi_init_platform_driver(void)
4879 return platform_driver_register(&omap_dsihw_driver
);
4882 void dsi_uninit_platform_driver(void)
4884 return platform_driver_unregister(&omap_dsihw_driver
);