OMAP: DSS2: DSI: catch DSI errors in send_bta_sync
[pandora-kernel.git] / drivers / video / omap2 / dss / dsi.c
1 /*
2  * linux/drivers/video/omap2/dss/dsi.c
3  *
4  * Copyright (C) 2009 Nokia Corporation
5  * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
6  *
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.
10  *
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
14  * more details.
15  *
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/>.
18  */
19
20 #define DSS_SUBSYS_NAME "DSI"
21
22 #include <linux/kernel.h>
23 #include <linux/io.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
37 #include <plat/display.h>
38 #include <plat/clock.h>
39
40 #include "dss.h"
41 #include "dss_features.h"
42
43 /*#define VERBOSE_IRQ*/
44 #define DSI_CATCH_MISSING_TE
45
46 struct dsi_reg { u16 idx; };
47
48 #define DSI_REG(idx)            ((const struct dsi_reg) { idx })
49
50 #define DSI_SZ_REGS             SZ_1K
51 /* DSI Protocol Engine */
52
53 #define DSI_REVISION                    DSI_REG(0x0000)
54 #define DSI_SYSCONFIG                   DSI_REG(0x0010)
55 #define DSI_SYSSTATUS                   DSI_REG(0x0014)
56 #define DSI_IRQSTATUS                   DSI_REG(0x0018)
57 #define DSI_IRQENABLE                   DSI_REG(0x001C)
58 #define DSI_CTRL                        DSI_REG(0x0040)
59 #define DSI_COMPLEXIO_CFG1              DSI_REG(0x0048)
60 #define DSI_COMPLEXIO_IRQ_STATUS        DSI_REG(0x004C)
61 #define DSI_COMPLEXIO_IRQ_ENABLE        DSI_REG(0x0050)
62 #define DSI_CLK_CTRL                    DSI_REG(0x0054)
63 #define DSI_TIMING1                     DSI_REG(0x0058)
64 #define DSI_TIMING2                     DSI_REG(0x005C)
65 #define DSI_VM_TIMING1                  DSI_REG(0x0060)
66 #define DSI_VM_TIMING2                  DSI_REG(0x0064)
67 #define DSI_VM_TIMING3                  DSI_REG(0x0068)
68 #define DSI_CLK_TIMING                  DSI_REG(0x006C)
69 #define DSI_TX_FIFO_VC_SIZE             DSI_REG(0x0070)
70 #define DSI_RX_FIFO_VC_SIZE             DSI_REG(0x0074)
71 #define DSI_COMPLEXIO_CFG2              DSI_REG(0x0078)
72 #define DSI_RX_FIFO_VC_FULLNESS         DSI_REG(0x007C)
73 #define DSI_VM_TIMING4                  DSI_REG(0x0080)
74 #define DSI_TX_FIFO_VC_EMPTINESS        DSI_REG(0x0084)
75 #define DSI_VM_TIMING5                  DSI_REG(0x0088)
76 #define DSI_VM_TIMING6                  DSI_REG(0x008C)
77 #define DSI_VM_TIMING7                  DSI_REG(0x0090)
78 #define DSI_STOPCLK_TIMING              DSI_REG(0x0094)
79 #define DSI_VC_CTRL(n)                  DSI_REG(0x0100 + (n * 0x20))
80 #define DSI_VC_TE(n)                    DSI_REG(0x0104 + (n * 0x20))
81 #define DSI_VC_LONG_PACKET_HEADER(n)    DSI_REG(0x0108 + (n * 0x20))
82 #define DSI_VC_LONG_PACKET_PAYLOAD(n)   DSI_REG(0x010C + (n * 0x20))
83 #define DSI_VC_SHORT_PACKET_HEADER(n)   DSI_REG(0x0110 + (n * 0x20))
84 #define DSI_VC_IRQSTATUS(n)             DSI_REG(0x0118 + (n * 0x20))
85 #define DSI_VC_IRQENABLE(n)             DSI_REG(0x011C + (n * 0x20))
86
87 /* DSIPHY_SCP */
88
89 #define DSI_DSIPHY_CFG0                 DSI_REG(0x200 + 0x0000)
90 #define DSI_DSIPHY_CFG1                 DSI_REG(0x200 + 0x0004)
91 #define DSI_DSIPHY_CFG2                 DSI_REG(0x200 + 0x0008)
92 #define DSI_DSIPHY_CFG5                 DSI_REG(0x200 + 0x0014)
93
94 /* DSI_PLL_CTRL_SCP */
95
96 #define DSI_PLL_CONTROL                 DSI_REG(0x300 + 0x0000)
97 #define DSI_PLL_STATUS                  DSI_REG(0x300 + 0x0004)
98 #define DSI_PLL_GO                      DSI_REG(0x300 + 0x0008)
99 #define DSI_PLL_CONFIGURATION1          DSI_REG(0x300 + 0x000C)
100 #define DSI_PLL_CONFIGURATION2          DSI_REG(0x300 + 0x0010)
101
102 #define REG_GET(idx, start, end) \
103         FLD_GET(dsi_read_reg(idx), start, end)
104
105 #define REG_FLD_MOD(idx, val, start, end) \
106         dsi_write_reg(idx, FLD_MOD(dsi_read_reg(idx), val, start, end))
107
108 /* Global interrupts */
109 #define DSI_IRQ_VC0             (1 << 0)
110 #define DSI_IRQ_VC1             (1 << 1)
111 #define DSI_IRQ_VC2             (1 << 2)
112 #define DSI_IRQ_VC3             (1 << 3)
113 #define DSI_IRQ_WAKEUP          (1 << 4)
114 #define DSI_IRQ_RESYNC          (1 << 5)
115 #define DSI_IRQ_PLL_LOCK        (1 << 7)
116 #define DSI_IRQ_PLL_UNLOCK      (1 << 8)
117 #define DSI_IRQ_PLL_RECALL      (1 << 9)
118 #define DSI_IRQ_COMPLEXIO_ERR   (1 << 10)
119 #define DSI_IRQ_HS_TX_TIMEOUT   (1 << 14)
120 #define DSI_IRQ_LP_RX_TIMEOUT   (1 << 15)
121 #define DSI_IRQ_TE_TRIGGER      (1 << 16)
122 #define DSI_IRQ_ACK_TRIGGER     (1 << 17)
123 #define DSI_IRQ_SYNC_LOST       (1 << 18)
124 #define DSI_IRQ_LDO_POWER_GOOD  (1 << 19)
125 #define DSI_IRQ_TA_TIMEOUT      (1 << 20)
126 #define DSI_IRQ_ERROR_MASK \
127         (DSI_IRQ_HS_TX_TIMEOUT | DSI_IRQ_LP_RX_TIMEOUT | DSI_IRQ_SYNC_LOST | \
128         DSI_IRQ_TA_TIMEOUT)
129 #define DSI_IRQ_CHANNEL_MASK    0xf
130
131 /* Virtual channel interrupts */
132 #define DSI_VC_IRQ_CS           (1 << 0)
133 #define DSI_VC_IRQ_ECC_CORR     (1 << 1)
134 #define DSI_VC_IRQ_PACKET_SENT  (1 << 2)
135 #define DSI_VC_IRQ_FIFO_TX_OVF  (1 << 3)
136 #define DSI_VC_IRQ_FIFO_RX_OVF  (1 << 4)
137 #define DSI_VC_IRQ_BTA          (1 << 5)
138 #define DSI_VC_IRQ_ECC_NO_CORR  (1 << 6)
139 #define DSI_VC_IRQ_FIFO_TX_UDF  (1 << 7)
140 #define DSI_VC_IRQ_PP_BUSY_CHANGE (1 << 8)
141 #define DSI_VC_IRQ_ERROR_MASK \
142         (DSI_VC_IRQ_CS | DSI_VC_IRQ_ECC_CORR | DSI_VC_IRQ_FIFO_TX_OVF | \
143         DSI_VC_IRQ_FIFO_RX_OVF | DSI_VC_IRQ_ECC_NO_CORR | \
144         DSI_VC_IRQ_FIFO_TX_UDF)
145
146 /* ComplexIO interrupts */
147 #define DSI_CIO_IRQ_ERRSYNCESC1         (1 << 0)
148 #define DSI_CIO_IRQ_ERRSYNCESC2         (1 << 1)
149 #define DSI_CIO_IRQ_ERRSYNCESC3         (1 << 2)
150 #define DSI_CIO_IRQ_ERRESC1             (1 << 5)
151 #define DSI_CIO_IRQ_ERRESC2             (1 << 6)
152 #define DSI_CIO_IRQ_ERRESC3             (1 << 7)
153 #define DSI_CIO_IRQ_ERRCONTROL1         (1 << 10)
154 #define DSI_CIO_IRQ_ERRCONTROL2         (1 << 11)
155 #define DSI_CIO_IRQ_ERRCONTROL3         (1 << 12)
156 #define DSI_CIO_IRQ_STATEULPS1          (1 << 15)
157 #define DSI_CIO_IRQ_STATEULPS2          (1 << 16)
158 #define DSI_CIO_IRQ_STATEULPS3          (1 << 17)
159 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_1  (1 << 20)
160 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_1  (1 << 21)
161 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_2  (1 << 22)
162 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_2  (1 << 23)
163 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_3  (1 << 24)
164 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_3  (1 << 25)
165 #define DSI_CIO_IRQ_ULPSACTIVENOT_ALL0  (1 << 30)
166 #define DSI_CIO_IRQ_ULPSACTIVENOT_ALL1  (1 << 31)
167 #define DSI_CIO_IRQ_ERROR_MASK \
168         (DSI_CIO_IRQ_ERRSYNCESC1 | DSI_CIO_IRQ_ERRSYNCESC2 | \
169          DSI_CIO_IRQ_ERRSYNCESC3 | DSI_CIO_IRQ_ERRESC1 | DSI_CIO_IRQ_ERRESC2 | \
170          DSI_CIO_IRQ_ERRESC3 | DSI_CIO_IRQ_ERRCONTROL1 | \
171          DSI_CIO_IRQ_ERRCONTROL2 | DSI_CIO_IRQ_ERRCONTROL3 | \
172          DSI_CIO_IRQ_ERRCONTENTIONLP0_1 | DSI_CIO_IRQ_ERRCONTENTIONLP1_1 | \
173          DSI_CIO_IRQ_ERRCONTENTIONLP0_2 | DSI_CIO_IRQ_ERRCONTENTIONLP1_2 | \
174          DSI_CIO_IRQ_ERRCONTENTIONLP0_3 | DSI_CIO_IRQ_ERRCONTENTIONLP1_3)
175
176 #define DSI_DT_DCS_SHORT_WRITE_0        0x05
177 #define DSI_DT_DCS_SHORT_WRITE_1        0x15
178 #define DSI_DT_DCS_READ                 0x06
179 #define DSI_DT_SET_MAX_RET_PKG_SIZE     0x37
180 #define DSI_DT_NULL_PACKET              0x09
181 #define DSI_DT_DCS_LONG_WRITE           0x39
182
183 #define DSI_DT_RX_ACK_WITH_ERR          0x02
184 #define DSI_DT_RX_DCS_LONG_READ         0x1c
185 #define DSI_DT_RX_SHORT_READ_1          0x21
186 #define DSI_DT_RX_SHORT_READ_2          0x22
187
188 typedef void (*omap_dsi_isr_t) (void *arg, u32 mask);
189
190 #define DSI_MAX_NR_ISRS                2
191
192 struct dsi_isr_data {
193         omap_dsi_isr_t  isr;
194         void            *arg;
195         u32             mask;
196 };
197
198 enum fifo_size {
199         DSI_FIFO_SIZE_0         = 0,
200         DSI_FIFO_SIZE_32        = 1,
201         DSI_FIFO_SIZE_64        = 2,
202         DSI_FIFO_SIZE_96        = 3,
203         DSI_FIFO_SIZE_128       = 4,
204 };
205
206 enum dsi_vc_mode {
207         DSI_VC_MODE_L4 = 0,
208         DSI_VC_MODE_VP,
209 };
210
211 struct dsi_update_region {
212         u16 x, y, w, h;
213         struct omap_dss_device *device;
214 };
215
216 struct dsi_irq_stats {
217         unsigned long last_reset;
218         unsigned irq_count;
219         unsigned dsi_irqs[32];
220         unsigned vc_irqs[4][32];
221         unsigned cio_irqs[32];
222 };
223
224 struct dsi_isr_tables {
225         struct dsi_isr_data isr_table[DSI_MAX_NR_ISRS];
226         struct dsi_isr_data isr_table_vc[4][DSI_MAX_NR_ISRS];
227         struct dsi_isr_data isr_table_cio[DSI_MAX_NR_ISRS];
228 };
229
230 static struct
231 {
232         struct platform_device *pdev;
233         void __iomem    *base;
234         int irq;
235
236         struct dsi_clock_info current_cinfo;
237
238         struct regulator *vdds_dsi_reg;
239
240         struct {
241                 enum dsi_vc_mode mode;
242                 struct omap_dss_device *dssdev;
243                 enum fifo_size fifo_size;
244                 int vc_id;
245         } vc[4];
246
247         struct mutex lock;
248         struct semaphore bus_lock;
249
250         unsigned pll_locked;
251
252         spinlock_t irq_lock;
253         struct dsi_isr_tables isr_tables;
254         /* space for a copy used by the interrupt handler */
255         struct dsi_isr_tables isr_tables_copy;
256
257         int update_channel;
258         struct dsi_update_region update_region;
259
260         bool te_enabled;
261
262         struct workqueue_struct *workqueue;
263
264         void (*framedone_callback)(int, void *);
265         void *framedone_data;
266
267         struct delayed_work framedone_timeout_work;
268
269 #ifdef DSI_CATCH_MISSING_TE
270         struct timer_list te_timer;
271 #endif
272
273         unsigned long cache_req_pck;
274         unsigned long cache_clk_freq;
275         struct dsi_clock_info cache_cinfo;
276
277         u32             errors;
278         spinlock_t      errors_lock;
279 #ifdef DEBUG
280         ktime_t perf_setup_time;
281         ktime_t perf_start_time;
282 #endif
283         int debug_read;
284         int debug_write;
285
286 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
287         spinlock_t irq_stats_lock;
288         struct dsi_irq_stats irq_stats;
289 #endif
290         /* DSI PLL Parameter Ranges */
291         unsigned long regm_max, regn_max;
292         unsigned long  regm_dispc_max, regm_dsi_max;
293         unsigned long  fint_min, fint_max;
294         unsigned long lpdiv_max;
295 } dsi;
296
297 #ifdef DEBUG
298 static unsigned int dsi_perf;
299 module_param_named(dsi_perf, dsi_perf, bool, 0644);
300 #endif
301
302 static inline void dsi_write_reg(const struct dsi_reg idx, u32 val)
303 {
304         __raw_writel(val, dsi.base + idx.idx);
305 }
306
307 static inline u32 dsi_read_reg(const struct dsi_reg idx)
308 {
309         return __raw_readl(dsi.base + idx.idx);
310 }
311
312
313 void dsi_save_context(void)
314 {
315 }
316
317 void dsi_restore_context(void)
318 {
319 }
320
321 void dsi_bus_lock(void)
322 {
323         down(&dsi.bus_lock);
324 }
325 EXPORT_SYMBOL(dsi_bus_lock);
326
327 void dsi_bus_unlock(void)
328 {
329         up(&dsi.bus_lock);
330 }
331 EXPORT_SYMBOL(dsi_bus_unlock);
332
333 static bool dsi_bus_is_locked(void)
334 {
335         return dsi.bus_lock.count == 0;
336 }
337
338 static void dsi_completion_handler(void *data, u32 mask)
339 {
340         complete((struct completion *)data);
341 }
342
343 static inline int wait_for_bit_change(const struct dsi_reg idx, int bitnum,
344                 int value)
345 {
346         int t = 100000;
347
348         while (REG_GET(idx, bitnum, bitnum) != value) {
349                 if (--t == 0)
350                         return !value;
351         }
352
353         return value;
354 }
355
356 #ifdef DEBUG
357 static void dsi_perf_mark_setup(void)
358 {
359         dsi.perf_setup_time = ktime_get();
360 }
361
362 static void dsi_perf_mark_start(void)
363 {
364         dsi.perf_start_time = ktime_get();
365 }
366
367 static void dsi_perf_show(const char *name)
368 {
369         ktime_t t, setup_time, trans_time;
370         u32 total_bytes;
371         u32 setup_us, trans_us, total_us;
372
373         if (!dsi_perf)
374                 return;
375
376         t = ktime_get();
377
378         setup_time = ktime_sub(dsi.perf_start_time, dsi.perf_setup_time);
379         setup_us = (u32)ktime_to_us(setup_time);
380         if (setup_us == 0)
381                 setup_us = 1;
382
383         trans_time = ktime_sub(t, dsi.perf_start_time);
384         trans_us = (u32)ktime_to_us(trans_time);
385         if (trans_us == 0)
386                 trans_us = 1;
387
388         total_us = setup_us + trans_us;
389
390         total_bytes = dsi.update_region.w *
391                 dsi.update_region.h *
392                 dsi.update_region.device->ctrl.pixel_size / 8;
393
394         printk(KERN_INFO "DSI(%s): %u us + %u us = %u us (%uHz), "
395                         "%u bytes, %u kbytes/sec\n",
396                         name,
397                         setup_us,
398                         trans_us,
399                         total_us,
400                         1000*1000 / total_us,
401                         total_bytes,
402                         total_bytes * 1000 / total_us);
403 }
404 #else
405 #define dsi_perf_mark_setup()
406 #define dsi_perf_mark_start()
407 #define dsi_perf_show(x)
408 #endif
409
410 static void print_irq_status(u32 status)
411 {
412 #ifndef VERBOSE_IRQ
413         if ((status & ~DSI_IRQ_CHANNEL_MASK) == 0)
414                 return;
415 #endif
416         printk(KERN_DEBUG "DSI IRQ: 0x%x: ", status);
417
418 #define PIS(x) \
419         if (status & DSI_IRQ_##x) \
420                 printk(#x " ");
421 #ifdef VERBOSE_IRQ
422         PIS(VC0);
423         PIS(VC1);
424         PIS(VC2);
425         PIS(VC3);
426 #endif
427         PIS(WAKEUP);
428         PIS(RESYNC);
429         PIS(PLL_LOCK);
430         PIS(PLL_UNLOCK);
431         PIS(PLL_RECALL);
432         PIS(COMPLEXIO_ERR);
433         PIS(HS_TX_TIMEOUT);
434         PIS(LP_RX_TIMEOUT);
435         PIS(TE_TRIGGER);
436         PIS(ACK_TRIGGER);
437         PIS(SYNC_LOST);
438         PIS(LDO_POWER_GOOD);
439         PIS(TA_TIMEOUT);
440 #undef PIS
441
442         printk("\n");
443 }
444
445 static void print_irq_status_vc(int channel, u32 status)
446 {
447 #ifndef VERBOSE_IRQ
448         if ((status & ~DSI_VC_IRQ_PACKET_SENT) == 0)
449                 return;
450 #endif
451         printk(KERN_DEBUG "DSI VC(%d) IRQ 0x%x: ", channel, status);
452
453 #define PIS(x) \
454         if (status & DSI_VC_IRQ_##x) \
455                 printk(#x " ");
456         PIS(CS);
457         PIS(ECC_CORR);
458 #ifdef VERBOSE_IRQ
459         PIS(PACKET_SENT);
460 #endif
461         PIS(FIFO_TX_OVF);
462         PIS(FIFO_RX_OVF);
463         PIS(BTA);
464         PIS(ECC_NO_CORR);
465         PIS(FIFO_TX_UDF);
466         PIS(PP_BUSY_CHANGE);
467 #undef PIS
468         printk("\n");
469 }
470
471 static void print_irq_status_cio(u32 status)
472 {
473         printk(KERN_DEBUG "DSI CIO IRQ 0x%x: ", status);
474
475 #define PIS(x) \
476         if (status & DSI_CIO_IRQ_##x) \
477                 printk(#x " ");
478         PIS(ERRSYNCESC1);
479         PIS(ERRSYNCESC2);
480         PIS(ERRSYNCESC3);
481         PIS(ERRESC1);
482         PIS(ERRESC2);
483         PIS(ERRESC3);
484         PIS(ERRCONTROL1);
485         PIS(ERRCONTROL2);
486         PIS(ERRCONTROL3);
487         PIS(STATEULPS1);
488         PIS(STATEULPS2);
489         PIS(STATEULPS3);
490         PIS(ERRCONTENTIONLP0_1);
491         PIS(ERRCONTENTIONLP1_1);
492         PIS(ERRCONTENTIONLP0_2);
493         PIS(ERRCONTENTIONLP1_2);
494         PIS(ERRCONTENTIONLP0_3);
495         PIS(ERRCONTENTIONLP1_3);
496         PIS(ULPSACTIVENOT_ALL0);
497         PIS(ULPSACTIVENOT_ALL1);
498 #undef PIS
499
500         printk("\n");
501 }
502
503 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
504 static void dsi_collect_irq_stats(u32 irqstatus, u32 *vcstatus, u32 ciostatus)
505 {
506         int i;
507
508         spin_lock(&dsi.irq_stats_lock);
509
510         dsi.irq_stats.irq_count++;
511         dss_collect_irq_stats(irqstatus, dsi.irq_stats.dsi_irqs);
512
513         for (i = 0; i < 4; ++i)
514                 dss_collect_irq_stats(vcstatus[i], dsi.irq_stats.vc_irqs[i]);
515
516         dss_collect_irq_stats(ciostatus, dsi.irq_stats.cio_irqs);
517
518         spin_unlock(&dsi.irq_stats_lock);
519 }
520 #else
521 #define dsi_collect_irq_stats(irqstatus, vcstatus, ciostatus)
522 #endif
523
524 static int debug_irq;
525
526 static void dsi_handle_irq_errors(u32 irqstatus, u32 *vcstatus, u32 ciostatus)
527 {
528         int i;
529
530         if (irqstatus & DSI_IRQ_ERROR_MASK) {
531                 DSSERR("DSI error, irqstatus %x\n", irqstatus);
532                 print_irq_status(irqstatus);
533                 spin_lock(&dsi.errors_lock);
534                 dsi.errors |= irqstatus & DSI_IRQ_ERROR_MASK;
535                 spin_unlock(&dsi.errors_lock);
536         } else if (debug_irq) {
537                 print_irq_status(irqstatus);
538         }
539
540         for (i = 0; i < 4; ++i) {
541                 if (vcstatus[i] & DSI_VC_IRQ_ERROR_MASK) {
542                         DSSERR("DSI VC(%d) error, vc irqstatus %x\n",
543                                        i, vcstatus[i]);
544                         print_irq_status_vc(i, vcstatus[i]);
545                 } else if (debug_irq) {
546                         print_irq_status_vc(i, vcstatus[i]);
547                 }
548         }
549
550         if (ciostatus & DSI_CIO_IRQ_ERROR_MASK) {
551                 DSSERR("DSI CIO error, cio irqstatus %x\n", ciostatus);
552                 print_irq_status_cio(ciostatus);
553         } else if (debug_irq) {
554                 print_irq_status_cio(ciostatus);
555         }
556 }
557
558 static void dsi_call_isrs(struct dsi_isr_data *isr_array,
559                 unsigned isr_array_size, u32 irqstatus)
560 {
561         struct dsi_isr_data *isr_data;
562         int i;
563
564         for (i = 0; i < isr_array_size; i++) {
565                 isr_data = &isr_array[i];
566                 if (isr_data->isr && isr_data->mask & irqstatus)
567                         isr_data->isr(isr_data->arg, irqstatus);
568         }
569 }
570
571 static void dsi_handle_isrs(struct dsi_isr_tables *isr_tables,
572                 u32 irqstatus, u32 *vcstatus, u32 ciostatus)
573 {
574         int i;
575
576         dsi_call_isrs(isr_tables->isr_table,
577                         ARRAY_SIZE(isr_tables->isr_table),
578                         irqstatus);
579
580         for (i = 0; i < 4; ++i) {
581                 if (vcstatus[i] == 0)
582                         continue;
583                 dsi_call_isrs(isr_tables->isr_table_vc[i],
584                                 ARRAY_SIZE(isr_tables->isr_table_vc[i]),
585                                 vcstatus[i]);
586         }
587
588         if (ciostatus != 0)
589                 dsi_call_isrs(isr_tables->isr_table_cio,
590                                 ARRAY_SIZE(isr_tables->isr_table_cio),
591                                 ciostatus);
592 }
593
594 static irqreturn_t omap_dsi_irq_handler(int irq, void *arg)
595 {
596         u32 irqstatus, vcstatus[4], ciostatus;
597         int i;
598
599         spin_lock(&dsi.irq_lock);
600
601         irqstatus = dsi_read_reg(DSI_IRQSTATUS);
602
603         /* IRQ is not for us */
604         if (!irqstatus) {
605                 spin_unlock(&dsi.irq_lock);
606                 return IRQ_NONE;
607         }
608
609         dsi_write_reg(DSI_IRQSTATUS, irqstatus & ~DSI_IRQ_CHANNEL_MASK);
610         /* flush posted write */
611         dsi_read_reg(DSI_IRQSTATUS);
612
613         for (i = 0; i < 4; ++i) {
614                 if ((irqstatus & (1 << i)) == 0) {
615                         vcstatus[i] = 0;
616                         continue;
617                 }
618
619                 vcstatus[i] = dsi_read_reg(DSI_VC_IRQSTATUS(i));
620
621                 dsi_write_reg(DSI_VC_IRQSTATUS(i), vcstatus[i]);
622                 /* flush posted write */
623                 dsi_read_reg(DSI_VC_IRQSTATUS(i));
624         }
625
626         if (irqstatus & DSI_IRQ_COMPLEXIO_ERR) {
627                 ciostatus = dsi_read_reg(DSI_COMPLEXIO_IRQ_STATUS);
628
629                 dsi_write_reg(DSI_COMPLEXIO_IRQ_STATUS, ciostatus);
630                 /* flush posted write */
631                 dsi_read_reg(DSI_COMPLEXIO_IRQ_STATUS);
632         } else {
633                 ciostatus = 0;
634         }
635
636 #ifdef DSI_CATCH_MISSING_TE
637         if (irqstatus & DSI_IRQ_TE_TRIGGER)
638                 del_timer(&dsi.te_timer);
639 #endif
640
641         /* make a copy and unlock, so that isrs can unregister
642          * themselves */
643         memcpy(&dsi.isr_tables_copy, &dsi.isr_tables, sizeof(dsi.isr_tables));
644
645         spin_unlock(&dsi.irq_lock);
646
647         dsi_handle_isrs(&dsi.isr_tables_copy, irqstatus, vcstatus, ciostatus);
648
649         dsi_handle_irq_errors(irqstatus, vcstatus, ciostatus);
650
651         dsi_collect_irq_stats(irqstatus, vcstatus, ciostatus);
652
653         return IRQ_HANDLED;
654 }
655
656 /* dsi.irq_lock has to be locked by the caller */
657 static void _omap_dsi_configure_irqs(struct dsi_isr_data *isr_array,
658                 unsigned isr_array_size, u32 default_mask,
659                 const struct dsi_reg enable_reg,
660                 const struct dsi_reg status_reg)
661 {
662         struct dsi_isr_data *isr_data;
663         u32 mask;
664         u32 old_mask;
665         int i;
666
667         mask = default_mask;
668
669         for (i = 0; i < isr_array_size; i++) {
670                 isr_data = &isr_array[i];
671
672                 if (isr_data->isr == NULL)
673                         continue;
674
675                 mask |= isr_data->mask;
676         }
677
678         old_mask = dsi_read_reg(enable_reg);
679         /* clear the irqstatus for newly enabled irqs */
680         dsi_write_reg(status_reg, (mask ^ old_mask) & mask);
681         dsi_write_reg(enable_reg, mask);
682
683         /* flush posted writes */
684         dsi_read_reg(enable_reg);
685         dsi_read_reg(status_reg);
686 }
687
688 /* dsi.irq_lock has to be locked by the caller */
689 static void _omap_dsi_set_irqs(void)
690 {
691         u32 mask = DSI_IRQ_ERROR_MASK;
692 #ifdef DSI_CATCH_MISSING_TE
693         mask |= DSI_IRQ_TE_TRIGGER;
694 #endif
695         _omap_dsi_configure_irqs(dsi.isr_tables.isr_table,
696                         ARRAY_SIZE(dsi.isr_tables.isr_table), mask,
697                         DSI_IRQENABLE, DSI_IRQSTATUS);
698 }
699
700 /* dsi.irq_lock has to be locked by the caller */
701 static void _omap_dsi_set_irqs_vc(int vc)
702 {
703         _omap_dsi_configure_irqs(dsi.isr_tables.isr_table_vc[vc],
704                         ARRAY_SIZE(dsi.isr_tables.isr_table_vc[vc]),
705                         DSI_VC_IRQ_ERROR_MASK,
706                         DSI_VC_IRQENABLE(vc), DSI_VC_IRQSTATUS(vc));
707 }
708
709 /* dsi.irq_lock has to be locked by the caller */
710 static void _omap_dsi_set_irqs_cio(void)
711 {
712         _omap_dsi_configure_irqs(dsi.isr_tables.isr_table_cio,
713                         ARRAY_SIZE(dsi.isr_tables.isr_table_cio),
714                         DSI_CIO_IRQ_ERROR_MASK,
715                         DSI_COMPLEXIO_IRQ_ENABLE, DSI_COMPLEXIO_IRQ_STATUS);
716 }
717
718 static void _dsi_initialize_irq(void)
719 {
720         unsigned long flags;
721         int vc;
722
723         spin_lock_irqsave(&dsi.irq_lock, flags);
724
725         memset(&dsi.isr_tables, 0, sizeof(dsi.isr_tables));
726
727         _omap_dsi_set_irqs();
728         for (vc = 0; vc < 4; ++vc)
729                 _omap_dsi_set_irqs_vc(vc);
730         _omap_dsi_set_irqs_cio();
731
732         spin_unlock_irqrestore(&dsi.irq_lock, flags);
733 }
734
735 static int _dsi_register_isr(omap_dsi_isr_t isr, void *arg, u32 mask,
736                 struct dsi_isr_data *isr_array, unsigned isr_array_size)
737 {
738         struct dsi_isr_data *isr_data;
739         int free_idx;
740         int i;
741
742         BUG_ON(isr == NULL);
743
744         /* check for duplicate entry and find a free slot */
745         free_idx = -1;
746         for (i = 0; i < isr_array_size; i++) {
747                 isr_data = &isr_array[i];
748
749                 if (isr_data->isr == isr && isr_data->arg == arg &&
750                                 isr_data->mask == mask) {
751                         return -EINVAL;
752                 }
753
754                 if (isr_data->isr == NULL && free_idx == -1)
755                         free_idx = i;
756         }
757
758         if (free_idx == -1)
759                 return -EBUSY;
760
761         isr_data = &isr_array[free_idx];
762         isr_data->isr = isr;
763         isr_data->arg = arg;
764         isr_data->mask = mask;
765
766         return 0;
767 }
768
769 static int _dsi_unregister_isr(omap_dsi_isr_t isr, void *arg, u32 mask,
770                 struct dsi_isr_data *isr_array, unsigned isr_array_size)
771 {
772         struct dsi_isr_data *isr_data;
773         int i;
774
775         for (i = 0; i < isr_array_size; i++) {
776                 isr_data = &isr_array[i];
777                 if (isr_data->isr != isr || isr_data->arg != arg ||
778                                 isr_data->mask != mask)
779                         continue;
780
781                 isr_data->isr = NULL;
782                 isr_data->arg = NULL;
783                 isr_data->mask = 0;
784
785                 return 0;
786         }
787
788         return -EINVAL;
789 }
790
791 static int dsi_register_isr(omap_dsi_isr_t isr, void *arg, u32 mask)
792 {
793         unsigned long flags;
794         int r;
795
796         spin_lock_irqsave(&dsi.irq_lock, flags);
797
798         r = _dsi_register_isr(isr, arg, mask, dsi.isr_tables.isr_table,
799                         ARRAY_SIZE(dsi.isr_tables.isr_table));
800
801         if (r == 0)
802                 _omap_dsi_set_irqs();
803
804         spin_unlock_irqrestore(&dsi.irq_lock, flags);
805
806         return r;
807 }
808
809 static int dsi_unregister_isr(omap_dsi_isr_t isr, void *arg, u32 mask)
810 {
811         unsigned long flags;
812         int r;
813
814         spin_lock_irqsave(&dsi.irq_lock, flags);
815
816         r = _dsi_unregister_isr(isr, arg, mask, dsi.isr_tables.isr_table,
817                         ARRAY_SIZE(dsi.isr_tables.isr_table));
818
819         if (r == 0)
820                 _omap_dsi_set_irqs();
821
822         spin_unlock_irqrestore(&dsi.irq_lock, flags);
823
824         return r;
825 }
826
827 static int dsi_register_isr_vc(int channel, omap_dsi_isr_t isr, void *arg,
828                 u32 mask)
829 {
830         unsigned long flags;
831         int r;
832
833         spin_lock_irqsave(&dsi.irq_lock, flags);
834
835         r = _dsi_register_isr(isr, arg, mask,
836                         dsi.isr_tables.isr_table_vc[channel],
837                         ARRAY_SIZE(dsi.isr_tables.isr_table_vc[channel]));
838
839         if (r == 0)
840                 _omap_dsi_set_irqs_vc(channel);
841
842         spin_unlock_irqrestore(&dsi.irq_lock, flags);
843
844         return r;
845 }
846
847 static int dsi_unregister_isr_vc(int channel, omap_dsi_isr_t isr, void *arg,
848                 u32 mask)
849 {
850         unsigned long flags;
851         int r;
852
853         spin_lock_irqsave(&dsi.irq_lock, flags);
854
855         r = _dsi_unregister_isr(isr, arg, mask,
856                         dsi.isr_tables.isr_table_vc[channel],
857                         ARRAY_SIZE(dsi.isr_tables.isr_table_vc[channel]));
858
859         if (r == 0)
860                 _omap_dsi_set_irqs_vc(channel);
861
862         spin_unlock_irqrestore(&dsi.irq_lock, flags);
863
864         return r;
865 }
866
867 static int dsi_register_isr_cio(omap_dsi_isr_t isr, void *arg, u32 mask)
868 {
869         unsigned long flags;
870         int r;
871
872         spin_lock_irqsave(&dsi.irq_lock, flags);
873
874         r = _dsi_register_isr(isr, arg, mask, dsi.isr_tables.isr_table_cio,
875                         ARRAY_SIZE(dsi.isr_tables.isr_table_cio));
876
877         if (r == 0)
878                 _omap_dsi_set_irqs_cio();
879
880         spin_unlock_irqrestore(&dsi.irq_lock, flags);
881
882         return r;
883 }
884
885 static int dsi_unregister_isr_cio(omap_dsi_isr_t isr, void *arg, u32 mask)
886 {
887         unsigned long flags;
888         int r;
889
890         spin_lock_irqsave(&dsi.irq_lock, flags);
891
892         r = _dsi_unregister_isr(isr, arg, mask, dsi.isr_tables.isr_table_cio,
893                         ARRAY_SIZE(dsi.isr_tables.isr_table_cio));
894
895         if (r == 0)
896                 _omap_dsi_set_irqs_cio();
897
898         spin_unlock_irqrestore(&dsi.irq_lock, flags);
899
900         return r;
901 }
902
903 static u32 dsi_get_errors(void)
904 {
905         unsigned long flags;
906         u32 e;
907         spin_lock_irqsave(&dsi.errors_lock, flags);
908         e = dsi.errors;
909         dsi.errors = 0;
910         spin_unlock_irqrestore(&dsi.errors_lock, flags);
911         return e;
912 }
913
914 /* DSI func clock. this could also be dsi_pll_hsdiv_dsi_clk */
915 static inline void enable_clocks(bool enable)
916 {
917         if (enable)
918                 dss_clk_enable(DSS_CLK_ICK | DSS_CLK_FCK);
919         else
920                 dss_clk_disable(DSS_CLK_ICK | DSS_CLK_FCK);
921 }
922
923 /* source clock for DSI PLL. this could also be PCLKFREE */
924 static inline void dsi_enable_pll_clock(bool enable)
925 {
926         if (enable)
927                 dss_clk_enable(DSS_CLK_SYSCK);
928         else
929                 dss_clk_disable(DSS_CLK_SYSCK);
930
931         if (enable && dsi.pll_locked) {
932                 if (wait_for_bit_change(DSI_PLL_STATUS, 1, 1) != 1)
933                         DSSERR("cannot lock PLL when enabling clocks\n");
934         }
935 }
936
937 #ifdef DEBUG
938 static void _dsi_print_reset_status(void)
939 {
940         u32 l;
941
942         if (!dss_debug)
943                 return;
944
945         /* A dummy read using the SCP interface to any DSIPHY register is
946          * required after DSIPHY reset to complete the reset of the DSI complex
947          * I/O. */
948         l = dsi_read_reg(DSI_DSIPHY_CFG5);
949
950         printk(KERN_DEBUG "DSI resets: ");
951
952         l = dsi_read_reg(DSI_PLL_STATUS);
953         printk("PLL (%d) ", FLD_GET(l, 0, 0));
954
955         l = dsi_read_reg(DSI_COMPLEXIO_CFG1);
956         printk("CIO (%d) ", FLD_GET(l, 29, 29));
957
958         l = dsi_read_reg(DSI_DSIPHY_CFG5);
959         printk("PHY (%x, %d, %d, %d)\n",
960                         FLD_GET(l, 28, 26),
961                         FLD_GET(l, 29, 29),
962                         FLD_GET(l, 30, 30),
963                         FLD_GET(l, 31, 31));
964 }
965 #else
966 #define _dsi_print_reset_status()
967 #endif
968
969 static inline int dsi_if_enable(bool enable)
970 {
971         DSSDBG("dsi_if_enable(%d)\n", enable);
972
973         enable = enable ? 1 : 0;
974         REG_FLD_MOD(DSI_CTRL, enable, 0, 0); /* IF_EN */
975
976         if (wait_for_bit_change(DSI_CTRL, 0, enable) != enable) {
977                         DSSERR("Failed to set dsi_if_enable to %d\n", enable);
978                         return -EIO;
979         }
980
981         return 0;
982 }
983
984 unsigned long dsi_get_pll_hsdiv_dispc_rate(void)
985 {
986         return dsi.current_cinfo.dsi_pll_hsdiv_dispc_clk;
987 }
988
989 static unsigned long dsi_get_pll_hsdiv_dsi_rate(void)
990 {
991         return dsi.current_cinfo.dsi_pll_hsdiv_dsi_clk;
992 }
993
994 static unsigned long dsi_get_txbyteclkhs(void)
995 {
996         return dsi.current_cinfo.clkin4ddr / 16;
997 }
998
999 static unsigned long dsi_fclk_rate(void)
1000 {
1001         unsigned long r;
1002
1003         if (dss_get_dsi_clk_source() == DSS_CLK_SRC_FCK) {
1004                 /* DSI FCLK source is DSS_CLK_FCK */
1005                 r = dss_clk_get_rate(DSS_CLK_FCK);
1006         } else {
1007                 /* DSI FCLK source is dsi_pll_hsdiv_dsi_clk */
1008                 r = dsi_get_pll_hsdiv_dsi_rate();
1009         }
1010
1011         return r;
1012 }
1013
1014 static int dsi_set_lp_clk_divisor(struct omap_dss_device *dssdev)
1015 {
1016         unsigned long dsi_fclk;
1017         unsigned lp_clk_div;
1018         unsigned long lp_clk;
1019
1020         lp_clk_div = dssdev->phy.dsi.div.lp_clk_div;
1021
1022         if (lp_clk_div == 0 || lp_clk_div > dsi.lpdiv_max)
1023                 return -EINVAL;
1024
1025         dsi_fclk = dsi_fclk_rate();
1026
1027         lp_clk = dsi_fclk / 2 / lp_clk_div;
1028
1029         DSSDBG("LP_CLK_DIV %u, LP_CLK %lu\n", lp_clk_div, lp_clk);
1030         dsi.current_cinfo.lp_clk = lp_clk;
1031         dsi.current_cinfo.lp_clk_div = lp_clk_div;
1032
1033         REG_FLD_MOD(DSI_CLK_CTRL, lp_clk_div, 12, 0);   /* LP_CLK_DIVISOR */
1034
1035         REG_FLD_MOD(DSI_CLK_CTRL, dsi_fclk > 30000000 ? 1 : 0,
1036                         21, 21);                /* LP_RX_SYNCHRO_ENABLE */
1037
1038         return 0;
1039 }
1040
1041
1042 enum dsi_pll_power_state {
1043         DSI_PLL_POWER_OFF       = 0x0,
1044         DSI_PLL_POWER_ON_HSCLK  = 0x1,
1045         DSI_PLL_POWER_ON_ALL    = 0x2,
1046         DSI_PLL_POWER_ON_DIV    = 0x3,
1047 };
1048
1049 static int dsi_pll_power(enum dsi_pll_power_state state)
1050 {
1051         int t = 0;
1052
1053         REG_FLD_MOD(DSI_CLK_CTRL, state, 31, 30);       /* PLL_PWR_CMD */
1054
1055         /* PLL_PWR_STATUS */
1056         while (FLD_GET(dsi_read_reg(DSI_CLK_CTRL), 29, 28) != state) {
1057                 if (++t > 1000) {
1058                         DSSERR("Failed to set DSI PLL power mode to %d\n",
1059                                         state);
1060                         return -ENODEV;
1061                 }
1062                 udelay(1);
1063         }
1064
1065         return 0;
1066 }
1067
1068 /* calculate clock rates using dividers in cinfo */
1069 static int dsi_calc_clock_rates(struct omap_dss_device *dssdev,
1070                 struct dsi_clock_info *cinfo)
1071 {
1072         if (cinfo->regn == 0 || cinfo->regn > dsi.regn_max)
1073                 return -EINVAL;
1074
1075         if (cinfo->regm == 0 || cinfo->regm > dsi.regm_max)
1076                 return -EINVAL;
1077
1078         if (cinfo->regm_dispc > dsi.regm_dispc_max)
1079                 return -EINVAL;
1080
1081         if (cinfo->regm_dsi > dsi.regm_dsi_max)
1082                 return -EINVAL;
1083
1084         if (cinfo->use_sys_clk) {
1085                 cinfo->clkin = dss_clk_get_rate(DSS_CLK_SYSCK);
1086                 /* XXX it is unclear if highfreq should be used
1087                  * with DSS_SYS_CLK source also */
1088                 cinfo->highfreq = 0;
1089         } else {
1090                 cinfo->clkin = dispc_pclk_rate(dssdev->manager->id);
1091
1092                 if (cinfo->clkin < 32000000)
1093                         cinfo->highfreq = 0;
1094                 else
1095                         cinfo->highfreq = 1;
1096         }
1097
1098         cinfo->fint = cinfo->clkin / (cinfo->regn * (cinfo->highfreq ? 2 : 1));
1099
1100         if (cinfo->fint > dsi.fint_max || cinfo->fint < dsi.fint_min)
1101                 return -EINVAL;
1102
1103         cinfo->clkin4ddr = 2 * cinfo->regm * cinfo->fint;
1104
1105         if (cinfo->clkin4ddr > 1800 * 1000 * 1000)
1106                 return -EINVAL;
1107
1108         if (cinfo->regm_dispc > 0)
1109                 cinfo->dsi_pll_hsdiv_dispc_clk =
1110                         cinfo->clkin4ddr / cinfo->regm_dispc;
1111         else
1112                 cinfo->dsi_pll_hsdiv_dispc_clk = 0;
1113
1114         if (cinfo->regm_dsi > 0)
1115                 cinfo->dsi_pll_hsdiv_dsi_clk =
1116                         cinfo->clkin4ddr / cinfo->regm_dsi;
1117         else
1118                 cinfo->dsi_pll_hsdiv_dsi_clk = 0;
1119
1120         return 0;
1121 }
1122
1123 int dsi_pll_calc_clock_div_pck(bool is_tft, unsigned long req_pck,
1124                 struct dsi_clock_info *dsi_cinfo,
1125                 struct dispc_clock_info *dispc_cinfo)
1126 {
1127         struct dsi_clock_info cur, best;
1128         struct dispc_clock_info best_dispc;
1129         int min_fck_per_pck;
1130         int match = 0;
1131         unsigned long dss_sys_clk, max_dss_fck;
1132
1133         dss_sys_clk = dss_clk_get_rate(DSS_CLK_SYSCK);
1134
1135         max_dss_fck = dss_feat_get_param_max(FEAT_PARAM_DSS_FCK);
1136
1137         if (req_pck == dsi.cache_req_pck &&
1138                         dsi.cache_cinfo.clkin == dss_sys_clk) {
1139                 DSSDBG("DSI clock info found from cache\n");
1140                 *dsi_cinfo = dsi.cache_cinfo;
1141                 dispc_find_clk_divs(is_tft, req_pck,
1142                         dsi_cinfo->dsi_pll_hsdiv_dispc_clk, dispc_cinfo);
1143                 return 0;
1144         }
1145
1146         min_fck_per_pck = CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK;
1147
1148         if (min_fck_per_pck &&
1149                 req_pck * min_fck_per_pck > max_dss_fck) {
1150                 DSSERR("Requested pixel clock not possible with the current "
1151                                 "OMAP2_DSS_MIN_FCK_PER_PCK setting. Turning "
1152                                 "the constraint off.\n");
1153                 min_fck_per_pck = 0;
1154         }
1155
1156         DSSDBG("dsi_pll_calc\n");
1157
1158 retry:
1159         memset(&best, 0, sizeof(best));
1160         memset(&best_dispc, 0, sizeof(best_dispc));
1161
1162         memset(&cur, 0, sizeof(cur));
1163         cur.clkin = dss_sys_clk;
1164         cur.use_sys_clk = 1;
1165         cur.highfreq = 0;
1166
1167         /* no highfreq: 0.75MHz < Fint = clkin / regn < 2.1MHz */
1168         /* highfreq: 0.75MHz < Fint = clkin / (2*regn) < 2.1MHz */
1169         /* To reduce PLL lock time, keep Fint high (around 2 MHz) */
1170         for (cur.regn = 1; cur.regn < dsi.regn_max; ++cur.regn) {
1171                 if (cur.highfreq == 0)
1172                         cur.fint = cur.clkin / cur.regn;
1173                 else
1174                         cur.fint = cur.clkin / (2 * cur.regn);
1175
1176                 if (cur.fint > dsi.fint_max || cur.fint < dsi.fint_min)
1177                         continue;
1178
1179                 /* DSIPHY(MHz) = (2 * regm / regn) * (clkin / (highfreq + 1)) */
1180                 for (cur.regm = 1; cur.regm < dsi.regm_max; ++cur.regm) {
1181                         unsigned long a, b;
1182
1183                         a = 2 * cur.regm * (cur.clkin/1000);
1184                         b = cur.regn * (cur.highfreq + 1);
1185                         cur.clkin4ddr = a / b * 1000;
1186
1187                         if (cur.clkin4ddr > 1800 * 1000 * 1000)
1188                                 break;
1189
1190                         /* dsi_pll_hsdiv_dispc_clk(MHz) =
1191                          * DSIPHY(MHz) / regm_dispc  < 173MHz/186Mhz */
1192                         for (cur.regm_dispc = 1; cur.regm_dispc < dsi.regm_dispc_max;
1193                                         ++cur.regm_dispc) {
1194                                 struct dispc_clock_info cur_dispc;
1195                                 cur.dsi_pll_hsdiv_dispc_clk =
1196                                         cur.clkin4ddr / cur.regm_dispc;
1197
1198                                 /* this will narrow down the search a bit,
1199                                  * but still give pixclocks below what was
1200                                  * requested */
1201                                 if (cur.dsi_pll_hsdiv_dispc_clk  < req_pck)
1202                                         break;
1203
1204                                 if (cur.dsi_pll_hsdiv_dispc_clk > max_dss_fck)
1205                                         continue;
1206
1207                                 if (min_fck_per_pck &&
1208                                         cur.dsi_pll_hsdiv_dispc_clk <
1209                                                 req_pck * min_fck_per_pck)
1210                                         continue;
1211
1212                                 match = 1;
1213
1214                                 dispc_find_clk_divs(is_tft, req_pck,
1215                                                 cur.dsi_pll_hsdiv_dispc_clk,
1216                                                 &cur_dispc);
1217
1218                                 if (abs(cur_dispc.pck - req_pck) <
1219                                                 abs(best_dispc.pck - req_pck)) {
1220                                         best = cur;
1221                                         best_dispc = cur_dispc;
1222
1223                                         if (cur_dispc.pck == req_pck)
1224                                                 goto found;
1225                                 }
1226                         }
1227                 }
1228         }
1229 found:
1230         if (!match) {
1231                 if (min_fck_per_pck) {
1232                         DSSERR("Could not find suitable clock settings.\n"
1233                                         "Turning FCK/PCK constraint off and"
1234                                         "trying again.\n");
1235                         min_fck_per_pck = 0;
1236                         goto retry;
1237                 }
1238
1239                 DSSERR("Could not find suitable clock settings.\n");
1240
1241                 return -EINVAL;
1242         }
1243
1244         /* dsi_pll_hsdiv_dsi_clk (regm_dsi) is not used */
1245         best.regm_dsi = 0;
1246         best.dsi_pll_hsdiv_dsi_clk = 0;
1247
1248         if (dsi_cinfo)
1249                 *dsi_cinfo = best;
1250         if (dispc_cinfo)
1251                 *dispc_cinfo = best_dispc;
1252
1253         dsi.cache_req_pck = req_pck;
1254         dsi.cache_clk_freq = 0;
1255         dsi.cache_cinfo = best;
1256
1257         return 0;
1258 }
1259
1260 int dsi_pll_set_clock_div(struct dsi_clock_info *cinfo)
1261 {
1262         int r = 0;
1263         u32 l;
1264         int f;
1265         u8 regn_start, regn_end, regm_start, regm_end;
1266         u8 regm_dispc_start, regm_dispc_end, regm_dsi_start, regm_dsi_end;
1267
1268         DSSDBGF();
1269
1270         dsi.current_cinfo.fint = cinfo->fint;
1271         dsi.current_cinfo.clkin4ddr = cinfo->clkin4ddr;
1272         dsi.current_cinfo.dsi_pll_hsdiv_dispc_clk =
1273                         cinfo->dsi_pll_hsdiv_dispc_clk;
1274         dsi.current_cinfo.dsi_pll_hsdiv_dsi_clk =
1275                         cinfo->dsi_pll_hsdiv_dsi_clk;
1276
1277         dsi.current_cinfo.regn = cinfo->regn;
1278         dsi.current_cinfo.regm = cinfo->regm;
1279         dsi.current_cinfo.regm_dispc = cinfo->regm_dispc;
1280         dsi.current_cinfo.regm_dsi = cinfo->regm_dsi;
1281
1282         DSSDBG("DSI Fint %ld\n", cinfo->fint);
1283
1284         DSSDBG("clkin (%s) rate %ld, highfreq %d\n",
1285                         cinfo->use_sys_clk ? "dss_sys_clk" : "pclkfree",
1286                         cinfo->clkin,
1287                         cinfo->highfreq);
1288
1289         /* DSIPHY == CLKIN4DDR */
1290         DSSDBG("CLKIN4DDR = 2 * %d / %d * %lu / %d = %lu\n",
1291                         cinfo->regm,
1292                         cinfo->regn,
1293                         cinfo->clkin,
1294                         cinfo->highfreq + 1,
1295                         cinfo->clkin4ddr);
1296
1297         DSSDBG("Data rate on 1 DSI lane %ld Mbps\n",
1298                         cinfo->clkin4ddr / 1000 / 1000 / 2);
1299
1300         DSSDBG("Clock lane freq %ld Hz\n", cinfo->clkin4ddr / 4);
1301
1302         DSSDBG("regm_dispc = %d, %s (%s) = %lu\n", cinfo->regm_dispc,
1303                 dss_get_generic_clk_source_name(DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC),
1304                 dss_feat_get_clk_source_name(DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC),
1305                 cinfo->dsi_pll_hsdiv_dispc_clk);
1306         DSSDBG("regm_dsi = %d, %s (%s) = %lu\n", cinfo->regm_dsi,
1307                 dss_get_generic_clk_source_name(DSS_CLK_SRC_DSI_PLL_HSDIV_DSI),
1308                 dss_feat_get_clk_source_name(DSS_CLK_SRC_DSI_PLL_HSDIV_DSI),
1309                 cinfo->dsi_pll_hsdiv_dsi_clk);
1310
1311         dss_feat_get_reg_field(FEAT_REG_DSIPLL_REGN, &regn_start, &regn_end);
1312         dss_feat_get_reg_field(FEAT_REG_DSIPLL_REGM, &regm_start, &regm_end);
1313         dss_feat_get_reg_field(FEAT_REG_DSIPLL_REGM_DISPC, &regm_dispc_start,
1314                         &regm_dispc_end);
1315         dss_feat_get_reg_field(FEAT_REG_DSIPLL_REGM_DSI, &regm_dsi_start,
1316                         &regm_dsi_end);
1317
1318         REG_FLD_MOD(DSI_PLL_CONTROL, 0, 0, 0); /* DSI_PLL_AUTOMODE = manual */
1319
1320         l = dsi_read_reg(DSI_PLL_CONFIGURATION1);
1321         l = FLD_MOD(l, 1, 0, 0);                /* DSI_PLL_STOPMODE */
1322         /* DSI_PLL_REGN */
1323         l = FLD_MOD(l, cinfo->regn - 1, regn_start, regn_end);
1324         /* DSI_PLL_REGM */
1325         l = FLD_MOD(l, cinfo->regm, regm_start, regm_end);
1326         /* DSI_CLOCK_DIV */
1327         l = FLD_MOD(l, cinfo->regm_dispc > 0 ? cinfo->regm_dispc - 1 : 0,
1328                         regm_dispc_start, regm_dispc_end);
1329         /* DSIPROTO_CLOCK_DIV */
1330         l = FLD_MOD(l, cinfo->regm_dsi > 0 ? cinfo->regm_dsi - 1 : 0,
1331                         regm_dsi_start, regm_dsi_end);
1332         dsi_write_reg(DSI_PLL_CONFIGURATION1, l);
1333
1334         BUG_ON(cinfo->fint < dsi.fint_min || cinfo->fint > dsi.fint_max);
1335         if (cinfo->fint < 1000000)
1336                 f = 0x3;
1337         else if (cinfo->fint < 1250000)
1338                 f = 0x4;
1339         else if (cinfo->fint < 1500000)
1340                 f = 0x5;
1341         else if (cinfo->fint < 1750000)
1342                 f = 0x6;
1343         else
1344                 f = 0x7;
1345
1346         l = dsi_read_reg(DSI_PLL_CONFIGURATION2);
1347         l = FLD_MOD(l, f, 4, 1);                /* DSI_PLL_FREQSEL */
1348         l = FLD_MOD(l, cinfo->use_sys_clk ? 0 : 1,
1349                         11, 11);                /* DSI_PLL_CLKSEL */
1350         l = FLD_MOD(l, cinfo->highfreq,
1351                         12, 12);                /* DSI_PLL_HIGHFREQ */
1352         l = FLD_MOD(l, 1, 13, 13);              /* DSI_PLL_REFEN */
1353         l = FLD_MOD(l, 0, 14, 14);              /* DSIPHY_CLKINEN */
1354         l = FLD_MOD(l, 1, 20, 20);              /* DSI_HSDIVBYPASS */
1355         dsi_write_reg(DSI_PLL_CONFIGURATION2, l);
1356
1357         REG_FLD_MOD(DSI_PLL_GO, 1, 0, 0);       /* DSI_PLL_GO */
1358
1359         if (wait_for_bit_change(DSI_PLL_GO, 0, 0) != 0) {
1360                 DSSERR("dsi pll go bit not going down.\n");
1361                 r = -EIO;
1362                 goto err;
1363         }
1364
1365         if (wait_for_bit_change(DSI_PLL_STATUS, 1, 1) != 1) {
1366                 DSSERR("cannot lock PLL\n");
1367                 r = -EIO;
1368                 goto err;
1369         }
1370
1371         dsi.pll_locked = 1;
1372
1373         l = dsi_read_reg(DSI_PLL_CONFIGURATION2);
1374         l = FLD_MOD(l, 0, 0, 0);        /* DSI_PLL_IDLE */
1375         l = FLD_MOD(l, 0, 5, 5);        /* DSI_PLL_PLLLPMODE */
1376         l = FLD_MOD(l, 0, 6, 6);        /* DSI_PLL_LOWCURRSTBY */
1377         l = FLD_MOD(l, 0, 7, 7);        /* DSI_PLL_TIGHTPHASELOCK */
1378         l = FLD_MOD(l, 0, 8, 8);        /* DSI_PLL_DRIFTGUARDEN */
1379         l = FLD_MOD(l, 0, 10, 9);       /* DSI_PLL_LOCKSEL */
1380         l = FLD_MOD(l, 1, 13, 13);      /* DSI_PLL_REFEN */
1381         l = FLD_MOD(l, 1, 14, 14);      /* DSIPHY_CLKINEN */
1382         l = FLD_MOD(l, 0, 15, 15);      /* DSI_BYPASSEN */
1383         l = FLD_MOD(l, 1, 16, 16);      /* DSS_CLOCK_EN */
1384         l = FLD_MOD(l, 0, 17, 17);      /* DSS_CLOCK_PWDN */
1385         l = FLD_MOD(l, 1, 18, 18);      /* DSI_PROTO_CLOCK_EN */
1386         l = FLD_MOD(l, 0, 19, 19);      /* DSI_PROTO_CLOCK_PWDN */
1387         l = FLD_MOD(l, 0, 20, 20);      /* DSI_HSDIVBYPASS */
1388         dsi_write_reg(DSI_PLL_CONFIGURATION2, l);
1389
1390         DSSDBG("PLL config done\n");
1391 err:
1392         return r;
1393 }
1394
1395 int dsi_pll_init(struct omap_dss_device *dssdev, bool enable_hsclk,
1396                 bool enable_hsdiv)
1397 {
1398         int r = 0;
1399         enum dsi_pll_power_state pwstate;
1400
1401         DSSDBG("PLL init\n");
1402
1403 #ifdef CONFIG_OMAP2_DSS_USE_DSI_PLL
1404         /*
1405          * HACK: this is just a quick hack to get the USE_DSI_PLL
1406          * option working. USE_DSI_PLL is itself a big hack, and
1407          * should be removed.
1408          */
1409         if (dsi.vdds_dsi_reg == NULL) {
1410                 struct regulator *vdds_dsi;
1411
1412                 vdds_dsi = regulator_get(&dsi.pdev->dev, "vdds_dsi");
1413
1414                 if (IS_ERR(vdds_dsi)) {
1415                         DSSERR("can't get VDDS_DSI regulator\n");
1416                         return PTR_ERR(vdds_dsi);
1417                 }
1418
1419                 dsi.vdds_dsi_reg = vdds_dsi;
1420         }
1421 #endif
1422
1423         enable_clocks(1);
1424         dsi_enable_pll_clock(1);
1425
1426         r = regulator_enable(dsi.vdds_dsi_reg);
1427         if (r)
1428                 goto err0;
1429
1430         /* XXX PLL does not come out of reset without this... */
1431         dispc_pck_free_enable(1);
1432
1433         if (wait_for_bit_change(DSI_PLL_STATUS, 0, 1) != 1) {
1434                 DSSERR("PLL not coming out of reset.\n");
1435                 r = -ENODEV;
1436                 dispc_pck_free_enable(0);
1437                 goto err1;
1438         }
1439
1440         /* XXX ... but if left on, we get problems when planes do not
1441          * fill the whole display. No idea about this */
1442         dispc_pck_free_enable(0);
1443
1444         if (enable_hsclk && enable_hsdiv)
1445                 pwstate = DSI_PLL_POWER_ON_ALL;
1446         else if (enable_hsclk)
1447                 pwstate = DSI_PLL_POWER_ON_HSCLK;
1448         else if (enable_hsdiv)
1449                 pwstate = DSI_PLL_POWER_ON_DIV;
1450         else
1451                 pwstate = DSI_PLL_POWER_OFF;
1452
1453         r = dsi_pll_power(pwstate);
1454
1455         if (r)
1456                 goto err1;
1457
1458         DSSDBG("PLL init done\n");
1459
1460         return 0;
1461 err1:
1462         regulator_disable(dsi.vdds_dsi_reg);
1463 err0:
1464         enable_clocks(0);
1465         dsi_enable_pll_clock(0);
1466         return r;
1467 }
1468
1469 void dsi_pll_uninit(void)
1470 {
1471         enable_clocks(0);
1472         dsi_enable_pll_clock(0);
1473
1474         dsi.pll_locked = 0;
1475         dsi_pll_power(DSI_PLL_POWER_OFF);
1476         regulator_disable(dsi.vdds_dsi_reg);
1477         DSSDBG("PLL uninit done\n");
1478 }
1479
1480 void dsi_dump_clocks(struct seq_file *s)
1481 {
1482         int clksel;
1483         struct dsi_clock_info *cinfo = &dsi.current_cinfo;
1484         enum dss_clk_source dispc_clk_src, dsi_clk_src;
1485
1486         dispc_clk_src = dss_get_dispc_clk_source();
1487         dsi_clk_src = dss_get_dsi_clk_source();
1488
1489         enable_clocks(1);
1490
1491         clksel = REG_GET(DSI_PLL_CONFIGURATION2, 11, 11);
1492
1493         seq_printf(s,   "- DSI PLL -\n");
1494
1495         seq_printf(s,   "dsi pll source = %s\n",
1496                         clksel == 0 ?
1497                         "dss_sys_clk" : "pclkfree");
1498
1499         seq_printf(s,   "Fint\t\t%-16luregn %u\n", cinfo->fint, cinfo->regn);
1500
1501         seq_printf(s,   "CLKIN4DDR\t%-16luregm %u\n",
1502                         cinfo->clkin4ddr, cinfo->regm);
1503
1504         seq_printf(s,   "%s (%s)\t%-16luregm_dispc %u\t(%s)\n",
1505                         dss_get_generic_clk_source_name(dispc_clk_src),
1506                         dss_feat_get_clk_source_name(dispc_clk_src),
1507                         cinfo->dsi_pll_hsdiv_dispc_clk,
1508                         cinfo->regm_dispc,
1509                         dispc_clk_src == DSS_CLK_SRC_FCK ?
1510                         "off" : "on");
1511
1512         seq_printf(s,   "%s (%s)\t%-16luregm_dsi %u\t(%s)\n",
1513                         dss_get_generic_clk_source_name(dsi_clk_src),
1514                         dss_feat_get_clk_source_name(dsi_clk_src),
1515                         cinfo->dsi_pll_hsdiv_dsi_clk,
1516                         cinfo->regm_dsi,
1517                         dsi_clk_src == DSS_CLK_SRC_FCK ?
1518                         "off" : "on");
1519
1520         seq_printf(s,   "- DSI -\n");
1521
1522         seq_printf(s,   "dsi fclk source = %s (%s)\n",
1523                         dss_get_generic_clk_source_name(dsi_clk_src),
1524                         dss_feat_get_clk_source_name(dsi_clk_src));
1525
1526         seq_printf(s,   "DSI_FCLK\t%lu\n", dsi_fclk_rate());
1527
1528         seq_printf(s,   "DDR_CLK\t\t%lu\n",
1529                         cinfo->clkin4ddr / 4);
1530
1531         seq_printf(s,   "TxByteClkHS\t%lu\n", dsi_get_txbyteclkhs());
1532
1533         seq_printf(s,   "LP_CLK\t\t%lu\n", cinfo->lp_clk);
1534
1535         seq_printf(s,   "VP_CLK\t\t%lu\n"
1536                         "VP_PCLK\t\t%lu\n",
1537                         dispc_lclk_rate(OMAP_DSS_CHANNEL_LCD),
1538                         dispc_pclk_rate(OMAP_DSS_CHANNEL_LCD));
1539
1540         enable_clocks(0);
1541 }
1542
1543 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
1544 void dsi_dump_irqs(struct seq_file *s)
1545 {
1546         unsigned long flags;
1547         struct dsi_irq_stats stats;
1548
1549         spin_lock_irqsave(&dsi.irq_stats_lock, flags);
1550
1551         stats = dsi.irq_stats;
1552         memset(&dsi.irq_stats, 0, sizeof(dsi.irq_stats));
1553         dsi.irq_stats.last_reset = jiffies;
1554
1555         spin_unlock_irqrestore(&dsi.irq_stats_lock, flags);
1556
1557         seq_printf(s, "period %u ms\n",
1558                         jiffies_to_msecs(jiffies - stats.last_reset));
1559
1560         seq_printf(s, "irqs %d\n", stats.irq_count);
1561 #define PIS(x) \
1562         seq_printf(s, "%-20s %10d\n", #x, stats.dsi_irqs[ffs(DSI_IRQ_##x)-1]);
1563
1564         seq_printf(s, "-- DSI interrupts --\n");
1565         PIS(VC0);
1566         PIS(VC1);
1567         PIS(VC2);
1568         PIS(VC3);
1569         PIS(WAKEUP);
1570         PIS(RESYNC);
1571         PIS(PLL_LOCK);
1572         PIS(PLL_UNLOCK);
1573         PIS(PLL_RECALL);
1574         PIS(COMPLEXIO_ERR);
1575         PIS(HS_TX_TIMEOUT);
1576         PIS(LP_RX_TIMEOUT);
1577         PIS(TE_TRIGGER);
1578         PIS(ACK_TRIGGER);
1579         PIS(SYNC_LOST);
1580         PIS(LDO_POWER_GOOD);
1581         PIS(TA_TIMEOUT);
1582 #undef PIS
1583
1584 #define PIS(x) \
1585         seq_printf(s, "%-20s %10d %10d %10d %10d\n", #x, \
1586                         stats.vc_irqs[0][ffs(DSI_VC_IRQ_##x)-1], \
1587                         stats.vc_irqs[1][ffs(DSI_VC_IRQ_##x)-1], \
1588                         stats.vc_irqs[2][ffs(DSI_VC_IRQ_##x)-1], \
1589                         stats.vc_irqs[3][ffs(DSI_VC_IRQ_##x)-1]);
1590
1591         seq_printf(s, "-- VC interrupts --\n");
1592         PIS(CS);
1593         PIS(ECC_CORR);
1594         PIS(PACKET_SENT);
1595         PIS(FIFO_TX_OVF);
1596         PIS(FIFO_RX_OVF);
1597         PIS(BTA);
1598         PIS(ECC_NO_CORR);
1599         PIS(FIFO_TX_UDF);
1600         PIS(PP_BUSY_CHANGE);
1601 #undef PIS
1602
1603 #define PIS(x) \
1604         seq_printf(s, "%-20s %10d\n", #x, \
1605                         stats.cio_irqs[ffs(DSI_CIO_IRQ_##x)-1]);
1606
1607         seq_printf(s, "-- CIO interrupts --\n");
1608         PIS(ERRSYNCESC1);
1609         PIS(ERRSYNCESC2);
1610         PIS(ERRSYNCESC3);
1611         PIS(ERRESC1);
1612         PIS(ERRESC2);
1613         PIS(ERRESC3);
1614         PIS(ERRCONTROL1);
1615         PIS(ERRCONTROL2);
1616         PIS(ERRCONTROL3);
1617         PIS(STATEULPS1);
1618         PIS(STATEULPS2);
1619         PIS(STATEULPS3);
1620         PIS(ERRCONTENTIONLP0_1);
1621         PIS(ERRCONTENTIONLP1_1);
1622         PIS(ERRCONTENTIONLP0_2);
1623         PIS(ERRCONTENTIONLP1_2);
1624         PIS(ERRCONTENTIONLP0_3);
1625         PIS(ERRCONTENTIONLP1_3);
1626         PIS(ULPSACTIVENOT_ALL0);
1627         PIS(ULPSACTIVENOT_ALL1);
1628 #undef PIS
1629 }
1630 #endif
1631
1632 void dsi_dump_regs(struct seq_file *s)
1633 {
1634 #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, dsi_read_reg(r))
1635
1636         dss_clk_enable(DSS_CLK_ICK | DSS_CLK_FCK);
1637
1638         DUMPREG(DSI_REVISION);
1639         DUMPREG(DSI_SYSCONFIG);
1640         DUMPREG(DSI_SYSSTATUS);
1641         DUMPREG(DSI_IRQSTATUS);
1642         DUMPREG(DSI_IRQENABLE);
1643         DUMPREG(DSI_CTRL);
1644         DUMPREG(DSI_COMPLEXIO_CFG1);
1645         DUMPREG(DSI_COMPLEXIO_IRQ_STATUS);
1646         DUMPREG(DSI_COMPLEXIO_IRQ_ENABLE);
1647         DUMPREG(DSI_CLK_CTRL);
1648         DUMPREG(DSI_TIMING1);
1649         DUMPREG(DSI_TIMING2);
1650         DUMPREG(DSI_VM_TIMING1);
1651         DUMPREG(DSI_VM_TIMING2);
1652         DUMPREG(DSI_VM_TIMING3);
1653         DUMPREG(DSI_CLK_TIMING);
1654         DUMPREG(DSI_TX_FIFO_VC_SIZE);
1655         DUMPREG(DSI_RX_FIFO_VC_SIZE);
1656         DUMPREG(DSI_COMPLEXIO_CFG2);
1657         DUMPREG(DSI_RX_FIFO_VC_FULLNESS);
1658         DUMPREG(DSI_VM_TIMING4);
1659         DUMPREG(DSI_TX_FIFO_VC_EMPTINESS);
1660         DUMPREG(DSI_VM_TIMING5);
1661         DUMPREG(DSI_VM_TIMING6);
1662         DUMPREG(DSI_VM_TIMING7);
1663         DUMPREG(DSI_STOPCLK_TIMING);
1664
1665         DUMPREG(DSI_VC_CTRL(0));
1666         DUMPREG(DSI_VC_TE(0));
1667         DUMPREG(DSI_VC_LONG_PACKET_HEADER(0));
1668         DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(0));
1669         DUMPREG(DSI_VC_SHORT_PACKET_HEADER(0));
1670         DUMPREG(DSI_VC_IRQSTATUS(0));
1671         DUMPREG(DSI_VC_IRQENABLE(0));
1672
1673         DUMPREG(DSI_VC_CTRL(1));
1674         DUMPREG(DSI_VC_TE(1));
1675         DUMPREG(DSI_VC_LONG_PACKET_HEADER(1));
1676         DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(1));
1677         DUMPREG(DSI_VC_SHORT_PACKET_HEADER(1));
1678         DUMPREG(DSI_VC_IRQSTATUS(1));
1679         DUMPREG(DSI_VC_IRQENABLE(1));
1680
1681         DUMPREG(DSI_VC_CTRL(2));
1682         DUMPREG(DSI_VC_TE(2));
1683         DUMPREG(DSI_VC_LONG_PACKET_HEADER(2));
1684         DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(2));
1685         DUMPREG(DSI_VC_SHORT_PACKET_HEADER(2));
1686         DUMPREG(DSI_VC_IRQSTATUS(2));
1687         DUMPREG(DSI_VC_IRQENABLE(2));
1688
1689         DUMPREG(DSI_VC_CTRL(3));
1690         DUMPREG(DSI_VC_TE(3));
1691         DUMPREG(DSI_VC_LONG_PACKET_HEADER(3));
1692         DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(3));
1693         DUMPREG(DSI_VC_SHORT_PACKET_HEADER(3));
1694         DUMPREG(DSI_VC_IRQSTATUS(3));
1695         DUMPREG(DSI_VC_IRQENABLE(3));
1696
1697         DUMPREG(DSI_DSIPHY_CFG0);
1698         DUMPREG(DSI_DSIPHY_CFG1);
1699         DUMPREG(DSI_DSIPHY_CFG2);
1700         DUMPREG(DSI_DSIPHY_CFG5);
1701
1702         DUMPREG(DSI_PLL_CONTROL);
1703         DUMPREG(DSI_PLL_STATUS);
1704         DUMPREG(DSI_PLL_GO);
1705         DUMPREG(DSI_PLL_CONFIGURATION1);
1706         DUMPREG(DSI_PLL_CONFIGURATION2);
1707
1708         dss_clk_disable(DSS_CLK_ICK | DSS_CLK_FCK);
1709 #undef DUMPREG
1710 }
1711
1712 enum dsi_complexio_power_state {
1713         DSI_COMPLEXIO_POWER_OFF         = 0x0,
1714         DSI_COMPLEXIO_POWER_ON          = 0x1,
1715         DSI_COMPLEXIO_POWER_ULPS        = 0x2,
1716 };
1717
1718 static int dsi_complexio_power(enum dsi_complexio_power_state state)
1719 {
1720         int t = 0;
1721
1722         /* PWR_CMD */
1723         REG_FLD_MOD(DSI_COMPLEXIO_CFG1, state, 28, 27);
1724
1725         /* PWR_STATUS */
1726         while (FLD_GET(dsi_read_reg(DSI_COMPLEXIO_CFG1), 26, 25) != state) {
1727                 if (++t > 1000) {
1728                         DSSERR("failed to set complexio power state to "
1729                                         "%d\n", state);
1730                         return -ENODEV;
1731                 }
1732                 udelay(1);
1733         }
1734
1735         return 0;
1736 }
1737
1738 static void dsi_complexio_config(struct omap_dss_device *dssdev)
1739 {
1740         u32 r;
1741
1742         int clk_lane   = dssdev->phy.dsi.clk_lane;
1743         int data1_lane = dssdev->phy.dsi.data1_lane;
1744         int data2_lane = dssdev->phy.dsi.data2_lane;
1745         int clk_pol    = dssdev->phy.dsi.clk_pol;
1746         int data1_pol  = dssdev->phy.dsi.data1_pol;
1747         int data2_pol  = dssdev->phy.dsi.data2_pol;
1748
1749         r = dsi_read_reg(DSI_COMPLEXIO_CFG1);
1750         r = FLD_MOD(r, clk_lane, 2, 0);
1751         r = FLD_MOD(r, clk_pol, 3, 3);
1752         r = FLD_MOD(r, data1_lane, 6, 4);
1753         r = FLD_MOD(r, data1_pol, 7, 7);
1754         r = FLD_MOD(r, data2_lane, 10, 8);
1755         r = FLD_MOD(r, data2_pol, 11, 11);
1756         dsi_write_reg(DSI_COMPLEXIO_CFG1, r);
1757
1758         /* The configuration of the DSI complex I/O (number of data lanes,
1759            position, differential order) should not be changed while
1760            DSS.DSI_CLK_CRTRL[20] LP_CLK_ENABLE bit is set to 1. In order for
1761            the hardware to take into account a new configuration of the complex
1762            I/O (done in DSS.DSI_COMPLEXIO_CFG1 register), it is recommended to
1763            follow this sequence: First set the DSS.DSI_CTRL[0] IF_EN bit to 1,
1764            then reset the DSS.DSI_CTRL[0] IF_EN to 0, then set
1765            DSS.DSI_CLK_CTRL[20] LP_CLK_ENABLE to 1 and finally set again the
1766            DSS.DSI_CTRL[0] IF_EN bit to 1. If the sequence is not followed, the
1767            DSI complex I/O configuration is unknown. */
1768
1769         /*
1770         REG_FLD_MOD(DSI_CTRL, 1, 0, 0);
1771         REG_FLD_MOD(DSI_CTRL, 0, 0, 0);
1772         REG_FLD_MOD(DSI_CLK_CTRL, 1, 20, 20);
1773         REG_FLD_MOD(DSI_CTRL, 1, 0, 0);
1774         */
1775 }
1776
1777 static inline unsigned ns2ddr(unsigned ns)
1778 {
1779         /* convert time in ns to ddr ticks, rounding up */
1780         unsigned long ddr_clk = dsi.current_cinfo.clkin4ddr / 4;
1781         return (ns * (ddr_clk / 1000 / 1000) + 999) / 1000;
1782 }
1783
1784 static inline unsigned ddr2ns(unsigned ddr)
1785 {
1786         unsigned long ddr_clk = dsi.current_cinfo.clkin4ddr / 4;
1787         return ddr * 1000 * 1000 / (ddr_clk / 1000);
1788 }
1789
1790 static void dsi_complexio_timings(void)
1791 {
1792         u32 r;
1793         u32 ths_prepare, ths_prepare_ths_zero, ths_trail, ths_exit;
1794         u32 tlpx_half, tclk_trail, tclk_zero;
1795         u32 tclk_prepare;
1796
1797         /* calculate timings */
1798
1799         /* 1 * DDR_CLK = 2 * UI */
1800
1801         /* min 40ns + 4*UI      max 85ns + 6*UI */
1802         ths_prepare = ns2ddr(70) + 2;
1803
1804         /* min 145ns + 10*UI */
1805         ths_prepare_ths_zero = ns2ddr(175) + 2;
1806
1807         /* min max(8*UI, 60ns+4*UI) */
1808         ths_trail = ns2ddr(60) + 5;
1809
1810         /* min 100ns */
1811         ths_exit = ns2ddr(145);
1812
1813         /* tlpx min 50n */
1814         tlpx_half = ns2ddr(25);
1815
1816         /* min 60ns */
1817         tclk_trail = ns2ddr(60) + 2;
1818
1819         /* min 38ns, max 95ns */
1820         tclk_prepare = ns2ddr(65);
1821
1822         /* min tclk-prepare + tclk-zero = 300ns */
1823         tclk_zero = ns2ddr(260);
1824
1825         DSSDBG("ths_prepare %u (%uns), ths_prepare_ths_zero %u (%uns)\n",
1826                 ths_prepare, ddr2ns(ths_prepare),
1827                 ths_prepare_ths_zero, ddr2ns(ths_prepare_ths_zero));
1828         DSSDBG("ths_trail %u (%uns), ths_exit %u (%uns)\n",
1829                         ths_trail, ddr2ns(ths_trail),
1830                         ths_exit, ddr2ns(ths_exit));
1831
1832         DSSDBG("tlpx_half %u (%uns), tclk_trail %u (%uns), "
1833                         "tclk_zero %u (%uns)\n",
1834                         tlpx_half, ddr2ns(tlpx_half),
1835                         tclk_trail, ddr2ns(tclk_trail),
1836                         tclk_zero, ddr2ns(tclk_zero));
1837         DSSDBG("tclk_prepare %u (%uns)\n",
1838                         tclk_prepare, ddr2ns(tclk_prepare));
1839
1840         /* program timings */
1841
1842         r = dsi_read_reg(DSI_DSIPHY_CFG0);
1843         r = FLD_MOD(r, ths_prepare, 31, 24);
1844         r = FLD_MOD(r, ths_prepare_ths_zero, 23, 16);
1845         r = FLD_MOD(r, ths_trail, 15, 8);
1846         r = FLD_MOD(r, ths_exit, 7, 0);
1847         dsi_write_reg(DSI_DSIPHY_CFG0, r);
1848
1849         r = dsi_read_reg(DSI_DSIPHY_CFG1);
1850         r = FLD_MOD(r, tlpx_half, 22, 16);
1851         r = FLD_MOD(r, tclk_trail, 15, 8);
1852         r = FLD_MOD(r, tclk_zero, 7, 0);
1853         dsi_write_reg(DSI_DSIPHY_CFG1, r);
1854
1855         r = dsi_read_reg(DSI_DSIPHY_CFG2);
1856         r = FLD_MOD(r, tclk_prepare, 7, 0);
1857         dsi_write_reg(DSI_DSIPHY_CFG2, r);
1858 }
1859
1860
1861 static int dsi_complexio_init(struct omap_dss_device *dssdev)
1862 {
1863         int r = 0;
1864
1865         DSSDBG("dsi_complexio_init\n");
1866
1867         /* CIO_CLK_ICG, enable L3 clk to CIO */
1868         REG_FLD_MOD(DSI_CLK_CTRL, 1, 14, 14);
1869
1870         /* A dummy read using the SCP interface to any DSIPHY register is
1871          * required after DSIPHY reset to complete the reset of the DSI complex
1872          * I/O. */
1873         dsi_read_reg(DSI_DSIPHY_CFG5);
1874
1875         if (wait_for_bit_change(DSI_DSIPHY_CFG5, 30, 1) != 1) {
1876                 DSSERR("ComplexIO PHY not coming out of reset.\n");
1877                 r = -ENODEV;
1878                 goto err;
1879         }
1880
1881         dsi_complexio_config(dssdev);
1882
1883         r = dsi_complexio_power(DSI_COMPLEXIO_POWER_ON);
1884
1885         if (r)
1886                 goto err;
1887
1888         if (wait_for_bit_change(DSI_COMPLEXIO_CFG1, 29, 1) != 1) {
1889                 DSSERR("ComplexIO not coming out of reset.\n");
1890                 r = -ENODEV;
1891                 goto err;
1892         }
1893
1894         if (wait_for_bit_change(DSI_COMPLEXIO_CFG1, 21, 1) != 1) {
1895                 DSSERR("ComplexIO LDO power down.\n");
1896                 r = -ENODEV;
1897                 goto err;
1898         }
1899
1900         dsi_complexio_timings();
1901
1902         /*
1903            The configuration of the DSI complex I/O (number of data lanes,
1904            position, differential order) should not be changed while
1905            DSS.DSI_CLK_CRTRL[20] LP_CLK_ENABLE bit is set to 1. For the
1906            hardware to recognize a new configuration of the complex I/O (done
1907            in DSS.DSI_COMPLEXIO_CFG1 register), it is recommended to follow
1908            this sequence: First set the DSS.DSI_CTRL[0] IF_EN bit to 1, next
1909            reset the DSS.DSI_CTRL[0] IF_EN to 0, then set DSS.DSI_CLK_CTRL[20]
1910            LP_CLK_ENABLE to 1, and finally, set again the DSS.DSI_CTRL[0] IF_EN
1911            bit to 1. If the sequence is not followed, the DSi complex I/O
1912            configuration is undetermined.
1913            */
1914         dsi_if_enable(1);
1915         dsi_if_enable(0);
1916         REG_FLD_MOD(DSI_CLK_CTRL, 1, 20, 20); /* LP_CLK_ENABLE */
1917         dsi_if_enable(1);
1918         dsi_if_enable(0);
1919
1920         DSSDBG("CIO init done\n");
1921 err:
1922         return r;
1923 }
1924
1925 static void dsi_complexio_uninit(void)
1926 {
1927         dsi_complexio_power(DSI_COMPLEXIO_POWER_OFF);
1928 }
1929
1930 static int _dsi_wait_reset(void)
1931 {
1932         int t = 0;
1933
1934         while (REG_GET(DSI_SYSSTATUS, 0, 0) == 0) {
1935                 if (++t > 5) {
1936                         DSSERR("soft reset failed\n");
1937                         return -ENODEV;
1938                 }
1939                 udelay(1);
1940         }
1941
1942         return 0;
1943 }
1944
1945 static int _dsi_reset(void)
1946 {
1947         /* Soft reset */
1948         REG_FLD_MOD(DSI_SYSCONFIG, 1, 1, 1);
1949         return _dsi_wait_reset();
1950 }
1951
1952 static void dsi_config_tx_fifo(enum fifo_size size1, enum fifo_size size2,
1953                 enum fifo_size size3, enum fifo_size size4)
1954 {
1955         u32 r = 0;
1956         int add = 0;
1957         int i;
1958
1959         dsi.vc[0].fifo_size = size1;
1960         dsi.vc[1].fifo_size = size2;
1961         dsi.vc[2].fifo_size = size3;
1962         dsi.vc[3].fifo_size = size4;
1963
1964         for (i = 0; i < 4; i++) {
1965                 u8 v;
1966                 int size = dsi.vc[i].fifo_size;
1967
1968                 if (add + size > 4) {
1969                         DSSERR("Illegal FIFO configuration\n");
1970                         BUG();
1971                 }
1972
1973                 v = FLD_VAL(add, 2, 0) | FLD_VAL(size, 7, 4);
1974                 r |= v << (8 * i);
1975                 /*DSSDBG("TX FIFO vc %d: size %d, add %d\n", i, size, add); */
1976                 add += size;
1977         }
1978
1979         dsi_write_reg(DSI_TX_FIFO_VC_SIZE, r);
1980 }
1981
1982 static void dsi_config_rx_fifo(enum fifo_size size1, enum fifo_size size2,
1983                 enum fifo_size size3, enum fifo_size size4)
1984 {
1985         u32 r = 0;
1986         int add = 0;
1987         int i;
1988
1989         dsi.vc[0].fifo_size = size1;
1990         dsi.vc[1].fifo_size = size2;
1991         dsi.vc[2].fifo_size = size3;
1992         dsi.vc[3].fifo_size = size4;
1993
1994         for (i = 0; i < 4; i++) {
1995                 u8 v;
1996                 int size = dsi.vc[i].fifo_size;
1997
1998                 if (add + size > 4) {
1999                         DSSERR("Illegal FIFO configuration\n");
2000                         BUG();
2001                 }
2002
2003                 v = FLD_VAL(add, 2, 0) | FLD_VAL(size, 7, 4);
2004                 r |= v << (8 * i);
2005                 /*DSSDBG("RX FIFO vc %d: size %d, add %d\n", i, size, add); */
2006                 add += size;
2007         }
2008
2009         dsi_write_reg(DSI_RX_FIFO_VC_SIZE, r);
2010 }
2011
2012 static int dsi_force_tx_stop_mode_io(void)
2013 {
2014         u32 r;
2015
2016         r = dsi_read_reg(DSI_TIMING1);
2017         r = FLD_MOD(r, 1, 15, 15);      /* FORCE_TX_STOP_MODE_IO */
2018         dsi_write_reg(DSI_TIMING1, r);
2019
2020         if (wait_for_bit_change(DSI_TIMING1, 15, 0) != 0) {
2021                 DSSERR("TX_STOP bit not going down\n");
2022                 return -EIO;
2023         }
2024
2025         return 0;
2026 }
2027
2028 static int dsi_vc_enable(int channel, bool enable)
2029 {
2030         DSSDBG("dsi_vc_enable channel %d, enable %d\n",
2031                         channel, enable);
2032
2033         enable = enable ? 1 : 0;
2034
2035         REG_FLD_MOD(DSI_VC_CTRL(channel), enable, 0, 0);
2036
2037         if (wait_for_bit_change(DSI_VC_CTRL(channel), 0, enable) != enable) {
2038                         DSSERR("Failed to set dsi_vc_enable to %d\n", enable);
2039                         return -EIO;
2040         }
2041
2042         return 0;
2043 }
2044
2045 static void dsi_vc_initial_config(int channel)
2046 {
2047         u32 r;
2048
2049         DSSDBGF("%d", channel);
2050
2051         r = dsi_read_reg(DSI_VC_CTRL(channel));
2052
2053         if (FLD_GET(r, 15, 15)) /* VC_BUSY */
2054                 DSSERR("VC(%d) busy when trying to configure it!\n",
2055                                 channel);
2056
2057         r = FLD_MOD(r, 0, 1, 1); /* SOURCE, 0 = L4 */
2058         r = FLD_MOD(r, 0, 2, 2); /* BTA_SHORT_EN  */
2059         r = FLD_MOD(r, 0, 3, 3); /* BTA_LONG_EN */
2060         r = FLD_MOD(r, 0, 4, 4); /* MODE, 0 = command */
2061         r = FLD_MOD(r, 1, 7, 7); /* CS_TX_EN */
2062         r = FLD_MOD(r, 1, 8, 8); /* ECC_TX_EN */
2063         r = FLD_MOD(r, 0, 9, 9); /* MODE_SPEED, high speed on/off */
2064
2065         r = FLD_MOD(r, 4, 29, 27); /* DMA_RX_REQ_NB = no dma */
2066         r = FLD_MOD(r, 4, 23, 21); /* DMA_TX_REQ_NB = no dma */
2067
2068         dsi_write_reg(DSI_VC_CTRL(channel), r);
2069 }
2070
2071 static int dsi_vc_config_l4(int channel)
2072 {
2073         if (dsi.vc[channel].mode == DSI_VC_MODE_L4)
2074                 return 0;
2075
2076         DSSDBGF("%d", channel);
2077
2078         dsi_vc_enable(channel, 0);
2079
2080         /* VC_BUSY */
2081         if (wait_for_bit_change(DSI_VC_CTRL(channel), 15, 0) != 0) {
2082                 DSSERR("vc(%d) busy when trying to config for L4\n", channel);
2083                 return -EIO;
2084         }
2085
2086         REG_FLD_MOD(DSI_VC_CTRL(channel), 0, 1, 1); /* SOURCE, 0 = L4 */
2087
2088         dsi_vc_enable(channel, 1);
2089
2090         dsi.vc[channel].mode = DSI_VC_MODE_L4;
2091
2092         return 0;
2093 }
2094
2095 static int dsi_vc_config_vp(int channel)
2096 {
2097         if (dsi.vc[channel].mode == DSI_VC_MODE_VP)
2098                 return 0;
2099
2100         DSSDBGF("%d", channel);
2101
2102         dsi_vc_enable(channel, 0);
2103
2104         /* VC_BUSY */
2105         if (wait_for_bit_change(DSI_VC_CTRL(channel), 15, 0) != 0) {
2106                 DSSERR("vc(%d) busy when trying to config for VP\n", channel);
2107                 return -EIO;
2108         }
2109
2110         REG_FLD_MOD(DSI_VC_CTRL(channel), 1, 1, 1); /* SOURCE, 1 = video port */
2111
2112         dsi_vc_enable(channel, 1);
2113
2114         dsi.vc[channel].mode = DSI_VC_MODE_VP;
2115
2116         return 0;
2117 }
2118
2119
2120 void omapdss_dsi_vc_enable_hs(int channel, bool enable)
2121 {
2122         DSSDBG("dsi_vc_enable_hs(%d, %d)\n", channel, enable);
2123
2124         WARN_ON(!dsi_bus_is_locked());
2125
2126         dsi_vc_enable(channel, 0);
2127         dsi_if_enable(0);
2128
2129         REG_FLD_MOD(DSI_VC_CTRL(channel), enable, 9, 9);
2130
2131         dsi_vc_enable(channel, 1);
2132         dsi_if_enable(1);
2133
2134         dsi_force_tx_stop_mode_io();
2135 }
2136 EXPORT_SYMBOL(omapdss_dsi_vc_enable_hs);
2137
2138 static void dsi_vc_flush_long_data(int channel)
2139 {
2140         while (REG_GET(DSI_VC_CTRL(channel), 20, 20)) {
2141                 u32 val;
2142                 val = dsi_read_reg(DSI_VC_SHORT_PACKET_HEADER(channel));
2143                 DSSDBG("\t\tb1 %#02x b2 %#02x b3 %#02x b4 %#02x\n",
2144                                 (val >> 0) & 0xff,
2145                                 (val >> 8) & 0xff,
2146                                 (val >> 16) & 0xff,
2147                                 (val >> 24) & 0xff);
2148         }
2149 }
2150
2151 static void dsi_show_rx_ack_with_err(u16 err)
2152 {
2153         DSSERR("\tACK with ERROR (%#x):\n", err);
2154         if (err & (1 << 0))
2155                 DSSERR("\t\tSoT Error\n");
2156         if (err & (1 << 1))
2157                 DSSERR("\t\tSoT Sync Error\n");
2158         if (err & (1 << 2))
2159                 DSSERR("\t\tEoT Sync Error\n");
2160         if (err & (1 << 3))
2161                 DSSERR("\t\tEscape Mode Entry Command Error\n");
2162         if (err & (1 << 4))
2163                 DSSERR("\t\tLP Transmit Sync Error\n");
2164         if (err & (1 << 5))
2165                 DSSERR("\t\tHS Receive Timeout Error\n");
2166         if (err & (1 << 6))
2167                 DSSERR("\t\tFalse Control Error\n");
2168         if (err & (1 << 7))
2169                 DSSERR("\t\t(reserved7)\n");
2170         if (err & (1 << 8))
2171                 DSSERR("\t\tECC Error, single-bit (corrected)\n");
2172         if (err & (1 << 9))
2173                 DSSERR("\t\tECC Error, multi-bit (not corrected)\n");
2174         if (err & (1 << 10))
2175                 DSSERR("\t\tChecksum Error\n");
2176         if (err & (1 << 11))
2177                 DSSERR("\t\tData type not recognized\n");
2178         if (err & (1 << 12))
2179                 DSSERR("\t\tInvalid VC ID\n");
2180         if (err & (1 << 13))
2181                 DSSERR("\t\tInvalid Transmission Length\n");
2182         if (err & (1 << 14))
2183                 DSSERR("\t\t(reserved14)\n");
2184         if (err & (1 << 15))
2185                 DSSERR("\t\tDSI Protocol Violation\n");
2186 }
2187
2188 static u16 dsi_vc_flush_receive_data(int channel)
2189 {
2190         /* RX_FIFO_NOT_EMPTY */
2191         while (REG_GET(DSI_VC_CTRL(channel), 20, 20)) {
2192                 u32 val;
2193                 u8 dt;
2194                 val = dsi_read_reg(DSI_VC_SHORT_PACKET_HEADER(channel));
2195                 DSSERR("\trawval %#08x\n", val);
2196                 dt = FLD_GET(val, 5, 0);
2197                 if (dt == DSI_DT_RX_ACK_WITH_ERR) {
2198                         u16 err = FLD_GET(val, 23, 8);
2199                         dsi_show_rx_ack_with_err(err);
2200                 } else if (dt == DSI_DT_RX_SHORT_READ_1) {
2201                         DSSERR("\tDCS short response, 1 byte: %#x\n",
2202                                         FLD_GET(val, 23, 8));
2203                 } else if (dt == DSI_DT_RX_SHORT_READ_2) {
2204                         DSSERR("\tDCS short response, 2 byte: %#x\n",
2205                                         FLD_GET(val, 23, 8));
2206                 } else if (dt == DSI_DT_RX_DCS_LONG_READ) {
2207                         DSSERR("\tDCS long response, len %d\n",
2208                                         FLD_GET(val, 23, 8));
2209                         dsi_vc_flush_long_data(channel);
2210                 } else {
2211                         DSSERR("\tunknown datatype 0x%02x\n", dt);
2212                 }
2213         }
2214         return 0;
2215 }
2216
2217 static int dsi_vc_send_bta(int channel)
2218 {
2219         if (dsi.debug_write || dsi.debug_read)
2220                 DSSDBG("dsi_vc_send_bta %d\n", channel);
2221
2222         WARN_ON(!dsi_bus_is_locked());
2223
2224         if (REG_GET(DSI_VC_CTRL(channel), 20, 20)) {    /* RX_FIFO_NOT_EMPTY */
2225                 DSSERR("rx fifo not empty when sending BTA, dumping data:\n");
2226                 dsi_vc_flush_receive_data(channel);
2227         }
2228
2229         REG_FLD_MOD(DSI_VC_CTRL(channel), 1, 6, 6); /* BTA_EN */
2230
2231         return 0;
2232 }
2233
2234 int dsi_vc_send_bta_sync(int channel)
2235 {
2236         DECLARE_COMPLETION_ONSTACK(completion);
2237         int r = 0;
2238         u32 err;
2239
2240         r = dsi_register_isr_vc(channel, dsi_completion_handler,
2241                         &completion, DSI_VC_IRQ_BTA);
2242         if (r)
2243                 goto err0;
2244
2245         r = dsi_register_isr(dsi_completion_handler, &completion,
2246                         DSI_IRQ_ERROR_MASK);
2247         if (r)
2248                 goto err1;
2249
2250         r = dsi_vc_send_bta(channel);
2251         if (r)
2252                 goto err2;
2253
2254         if (wait_for_completion_timeout(&completion,
2255                                 msecs_to_jiffies(500)) == 0) {
2256                 DSSERR("Failed to receive BTA\n");
2257                 r = -EIO;
2258                 goto err2;
2259         }
2260
2261         err = dsi_get_errors();
2262         if (err) {
2263                 DSSERR("Error while sending BTA: %x\n", err);
2264                 r = -EIO;
2265                 goto err2;
2266         }
2267 err2:
2268         dsi_unregister_isr(dsi_completion_handler, &completion,
2269                         DSI_IRQ_ERROR_MASK);
2270 err1:
2271         dsi_unregister_isr_vc(channel, dsi_completion_handler,
2272                         &completion, DSI_VC_IRQ_BTA);
2273 err0:
2274         return r;
2275 }
2276 EXPORT_SYMBOL(dsi_vc_send_bta_sync);
2277
2278 static inline void dsi_vc_write_long_header(int channel, u8 data_type,
2279                 u16 len, u8 ecc)
2280 {
2281         u32 val;
2282         u8 data_id;
2283
2284         WARN_ON(!dsi_bus_is_locked());
2285
2286         data_id = data_type | dsi.vc[channel].vc_id << 6;
2287
2288         val = FLD_VAL(data_id, 7, 0) | FLD_VAL(len, 23, 8) |
2289                 FLD_VAL(ecc, 31, 24);
2290
2291         dsi_write_reg(DSI_VC_LONG_PACKET_HEADER(channel), val);
2292 }
2293
2294 static inline void dsi_vc_write_long_payload(int channel,
2295                 u8 b1, u8 b2, u8 b3, u8 b4)
2296 {
2297         u32 val;
2298
2299         val = b4 << 24 | b3 << 16 | b2 << 8  | b1 << 0;
2300
2301 /*      DSSDBG("\twriting %02x, %02x, %02x, %02x (%#010x)\n",
2302                         b1, b2, b3, b4, val); */
2303
2304         dsi_write_reg(DSI_VC_LONG_PACKET_PAYLOAD(channel), val);
2305 }
2306
2307 static int dsi_vc_send_long(int channel, u8 data_type, u8 *data, u16 len,
2308                 u8 ecc)
2309 {
2310         /*u32 val; */
2311         int i;
2312         u8 *p;
2313         int r = 0;
2314         u8 b1, b2, b3, b4;
2315
2316         if (dsi.debug_write)
2317                 DSSDBG("dsi_vc_send_long, %d bytes\n", len);
2318
2319         /* len + header */
2320         if (dsi.vc[channel].fifo_size * 32 * 4 < len + 4) {
2321                 DSSERR("unable to send long packet: packet too long.\n");
2322                 return -EINVAL;
2323         }
2324
2325         dsi_vc_config_l4(channel);
2326
2327         dsi_vc_write_long_header(channel, data_type, len, ecc);
2328
2329         p = data;
2330         for (i = 0; i < len >> 2; i++) {
2331                 if (dsi.debug_write)
2332                         DSSDBG("\tsending full packet %d\n", i);
2333
2334                 b1 = *p++;
2335                 b2 = *p++;
2336                 b3 = *p++;
2337                 b4 = *p++;
2338
2339                 dsi_vc_write_long_payload(channel, b1, b2, b3, b4);
2340         }
2341
2342         i = len % 4;
2343         if (i) {
2344                 b1 = 0; b2 = 0; b3 = 0;
2345
2346                 if (dsi.debug_write)
2347                         DSSDBG("\tsending remainder bytes %d\n", i);
2348
2349                 switch (i) {
2350                 case 3:
2351                         b1 = *p++;
2352                         b2 = *p++;
2353                         b3 = *p++;
2354                         break;
2355                 case 2:
2356                         b1 = *p++;
2357                         b2 = *p++;
2358                         break;
2359                 case 1:
2360                         b1 = *p++;
2361                         break;
2362                 }
2363
2364                 dsi_vc_write_long_payload(channel, b1, b2, b3, 0);
2365         }
2366
2367         return r;
2368 }
2369
2370 static int dsi_vc_send_short(int channel, u8 data_type, u16 data, u8 ecc)
2371 {
2372         u32 r;
2373         u8 data_id;
2374
2375         WARN_ON(!dsi_bus_is_locked());
2376
2377         if (dsi.debug_write)
2378                 DSSDBG("dsi_vc_send_short(ch%d, dt %#x, b1 %#x, b2 %#x)\n",
2379                                 channel,
2380                                 data_type, data & 0xff, (data >> 8) & 0xff);
2381
2382         dsi_vc_config_l4(channel);
2383
2384         if (FLD_GET(dsi_read_reg(DSI_VC_CTRL(channel)), 16, 16)) {
2385                 DSSERR("ERROR FIFO FULL, aborting transfer\n");
2386                 return -EINVAL;
2387         }
2388
2389         data_id = data_type | dsi.vc[channel].vc_id << 6;
2390
2391         r = (data_id << 0) | (data << 8) | (ecc << 24);
2392
2393         dsi_write_reg(DSI_VC_SHORT_PACKET_HEADER(channel), r);
2394
2395         return 0;
2396 }
2397
2398 int dsi_vc_send_null(int channel)
2399 {
2400         u8 nullpkg[] = {0, 0, 0, 0};
2401         return dsi_vc_send_long(channel, DSI_DT_NULL_PACKET, nullpkg, 4, 0);
2402 }
2403 EXPORT_SYMBOL(dsi_vc_send_null);
2404
2405 int dsi_vc_dcs_write_nosync(int channel, u8 *data, int len)
2406 {
2407         int r;
2408
2409         BUG_ON(len == 0);
2410
2411         if (len == 1) {
2412                 r = dsi_vc_send_short(channel, DSI_DT_DCS_SHORT_WRITE_0,
2413                                 data[0], 0);
2414         } else if (len == 2) {
2415                 r = dsi_vc_send_short(channel, DSI_DT_DCS_SHORT_WRITE_1,
2416                                 data[0] | (data[1] << 8), 0);
2417         } else {
2418                 /* 0x39 = DCS Long Write */
2419                 r = dsi_vc_send_long(channel, DSI_DT_DCS_LONG_WRITE,
2420                                 data, len, 0);
2421         }
2422
2423         return r;
2424 }
2425 EXPORT_SYMBOL(dsi_vc_dcs_write_nosync);
2426
2427 int dsi_vc_dcs_write(int channel, u8 *data, int len)
2428 {
2429         int r;
2430
2431         r = dsi_vc_dcs_write_nosync(channel, data, len);
2432         if (r)
2433                 goto err;
2434
2435         r = dsi_vc_send_bta_sync(channel);
2436         if (r)
2437                 goto err;
2438
2439         if (REG_GET(DSI_VC_CTRL(channel), 20, 20)) {    /* RX_FIFO_NOT_EMPTY */
2440                 DSSERR("rx fifo not empty after write, dumping data:\n");
2441                 dsi_vc_flush_receive_data(channel);
2442                 r = -EIO;
2443                 goto err;
2444         }
2445
2446         return 0;
2447 err:
2448         DSSERR("dsi_vc_dcs_write(ch %d, cmd 0x%02x, len %d) failed\n",
2449                         channel, data[0], len);
2450         return r;
2451 }
2452 EXPORT_SYMBOL(dsi_vc_dcs_write);
2453
2454 int dsi_vc_dcs_write_0(int channel, u8 dcs_cmd)
2455 {
2456         return dsi_vc_dcs_write(channel, &dcs_cmd, 1);
2457 }
2458 EXPORT_SYMBOL(dsi_vc_dcs_write_0);
2459
2460 int dsi_vc_dcs_write_1(int channel, u8 dcs_cmd, u8 param)
2461 {
2462         u8 buf[2];
2463         buf[0] = dcs_cmd;
2464         buf[1] = param;
2465         return dsi_vc_dcs_write(channel, buf, 2);
2466 }
2467 EXPORT_SYMBOL(dsi_vc_dcs_write_1);
2468
2469 int dsi_vc_dcs_read(int channel, u8 dcs_cmd, u8 *buf, int buflen)
2470 {
2471         u32 val;
2472         u8 dt;
2473         int r;
2474
2475         if (dsi.debug_read)
2476                 DSSDBG("dsi_vc_dcs_read(ch%d, dcs_cmd %x)\n", channel, dcs_cmd);
2477
2478         r = dsi_vc_send_short(channel, DSI_DT_DCS_READ, dcs_cmd, 0);
2479         if (r)
2480                 goto err;
2481
2482         r = dsi_vc_send_bta_sync(channel);
2483         if (r)
2484                 goto err;
2485
2486         /* RX_FIFO_NOT_EMPTY */
2487         if (REG_GET(DSI_VC_CTRL(channel), 20, 20) == 0) {
2488                 DSSERR("RX fifo empty when trying to read.\n");
2489                 r = -EIO;
2490                 goto err;
2491         }
2492
2493         val = dsi_read_reg(DSI_VC_SHORT_PACKET_HEADER(channel));
2494         if (dsi.debug_read)
2495                 DSSDBG("\theader: %08x\n", val);
2496         dt = FLD_GET(val, 5, 0);
2497         if (dt == DSI_DT_RX_ACK_WITH_ERR) {
2498                 u16 err = FLD_GET(val, 23, 8);
2499                 dsi_show_rx_ack_with_err(err);
2500                 r = -EIO;
2501                 goto err;
2502
2503         } else if (dt == DSI_DT_RX_SHORT_READ_1) {
2504                 u8 data = FLD_GET(val, 15, 8);
2505                 if (dsi.debug_read)
2506                         DSSDBG("\tDCS short response, 1 byte: %02x\n", data);
2507
2508                 if (buflen < 1) {
2509                         r = -EIO;
2510                         goto err;
2511                 }
2512
2513                 buf[0] = data;
2514
2515                 return 1;
2516         } else if (dt == DSI_DT_RX_SHORT_READ_2) {
2517                 u16 data = FLD_GET(val, 23, 8);
2518                 if (dsi.debug_read)
2519                         DSSDBG("\tDCS short response, 2 byte: %04x\n", data);
2520
2521                 if (buflen < 2) {
2522                         r = -EIO;
2523                         goto err;
2524                 }
2525
2526                 buf[0] = data & 0xff;
2527                 buf[1] = (data >> 8) & 0xff;
2528
2529                 return 2;
2530         } else if (dt == DSI_DT_RX_DCS_LONG_READ) {
2531                 int w;
2532                 int len = FLD_GET(val, 23, 8);
2533                 if (dsi.debug_read)
2534                         DSSDBG("\tDCS long response, len %d\n", len);
2535
2536                 if (len > buflen) {
2537                         r = -EIO;
2538                         goto err;
2539                 }
2540
2541                 /* two byte checksum ends the packet, not included in len */
2542                 for (w = 0; w < len + 2;) {
2543                         int b;
2544                         val = dsi_read_reg(DSI_VC_SHORT_PACKET_HEADER(channel));
2545                         if (dsi.debug_read)
2546                                 DSSDBG("\t\t%02x %02x %02x %02x\n",
2547                                                 (val >> 0) & 0xff,
2548                                                 (val >> 8) & 0xff,
2549                                                 (val >> 16) & 0xff,
2550                                                 (val >> 24) & 0xff);
2551
2552                         for (b = 0; b < 4; ++b) {
2553                                 if (w < len)
2554                                         buf[w] = (val >> (b * 8)) & 0xff;
2555                                 /* we discard the 2 byte checksum */
2556                                 ++w;
2557                         }
2558                 }
2559
2560                 return len;
2561         } else {
2562                 DSSERR("\tunknown datatype 0x%02x\n", dt);
2563                 r = -EIO;
2564                 goto err;
2565         }
2566
2567         BUG();
2568 err:
2569         DSSERR("dsi_vc_dcs_read(ch %d, cmd 0x%02x) failed\n",
2570                         channel, dcs_cmd);
2571         return r;
2572
2573 }
2574 EXPORT_SYMBOL(dsi_vc_dcs_read);
2575
2576 int dsi_vc_dcs_read_1(int channel, u8 dcs_cmd, u8 *data)
2577 {
2578         int r;
2579
2580         r = dsi_vc_dcs_read(channel, dcs_cmd, data, 1);
2581
2582         if (r < 0)
2583                 return r;
2584
2585         if (r != 1)
2586                 return -EIO;
2587
2588         return 0;
2589 }
2590 EXPORT_SYMBOL(dsi_vc_dcs_read_1);
2591
2592 int dsi_vc_dcs_read_2(int channel, u8 dcs_cmd, u8 *data1, u8 *data2)
2593 {
2594         u8 buf[2];
2595         int r;
2596
2597         r = dsi_vc_dcs_read(channel, dcs_cmd, buf, 2);
2598
2599         if (r < 0)
2600                 return r;
2601
2602         if (r != 2)
2603                 return -EIO;
2604
2605         *data1 = buf[0];
2606         *data2 = buf[1];
2607
2608         return 0;
2609 }
2610 EXPORT_SYMBOL(dsi_vc_dcs_read_2);
2611
2612 int dsi_vc_set_max_rx_packet_size(int channel, u16 len)
2613 {
2614         return dsi_vc_send_short(channel, DSI_DT_SET_MAX_RET_PKG_SIZE,
2615                         len, 0);
2616 }
2617 EXPORT_SYMBOL(dsi_vc_set_max_rx_packet_size);
2618
2619 static void dsi_set_lp_rx_timeout(unsigned ticks, bool x4, bool x16)
2620 {
2621         unsigned long fck;
2622         unsigned long total_ticks;
2623         u32 r;
2624
2625         BUG_ON(ticks > 0x1fff);
2626
2627         /* ticks in DSI_FCK */
2628         fck = dsi_fclk_rate();
2629
2630         r = dsi_read_reg(DSI_TIMING2);
2631         r = FLD_MOD(r, 1, 15, 15);      /* LP_RX_TO */
2632         r = FLD_MOD(r, x16 ? 1 : 0, 14, 14);    /* LP_RX_TO_X16 */
2633         r = FLD_MOD(r, x4 ? 1 : 0, 13, 13);     /* LP_RX_TO_X4 */
2634         r = FLD_MOD(r, ticks, 12, 0);   /* LP_RX_COUNTER */
2635         dsi_write_reg(DSI_TIMING2, r);
2636
2637         total_ticks = ticks * (x16 ? 16 : 1) * (x4 ? 4 : 1);
2638
2639         DSSDBG("LP_RX_TO %lu ticks (%#x%s%s) = %lu ns\n",
2640                         total_ticks,
2641                         ticks, x4 ? " x4" : "", x16 ? " x16" : "",
2642                         (total_ticks * 1000) / (fck / 1000 / 1000));
2643 }
2644
2645 static void dsi_set_ta_timeout(unsigned ticks, bool x8, bool x16)
2646 {
2647         unsigned long fck;
2648         unsigned long total_ticks;
2649         u32 r;
2650
2651         BUG_ON(ticks > 0x1fff);
2652
2653         /* ticks in DSI_FCK */
2654         fck = dsi_fclk_rate();
2655
2656         r = dsi_read_reg(DSI_TIMING1);
2657         r = FLD_MOD(r, 1, 31, 31);      /* TA_TO */
2658         r = FLD_MOD(r, x16 ? 1 : 0, 30, 30);    /* TA_TO_X16 */
2659         r = FLD_MOD(r, x8 ? 1 : 0, 29, 29);     /* TA_TO_X8 */
2660         r = FLD_MOD(r, ticks, 28, 16);  /* TA_TO_COUNTER */
2661         dsi_write_reg(DSI_TIMING1, r);
2662
2663         total_ticks = ticks * (x16 ? 16 : 1) * (x8 ? 8 : 1);
2664
2665         DSSDBG("TA_TO %lu ticks (%#x%s%s) = %lu ns\n",
2666                         total_ticks,
2667                         ticks, x8 ? " x8" : "", x16 ? " x16" : "",
2668                         (total_ticks * 1000) / (fck / 1000 / 1000));
2669 }
2670
2671 static void dsi_set_stop_state_counter(unsigned ticks, bool x4, bool x16)
2672 {
2673         unsigned long fck;
2674         unsigned long total_ticks;
2675         u32 r;
2676
2677         BUG_ON(ticks > 0x1fff);
2678
2679         /* ticks in DSI_FCK */
2680         fck = dsi_fclk_rate();
2681
2682         r = dsi_read_reg(DSI_TIMING1);
2683         r = FLD_MOD(r, 1, 15, 15);      /* FORCE_TX_STOP_MODE_IO */
2684         r = FLD_MOD(r, x16 ? 1 : 0, 14, 14);    /* STOP_STATE_X16_IO */
2685         r = FLD_MOD(r, x4 ? 1 : 0, 13, 13);     /* STOP_STATE_X4_IO */
2686         r = FLD_MOD(r, ticks, 12, 0);   /* STOP_STATE_COUNTER_IO */
2687         dsi_write_reg(DSI_TIMING1, r);
2688
2689         total_ticks = ticks * (x16 ? 16 : 1) * (x4 ? 4 : 1);
2690
2691         DSSDBG("STOP_STATE_COUNTER %lu ticks (%#x%s%s) = %lu ns\n",
2692                         total_ticks,
2693                         ticks, x4 ? " x4" : "", x16 ? " x16" : "",
2694                         (total_ticks * 1000) / (fck / 1000 / 1000));
2695 }
2696
2697 static void dsi_set_hs_tx_timeout(unsigned ticks, bool x4, bool x16)
2698 {
2699         unsigned long fck;
2700         unsigned long total_ticks;
2701         u32 r;
2702
2703         BUG_ON(ticks > 0x1fff);
2704
2705         /* ticks in TxByteClkHS */
2706         fck = dsi_get_txbyteclkhs();
2707
2708         r = dsi_read_reg(DSI_TIMING2);
2709         r = FLD_MOD(r, 1, 31, 31);      /* HS_TX_TO */
2710         r = FLD_MOD(r, x16 ? 1 : 0, 30, 30);    /* HS_TX_TO_X16 */
2711         r = FLD_MOD(r, x4 ? 1 : 0, 29, 29);     /* HS_TX_TO_X8 (4 really) */
2712         r = FLD_MOD(r, ticks, 28, 16);  /* HS_TX_TO_COUNTER */
2713         dsi_write_reg(DSI_TIMING2, r);
2714
2715         total_ticks = ticks * (x16 ? 16 : 1) * (x4 ? 4 : 1);
2716
2717         DSSDBG("HS_TX_TO %lu ticks (%#x%s%s) = %lu ns\n",
2718                         total_ticks,
2719                         ticks, x4 ? " x4" : "", x16 ? " x16" : "",
2720                         (total_ticks * 1000) / (fck / 1000 / 1000));
2721 }
2722 static int dsi_proto_config(struct omap_dss_device *dssdev)
2723 {
2724         u32 r;
2725         int buswidth = 0;
2726
2727         dsi_config_tx_fifo(DSI_FIFO_SIZE_32,
2728                         DSI_FIFO_SIZE_32,
2729                         DSI_FIFO_SIZE_32,
2730                         DSI_FIFO_SIZE_32);
2731
2732         dsi_config_rx_fifo(DSI_FIFO_SIZE_32,
2733                         DSI_FIFO_SIZE_32,
2734                         DSI_FIFO_SIZE_32,
2735                         DSI_FIFO_SIZE_32);
2736
2737         /* XXX what values for the timeouts? */
2738         dsi_set_stop_state_counter(0x1000, false, false);
2739         dsi_set_ta_timeout(0x1fff, true, true);
2740         dsi_set_lp_rx_timeout(0x1fff, true, true);
2741         dsi_set_hs_tx_timeout(0x1fff, true, true);
2742
2743         switch (dssdev->ctrl.pixel_size) {
2744         case 16:
2745                 buswidth = 0;
2746                 break;
2747         case 18:
2748                 buswidth = 1;
2749                 break;
2750         case 24:
2751                 buswidth = 2;
2752                 break;
2753         default:
2754                 BUG();
2755         }
2756
2757         r = dsi_read_reg(DSI_CTRL);
2758         r = FLD_MOD(r, 1, 1, 1);        /* CS_RX_EN */
2759         r = FLD_MOD(r, 1, 2, 2);        /* ECC_RX_EN */
2760         r = FLD_MOD(r, 1, 3, 3);        /* TX_FIFO_ARBITRATION */
2761         r = FLD_MOD(r, 1, 4, 4);        /* VP_CLK_RATIO, always 1, see errata*/
2762         r = FLD_MOD(r, buswidth, 7, 6); /* VP_DATA_BUS_WIDTH */
2763         r = FLD_MOD(r, 0, 8, 8);        /* VP_CLK_POL */
2764         r = FLD_MOD(r, 2, 13, 12);      /* LINE_BUFFER, 2 lines */
2765         r = FLD_MOD(r, 1, 14, 14);      /* TRIGGER_RESET_MODE */
2766         r = FLD_MOD(r, 1, 19, 19);      /* EOT_ENABLE */
2767         r = FLD_MOD(r, 1, 24, 24);      /* DCS_CMD_ENABLE */
2768         r = FLD_MOD(r, 0, 25, 25);      /* DCS_CMD_CODE, 1=start, 0=continue */
2769
2770         dsi_write_reg(DSI_CTRL, r);
2771
2772         dsi_vc_initial_config(0);
2773         dsi_vc_initial_config(1);
2774         dsi_vc_initial_config(2);
2775         dsi_vc_initial_config(3);
2776
2777         return 0;
2778 }
2779
2780 static void dsi_proto_timings(struct omap_dss_device *dssdev)
2781 {
2782         unsigned tlpx, tclk_zero, tclk_prepare, tclk_trail;
2783         unsigned tclk_pre, tclk_post;
2784         unsigned ths_prepare, ths_prepare_ths_zero, ths_zero;
2785         unsigned ths_trail, ths_exit;
2786         unsigned ddr_clk_pre, ddr_clk_post;
2787         unsigned enter_hs_mode_lat, exit_hs_mode_lat;
2788         unsigned ths_eot;
2789         u32 r;
2790
2791         r = dsi_read_reg(DSI_DSIPHY_CFG0);
2792         ths_prepare = FLD_GET(r, 31, 24);
2793         ths_prepare_ths_zero = FLD_GET(r, 23, 16);
2794         ths_zero = ths_prepare_ths_zero - ths_prepare;
2795         ths_trail = FLD_GET(r, 15, 8);
2796         ths_exit = FLD_GET(r, 7, 0);
2797
2798         r = dsi_read_reg(DSI_DSIPHY_CFG1);
2799         tlpx = FLD_GET(r, 22, 16) * 2;
2800         tclk_trail = FLD_GET(r, 15, 8);
2801         tclk_zero = FLD_GET(r, 7, 0);
2802
2803         r = dsi_read_reg(DSI_DSIPHY_CFG2);
2804         tclk_prepare = FLD_GET(r, 7, 0);
2805
2806         /* min 8*UI */
2807         tclk_pre = 20;
2808         /* min 60ns + 52*UI */
2809         tclk_post = ns2ddr(60) + 26;
2810
2811         /* ths_eot is 2 for 2 datalanes and 4 for 1 datalane */
2812         if (dssdev->phy.dsi.data1_lane != 0 &&
2813                         dssdev->phy.dsi.data2_lane != 0)
2814                 ths_eot = 2;
2815         else
2816                 ths_eot = 4;
2817
2818         ddr_clk_pre = DIV_ROUND_UP(tclk_pre + tlpx + tclk_zero + tclk_prepare,
2819                         4);
2820         ddr_clk_post = DIV_ROUND_UP(tclk_post + ths_trail, 4) + ths_eot;
2821
2822         BUG_ON(ddr_clk_pre == 0 || ddr_clk_pre > 255);
2823         BUG_ON(ddr_clk_post == 0 || ddr_clk_post > 255);
2824
2825         r = dsi_read_reg(DSI_CLK_TIMING);
2826         r = FLD_MOD(r, ddr_clk_pre, 15, 8);
2827         r = FLD_MOD(r, ddr_clk_post, 7, 0);
2828         dsi_write_reg(DSI_CLK_TIMING, r);
2829
2830         DSSDBG("ddr_clk_pre %u, ddr_clk_post %u\n",
2831                         ddr_clk_pre,
2832                         ddr_clk_post);
2833
2834         enter_hs_mode_lat = 1 + DIV_ROUND_UP(tlpx, 4) +
2835                 DIV_ROUND_UP(ths_prepare, 4) +
2836                 DIV_ROUND_UP(ths_zero + 3, 4);
2837
2838         exit_hs_mode_lat = DIV_ROUND_UP(ths_trail + ths_exit, 4) + 1 + ths_eot;
2839
2840         r = FLD_VAL(enter_hs_mode_lat, 31, 16) |
2841                 FLD_VAL(exit_hs_mode_lat, 15, 0);
2842         dsi_write_reg(DSI_VM_TIMING7, r);
2843
2844         DSSDBG("enter_hs_mode_lat %u, exit_hs_mode_lat %u\n",
2845                         enter_hs_mode_lat, exit_hs_mode_lat);
2846 }
2847
2848
2849 #define DSI_DECL_VARS \
2850         int __dsi_cb = 0; u32 __dsi_cv = 0;
2851
2852 #define DSI_FLUSH(ch) \
2853         if (__dsi_cb > 0) { \
2854                 /*DSSDBG("sending long packet %#010x\n", __dsi_cv);*/ \
2855                 dsi_write_reg(DSI_VC_LONG_PACKET_PAYLOAD(ch), __dsi_cv); \
2856                 __dsi_cb = __dsi_cv = 0; \
2857         }
2858
2859 #define DSI_PUSH(ch, data) \
2860         do { \
2861                 __dsi_cv |= (data) << (__dsi_cb * 8); \
2862                 /*DSSDBG("cv = %#010x, cb = %d\n", __dsi_cv, __dsi_cb);*/ \
2863                 if (++__dsi_cb > 3) \
2864                         DSI_FLUSH(ch); \
2865         } while (0)
2866
2867 static int dsi_update_screen_l4(struct omap_dss_device *dssdev,
2868                         int x, int y, int w, int h)
2869 {
2870         /* Note: supports only 24bit colors in 32bit container */
2871         int first = 1;
2872         int fifo_stalls = 0;
2873         int max_dsi_packet_size;
2874         int max_data_per_packet;
2875         int max_pixels_per_packet;
2876         int pixels_left;
2877         int bytespp = dssdev->ctrl.pixel_size / 8;
2878         int scr_width;
2879         u32 __iomem *data;
2880         int start_offset;
2881         int horiz_inc;
2882         int current_x;
2883         struct omap_overlay *ovl;
2884
2885         debug_irq = 0;
2886
2887         DSSDBG("dsi_update_screen_l4 (%d,%d %dx%d)\n",
2888                         x, y, w, h);
2889
2890         ovl = dssdev->manager->overlays[0];
2891
2892         if (ovl->info.color_mode != OMAP_DSS_COLOR_RGB24U)
2893                 return -EINVAL;
2894
2895         if (dssdev->ctrl.pixel_size != 24)
2896                 return -EINVAL;
2897
2898         scr_width = ovl->info.screen_width;
2899         data = ovl->info.vaddr;
2900
2901         start_offset = scr_width * y + x;
2902         horiz_inc = scr_width - w;
2903         current_x = x;
2904
2905         /* We need header(4) + DCSCMD(1) + pixels(numpix*bytespp) bytes
2906          * in fifo */
2907
2908         /* When using CPU, max long packet size is TX buffer size */
2909         max_dsi_packet_size = dsi.vc[0].fifo_size * 32 * 4;
2910
2911         /* we seem to get better perf if we divide the tx fifo to half,
2912            and while the other half is being sent, we fill the other half
2913            max_dsi_packet_size /= 2; */
2914
2915         max_data_per_packet = max_dsi_packet_size - 4 - 1;
2916
2917         max_pixels_per_packet = max_data_per_packet / bytespp;
2918
2919         DSSDBG("max_pixels_per_packet %d\n", max_pixels_per_packet);
2920
2921         pixels_left = w * h;
2922
2923         DSSDBG("total pixels %d\n", pixels_left);
2924
2925         data += start_offset;
2926
2927         while (pixels_left > 0) {
2928                 /* 0x2c = write_memory_start */
2929                 /* 0x3c = write_memory_continue */
2930                 u8 dcs_cmd = first ? 0x2c : 0x3c;
2931                 int pixels;
2932                 DSI_DECL_VARS;
2933                 first = 0;
2934
2935 #if 1
2936                 /* using fifo not empty */
2937                 /* TX_FIFO_NOT_EMPTY */
2938                 while (FLD_GET(dsi_read_reg(DSI_VC_CTRL(0)), 5, 5)) {
2939                         fifo_stalls++;
2940                         if (fifo_stalls > 0xfffff) {
2941                                 DSSERR("fifo stalls overflow, pixels left %d\n",
2942                                                 pixels_left);
2943                                 dsi_if_enable(0);
2944                                 return -EIO;
2945                         }
2946                         udelay(1);
2947                 }
2948 #elif 1
2949                 /* using fifo emptiness */
2950                 while ((REG_GET(DSI_TX_FIFO_VC_EMPTINESS, 7, 0)+1)*4 <
2951                                 max_dsi_packet_size) {
2952                         fifo_stalls++;
2953                         if (fifo_stalls > 0xfffff) {
2954                                 DSSERR("fifo stalls overflow, pixels left %d\n",
2955                                                pixels_left);
2956                                 dsi_if_enable(0);
2957                                 return -EIO;
2958                         }
2959                 }
2960 #else
2961                 while ((REG_GET(DSI_TX_FIFO_VC_EMPTINESS, 7, 0)+1)*4 == 0) {
2962                         fifo_stalls++;
2963                         if (fifo_stalls > 0xfffff) {
2964                                 DSSERR("fifo stalls overflow, pixels left %d\n",
2965                                                pixels_left);
2966                                 dsi_if_enable(0);
2967                                 return -EIO;
2968                         }
2969                 }
2970 #endif
2971                 pixels = min(max_pixels_per_packet, pixels_left);
2972
2973                 pixels_left -= pixels;
2974
2975                 dsi_vc_write_long_header(0, DSI_DT_DCS_LONG_WRITE,
2976                                 1 + pixels * bytespp, 0);
2977
2978                 DSI_PUSH(0, dcs_cmd);
2979
2980                 while (pixels-- > 0) {
2981                         u32 pix = __raw_readl(data++);
2982
2983                         DSI_PUSH(0, (pix >> 16) & 0xff);
2984                         DSI_PUSH(0, (pix >> 8) & 0xff);
2985                         DSI_PUSH(0, (pix >> 0) & 0xff);
2986
2987                         current_x++;
2988                         if (current_x == x+w) {
2989                                 current_x = x;
2990                                 data += horiz_inc;
2991                         }
2992                 }
2993
2994                 DSI_FLUSH(0);
2995         }
2996
2997         return 0;
2998 }
2999
3000 static void dsi_update_screen_dispc(struct omap_dss_device *dssdev,
3001                 u16 x, u16 y, u16 w, u16 h)
3002 {
3003         unsigned bytespp;
3004         unsigned bytespl;
3005         unsigned bytespf;
3006         unsigned total_len;
3007         unsigned packet_payload;
3008         unsigned packet_len;
3009         u32 l;
3010         int r;
3011         const unsigned channel = dsi.update_channel;
3012         /* line buffer is 1024 x 24bits */
3013         /* XXX: for some reason using full buffer size causes considerable TX
3014          * slowdown with update sizes that fill the whole buffer */
3015         const unsigned line_buf_size = 1023 * 3;
3016
3017         DSSDBG("dsi_update_screen_dispc(%d,%d %dx%d)\n",
3018                         x, y, w, h);
3019
3020         dsi_vc_config_vp(channel);
3021
3022         bytespp = dssdev->ctrl.pixel_size / 8;
3023         bytespl = w * bytespp;
3024         bytespf = bytespl * h;
3025
3026         /* NOTE: packet_payload has to be equal to N * bytespl, where N is
3027          * number of lines in a packet.  See errata about VP_CLK_RATIO */
3028
3029         if (bytespf < line_buf_size)
3030                 packet_payload = bytespf;
3031         else
3032                 packet_payload = (line_buf_size) / bytespl * bytespl;
3033
3034         packet_len = packet_payload + 1;        /* 1 byte for DCS cmd */
3035         total_len = (bytespf / packet_payload) * packet_len;
3036
3037         if (bytespf % packet_payload)
3038                 total_len += (bytespf % packet_payload) + 1;
3039
3040         l = FLD_VAL(total_len, 23, 0); /* TE_SIZE */
3041         dsi_write_reg(DSI_VC_TE(channel), l);
3042
3043         dsi_vc_write_long_header(channel, DSI_DT_DCS_LONG_WRITE, packet_len, 0);
3044
3045         if (dsi.te_enabled)
3046                 l = FLD_MOD(l, 1, 30, 30); /* TE_EN */
3047         else
3048                 l = FLD_MOD(l, 1, 31, 31); /* TE_START */
3049         dsi_write_reg(DSI_VC_TE(channel), l);
3050
3051         /* We put SIDLEMODE to no-idle for the duration of the transfer,
3052          * because DSS interrupts are not capable of waking up the CPU and the
3053          * framedone interrupt could be delayed for quite a long time. I think
3054          * the same goes for any DSS interrupts, but for some reason I have not
3055          * seen the problem anywhere else than here.
3056          */
3057         dispc_disable_sidle();
3058
3059         dsi_perf_mark_start();
3060
3061         r = queue_delayed_work(dsi.workqueue, &dsi.framedone_timeout_work,
3062                         msecs_to_jiffies(250));
3063         BUG_ON(r == 0);
3064
3065         dss_start_update(dssdev);
3066
3067         if (dsi.te_enabled) {
3068                 /* disable LP_RX_TO, so that we can receive TE.  Time to wait
3069                  * for TE is longer than the timer allows */
3070                 REG_FLD_MOD(DSI_TIMING2, 0, 15, 15); /* LP_RX_TO */
3071
3072                 dsi_vc_send_bta(channel);
3073
3074 #ifdef DSI_CATCH_MISSING_TE
3075                 mod_timer(&dsi.te_timer, jiffies + msecs_to_jiffies(250));
3076 #endif
3077         }
3078 }
3079
3080 #ifdef DSI_CATCH_MISSING_TE
3081 static void dsi_te_timeout(unsigned long arg)
3082 {
3083         DSSERR("TE not received for 250ms!\n");
3084 }
3085 #endif
3086
3087 static void dsi_framedone_bta_callback(void *data, u32 mask);
3088
3089 static void dsi_handle_framedone(int error)
3090 {
3091         const int channel = dsi.update_channel;
3092
3093         dsi_unregister_isr_vc(channel, dsi_framedone_bta_callback,
3094                         NULL, DSI_VC_IRQ_BTA);
3095
3096         cancel_delayed_work(&dsi.framedone_timeout_work);
3097
3098         /* SIDLEMODE back to smart-idle */
3099         dispc_enable_sidle();
3100
3101         if (dsi.te_enabled) {
3102                 /* enable LP_RX_TO again after the TE */
3103                 REG_FLD_MOD(DSI_TIMING2, 1, 15, 15); /* LP_RX_TO */
3104         }
3105
3106         /* RX_FIFO_NOT_EMPTY */
3107         if (REG_GET(DSI_VC_CTRL(channel), 20, 20)) {
3108                 DSSERR("Received error during frame transfer:\n");
3109                 dsi_vc_flush_receive_data(channel);
3110                 if (!error)
3111                         error = -EIO;
3112         }
3113
3114         dsi.framedone_callback(error, dsi.framedone_data);
3115
3116         if (!error)
3117                 dsi_perf_show("DISPC");
3118 }
3119
3120 static void dsi_framedone_timeout_work_callback(struct work_struct *work)
3121 {
3122         /* XXX While extremely unlikely, we could get FRAMEDONE interrupt after
3123          * 250ms which would conflict with this timeout work. What should be
3124          * done is first cancel the transfer on the HW, and then cancel the
3125          * possibly scheduled framedone work. However, cancelling the transfer
3126          * on the HW is buggy, and would probably require resetting the whole
3127          * DSI */
3128
3129         DSSERR("Framedone not received for 250ms!\n");
3130
3131         dsi_handle_framedone(-ETIMEDOUT);
3132 }
3133
3134 static void dsi_framedone_bta_callback(void *data, u32 mask)
3135 {
3136         dsi_handle_framedone(0);
3137
3138 #ifdef CONFIG_OMAP2_DSS_FAKE_VSYNC
3139         dispc_fake_vsync_irq();
3140 #endif
3141 }
3142
3143 static void dsi_framedone_irq_callback(void *data, u32 mask)
3144 {
3145         const int channel = dsi.update_channel;
3146         int r;
3147
3148         /* Note: We get FRAMEDONE when DISPC has finished sending pixels and
3149          * turns itself off. However, DSI still has the pixels in its buffers,
3150          * and is sending the data.
3151          */
3152
3153         if (dsi.te_enabled) {
3154                 /* enable LP_RX_TO again after the TE */
3155                 REG_FLD_MOD(DSI_TIMING2, 1, 15, 15); /* LP_RX_TO */
3156         }
3157
3158         /* Send BTA after the frame. We need this for the TE to work, as TE
3159          * trigger is only sent for BTAs without preceding packet. Thus we need
3160          * to BTA after the pixel packets so that next BTA will cause TE
3161          * trigger.
3162          *
3163          * This is not needed when TE is not in use, but we do it anyway to
3164          * make sure that the transfer has been completed. It would be more
3165          * optimal, but more complex, to wait only just before starting next
3166          * transfer.
3167          *
3168          * Also, as there's no interrupt telling when the transfer has been
3169          * done and the channel could be reconfigured, the only way is to
3170          * busyloop until TE_SIZE is zero. With BTA we can do this
3171          * asynchronously.
3172          * */
3173
3174         r = dsi_register_isr_vc(channel, dsi_framedone_bta_callback,
3175                         NULL, DSI_VC_IRQ_BTA);
3176         if (r) {
3177                 DSSERR("Failed to register BTA ISR\n");
3178                 dsi_handle_framedone(-EIO);
3179                 return;
3180         }
3181
3182         r = dsi_vc_send_bta(channel);
3183         if (r) {
3184                 DSSERR("BTA after framedone failed\n");
3185                 dsi_unregister_isr_vc(channel, dsi_framedone_bta_callback,
3186                                 NULL, DSI_VC_IRQ_BTA);
3187                 dsi_handle_framedone(-EIO);
3188         }
3189 }
3190
3191 int omap_dsi_prepare_update(struct omap_dss_device *dssdev,
3192                                     u16 *x, u16 *y, u16 *w, u16 *h,
3193                                     bool enlarge_update_area)
3194 {
3195         u16 dw, dh;
3196
3197         dssdev->driver->get_resolution(dssdev, &dw, &dh);
3198
3199         if  (*x > dw || *y > dh)
3200                 return -EINVAL;
3201
3202         if (*x + *w > dw)
3203                 return -EINVAL;
3204
3205         if (*y + *h > dh)
3206                 return -EINVAL;
3207
3208         if (*w == 1)
3209                 return -EINVAL;
3210
3211         if (*w == 0 || *h == 0)
3212                 return -EINVAL;
3213
3214         dsi_perf_mark_setup();
3215
3216         if (dssdev->manager->caps & OMAP_DSS_OVL_MGR_CAP_DISPC) {
3217                 dss_setup_partial_planes(dssdev, x, y, w, h,
3218                                 enlarge_update_area);
3219                 dispc_set_lcd_size(dssdev->manager->id, *w, *h);
3220         }
3221
3222         return 0;
3223 }
3224 EXPORT_SYMBOL(omap_dsi_prepare_update);
3225
3226 int omap_dsi_update(struct omap_dss_device *dssdev,
3227                 int channel,
3228                 u16 x, u16 y, u16 w, u16 h,
3229                 void (*callback)(int, void *), void *data)
3230 {
3231         dsi.update_channel = channel;
3232
3233         /* OMAP DSS cannot send updates of odd widths.
3234          * omap_dsi_prepare_update() makes the widths even, but add a BUG_ON
3235          * here to make sure we catch erroneous updates. Otherwise we'll only
3236          * see rather obscure HW error happening, as DSS halts. */
3237         BUG_ON(x % 2 == 1);
3238
3239         if (dssdev->manager->caps & OMAP_DSS_OVL_MGR_CAP_DISPC) {
3240                 dsi.framedone_callback = callback;
3241                 dsi.framedone_data = data;
3242
3243                 dsi.update_region.x = x;
3244                 dsi.update_region.y = y;
3245                 dsi.update_region.w = w;
3246                 dsi.update_region.h = h;
3247                 dsi.update_region.device = dssdev;
3248
3249                 dsi_update_screen_dispc(dssdev, x, y, w, h);
3250         } else {
3251                 int r;
3252
3253                 r = dsi_update_screen_l4(dssdev, x, y, w, h);
3254                 if (r)
3255                         return r;
3256
3257                 dsi_perf_show("L4");
3258                 callback(0, data);
3259         }
3260
3261         return 0;
3262 }
3263 EXPORT_SYMBOL(omap_dsi_update);
3264
3265 /* Display funcs */
3266
3267 static int dsi_display_init_dispc(struct omap_dss_device *dssdev)
3268 {
3269         int r;
3270
3271         r = omap_dispc_register_isr(dsi_framedone_irq_callback, NULL,
3272                         DISPC_IRQ_FRAMEDONE);
3273         if (r) {
3274                 DSSERR("can't get FRAMEDONE irq\n");
3275                 return r;
3276         }
3277
3278         dispc_set_lcd_display_type(dssdev->manager->id,
3279                         OMAP_DSS_LCD_DISPLAY_TFT);
3280
3281         dispc_set_parallel_interface_mode(dssdev->manager->id,
3282                         OMAP_DSS_PARALLELMODE_DSI);
3283         dispc_enable_fifohandcheck(dssdev->manager->id, 1);
3284
3285         dispc_set_tft_data_lines(dssdev->manager->id, dssdev->ctrl.pixel_size);
3286
3287         {
3288                 struct omap_video_timings timings = {
3289                         .hsw            = 1,
3290                         .hfp            = 1,
3291                         .hbp            = 1,
3292                         .vsw            = 1,
3293                         .vfp            = 0,
3294                         .vbp            = 0,
3295                 };
3296
3297                 dispc_set_lcd_timings(dssdev->manager->id, &timings);
3298         }
3299
3300         return 0;
3301 }
3302
3303 static void dsi_display_uninit_dispc(struct omap_dss_device *dssdev)
3304 {
3305         omap_dispc_unregister_isr(dsi_framedone_irq_callback, NULL,
3306                         DISPC_IRQ_FRAMEDONE);
3307 }
3308
3309 static int dsi_configure_dsi_clocks(struct omap_dss_device *dssdev)
3310 {
3311         struct dsi_clock_info cinfo;
3312         int r;
3313
3314         /* we always use DSS_CLK_SYSCK as input clock */
3315         cinfo.use_sys_clk = true;
3316         cinfo.regn  = dssdev->phy.dsi.div.regn;
3317         cinfo.regm  = dssdev->phy.dsi.div.regm;
3318         cinfo.regm_dispc = dssdev->phy.dsi.div.regm_dispc;
3319         cinfo.regm_dsi = dssdev->phy.dsi.div.regm_dsi;
3320         r = dsi_calc_clock_rates(dssdev, &cinfo);
3321         if (r) {
3322                 DSSERR("Failed to calc dsi clocks\n");
3323                 return r;
3324         }
3325
3326         r = dsi_pll_set_clock_div(&cinfo);
3327         if (r) {
3328                 DSSERR("Failed to set dsi clocks\n");
3329                 return r;
3330         }
3331
3332         return 0;
3333 }
3334
3335 static int dsi_configure_dispc_clocks(struct omap_dss_device *dssdev)
3336 {
3337         struct dispc_clock_info dispc_cinfo;
3338         int r;
3339         unsigned long long fck;
3340
3341         fck = dsi_get_pll_hsdiv_dispc_rate();
3342
3343         dispc_cinfo.lck_div = dssdev->phy.dsi.div.lck_div;
3344         dispc_cinfo.pck_div = dssdev->phy.dsi.div.pck_div;
3345
3346         r = dispc_calc_clock_rates(fck, &dispc_cinfo);
3347         if (r) {
3348                 DSSERR("Failed to calc dispc clocks\n");
3349                 return r;
3350         }
3351
3352         r = dispc_set_clock_div(dssdev->manager->id, &dispc_cinfo);
3353         if (r) {
3354                 DSSERR("Failed to set dispc clocks\n");
3355                 return r;
3356         }
3357
3358         return 0;
3359 }
3360
3361 static int dsi_display_init_dsi(struct omap_dss_device *dssdev)
3362 {
3363         int r;
3364
3365         _dsi_print_reset_status();
3366
3367         r = dsi_pll_init(dssdev, true, true);
3368         if (r)
3369                 goto err0;
3370
3371         r = dsi_configure_dsi_clocks(dssdev);
3372         if (r)
3373                 goto err1;
3374
3375         dss_select_dispc_clk_source(DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC);
3376         dss_select_dsi_clk_source(DSS_CLK_SRC_DSI_PLL_HSDIV_DSI);
3377
3378         DSSDBG("PLL OK\n");
3379
3380         r = dsi_configure_dispc_clocks(dssdev);
3381         if (r)
3382                 goto err2;
3383
3384         r = dsi_complexio_init(dssdev);
3385         if (r)
3386                 goto err2;
3387
3388         _dsi_print_reset_status();
3389
3390         dsi_proto_timings(dssdev);
3391         dsi_set_lp_clk_divisor(dssdev);
3392
3393         if (1)
3394                 _dsi_print_reset_status();
3395
3396         r = dsi_proto_config(dssdev);
3397         if (r)
3398                 goto err3;
3399
3400         /* enable interface */
3401         dsi_vc_enable(0, 1);
3402         dsi_vc_enable(1, 1);
3403         dsi_vc_enable(2, 1);
3404         dsi_vc_enable(3, 1);
3405         dsi_if_enable(1);
3406         dsi_force_tx_stop_mode_io();
3407
3408         return 0;
3409 err3:
3410         dsi_complexio_uninit();
3411 err2:
3412         dss_select_dispc_clk_source(DSS_CLK_SRC_FCK);
3413         dss_select_dsi_clk_source(DSS_CLK_SRC_FCK);
3414 err1:
3415         dsi_pll_uninit();
3416 err0:
3417         return r;
3418 }
3419
3420 static void dsi_display_uninit_dsi(struct omap_dss_device *dssdev)
3421 {
3422         /* disable interface */
3423         dsi_if_enable(0);
3424         dsi_vc_enable(0, 0);
3425         dsi_vc_enable(1, 0);
3426         dsi_vc_enable(2, 0);
3427         dsi_vc_enable(3, 0);
3428
3429         dss_select_dispc_clk_source(DSS_CLK_SRC_FCK);
3430         dss_select_dsi_clk_source(DSS_CLK_SRC_FCK);
3431         dsi_complexio_uninit();
3432         dsi_pll_uninit();
3433 }
3434
3435 static int dsi_core_init(void)
3436 {
3437         /* Autoidle */
3438         REG_FLD_MOD(DSI_SYSCONFIG, 1, 0, 0);
3439
3440         /* ENWAKEUP */
3441         REG_FLD_MOD(DSI_SYSCONFIG, 1, 2, 2);
3442
3443         /* SIDLEMODE smart-idle */
3444         REG_FLD_MOD(DSI_SYSCONFIG, 2, 4, 3);
3445
3446         _dsi_initialize_irq();
3447
3448         return 0;
3449 }
3450
3451 int omapdss_dsi_display_enable(struct omap_dss_device *dssdev)
3452 {
3453         int r = 0;
3454
3455         DSSDBG("dsi_display_enable\n");
3456
3457         WARN_ON(!dsi_bus_is_locked());
3458
3459         mutex_lock(&dsi.lock);
3460
3461         r = omap_dss_start_device(dssdev);
3462         if (r) {
3463                 DSSERR("failed to start device\n");
3464                 goto err0;
3465         }
3466
3467         enable_clocks(1);
3468         dsi_enable_pll_clock(1);
3469
3470         r = _dsi_reset();
3471         if (r)
3472                 goto err1;
3473
3474         dsi_core_init();
3475
3476         r = dsi_display_init_dispc(dssdev);
3477         if (r)
3478                 goto err1;
3479
3480         r = dsi_display_init_dsi(dssdev);
3481         if (r)
3482                 goto err2;
3483
3484         mutex_unlock(&dsi.lock);
3485
3486         return 0;
3487
3488 err2:
3489         dsi_display_uninit_dispc(dssdev);
3490 err1:
3491         enable_clocks(0);
3492         dsi_enable_pll_clock(0);
3493         omap_dss_stop_device(dssdev);
3494 err0:
3495         mutex_unlock(&dsi.lock);
3496         DSSDBG("dsi_display_enable FAILED\n");
3497         return r;
3498 }
3499 EXPORT_SYMBOL(omapdss_dsi_display_enable);
3500
3501 void omapdss_dsi_display_disable(struct omap_dss_device *dssdev)
3502 {
3503         DSSDBG("dsi_display_disable\n");
3504
3505         WARN_ON(!dsi_bus_is_locked());
3506
3507         mutex_lock(&dsi.lock);
3508
3509         dsi_display_uninit_dispc(dssdev);
3510
3511         dsi_display_uninit_dsi(dssdev);
3512
3513         enable_clocks(0);
3514         dsi_enable_pll_clock(0);
3515
3516         omap_dss_stop_device(dssdev);
3517
3518         mutex_unlock(&dsi.lock);
3519 }
3520 EXPORT_SYMBOL(omapdss_dsi_display_disable);
3521
3522 int omapdss_dsi_enable_te(struct omap_dss_device *dssdev, bool enable)
3523 {
3524         dsi.te_enabled = enable;
3525         return 0;
3526 }
3527 EXPORT_SYMBOL(omapdss_dsi_enable_te);
3528
3529 void dsi_get_overlay_fifo_thresholds(enum omap_plane plane,
3530                 u32 fifo_size, enum omap_burst_size *burst_size,
3531                 u32 *fifo_low, u32 *fifo_high)
3532 {
3533         unsigned burst_size_bytes;
3534
3535         *burst_size = OMAP_DSS_BURST_16x32;
3536         burst_size_bytes = 16 * 32 / 8;
3537
3538         *fifo_high = fifo_size - burst_size_bytes;
3539         *fifo_low = fifo_size - burst_size_bytes * 2;
3540 }
3541
3542 int dsi_init_display(struct omap_dss_device *dssdev)
3543 {
3544         DSSDBG("DSI init\n");
3545
3546         /* XXX these should be figured out dynamically */
3547         dssdev->caps = OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE |
3548                 OMAP_DSS_DISPLAY_CAP_TEAR_ELIM;
3549
3550         if (dsi.vdds_dsi_reg == NULL) {
3551                 struct regulator *vdds_dsi;
3552
3553                 vdds_dsi = regulator_get(&dsi.pdev->dev, "vdds_dsi");
3554
3555                 if (IS_ERR(vdds_dsi)) {
3556                         DSSERR("can't get VDDS_DSI regulator\n");
3557                         return PTR_ERR(vdds_dsi);
3558                 }
3559
3560                 dsi.vdds_dsi_reg = vdds_dsi;
3561         }
3562
3563         return 0;
3564 }
3565
3566 int omap_dsi_request_vc(struct omap_dss_device *dssdev, int *channel)
3567 {
3568         int i;
3569
3570         for (i = 0; i < ARRAY_SIZE(dsi.vc); i++) {
3571                 if (!dsi.vc[i].dssdev) {
3572                         dsi.vc[i].dssdev = dssdev;
3573                         *channel = i;
3574                         return 0;
3575                 }
3576         }
3577
3578         DSSERR("cannot get VC for display %s", dssdev->name);
3579         return -ENOSPC;
3580 }
3581 EXPORT_SYMBOL(omap_dsi_request_vc);
3582
3583 int omap_dsi_set_vc_id(struct omap_dss_device *dssdev, int channel, int vc_id)
3584 {
3585         if (vc_id < 0 || vc_id > 3) {
3586                 DSSERR("VC ID out of range\n");
3587                 return -EINVAL;
3588         }
3589
3590         if (channel < 0 || channel > 3) {
3591                 DSSERR("Virtual Channel out of range\n");
3592                 return -EINVAL;
3593         }
3594
3595         if (dsi.vc[channel].dssdev != dssdev) {
3596                 DSSERR("Virtual Channel not allocated to display %s\n",
3597                         dssdev->name);
3598                 return -EINVAL;
3599         }
3600
3601         dsi.vc[channel].vc_id = vc_id;
3602
3603         return 0;
3604 }
3605 EXPORT_SYMBOL(omap_dsi_set_vc_id);
3606
3607 void omap_dsi_release_vc(struct omap_dss_device *dssdev, int channel)
3608 {
3609         if ((channel >= 0 && channel <= 3) &&
3610                 dsi.vc[channel].dssdev == dssdev) {
3611                 dsi.vc[channel].dssdev = NULL;
3612                 dsi.vc[channel].vc_id = 0;
3613         }
3614 }
3615 EXPORT_SYMBOL(omap_dsi_release_vc);
3616
3617 void dsi_wait_pll_hsdiv_dispc_active(void)
3618 {
3619         if (wait_for_bit_change(DSI_PLL_STATUS, 7, 1) != 1)
3620                 DSSERR("%s (%s) not active\n",
3621                         dss_get_generic_clk_source_name(DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC),
3622                         dss_feat_get_clk_source_name(DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC));
3623 }
3624
3625 void dsi_wait_pll_hsdiv_dsi_active(void)
3626 {
3627         if (wait_for_bit_change(DSI_PLL_STATUS, 8, 1) != 1)
3628                 DSSERR("%s (%s) not active\n",
3629                         dss_get_generic_clk_source_name(DSS_CLK_SRC_DSI_PLL_HSDIV_DSI),
3630                         dss_feat_get_clk_source_name(DSS_CLK_SRC_DSI_PLL_HSDIV_DSI));
3631 }
3632
3633 static void dsi_calc_clock_param_ranges(void)
3634 {
3635         dsi.regn_max = dss_feat_get_param_max(FEAT_PARAM_DSIPLL_REGN);
3636         dsi.regm_max = dss_feat_get_param_max(FEAT_PARAM_DSIPLL_REGM);
3637         dsi.regm_dispc_max = dss_feat_get_param_max(FEAT_PARAM_DSIPLL_REGM_DISPC);
3638         dsi.regm_dsi_max = dss_feat_get_param_max(FEAT_PARAM_DSIPLL_REGM_DSI);
3639         dsi.fint_min = dss_feat_get_param_min(FEAT_PARAM_DSIPLL_FINT);
3640         dsi.fint_max = dss_feat_get_param_max(FEAT_PARAM_DSIPLL_FINT);
3641         dsi.lpdiv_max = dss_feat_get_param_max(FEAT_PARAM_DSIPLL_LPDIV);
3642 }
3643
3644 static int dsi_init(struct platform_device *pdev)
3645 {
3646         u32 rev;
3647         int r, i;
3648         struct resource *dsi_mem;
3649
3650         spin_lock_init(&dsi.irq_lock);
3651         spin_lock_init(&dsi.errors_lock);
3652         dsi.errors = 0;
3653
3654 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
3655         spin_lock_init(&dsi.irq_stats_lock);
3656         dsi.irq_stats.last_reset = jiffies;
3657 #endif
3658
3659         mutex_init(&dsi.lock);
3660         sema_init(&dsi.bus_lock, 1);
3661
3662         dsi.workqueue = create_singlethread_workqueue("dsi");
3663         if (dsi.workqueue == NULL)
3664                 return -ENOMEM;
3665
3666         INIT_DELAYED_WORK_DEFERRABLE(&dsi.framedone_timeout_work,
3667                         dsi_framedone_timeout_work_callback);
3668
3669 #ifdef DSI_CATCH_MISSING_TE
3670         init_timer(&dsi.te_timer);
3671         dsi.te_timer.function = dsi_te_timeout;
3672         dsi.te_timer.data = 0;
3673 #endif
3674         dsi_mem = platform_get_resource(dsi.pdev, IORESOURCE_MEM, 0);
3675         if (!dsi_mem) {
3676                 DSSERR("can't get IORESOURCE_MEM DSI\n");
3677                 r = -EINVAL;
3678                 goto err1;
3679         }
3680         dsi.base = ioremap(dsi_mem->start, resource_size(dsi_mem));
3681         if (!dsi.base) {
3682                 DSSERR("can't ioremap DSI\n");
3683                 r = -ENOMEM;
3684                 goto err1;
3685         }
3686         dsi.irq = platform_get_irq(dsi.pdev, 0);
3687         if (dsi.irq < 0) {
3688                 DSSERR("platform_get_irq failed\n");
3689                 r = -ENODEV;
3690                 goto err2;
3691         }
3692
3693         r = request_irq(dsi.irq, omap_dsi_irq_handler, IRQF_SHARED,
3694                 "OMAP DSI1", dsi.pdev);
3695         if (r < 0) {
3696                 DSSERR("request_irq failed\n");
3697                 goto err2;
3698         }
3699
3700         /* DSI VCs initialization */
3701         for (i = 0; i < ARRAY_SIZE(dsi.vc); i++) {
3702                 dsi.vc[i].mode = DSI_VC_MODE_L4;
3703                 dsi.vc[i].dssdev = NULL;
3704                 dsi.vc[i].vc_id = 0;
3705         }
3706
3707         dsi_calc_clock_param_ranges();
3708
3709         enable_clocks(1);
3710
3711         rev = dsi_read_reg(DSI_REVISION);
3712         dev_dbg(&pdev->dev, "OMAP DSI rev %d.%d\n",
3713                FLD_GET(rev, 7, 4), FLD_GET(rev, 3, 0));
3714
3715         enable_clocks(0);
3716
3717         return 0;
3718 err2:
3719         iounmap(dsi.base);
3720 err1:
3721         destroy_workqueue(dsi.workqueue);
3722         return r;
3723 }
3724
3725 static void dsi_exit(void)
3726 {
3727         if (dsi.vdds_dsi_reg != NULL) {
3728                 regulator_put(dsi.vdds_dsi_reg);
3729                 dsi.vdds_dsi_reg = NULL;
3730         }
3731
3732         free_irq(dsi.irq, dsi.pdev);
3733         iounmap(dsi.base);
3734
3735         destroy_workqueue(dsi.workqueue);
3736
3737         DSSDBG("omap_dsi_exit\n");
3738 }
3739
3740 /* DSI1 HW IP initialisation */
3741 static int omap_dsi1hw_probe(struct platform_device *pdev)
3742 {
3743         int r;
3744         dsi.pdev = pdev;
3745         r = dsi_init(pdev);
3746         if (r) {
3747                 DSSERR("Failed to initialize DSI\n");
3748                 goto err_dsi;
3749         }
3750 err_dsi:
3751         return r;
3752 }
3753
3754 static int omap_dsi1hw_remove(struct platform_device *pdev)
3755 {
3756         dsi_exit();
3757         return 0;
3758 }
3759
3760 static struct platform_driver omap_dsi1hw_driver = {
3761         .probe          = omap_dsi1hw_probe,
3762         .remove         = omap_dsi1hw_remove,
3763         .driver         = {
3764                 .name   = "omapdss_dsi1",
3765                 .owner  = THIS_MODULE,
3766         },
3767 };
3768
3769 int dsi_init_platform_driver(void)
3770 {
3771         return platform_driver_register(&omap_dsi1hw_driver);
3772 }
3773
3774 void dsi_uninit_platform_driver(void)
3775 {
3776         return platform_driver_unregister(&omap_dsi1hw_driver);
3777 }