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