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/semaphore.h>
31 #include <linux/seq_file.h>
32 #include <linux/platform_device.h>
33 #include <linux/regulator/consumer.h>
34 #include <linux/wait.h>
35 #include <linux/workqueue.h>
36 #include <linux/sched.h>
37 #include <linux/slab.h>
38 #include <linux/debugfs.h>
40 #include <video/omapdss.h>
41 #include <plat/clock.h>
44 #include "dss_features.h"
46 /*#define VERBOSE_IRQ*/
47 #define DSI_CATCH_MISSING_TE
49 struct dsi_reg
{ u16 idx
; };
51 #define DSI_REG(idx) ((const struct dsi_reg) { idx })
53 #define DSI_SZ_REGS SZ_1K
54 /* DSI Protocol Engine */
56 #define DSI_REVISION DSI_REG(0x0000)
57 #define DSI_SYSCONFIG DSI_REG(0x0010)
58 #define DSI_SYSSTATUS DSI_REG(0x0014)
59 #define DSI_IRQSTATUS DSI_REG(0x0018)
60 #define DSI_IRQENABLE DSI_REG(0x001C)
61 #define DSI_CTRL DSI_REG(0x0040)
62 #define DSI_GNQ DSI_REG(0x0044)
63 #define DSI_COMPLEXIO_CFG1 DSI_REG(0x0048)
64 #define DSI_COMPLEXIO_IRQ_STATUS DSI_REG(0x004C)
65 #define DSI_COMPLEXIO_IRQ_ENABLE DSI_REG(0x0050)
66 #define DSI_CLK_CTRL DSI_REG(0x0054)
67 #define DSI_TIMING1 DSI_REG(0x0058)
68 #define DSI_TIMING2 DSI_REG(0x005C)
69 #define DSI_VM_TIMING1 DSI_REG(0x0060)
70 #define DSI_VM_TIMING2 DSI_REG(0x0064)
71 #define DSI_VM_TIMING3 DSI_REG(0x0068)
72 #define DSI_CLK_TIMING DSI_REG(0x006C)
73 #define DSI_TX_FIFO_VC_SIZE DSI_REG(0x0070)
74 #define DSI_RX_FIFO_VC_SIZE DSI_REG(0x0074)
75 #define DSI_COMPLEXIO_CFG2 DSI_REG(0x0078)
76 #define DSI_RX_FIFO_VC_FULLNESS DSI_REG(0x007C)
77 #define DSI_VM_TIMING4 DSI_REG(0x0080)
78 #define DSI_TX_FIFO_VC_EMPTINESS DSI_REG(0x0084)
79 #define DSI_VM_TIMING5 DSI_REG(0x0088)
80 #define DSI_VM_TIMING6 DSI_REG(0x008C)
81 #define DSI_VM_TIMING7 DSI_REG(0x0090)
82 #define DSI_STOPCLK_TIMING DSI_REG(0x0094)
83 #define DSI_VC_CTRL(n) DSI_REG(0x0100 + (n * 0x20))
84 #define DSI_VC_TE(n) DSI_REG(0x0104 + (n * 0x20))
85 #define DSI_VC_LONG_PACKET_HEADER(n) DSI_REG(0x0108 + (n * 0x20))
86 #define DSI_VC_LONG_PACKET_PAYLOAD(n) DSI_REG(0x010C + (n * 0x20))
87 #define DSI_VC_SHORT_PACKET_HEADER(n) DSI_REG(0x0110 + (n * 0x20))
88 #define DSI_VC_IRQSTATUS(n) DSI_REG(0x0118 + (n * 0x20))
89 #define DSI_VC_IRQENABLE(n) DSI_REG(0x011C + (n * 0x20))
93 #define DSI_DSIPHY_CFG0 DSI_REG(0x200 + 0x0000)
94 #define DSI_DSIPHY_CFG1 DSI_REG(0x200 + 0x0004)
95 #define DSI_DSIPHY_CFG2 DSI_REG(0x200 + 0x0008)
96 #define DSI_DSIPHY_CFG5 DSI_REG(0x200 + 0x0014)
97 #define DSI_DSIPHY_CFG10 DSI_REG(0x200 + 0x0028)
99 /* DSI_PLL_CTRL_SCP */
101 #define DSI_PLL_CONTROL DSI_REG(0x300 + 0x0000)
102 #define DSI_PLL_STATUS DSI_REG(0x300 + 0x0004)
103 #define DSI_PLL_GO DSI_REG(0x300 + 0x0008)
104 #define DSI_PLL_CONFIGURATION1 DSI_REG(0x300 + 0x000C)
105 #define DSI_PLL_CONFIGURATION2 DSI_REG(0x300 + 0x0010)
107 #define REG_GET(dsidev, idx, start, end) \
108 FLD_GET(dsi_read_reg(dsidev, idx), start, end)
110 #define REG_FLD_MOD(dsidev, idx, val, start, end) \
111 dsi_write_reg(dsidev, idx, FLD_MOD(dsi_read_reg(dsidev, idx), val, start, end))
113 /* Global interrupts */
114 #define DSI_IRQ_VC0 (1 << 0)
115 #define DSI_IRQ_VC1 (1 << 1)
116 #define DSI_IRQ_VC2 (1 << 2)
117 #define DSI_IRQ_VC3 (1 << 3)
118 #define DSI_IRQ_WAKEUP (1 << 4)
119 #define DSI_IRQ_RESYNC (1 << 5)
120 #define DSI_IRQ_PLL_LOCK (1 << 7)
121 #define DSI_IRQ_PLL_UNLOCK (1 << 8)
122 #define DSI_IRQ_PLL_RECALL (1 << 9)
123 #define DSI_IRQ_COMPLEXIO_ERR (1 << 10)
124 #define DSI_IRQ_HS_TX_TIMEOUT (1 << 14)
125 #define DSI_IRQ_LP_RX_TIMEOUT (1 << 15)
126 #define DSI_IRQ_TE_TRIGGER (1 << 16)
127 #define DSI_IRQ_ACK_TRIGGER (1 << 17)
128 #define DSI_IRQ_SYNC_LOST (1 << 18)
129 #define DSI_IRQ_LDO_POWER_GOOD (1 << 19)
130 #define DSI_IRQ_TA_TIMEOUT (1 << 20)
131 #define DSI_IRQ_ERROR_MASK \
132 (DSI_IRQ_HS_TX_TIMEOUT | DSI_IRQ_LP_RX_TIMEOUT | DSI_IRQ_SYNC_LOST | \
134 #define DSI_IRQ_CHANNEL_MASK 0xf
136 /* Virtual channel interrupts */
137 #define DSI_VC_IRQ_CS (1 << 0)
138 #define DSI_VC_IRQ_ECC_CORR (1 << 1)
139 #define DSI_VC_IRQ_PACKET_SENT (1 << 2)
140 #define DSI_VC_IRQ_FIFO_TX_OVF (1 << 3)
141 #define DSI_VC_IRQ_FIFO_RX_OVF (1 << 4)
142 #define DSI_VC_IRQ_BTA (1 << 5)
143 #define DSI_VC_IRQ_ECC_NO_CORR (1 << 6)
144 #define DSI_VC_IRQ_FIFO_TX_UDF (1 << 7)
145 #define DSI_VC_IRQ_PP_BUSY_CHANGE (1 << 8)
146 #define DSI_VC_IRQ_ERROR_MASK \
147 (DSI_VC_IRQ_CS | DSI_VC_IRQ_ECC_CORR | DSI_VC_IRQ_FIFO_TX_OVF | \
148 DSI_VC_IRQ_FIFO_RX_OVF | DSI_VC_IRQ_ECC_NO_CORR | \
149 DSI_VC_IRQ_FIFO_TX_UDF)
151 /* ComplexIO interrupts */
152 #define DSI_CIO_IRQ_ERRSYNCESC1 (1 << 0)
153 #define DSI_CIO_IRQ_ERRSYNCESC2 (1 << 1)
154 #define DSI_CIO_IRQ_ERRSYNCESC3 (1 << 2)
155 #define DSI_CIO_IRQ_ERRSYNCESC4 (1 << 3)
156 #define DSI_CIO_IRQ_ERRSYNCESC5 (1 << 4)
157 #define DSI_CIO_IRQ_ERRESC1 (1 << 5)
158 #define DSI_CIO_IRQ_ERRESC2 (1 << 6)
159 #define DSI_CIO_IRQ_ERRESC3 (1 << 7)
160 #define DSI_CIO_IRQ_ERRESC4 (1 << 8)
161 #define DSI_CIO_IRQ_ERRESC5 (1 << 9)
162 #define DSI_CIO_IRQ_ERRCONTROL1 (1 << 10)
163 #define DSI_CIO_IRQ_ERRCONTROL2 (1 << 11)
164 #define DSI_CIO_IRQ_ERRCONTROL3 (1 << 12)
165 #define DSI_CIO_IRQ_ERRCONTROL4 (1 << 13)
166 #define DSI_CIO_IRQ_ERRCONTROL5 (1 << 14)
167 #define DSI_CIO_IRQ_STATEULPS1 (1 << 15)
168 #define DSI_CIO_IRQ_STATEULPS2 (1 << 16)
169 #define DSI_CIO_IRQ_STATEULPS3 (1 << 17)
170 #define DSI_CIO_IRQ_STATEULPS4 (1 << 18)
171 #define DSI_CIO_IRQ_STATEULPS5 (1 << 19)
172 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_1 (1 << 20)
173 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_1 (1 << 21)
174 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_2 (1 << 22)
175 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_2 (1 << 23)
176 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_3 (1 << 24)
177 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_3 (1 << 25)
178 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_4 (1 << 26)
179 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_4 (1 << 27)
180 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_5 (1 << 28)
181 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_5 (1 << 29)
182 #define DSI_CIO_IRQ_ULPSACTIVENOT_ALL0 (1 << 30)
183 #define DSI_CIO_IRQ_ULPSACTIVENOT_ALL1 (1 << 31)
184 #define DSI_CIO_IRQ_ERROR_MASK \
185 (DSI_CIO_IRQ_ERRSYNCESC1 | DSI_CIO_IRQ_ERRSYNCESC2 | \
186 DSI_CIO_IRQ_ERRSYNCESC3 | DSI_CIO_IRQ_ERRSYNCESC4 | \
187 DSI_CIO_IRQ_ERRSYNCESC5 | \
188 DSI_CIO_IRQ_ERRESC1 | DSI_CIO_IRQ_ERRESC2 | \
189 DSI_CIO_IRQ_ERRESC3 | DSI_CIO_IRQ_ERRESC4 | \
190 DSI_CIO_IRQ_ERRESC5 | \
191 DSI_CIO_IRQ_ERRCONTROL1 | DSI_CIO_IRQ_ERRCONTROL2 | \
192 DSI_CIO_IRQ_ERRCONTROL3 | DSI_CIO_IRQ_ERRCONTROL4 | \
193 DSI_CIO_IRQ_ERRCONTROL5 | \
194 DSI_CIO_IRQ_ERRCONTENTIONLP0_1 | DSI_CIO_IRQ_ERRCONTENTIONLP1_1 | \
195 DSI_CIO_IRQ_ERRCONTENTIONLP0_2 | DSI_CIO_IRQ_ERRCONTENTIONLP1_2 | \
196 DSI_CIO_IRQ_ERRCONTENTIONLP0_3 | DSI_CIO_IRQ_ERRCONTENTIONLP1_3 | \
197 DSI_CIO_IRQ_ERRCONTENTIONLP0_4 | DSI_CIO_IRQ_ERRCONTENTIONLP1_4 | \
198 DSI_CIO_IRQ_ERRCONTENTIONLP0_5 | DSI_CIO_IRQ_ERRCONTENTIONLP1_5)
200 #define DSI_DT_DCS_SHORT_WRITE_0 0x05
201 #define DSI_DT_DCS_SHORT_WRITE_1 0x15
202 #define DSI_DT_DCS_READ 0x06
203 #define DSI_DT_SET_MAX_RET_PKG_SIZE 0x37
204 #define DSI_DT_NULL_PACKET 0x09
205 #define DSI_DT_DCS_LONG_WRITE 0x39
207 #define DSI_DT_RX_ACK_WITH_ERR 0x02
208 #define DSI_DT_RX_DCS_LONG_READ 0x1c
209 #define DSI_DT_RX_SHORT_READ_1 0x21
210 #define DSI_DT_RX_SHORT_READ_2 0x22
212 typedef void (*omap_dsi_isr_t
) (void *arg
, u32 mask
);
214 #define DSI_MAX_NR_ISRS 2
216 struct dsi_isr_data
{
224 DSI_FIFO_SIZE_32
= 1,
225 DSI_FIFO_SIZE_64
= 2,
226 DSI_FIFO_SIZE_96
= 3,
227 DSI_FIFO_SIZE_128
= 4,
238 DSI_DATA1_P
= 1 << 2,
239 DSI_DATA1_N
= 1 << 3,
240 DSI_DATA2_P
= 1 << 4,
241 DSI_DATA2_N
= 1 << 5,
242 DSI_DATA3_P
= 1 << 6,
243 DSI_DATA3_N
= 1 << 7,
244 DSI_DATA4_P
= 1 << 8,
245 DSI_DATA4_N
= 1 << 9,
248 struct dsi_update_region
{
250 struct omap_dss_device
*device
;
253 struct dsi_irq_stats
{
254 unsigned long last_reset
;
256 unsigned dsi_irqs
[32];
257 unsigned vc_irqs
[4][32];
258 unsigned cio_irqs
[32];
261 struct dsi_isr_tables
{
262 struct dsi_isr_data isr_table
[DSI_MAX_NR_ISRS
];
263 struct dsi_isr_data isr_table_vc
[4][DSI_MAX_NR_ISRS
];
264 struct dsi_isr_data isr_table_cio
[DSI_MAX_NR_ISRS
];
268 struct platform_device
*pdev
;
272 void (*dsi_mux_pads
)(bool enable
);
274 struct dsi_clock_info current_cinfo
;
276 bool vdds_dsi_enabled
;
277 struct regulator
*vdds_dsi_reg
;
280 enum dsi_vc_mode mode
;
281 struct omap_dss_device
*dssdev
;
282 enum fifo_size fifo_size
;
287 struct semaphore bus_lock
;
292 struct dsi_isr_tables isr_tables
;
293 /* space for a copy used by the interrupt handler */
294 struct dsi_isr_tables isr_tables_copy
;
297 struct dsi_update_region update_region
;
302 void (*framedone_callback
)(int, void *);
303 void *framedone_data
;
305 struct delayed_work framedone_timeout_work
;
307 #ifdef DSI_CATCH_MISSING_TE
308 struct timer_list te_timer
;
311 unsigned long cache_req_pck
;
312 unsigned long cache_clk_freq
;
313 struct dsi_clock_info cache_cinfo
;
316 spinlock_t errors_lock
;
318 ktime_t perf_setup_time
;
319 ktime_t perf_start_time
;
324 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
325 spinlock_t irq_stats_lock
;
326 struct dsi_irq_stats irq_stats
;
328 /* DSI PLL Parameter Ranges */
329 unsigned long regm_max
, regn_max
;
330 unsigned long regm_dispc_max
, regm_dsi_max
;
331 unsigned long fint_min
, fint_max
;
332 unsigned long lpdiv_max
;
336 unsigned scp_clk_refcount
;
339 struct dsi_packet_sent_handler_data
{
340 struct platform_device
*dsidev
;
341 struct completion
*completion
;
344 static struct platform_device
*dsi_pdev_map
[MAX_NUM_DSI
];
347 static unsigned int dsi_perf
;
348 module_param_named(dsi_perf
, dsi_perf
, bool, 0644);
351 static inline struct dsi_data
*dsi_get_dsidrv_data(struct platform_device
*dsidev
)
353 return dev_get_drvdata(&dsidev
->dev
);
356 static inline struct platform_device
*dsi_get_dsidev_from_dssdev(struct omap_dss_device
*dssdev
)
358 return dsi_pdev_map
[dssdev
->phy
.dsi
.module
];
361 struct platform_device
*dsi_get_dsidev_from_id(int module
)
363 return dsi_pdev_map
[module
];
366 static int dsi_get_dsidev_id(struct platform_device
*dsidev
)
368 /* TEMP: Pass 0 as the dsi module index till the time the dsi platform
369 * device names aren't changed to the form "omapdss_dsi.0",
370 * "omapdss_dsi.1" and so on */
371 BUG_ON(dsidev
->id
!= -1);
376 static inline void dsi_write_reg(struct platform_device
*dsidev
,
377 const struct dsi_reg idx
, u32 val
)
379 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
381 __raw_writel(val
, dsi
->base
+ idx
.idx
);
384 static inline u32
dsi_read_reg(struct platform_device
*dsidev
,
385 const struct dsi_reg idx
)
387 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
389 return __raw_readl(dsi
->base
+ idx
.idx
);
393 void dsi_save_context(void)
397 void dsi_restore_context(void)
401 void dsi_bus_lock(struct omap_dss_device
*dssdev
)
403 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
404 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
406 down(&dsi
->bus_lock
);
408 EXPORT_SYMBOL(dsi_bus_lock
);
410 void dsi_bus_unlock(struct omap_dss_device
*dssdev
)
412 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
413 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
417 EXPORT_SYMBOL(dsi_bus_unlock
);
419 static bool dsi_bus_is_locked(struct platform_device
*dsidev
)
421 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
423 return dsi
->bus_lock
.count
== 0;
426 static void dsi_completion_handler(void *data
, u32 mask
)
428 complete((struct completion
*)data
);
431 static inline int wait_for_bit_change(struct platform_device
*dsidev
,
432 const struct dsi_reg idx
, int bitnum
, int value
)
436 while (REG_GET(dsidev
, idx
, bitnum
, bitnum
) != value
) {
445 static void dsi_perf_mark_setup(struct platform_device
*dsidev
)
447 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
448 dsi
->perf_setup_time
= ktime_get();
451 static void dsi_perf_mark_start(struct platform_device
*dsidev
)
453 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
454 dsi
->perf_start_time
= ktime_get();
457 static void dsi_perf_show(struct platform_device
*dsidev
, const char *name
)
459 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
460 ktime_t t
, setup_time
, trans_time
;
462 u32 setup_us
, trans_us
, total_us
;
469 setup_time
= ktime_sub(dsi
->perf_start_time
, dsi
->perf_setup_time
);
470 setup_us
= (u32
)ktime_to_us(setup_time
);
474 trans_time
= ktime_sub(t
, dsi
->perf_start_time
);
475 trans_us
= (u32
)ktime_to_us(trans_time
);
479 total_us
= setup_us
+ trans_us
;
481 total_bytes
= dsi
->update_region
.w
*
482 dsi
->update_region
.h
*
483 dsi
->update_region
.device
->ctrl
.pixel_size
/ 8;
485 printk(KERN_INFO
"DSI(%s): %u us + %u us = %u us (%uHz), "
486 "%u bytes, %u kbytes/sec\n",
491 1000*1000 / total_us
,
493 total_bytes
* 1000 / total_us
);
496 #define dsi_perf_mark_setup(x)
497 #define dsi_perf_mark_start(x)
498 #define dsi_perf_show(x, y)
501 static void print_irq_status(u32 status
)
507 if ((status
& ~DSI_IRQ_CHANNEL_MASK
) == 0)
510 printk(KERN_DEBUG
"DSI IRQ: 0x%x: ", status
);
513 if (status & DSI_IRQ_##x) \
539 static void print_irq_status_vc(int channel
, u32 status
)
545 if ((status
& ~DSI_VC_IRQ_PACKET_SENT
) == 0)
548 printk(KERN_DEBUG
"DSI VC(%d) IRQ 0x%x: ", channel
, status
);
551 if (status & DSI_VC_IRQ_##x) \
568 static void print_irq_status_cio(u32 status
)
573 printk(KERN_DEBUG
"DSI CIO IRQ 0x%x: ", status
);
576 if (status & DSI_CIO_IRQ_##x) \
590 PIS(ERRCONTENTIONLP0_1
);
591 PIS(ERRCONTENTIONLP1_1
);
592 PIS(ERRCONTENTIONLP0_2
);
593 PIS(ERRCONTENTIONLP1_2
);
594 PIS(ERRCONTENTIONLP0_3
);
595 PIS(ERRCONTENTIONLP1_3
);
596 PIS(ULPSACTIVENOT_ALL0
);
597 PIS(ULPSACTIVENOT_ALL1
);
603 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
604 static void dsi_collect_irq_stats(struct platform_device
*dsidev
, u32 irqstatus
,
605 u32
*vcstatus
, u32 ciostatus
)
607 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
610 spin_lock(&dsi
->irq_stats_lock
);
612 dsi
->irq_stats
.irq_count
++;
613 dss_collect_irq_stats(irqstatus
, dsi
->irq_stats
.dsi_irqs
);
615 for (i
= 0; i
< 4; ++i
)
616 dss_collect_irq_stats(vcstatus
[i
], dsi
->irq_stats
.vc_irqs
[i
]);
618 dss_collect_irq_stats(ciostatus
, dsi
->irq_stats
.cio_irqs
);
620 spin_unlock(&dsi
->irq_stats_lock
);
623 #define dsi_collect_irq_stats(dsidev, irqstatus, vcstatus, ciostatus)
626 static int debug_irq
;
628 static void dsi_handle_irq_errors(struct platform_device
*dsidev
, u32 irqstatus
,
629 u32
*vcstatus
, u32 ciostatus
)
631 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
634 if (irqstatus
& DSI_IRQ_ERROR_MASK
) {
635 DSSERR("DSI error, irqstatus %x\n", irqstatus
);
636 print_irq_status(irqstatus
);
637 spin_lock(&dsi
->errors_lock
);
638 dsi
->errors
|= irqstatus
& DSI_IRQ_ERROR_MASK
;
639 spin_unlock(&dsi
->errors_lock
);
640 } else if (debug_irq
) {
641 print_irq_status(irqstatus
);
644 for (i
= 0; i
< 4; ++i
) {
645 if (vcstatus
[i
] & DSI_VC_IRQ_ERROR_MASK
) {
646 DSSERR("DSI VC(%d) error, vc irqstatus %x\n",
648 print_irq_status_vc(i
, vcstatus
[i
]);
649 } else if (debug_irq
) {
650 print_irq_status_vc(i
, vcstatus
[i
]);
654 if (ciostatus
& DSI_CIO_IRQ_ERROR_MASK
) {
655 DSSERR("DSI CIO error, cio irqstatus %x\n", ciostatus
);
656 print_irq_status_cio(ciostatus
);
657 } else if (debug_irq
) {
658 print_irq_status_cio(ciostatus
);
662 static void dsi_call_isrs(struct dsi_isr_data
*isr_array
,
663 unsigned isr_array_size
, u32 irqstatus
)
665 struct dsi_isr_data
*isr_data
;
668 for (i
= 0; i
< isr_array_size
; i
++) {
669 isr_data
= &isr_array
[i
];
670 if (isr_data
->isr
&& isr_data
->mask
& irqstatus
)
671 isr_data
->isr(isr_data
->arg
, irqstatus
);
675 static void dsi_handle_isrs(struct dsi_isr_tables
*isr_tables
,
676 u32 irqstatus
, u32
*vcstatus
, u32 ciostatus
)
680 dsi_call_isrs(isr_tables
->isr_table
,
681 ARRAY_SIZE(isr_tables
->isr_table
),
684 for (i
= 0; i
< 4; ++i
) {
685 if (vcstatus
[i
] == 0)
687 dsi_call_isrs(isr_tables
->isr_table_vc
[i
],
688 ARRAY_SIZE(isr_tables
->isr_table_vc
[i
]),
693 dsi_call_isrs(isr_tables
->isr_table_cio
,
694 ARRAY_SIZE(isr_tables
->isr_table_cio
),
698 static irqreturn_t
omap_dsi_irq_handler(int irq
, void *arg
)
700 struct platform_device
*dsidev
;
701 struct dsi_data
*dsi
;
702 u32 irqstatus
, vcstatus
[4], ciostatus
;
705 dsidev
= (struct platform_device
*) arg
;
706 dsi
= dsi_get_dsidrv_data(dsidev
);
708 spin_lock(&dsi
->irq_lock
);
710 irqstatus
= dsi_read_reg(dsidev
, DSI_IRQSTATUS
);
712 /* IRQ is not for us */
714 spin_unlock(&dsi
->irq_lock
);
718 dsi_write_reg(dsidev
, DSI_IRQSTATUS
, irqstatus
& ~DSI_IRQ_CHANNEL_MASK
);
719 /* flush posted write */
720 dsi_read_reg(dsidev
, DSI_IRQSTATUS
);
722 for (i
= 0; i
< 4; ++i
) {
723 if ((irqstatus
& (1 << i
)) == 0) {
728 vcstatus
[i
] = dsi_read_reg(dsidev
, DSI_VC_IRQSTATUS(i
));
730 dsi_write_reg(dsidev
, DSI_VC_IRQSTATUS(i
), vcstatus
[i
]);
731 /* flush posted write */
732 dsi_read_reg(dsidev
, DSI_VC_IRQSTATUS(i
));
735 if (irqstatus
& DSI_IRQ_COMPLEXIO_ERR
) {
736 ciostatus
= dsi_read_reg(dsidev
, DSI_COMPLEXIO_IRQ_STATUS
);
738 dsi_write_reg(dsidev
, DSI_COMPLEXIO_IRQ_STATUS
, ciostatus
);
739 /* flush posted write */
740 dsi_read_reg(dsidev
, DSI_COMPLEXIO_IRQ_STATUS
);
745 #ifdef DSI_CATCH_MISSING_TE
746 if (irqstatus
& DSI_IRQ_TE_TRIGGER
)
747 del_timer(&dsi
->te_timer
);
750 /* make a copy and unlock, so that isrs can unregister
752 memcpy(&dsi
->isr_tables_copy
, &dsi
->isr_tables
,
753 sizeof(dsi
->isr_tables
));
755 spin_unlock(&dsi
->irq_lock
);
757 dsi_handle_isrs(&dsi
->isr_tables_copy
, irqstatus
, vcstatus
, ciostatus
);
759 dsi_handle_irq_errors(dsidev
, irqstatus
, vcstatus
, ciostatus
);
761 dsi_collect_irq_stats(dsidev
, irqstatus
, vcstatus
, ciostatus
);
766 /* dsi->irq_lock has to be locked by the caller */
767 static void _omap_dsi_configure_irqs(struct platform_device
*dsidev
,
768 struct dsi_isr_data
*isr_array
,
769 unsigned isr_array_size
, u32 default_mask
,
770 const struct dsi_reg enable_reg
,
771 const struct dsi_reg status_reg
)
773 struct dsi_isr_data
*isr_data
;
780 for (i
= 0; i
< isr_array_size
; i
++) {
781 isr_data
= &isr_array
[i
];
783 if (isr_data
->isr
== NULL
)
786 mask
|= isr_data
->mask
;
789 old_mask
= dsi_read_reg(dsidev
, enable_reg
);
790 /* clear the irqstatus for newly enabled irqs */
791 dsi_write_reg(dsidev
, status_reg
, (mask
^ old_mask
) & mask
);
792 dsi_write_reg(dsidev
, enable_reg
, mask
);
794 /* flush posted writes */
795 dsi_read_reg(dsidev
, enable_reg
);
796 dsi_read_reg(dsidev
, status_reg
);
799 /* dsi->irq_lock has to be locked by the caller */
800 static void _omap_dsi_set_irqs(struct platform_device
*dsidev
)
802 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
803 u32 mask
= DSI_IRQ_ERROR_MASK
;
804 #ifdef DSI_CATCH_MISSING_TE
805 mask
|= DSI_IRQ_TE_TRIGGER
;
807 _omap_dsi_configure_irqs(dsidev
, dsi
->isr_tables
.isr_table
,
808 ARRAY_SIZE(dsi
->isr_tables
.isr_table
), mask
,
809 DSI_IRQENABLE
, DSI_IRQSTATUS
);
812 /* dsi->irq_lock has to be locked by the caller */
813 static void _omap_dsi_set_irqs_vc(struct platform_device
*dsidev
, int vc
)
815 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
817 _omap_dsi_configure_irqs(dsidev
, dsi
->isr_tables
.isr_table_vc
[vc
],
818 ARRAY_SIZE(dsi
->isr_tables
.isr_table_vc
[vc
]),
819 DSI_VC_IRQ_ERROR_MASK
,
820 DSI_VC_IRQENABLE(vc
), DSI_VC_IRQSTATUS(vc
));
823 /* dsi->irq_lock has to be locked by the caller */
824 static void _omap_dsi_set_irqs_cio(struct platform_device
*dsidev
)
826 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
828 _omap_dsi_configure_irqs(dsidev
, dsi
->isr_tables
.isr_table_cio
,
829 ARRAY_SIZE(dsi
->isr_tables
.isr_table_cio
),
830 DSI_CIO_IRQ_ERROR_MASK
,
831 DSI_COMPLEXIO_IRQ_ENABLE
, DSI_COMPLEXIO_IRQ_STATUS
);
834 static void _dsi_initialize_irq(struct platform_device
*dsidev
)
836 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
840 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
842 memset(&dsi
->isr_tables
, 0, sizeof(dsi
->isr_tables
));
844 _omap_dsi_set_irqs(dsidev
);
845 for (vc
= 0; vc
< 4; ++vc
)
846 _omap_dsi_set_irqs_vc(dsidev
, vc
);
847 _omap_dsi_set_irqs_cio(dsidev
);
849 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
852 static int _dsi_register_isr(omap_dsi_isr_t isr
, void *arg
, u32 mask
,
853 struct dsi_isr_data
*isr_array
, unsigned isr_array_size
)
855 struct dsi_isr_data
*isr_data
;
861 /* check for duplicate entry and find a free slot */
863 for (i
= 0; i
< isr_array_size
; i
++) {
864 isr_data
= &isr_array
[i
];
866 if (isr_data
->isr
== isr
&& isr_data
->arg
== arg
&&
867 isr_data
->mask
== mask
) {
871 if (isr_data
->isr
== NULL
&& free_idx
== -1)
878 isr_data
= &isr_array
[free_idx
];
881 isr_data
->mask
= mask
;
886 static int _dsi_unregister_isr(omap_dsi_isr_t isr
, void *arg
, u32 mask
,
887 struct dsi_isr_data
*isr_array
, unsigned isr_array_size
)
889 struct dsi_isr_data
*isr_data
;
892 for (i
= 0; i
< isr_array_size
; i
++) {
893 isr_data
= &isr_array
[i
];
894 if (isr_data
->isr
!= isr
|| isr_data
->arg
!= arg
||
895 isr_data
->mask
!= mask
)
898 isr_data
->isr
= NULL
;
899 isr_data
->arg
= NULL
;
908 static int dsi_register_isr(struct platform_device
*dsidev
, omap_dsi_isr_t isr
,
911 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
915 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
917 r
= _dsi_register_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table
,
918 ARRAY_SIZE(dsi
->isr_tables
.isr_table
));
921 _omap_dsi_set_irqs(dsidev
);
923 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
928 static int dsi_unregister_isr(struct platform_device
*dsidev
,
929 omap_dsi_isr_t isr
, void *arg
, u32 mask
)
931 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
935 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
937 r
= _dsi_unregister_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table
,
938 ARRAY_SIZE(dsi
->isr_tables
.isr_table
));
941 _omap_dsi_set_irqs(dsidev
);
943 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
948 static int dsi_register_isr_vc(struct platform_device
*dsidev
, int channel
,
949 omap_dsi_isr_t isr
, void *arg
, u32 mask
)
951 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
955 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
957 r
= _dsi_register_isr(isr
, arg
, mask
,
958 dsi
->isr_tables
.isr_table_vc
[channel
],
959 ARRAY_SIZE(dsi
->isr_tables
.isr_table_vc
[channel
]));
962 _omap_dsi_set_irqs_vc(dsidev
, channel
);
964 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
969 static int dsi_unregister_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_unregister_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_register_isr_cio(struct platform_device
*dsidev
,
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_register_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table_cio
,
1000 ARRAY_SIZE(dsi
->isr_tables
.isr_table_cio
));
1003 _omap_dsi_set_irqs_cio(dsidev
);
1005 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
1010 static int dsi_unregister_isr_cio(struct platform_device
*dsidev
,
1011 omap_dsi_isr_t isr
, void *arg
, u32 mask
)
1013 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1014 unsigned long flags
;
1017 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
1019 r
= _dsi_unregister_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table_cio
,
1020 ARRAY_SIZE(dsi
->isr_tables
.isr_table_cio
));
1023 _omap_dsi_set_irqs_cio(dsidev
);
1025 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
1030 static u32
dsi_get_errors(struct platform_device
*dsidev
)
1032 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1033 unsigned long flags
;
1035 spin_lock_irqsave(&dsi
->errors_lock
, flags
);
1038 spin_unlock_irqrestore(&dsi
->errors_lock
, flags
);
1042 /* DSI func clock. this could also be dsi_pll_hsdiv_dsi_clk */
1043 static inline void enable_clocks(bool enable
)
1046 dss_clk_enable(DSS_CLK_ICK
| DSS_CLK_FCK
);
1048 dss_clk_disable(DSS_CLK_ICK
| DSS_CLK_FCK
);
1051 /* source clock for DSI PLL. this could also be PCLKFREE */
1052 static inline void dsi_enable_pll_clock(struct platform_device
*dsidev
,
1055 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1058 dss_clk_enable(DSS_CLK_SYSCK
);
1060 dss_clk_disable(DSS_CLK_SYSCK
);
1062 if (enable
&& dsi
->pll_locked
) {
1063 if (wait_for_bit_change(dsidev
, DSI_PLL_STATUS
, 1, 1) != 1)
1064 DSSERR("cannot lock PLL when enabling clocks\n");
1069 static void _dsi_print_reset_status(struct platform_device
*dsidev
)
1077 /* A dummy read using the SCP interface to any DSIPHY register is
1078 * required after DSIPHY reset to complete the reset of the DSI complex
1080 l
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG5
);
1082 printk(KERN_DEBUG
"DSI resets: ");
1084 l
= dsi_read_reg(dsidev
, DSI_PLL_STATUS
);
1085 printk("PLL (%d) ", FLD_GET(l
, 0, 0));
1087 l
= dsi_read_reg(dsidev
, DSI_COMPLEXIO_CFG1
);
1088 printk("CIO (%d) ", FLD_GET(l
, 29, 29));
1090 if (dss_has_feature(FEAT_DSI_REVERSE_TXCLKESC
)) {
1100 l
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG5
);
1101 printk("PHY (%x%x%x, %d, %d, %d)\n",
1107 FLD_GET(l
, 31, 31));
1110 #define _dsi_print_reset_status(x)
1113 static inline int dsi_if_enable(struct platform_device
*dsidev
, bool enable
)
1115 DSSDBG("dsi_if_enable(%d)\n", enable
);
1117 enable
= enable
? 1 : 0;
1118 REG_FLD_MOD(dsidev
, DSI_CTRL
, enable
, 0, 0); /* IF_EN */
1120 if (wait_for_bit_change(dsidev
, DSI_CTRL
, 0, enable
) != enable
) {
1121 DSSERR("Failed to set dsi_if_enable to %d\n", enable
);
1128 unsigned long dsi_get_pll_hsdiv_dispc_rate(struct platform_device
*dsidev
)
1130 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1132 return dsi
->current_cinfo
.dsi_pll_hsdiv_dispc_clk
;
1135 static unsigned long dsi_get_pll_hsdiv_dsi_rate(struct platform_device
*dsidev
)
1137 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1139 return dsi
->current_cinfo
.dsi_pll_hsdiv_dsi_clk
;
1142 static unsigned long dsi_get_txbyteclkhs(struct platform_device
*dsidev
)
1144 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1146 return dsi
->current_cinfo
.clkin4ddr
/ 16;
1149 static unsigned long dsi_fclk_rate(struct platform_device
*dsidev
)
1152 int dsi_module
= dsi_get_dsidev_id(dsidev
);
1154 if (dss_get_dsi_clk_source(dsi_module
) == OMAP_DSS_CLK_SRC_FCK
) {
1155 /* DSI FCLK source is DSS_CLK_FCK */
1156 r
= dss_clk_get_rate(DSS_CLK_FCK
);
1158 /* DSI FCLK source is dsi_pll_hsdiv_dsi_clk */
1159 r
= dsi_get_pll_hsdiv_dsi_rate(dsidev
);
1165 static int dsi_set_lp_clk_divisor(struct omap_dss_device
*dssdev
)
1167 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
1168 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1169 unsigned long dsi_fclk
;
1170 unsigned lp_clk_div
;
1171 unsigned long lp_clk
;
1173 lp_clk_div
= dssdev
->clocks
.dsi
.lp_clk_div
;
1175 if (lp_clk_div
== 0 || lp_clk_div
> dsi
->lpdiv_max
)
1178 dsi_fclk
= dsi_fclk_rate(dsidev
);
1180 lp_clk
= dsi_fclk
/ 2 / lp_clk_div
;
1182 DSSDBG("LP_CLK_DIV %u, LP_CLK %lu\n", lp_clk_div
, lp_clk
);
1183 dsi
->current_cinfo
.lp_clk
= lp_clk
;
1184 dsi
->current_cinfo
.lp_clk_div
= lp_clk_div
;
1186 /* LP_CLK_DIVISOR */
1187 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, lp_clk_div
, 12, 0);
1189 /* LP_RX_SYNCHRO_ENABLE */
1190 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, dsi_fclk
> 30000000 ? 1 : 0, 21, 21);
1195 static void dsi_enable_scp_clk(struct platform_device
*dsidev
)
1197 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1199 if (dsi
->scp_clk_refcount
++ == 0)
1200 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, 1, 14, 14); /* CIO_CLK_ICG */
1203 static void dsi_disable_scp_clk(struct platform_device
*dsidev
)
1205 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1207 WARN_ON(dsi
->scp_clk_refcount
== 0);
1208 if (--dsi
->scp_clk_refcount
== 0)
1209 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, 0, 14, 14); /* CIO_CLK_ICG */
1212 enum dsi_pll_power_state
{
1213 DSI_PLL_POWER_OFF
= 0x0,
1214 DSI_PLL_POWER_ON_HSCLK
= 0x1,
1215 DSI_PLL_POWER_ON_ALL
= 0x2,
1216 DSI_PLL_POWER_ON_DIV
= 0x3,
1219 static int dsi_pll_power(struct platform_device
*dsidev
,
1220 enum dsi_pll_power_state state
)
1224 /* DSI-PLL power command 0x3 is not working */
1225 if (dss_has_feature(FEAT_DSI_PLL_PWR_BUG
) &&
1226 state
== DSI_PLL_POWER_ON_DIV
)
1227 state
= DSI_PLL_POWER_ON_ALL
;
1230 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, state
, 31, 30);
1232 /* PLL_PWR_STATUS */
1233 while (FLD_GET(dsi_read_reg(dsidev
, DSI_CLK_CTRL
), 29, 28) != state
) {
1235 DSSERR("Failed to set DSI PLL power mode to %d\n",
1245 /* calculate clock rates using dividers in cinfo */
1246 static int dsi_calc_clock_rates(struct omap_dss_device
*dssdev
,
1247 struct dsi_clock_info
*cinfo
)
1249 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
1250 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1252 if (cinfo
->regn
== 0 || cinfo
->regn
> dsi
->regn_max
)
1255 if (cinfo
->regm
== 0 || cinfo
->regm
> dsi
->regm_max
)
1258 if (cinfo
->regm_dispc
> dsi
->regm_dispc_max
)
1261 if (cinfo
->regm_dsi
> dsi
->regm_dsi_max
)
1264 if (cinfo
->use_sys_clk
) {
1265 cinfo
->clkin
= dss_clk_get_rate(DSS_CLK_SYSCK
);
1266 /* XXX it is unclear if highfreq should be used
1267 * with DSS_SYS_CLK source also */
1268 cinfo
->highfreq
= 0;
1270 cinfo
->clkin
= dispc_pclk_rate(dssdev
->manager
->id
);
1272 if (cinfo
->clkin
< 32000000)
1273 cinfo
->highfreq
= 0;
1275 cinfo
->highfreq
= 1;
1278 cinfo
->fint
= cinfo
->clkin
/ (cinfo
->regn
* (cinfo
->highfreq
? 2 : 1));
1280 if (cinfo
->fint
> dsi
->fint_max
|| cinfo
->fint
< dsi
->fint_min
)
1283 cinfo
->clkin4ddr
= 2 * cinfo
->regm
* cinfo
->fint
;
1285 if (cinfo
->clkin4ddr
> 1800 * 1000 * 1000)
1288 if (cinfo
->regm_dispc
> 0)
1289 cinfo
->dsi_pll_hsdiv_dispc_clk
=
1290 cinfo
->clkin4ddr
/ cinfo
->regm_dispc
;
1292 cinfo
->dsi_pll_hsdiv_dispc_clk
= 0;
1294 if (cinfo
->regm_dsi
> 0)
1295 cinfo
->dsi_pll_hsdiv_dsi_clk
=
1296 cinfo
->clkin4ddr
/ cinfo
->regm_dsi
;
1298 cinfo
->dsi_pll_hsdiv_dsi_clk
= 0;
1303 int dsi_pll_calc_clock_div_pck(struct platform_device
*dsidev
, bool is_tft
,
1304 unsigned long req_pck
, struct dsi_clock_info
*dsi_cinfo
,
1305 struct dispc_clock_info
*dispc_cinfo
)
1307 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1308 struct dsi_clock_info cur
, best
;
1309 struct dispc_clock_info best_dispc
;
1310 int min_fck_per_pck
;
1312 unsigned long dss_sys_clk
, max_dss_fck
;
1314 dss_sys_clk
= dss_clk_get_rate(DSS_CLK_SYSCK
);
1316 max_dss_fck
= dss_feat_get_param_max(FEAT_PARAM_DSS_FCK
);
1318 if (req_pck
== dsi
->cache_req_pck
&&
1319 dsi
->cache_cinfo
.clkin
== dss_sys_clk
) {
1320 DSSDBG("DSI clock info found from cache\n");
1321 *dsi_cinfo
= dsi
->cache_cinfo
;
1322 dispc_find_clk_divs(is_tft
, req_pck
,
1323 dsi_cinfo
->dsi_pll_hsdiv_dispc_clk
, dispc_cinfo
);
1327 min_fck_per_pck
= CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK
;
1329 if (min_fck_per_pck
&&
1330 req_pck
* min_fck_per_pck
> max_dss_fck
) {
1331 DSSERR("Requested pixel clock not possible with the current "
1332 "OMAP2_DSS_MIN_FCK_PER_PCK setting. Turning "
1333 "the constraint off.\n");
1334 min_fck_per_pck
= 0;
1337 DSSDBG("dsi_pll_calc\n");
1340 memset(&best
, 0, sizeof(best
));
1341 memset(&best_dispc
, 0, sizeof(best_dispc
));
1343 memset(&cur
, 0, sizeof(cur
));
1344 cur
.clkin
= dss_sys_clk
;
1345 cur
.use_sys_clk
= 1;
1348 /* no highfreq: 0.75MHz < Fint = clkin / regn < 2.1MHz */
1349 /* highfreq: 0.75MHz < Fint = clkin / (2*regn) < 2.1MHz */
1350 /* To reduce PLL lock time, keep Fint high (around 2 MHz) */
1351 for (cur
.regn
= 1; cur
.regn
< dsi
->regn_max
; ++cur
.regn
) {
1352 if (cur
.highfreq
== 0)
1353 cur
.fint
= cur
.clkin
/ cur
.regn
;
1355 cur
.fint
= cur
.clkin
/ (2 * cur
.regn
);
1357 if (cur
.fint
> dsi
->fint_max
|| cur
.fint
< dsi
->fint_min
)
1360 /* DSIPHY(MHz) = (2 * regm / regn) * (clkin / (highfreq + 1)) */
1361 for (cur
.regm
= 1; cur
.regm
< dsi
->regm_max
; ++cur
.regm
) {
1364 a
= 2 * cur
.regm
* (cur
.clkin
/1000);
1365 b
= cur
.regn
* (cur
.highfreq
+ 1);
1366 cur
.clkin4ddr
= a
/ b
* 1000;
1368 if (cur
.clkin4ddr
> 1800 * 1000 * 1000)
1371 /* dsi_pll_hsdiv_dispc_clk(MHz) =
1372 * DSIPHY(MHz) / regm_dispc < 173MHz/186Mhz */
1373 for (cur
.regm_dispc
= 1; cur
.regm_dispc
<
1374 dsi
->regm_dispc_max
; ++cur
.regm_dispc
) {
1375 struct dispc_clock_info cur_dispc
;
1376 cur
.dsi_pll_hsdiv_dispc_clk
=
1377 cur
.clkin4ddr
/ cur
.regm_dispc
;
1379 /* this will narrow down the search a bit,
1380 * but still give pixclocks below what was
1382 if (cur
.dsi_pll_hsdiv_dispc_clk
< req_pck
)
1385 if (cur
.dsi_pll_hsdiv_dispc_clk
> max_dss_fck
)
1388 if (min_fck_per_pck
&&
1389 cur
.dsi_pll_hsdiv_dispc_clk
<
1390 req_pck
* min_fck_per_pck
)
1395 dispc_find_clk_divs(is_tft
, req_pck
,
1396 cur
.dsi_pll_hsdiv_dispc_clk
,
1399 if (abs(cur_dispc
.pck
- req_pck
) <
1400 abs(best_dispc
.pck
- req_pck
)) {
1402 best_dispc
= cur_dispc
;
1404 if (cur_dispc
.pck
== req_pck
)
1412 if (min_fck_per_pck
) {
1413 DSSERR("Could not find suitable clock settings.\n"
1414 "Turning FCK/PCK constraint off and"
1416 min_fck_per_pck
= 0;
1420 DSSERR("Could not find suitable clock settings.\n");
1425 /* dsi_pll_hsdiv_dsi_clk (regm_dsi) is not used */
1427 best
.dsi_pll_hsdiv_dsi_clk
= 0;
1432 *dispc_cinfo
= best_dispc
;
1434 dsi
->cache_req_pck
= req_pck
;
1435 dsi
->cache_clk_freq
= 0;
1436 dsi
->cache_cinfo
= best
;
1441 int dsi_pll_set_clock_div(struct platform_device
*dsidev
,
1442 struct dsi_clock_info
*cinfo
)
1444 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1448 u8 regn_start
, regn_end
, regm_start
, regm_end
;
1449 u8 regm_dispc_start
, regm_dispc_end
, regm_dsi_start
, regm_dsi_end
;
1453 dsi
->current_cinfo
.use_sys_clk
= cinfo
->use_sys_clk
;
1454 dsi
->current_cinfo
.highfreq
= cinfo
->highfreq
;
1456 dsi
->current_cinfo
.fint
= cinfo
->fint
;
1457 dsi
->current_cinfo
.clkin4ddr
= cinfo
->clkin4ddr
;
1458 dsi
->current_cinfo
.dsi_pll_hsdiv_dispc_clk
=
1459 cinfo
->dsi_pll_hsdiv_dispc_clk
;
1460 dsi
->current_cinfo
.dsi_pll_hsdiv_dsi_clk
=
1461 cinfo
->dsi_pll_hsdiv_dsi_clk
;
1463 dsi
->current_cinfo
.regn
= cinfo
->regn
;
1464 dsi
->current_cinfo
.regm
= cinfo
->regm
;
1465 dsi
->current_cinfo
.regm_dispc
= cinfo
->regm_dispc
;
1466 dsi
->current_cinfo
.regm_dsi
= cinfo
->regm_dsi
;
1468 DSSDBG("DSI Fint %ld\n", cinfo
->fint
);
1470 DSSDBG("clkin (%s) rate %ld, highfreq %d\n",
1471 cinfo
->use_sys_clk
? "dss_sys_clk" : "pclkfree",
1475 /* DSIPHY == CLKIN4DDR */
1476 DSSDBG("CLKIN4DDR = 2 * %d / %d * %lu / %d = %lu\n",
1480 cinfo
->highfreq
+ 1,
1483 DSSDBG("Data rate on 1 DSI lane %ld Mbps\n",
1484 cinfo
->clkin4ddr
/ 1000 / 1000 / 2);
1486 DSSDBG("Clock lane freq %ld Hz\n", cinfo
->clkin4ddr
/ 4);
1488 DSSDBG("regm_dispc = %d, %s (%s) = %lu\n", cinfo
->regm_dispc
,
1489 dss_get_generic_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC
),
1490 dss_feat_get_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC
),
1491 cinfo
->dsi_pll_hsdiv_dispc_clk
);
1492 DSSDBG("regm_dsi = %d, %s (%s) = %lu\n", cinfo
->regm_dsi
,
1493 dss_get_generic_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI
),
1494 dss_feat_get_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI
),
1495 cinfo
->dsi_pll_hsdiv_dsi_clk
);
1497 dss_feat_get_reg_field(FEAT_REG_DSIPLL_REGN
, ®n_start
, ®n_end
);
1498 dss_feat_get_reg_field(FEAT_REG_DSIPLL_REGM
, ®m_start
, ®m_end
);
1499 dss_feat_get_reg_field(FEAT_REG_DSIPLL_REGM_DISPC
, ®m_dispc_start
,
1501 dss_feat_get_reg_field(FEAT_REG_DSIPLL_REGM_DSI
, ®m_dsi_start
,
1504 /* DSI_PLL_AUTOMODE = manual */
1505 REG_FLD_MOD(dsidev
, DSI_PLL_CONTROL
, 0, 0, 0);
1507 l
= dsi_read_reg(dsidev
, DSI_PLL_CONFIGURATION1
);
1508 l
= FLD_MOD(l
, 1, 0, 0); /* DSI_PLL_STOPMODE */
1510 l
= FLD_MOD(l
, cinfo
->regn
- 1, regn_start
, regn_end
);
1512 l
= FLD_MOD(l
, cinfo
->regm
, regm_start
, regm_end
);
1514 l
= FLD_MOD(l
, cinfo
->regm_dispc
> 0 ? cinfo
->regm_dispc
- 1 : 0,
1515 regm_dispc_start
, regm_dispc_end
);
1516 /* DSIPROTO_CLOCK_DIV */
1517 l
= FLD_MOD(l
, cinfo
->regm_dsi
> 0 ? cinfo
->regm_dsi
- 1 : 0,
1518 regm_dsi_start
, regm_dsi_end
);
1519 dsi_write_reg(dsidev
, DSI_PLL_CONFIGURATION1
, l
);
1521 BUG_ON(cinfo
->fint
< dsi
->fint_min
|| cinfo
->fint
> dsi
->fint_max
);
1523 if (dss_has_feature(FEAT_DSI_PLL_FREQSEL
)) {
1524 f
= cinfo
->fint
< 1000000 ? 0x3 :
1525 cinfo
->fint
< 1250000 ? 0x4 :
1526 cinfo
->fint
< 1500000 ? 0x5 :
1527 cinfo
->fint
< 1750000 ? 0x6 :
1531 l
= dsi_read_reg(dsidev
, DSI_PLL_CONFIGURATION2
);
1533 if (dss_has_feature(FEAT_DSI_PLL_FREQSEL
))
1534 l
= FLD_MOD(l
, f
, 4, 1); /* DSI_PLL_FREQSEL */
1535 l
= FLD_MOD(l
, cinfo
->use_sys_clk
? 0 : 1,
1536 11, 11); /* DSI_PLL_CLKSEL */
1537 l
= FLD_MOD(l
, cinfo
->highfreq
,
1538 12, 12); /* DSI_PLL_HIGHFREQ */
1539 l
= FLD_MOD(l
, 1, 13, 13); /* DSI_PLL_REFEN */
1540 l
= FLD_MOD(l
, 0, 14, 14); /* DSIPHY_CLKINEN */
1541 l
= FLD_MOD(l
, 1, 20, 20); /* DSI_HSDIVBYPASS */
1542 dsi_write_reg(dsidev
, DSI_PLL_CONFIGURATION2
, l
);
1544 REG_FLD_MOD(dsidev
, DSI_PLL_GO
, 1, 0, 0); /* DSI_PLL_GO */
1546 if (wait_for_bit_change(dsidev
, DSI_PLL_GO
, 0, 0) != 0) {
1547 DSSERR("dsi pll go bit not going down.\n");
1552 if (wait_for_bit_change(dsidev
, DSI_PLL_STATUS
, 1, 1) != 1) {
1553 DSSERR("cannot lock PLL\n");
1558 dsi
->pll_locked
= 1;
1560 l
= dsi_read_reg(dsidev
, DSI_PLL_CONFIGURATION2
);
1561 l
= FLD_MOD(l
, 0, 0, 0); /* DSI_PLL_IDLE */
1562 l
= FLD_MOD(l
, 0, 5, 5); /* DSI_PLL_PLLLPMODE */
1563 l
= FLD_MOD(l
, 0, 6, 6); /* DSI_PLL_LOWCURRSTBY */
1564 l
= FLD_MOD(l
, 0, 7, 7); /* DSI_PLL_TIGHTPHASELOCK */
1565 l
= FLD_MOD(l
, 0, 8, 8); /* DSI_PLL_DRIFTGUARDEN */
1566 l
= FLD_MOD(l
, 0, 10, 9); /* DSI_PLL_LOCKSEL */
1567 l
= FLD_MOD(l
, 1, 13, 13); /* DSI_PLL_REFEN */
1568 l
= FLD_MOD(l
, 1, 14, 14); /* DSIPHY_CLKINEN */
1569 l
= FLD_MOD(l
, 0, 15, 15); /* DSI_BYPASSEN */
1570 l
= FLD_MOD(l
, 1, 16, 16); /* DSS_CLOCK_EN */
1571 l
= FLD_MOD(l
, 0, 17, 17); /* DSS_CLOCK_PWDN */
1572 l
= FLD_MOD(l
, 1, 18, 18); /* DSI_PROTO_CLOCK_EN */
1573 l
= FLD_MOD(l
, 0, 19, 19); /* DSI_PROTO_CLOCK_PWDN */
1574 l
= FLD_MOD(l
, 0, 20, 20); /* DSI_HSDIVBYPASS */
1575 dsi_write_reg(dsidev
, DSI_PLL_CONFIGURATION2
, l
);
1577 DSSDBG("PLL config done\n");
1582 int dsi_pll_init(struct platform_device
*dsidev
, bool enable_hsclk
,
1585 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1587 enum dsi_pll_power_state pwstate
;
1589 DSSDBG("PLL init\n");
1591 if (dsi
->vdds_dsi_reg
== NULL
) {
1592 struct regulator
*vdds_dsi
;
1594 vdds_dsi
= regulator_get(&dsi
->pdev
->dev
, "vdds_dsi");
1596 if (IS_ERR(vdds_dsi
)) {
1597 DSSERR("can't get VDDS_DSI regulator\n");
1598 return PTR_ERR(vdds_dsi
);
1601 dsi
->vdds_dsi_reg
= vdds_dsi
;
1605 dsi_enable_pll_clock(dsidev
, 1);
1607 * Note: SCP CLK is not required on OMAP3, but it is required on OMAP4.
1609 dsi_enable_scp_clk(dsidev
);
1611 if (!dsi
->vdds_dsi_enabled
) {
1612 r
= regulator_enable(dsi
->vdds_dsi_reg
);
1615 dsi
->vdds_dsi_enabled
= true;
1618 /* XXX PLL does not come out of reset without this... */
1619 dispc_pck_free_enable(1);
1621 if (wait_for_bit_change(dsidev
, DSI_PLL_STATUS
, 0, 1) != 1) {
1622 DSSERR("PLL not coming out of reset.\n");
1624 dispc_pck_free_enable(0);
1628 /* XXX ... but if left on, we get problems when planes do not
1629 * fill the whole display. No idea about this */
1630 dispc_pck_free_enable(0);
1632 if (enable_hsclk
&& enable_hsdiv
)
1633 pwstate
= DSI_PLL_POWER_ON_ALL
;
1634 else if (enable_hsclk
)
1635 pwstate
= DSI_PLL_POWER_ON_HSCLK
;
1636 else if (enable_hsdiv
)
1637 pwstate
= DSI_PLL_POWER_ON_DIV
;
1639 pwstate
= DSI_PLL_POWER_OFF
;
1641 r
= dsi_pll_power(dsidev
, pwstate
);
1646 DSSDBG("PLL init done\n");
1650 if (dsi
->vdds_dsi_enabled
) {
1651 regulator_disable(dsi
->vdds_dsi_reg
);
1652 dsi
->vdds_dsi_enabled
= false;
1655 dsi_disable_scp_clk(dsidev
);
1657 dsi_enable_pll_clock(dsidev
, 0);
1661 void dsi_pll_uninit(struct platform_device
*dsidev
, bool disconnect_lanes
)
1663 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1665 dsi
->pll_locked
= 0;
1666 dsi_pll_power(dsidev
, DSI_PLL_POWER_OFF
);
1667 if (disconnect_lanes
) {
1668 WARN_ON(!dsi
->vdds_dsi_enabled
);
1669 regulator_disable(dsi
->vdds_dsi_reg
);
1670 dsi
->vdds_dsi_enabled
= false;
1673 dsi_disable_scp_clk(dsidev
);
1675 dsi_enable_pll_clock(dsidev
, 0);
1677 DSSDBG("PLL uninit done\n");
1680 static void dsi_dump_dsidev_clocks(struct platform_device
*dsidev
,
1683 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1684 struct dsi_clock_info
*cinfo
= &dsi
->current_cinfo
;
1685 enum omap_dss_clk_source dispc_clk_src
, dsi_clk_src
;
1686 int dsi_module
= dsi_get_dsidev_id(dsidev
);
1688 dispc_clk_src
= dss_get_dispc_clk_source();
1689 dsi_clk_src
= dss_get_dsi_clk_source(dsi_module
);
1693 seq_printf(s
, "- DSI%d PLL -\n", dsi_module
+ 1);
1695 seq_printf(s
, "dsi pll source = %s\n",
1696 cinfo
->use_sys_clk
? "dss_sys_clk" : "pclkfree");
1698 seq_printf(s
, "Fint\t\t%-16luregn %u\n", cinfo
->fint
, cinfo
->regn
);
1700 seq_printf(s
, "CLKIN4DDR\t%-16luregm %u\n",
1701 cinfo
->clkin4ddr
, cinfo
->regm
);
1703 seq_printf(s
, "%s (%s)\t%-16luregm_dispc %u\t(%s)\n",
1704 dss_get_generic_clk_source_name(dispc_clk_src
),
1705 dss_feat_get_clk_source_name(dispc_clk_src
),
1706 cinfo
->dsi_pll_hsdiv_dispc_clk
,
1708 dispc_clk_src
== OMAP_DSS_CLK_SRC_FCK
?
1711 seq_printf(s
, "%s (%s)\t%-16luregm_dsi %u\t(%s)\n",
1712 dss_get_generic_clk_source_name(dsi_clk_src
),
1713 dss_feat_get_clk_source_name(dsi_clk_src
),
1714 cinfo
->dsi_pll_hsdiv_dsi_clk
,
1716 dsi_clk_src
== OMAP_DSS_CLK_SRC_FCK
?
1719 seq_printf(s
, "- DSI%d -\n", dsi_module
+ 1);
1721 seq_printf(s
, "dsi fclk source = %s (%s)\n",
1722 dss_get_generic_clk_source_name(dsi_clk_src
),
1723 dss_feat_get_clk_source_name(dsi_clk_src
));
1725 seq_printf(s
, "DSI_FCLK\t%lu\n", dsi_fclk_rate(dsidev
));
1727 seq_printf(s
, "DDR_CLK\t\t%lu\n",
1728 cinfo
->clkin4ddr
/ 4);
1730 seq_printf(s
, "TxByteClkHS\t%lu\n", dsi_get_txbyteclkhs(dsidev
));
1732 seq_printf(s
, "LP_CLK\t\t%lu\n", cinfo
->lp_clk
);
1737 void dsi_dump_clocks(struct seq_file
*s
)
1739 struct platform_device
*dsidev
;
1742 for (i
= 0; i
< MAX_NUM_DSI
; i
++) {
1743 dsidev
= dsi_get_dsidev_from_id(i
);
1745 dsi_dump_dsidev_clocks(dsidev
, s
);
1749 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
1750 static void dsi_dump_dsidev_irqs(struct platform_device
*dsidev
,
1753 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
1754 unsigned long flags
;
1755 struct dsi_irq_stats stats
;
1756 int dsi_module
= dsi_get_dsidev_id(dsidev
);
1758 spin_lock_irqsave(&dsi
->irq_stats_lock
, flags
);
1760 stats
= dsi
->irq_stats
;
1761 memset(&dsi
->irq_stats
, 0, sizeof(dsi
->irq_stats
));
1762 dsi
->irq_stats
.last_reset
= jiffies
;
1764 spin_unlock_irqrestore(&dsi
->irq_stats_lock
, flags
);
1766 seq_printf(s
, "period %u ms\n",
1767 jiffies_to_msecs(jiffies
- stats
.last_reset
));
1769 seq_printf(s
, "irqs %d\n", stats
.irq_count
);
1771 seq_printf(s, "%-20s %10d\n", #x, stats.dsi_irqs[ffs(DSI_IRQ_##x)-1]);
1773 seq_printf(s
, "-- DSI%d interrupts --\n", dsi_module
+ 1);
1789 PIS(LDO_POWER_GOOD
);
1794 seq_printf(s, "%-20s %10d %10d %10d %10d\n", #x, \
1795 stats.vc_irqs[0][ffs(DSI_VC_IRQ_##x)-1], \
1796 stats.vc_irqs[1][ffs(DSI_VC_IRQ_##x)-1], \
1797 stats.vc_irqs[2][ffs(DSI_VC_IRQ_##x)-1], \
1798 stats.vc_irqs[3][ffs(DSI_VC_IRQ_##x)-1]);
1800 seq_printf(s
, "-- VC interrupts --\n");
1809 PIS(PP_BUSY_CHANGE
);
1813 seq_printf(s, "%-20s %10d\n", #x, \
1814 stats.cio_irqs[ffs(DSI_CIO_IRQ_##x)-1]);
1816 seq_printf(s
, "-- CIO interrupts --\n");
1829 PIS(ERRCONTENTIONLP0_1
);
1830 PIS(ERRCONTENTIONLP1_1
);
1831 PIS(ERRCONTENTIONLP0_2
);
1832 PIS(ERRCONTENTIONLP1_2
);
1833 PIS(ERRCONTENTIONLP0_3
);
1834 PIS(ERRCONTENTIONLP1_3
);
1835 PIS(ULPSACTIVENOT_ALL0
);
1836 PIS(ULPSACTIVENOT_ALL1
);
1840 static void dsi1_dump_irqs(struct seq_file
*s
)
1842 struct platform_device
*dsidev
= dsi_get_dsidev_from_id(0);
1844 dsi_dump_dsidev_irqs(dsidev
, s
);
1847 static void dsi2_dump_irqs(struct seq_file
*s
)
1849 struct platform_device
*dsidev
= dsi_get_dsidev_from_id(1);
1851 dsi_dump_dsidev_irqs(dsidev
, s
);
1854 void dsi_create_debugfs_files_irq(struct dentry
*debugfs_dir
,
1855 const struct file_operations
*debug_fops
)
1857 struct platform_device
*dsidev
;
1859 dsidev
= dsi_get_dsidev_from_id(0);
1861 debugfs_create_file("dsi1_irqs", S_IRUGO
, debugfs_dir
,
1862 &dsi1_dump_irqs
, debug_fops
);
1864 dsidev
= dsi_get_dsidev_from_id(1);
1866 debugfs_create_file("dsi2_irqs", S_IRUGO
, debugfs_dir
,
1867 &dsi2_dump_irqs
, debug_fops
);
1871 static void dsi_dump_dsidev_regs(struct platform_device
*dsidev
,
1874 #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, dsi_read_reg(dsidev, r))
1876 dss_clk_enable(DSS_CLK_ICK
| DSS_CLK_FCK
);
1877 dsi_enable_scp_clk(dsidev
);
1879 DUMPREG(DSI_REVISION
);
1880 DUMPREG(DSI_SYSCONFIG
);
1881 DUMPREG(DSI_SYSSTATUS
);
1882 DUMPREG(DSI_IRQSTATUS
);
1883 DUMPREG(DSI_IRQENABLE
);
1885 DUMPREG(DSI_COMPLEXIO_CFG1
);
1886 DUMPREG(DSI_COMPLEXIO_IRQ_STATUS
);
1887 DUMPREG(DSI_COMPLEXIO_IRQ_ENABLE
);
1888 DUMPREG(DSI_CLK_CTRL
);
1889 DUMPREG(DSI_TIMING1
);
1890 DUMPREG(DSI_TIMING2
);
1891 DUMPREG(DSI_VM_TIMING1
);
1892 DUMPREG(DSI_VM_TIMING2
);
1893 DUMPREG(DSI_VM_TIMING3
);
1894 DUMPREG(DSI_CLK_TIMING
);
1895 DUMPREG(DSI_TX_FIFO_VC_SIZE
);
1896 DUMPREG(DSI_RX_FIFO_VC_SIZE
);
1897 DUMPREG(DSI_COMPLEXIO_CFG2
);
1898 DUMPREG(DSI_RX_FIFO_VC_FULLNESS
);
1899 DUMPREG(DSI_VM_TIMING4
);
1900 DUMPREG(DSI_TX_FIFO_VC_EMPTINESS
);
1901 DUMPREG(DSI_VM_TIMING5
);
1902 DUMPREG(DSI_VM_TIMING6
);
1903 DUMPREG(DSI_VM_TIMING7
);
1904 DUMPREG(DSI_STOPCLK_TIMING
);
1906 DUMPREG(DSI_VC_CTRL(0));
1907 DUMPREG(DSI_VC_TE(0));
1908 DUMPREG(DSI_VC_LONG_PACKET_HEADER(0));
1909 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(0));
1910 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(0));
1911 DUMPREG(DSI_VC_IRQSTATUS(0));
1912 DUMPREG(DSI_VC_IRQENABLE(0));
1914 DUMPREG(DSI_VC_CTRL(1));
1915 DUMPREG(DSI_VC_TE(1));
1916 DUMPREG(DSI_VC_LONG_PACKET_HEADER(1));
1917 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(1));
1918 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(1));
1919 DUMPREG(DSI_VC_IRQSTATUS(1));
1920 DUMPREG(DSI_VC_IRQENABLE(1));
1922 DUMPREG(DSI_VC_CTRL(2));
1923 DUMPREG(DSI_VC_TE(2));
1924 DUMPREG(DSI_VC_LONG_PACKET_HEADER(2));
1925 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(2));
1926 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(2));
1927 DUMPREG(DSI_VC_IRQSTATUS(2));
1928 DUMPREG(DSI_VC_IRQENABLE(2));
1930 DUMPREG(DSI_VC_CTRL(3));
1931 DUMPREG(DSI_VC_TE(3));
1932 DUMPREG(DSI_VC_LONG_PACKET_HEADER(3));
1933 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(3));
1934 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(3));
1935 DUMPREG(DSI_VC_IRQSTATUS(3));
1936 DUMPREG(DSI_VC_IRQENABLE(3));
1938 DUMPREG(DSI_DSIPHY_CFG0
);
1939 DUMPREG(DSI_DSIPHY_CFG1
);
1940 DUMPREG(DSI_DSIPHY_CFG2
);
1941 DUMPREG(DSI_DSIPHY_CFG5
);
1943 DUMPREG(DSI_PLL_CONTROL
);
1944 DUMPREG(DSI_PLL_STATUS
);
1945 DUMPREG(DSI_PLL_GO
);
1946 DUMPREG(DSI_PLL_CONFIGURATION1
);
1947 DUMPREG(DSI_PLL_CONFIGURATION2
);
1949 dsi_disable_scp_clk(dsidev
);
1950 dss_clk_disable(DSS_CLK_ICK
| DSS_CLK_FCK
);
1954 static void dsi1_dump_regs(struct seq_file
*s
)
1956 struct platform_device
*dsidev
= dsi_get_dsidev_from_id(0);
1958 dsi_dump_dsidev_regs(dsidev
, s
);
1961 static void dsi2_dump_regs(struct seq_file
*s
)
1963 struct platform_device
*dsidev
= dsi_get_dsidev_from_id(1);
1965 dsi_dump_dsidev_regs(dsidev
, s
);
1968 void dsi_create_debugfs_files_reg(struct dentry
*debugfs_dir
,
1969 const struct file_operations
*debug_fops
)
1971 struct platform_device
*dsidev
;
1973 dsidev
= dsi_get_dsidev_from_id(0);
1975 debugfs_create_file("dsi1_regs", S_IRUGO
, debugfs_dir
,
1976 &dsi1_dump_regs
, debug_fops
);
1978 dsidev
= dsi_get_dsidev_from_id(1);
1980 debugfs_create_file("dsi2_regs", S_IRUGO
, debugfs_dir
,
1981 &dsi2_dump_regs
, debug_fops
);
1983 enum dsi_cio_power_state
{
1984 DSI_COMPLEXIO_POWER_OFF
= 0x0,
1985 DSI_COMPLEXIO_POWER_ON
= 0x1,
1986 DSI_COMPLEXIO_POWER_ULPS
= 0x2,
1989 static int dsi_cio_power(struct platform_device
*dsidev
,
1990 enum dsi_cio_power_state state
)
1995 REG_FLD_MOD(dsidev
, DSI_COMPLEXIO_CFG1
, state
, 28, 27);
1998 while (FLD_GET(dsi_read_reg(dsidev
, DSI_COMPLEXIO_CFG1
),
2001 DSSERR("failed to set complexio power state to "
2011 /* Number of data lanes present on DSI interface */
2012 static inline int dsi_get_num_data_lanes(struct platform_device
*dsidev
)
2014 /* DSI on OMAP3 doesn't have register DSI_GNQ, set number
2015 * of data lanes as 2 by default */
2016 if (dss_has_feature(FEAT_DSI_GNQ
))
2017 return REG_GET(dsidev
, DSI_GNQ
, 11, 9); /* NB_DATA_LANES */
2022 /* Number of data lanes used by the dss device */
2023 static inline int dsi_get_num_data_lanes_dssdev(struct omap_dss_device
*dssdev
)
2025 int num_data_lanes
= 0;
2027 if (dssdev
->phy
.dsi
.data1_lane
!= 0)
2029 if (dssdev
->phy
.dsi
.data2_lane
!= 0)
2031 if (dssdev
->phy
.dsi
.data3_lane
!= 0)
2033 if (dssdev
->phy
.dsi
.data4_lane
!= 0)
2036 return num_data_lanes
;
2039 static unsigned dsi_get_line_buf_size(struct platform_device
*dsidev
)
2043 /* line buffer on OMAP3 is 1024 x 24bits */
2044 /* XXX: for some reason using full buffer size causes
2045 * considerable TX slowdown with update sizes that fill the
2047 if (!dss_has_feature(FEAT_DSI_GNQ
))
2050 val
= REG_GET(dsidev
, DSI_GNQ
, 14, 12); /* VP1_LINE_BUFFER_SIZE */
2054 return 512 * 3; /* 512x24 bits */
2056 return 682 * 3; /* 682x24 bits */
2058 return 853 * 3; /* 853x24 bits */
2060 return 1024 * 3; /* 1024x24 bits */
2062 return 1194 * 3; /* 1194x24 bits */
2064 return 1365 * 3; /* 1365x24 bits */
2070 static void dsi_set_lane_config(struct omap_dss_device
*dssdev
)
2072 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2074 int num_data_lanes_dssdev
= dsi_get_num_data_lanes_dssdev(dssdev
);
2076 int clk_lane
= dssdev
->phy
.dsi
.clk_lane
;
2077 int data1_lane
= dssdev
->phy
.dsi
.data1_lane
;
2078 int data2_lane
= dssdev
->phy
.dsi
.data2_lane
;
2079 int clk_pol
= dssdev
->phy
.dsi
.clk_pol
;
2080 int data1_pol
= dssdev
->phy
.dsi
.data1_pol
;
2081 int data2_pol
= dssdev
->phy
.dsi
.data2_pol
;
2083 r
= dsi_read_reg(dsidev
, DSI_COMPLEXIO_CFG1
);
2084 r
= FLD_MOD(r
, clk_lane
, 2, 0);
2085 r
= FLD_MOD(r
, clk_pol
, 3, 3);
2086 r
= FLD_MOD(r
, data1_lane
, 6, 4);
2087 r
= FLD_MOD(r
, data1_pol
, 7, 7);
2088 r
= FLD_MOD(r
, data2_lane
, 10, 8);
2089 r
= FLD_MOD(r
, data2_pol
, 11, 11);
2090 if (num_data_lanes_dssdev
> 2) {
2091 int data3_lane
= dssdev
->phy
.dsi
.data3_lane
;
2092 int data3_pol
= dssdev
->phy
.dsi
.data3_pol
;
2094 r
= FLD_MOD(r
, data3_lane
, 14, 12);
2095 r
= FLD_MOD(r
, data3_pol
, 15, 15);
2097 if (num_data_lanes_dssdev
> 3) {
2098 int data4_lane
= dssdev
->phy
.dsi
.data4_lane
;
2099 int data4_pol
= dssdev
->phy
.dsi
.data4_pol
;
2101 r
= FLD_MOD(r
, data4_lane
, 18, 16);
2102 r
= FLD_MOD(r
, data4_pol
, 19, 19);
2104 dsi_write_reg(dsidev
, DSI_COMPLEXIO_CFG1
, r
);
2106 /* The configuration of the DSI complex I/O (number of data lanes,
2107 position, differential order) should not be changed while
2108 DSS.DSI_CLK_CRTRL[20] LP_CLK_ENABLE bit is set to 1. In order for
2109 the hardware to take into account a new configuration of the complex
2110 I/O (done in DSS.DSI_COMPLEXIO_CFG1 register), it is recommended to
2111 follow this sequence: First set the DSS.DSI_CTRL[0] IF_EN bit to 1,
2112 then reset the DSS.DSI_CTRL[0] IF_EN to 0, then set
2113 DSS.DSI_CLK_CTRL[20] LP_CLK_ENABLE to 1 and finally set again the
2114 DSS.DSI_CTRL[0] IF_EN bit to 1. If the sequence is not followed, the
2115 DSI complex I/O configuration is unknown. */
2118 REG_FLD_MOD(dsidev, DSI_CTRL, 1, 0, 0);
2119 REG_FLD_MOD(dsidev, DSI_CTRL, 0, 0, 0);
2120 REG_FLD_MOD(dsidev, DSI_CLK_CTRL, 1, 20, 20);
2121 REG_FLD_MOD(dsidev, DSI_CTRL, 1, 0, 0);
2125 static inline unsigned ns2ddr(struct platform_device
*dsidev
, unsigned ns
)
2127 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2129 /* convert time in ns to ddr ticks, rounding up */
2130 unsigned long ddr_clk
= dsi
->current_cinfo
.clkin4ddr
/ 4;
2131 return (ns
* (ddr_clk
/ 1000 / 1000) + 999) / 1000;
2134 static inline unsigned ddr2ns(struct platform_device
*dsidev
, unsigned ddr
)
2136 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2138 unsigned long ddr_clk
= dsi
->current_cinfo
.clkin4ddr
/ 4;
2139 return ddr
* 1000 * 1000 / (ddr_clk
/ 1000);
2142 static void dsi_cio_timings(struct platform_device
*dsidev
)
2145 u32 ths_prepare
, ths_prepare_ths_zero
, ths_trail
, ths_exit
;
2146 u32 tlpx_half
, tclk_trail
, tclk_zero
;
2149 /* calculate timings */
2151 /* 1 * DDR_CLK = 2 * UI */
2153 /* min 40ns + 4*UI max 85ns + 6*UI */
2154 ths_prepare
= ns2ddr(dsidev
, 70) + 2;
2156 /* min 145ns + 10*UI */
2157 ths_prepare_ths_zero
= ns2ddr(dsidev
, 175) + 2;
2159 /* min max(8*UI, 60ns+4*UI) */
2160 ths_trail
= ns2ddr(dsidev
, 60) + 5;
2163 ths_exit
= ns2ddr(dsidev
, 145);
2166 tlpx_half
= ns2ddr(dsidev
, 25);
2169 tclk_trail
= ns2ddr(dsidev
, 60) + 2;
2171 /* min 38ns, max 95ns */
2172 tclk_prepare
= ns2ddr(dsidev
, 65);
2174 /* min tclk-prepare + tclk-zero = 300ns */
2175 tclk_zero
= ns2ddr(dsidev
, 260);
2177 DSSDBG("ths_prepare %u (%uns), ths_prepare_ths_zero %u (%uns)\n",
2178 ths_prepare
, ddr2ns(dsidev
, ths_prepare
),
2179 ths_prepare_ths_zero
, ddr2ns(dsidev
, ths_prepare_ths_zero
));
2180 DSSDBG("ths_trail %u (%uns), ths_exit %u (%uns)\n",
2181 ths_trail
, ddr2ns(dsidev
, ths_trail
),
2182 ths_exit
, ddr2ns(dsidev
, ths_exit
));
2184 DSSDBG("tlpx_half %u (%uns), tclk_trail %u (%uns), "
2185 "tclk_zero %u (%uns)\n",
2186 tlpx_half
, ddr2ns(dsidev
, tlpx_half
),
2187 tclk_trail
, ddr2ns(dsidev
, tclk_trail
),
2188 tclk_zero
, ddr2ns(dsidev
, tclk_zero
));
2189 DSSDBG("tclk_prepare %u (%uns)\n",
2190 tclk_prepare
, ddr2ns(dsidev
, tclk_prepare
));
2192 /* program timings */
2194 r
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG0
);
2195 r
= FLD_MOD(r
, ths_prepare
, 31, 24);
2196 r
= FLD_MOD(r
, ths_prepare_ths_zero
, 23, 16);
2197 r
= FLD_MOD(r
, ths_trail
, 15, 8);
2198 r
= FLD_MOD(r
, ths_exit
, 7, 0);
2199 dsi_write_reg(dsidev
, DSI_DSIPHY_CFG0
, r
);
2201 r
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG1
);
2202 r
= FLD_MOD(r
, tlpx_half
, 22, 16);
2203 r
= FLD_MOD(r
, tclk_trail
, 15, 8);
2204 r
= FLD_MOD(r
, tclk_zero
, 7, 0);
2205 dsi_write_reg(dsidev
, DSI_DSIPHY_CFG1
, r
);
2207 r
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG2
);
2208 r
= FLD_MOD(r
, tclk_prepare
, 7, 0);
2209 dsi_write_reg(dsidev
, DSI_DSIPHY_CFG2
, r
);
2212 static void dsi_cio_enable_lane_override(struct omap_dss_device
*dssdev
,
2213 enum dsi_lane lanes
)
2215 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2216 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2217 int clk_lane
= dssdev
->phy
.dsi
.clk_lane
;
2218 int data1_lane
= dssdev
->phy
.dsi
.data1_lane
;
2219 int data2_lane
= dssdev
->phy
.dsi
.data2_lane
;
2220 int data3_lane
= dssdev
->phy
.dsi
.data3_lane
;
2221 int data4_lane
= dssdev
->phy
.dsi
.data4_lane
;
2222 int clk_pol
= dssdev
->phy
.dsi
.clk_pol
;
2223 int data1_pol
= dssdev
->phy
.dsi
.data1_pol
;
2224 int data2_pol
= dssdev
->phy
.dsi
.data2_pol
;
2225 int data3_pol
= dssdev
->phy
.dsi
.data3_pol
;
2226 int data4_pol
= dssdev
->phy
.dsi
.data4_pol
;
2229 u8 lptxscp_start
= dsi
->num_data_lanes
== 2 ? 22 : 26;
2231 if (lanes
& DSI_CLK_P
)
2232 l
|= 1 << ((clk_lane
- 1) * 2 + (clk_pol
? 0 : 1));
2233 if (lanes
& DSI_CLK_N
)
2234 l
|= 1 << ((clk_lane
- 1) * 2 + (clk_pol
? 1 : 0));
2236 if (lanes
& DSI_DATA1_P
)
2237 l
|= 1 << ((data1_lane
- 1) * 2 + (data1_pol
? 0 : 1));
2238 if (lanes
& DSI_DATA1_N
)
2239 l
|= 1 << ((data1_lane
- 1) * 2 + (data1_pol
? 1 : 0));
2241 if (lanes
& DSI_DATA2_P
)
2242 l
|= 1 << ((data2_lane
- 1) * 2 + (data2_pol
? 0 : 1));
2243 if (lanes
& DSI_DATA2_N
)
2244 l
|= 1 << ((data2_lane
- 1) * 2 + (data2_pol
? 1 : 0));
2246 if (lanes
& DSI_DATA3_P
)
2247 l
|= 1 << ((data3_lane
- 1) * 2 + (data3_pol
? 0 : 1));
2248 if (lanes
& DSI_DATA3_N
)
2249 l
|= 1 << ((data3_lane
- 1) * 2 + (data3_pol
? 1 : 0));
2251 if (lanes
& DSI_DATA4_P
)
2252 l
|= 1 << ((data4_lane
- 1) * 2 + (data4_pol
? 0 : 1));
2253 if (lanes
& DSI_DATA4_N
)
2254 l
|= 1 << ((data4_lane
- 1) * 2 + (data4_pol
? 1 : 0));
2256 * Bits in REGLPTXSCPDAT4TO0DXDY:
2264 /* Set the lane override configuration */
2266 /* REGLPTXSCPDAT4TO0DXDY */
2267 REG_FLD_MOD(dsidev
, DSI_DSIPHY_CFG10
, l
, lptxscp_start
, 17);
2269 /* Enable lane override */
2272 REG_FLD_MOD(dsidev
, DSI_DSIPHY_CFG10
, 1, 27, 27);
2275 static void dsi_cio_disable_lane_override(struct platform_device
*dsidev
)
2277 /* Disable lane override */
2278 REG_FLD_MOD(dsidev
, DSI_DSIPHY_CFG10
, 0, 27, 27); /* ENLPTXSCPDAT */
2279 /* Reset the lane override configuration */
2280 /* REGLPTXSCPDAT4TO0DXDY */
2281 REG_FLD_MOD(dsidev
, DSI_DSIPHY_CFG10
, 0, 22, 17);
2284 static int dsi_cio_wait_tx_clk_esc_reset(struct omap_dss_device
*dssdev
)
2286 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2291 if (dss_has_feature(FEAT_DSI_REVERSE_TXCLKESC
)) {
2305 if (dssdev
->phy
.dsi
.clk_lane
!= 0)
2306 in_use
[dssdev
->phy
.dsi
.clk_lane
- 1] = true;
2307 if (dssdev
->phy
.dsi
.data1_lane
!= 0)
2308 in_use
[dssdev
->phy
.dsi
.data1_lane
- 1] = true;
2309 if (dssdev
->phy
.dsi
.data2_lane
!= 0)
2310 in_use
[dssdev
->phy
.dsi
.data2_lane
- 1] = true;
2318 l
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG5
);
2321 for (i
= 0; i
< 3; ++i
) {
2322 if (!in_use
[i
] || (l
& (1 << bits
[i
])))
2330 for (i
= 0; i
< 3; ++i
) {
2331 if (!in_use
[i
] || (l
& (1 << bits
[i
])))
2334 DSSERR("CIO TXCLKESC%d domain not coming " \
2335 "out of reset\n", i
);
2344 static int dsi_cio_init(struct omap_dss_device
*dssdev
)
2346 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2347 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2349 int num_data_lanes_dssdev
= dsi_get_num_data_lanes_dssdev(dssdev
);
2354 if (dsi
->dsi_mux_pads
)
2355 dsi
->dsi_mux_pads(true);
2357 dsi_enable_scp_clk(dsidev
);
2359 /* A dummy read using the SCP interface to any DSIPHY register is
2360 * required after DSIPHY reset to complete the reset of the DSI complex
2362 dsi_read_reg(dsidev
, DSI_DSIPHY_CFG5
);
2364 if (wait_for_bit_change(dsidev
, DSI_DSIPHY_CFG5
, 30, 1) != 1) {
2365 DSSERR("CIO SCP Clock domain not coming out of reset.\n");
2367 goto err_scp_clk_dom
;
2370 dsi_set_lane_config(dssdev
);
2372 /* set TX STOP MODE timer to maximum for this operation */
2373 l
= dsi_read_reg(dsidev
, DSI_TIMING1
);
2374 l
= FLD_MOD(l
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
2375 l
= FLD_MOD(l
, 1, 14, 14); /* STOP_STATE_X16_IO */
2376 l
= FLD_MOD(l
, 1, 13, 13); /* STOP_STATE_X4_IO */
2377 l
= FLD_MOD(l
, 0x1fff, 12, 0); /* STOP_STATE_COUNTER_IO */
2378 dsi_write_reg(dsidev
, DSI_TIMING1
, l
);
2380 if (dsi
->ulps_enabled
) {
2381 u32 lane_mask
= DSI_CLK_P
| DSI_DATA1_P
| DSI_DATA2_P
;
2383 DSSDBG("manual ulps exit\n");
2385 /* ULPS is exited by Mark-1 state for 1ms, followed by
2386 * stop state. DSS HW cannot do this via the normal
2387 * ULPS exit sequence, as after reset the DSS HW thinks
2388 * that we are not in ULPS mode, and refuses to send the
2389 * sequence. So we need to send the ULPS exit sequence
2393 if (num_data_lanes_dssdev
> 2)
2394 lane_mask
|= DSI_DATA3_P
;
2396 if (num_data_lanes_dssdev
> 3)
2397 lane_mask
|= DSI_DATA4_P
;
2399 dsi_cio_enable_lane_override(dssdev
, lane_mask
);
2402 r
= dsi_cio_power(dsidev
, DSI_COMPLEXIO_POWER_ON
);
2406 if (wait_for_bit_change(dsidev
, DSI_COMPLEXIO_CFG1
, 29, 1) != 1) {
2407 DSSERR("CIO PWR clock domain not coming out of reset.\n");
2409 goto err_cio_pwr_dom
;
2412 dsi_if_enable(dsidev
, true);
2413 dsi_if_enable(dsidev
, false);
2414 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, 1, 20, 20); /* LP_CLK_ENABLE */
2416 r
= dsi_cio_wait_tx_clk_esc_reset(dssdev
);
2418 goto err_tx_clk_esc_rst
;
2420 if (dsi
->ulps_enabled
) {
2421 /* Keep Mark-1 state for 1ms (as per DSI spec) */
2422 ktime_t wait
= ns_to_ktime(1000 * 1000);
2423 set_current_state(TASK_UNINTERRUPTIBLE
);
2424 schedule_hrtimeout(&wait
, HRTIMER_MODE_REL
);
2426 /* Disable the override. The lanes should be set to Mark-11
2427 * state by the HW */
2428 dsi_cio_disable_lane_override(dsidev
);
2431 /* FORCE_TX_STOP_MODE_IO */
2432 REG_FLD_MOD(dsidev
, DSI_TIMING1
, 0, 15, 15);
2434 dsi_cio_timings(dsidev
);
2436 dsi
->ulps_enabled
= false;
2438 DSSDBG("CIO init done\n");
2443 REG_FLD_MOD(dsidev
, DSI_CLK_CTRL
, 0, 20, 20); /* LP_CLK_ENABLE */
2445 dsi_cio_power(dsidev
, DSI_COMPLEXIO_POWER_OFF
);
2447 if (dsi
->ulps_enabled
)
2448 dsi_cio_disable_lane_override(dsidev
);
2450 dsi_disable_scp_clk(dsidev
);
2451 if (dsi
->dsi_mux_pads
)
2452 dsi
->dsi_mux_pads(false);
2456 static void dsi_cio_uninit(struct platform_device
*dsidev
)
2458 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2460 dsi_cio_power(dsidev
, DSI_COMPLEXIO_POWER_OFF
);
2461 dsi_disable_scp_clk(dsidev
);
2462 if (dsi
->dsi_mux_pads
)
2463 dsi
->dsi_mux_pads(false);
2466 static int _dsi_wait_reset(struct platform_device
*dsidev
)
2470 while (REG_GET(dsidev
, DSI_SYSSTATUS
, 0, 0) == 0) {
2472 DSSERR("soft reset failed\n");
2481 static int _dsi_reset(struct platform_device
*dsidev
)
2484 REG_FLD_MOD(dsidev
, DSI_SYSCONFIG
, 1, 1, 1);
2485 return _dsi_wait_reset(dsidev
);
2488 static void dsi_config_tx_fifo(struct platform_device
*dsidev
,
2489 enum fifo_size size1
, enum fifo_size size2
,
2490 enum fifo_size size3
, enum fifo_size size4
)
2492 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2497 dsi
->vc
[0].fifo_size
= size1
;
2498 dsi
->vc
[1].fifo_size
= size2
;
2499 dsi
->vc
[2].fifo_size
= size3
;
2500 dsi
->vc
[3].fifo_size
= size4
;
2502 for (i
= 0; i
< 4; i
++) {
2504 int size
= dsi
->vc
[i
].fifo_size
;
2506 if (add
+ size
> 4) {
2507 DSSERR("Illegal FIFO configuration\n");
2511 v
= FLD_VAL(add
, 2, 0) | FLD_VAL(size
, 7, 4);
2513 /*DSSDBG("TX FIFO vc %d: size %d, add %d\n", i, size, add); */
2517 dsi_write_reg(dsidev
, DSI_TX_FIFO_VC_SIZE
, r
);
2520 static void dsi_config_rx_fifo(struct platform_device
*dsidev
,
2521 enum fifo_size size1
, enum fifo_size size2
,
2522 enum fifo_size size3
, enum fifo_size size4
)
2524 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2529 dsi
->vc
[0].fifo_size
= size1
;
2530 dsi
->vc
[1].fifo_size
= size2
;
2531 dsi
->vc
[2].fifo_size
= size3
;
2532 dsi
->vc
[3].fifo_size
= size4
;
2534 for (i
= 0; i
< 4; i
++) {
2536 int size
= dsi
->vc
[i
].fifo_size
;
2538 if (add
+ size
> 4) {
2539 DSSERR("Illegal FIFO configuration\n");
2543 v
= FLD_VAL(add
, 2, 0) | FLD_VAL(size
, 7, 4);
2545 /*DSSDBG("RX FIFO vc %d: size %d, add %d\n", i, size, add); */
2549 dsi_write_reg(dsidev
, DSI_RX_FIFO_VC_SIZE
, r
);
2552 static int dsi_force_tx_stop_mode_io(struct platform_device
*dsidev
)
2556 r
= dsi_read_reg(dsidev
, DSI_TIMING1
);
2557 r
= FLD_MOD(r
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
2558 dsi_write_reg(dsidev
, DSI_TIMING1
, r
);
2560 if (wait_for_bit_change(dsidev
, DSI_TIMING1
, 15, 0) != 0) {
2561 DSSERR("TX_STOP bit not going down\n");
2568 static bool dsi_vc_is_enabled(struct platform_device
*dsidev
, int channel
)
2570 return REG_GET(dsidev
, DSI_VC_CTRL(channel
), 0, 0);
2573 static void dsi_packet_sent_handler_vp(void *data
, u32 mask
)
2575 struct dsi_packet_sent_handler_data
*vp_data
=
2576 (struct dsi_packet_sent_handler_data
*) data
;
2577 struct dsi_data
*dsi
= dsi_get_dsidrv_data(vp_data
->dsidev
);
2578 const int channel
= dsi
->update_channel
;
2579 u8 bit
= dsi
->te_enabled
? 30 : 31;
2581 if (REG_GET(vp_data
->dsidev
, DSI_VC_TE(channel
), bit
, bit
) == 0)
2582 complete(vp_data
->completion
);
2585 static int dsi_sync_vc_vp(struct platform_device
*dsidev
, int channel
)
2587 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2588 DECLARE_COMPLETION_ONSTACK(completion
);
2589 struct dsi_packet_sent_handler_data vp_data
= { dsidev
, &completion
};
2593 bit
= dsi
->te_enabled
? 30 : 31;
2595 r
= dsi_register_isr_vc(dsidev
, channel
, dsi_packet_sent_handler_vp
,
2596 &vp_data
, DSI_VC_IRQ_PACKET_SENT
);
2600 /* Wait for completion only if TE_EN/TE_START is still set */
2601 if (REG_GET(dsidev
, DSI_VC_TE(channel
), bit
, bit
)) {
2602 if (wait_for_completion_timeout(&completion
,
2603 msecs_to_jiffies(10)) == 0) {
2604 DSSERR("Failed to complete previous frame transfer\n");
2610 dsi_unregister_isr_vc(dsidev
, channel
, dsi_packet_sent_handler_vp
,
2611 &vp_data
, DSI_VC_IRQ_PACKET_SENT
);
2615 dsi_unregister_isr_vc(dsidev
, channel
, dsi_packet_sent_handler_vp
,
2616 &vp_data
, DSI_VC_IRQ_PACKET_SENT
);
2621 static void dsi_packet_sent_handler_l4(void *data
, u32 mask
)
2623 struct dsi_packet_sent_handler_data
*l4_data
=
2624 (struct dsi_packet_sent_handler_data
*) data
;
2625 struct dsi_data
*dsi
= dsi_get_dsidrv_data(l4_data
->dsidev
);
2626 const int channel
= dsi
->update_channel
;
2628 if (REG_GET(l4_data
->dsidev
, DSI_VC_CTRL(channel
), 5, 5) == 0)
2629 complete(l4_data
->completion
);
2632 static int dsi_sync_vc_l4(struct platform_device
*dsidev
, int channel
)
2634 DECLARE_COMPLETION_ONSTACK(completion
);
2635 struct dsi_packet_sent_handler_data l4_data
= { dsidev
, &completion
};
2638 r
= dsi_register_isr_vc(dsidev
, channel
, dsi_packet_sent_handler_l4
,
2639 &l4_data
, DSI_VC_IRQ_PACKET_SENT
);
2643 /* Wait for completion only if TX_FIFO_NOT_EMPTY is still set */
2644 if (REG_GET(dsidev
, DSI_VC_CTRL(channel
), 5, 5)) {
2645 if (wait_for_completion_timeout(&completion
,
2646 msecs_to_jiffies(10)) == 0) {
2647 DSSERR("Failed to complete previous l4 transfer\n");
2653 dsi_unregister_isr_vc(dsidev
, channel
, dsi_packet_sent_handler_l4
,
2654 &l4_data
, DSI_VC_IRQ_PACKET_SENT
);
2658 dsi_unregister_isr_vc(dsidev
, channel
, dsi_packet_sent_handler_l4
,
2659 &l4_data
, DSI_VC_IRQ_PACKET_SENT
);
2664 static int dsi_sync_vc(struct platform_device
*dsidev
, int channel
)
2666 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2668 WARN_ON(!dsi_bus_is_locked(dsidev
));
2670 WARN_ON(in_interrupt());
2672 if (!dsi_vc_is_enabled(dsidev
, channel
))
2675 switch (dsi
->vc
[channel
].mode
) {
2676 case DSI_VC_MODE_VP
:
2677 return dsi_sync_vc_vp(dsidev
, channel
);
2678 case DSI_VC_MODE_L4
:
2679 return dsi_sync_vc_l4(dsidev
, channel
);
2685 static int dsi_vc_enable(struct platform_device
*dsidev
, int channel
,
2688 DSSDBG("dsi_vc_enable channel %d, enable %d\n",
2691 enable
= enable
? 1 : 0;
2693 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), enable
, 0, 0);
2695 if (wait_for_bit_change(dsidev
, DSI_VC_CTRL(channel
),
2696 0, enable
) != enable
) {
2697 DSSERR("Failed to set dsi_vc_enable to %d\n", enable
);
2704 static void dsi_vc_initial_config(struct platform_device
*dsidev
, int channel
)
2708 DSSDBGF("%d", channel
);
2710 r
= dsi_read_reg(dsidev
, DSI_VC_CTRL(channel
));
2712 if (FLD_GET(r
, 15, 15)) /* VC_BUSY */
2713 DSSERR("VC(%d) busy when trying to configure it!\n",
2716 r
= FLD_MOD(r
, 0, 1, 1); /* SOURCE, 0 = L4 */
2717 r
= FLD_MOD(r
, 0, 2, 2); /* BTA_SHORT_EN */
2718 r
= FLD_MOD(r
, 0, 3, 3); /* BTA_LONG_EN */
2719 r
= FLD_MOD(r
, 0, 4, 4); /* MODE, 0 = command */
2720 r
= FLD_MOD(r
, 1, 7, 7); /* CS_TX_EN */
2721 r
= FLD_MOD(r
, 1, 8, 8); /* ECC_TX_EN */
2722 r
= FLD_MOD(r
, 0, 9, 9); /* MODE_SPEED, high speed on/off */
2723 if (dss_has_feature(FEAT_DSI_VC_OCP_WIDTH
))
2724 r
= FLD_MOD(r
, 3, 11, 10); /* OCP_WIDTH = 32 bit */
2726 r
= FLD_MOD(r
, 4, 29, 27); /* DMA_RX_REQ_NB = no dma */
2727 r
= FLD_MOD(r
, 4, 23, 21); /* DMA_TX_REQ_NB = no dma */
2729 dsi_write_reg(dsidev
, DSI_VC_CTRL(channel
), r
);
2732 static int dsi_vc_config_l4(struct platform_device
*dsidev
, int channel
)
2734 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2736 if (dsi
->vc
[channel
].mode
== DSI_VC_MODE_L4
)
2739 DSSDBGF("%d", channel
);
2741 dsi_sync_vc(dsidev
, channel
);
2743 dsi_vc_enable(dsidev
, channel
, 0);
2746 if (wait_for_bit_change(dsidev
, DSI_VC_CTRL(channel
), 15, 0) != 0) {
2747 DSSERR("vc(%d) busy when trying to config for L4\n", channel
);
2751 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), 0, 1, 1); /* SOURCE, 0 = L4 */
2753 /* DCS_CMD_ENABLE */
2754 if (dss_has_feature(FEAT_DSI_DCS_CMD_CONFIG_VC
))
2755 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), 0, 30, 30);
2757 dsi_vc_enable(dsidev
, channel
, 1);
2759 dsi
->vc
[channel
].mode
= DSI_VC_MODE_L4
;
2764 static int dsi_vc_config_vp(struct platform_device
*dsidev
, int channel
)
2766 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2768 if (dsi
->vc
[channel
].mode
== DSI_VC_MODE_VP
)
2771 DSSDBGF("%d", channel
);
2773 dsi_sync_vc(dsidev
, channel
);
2775 dsi_vc_enable(dsidev
, channel
, 0);
2778 if (wait_for_bit_change(dsidev
, DSI_VC_CTRL(channel
), 15, 0) != 0) {
2779 DSSERR("vc(%d) busy when trying to config for VP\n", channel
);
2783 /* SOURCE, 1 = video port */
2784 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), 1, 1, 1);
2786 /* DCS_CMD_ENABLE */
2787 if (dss_has_feature(FEAT_DSI_DCS_CMD_CONFIG_VC
))
2788 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), 1, 30, 30);
2790 dsi_vc_enable(dsidev
, channel
, 1);
2792 dsi
->vc
[channel
].mode
= DSI_VC_MODE_VP
;
2798 void omapdss_dsi_vc_enable_hs(struct omap_dss_device
*dssdev
, int channel
,
2801 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2803 DSSDBG("dsi_vc_enable_hs(%d, %d)\n", channel
, enable
);
2805 WARN_ON(!dsi_bus_is_locked(dsidev
));
2807 dsi_vc_enable(dsidev
, channel
, 0);
2808 dsi_if_enable(dsidev
, 0);
2810 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), enable
, 9, 9);
2812 dsi_vc_enable(dsidev
, channel
, 1);
2813 dsi_if_enable(dsidev
, 1);
2815 dsi_force_tx_stop_mode_io(dsidev
);
2817 EXPORT_SYMBOL(omapdss_dsi_vc_enable_hs
);
2819 static void dsi_vc_flush_long_data(struct platform_device
*dsidev
, int channel
)
2821 while (REG_GET(dsidev
, DSI_VC_CTRL(channel
), 20, 20)) {
2823 val
= dsi_read_reg(dsidev
, DSI_VC_SHORT_PACKET_HEADER(channel
));
2824 DSSDBG("\t\tb1 %#02x b2 %#02x b3 %#02x b4 %#02x\n",
2828 (val
>> 24) & 0xff);
2832 static void dsi_show_rx_ack_with_err(u16 err
)
2834 DSSERR("\tACK with ERROR (%#x):\n", err
);
2836 DSSERR("\t\tSoT Error\n");
2838 DSSERR("\t\tSoT Sync Error\n");
2840 DSSERR("\t\tEoT Sync Error\n");
2842 DSSERR("\t\tEscape Mode Entry Command Error\n");
2844 DSSERR("\t\tLP Transmit Sync Error\n");
2846 DSSERR("\t\tHS Receive Timeout Error\n");
2848 DSSERR("\t\tFalse Control Error\n");
2850 DSSERR("\t\t(reserved7)\n");
2852 DSSERR("\t\tECC Error, single-bit (corrected)\n");
2854 DSSERR("\t\tECC Error, multi-bit (not corrected)\n");
2855 if (err
& (1 << 10))
2856 DSSERR("\t\tChecksum Error\n");
2857 if (err
& (1 << 11))
2858 DSSERR("\t\tData type not recognized\n");
2859 if (err
& (1 << 12))
2860 DSSERR("\t\tInvalid VC ID\n");
2861 if (err
& (1 << 13))
2862 DSSERR("\t\tInvalid Transmission Length\n");
2863 if (err
& (1 << 14))
2864 DSSERR("\t\t(reserved14)\n");
2865 if (err
& (1 << 15))
2866 DSSERR("\t\tDSI Protocol Violation\n");
2869 static u16
dsi_vc_flush_receive_data(struct platform_device
*dsidev
,
2872 /* RX_FIFO_NOT_EMPTY */
2873 while (REG_GET(dsidev
, DSI_VC_CTRL(channel
), 20, 20)) {
2876 val
= dsi_read_reg(dsidev
, DSI_VC_SHORT_PACKET_HEADER(channel
));
2877 DSSERR("\trawval %#08x\n", val
);
2878 dt
= FLD_GET(val
, 5, 0);
2879 if (dt
== DSI_DT_RX_ACK_WITH_ERR
) {
2880 u16 err
= FLD_GET(val
, 23, 8);
2881 dsi_show_rx_ack_with_err(err
);
2882 } else if (dt
== DSI_DT_RX_SHORT_READ_1
) {
2883 DSSERR("\tDCS short response, 1 byte: %#x\n",
2884 FLD_GET(val
, 23, 8));
2885 } else if (dt
== DSI_DT_RX_SHORT_READ_2
) {
2886 DSSERR("\tDCS short response, 2 byte: %#x\n",
2887 FLD_GET(val
, 23, 8));
2888 } else if (dt
== DSI_DT_RX_DCS_LONG_READ
) {
2889 DSSERR("\tDCS long response, len %d\n",
2890 FLD_GET(val
, 23, 8));
2891 dsi_vc_flush_long_data(dsidev
, channel
);
2893 DSSERR("\tunknown datatype 0x%02x\n", dt
);
2899 static int dsi_vc_send_bta(struct platform_device
*dsidev
, int channel
)
2901 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2903 if (dsi
->debug_write
|| dsi
->debug_read
)
2904 DSSDBG("dsi_vc_send_bta %d\n", channel
);
2906 WARN_ON(!dsi_bus_is_locked(dsidev
));
2908 /* RX_FIFO_NOT_EMPTY */
2909 if (REG_GET(dsidev
, DSI_VC_CTRL(channel
), 20, 20)) {
2910 DSSERR("rx fifo not empty when sending BTA, dumping data:\n");
2911 dsi_vc_flush_receive_data(dsidev
, channel
);
2914 REG_FLD_MOD(dsidev
, DSI_VC_CTRL(channel
), 1, 6, 6); /* BTA_EN */
2919 int dsi_vc_send_bta_sync(struct omap_dss_device
*dssdev
, int channel
)
2921 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
2922 DECLARE_COMPLETION_ONSTACK(completion
);
2926 r
= dsi_register_isr_vc(dsidev
, channel
, dsi_completion_handler
,
2927 &completion
, DSI_VC_IRQ_BTA
);
2931 r
= dsi_register_isr(dsidev
, dsi_completion_handler
, &completion
,
2932 DSI_IRQ_ERROR_MASK
);
2936 r
= dsi_vc_send_bta(dsidev
, channel
);
2940 if (wait_for_completion_timeout(&completion
,
2941 msecs_to_jiffies(500)) == 0) {
2942 DSSERR("Failed to receive BTA\n");
2947 err
= dsi_get_errors(dsidev
);
2949 DSSERR("Error while sending BTA: %x\n", err
);
2954 dsi_unregister_isr(dsidev
, dsi_completion_handler
, &completion
,
2955 DSI_IRQ_ERROR_MASK
);
2957 dsi_unregister_isr_vc(dsidev
, channel
, dsi_completion_handler
,
2958 &completion
, DSI_VC_IRQ_BTA
);
2962 EXPORT_SYMBOL(dsi_vc_send_bta_sync
);
2964 static inline void dsi_vc_write_long_header(struct platform_device
*dsidev
,
2965 int channel
, u8 data_type
, u16 len
, u8 ecc
)
2967 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
2971 WARN_ON(!dsi_bus_is_locked(dsidev
));
2973 data_id
= data_type
| dsi
->vc
[channel
].vc_id
<< 6;
2975 val
= FLD_VAL(data_id
, 7, 0) | FLD_VAL(len
, 23, 8) |
2976 FLD_VAL(ecc
, 31, 24);
2978 dsi_write_reg(dsidev
, DSI_VC_LONG_PACKET_HEADER(channel
), val
);
2981 static inline void dsi_vc_write_long_payload(struct platform_device
*dsidev
,
2982 int channel
, u8 b1
, u8 b2
, u8 b3
, u8 b4
)
2986 val
= b4
<< 24 | b3
<< 16 | b2
<< 8 | b1
<< 0;
2988 /* DSSDBG("\twriting %02x, %02x, %02x, %02x (%#010x)\n",
2989 b1, b2, b3, b4, val); */
2991 dsi_write_reg(dsidev
, DSI_VC_LONG_PACKET_PAYLOAD(channel
), val
);
2994 static int dsi_vc_send_long(struct platform_device
*dsidev
, int channel
,
2995 u8 data_type
, u8
*data
, u16 len
, u8 ecc
)
2998 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3004 if (dsi
->debug_write
)
3005 DSSDBG("dsi_vc_send_long, %d bytes\n", len
);
3008 if (dsi
->vc
[channel
].fifo_size
* 32 * 4 < len
+ 4) {
3009 DSSERR("unable to send long packet: packet too long.\n");
3013 dsi_vc_config_l4(dsidev
, channel
);
3015 dsi_vc_write_long_header(dsidev
, channel
, data_type
, len
, ecc
);
3018 for (i
= 0; i
< len
>> 2; i
++) {
3019 if (dsi
->debug_write
)
3020 DSSDBG("\tsending full packet %d\n", i
);
3027 dsi_vc_write_long_payload(dsidev
, channel
, b1
, b2
, b3
, b4
);
3032 b1
= 0; b2
= 0; b3
= 0;
3034 if (dsi
->debug_write
)
3035 DSSDBG("\tsending remainder bytes %d\n", i
);
3052 dsi_vc_write_long_payload(dsidev
, channel
, b1
, b2
, b3
, 0);
3058 static int dsi_vc_send_short(struct platform_device
*dsidev
, int channel
,
3059 u8 data_type
, u16 data
, u8 ecc
)
3061 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3065 WARN_ON(!dsi_bus_is_locked(dsidev
));
3067 if (dsi
->debug_write
)
3068 DSSDBG("dsi_vc_send_short(ch%d, dt %#x, b1 %#x, b2 %#x)\n",
3070 data_type
, data
& 0xff, (data
>> 8) & 0xff);
3072 dsi_vc_config_l4(dsidev
, channel
);
3074 if (FLD_GET(dsi_read_reg(dsidev
, DSI_VC_CTRL(channel
)), 16, 16)) {
3075 DSSERR("ERROR FIFO FULL, aborting transfer\n");
3079 data_id
= data_type
| dsi
->vc
[channel
].vc_id
<< 6;
3081 r
= (data_id
<< 0) | (data
<< 8) | (ecc
<< 24);
3083 dsi_write_reg(dsidev
, DSI_VC_SHORT_PACKET_HEADER(channel
), r
);
3088 int dsi_vc_send_null(struct omap_dss_device
*dssdev
, int channel
)
3090 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3091 u8 nullpkg
[] = {0, 0, 0, 0};
3093 return dsi_vc_send_long(dsidev
, channel
, DSI_DT_NULL_PACKET
, nullpkg
,
3096 EXPORT_SYMBOL(dsi_vc_send_null
);
3098 int dsi_vc_dcs_write_nosync(struct omap_dss_device
*dssdev
, int channel
,
3101 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3107 r
= dsi_vc_send_short(dsidev
, channel
, DSI_DT_DCS_SHORT_WRITE_0
,
3109 } else if (len
== 2) {
3110 r
= dsi_vc_send_short(dsidev
, channel
, DSI_DT_DCS_SHORT_WRITE_1
,
3111 data
[0] | (data
[1] << 8), 0);
3113 /* 0x39 = DCS Long Write */
3114 r
= dsi_vc_send_long(dsidev
, channel
, DSI_DT_DCS_LONG_WRITE
,
3120 EXPORT_SYMBOL(dsi_vc_dcs_write_nosync
);
3122 int dsi_vc_dcs_write(struct omap_dss_device
*dssdev
, int channel
, u8
*data
,
3125 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3128 r
= dsi_vc_dcs_write_nosync(dssdev
, channel
, data
, len
);
3132 r
= dsi_vc_send_bta_sync(dssdev
, channel
);
3136 /* RX_FIFO_NOT_EMPTY */
3137 if (REG_GET(dsidev
, DSI_VC_CTRL(channel
), 20, 20)) {
3138 DSSERR("rx fifo not empty after write, dumping data:\n");
3139 dsi_vc_flush_receive_data(dsidev
, channel
);
3146 DSSERR("dsi_vc_dcs_write(ch %d, cmd 0x%02x, len %d) failed\n",
3147 channel
, data
[0], len
);
3150 EXPORT_SYMBOL(dsi_vc_dcs_write
);
3152 int dsi_vc_dcs_write_0(struct omap_dss_device
*dssdev
, int channel
, u8 dcs_cmd
)
3154 return dsi_vc_dcs_write(dssdev
, channel
, &dcs_cmd
, 1);
3156 EXPORT_SYMBOL(dsi_vc_dcs_write_0
);
3158 int dsi_vc_dcs_write_1(struct omap_dss_device
*dssdev
, int channel
, u8 dcs_cmd
,
3164 return dsi_vc_dcs_write(dssdev
, channel
, buf
, 2);
3166 EXPORT_SYMBOL(dsi_vc_dcs_write_1
);
3168 int dsi_vc_dcs_read(struct omap_dss_device
*dssdev
, int channel
, u8 dcs_cmd
,
3169 u8
*buf
, int buflen
)
3171 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3172 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3177 if (dsi
->debug_read
)
3178 DSSDBG("dsi_vc_dcs_read(ch%d, dcs_cmd %x)\n", channel
, dcs_cmd
);
3180 r
= dsi_vc_send_short(dsidev
, channel
, DSI_DT_DCS_READ
, dcs_cmd
, 0);
3184 r
= dsi_vc_send_bta_sync(dssdev
, channel
);
3188 /* RX_FIFO_NOT_EMPTY */
3189 if (REG_GET(dsidev
, DSI_VC_CTRL(channel
), 20, 20) == 0) {
3190 DSSERR("RX fifo empty when trying to read.\n");
3195 val
= dsi_read_reg(dsidev
, DSI_VC_SHORT_PACKET_HEADER(channel
));
3196 if (dsi
->debug_read
)
3197 DSSDBG("\theader: %08x\n", val
);
3198 dt
= FLD_GET(val
, 5, 0);
3199 if (dt
== DSI_DT_RX_ACK_WITH_ERR
) {
3200 u16 err
= FLD_GET(val
, 23, 8);
3201 dsi_show_rx_ack_with_err(err
);
3205 } else if (dt
== DSI_DT_RX_SHORT_READ_1
) {
3206 u8 data
= FLD_GET(val
, 15, 8);
3207 if (dsi
->debug_read
)
3208 DSSDBG("\tDCS short response, 1 byte: %02x\n", data
);
3218 } else if (dt
== DSI_DT_RX_SHORT_READ_2
) {
3219 u16 data
= FLD_GET(val
, 23, 8);
3220 if (dsi
->debug_read
)
3221 DSSDBG("\tDCS short response, 2 byte: %04x\n", data
);
3228 buf
[0] = data
& 0xff;
3229 buf
[1] = (data
>> 8) & 0xff;
3232 } else if (dt
== DSI_DT_RX_DCS_LONG_READ
) {
3234 int len
= FLD_GET(val
, 23, 8);
3235 if (dsi
->debug_read
)
3236 DSSDBG("\tDCS long response, len %d\n", len
);
3243 /* two byte checksum ends the packet, not included in len */
3244 for (w
= 0; w
< len
+ 2;) {
3246 val
= dsi_read_reg(dsidev
,
3247 DSI_VC_SHORT_PACKET_HEADER(channel
));
3248 if (dsi
->debug_read
)
3249 DSSDBG("\t\t%02x %02x %02x %02x\n",
3253 (val
>> 24) & 0xff);
3255 for (b
= 0; b
< 4; ++b
) {
3257 buf
[w
] = (val
>> (b
* 8)) & 0xff;
3258 /* we discard the 2 byte checksum */
3265 DSSERR("\tunknown datatype 0x%02x\n", dt
);
3272 DSSERR("dsi_vc_dcs_read(ch %d, cmd 0x%02x) failed\n",
3277 EXPORT_SYMBOL(dsi_vc_dcs_read
);
3279 int dsi_vc_dcs_read_1(struct omap_dss_device
*dssdev
, int channel
, u8 dcs_cmd
,
3284 r
= dsi_vc_dcs_read(dssdev
, channel
, dcs_cmd
, data
, 1);
3294 EXPORT_SYMBOL(dsi_vc_dcs_read_1
);
3296 int dsi_vc_dcs_read_2(struct omap_dss_device
*dssdev
, int channel
, u8 dcs_cmd
,
3297 u8
*data1
, u8
*data2
)
3302 r
= dsi_vc_dcs_read(dssdev
, channel
, dcs_cmd
, buf
, 2);
3315 EXPORT_SYMBOL(dsi_vc_dcs_read_2
);
3317 int dsi_vc_set_max_rx_packet_size(struct omap_dss_device
*dssdev
, int channel
,
3320 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3322 return dsi_vc_send_short(dsidev
, channel
, DSI_DT_SET_MAX_RET_PKG_SIZE
,
3325 EXPORT_SYMBOL(dsi_vc_set_max_rx_packet_size
);
3327 static int dsi_enter_ulps(struct platform_device
*dsidev
)
3329 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3330 DECLARE_COMPLETION_ONSTACK(completion
);
3335 WARN_ON(!dsi_bus_is_locked(dsidev
));
3337 WARN_ON(dsi
->ulps_enabled
);
3339 if (dsi
->ulps_enabled
)
3342 if (REG_GET(dsidev
, DSI_CLK_CTRL
, 13, 13)) {
3343 DSSERR("DDR_CLK_ALWAYS_ON enabled when entering ULPS\n");
3347 dsi_sync_vc(dsidev
, 0);
3348 dsi_sync_vc(dsidev
, 1);
3349 dsi_sync_vc(dsidev
, 2);
3350 dsi_sync_vc(dsidev
, 3);
3352 dsi_force_tx_stop_mode_io(dsidev
);
3354 dsi_vc_enable(dsidev
, 0, false);
3355 dsi_vc_enable(dsidev
, 1, false);
3356 dsi_vc_enable(dsidev
, 2, false);
3357 dsi_vc_enable(dsidev
, 3, false);
3359 if (REG_GET(dsidev
, DSI_COMPLEXIO_CFG2
, 16, 16)) { /* HS_BUSY */
3360 DSSERR("HS busy when enabling ULPS\n");
3364 if (REG_GET(dsidev
, DSI_COMPLEXIO_CFG2
, 17, 17)) { /* LP_BUSY */
3365 DSSERR("LP busy when enabling ULPS\n");
3369 r
= dsi_register_isr_cio(dsidev
, dsi_completion_handler
, &completion
,
3370 DSI_CIO_IRQ_ULPSACTIVENOT_ALL0
);
3374 /* Assert TxRequestEsc for data lanes and TxUlpsClk for clk lane */
3375 /* LANEx_ULPS_SIG2 */
3376 REG_FLD_MOD(dsidev
, DSI_COMPLEXIO_CFG2
, (1 << 0) | (1 << 1) | (1 << 2),
3379 if (wait_for_completion_timeout(&completion
,
3380 msecs_to_jiffies(1000)) == 0) {
3381 DSSERR("ULPS enable timeout\n");
3386 dsi_unregister_isr_cio(dsidev
, dsi_completion_handler
, &completion
,
3387 DSI_CIO_IRQ_ULPSACTIVENOT_ALL0
);
3389 dsi_cio_power(dsidev
, DSI_COMPLEXIO_POWER_ULPS
);
3391 dsi_if_enable(dsidev
, false);
3393 dsi
->ulps_enabled
= true;
3398 dsi_unregister_isr_cio(dsidev
, dsi_completion_handler
, &completion
,
3399 DSI_CIO_IRQ_ULPSACTIVENOT_ALL0
);
3403 static void dsi_set_lp_rx_timeout(struct platform_device
*dsidev
,
3404 unsigned ticks
, bool x4
, bool x16
)
3407 unsigned long total_ticks
;
3410 BUG_ON(ticks
> 0x1fff);
3412 /* ticks in DSI_FCK */
3413 fck
= dsi_fclk_rate(dsidev
);
3415 r
= dsi_read_reg(dsidev
, DSI_TIMING2
);
3416 r
= FLD_MOD(r
, 1, 15, 15); /* LP_RX_TO */
3417 r
= FLD_MOD(r
, x16
? 1 : 0, 14, 14); /* LP_RX_TO_X16 */
3418 r
= FLD_MOD(r
, x4
? 1 : 0, 13, 13); /* LP_RX_TO_X4 */
3419 r
= FLD_MOD(r
, ticks
, 12, 0); /* LP_RX_COUNTER */
3420 dsi_write_reg(dsidev
, DSI_TIMING2
, r
);
3422 total_ticks
= ticks
* (x16
? 16 : 1) * (x4
? 4 : 1);
3424 DSSDBG("LP_RX_TO %lu ticks (%#x%s%s) = %lu ns\n",
3426 ticks
, x4
? " x4" : "", x16
? " x16" : "",
3427 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
3430 static void dsi_set_ta_timeout(struct platform_device
*dsidev
, unsigned ticks
,
3434 unsigned long total_ticks
;
3437 BUG_ON(ticks
> 0x1fff);
3439 /* ticks in DSI_FCK */
3440 fck
= dsi_fclk_rate(dsidev
);
3442 r
= dsi_read_reg(dsidev
, DSI_TIMING1
);
3443 r
= FLD_MOD(r
, 1, 31, 31); /* TA_TO */
3444 r
= FLD_MOD(r
, x16
? 1 : 0, 30, 30); /* TA_TO_X16 */
3445 r
= FLD_MOD(r
, x8
? 1 : 0, 29, 29); /* TA_TO_X8 */
3446 r
= FLD_MOD(r
, ticks
, 28, 16); /* TA_TO_COUNTER */
3447 dsi_write_reg(dsidev
, DSI_TIMING1
, r
);
3449 total_ticks
= ticks
* (x16
? 16 : 1) * (x8
? 8 : 1);
3451 DSSDBG("TA_TO %lu ticks (%#x%s%s) = %lu ns\n",
3453 ticks
, x8
? " x8" : "", x16
? " x16" : "",
3454 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
3457 static void dsi_set_stop_state_counter(struct platform_device
*dsidev
,
3458 unsigned ticks
, bool x4
, bool x16
)
3461 unsigned long total_ticks
;
3464 BUG_ON(ticks
> 0x1fff);
3466 /* ticks in DSI_FCK */
3467 fck
= dsi_fclk_rate(dsidev
);
3469 r
= dsi_read_reg(dsidev
, DSI_TIMING1
);
3470 r
= FLD_MOD(r
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
3471 r
= FLD_MOD(r
, x16
? 1 : 0, 14, 14); /* STOP_STATE_X16_IO */
3472 r
= FLD_MOD(r
, x4
? 1 : 0, 13, 13); /* STOP_STATE_X4_IO */
3473 r
= FLD_MOD(r
, ticks
, 12, 0); /* STOP_STATE_COUNTER_IO */
3474 dsi_write_reg(dsidev
, DSI_TIMING1
, r
);
3476 total_ticks
= ticks
* (x16
? 16 : 1) * (x4
? 4 : 1);
3478 DSSDBG("STOP_STATE_COUNTER %lu ticks (%#x%s%s) = %lu ns\n",
3480 ticks
, x4
? " x4" : "", x16
? " x16" : "",
3481 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
3484 static void dsi_set_hs_tx_timeout(struct platform_device
*dsidev
,
3485 unsigned ticks
, bool x4
, bool x16
)
3488 unsigned long total_ticks
;
3491 BUG_ON(ticks
> 0x1fff);
3493 /* ticks in TxByteClkHS */
3494 fck
= dsi_get_txbyteclkhs(dsidev
);
3496 r
= dsi_read_reg(dsidev
, DSI_TIMING2
);
3497 r
= FLD_MOD(r
, 1, 31, 31); /* HS_TX_TO */
3498 r
= FLD_MOD(r
, x16
? 1 : 0, 30, 30); /* HS_TX_TO_X16 */
3499 r
= FLD_MOD(r
, x4
? 1 : 0, 29, 29); /* HS_TX_TO_X8 (4 really) */
3500 r
= FLD_MOD(r
, ticks
, 28, 16); /* HS_TX_TO_COUNTER */
3501 dsi_write_reg(dsidev
, DSI_TIMING2
, r
);
3503 total_ticks
= ticks
* (x16
? 16 : 1) * (x4
? 4 : 1);
3505 DSSDBG("HS_TX_TO %lu ticks (%#x%s%s) = %lu ns\n",
3507 ticks
, x4
? " x4" : "", x16
? " x16" : "",
3508 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
3510 static int dsi_proto_config(struct omap_dss_device
*dssdev
)
3512 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3516 dsi_config_tx_fifo(dsidev
, DSI_FIFO_SIZE_32
,
3521 dsi_config_rx_fifo(dsidev
, DSI_FIFO_SIZE_32
,
3526 /* XXX what values for the timeouts? */
3527 dsi_set_stop_state_counter(dsidev
, 0x1000, false, false);
3528 dsi_set_ta_timeout(dsidev
, 0x1fff, true, true);
3529 dsi_set_lp_rx_timeout(dsidev
, 0x1fff, true, true);
3530 dsi_set_hs_tx_timeout(dsidev
, 0x1fff, true, true);
3532 switch (dssdev
->ctrl
.pixel_size
) {
3546 r
= dsi_read_reg(dsidev
, DSI_CTRL
);
3547 r
= FLD_MOD(r
, 1, 1, 1); /* CS_RX_EN */
3548 r
= FLD_MOD(r
, 1, 2, 2); /* ECC_RX_EN */
3549 r
= FLD_MOD(r
, 1, 3, 3); /* TX_FIFO_ARBITRATION */
3550 r
= FLD_MOD(r
, 1, 4, 4); /* VP_CLK_RATIO, always 1, see errata*/
3551 r
= FLD_MOD(r
, buswidth
, 7, 6); /* VP_DATA_BUS_WIDTH */
3552 r
= FLD_MOD(r
, 0, 8, 8); /* VP_CLK_POL */
3553 r
= FLD_MOD(r
, 2, 13, 12); /* LINE_BUFFER, 2 lines */
3554 r
= FLD_MOD(r
, 1, 14, 14); /* TRIGGER_RESET_MODE */
3555 r
= FLD_MOD(r
, 1, 19, 19); /* EOT_ENABLE */
3556 if (!dss_has_feature(FEAT_DSI_DCS_CMD_CONFIG_VC
)) {
3557 r
= FLD_MOD(r
, 1, 24, 24); /* DCS_CMD_ENABLE */
3558 /* DCS_CMD_CODE, 1=start, 0=continue */
3559 r
= FLD_MOD(r
, 0, 25, 25);
3562 dsi_write_reg(dsidev
, DSI_CTRL
, r
);
3564 dsi_vc_initial_config(dsidev
, 0);
3565 dsi_vc_initial_config(dsidev
, 1);
3566 dsi_vc_initial_config(dsidev
, 2);
3567 dsi_vc_initial_config(dsidev
, 3);
3572 static void dsi_proto_timings(struct omap_dss_device
*dssdev
)
3574 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3575 unsigned tlpx
, tclk_zero
, tclk_prepare
, tclk_trail
;
3576 unsigned tclk_pre
, tclk_post
;
3577 unsigned ths_prepare
, ths_prepare_ths_zero
, ths_zero
;
3578 unsigned ths_trail
, ths_exit
;
3579 unsigned ddr_clk_pre
, ddr_clk_post
;
3580 unsigned enter_hs_mode_lat
, exit_hs_mode_lat
;
3584 r
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG0
);
3585 ths_prepare
= FLD_GET(r
, 31, 24);
3586 ths_prepare_ths_zero
= FLD_GET(r
, 23, 16);
3587 ths_zero
= ths_prepare_ths_zero
- ths_prepare
;
3588 ths_trail
= FLD_GET(r
, 15, 8);
3589 ths_exit
= FLD_GET(r
, 7, 0);
3591 r
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG1
);
3592 tlpx
= FLD_GET(r
, 22, 16) * 2;
3593 tclk_trail
= FLD_GET(r
, 15, 8);
3594 tclk_zero
= FLD_GET(r
, 7, 0);
3596 r
= dsi_read_reg(dsidev
, DSI_DSIPHY_CFG2
);
3597 tclk_prepare
= FLD_GET(r
, 7, 0);
3601 /* min 60ns + 52*UI */
3602 tclk_post
= ns2ddr(dsidev
, 60) + 26;
3604 ths_eot
= DIV_ROUND_UP(4, dsi_get_num_data_lanes_dssdev(dssdev
));
3606 ddr_clk_pre
= DIV_ROUND_UP(tclk_pre
+ tlpx
+ tclk_zero
+ tclk_prepare
,
3608 ddr_clk_post
= DIV_ROUND_UP(tclk_post
+ ths_trail
, 4) + ths_eot
;
3610 BUG_ON(ddr_clk_pre
== 0 || ddr_clk_pre
> 255);
3611 BUG_ON(ddr_clk_post
== 0 || ddr_clk_post
> 255);
3613 r
= dsi_read_reg(dsidev
, DSI_CLK_TIMING
);
3614 r
= FLD_MOD(r
, ddr_clk_pre
, 15, 8);
3615 r
= FLD_MOD(r
, ddr_clk_post
, 7, 0);
3616 dsi_write_reg(dsidev
, DSI_CLK_TIMING
, r
);
3618 DSSDBG("ddr_clk_pre %u, ddr_clk_post %u\n",
3622 enter_hs_mode_lat
= 1 + DIV_ROUND_UP(tlpx
, 4) +
3623 DIV_ROUND_UP(ths_prepare
, 4) +
3624 DIV_ROUND_UP(ths_zero
+ 3, 4);
3626 exit_hs_mode_lat
= DIV_ROUND_UP(ths_trail
+ ths_exit
, 4) + 1 + ths_eot
;
3628 r
= FLD_VAL(enter_hs_mode_lat
, 31, 16) |
3629 FLD_VAL(exit_hs_mode_lat
, 15, 0);
3630 dsi_write_reg(dsidev
, DSI_VM_TIMING7
, r
);
3632 DSSDBG("enter_hs_mode_lat %u, exit_hs_mode_lat %u\n",
3633 enter_hs_mode_lat
, exit_hs_mode_lat
);
3637 #define DSI_DECL_VARS \
3638 int __dsi_cb = 0; u32 __dsi_cv = 0;
3640 #define DSI_FLUSH(dsidev, ch) \
3641 if (__dsi_cb > 0) { \
3642 /*DSSDBG("sending long packet %#010x\n", __dsi_cv);*/ \
3643 dsi_write_reg(dsidev, DSI_VC_LONG_PACKET_PAYLOAD(ch), __dsi_cv); \
3644 __dsi_cb = __dsi_cv = 0; \
3647 #define DSI_PUSH(dsidev, ch, data) \
3649 __dsi_cv |= (data) << (__dsi_cb * 8); \
3650 /*DSSDBG("cv = %#010x, cb = %d\n", __dsi_cv, __dsi_cb);*/ \
3651 if (++__dsi_cb > 3) \
3652 DSI_FLUSH(dsidev, ch); \
3655 static int dsi_update_screen_l4(struct omap_dss_device
*dssdev
,
3656 int x
, int y
, int w
, int h
)
3658 /* Note: supports only 24bit colors in 32bit container */
3659 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3660 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3662 int fifo_stalls
= 0;
3663 int max_dsi_packet_size
;
3664 int max_data_per_packet
;
3665 int max_pixels_per_packet
;
3667 int bytespp
= dssdev
->ctrl
.pixel_size
/ 8;
3673 struct omap_overlay
*ovl
;
3677 DSSDBG("dsi_update_screen_l4 (%d,%d %dx%d)\n",
3680 ovl
= dssdev
->manager
->overlays
[0];
3682 if (ovl
->info
.color_mode
!= OMAP_DSS_COLOR_RGB24U
)
3685 if (dssdev
->ctrl
.pixel_size
!= 24)
3688 scr_width
= ovl
->info
.screen_width
;
3689 data
= ovl
->info
.vaddr
;
3691 start_offset
= scr_width
* y
+ x
;
3692 horiz_inc
= scr_width
- w
;
3695 /* We need header(4) + DCSCMD(1) + pixels(numpix*bytespp) bytes
3698 /* When using CPU, max long packet size is TX buffer size */
3699 max_dsi_packet_size
= dsi
->vc
[0].fifo_size
* 32 * 4;
3701 /* we seem to get better perf if we divide the tx fifo to half,
3702 and while the other half is being sent, we fill the other half
3703 max_dsi_packet_size /= 2; */
3705 max_data_per_packet
= max_dsi_packet_size
- 4 - 1;
3707 max_pixels_per_packet
= max_data_per_packet
/ bytespp
;
3709 DSSDBG("max_pixels_per_packet %d\n", max_pixels_per_packet
);
3711 pixels_left
= w
* h
;
3713 DSSDBG("total pixels %d\n", pixels_left
);
3715 data
+= start_offset
;
3717 while (pixels_left
> 0) {
3718 /* 0x2c = write_memory_start */
3719 /* 0x3c = write_memory_continue */
3720 u8 dcs_cmd
= first
? 0x2c : 0x3c;
3726 /* using fifo not empty */
3727 /* TX_FIFO_NOT_EMPTY */
3728 while (FLD_GET(dsi_read_reg(dsidev
, DSI_VC_CTRL(0)), 5, 5)) {
3730 if (fifo_stalls
> 0xfffff) {
3731 DSSERR("fifo stalls overflow, pixels left %d\n",
3733 dsi_if_enable(dsidev
, 0);
3739 /* using fifo emptiness */
3740 while ((REG_GET(dsidev
, DSI_TX_FIFO_VC_EMPTINESS
, 7, 0)+1)*4 <
3741 max_dsi_packet_size
) {
3743 if (fifo_stalls
> 0xfffff) {
3744 DSSERR("fifo stalls overflow, pixels left %d\n",
3746 dsi_if_enable(dsidev
, 0);
3751 while ((REG_GET(dsidev
, DSI_TX_FIFO_VC_EMPTINESS
,
3752 7, 0) + 1) * 4 == 0) {
3754 if (fifo_stalls
> 0xfffff) {
3755 DSSERR("fifo stalls overflow, pixels left %d\n",
3757 dsi_if_enable(dsidev
, 0);
3762 pixels
= min(max_pixels_per_packet
, pixels_left
);
3764 pixels_left
-= pixels
;
3766 dsi_vc_write_long_header(dsidev
, 0, DSI_DT_DCS_LONG_WRITE
,
3767 1 + pixels
* bytespp
, 0);
3769 DSI_PUSH(dsidev
, 0, dcs_cmd
);
3771 while (pixels
-- > 0) {
3772 u32 pix
= __raw_readl(data
++);
3774 DSI_PUSH(dsidev
, 0, (pix
>> 16) & 0xff);
3775 DSI_PUSH(dsidev
, 0, (pix
>> 8) & 0xff);
3776 DSI_PUSH(dsidev
, 0, (pix
>> 0) & 0xff);
3779 if (current_x
== x
+w
) {
3785 DSI_FLUSH(dsidev
, 0);
3791 static void dsi_update_screen_dispc(struct omap_dss_device
*dssdev
,
3792 u16 x
, u16 y
, u16 w
, u16 h
)
3794 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3795 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3800 unsigned packet_payload
;
3801 unsigned packet_len
;
3804 const unsigned channel
= dsi
->update_channel
;
3805 const unsigned line_buf_size
= dsi_get_line_buf_size(dsidev
);
3807 DSSDBG("dsi_update_screen_dispc(%d,%d %dx%d)\n",
3810 dsi_vc_config_vp(dsidev
, channel
);
3812 bytespp
= dssdev
->ctrl
.pixel_size
/ 8;
3813 bytespl
= w
* bytespp
;
3814 bytespf
= bytespl
* h
;
3816 /* NOTE: packet_payload has to be equal to N * bytespl, where N is
3817 * number of lines in a packet. See errata about VP_CLK_RATIO */
3819 if (bytespf
< line_buf_size
)
3820 packet_payload
= bytespf
;
3822 packet_payload
= (line_buf_size
) / bytespl
* bytespl
;
3824 packet_len
= packet_payload
+ 1; /* 1 byte for DCS cmd */
3825 total_len
= (bytespf
/ packet_payload
) * packet_len
;
3827 if (bytespf
% packet_payload
)
3828 total_len
+= (bytespf
% packet_payload
) + 1;
3830 l
= FLD_VAL(total_len
, 23, 0); /* TE_SIZE */
3831 dsi_write_reg(dsidev
, DSI_VC_TE(channel
), l
);
3833 dsi_vc_write_long_header(dsidev
, channel
, DSI_DT_DCS_LONG_WRITE
,
3836 if (dsi
->te_enabled
)
3837 l
= FLD_MOD(l
, 1, 30, 30); /* TE_EN */
3839 l
= FLD_MOD(l
, 1, 31, 31); /* TE_START */
3840 dsi_write_reg(dsidev
, DSI_VC_TE(channel
), l
);
3842 /* We put SIDLEMODE to no-idle for the duration of the transfer,
3843 * because DSS interrupts are not capable of waking up the CPU and the
3844 * framedone interrupt could be delayed for quite a long time. I think
3845 * the same goes for any DSS interrupts, but for some reason I have not
3846 * seen the problem anywhere else than here.
3848 dispc_disable_sidle();
3850 dsi_perf_mark_start(dsidev
);
3852 r
= schedule_delayed_work(&dsi
->framedone_timeout_work
,
3853 msecs_to_jiffies(250));
3856 dss_start_update(dssdev
);
3858 if (dsi
->te_enabled
) {
3859 /* disable LP_RX_TO, so that we can receive TE. Time to wait
3860 * for TE is longer than the timer allows */
3861 REG_FLD_MOD(dsidev
, DSI_TIMING2
, 0, 15, 15); /* LP_RX_TO */
3863 dsi_vc_send_bta(dsidev
, channel
);
3865 #ifdef DSI_CATCH_MISSING_TE
3866 mod_timer(&dsi
->te_timer
, jiffies
+ msecs_to_jiffies(250));
3871 #ifdef DSI_CATCH_MISSING_TE
3872 static void dsi_te_timeout(unsigned long arg
)
3874 DSSERR("TE not received for 250ms!\n");
3878 static void dsi_handle_framedone(struct platform_device
*dsidev
, int error
)
3880 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3882 /* SIDLEMODE back to smart-idle */
3883 dispc_enable_sidle();
3885 if (dsi
->te_enabled
) {
3886 /* enable LP_RX_TO again after the TE */
3887 REG_FLD_MOD(dsidev
, DSI_TIMING2
, 1, 15, 15); /* LP_RX_TO */
3890 dsi
->framedone_callback(error
, dsi
->framedone_data
);
3893 dsi_perf_show(dsidev
, "DISPC");
3896 static void dsi_framedone_timeout_work_callback(struct work_struct
*work
)
3898 struct dsi_data
*dsi
= container_of(work
, struct dsi_data
,
3899 framedone_timeout_work
.work
);
3900 /* XXX While extremely unlikely, we could get FRAMEDONE interrupt after
3901 * 250ms which would conflict with this timeout work. What should be
3902 * done is first cancel the transfer on the HW, and then cancel the
3903 * possibly scheduled framedone work. However, cancelling the transfer
3904 * on the HW is buggy, and would probably require resetting the whole
3907 DSSERR("Framedone not received for 250ms!\n");
3909 dsi_handle_framedone(dsi
->pdev
, -ETIMEDOUT
);
3912 static void dsi_framedone_irq_callback(void *data
, u32 mask
)
3914 struct omap_dss_device
*dssdev
= (struct omap_dss_device
*) data
;
3915 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3916 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3918 /* Note: We get FRAMEDONE when DISPC has finished sending pixels and
3919 * turns itself off. However, DSI still has the pixels in its buffers,
3920 * and is sending the data.
3923 __cancel_delayed_work(&dsi
->framedone_timeout_work
);
3925 dsi_handle_framedone(dsidev
, 0);
3927 #ifdef CONFIG_OMAP2_DSS_FAKE_VSYNC
3928 dispc_fake_vsync_irq();
3932 int omap_dsi_prepare_update(struct omap_dss_device
*dssdev
,
3933 u16
*x
, u16
*y
, u16
*w
, u16
*h
,
3934 bool enlarge_update_area
)
3936 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3939 dssdev
->driver
->get_resolution(dssdev
, &dw
, &dh
);
3941 if (*x
> dw
|| *y
> dh
)
3953 if (*w
== 0 || *h
== 0)
3956 dsi_perf_mark_setup(dsidev
);
3958 if (dssdev
->manager
->caps
& OMAP_DSS_OVL_MGR_CAP_DISPC
) {
3959 dss_setup_partial_planes(dssdev
, x
, y
, w
, h
,
3960 enlarge_update_area
);
3961 dispc_set_lcd_size(dssdev
->manager
->id
, *w
, *h
);
3966 EXPORT_SYMBOL(omap_dsi_prepare_update
);
3968 int omap_dsi_update(struct omap_dss_device
*dssdev
,
3970 u16 x
, u16 y
, u16 w
, u16 h
,
3971 void (*callback
)(int, void *), void *data
)
3973 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
3974 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
3976 dsi
->update_channel
= channel
;
3978 /* OMAP DSS cannot send updates of odd widths.
3979 * omap_dsi_prepare_update() makes the widths even, but add a BUG_ON
3980 * here to make sure we catch erroneous updates. Otherwise we'll only
3981 * see rather obscure HW error happening, as DSS halts. */
3984 if (dssdev
->manager
->caps
& OMAP_DSS_OVL_MGR_CAP_DISPC
) {
3985 dsi
->framedone_callback
= callback
;
3986 dsi
->framedone_data
= data
;
3988 dsi
->update_region
.x
= x
;
3989 dsi
->update_region
.y
= y
;
3990 dsi
->update_region
.w
= w
;
3991 dsi
->update_region
.h
= h
;
3992 dsi
->update_region
.device
= dssdev
;
3994 dsi_update_screen_dispc(dssdev
, x
, y
, w
, h
);
3998 r
= dsi_update_screen_l4(dssdev
, x
, y
, w
, h
);
4002 dsi_perf_show(dsidev
, "L4");
4008 EXPORT_SYMBOL(omap_dsi_update
);
4012 static int dsi_display_init_dispc(struct omap_dss_device
*dssdev
)
4017 irq
= dssdev
->manager
->id
== OMAP_DSS_CHANNEL_LCD
?
4018 DISPC_IRQ_FRAMEDONE
: DISPC_IRQ_FRAMEDONE2
;
4020 r
= omap_dispc_register_isr(dsi_framedone_irq_callback
, (void *) dssdev
,
4023 DSSERR("can't get FRAMEDONE irq\n");
4027 dispc_set_lcd_display_type(dssdev
->manager
->id
,
4028 OMAP_DSS_LCD_DISPLAY_TFT
);
4030 dispc_set_parallel_interface_mode(dssdev
->manager
->id
,
4031 OMAP_DSS_PARALLELMODE_DSI
);
4032 dispc_enable_fifohandcheck(dssdev
->manager
->id
, 1);
4034 dispc_set_tft_data_lines(dssdev
->manager
->id
, dssdev
->ctrl
.pixel_size
);
4037 struct omap_video_timings timings
= {
4046 dispc_set_lcd_timings(dssdev
->manager
->id
, &timings
);
4052 static void dsi_display_uninit_dispc(struct omap_dss_device
*dssdev
)
4056 irq
= dssdev
->manager
->id
== OMAP_DSS_CHANNEL_LCD
?
4057 DISPC_IRQ_FRAMEDONE
: DISPC_IRQ_FRAMEDONE2
;
4059 omap_dispc_unregister_isr(dsi_framedone_irq_callback
, (void *) dssdev
,
4063 static int dsi_configure_dsi_clocks(struct omap_dss_device
*dssdev
)
4065 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4066 struct dsi_clock_info cinfo
;
4069 /* we always use DSS_CLK_SYSCK as input clock */
4070 cinfo
.use_sys_clk
= true;
4071 cinfo
.regn
= dssdev
->clocks
.dsi
.regn
;
4072 cinfo
.regm
= dssdev
->clocks
.dsi
.regm
;
4073 cinfo
.regm_dispc
= dssdev
->clocks
.dsi
.regm_dispc
;
4074 cinfo
.regm_dsi
= dssdev
->clocks
.dsi
.regm_dsi
;
4075 r
= dsi_calc_clock_rates(dssdev
, &cinfo
);
4077 DSSERR("Failed to calc dsi clocks\n");
4081 r
= dsi_pll_set_clock_div(dsidev
, &cinfo
);
4083 DSSERR("Failed to set dsi clocks\n");
4090 static int dsi_configure_dispc_clocks(struct omap_dss_device
*dssdev
)
4092 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4093 struct dispc_clock_info dispc_cinfo
;
4095 unsigned long long fck
;
4097 fck
= dsi_get_pll_hsdiv_dispc_rate(dsidev
);
4099 dispc_cinfo
.lck_div
= dssdev
->clocks
.dispc
.channel
.lck_div
;
4100 dispc_cinfo
.pck_div
= dssdev
->clocks
.dispc
.channel
.pck_div
;
4102 r
= dispc_calc_clock_rates(fck
, &dispc_cinfo
);
4104 DSSERR("Failed to calc dispc clocks\n");
4108 r
= dispc_set_clock_div(dssdev
->manager
->id
, &dispc_cinfo
);
4110 DSSERR("Failed to set dispc clocks\n");
4117 static int dsi_display_init_dsi(struct omap_dss_device
*dssdev
)
4119 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4120 int dsi_module
= dsi_get_dsidev_id(dsidev
);
4123 r
= dsi_pll_init(dsidev
, true, true);
4127 r
= dsi_configure_dsi_clocks(dssdev
);
4131 dss_select_dispc_clk_source(dssdev
->clocks
.dispc
.dispc_fclk_src
);
4132 dss_select_dsi_clk_source(dsi_module
, dssdev
->clocks
.dsi
.dsi_fclk_src
);
4133 dss_select_lcd_clk_source(dssdev
->manager
->id
,
4134 dssdev
->clocks
.dispc
.channel
.lcd_clk_src
);
4138 r
= dsi_configure_dispc_clocks(dssdev
);
4142 r
= dsi_cio_init(dssdev
);
4146 _dsi_print_reset_status(dsidev
);
4148 dsi_proto_timings(dssdev
);
4149 dsi_set_lp_clk_divisor(dssdev
);
4152 _dsi_print_reset_status(dsidev
);
4154 r
= dsi_proto_config(dssdev
);
4158 /* enable interface */
4159 dsi_vc_enable(dsidev
, 0, 1);
4160 dsi_vc_enable(dsidev
, 1, 1);
4161 dsi_vc_enable(dsidev
, 2, 1);
4162 dsi_vc_enable(dsidev
, 3, 1);
4163 dsi_if_enable(dsidev
, 1);
4164 dsi_force_tx_stop_mode_io(dsidev
);
4168 dsi_cio_uninit(dsidev
);
4170 dss_select_dispc_clk_source(OMAP_DSS_CLK_SRC_FCK
);
4171 dss_select_dsi_clk_source(dsi_module
, OMAP_DSS_CLK_SRC_FCK
);
4173 dsi_pll_uninit(dsidev
, true);
4178 static void dsi_display_uninit_dsi(struct omap_dss_device
*dssdev
,
4179 bool disconnect_lanes
, bool enter_ulps
)
4181 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4182 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4183 int dsi_module
= dsi_get_dsidev_id(dsidev
);
4185 if (enter_ulps
&& !dsi
->ulps_enabled
)
4186 dsi_enter_ulps(dsidev
);
4188 /* disable interface */
4189 dsi_if_enable(dsidev
, 0);
4190 dsi_vc_enable(dsidev
, 0, 0);
4191 dsi_vc_enable(dsidev
, 1, 0);
4192 dsi_vc_enable(dsidev
, 2, 0);
4193 dsi_vc_enable(dsidev
, 3, 0);
4195 dss_select_dispc_clk_source(OMAP_DSS_CLK_SRC_FCK
);
4196 dss_select_dsi_clk_source(dsi_module
, OMAP_DSS_CLK_SRC_FCK
);
4197 dsi_cio_uninit(dsidev
);
4198 dsi_pll_uninit(dsidev
, disconnect_lanes
);
4201 static int dsi_core_init(struct platform_device
*dsidev
)
4204 REG_FLD_MOD(dsidev
, DSI_SYSCONFIG
, 1, 0, 0);
4207 REG_FLD_MOD(dsidev
, DSI_SYSCONFIG
, 1, 2, 2);
4209 /* SIDLEMODE smart-idle */
4210 REG_FLD_MOD(dsidev
, DSI_SYSCONFIG
, 2, 4, 3);
4212 _dsi_initialize_irq(dsidev
);
4217 int omapdss_dsi_display_enable(struct omap_dss_device
*dssdev
)
4219 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4220 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4223 DSSDBG("dsi_display_enable\n");
4225 WARN_ON(!dsi_bus_is_locked(dsidev
));
4227 mutex_lock(&dsi
->lock
);
4229 r
= omap_dss_start_device(dssdev
);
4231 DSSERR("failed to start device\n");
4236 dsi_enable_pll_clock(dsidev
, 1);
4238 r
= _dsi_reset(dsidev
);
4242 dsi_core_init(dsidev
);
4244 r
= dsi_display_init_dispc(dssdev
);
4248 r
= dsi_display_init_dsi(dssdev
);
4252 mutex_unlock(&dsi
->lock
);
4257 dsi_display_uninit_dispc(dssdev
);
4260 dsi_enable_pll_clock(dsidev
, 0);
4261 omap_dss_stop_device(dssdev
);
4263 mutex_unlock(&dsi
->lock
);
4264 DSSDBG("dsi_display_enable FAILED\n");
4267 EXPORT_SYMBOL(omapdss_dsi_display_enable
);
4269 void omapdss_dsi_display_disable(struct omap_dss_device
*dssdev
,
4270 bool disconnect_lanes
, bool enter_ulps
)
4272 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4273 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4275 DSSDBG("dsi_display_disable\n");
4277 WARN_ON(!dsi_bus_is_locked(dsidev
));
4279 mutex_lock(&dsi
->lock
);
4281 dsi_display_uninit_dispc(dssdev
);
4283 dsi_display_uninit_dsi(dssdev
, disconnect_lanes
, enter_ulps
);
4286 dsi_enable_pll_clock(dsidev
, 0);
4288 omap_dss_stop_device(dssdev
);
4290 mutex_unlock(&dsi
->lock
);
4292 EXPORT_SYMBOL(omapdss_dsi_display_disable
);
4294 int omapdss_dsi_enable_te(struct omap_dss_device
*dssdev
, bool enable
)
4296 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4297 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4299 dsi
->te_enabled
= enable
;
4302 EXPORT_SYMBOL(omapdss_dsi_enable_te
);
4304 void dsi_get_overlay_fifo_thresholds(enum omap_plane plane
,
4305 u32 fifo_size
, enum omap_burst_size
*burst_size
,
4306 u32
*fifo_low
, u32
*fifo_high
)
4308 unsigned burst_size_bytes
;
4310 *burst_size
= OMAP_DSS_BURST_16x32
;
4311 burst_size_bytes
= 16 * 32 / 8;
4313 *fifo_high
= fifo_size
- burst_size_bytes
;
4314 *fifo_low
= fifo_size
- burst_size_bytes
* 2;
4317 int dsi_init_display(struct omap_dss_device
*dssdev
)
4319 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4320 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4321 int dsi_module
= dsi_get_dsidev_id(dsidev
);
4323 DSSDBG("DSI init\n");
4325 /* XXX these should be figured out dynamically */
4326 dssdev
->caps
= OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE
|
4327 OMAP_DSS_DISPLAY_CAP_TEAR_ELIM
;
4329 if (dsi
->vdds_dsi_reg
== NULL
) {
4330 struct regulator
*vdds_dsi
;
4332 vdds_dsi
= regulator_get(&dsi
->pdev
->dev
, "vdds_dsi");
4334 if (IS_ERR(vdds_dsi
)) {
4335 DSSERR("can't get VDDS_DSI regulator\n");
4336 return PTR_ERR(vdds_dsi
);
4339 dsi
->vdds_dsi_reg
= vdds_dsi
;
4342 if (dsi_get_num_data_lanes_dssdev(dssdev
) > dsi
->num_data_lanes
) {
4343 DSSERR("DSI%d can't support more than %d data lanes\n",
4344 dsi_module
+ 1, dsi
->num_data_lanes
);
4351 int omap_dsi_request_vc(struct omap_dss_device
*dssdev
, int *channel
)
4353 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4354 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4357 for (i
= 0; i
< ARRAY_SIZE(dsi
->vc
); i
++) {
4358 if (!dsi
->vc
[i
].dssdev
) {
4359 dsi
->vc
[i
].dssdev
= dssdev
;
4365 DSSERR("cannot get VC for display %s", dssdev
->name
);
4368 EXPORT_SYMBOL(omap_dsi_request_vc
);
4370 int omap_dsi_set_vc_id(struct omap_dss_device
*dssdev
, int channel
, int vc_id
)
4372 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4373 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4375 if (vc_id
< 0 || vc_id
> 3) {
4376 DSSERR("VC ID out of range\n");
4380 if (channel
< 0 || channel
> 3) {
4381 DSSERR("Virtual Channel out of range\n");
4385 if (dsi
->vc
[channel
].dssdev
!= dssdev
) {
4386 DSSERR("Virtual Channel not allocated to display %s\n",
4391 dsi
->vc
[channel
].vc_id
= vc_id
;
4395 EXPORT_SYMBOL(omap_dsi_set_vc_id
);
4397 void omap_dsi_release_vc(struct omap_dss_device
*dssdev
, int channel
)
4399 struct platform_device
*dsidev
= dsi_get_dsidev_from_dssdev(dssdev
);
4400 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4402 if ((channel
>= 0 && channel
<= 3) &&
4403 dsi
->vc
[channel
].dssdev
== dssdev
) {
4404 dsi
->vc
[channel
].dssdev
= NULL
;
4405 dsi
->vc
[channel
].vc_id
= 0;
4408 EXPORT_SYMBOL(omap_dsi_release_vc
);
4410 void dsi_wait_pll_hsdiv_dispc_active(struct platform_device
*dsidev
)
4412 if (wait_for_bit_change(dsidev
, DSI_PLL_STATUS
, 7, 1) != 1)
4413 DSSERR("%s (%s) not active\n",
4414 dss_get_generic_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC
),
4415 dss_feat_get_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC
));
4418 void dsi_wait_pll_hsdiv_dsi_active(struct platform_device
*dsidev
)
4420 if (wait_for_bit_change(dsidev
, DSI_PLL_STATUS
, 8, 1) != 1)
4421 DSSERR("%s (%s) not active\n",
4422 dss_get_generic_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI
),
4423 dss_feat_get_clk_source_name(OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI
));
4426 static void dsi_calc_clock_param_ranges(struct platform_device
*dsidev
)
4428 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4430 dsi
->regn_max
= dss_feat_get_param_max(FEAT_PARAM_DSIPLL_REGN
);
4431 dsi
->regm_max
= dss_feat_get_param_max(FEAT_PARAM_DSIPLL_REGM
);
4432 dsi
->regm_dispc_max
=
4433 dss_feat_get_param_max(FEAT_PARAM_DSIPLL_REGM_DISPC
);
4434 dsi
->regm_dsi_max
= dss_feat_get_param_max(FEAT_PARAM_DSIPLL_REGM_DSI
);
4435 dsi
->fint_min
= dss_feat_get_param_min(FEAT_PARAM_DSIPLL_FINT
);
4436 dsi
->fint_max
= dss_feat_get_param_max(FEAT_PARAM_DSIPLL_FINT
);
4437 dsi
->lpdiv_max
= dss_feat_get_param_max(FEAT_PARAM_DSIPLL_LPDIV
);
4440 static int dsi_init(struct platform_device
*dsidev
)
4442 struct omap_display_platform_data
*dss_plat_data
;
4443 struct omap_dss_board_info
*board_info
;
4445 int r
, i
, dsi_module
= dsi_get_dsidev_id(dsidev
);
4446 struct resource
*dsi_mem
;
4447 struct dsi_data
*dsi
;
4449 dsi
= kzalloc(sizeof(*dsi
), GFP_KERNEL
);
4456 dsi_pdev_map
[dsi_module
] = dsidev
;
4457 dev_set_drvdata(&dsidev
->dev
, dsi
);
4459 dss_plat_data
= dsidev
->dev
.platform_data
;
4460 board_info
= dss_plat_data
->board_data
;
4461 dsi
->dsi_mux_pads
= board_info
->dsi_mux_pads
;
4463 spin_lock_init(&dsi
->irq_lock
);
4464 spin_lock_init(&dsi
->errors_lock
);
4467 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
4468 spin_lock_init(&dsi
->irq_stats_lock
);
4469 dsi
->irq_stats
.last_reset
= jiffies
;
4472 mutex_init(&dsi
->lock
);
4473 sema_init(&dsi
->bus_lock
, 1);
4475 INIT_DELAYED_WORK_DEFERRABLE(&dsi
->framedone_timeout_work
,
4476 dsi_framedone_timeout_work_callback
);
4478 #ifdef DSI_CATCH_MISSING_TE
4479 init_timer(&dsi
->te_timer
);
4480 dsi
->te_timer
.function
= dsi_te_timeout
;
4481 dsi
->te_timer
.data
= 0;
4483 dsi_mem
= platform_get_resource(dsi
->pdev
, IORESOURCE_MEM
, 0);
4485 DSSERR("can't get IORESOURCE_MEM DSI\n");
4489 dsi
->base
= ioremap(dsi_mem
->start
, resource_size(dsi_mem
));
4491 DSSERR("can't ioremap DSI\n");
4495 dsi
->irq
= platform_get_irq(dsi
->pdev
, 0);
4497 DSSERR("platform_get_irq failed\n");
4502 r
= request_irq(dsi
->irq
, omap_dsi_irq_handler
, IRQF_SHARED
,
4503 dev_name(&dsidev
->dev
), dsi
->pdev
);
4505 DSSERR("request_irq failed\n");
4509 /* DSI VCs initialization */
4510 for (i
= 0; i
< ARRAY_SIZE(dsi
->vc
); i
++) {
4511 dsi
->vc
[i
].mode
= DSI_VC_MODE_L4
;
4512 dsi
->vc
[i
].dssdev
= NULL
;
4513 dsi
->vc
[i
].vc_id
= 0;
4516 dsi_calc_clock_param_ranges(dsidev
);
4520 rev
= dsi_read_reg(dsidev
, DSI_REVISION
);
4521 dev_dbg(&dsidev
->dev
, "OMAP DSI rev %d.%d\n",
4522 FLD_GET(rev
, 7, 4), FLD_GET(rev
, 3, 0));
4524 dsi
->num_data_lanes
= dsi_get_num_data_lanes(dsidev
);
4537 static void dsi_exit(struct platform_device
*dsidev
)
4539 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4541 if (dsi
->vdds_dsi_reg
!= NULL
) {
4542 if (dsi
->vdds_dsi_enabled
) {
4543 regulator_disable(dsi
->vdds_dsi_reg
);
4544 dsi
->vdds_dsi_enabled
= false;
4547 regulator_put(dsi
->vdds_dsi_reg
);
4548 dsi
->vdds_dsi_reg
= NULL
;
4551 free_irq(dsi
->irq
, dsi
->pdev
);
4556 DSSDBG("omap_dsi_exit\n");
4559 /* DSI1 HW IP initialisation */
4560 static int omap_dsi1hw_probe(struct platform_device
*dsidev
)
4564 r
= dsi_init(dsidev
);
4566 DSSERR("Failed to initialize DSI\n");
4573 static int omap_dsi1hw_remove(struct platform_device
*dsidev
)
4575 struct dsi_data
*dsi
= dsi_get_dsidrv_data(dsidev
);
4578 WARN_ON(dsi
->scp_clk_refcount
> 0);
4582 static struct platform_driver omap_dsi1hw_driver
= {
4583 .probe
= omap_dsi1hw_probe
,
4584 .remove
= omap_dsi1hw_remove
,
4586 .name
= "omapdss_dsi1",
4587 .owner
= THIS_MODULE
,
4591 int dsi_init_platform_driver(void)
4593 return platform_driver_register(&omap_dsi1hw_driver
);
4596 void dsi_uninit_platform_driver(void)
4598 return platform_driver_unregister(&omap_dsi1hw_driver
);