1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2009 Nokia Corporation
4 * Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
7 #define DSS_SUBSYS_NAME "DSI"
9 #include <linux/kernel.h>
10 #include <linux/mfd/syscon.h>
11 #include <linux/regmap.h>
13 #include <linux/clk.h>
14 #include <linux/device.h>
15 #include <linux/err.h>
16 #include <linux/interrupt.h>
17 #include <linux/irq.h>
18 #include <linux/delay.h>
19 #include <linux/gpio/consumer.h>
20 #include <linux/mutex.h>
21 #include <linux/module.h>
22 #include <linux/semaphore.h>
23 #include <linux/seq_file.h>
24 #include <linux/platform_device.h>
25 #include <linux/regulator/consumer.h>
26 #include <linux/wait.h>
27 #include <linux/workqueue.h>
28 #include <linux/sched.h>
29 #include <linux/slab.h>
30 #include <linux/debugfs.h>
31 #include <linux/pm_runtime.h>
33 #include <linux/of_graph.h>
34 #include <linux/of_platform.h>
35 #include <linux/component.h>
36 #include <linux/sys_soc.h>
38 #include <drm/drm_bridge.h>
39 #include <drm/drm_mipi_dsi.h>
40 #include <drm/drm_panel.h>
41 #include <video/mipi_display.h>
46 #define DSI_CATCH_MISSING_TE
50 #define REG_GET(dsi, idx, start, end) \
51 FLD_GET(dsi_read_reg(dsi, idx), start, end)
53 #define REG_FLD_MOD(dsi, idx, val, start, end) \
54 dsi_write_reg(dsi, idx, FLD_MOD(dsi_read_reg(dsi, idx), val, start, end))
56 static int dsi_init_dispc(struct dsi_data
*dsi
);
57 static void dsi_uninit_dispc(struct dsi_data
*dsi
);
59 static int dsi_vc_send_null(struct dsi_data
*dsi
, int vc
, int channel
);
61 static ssize_t
_omap_dsi_host_transfer(struct dsi_data
*dsi
, int vc
,
62 const struct mipi_dsi_msg
*msg
);
64 #ifdef DSI_PERF_MEASURE
66 module_param(dsi_perf
, bool, 0644);
69 /* Note: for some reason video mode seems to work only if VC_VIDEO is 0 */
73 #define drm_bridge_to_dsi(bridge) \
74 container_of(bridge, struct dsi_data, bridge)
76 static inline struct dsi_data
*to_dsi_data(struct omap_dss_device
*dssdev
)
78 return dev_get_drvdata(dssdev
->dev
);
81 static inline struct dsi_data
*host_to_omap(struct mipi_dsi_host
*host
)
83 return container_of(host
, struct dsi_data
, host
);
86 static inline void dsi_write_reg(struct dsi_data
*dsi
,
87 const struct dsi_reg idx
, u32 val
)
92 case DSI_PROTO
: base
= dsi
->proto_base
; break;
93 case DSI_PHY
: base
= dsi
->phy_base
; break;
94 case DSI_PLL
: base
= dsi
->pll_base
; break;
98 __raw_writel(val
, base
+ idx
.idx
);
101 static inline u32
dsi_read_reg(struct dsi_data
*dsi
, const struct dsi_reg idx
)
106 case DSI_PROTO
: base
= dsi
->proto_base
; break;
107 case DSI_PHY
: base
= dsi
->phy_base
; break;
108 case DSI_PLL
: base
= dsi
->pll_base
; break;
112 return __raw_readl(base
+ idx
.idx
);
115 static void dsi_bus_lock(struct dsi_data
*dsi
)
117 down(&dsi
->bus_lock
);
120 static void dsi_bus_unlock(struct dsi_data
*dsi
)
125 static bool dsi_bus_is_locked(struct dsi_data
*dsi
)
127 return dsi
->bus_lock
.count
== 0;
130 static void dsi_completion_handler(void *data
, u32 mask
)
132 complete((struct completion
*)data
);
135 static inline bool wait_for_bit_change(struct dsi_data
*dsi
,
136 const struct dsi_reg idx
,
137 int bitnum
, int value
)
139 unsigned long timeout
;
143 /* first busyloop to see if the bit changes right away */
146 if (REG_GET(dsi
, idx
, bitnum
, bitnum
) == value
)
150 /* then loop for 500ms, sleeping for 1ms in between */
151 timeout
= jiffies
+ msecs_to_jiffies(500);
152 while (time_before(jiffies
, timeout
)) {
153 if (REG_GET(dsi
, idx
, bitnum
, bitnum
) == value
)
156 wait
= ns_to_ktime(1000 * 1000);
157 set_current_state(TASK_UNINTERRUPTIBLE
);
158 schedule_hrtimeout(&wait
, HRTIMER_MODE_REL
);
164 #ifdef DSI_PERF_MEASURE
165 static void dsi_perf_mark_setup(struct dsi_data
*dsi
)
167 dsi
->perf_setup_time
= ktime_get();
170 static void dsi_perf_mark_start(struct dsi_data
*dsi
)
172 dsi
->perf_start_time
= ktime_get();
175 static void dsi_perf_show(struct dsi_data
*dsi
, const char *name
)
177 ktime_t t
, setup_time
, trans_time
;
179 u32 setup_us
, trans_us
, total_us
;
186 setup_time
= ktime_sub(dsi
->perf_start_time
, dsi
->perf_setup_time
);
187 setup_us
= (u32
)ktime_to_us(setup_time
);
191 trans_time
= ktime_sub(t
, dsi
->perf_start_time
);
192 trans_us
= (u32
)ktime_to_us(trans_time
);
196 total_us
= setup_us
+ trans_us
;
198 total_bytes
= dsi
->update_bytes
;
200 pr_info("DSI(%s): %u us + %u us = %u us (%uHz), %u bytes, %u kbytes/sec\n",
205 1000 * 1000 / total_us
,
207 total_bytes
* 1000 / total_us
);
210 static inline void dsi_perf_mark_setup(struct dsi_data
*dsi
)
214 static inline void dsi_perf_mark_start(struct dsi_data
*dsi
)
218 static inline void dsi_perf_show(struct dsi_data
*dsi
, const char *name
)
223 static int verbose_irq
;
225 static void print_irq_status(u32 status
)
230 if (!verbose_irq
&& (status
& ~DSI_IRQ_CHANNEL_MASK
) == 0)
233 #define PIS(x) (status & DSI_IRQ_##x) ? (#x " ") : ""
235 pr_debug("DSI IRQ: 0x%x: %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
237 verbose_irq
? PIS(VC0
) : "",
238 verbose_irq
? PIS(VC1
) : "",
239 verbose_irq
? PIS(VC2
) : "",
240 verbose_irq
? PIS(VC3
) : "",
257 static void print_irq_status_vc(int vc
, u32 status
)
262 if (!verbose_irq
&& (status
& ~DSI_VC_IRQ_PACKET_SENT
) == 0)
265 #define PIS(x) (status & DSI_VC_IRQ_##x) ? (#x " ") : ""
267 pr_debug("DSI VC(%d) IRQ 0x%x: %s%s%s%s%s%s%s%s%s\n",
273 verbose_irq
? PIS(PACKET_SENT
) : "",
278 PIS(PP_BUSY_CHANGE
));
282 static void print_irq_status_cio(u32 status
)
287 #define PIS(x) (status & DSI_CIO_IRQ_##x) ? (#x " ") : ""
289 pr_debug("DSI CIO IRQ 0x%x: %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
303 PIS(ERRCONTENTIONLP0_1
),
304 PIS(ERRCONTENTIONLP1_1
),
305 PIS(ERRCONTENTIONLP0_2
),
306 PIS(ERRCONTENTIONLP1_2
),
307 PIS(ERRCONTENTIONLP0_3
),
308 PIS(ERRCONTENTIONLP1_3
),
309 PIS(ULPSACTIVENOT_ALL0
),
310 PIS(ULPSACTIVENOT_ALL1
));
314 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
315 static void dsi_collect_irq_stats(struct dsi_data
*dsi
, u32 irqstatus
,
316 u32
*vcstatus
, u32 ciostatus
)
320 spin_lock(&dsi
->irq_stats_lock
);
322 dsi
->irq_stats
.irq_count
++;
323 dss_collect_irq_stats(irqstatus
, dsi
->irq_stats
.dsi_irqs
);
325 for (i
= 0; i
< 4; ++i
)
326 dss_collect_irq_stats(vcstatus
[i
], dsi
->irq_stats
.vc_irqs
[i
]);
328 dss_collect_irq_stats(ciostatus
, dsi
->irq_stats
.cio_irqs
);
330 spin_unlock(&dsi
->irq_stats_lock
);
333 #define dsi_collect_irq_stats(dsi, irqstatus, vcstatus, ciostatus)
336 static int debug_irq
;
338 static void dsi_handle_irq_errors(struct dsi_data
*dsi
, u32 irqstatus
,
339 u32
*vcstatus
, u32 ciostatus
)
343 if (irqstatus
& DSI_IRQ_ERROR_MASK
) {
344 DSSERR("DSI error, irqstatus %x\n", irqstatus
);
345 print_irq_status(irqstatus
);
346 spin_lock(&dsi
->errors_lock
);
347 dsi
->errors
|= irqstatus
& DSI_IRQ_ERROR_MASK
;
348 spin_unlock(&dsi
->errors_lock
);
349 } else if (debug_irq
) {
350 print_irq_status(irqstatus
);
353 for (i
= 0; i
< 4; ++i
) {
354 if (vcstatus
[i
] & DSI_VC_IRQ_ERROR_MASK
) {
355 DSSERR("DSI VC(%d) error, vc irqstatus %x\n",
357 print_irq_status_vc(i
, vcstatus
[i
]);
358 } else if (debug_irq
) {
359 print_irq_status_vc(i
, vcstatus
[i
]);
363 if (ciostatus
& DSI_CIO_IRQ_ERROR_MASK
) {
364 DSSERR("DSI CIO error, cio irqstatus %x\n", ciostatus
);
365 print_irq_status_cio(ciostatus
);
366 } else if (debug_irq
) {
367 print_irq_status_cio(ciostatus
);
371 static void dsi_call_isrs(struct dsi_isr_data
*isr_array
,
372 unsigned int isr_array_size
, u32 irqstatus
)
374 struct dsi_isr_data
*isr_data
;
377 for (i
= 0; i
< isr_array_size
; i
++) {
378 isr_data
= &isr_array
[i
];
379 if (isr_data
->isr
&& isr_data
->mask
& irqstatus
)
380 isr_data
->isr(isr_data
->arg
, irqstatus
);
384 static void dsi_handle_isrs(struct dsi_isr_tables
*isr_tables
,
385 u32 irqstatus
, u32
*vcstatus
, u32 ciostatus
)
389 dsi_call_isrs(isr_tables
->isr_table
,
390 ARRAY_SIZE(isr_tables
->isr_table
),
393 for (i
= 0; i
< 4; ++i
) {
394 if (vcstatus
[i
] == 0)
396 dsi_call_isrs(isr_tables
->isr_table_vc
[i
],
397 ARRAY_SIZE(isr_tables
->isr_table_vc
[i
]),
402 dsi_call_isrs(isr_tables
->isr_table_cio
,
403 ARRAY_SIZE(isr_tables
->isr_table_cio
),
407 static irqreturn_t
omap_dsi_irq_handler(int irq
, void *arg
)
409 struct dsi_data
*dsi
= arg
;
410 u32 irqstatus
, vcstatus
[4], ciostatus
;
413 if (!dsi
->is_enabled
)
416 spin_lock(&dsi
->irq_lock
);
418 irqstatus
= dsi_read_reg(dsi
, DSI_IRQSTATUS
);
420 /* IRQ is not for us */
422 spin_unlock(&dsi
->irq_lock
);
426 dsi_write_reg(dsi
, DSI_IRQSTATUS
, irqstatus
& ~DSI_IRQ_CHANNEL_MASK
);
427 /* flush posted write */
428 dsi_read_reg(dsi
, DSI_IRQSTATUS
);
430 for (i
= 0; i
< 4; ++i
) {
431 if ((irqstatus
& (1 << i
)) == 0) {
436 vcstatus
[i
] = dsi_read_reg(dsi
, DSI_VC_IRQSTATUS(i
));
438 dsi_write_reg(dsi
, DSI_VC_IRQSTATUS(i
), vcstatus
[i
]);
439 /* flush posted write */
440 dsi_read_reg(dsi
, DSI_VC_IRQSTATUS(i
));
443 if (irqstatus
& DSI_IRQ_COMPLEXIO_ERR
) {
444 ciostatus
= dsi_read_reg(dsi
, DSI_COMPLEXIO_IRQ_STATUS
);
446 dsi_write_reg(dsi
, DSI_COMPLEXIO_IRQ_STATUS
, ciostatus
);
447 /* flush posted write */
448 dsi_read_reg(dsi
, DSI_COMPLEXIO_IRQ_STATUS
);
453 #ifdef DSI_CATCH_MISSING_TE
454 if (irqstatus
& DSI_IRQ_TE_TRIGGER
)
455 del_timer(&dsi
->te_timer
);
458 /* make a copy and unlock, so that isrs can unregister
460 memcpy(&dsi
->isr_tables_copy
, &dsi
->isr_tables
,
461 sizeof(dsi
->isr_tables
));
463 spin_unlock(&dsi
->irq_lock
);
465 dsi_handle_isrs(&dsi
->isr_tables_copy
, irqstatus
, vcstatus
, ciostatus
);
467 dsi_handle_irq_errors(dsi
, irqstatus
, vcstatus
, ciostatus
);
469 dsi_collect_irq_stats(dsi
, irqstatus
, vcstatus
, ciostatus
);
474 /* dsi->irq_lock has to be locked by the caller */
475 static void _omap_dsi_configure_irqs(struct dsi_data
*dsi
,
476 struct dsi_isr_data
*isr_array
,
477 unsigned int isr_array_size
,
479 const struct dsi_reg enable_reg
,
480 const struct dsi_reg status_reg
)
482 struct dsi_isr_data
*isr_data
;
489 for (i
= 0; i
< isr_array_size
; i
++) {
490 isr_data
= &isr_array
[i
];
492 if (isr_data
->isr
== NULL
)
495 mask
|= isr_data
->mask
;
498 old_mask
= dsi_read_reg(dsi
, enable_reg
);
499 /* clear the irqstatus for newly enabled irqs */
500 dsi_write_reg(dsi
, status_reg
, (mask
^ old_mask
) & mask
);
501 dsi_write_reg(dsi
, enable_reg
, mask
);
503 /* flush posted writes */
504 dsi_read_reg(dsi
, enable_reg
);
505 dsi_read_reg(dsi
, status_reg
);
508 /* dsi->irq_lock has to be locked by the caller */
509 static void _omap_dsi_set_irqs(struct dsi_data
*dsi
)
511 u32 mask
= DSI_IRQ_ERROR_MASK
;
512 #ifdef DSI_CATCH_MISSING_TE
513 mask
|= DSI_IRQ_TE_TRIGGER
;
515 _omap_dsi_configure_irqs(dsi
, dsi
->isr_tables
.isr_table
,
516 ARRAY_SIZE(dsi
->isr_tables
.isr_table
), mask
,
517 DSI_IRQENABLE
, DSI_IRQSTATUS
);
520 /* dsi->irq_lock has to be locked by the caller */
521 static void _omap_dsi_set_irqs_vc(struct dsi_data
*dsi
, int vc
)
523 _omap_dsi_configure_irqs(dsi
, dsi
->isr_tables
.isr_table_vc
[vc
],
524 ARRAY_SIZE(dsi
->isr_tables
.isr_table_vc
[vc
]),
525 DSI_VC_IRQ_ERROR_MASK
,
526 DSI_VC_IRQENABLE(vc
), DSI_VC_IRQSTATUS(vc
));
529 /* dsi->irq_lock has to be locked by the caller */
530 static void _omap_dsi_set_irqs_cio(struct dsi_data
*dsi
)
532 _omap_dsi_configure_irqs(dsi
, dsi
->isr_tables
.isr_table_cio
,
533 ARRAY_SIZE(dsi
->isr_tables
.isr_table_cio
),
534 DSI_CIO_IRQ_ERROR_MASK
,
535 DSI_COMPLEXIO_IRQ_ENABLE
, DSI_COMPLEXIO_IRQ_STATUS
);
538 static void _dsi_initialize_irq(struct dsi_data
*dsi
)
543 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
545 memset(&dsi
->isr_tables
, 0, sizeof(dsi
->isr_tables
));
547 _omap_dsi_set_irqs(dsi
);
548 for (vc
= 0; vc
< 4; ++vc
)
549 _omap_dsi_set_irqs_vc(dsi
, vc
);
550 _omap_dsi_set_irqs_cio(dsi
);
552 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
555 static int _dsi_register_isr(omap_dsi_isr_t isr
, void *arg
, u32 mask
,
556 struct dsi_isr_data
*isr_array
, unsigned int isr_array_size
)
558 struct dsi_isr_data
*isr_data
;
564 /* check for duplicate entry and find a free slot */
566 for (i
= 0; i
< isr_array_size
; i
++) {
567 isr_data
= &isr_array
[i
];
569 if (isr_data
->isr
== isr
&& isr_data
->arg
== arg
&&
570 isr_data
->mask
== mask
) {
574 if (isr_data
->isr
== NULL
&& free_idx
== -1)
581 isr_data
= &isr_array
[free_idx
];
584 isr_data
->mask
= mask
;
589 static int _dsi_unregister_isr(omap_dsi_isr_t isr
, void *arg
, u32 mask
,
590 struct dsi_isr_data
*isr_array
, unsigned int isr_array_size
)
592 struct dsi_isr_data
*isr_data
;
595 for (i
= 0; i
< isr_array_size
; i
++) {
596 isr_data
= &isr_array
[i
];
597 if (isr_data
->isr
!= isr
|| isr_data
->arg
!= arg
||
598 isr_data
->mask
!= mask
)
601 isr_data
->isr
= NULL
;
602 isr_data
->arg
= NULL
;
611 static int dsi_register_isr(struct dsi_data
*dsi
, omap_dsi_isr_t isr
,
617 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
619 r
= _dsi_register_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table
,
620 ARRAY_SIZE(dsi
->isr_tables
.isr_table
));
623 _omap_dsi_set_irqs(dsi
);
625 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
630 static int dsi_unregister_isr(struct dsi_data
*dsi
, omap_dsi_isr_t isr
,
636 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
638 r
= _dsi_unregister_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table
,
639 ARRAY_SIZE(dsi
->isr_tables
.isr_table
));
642 _omap_dsi_set_irqs(dsi
);
644 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
649 static int dsi_register_isr_vc(struct dsi_data
*dsi
, int vc
,
650 omap_dsi_isr_t isr
, void *arg
, u32 mask
)
655 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
657 r
= _dsi_register_isr(isr
, arg
, mask
,
658 dsi
->isr_tables
.isr_table_vc
[vc
],
659 ARRAY_SIZE(dsi
->isr_tables
.isr_table_vc
[vc
]));
662 _omap_dsi_set_irqs_vc(dsi
, vc
);
664 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
669 static int dsi_unregister_isr_vc(struct dsi_data
*dsi
, int vc
,
670 omap_dsi_isr_t isr
, void *arg
, u32 mask
)
675 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
677 r
= _dsi_unregister_isr(isr
, arg
, mask
,
678 dsi
->isr_tables
.isr_table_vc
[vc
],
679 ARRAY_SIZE(dsi
->isr_tables
.isr_table_vc
[vc
]));
682 _omap_dsi_set_irqs_vc(dsi
, vc
);
684 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
689 static u32
dsi_get_errors(struct dsi_data
*dsi
)
694 spin_lock_irqsave(&dsi
->errors_lock
, flags
);
697 spin_unlock_irqrestore(&dsi
->errors_lock
, flags
);
701 static int dsi_runtime_get(struct dsi_data
*dsi
)
705 DSSDBG("dsi_runtime_get\n");
707 r
= pm_runtime_get_sync(dsi
->dev
);
708 if (WARN_ON(r
< 0)) {
709 pm_runtime_put_noidle(dsi
->dev
);
715 static void dsi_runtime_put(struct dsi_data
*dsi
)
719 DSSDBG("dsi_runtime_put\n");
721 r
= pm_runtime_put_sync(dsi
->dev
);
722 WARN_ON(r
< 0 && r
!= -ENOSYS
);
725 static void _dsi_print_reset_status(struct dsi_data
*dsi
)
729 /* A dummy read using the SCP interface to any DSIPHY register is
730 * required after DSIPHY reset to complete the reset of the DSI complex
732 dsi_read_reg(dsi
, DSI_DSIPHY_CFG5
);
734 if (dsi
->data
->quirks
& DSI_QUIRK_REVERSE_TXCLKESC
) {
744 #define DSI_FLD_GET(fld, start, end)\
745 FLD_GET(dsi_read_reg(dsi, DSI_##fld), start, end)
747 pr_debug("DSI resets: PLL (%d) CIO (%d) PHY (%x%x%x, %d, %d, %d)\n",
748 DSI_FLD_GET(PLL_STATUS
, 0, 0),
749 DSI_FLD_GET(COMPLEXIO_CFG1
, 29, 29),
750 DSI_FLD_GET(DSIPHY_CFG5
, b0
, b0
),
751 DSI_FLD_GET(DSIPHY_CFG5
, b1
, b1
),
752 DSI_FLD_GET(DSIPHY_CFG5
, b2
, b2
),
753 DSI_FLD_GET(DSIPHY_CFG5
, 29, 29),
754 DSI_FLD_GET(DSIPHY_CFG5
, 30, 30),
755 DSI_FLD_GET(DSIPHY_CFG5
, 31, 31));
760 static inline int dsi_if_enable(struct dsi_data
*dsi
, bool enable
)
762 DSSDBG("dsi_if_enable(%d)\n", enable
);
764 enable
= enable
? 1 : 0;
765 REG_FLD_MOD(dsi
, DSI_CTRL
, enable
, 0, 0); /* IF_EN */
767 if (!wait_for_bit_change(dsi
, DSI_CTRL
, 0, enable
)) {
768 DSSERR("Failed to set dsi_if_enable to %d\n", enable
);
775 static unsigned long dsi_get_pll_hsdiv_dispc_rate(struct dsi_data
*dsi
)
777 return dsi
->pll
.cinfo
.clkout
[HSDIV_DISPC
];
780 static unsigned long dsi_get_pll_hsdiv_dsi_rate(struct dsi_data
*dsi
)
782 return dsi
->pll
.cinfo
.clkout
[HSDIV_DSI
];
785 static unsigned long dsi_get_txbyteclkhs(struct dsi_data
*dsi
)
787 return dsi
->pll
.cinfo
.clkdco
/ 16;
790 static unsigned long dsi_fclk_rate(struct dsi_data
*dsi
)
793 enum dss_clk_source source
;
795 source
= dss_get_dsi_clk_source(dsi
->dss
, dsi
->module_id
);
796 if (source
== DSS_CLK_SRC_FCK
) {
797 /* DSI FCLK source is DSS_CLK_FCK */
798 r
= clk_get_rate(dsi
->dss_clk
);
800 /* DSI FCLK source is dsi_pll_hsdiv_dsi_clk */
801 r
= dsi_get_pll_hsdiv_dsi_rate(dsi
);
807 static int dsi_lp_clock_calc(unsigned long dsi_fclk
,
808 unsigned long lp_clk_min
, unsigned long lp_clk_max
,
809 struct dsi_lp_clock_info
*lp_cinfo
)
811 unsigned int lp_clk_div
;
812 unsigned long lp_clk
;
814 lp_clk_div
= DIV_ROUND_UP(dsi_fclk
, lp_clk_max
* 2);
815 lp_clk
= dsi_fclk
/ 2 / lp_clk_div
;
817 if (lp_clk
< lp_clk_min
|| lp_clk
> lp_clk_max
)
820 lp_cinfo
->lp_clk_div
= lp_clk_div
;
821 lp_cinfo
->lp_clk
= lp_clk
;
826 static int dsi_set_lp_clk_divisor(struct dsi_data
*dsi
)
828 unsigned long dsi_fclk
;
829 unsigned int lp_clk_div
;
830 unsigned long lp_clk
;
831 unsigned int lpdiv_max
= dsi
->data
->max_pll_lpdiv
;
834 lp_clk_div
= dsi
->user_lp_cinfo
.lp_clk_div
;
836 if (lp_clk_div
== 0 || lp_clk_div
> lpdiv_max
)
839 dsi_fclk
= dsi_fclk_rate(dsi
);
841 lp_clk
= dsi_fclk
/ 2 / lp_clk_div
;
843 DSSDBG("LP_CLK_DIV %u, LP_CLK %lu\n", lp_clk_div
, lp_clk
);
844 dsi
->current_lp_cinfo
.lp_clk
= lp_clk
;
845 dsi
->current_lp_cinfo
.lp_clk_div
= lp_clk_div
;
848 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, lp_clk_div
, 12, 0);
850 /* LP_RX_SYNCHRO_ENABLE */
851 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, dsi_fclk
> 30000000 ? 1 : 0, 21, 21);
856 static void dsi_enable_scp_clk(struct dsi_data
*dsi
)
858 if (dsi
->scp_clk_refcount
++ == 0)
859 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, 1, 14, 14); /* CIO_CLK_ICG */
862 static void dsi_disable_scp_clk(struct dsi_data
*dsi
)
864 WARN_ON(dsi
->scp_clk_refcount
== 0);
865 if (--dsi
->scp_clk_refcount
== 0)
866 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, 0, 14, 14); /* CIO_CLK_ICG */
869 enum dsi_pll_power_state
{
870 DSI_PLL_POWER_OFF
= 0x0,
871 DSI_PLL_POWER_ON_HSCLK
= 0x1,
872 DSI_PLL_POWER_ON_ALL
= 0x2,
873 DSI_PLL_POWER_ON_DIV
= 0x3,
876 static int dsi_pll_power(struct dsi_data
*dsi
, enum dsi_pll_power_state state
)
880 /* DSI-PLL power command 0x3 is not working */
881 if ((dsi
->data
->quirks
& DSI_QUIRK_PLL_PWR_BUG
) &&
882 state
== DSI_PLL_POWER_ON_DIV
)
883 state
= DSI_PLL_POWER_ON_ALL
;
886 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, state
, 31, 30);
889 while (FLD_GET(dsi_read_reg(dsi
, DSI_CLK_CTRL
), 29, 28) != state
) {
891 DSSERR("Failed to set DSI PLL power mode to %d\n",
902 static void dsi_pll_calc_dsi_fck(struct dsi_data
*dsi
,
903 struct dss_pll_clock_info
*cinfo
)
905 unsigned long max_dsi_fck
;
907 max_dsi_fck
= dsi
->data
->max_fck_freq
;
909 cinfo
->mX
[HSDIV_DSI
] = DIV_ROUND_UP(cinfo
->clkdco
, max_dsi_fck
);
910 cinfo
->clkout
[HSDIV_DSI
] = cinfo
->clkdco
/ cinfo
->mX
[HSDIV_DSI
];
913 static int dsi_pll_enable(struct dss_pll
*pll
)
915 struct dsi_data
*dsi
= container_of(pll
, struct dsi_data
, pll
);
918 DSSDBG("PLL init\n");
920 r
= dsi_runtime_get(dsi
);
925 * Note: SCP CLK is not required on OMAP3, but it is required on OMAP4.
927 dsi_enable_scp_clk(dsi
);
929 r
= regulator_enable(dsi
->vdds_dsi_reg
);
933 /* XXX PLL does not come out of reset without this... */
934 dispc_pck_free_enable(dsi
->dss
->dispc
, 1);
936 if (!wait_for_bit_change(dsi
, DSI_PLL_STATUS
, 0, 1)) {
937 DSSERR("PLL not coming out of reset.\n");
939 dispc_pck_free_enable(dsi
->dss
->dispc
, 0);
943 /* XXX ... but if left on, we get problems when planes do not
944 * fill the whole display. No idea about this */
945 dispc_pck_free_enable(dsi
->dss
->dispc
, 0);
947 r
= dsi_pll_power(dsi
, DSI_PLL_POWER_ON_ALL
);
952 DSSDBG("PLL init done\n");
956 regulator_disable(dsi
->vdds_dsi_reg
);
958 dsi_disable_scp_clk(dsi
);
959 dsi_runtime_put(dsi
);
963 static void dsi_pll_disable(struct dss_pll
*pll
)
965 struct dsi_data
*dsi
= container_of(pll
, struct dsi_data
, pll
);
967 dsi_pll_power(dsi
, DSI_PLL_POWER_OFF
);
969 regulator_disable(dsi
->vdds_dsi_reg
);
971 dsi_disable_scp_clk(dsi
);
972 dsi_runtime_put(dsi
);
974 DSSDBG("PLL disable done\n");
977 static int dsi_dump_dsi_clocks(struct seq_file
*s
, void *p
)
979 struct dsi_data
*dsi
= s
->private;
980 struct dss_pll_clock_info
*cinfo
= &dsi
->pll
.cinfo
;
981 enum dss_clk_source dispc_clk_src
, dsi_clk_src
;
982 int dsi_module
= dsi
->module_id
;
983 struct dss_pll
*pll
= &dsi
->pll
;
985 dispc_clk_src
= dss_get_dispc_clk_source(dsi
->dss
);
986 dsi_clk_src
= dss_get_dsi_clk_source(dsi
->dss
, dsi_module
);
988 if (dsi_runtime_get(dsi
))
991 seq_printf(s
, "- DSI%d PLL -\n", dsi_module
+ 1);
993 seq_printf(s
, "dsi pll clkin\t%lu\n", clk_get_rate(pll
->clkin
));
995 seq_printf(s
, "Fint\t\t%-16lun %u\n", cinfo
->fint
, cinfo
->n
);
997 seq_printf(s
, "CLKIN4DDR\t%-16lum %u\n",
998 cinfo
->clkdco
, cinfo
->m
);
1000 seq_printf(s
, "DSI_PLL_HSDIV_DISPC (%s)\t%-16lum_dispc %u\t(%s)\n",
1001 dss_get_clk_source_name(dsi_module
== 0 ?
1002 DSS_CLK_SRC_PLL1_1
:
1003 DSS_CLK_SRC_PLL2_1
),
1004 cinfo
->clkout
[HSDIV_DISPC
],
1005 cinfo
->mX
[HSDIV_DISPC
],
1006 dispc_clk_src
== DSS_CLK_SRC_FCK
?
1009 seq_printf(s
, "DSI_PLL_HSDIV_DSI (%s)\t%-16lum_dsi %u\t(%s)\n",
1010 dss_get_clk_source_name(dsi_module
== 0 ?
1011 DSS_CLK_SRC_PLL1_2
:
1012 DSS_CLK_SRC_PLL2_2
),
1013 cinfo
->clkout
[HSDIV_DSI
],
1014 cinfo
->mX
[HSDIV_DSI
],
1015 dsi_clk_src
== DSS_CLK_SRC_FCK
?
1018 seq_printf(s
, "- DSI%d -\n", dsi_module
+ 1);
1020 seq_printf(s
, "dsi fclk source = %s\n",
1021 dss_get_clk_source_name(dsi_clk_src
));
1023 seq_printf(s
, "DSI_FCLK\t%lu\n", dsi_fclk_rate(dsi
));
1025 seq_printf(s
, "DDR_CLK\t\t%lu\n",
1028 seq_printf(s
, "TxByteClkHS\t%lu\n", dsi_get_txbyteclkhs(dsi
));
1030 seq_printf(s
, "LP_CLK\t\t%lu\n", dsi
->current_lp_cinfo
.lp_clk
);
1032 dsi_runtime_put(dsi
);
1037 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
1038 static int dsi_dump_dsi_irqs(struct seq_file
*s
, void *p
)
1040 struct dsi_data
*dsi
= s
->private;
1041 unsigned long flags
;
1042 struct dsi_irq_stats
*stats
;
1044 stats
= kmalloc(sizeof(*stats
), GFP_KERNEL
);
1048 spin_lock_irqsave(&dsi
->irq_stats_lock
, flags
);
1050 *stats
= dsi
->irq_stats
;
1051 memset(&dsi
->irq_stats
, 0, sizeof(dsi
->irq_stats
));
1052 dsi
->irq_stats
.last_reset
= jiffies
;
1054 spin_unlock_irqrestore(&dsi
->irq_stats_lock
, flags
);
1056 seq_printf(s
, "period %u ms\n",
1057 jiffies_to_msecs(jiffies
- stats
->last_reset
));
1059 seq_printf(s
, "irqs %d\n", stats
->irq_count
);
1061 seq_printf(s, "%-20s %10d\n", #x, stats->dsi_irqs[ffs(DSI_IRQ_##x)-1]);
1063 seq_printf(s
, "-- DSI%d interrupts --\n", dsi
->module_id
+ 1);
1079 PIS(LDO_POWER_GOOD
);
1084 seq_printf(s, "%-20s %10d %10d %10d %10d\n", #x, \
1085 stats->vc_irqs[0][ffs(DSI_VC_IRQ_##x)-1], \
1086 stats->vc_irqs[1][ffs(DSI_VC_IRQ_##x)-1], \
1087 stats->vc_irqs[2][ffs(DSI_VC_IRQ_##x)-1], \
1088 stats->vc_irqs[3][ffs(DSI_VC_IRQ_##x)-1]);
1090 seq_printf(s
, "-- VC interrupts --\n");
1099 PIS(PP_BUSY_CHANGE
);
1103 seq_printf(s, "%-20s %10d\n", #x, \
1104 stats->cio_irqs[ffs(DSI_CIO_IRQ_##x)-1]);
1106 seq_printf(s
, "-- CIO interrupts --\n");
1119 PIS(ERRCONTENTIONLP0_1
);
1120 PIS(ERRCONTENTIONLP1_1
);
1121 PIS(ERRCONTENTIONLP0_2
);
1122 PIS(ERRCONTENTIONLP1_2
);
1123 PIS(ERRCONTENTIONLP0_3
);
1124 PIS(ERRCONTENTIONLP1_3
);
1125 PIS(ULPSACTIVENOT_ALL0
);
1126 PIS(ULPSACTIVENOT_ALL1
);
1135 static int dsi_dump_dsi_regs(struct seq_file
*s
, void *p
)
1137 struct dsi_data
*dsi
= s
->private;
1139 if (dsi_runtime_get(dsi
))
1141 dsi_enable_scp_clk(dsi
);
1143 #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, dsi_read_reg(dsi, r))
1144 DUMPREG(DSI_REVISION
);
1145 DUMPREG(DSI_SYSCONFIG
);
1146 DUMPREG(DSI_SYSSTATUS
);
1147 DUMPREG(DSI_IRQSTATUS
);
1148 DUMPREG(DSI_IRQENABLE
);
1150 DUMPREG(DSI_COMPLEXIO_CFG1
);
1151 DUMPREG(DSI_COMPLEXIO_IRQ_STATUS
);
1152 DUMPREG(DSI_COMPLEXIO_IRQ_ENABLE
);
1153 DUMPREG(DSI_CLK_CTRL
);
1154 DUMPREG(DSI_TIMING1
);
1155 DUMPREG(DSI_TIMING2
);
1156 DUMPREG(DSI_VM_TIMING1
);
1157 DUMPREG(DSI_VM_TIMING2
);
1158 DUMPREG(DSI_VM_TIMING3
);
1159 DUMPREG(DSI_CLK_TIMING
);
1160 DUMPREG(DSI_TX_FIFO_VC_SIZE
);
1161 DUMPREG(DSI_RX_FIFO_VC_SIZE
);
1162 DUMPREG(DSI_COMPLEXIO_CFG2
);
1163 DUMPREG(DSI_RX_FIFO_VC_FULLNESS
);
1164 DUMPREG(DSI_VM_TIMING4
);
1165 DUMPREG(DSI_TX_FIFO_VC_EMPTINESS
);
1166 DUMPREG(DSI_VM_TIMING5
);
1167 DUMPREG(DSI_VM_TIMING6
);
1168 DUMPREG(DSI_VM_TIMING7
);
1169 DUMPREG(DSI_STOPCLK_TIMING
);
1171 DUMPREG(DSI_VC_CTRL(0));
1172 DUMPREG(DSI_VC_TE(0));
1173 DUMPREG(DSI_VC_LONG_PACKET_HEADER(0));
1174 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(0));
1175 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(0));
1176 DUMPREG(DSI_VC_IRQSTATUS(0));
1177 DUMPREG(DSI_VC_IRQENABLE(0));
1179 DUMPREG(DSI_VC_CTRL(1));
1180 DUMPREG(DSI_VC_TE(1));
1181 DUMPREG(DSI_VC_LONG_PACKET_HEADER(1));
1182 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(1));
1183 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(1));
1184 DUMPREG(DSI_VC_IRQSTATUS(1));
1185 DUMPREG(DSI_VC_IRQENABLE(1));
1187 DUMPREG(DSI_VC_CTRL(2));
1188 DUMPREG(DSI_VC_TE(2));
1189 DUMPREG(DSI_VC_LONG_PACKET_HEADER(2));
1190 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(2));
1191 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(2));
1192 DUMPREG(DSI_VC_IRQSTATUS(2));
1193 DUMPREG(DSI_VC_IRQENABLE(2));
1195 DUMPREG(DSI_VC_CTRL(3));
1196 DUMPREG(DSI_VC_TE(3));
1197 DUMPREG(DSI_VC_LONG_PACKET_HEADER(3));
1198 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(3));
1199 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(3));
1200 DUMPREG(DSI_VC_IRQSTATUS(3));
1201 DUMPREG(DSI_VC_IRQENABLE(3));
1203 DUMPREG(DSI_DSIPHY_CFG0
);
1204 DUMPREG(DSI_DSIPHY_CFG1
);
1205 DUMPREG(DSI_DSIPHY_CFG2
);
1206 DUMPREG(DSI_DSIPHY_CFG5
);
1208 DUMPREG(DSI_PLL_CONTROL
);
1209 DUMPREG(DSI_PLL_STATUS
);
1210 DUMPREG(DSI_PLL_GO
);
1211 DUMPREG(DSI_PLL_CONFIGURATION1
);
1212 DUMPREG(DSI_PLL_CONFIGURATION2
);
1215 dsi_disable_scp_clk(dsi
);
1216 dsi_runtime_put(dsi
);
1221 enum dsi_cio_power_state
{
1222 DSI_COMPLEXIO_POWER_OFF
= 0x0,
1223 DSI_COMPLEXIO_POWER_ON
= 0x1,
1224 DSI_COMPLEXIO_POWER_ULPS
= 0x2,
1227 static int dsi_cio_power(struct dsi_data
*dsi
, enum dsi_cio_power_state state
)
1232 REG_FLD_MOD(dsi
, DSI_COMPLEXIO_CFG1
, state
, 28, 27);
1235 while (FLD_GET(dsi_read_reg(dsi
, DSI_COMPLEXIO_CFG1
),
1238 DSSERR("failed to set complexio power state to "
1248 static unsigned int dsi_get_line_buf_size(struct dsi_data
*dsi
)
1252 /* line buffer on OMAP3 is 1024 x 24bits */
1253 /* XXX: for some reason using full buffer size causes
1254 * considerable TX slowdown with update sizes that fill the
1256 if (!(dsi
->data
->quirks
& DSI_QUIRK_GNQ
))
1259 val
= REG_GET(dsi
, DSI_GNQ
, 14, 12); /* VP1_LINE_BUFFER_SIZE */
1263 return 512 * 3; /* 512x24 bits */
1265 return 682 * 3; /* 682x24 bits */
1267 return 853 * 3; /* 853x24 bits */
1269 return 1024 * 3; /* 1024x24 bits */
1271 return 1194 * 3; /* 1194x24 bits */
1273 return 1365 * 3; /* 1365x24 bits */
1275 return 1920 * 3; /* 1920x24 bits */
1282 static int dsi_set_lane_config(struct dsi_data
*dsi
)
1284 static const u8 offsets
[] = { 0, 4, 8, 12, 16 };
1285 static const enum dsi_lane_function functions
[] = {
1295 r
= dsi_read_reg(dsi
, DSI_COMPLEXIO_CFG1
);
1297 for (i
= 0; i
< dsi
->num_lanes_used
; ++i
) {
1298 unsigned int offset
= offsets
[i
];
1299 unsigned int polarity
, lane_number
;
1302 for (t
= 0; t
< dsi
->num_lanes_supported
; ++t
)
1303 if (dsi
->lanes
[t
].function
== functions
[i
])
1306 if (t
== dsi
->num_lanes_supported
)
1310 polarity
= dsi
->lanes
[t
].polarity
;
1312 r
= FLD_MOD(r
, lane_number
+ 1, offset
+ 2, offset
);
1313 r
= FLD_MOD(r
, polarity
, offset
+ 3, offset
+ 3);
1316 /* clear the unused lanes */
1317 for (; i
< dsi
->num_lanes_supported
; ++i
) {
1318 unsigned int offset
= offsets
[i
];
1320 r
= FLD_MOD(r
, 0, offset
+ 2, offset
);
1321 r
= FLD_MOD(r
, 0, offset
+ 3, offset
+ 3);
1324 dsi_write_reg(dsi
, DSI_COMPLEXIO_CFG1
, r
);
1329 static inline unsigned int ns2ddr(struct dsi_data
*dsi
, unsigned int ns
)
1331 /* convert time in ns to ddr ticks, rounding up */
1332 unsigned long ddr_clk
= dsi
->pll
.cinfo
.clkdco
/ 4;
1334 return (ns
* (ddr_clk
/ 1000 / 1000) + 999) / 1000;
1337 static inline unsigned int ddr2ns(struct dsi_data
*dsi
, unsigned int ddr
)
1339 unsigned long ddr_clk
= dsi
->pll
.cinfo
.clkdco
/ 4;
1341 return ddr
* 1000 * 1000 / (ddr_clk
/ 1000);
1344 static void dsi_cio_timings(struct dsi_data
*dsi
)
1347 u32 ths_prepare
, ths_prepare_ths_zero
, ths_trail
, ths_exit
;
1348 u32 tlpx_half
, tclk_trail
, tclk_zero
;
1351 /* calculate timings */
1353 /* 1 * DDR_CLK = 2 * UI */
1355 /* min 40ns + 4*UI max 85ns + 6*UI */
1356 ths_prepare
= ns2ddr(dsi
, 70) + 2;
1358 /* min 145ns + 10*UI */
1359 ths_prepare_ths_zero
= ns2ddr(dsi
, 175) + 2;
1361 /* min max(8*UI, 60ns+4*UI) */
1362 ths_trail
= ns2ddr(dsi
, 60) + 5;
1365 ths_exit
= ns2ddr(dsi
, 145);
1368 tlpx_half
= ns2ddr(dsi
, 25);
1371 tclk_trail
= ns2ddr(dsi
, 60) + 2;
1373 /* min 38ns, max 95ns */
1374 tclk_prepare
= ns2ddr(dsi
, 65);
1376 /* min tclk-prepare + tclk-zero = 300ns */
1377 tclk_zero
= ns2ddr(dsi
, 260);
1379 DSSDBG("ths_prepare %u (%uns), ths_prepare_ths_zero %u (%uns)\n",
1380 ths_prepare
, ddr2ns(dsi
, ths_prepare
),
1381 ths_prepare_ths_zero
, ddr2ns(dsi
, ths_prepare_ths_zero
));
1382 DSSDBG("ths_trail %u (%uns), ths_exit %u (%uns)\n",
1383 ths_trail
, ddr2ns(dsi
, ths_trail
),
1384 ths_exit
, ddr2ns(dsi
, ths_exit
));
1386 DSSDBG("tlpx_half %u (%uns), tclk_trail %u (%uns), "
1387 "tclk_zero %u (%uns)\n",
1388 tlpx_half
, ddr2ns(dsi
, tlpx_half
),
1389 tclk_trail
, ddr2ns(dsi
, tclk_trail
),
1390 tclk_zero
, ddr2ns(dsi
, tclk_zero
));
1391 DSSDBG("tclk_prepare %u (%uns)\n",
1392 tclk_prepare
, ddr2ns(dsi
, tclk_prepare
));
1394 /* program timings */
1396 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG0
);
1397 r
= FLD_MOD(r
, ths_prepare
, 31, 24);
1398 r
= FLD_MOD(r
, ths_prepare_ths_zero
, 23, 16);
1399 r
= FLD_MOD(r
, ths_trail
, 15, 8);
1400 r
= FLD_MOD(r
, ths_exit
, 7, 0);
1401 dsi_write_reg(dsi
, DSI_DSIPHY_CFG0
, r
);
1403 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG1
);
1404 r
= FLD_MOD(r
, tlpx_half
, 20, 16);
1405 r
= FLD_MOD(r
, tclk_trail
, 15, 8);
1406 r
= FLD_MOD(r
, tclk_zero
, 7, 0);
1408 if (dsi
->data
->quirks
& DSI_QUIRK_PHY_DCC
) {
1409 r
= FLD_MOD(r
, 0, 21, 21); /* DCCEN = disable */
1410 r
= FLD_MOD(r
, 1, 22, 22); /* CLKINP_DIVBY2EN = enable */
1411 r
= FLD_MOD(r
, 1, 23, 23); /* CLKINP_SEL = enable */
1414 dsi_write_reg(dsi
, DSI_DSIPHY_CFG1
, r
);
1416 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG2
);
1417 r
= FLD_MOD(r
, tclk_prepare
, 7, 0);
1418 dsi_write_reg(dsi
, DSI_DSIPHY_CFG2
, r
);
1421 static int dsi_cio_wait_tx_clk_esc_reset(struct dsi_data
*dsi
)
1424 bool in_use
[DSI_MAX_NR_LANES
];
1425 static const u8 offsets_old
[] = { 28, 27, 26 };
1426 static const u8 offsets_new
[] = { 24, 25, 26, 27, 28 };
1429 if (dsi
->data
->quirks
& DSI_QUIRK_REVERSE_TXCLKESC
)
1430 offsets
= offsets_old
;
1432 offsets
= offsets_new
;
1434 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
)
1435 in_use
[i
] = dsi
->lanes
[i
].function
!= DSI_LANE_UNUSED
;
1442 l
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG5
);
1445 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
1446 if (!in_use
[i
] || (l
& (1 << offsets
[i
])))
1450 if (ok
== dsi
->num_lanes_supported
)
1454 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
1455 if (!in_use
[i
] || (l
& (1 << offsets
[i
])))
1458 DSSERR("CIO TXCLKESC%d domain not coming " \
1459 "out of reset\n", i
);
1468 /* return bitmask of enabled lanes, lane0 being the lsb */
1469 static unsigned int dsi_get_lane_mask(struct dsi_data
*dsi
)
1471 unsigned int mask
= 0;
1474 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
1475 if (dsi
->lanes
[i
].function
!= DSI_LANE_UNUSED
)
1482 /* OMAP4 CONTROL_DSIPHY */
1483 #define OMAP4_DSIPHY_SYSCON_OFFSET 0x78
1485 #define OMAP4_DSI2_LANEENABLE_SHIFT 29
1486 #define OMAP4_DSI2_LANEENABLE_MASK (0x7 << 29)
1487 #define OMAP4_DSI1_LANEENABLE_SHIFT 24
1488 #define OMAP4_DSI1_LANEENABLE_MASK (0x1f << 24)
1489 #define OMAP4_DSI1_PIPD_SHIFT 19
1490 #define OMAP4_DSI1_PIPD_MASK (0x1f << 19)
1491 #define OMAP4_DSI2_PIPD_SHIFT 14
1492 #define OMAP4_DSI2_PIPD_MASK (0x1f << 14)
1494 static int dsi_omap4_mux_pads(struct dsi_data
*dsi
, unsigned int lanes
)
1496 u32 enable_mask
, enable_shift
;
1497 u32 pipd_mask
, pipd_shift
;
1499 if (dsi
->module_id
== 0) {
1500 enable_mask
= OMAP4_DSI1_LANEENABLE_MASK
;
1501 enable_shift
= OMAP4_DSI1_LANEENABLE_SHIFT
;
1502 pipd_mask
= OMAP4_DSI1_PIPD_MASK
;
1503 pipd_shift
= OMAP4_DSI1_PIPD_SHIFT
;
1504 } else if (dsi
->module_id
== 1) {
1505 enable_mask
= OMAP4_DSI2_LANEENABLE_MASK
;
1506 enable_shift
= OMAP4_DSI2_LANEENABLE_SHIFT
;
1507 pipd_mask
= OMAP4_DSI2_PIPD_MASK
;
1508 pipd_shift
= OMAP4_DSI2_PIPD_SHIFT
;
1513 return regmap_update_bits(dsi
->syscon
, OMAP4_DSIPHY_SYSCON_OFFSET
,
1514 enable_mask
| pipd_mask
,
1515 (lanes
<< enable_shift
) | (lanes
<< pipd_shift
));
1518 /* OMAP5 CONTROL_DSIPHY */
1520 #define OMAP5_DSIPHY_SYSCON_OFFSET 0x74
1522 #define OMAP5_DSI1_LANEENABLE_SHIFT 24
1523 #define OMAP5_DSI2_LANEENABLE_SHIFT 19
1524 #define OMAP5_DSI_LANEENABLE_MASK 0x1f
1526 static int dsi_omap5_mux_pads(struct dsi_data
*dsi
, unsigned int lanes
)
1530 if (dsi
->module_id
== 0)
1531 enable_shift
= OMAP5_DSI1_LANEENABLE_SHIFT
;
1532 else if (dsi
->module_id
== 1)
1533 enable_shift
= OMAP5_DSI2_LANEENABLE_SHIFT
;
1537 return regmap_update_bits(dsi
->syscon
, OMAP5_DSIPHY_SYSCON_OFFSET
,
1538 OMAP5_DSI_LANEENABLE_MASK
<< enable_shift
,
1539 lanes
<< enable_shift
);
1542 static int dsi_enable_pads(struct dsi_data
*dsi
, unsigned int lane_mask
)
1544 if (dsi
->data
->model
== DSI_MODEL_OMAP4
)
1545 return dsi_omap4_mux_pads(dsi
, lane_mask
);
1546 if (dsi
->data
->model
== DSI_MODEL_OMAP5
)
1547 return dsi_omap5_mux_pads(dsi
, lane_mask
);
1551 static void dsi_disable_pads(struct dsi_data
*dsi
)
1553 if (dsi
->data
->model
== DSI_MODEL_OMAP4
)
1554 dsi_omap4_mux_pads(dsi
, 0);
1555 else if (dsi
->data
->model
== DSI_MODEL_OMAP5
)
1556 dsi_omap5_mux_pads(dsi
, 0);
1559 static int dsi_cio_init(struct dsi_data
*dsi
)
1564 DSSDBG("DSI CIO init starts");
1566 r
= dsi_enable_pads(dsi
, dsi_get_lane_mask(dsi
));
1570 dsi_enable_scp_clk(dsi
);
1572 /* A dummy read using the SCP interface to any DSIPHY register is
1573 * required after DSIPHY reset to complete the reset of the DSI complex
1575 dsi_read_reg(dsi
, DSI_DSIPHY_CFG5
);
1577 if (!wait_for_bit_change(dsi
, DSI_DSIPHY_CFG5
, 30, 1)) {
1578 DSSERR("CIO SCP Clock domain not coming out of reset.\n");
1580 goto err_scp_clk_dom
;
1583 r
= dsi_set_lane_config(dsi
);
1585 goto err_scp_clk_dom
;
1587 /* set TX STOP MODE timer to maximum for this operation */
1588 l
= dsi_read_reg(dsi
, DSI_TIMING1
);
1589 l
= FLD_MOD(l
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
1590 l
= FLD_MOD(l
, 1, 14, 14); /* STOP_STATE_X16_IO */
1591 l
= FLD_MOD(l
, 1, 13, 13); /* STOP_STATE_X4_IO */
1592 l
= FLD_MOD(l
, 0x1fff, 12, 0); /* STOP_STATE_COUNTER_IO */
1593 dsi_write_reg(dsi
, DSI_TIMING1
, l
);
1595 r
= dsi_cio_power(dsi
, DSI_COMPLEXIO_POWER_ON
);
1599 if (!wait_for_bit_change(dsi
, DSI_COMPLEXIO_CFG1
, 29, 1)) {
1600 DSSERR("CIO PWR clock domain not coming out of reset.\n");
1602 goto err_cio_pwr_dom
;
1605 dsi_if_enable(dsi
, true);
1606 dsi_if_enable(dsi
, false);
1607 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, 1, 20, 20); /* LP_CLK_ENABLE */
1609 r
= dsi_cio_wait_tx_clk_esc_reset(dsi
);
1611 goto err_tx_clk_esc_rst
;
1613 /* FORCE_TX_STOP_MODE_IO */
1614 REG_FLD_MOD(dsi
, DSI_TIMING1
, 0, 15, 15);
1616 dsi_cio_timings(dsi
);
1618 /* DDR_CLK_ALWAYS_ON */
1619 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
,
1620 !(dsi
->dsidev
->mode_flags
& MIPI_DSI_CLOCK_NON_CONTINUOUS
),
1623 DSSDBG("CIO init done\n");
1628 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, 0, 20, 20); /* LP_CLK_ENABLE */
1630 dsi_cio_power(dsi
, DSI_COMPLEXIO_POWER_OFF
);
1633 dsi_disable_scp_clk(dsi
);
1634 dsi_disable_pads(dsi
);
1638 static void dsi_cio_uninit(struct dsi_data
*dsi
)
1640 /* DDR_CLK_ALWAYS_ON */
1641 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, 0, 13, 13);
1643 dsi_cio_power(dsi
, DSI_COMPLEXIO_POWER_OFF
);
1644 dsi_disable_scp_clk(dsi
);
1645 dsi_disable_pads(dsi
);
1648 static void dsi_config_tx_fifo(struct dsi_data
*dsi
,
1649 enum fifo_size size1
, enum fifo_size size2
,
1650 enum fifo_size size3
, enum fifo_size size4
)
1656 dsi
->vc
[0].tx_fifo_size
= size1
;
1657 dsi
->vc
[1].tx_fifo_size
= size2
;
1658 dsi
->vc
[2].tx_fifo_size
= size3
;
1659 dsi
->vc
[3].tx_fifo_size
= size4
;
1661 for (i
= 0; i
< 4; i
++) {
1663 int size
= dsi
->vc
[i
].tx_fifo_size
;
1665 if (add
+ size
> 4) {
1666 DSSERR("Illegal FIFO configuration\n");
1671 v
= FLD_VAL(add
, 2, 0) | FLD_VAL(size
, 7, 4);
1673 /*DSSDBG("TX FIFO vc %d: size %d, add %d\n", i, size, add); */
1677 dsi_write_reg(dsi
, DSI_TX_FIFO_VC_SIZE
, r
);
1680 static void dsi_config_rx_fifo(struct dsi_data
*dsi
,
1681 enum fifo_size size1
, enum fifo_size size2
,
1682 enum fifo_size size3
, enum fifo_size size4
)
1688 dsi
->vc
[0].rx_fifo_size
= size1
;
1689 dsi
->vc
[1].rx_fifo_size
= size2
;
1690 dsi
->vc
[2].rx_fifo_size
= size3
;
1691 dsi
->vc
[3].rx_fifo_size
= size4
;
1693 for (i
= 0; i
< 4; i
++) {
1695 int size
= dsi
->vc
[i
].rx_fifo_size
;
1697 if (add
+ size
> 4) {
1698 DSSERR("Illegal FIFO configuration\n");
1703 v
= FLD_VAL(add
, 2, 0) | FLD_VAL(size
, 7, 4);
1705 /*DSSDBG("RX FIFO vc %d: size %d, add %d\n", i, size, add); */
1709 dsi_write_reg(dsi
, DSI_RX_FIFO_VC_SIZE
, r
);
1712 static int dsi_force_tx_stop_mode_io(struct dsi_data
*dsi
)
1716 r
= dsi_read_reg(dsi
, DSI_TIMING1
);
1717 r
= FLD_MOD(r
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
1718 dsi_write_reg(dsi
, DSI_TIMING1
, r
);
1720 if (!wait_for_bit_change(dsi
, DSI_TIMING1
, 15, 0)) {
1721 DSSERR("TX_STOP bit not going down\n");
1728 static bool dsi_vc_is_enabled(struct dsi_data
*dsi
, int vc
)
1730 return REG_GET(dsi
, DSI_VC_CTRL(vc
), 0, 0);
1733 static void dsi_packet_sent_handler_vp(void *data
, u32 mask
)
1735 struct dsi_packet_sent_handler_data
*vp_data
=
1736 (struct dsi_packet_sent_handler_data
*) data
;
1737 struct dsi_data
*dsi
= vp_data
->dsi
;
1738 const int vc
= dsi
->update_vc
;
1739 u8 bit
= dsi
->te_enabled
? 30 : 31;
1741 if (REG_GET(dsi
, DSI_VC_TE(vc
), bit
, bit
) == 0)
1742 complete(vp_data
->completion
);
1745 static int dsi_sync_vc_vp(struct dsi_data
*dsi
, int vc
)
1747 DECLARE_COMPLETION_ONSTACK(completion
);
1748 struct dsi_packet_sent_handler_data vp_data
= {
1750 .completion
= &completion
1755 bit
= dsi
->te_enabled
? 30 : 31;
1757 r
= dsi_register_isr_vc(dsi
, vc
, dsi_packet_sent_handler_vp
,
1758 &vp_data
, DSI_VC_IRQ_PACKET_SENT
);
1762 /* Wait for completion only if TE_EN/TE_START is still set */
1763 if (REG_GET(dsi
, DSI_VC_TE(vc
), bit
, bit
)) {
1764 if (wait_for_completion_timeout(&completion
,
1765 msecs_to_jiffies(10)) == 0) {
1766 DSSERR("Failed to complete previous frame transfer\n");
1772 dsi_unregister_isr_vc(dsi
, vc
, dsi_packet_sent_handler_vp
,
1773 &vp_data
, DSI_VC_IRQ_PACKET_SENT
);
1777 dsi_unregister_isr_vc(dsi
, vc
, dsi_packet_sent_handler_vp
,
1778 &vp_data
, DSI_VC_IRQ_PACKET_SENT
);
1783 static void dsi_packet_sent_handler_l4(void *data
, u32 mask
)
1785 struct dsi_packet_sent_handler_data
*l4_data
=
1786 (struct dsi_packet_sent_handler_data
*) data
;
1787 struct dsi_data
*dsi
= l4_data
->dsi
;
1788 const int vc
= dsi
->update_vc
;
1790 if (REG_GET(dsi
, DSI_VC_CTRL(vc
), 5, 5) == 0)
1791 complete(l4_data
->completion
);
1794 static int dsi_sync_vc_l4(struct dsi_data
*dsi
, int vc
)
1796 DECLARE_COMPLETION_ONSTACK(completion
);
1797 struct dsi_packet_sent_handler_data l4_data
= {
1799 .completion
= &completion
1803 r
= dsi_register_isr_vc(dsi
, vc
, dsi_packet_sent_handler_l4
,
1804 &l4_data
, DSI_VC_IRQ_PACKET_SENT
);
1808 /* Wait for completion only if TX_FIFO_NOT_EMPTY is still set */
1809 if (REG_GET(dsi
, DSI_VC_CTRL(vc
), 5, 5)) {
1810 if (wait_for_completion_timeout(&completion
,
1811 msecs_to_jiffies(10)) == 0) {
1812 DSSERR("Failed to complete previous l4 transfer\n");
1818 dsi_unregister_isr_vc(dsi
, vc
, dsi_packet_sent_handler_l4
,
1819 &l4_data
, DSI_VC_IRQ_PACKET_SENT
);
1823 dsi_unregister_isr_vc(dsi
, vc
, dsi_packet_sent_handler_l4
,
1824 &l4_data
, DSI_VC_IRQ_PACKET_SENT
);
1829 static int dsi_sync_vc(struct dsi_data
*dsi
, int vc
)
1831 WARN_ON(!dsi_bus_is_locked(dsi
));
1833 WARN_ON(in_interrupt());
1835 if (!dsi_vc_is_enabled(dsi
, vc
))
1838 switch (dsi
->vc
[vc
].source
) {
1839 case DSI_VC_SOURCE_VP
:
1840 return dsi_sync_vc_vp(dsi
, vc
);
1841 case DSI_VC_SOURCE_L4
:
1842 return dsi_sync_vc_l4(dsi
, vc
);
1849 static int dsi_vc_enable(struct dsi_data
*dsi
, int vc
, bool enable
)
1851 DSSDBG("dsi_vc_enable vc %d, enable %d\n",
1854 enable
= enable
? 1 : 0;
1856 REG_FLD_MOD(dsi
, DSI_VC_CTRL(vc
), enable
, 0, 0);
1858 if (!wait_for_bit_change(dsi
, DSI_VC_CTRL(vc
), 0, enable
)) {
1859 DSSERR("Failed to set dsi_vc_enable to %d\n", enable
);
1866 static void dsi_vc_initial_config(struct dsi_data
*dsi
, int vc
)
1870 DSSDBG("Initial config of VC %d", vc
);
1872 r
= dsi_read_reg(dsi
, DSI_VC_CTRL(vc
));
1874 if (FLD_GET(r
, 15, 15)) /* VC_BUSY */
1875 DSSERR("VC(%d) busy when trying to configure it!\n",
1878 r
= FLD_MOD(r
, 0, 1, 1); /* SOURCE, 0 = L4 */
1879 r
= FLD_MOD(r
, 0, 2, 2); /* BTA_SHORT_EN */
1880 r
= FLD_MOD(r
, 0, 3, 3); /* BTA_LONG_EN */
1881 r
= FLD_MOD(r
, 0, 4, 4); /* MODE, 0 = command */
1882 r
= FLD_MOD(r
, 1, 7, 7); /* CS_TX_EN */
1883 r
= FLD_MOD(r
, 1, 8, 8); /* ECC_TX_EN */
1884 r
= FLD_MOD(r
, 0, 9, 9); /* MODE_SPEED, high speed on/off */
1885 if (dsi
->data
->quirks
& DSI_QUIRK_VC_OCP_WIDTH
)
1886 r
= FLD_MOD(r
, 3, 11, 10); /* OCP_WIDTH = 32 bit */
1888 r
= FLD_MOD(r
, 4, 29, 27); /* DMA_RX_REQ_NB = no dma */
1889 r
= FLD_MOD(r
, 4, 23, 21); /* DMA_TX_REQ_NB = no dma */
1891 dsi_write_reg(dsi
, DSI_VC_CTRL(vc
), r
);
1893 dsi
->vc
[vc
].source
= DSI_VC_SOURCE_L4
;
1896 static void dsi_vc_enable_hs(struct omap_dss_device
*dssdev
, int vc
,
1899 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
1901 DSSDBG("dsi_vc_enable_hs(%d, %d)\n", vc
, enable
);
1903 if (REG_GET(dsi
, DSI_VC_CTRL(vc
), 9, 9) == enable
)
1906 WARN_ON(!dsi_bus_is_locked(dsi
));
1908 dsi_vc_enable(dsi
, vc
, 0);
1909 dsi_if_enable(dsi
, 0);
1911 REG_FLD_MOD(dsi
, DSI_VC_CTRL(vc
), enable
, 9, 9);
1913 dsi_vc_enable(dsi
, vc
, 1);
1914 dsi_if_enable(dsi
, 1);
1916 dsi_force_tx_stop_mode_io(dsi
);
1919 static void dsi_vc_flush_long_data(struct dsi_data
*dsi
, int vc
)
1921 while (REG_GET(dsi
, DSI_VC_CTRL(vc
), 20, 20)) {
1923 val
= dsi_read_reg(dsi
, DSI_VC_SHORT_PACKET_HEADER(vc
));
1924 DSSDBG("\t\tb1 %#02x b2 %#02x b3 %#02x b4 %#02x\n",
1928 (val
>> 24) & 0xff);
1932 static void dsi_show_rx_ack_with_err(u16 err
)
1934 DSSERR("\tACK with ERROR (%#x):\n", err
);
1936 DSSERR("\t\tSoT Error\n");
1938 DSSERR("\t\tSoT Sync Error\n");
1940 DSSERR("\t\tEoT Sync Error\n");
1942 DSSERR("\t\tEscape Mode Entry Command Error\n");
1944 DSSERR("\t\tLP Transmit Sync Error\n");
1946 DSSERR("\t\tHS Receive Timeout Error\n");
1948 DSSERR("\t\tFalse Control Error\n");
1950 DSSERR("\t\t(reserved7)\n");
1952 DSSERR("\t\tECC Error, single-bit (corrected)\n");
1954 DSSERR("\t\tECC Error, multi-bit (not corrected)\n");
1955 if (err
& (1 << 10))
1956 DSSERR("\t\tChecksum Error\n");
1957 if (err
& (1 << 11))
1958 DSSERR("\t\tData type not recognized\n");
1959 if (err
& (1 << 12))
1960 DSSERR("\t\tInvalid VC ID\n");
1961 if (err
& (1 << 13))
1962 DSSERR("\t\tInvalid Transmission Length\n");
1963 if (err
& (1 << 14))
1964 DSSERR("\t\t(reserved14)\n");
1965 if (err
& (1 << 15))
1966 DSSERR("\t\tDSI Protocol Violation\n");
1969 static u16
dsi_vc_flush_receive_data(struct dsi_data
*dsi
, int vc
)
1971 /* RX_FIFO_NOT_EMPTY */
1972 while (REG_GET(dsi
, DSI_VC_CTRL(vc
), 20, 20)) {
1975 val
= dsi_read_reg(dsi
, DSI_VC_SHORT_PACKET_HEADER(vc
));
1976 DSSERR("\trawval %#08x\n", val
);
1977 dt
= FLD_GET(val
, 5, 0);
1978 if (dt
== MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT
) {
1979 u16 err
= FLD_GET(val
, 23, 8);
1980 dsi_show_rx_ack_with_err(err
);
1981 } else if (dt
== MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE
) {
1982 DSSERR("\tDCS short response, 1 byte: %#x\n",
1983 FLD_GET(val
, 23, 8));
1984 } else if (dt
== MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE
) {
1985 DSSERR("\tDCS short response, 2 byte: %#x\n",
1986 FLD_GET(val
, 23, 8));
1987 } else if (dt
== MIPI_DSI_RX_DCS_LONG_READ_RESPONSE
) {
1988 DSSERR("\tDCS long response, len %d\n",
1989 FLD_GET(val
, 23, 8));
1990 dsi_vc_flush_long_data(dsi
, vc
);
1992 DSSERR("\tunknown datatype 0x%02x\n", dt
);
1998 static int dsi_vc_send_bta(struct dsi_data
*dsi
, int vc
)
2000 if (dsi
->debug_write
|| dsi
->debug_read
)
2001 DSSDBG("dsi_vc_send_bta %d\n", vc
);
2003 WARN_ON(!dsi_bus_is_locked(dsi
));
2005 /* RX_FIFO_NOT_EMPTY */
2006 if (REG_GET(dsi
, DSI_VC_CTRL(vc
), 20, 20)) {
2007 DSSERR("rx fifo not empty when sending BTA, dumping data:\n");
2008 dsi_vc_flush_receive_data(dsi
, vc
);
2011 REG_FLD_MOD(dsi
, DSI_VC_CTRL(vc
), 1, 6, 6); /* BTA_EN */
2013 /* flush posted write */
2014 dsi_read_reg(dsi
, DSI_VC_CTRL(vc
));
2019 static int dsi_vc_send_bta_sync(struct omap_dss_device
*dssdev
, int vc
)
2021 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
2022 DECLARE_COMPLETION_ONSTACK(completion
);
2026 r
= dsi_register_isr_vc(dsi
, vc
, dsi_completion_handler
,
2027 &completion
, DSI_VC_IRQ_BTA
);
2031 r
= dsi_register_isr(dsi
, dsi_completion_handler
, &completion
,
2032 DSI_IRQ_ERROR_MASK
);
2036 r
= dsi_vc_send_bta(dsi
, vc
);
2040 if (wait_for_completion_timeout(&completion
,
2041 msecs_to_jiffies(500)) == 0) {
2042 DSSERR("Failed to receive BTA\n");
2047 err
= dsi_get_errors(dsi
);
2049 DSSERR("Error while sending BTA: %x\n", err
);
2054 dsi_unregister_isr(dsi
, dsi_completion_handler
, &completion
,
2055 DSI_IRQ_ERROR_MASK
);
2057 dsi_unregister_isr_vc(dsi
, vc
, dsi_completion_handler
,
2058 &completion
, DSI_VC_IRQ_BTA
);
2063 static inline void dsi_vc_write_long_header(struct dsi_data
*dsi
, int vc
,
2064 int channel
, u8 data_type
, u16 len
,
2070 WARN_ON(!dsi_bus_is_locked(dsi
));
2072 data_id
= data_type
| channel
<< 6;
2074 val
= FLD_VAL(data_id
, 7, 0) | FLD_VAL(len
, 23, 8) |
2075 FLD_VAL(ecc
, 31, 24);
2077 dsi_write_reg(dsi
, DSI_VC_LONG_PACKET_HEADER(vc
), val
);
2080 static inline void dsi_vc_write_long_payload(struct dsi_data
*dsi
, int vc
,
2081 u8 b1
, u8 b2
, u8 b3
, u8 b4
)
2085 val
= b4
<< 24 | b3
<< 16 | b2
<< 8 | b1
<< 0;
2087 /* DSSDBG("\twriting %02x, %02x, %02x, %02x (%#010x)\n",
2088 b1, b2, b3, b4, val); */
2090 dsi_write_reg(dsi
, DSI_VC_LONG_PACKET_PAYLOAD(vc
), val
);
2093 static int dsi_vc_send_long(struct dsi_data
*dsi
, int vc
,
2094 const struct mipi_dsi_msg
*msg
)
2102 if (dsi
->debug_write
)
2103 DSSDBG("dsi_vc_send_long, %zu bytes\n", msg
->tx_len
);
2106 if (dsi
->vc
[vc
].tx_fifo_size
* 32 * 4 < msg
->tx_len
+ 4) {
2107 DSSERR("unable to send long packet: packet too long.\n");
2111 dsi_vc_write_long_header(dsi
, vc
, msg
->channel
, msg
->type
, msg
->tx_len
, 0);
2114 for (i
= 0; i
< msg
->tx_len
>> 2; i
++) {
2115 if (dsi
->debug_write
)
2116 DSSDBG("\tsending full packet %d\n", i
);
2123 dsi_vc_write_long_payload(dsi
, vc
, b1
, b2
, b3
, b4
);
2126 i
= msg
->tx_len
% 4;
2128 b1
= 0; b2
= 0; b3
= 0;
2130 if (dsi
->debug_write
)
2131 DSSDBG("\tsending remainder bytes %d\n", i
);
2148 dsi_vc_write_long_payload(dsi
, vc
, b1
, b2
, b3
, 0);
2154 static int dsi_vc_send_short(struct dsi_data
*dsi
, int vc
,
2155 const struct mipi_dsi_msg
*msg
)
2157 struct mipi_dsi_packet pkt
;
2161 ret
= mipi_dsi_create_packet(&pkt
, msg
);
2165 WARN_ON(!dsi_bus_is_locked(dsi
));
2167 if (dsi
->debug_write
)
2168 DSSDBG("dsi_vc_send_short(vc%d, dt %#x, b1 %#x, b2 %#x)\n",
2169 vc
, msg
->type
, pkt
.header
[1], pkt
.header
[2]);
2171 if (FLD_GET(dsi_read_reg(dsi
, DSI_VC_CTRL(vc
)), 16, 16)) {
2172 DSSERR("ERROR FIFO FULL, aborting transfer\n");
2176 r
= pkt
.header
[3] << 24 | pkt
.header
[2] << 16 | pkt
.header
[1] << 8 |
2179 dsi_write_reg(dsi
, DSI_VC_SHORT_PACKET_HEADER(vc
), r
);
2184 static int dsi_vc_send_null(struct dsi_data
*dsi
, int vc
, int channel
)
2186 const struct mipi_dsi_msg msg
= {
2188 .type
= MIPI_DSI_NULL_PACKET
,
2191 return dsi_vc_send_long(dsi
, vc
, &msg
);
2194 static int dsi_vc_write_common(struct omap_dss_device
*dssdev
, int vc
,
2195 const struct mipi_dsi_msg
*msg
)
2197 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
2200 if (mipi_dsi_packet_format_is_short(msg
->type
))
2201 r
= dsi_vc_send_short(dsi
, vc
, msg
);
2203 r
= dsi_vc_send_long(dsi
, vc
, msg
);
2209 * TODO: we do not always have to do the BTA sync, for example
2210 * we can improve performance by setting the update window
2211 * information without sending BTA sync between the commands.
2212 * In that case we can return early.
2215 r
= dsi_vc_send_bta_sync(dssdev
, vc
);
2217 DSSERR("bta sync failed\n");
2221 /* RX_FIFO_NOT_EMPTY */
2222 if (REG_GET(dsi
, DSI_VC_CTRL(vc
), 20, 20)) {
2223 DSSERR("rx fifo not empty after write, dumping data:\n");
2224 dsi_vc_flush_receive_data(dsi
, vc
);
2231 static int dsi_vc_read_rx_fifo(struct dsi_data
*dsi
, int vc
, u8
*buf
,
2232 int buflen
, enum dss_dsi_content_type type
)
2238 /* RX_FIFO_NOT_EMPTY */
2239 if (REG_GET(dsi
, DSI_VC_CTRL(vc
), 20, 20) == 0) {
2240 DSSERR("RX fifo empty when trying to read.\n");
2245 val
= dsi_read_reg(dsi
, DSI_VC_SHORT_PACKET_HEADER(vc
));
2246 if (dsi
->debug_read
)
2247 DSSDBG("\theader: %08x\n", val
);
2248 dt
= FLD_GET(val
, 5, 0);
2249 if (dt
== MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT
) {
2250 u16 err
= FLD_GET(val
, 23, 8);
2251 dsi_show_rx_ack_with_err(err
);
2255 } else if (dt
== (type
== DSS_DSI_CONTENT_GENERIC
?
2256 MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_1BYTE
:
2257 MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE
)) {
2258 u8 data
= FLD_GET(val
, 15, 8);
2259 if (dsi
->debug_read
)
2260 DSSDBG("\t%s short response, 1 byte: %02x\n",
2261 type
== DSS_DSI_CONTENT_GENERIC
? "GENERIC" :
2272 } else if (dt
== (type
== DSS_DSI_CONTENT_GENERIC
?
2273 MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_2BYTE
:
2274 MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE
)) {
2275 u16 data
= FLD_GET(val
, 23, 8);
2276 if (dsi
->debug_read
)
2277 DSSDBG("\t%s short response, 2 byte: %04x\n",
2278 type
== DSS_DSI_CONTENT_GENERIC
? "GENERIC" :
2286 buf
[0] = data
& 0xff;
2287 buf
[1] = (data
>> 8) & 0xff;
2290 } else if (dt
== (type
== DSS_DSI_CONTENT_GENERIC
?
2291 MIPI_DSI_RX_GENERIC_LONG_READ_RESPONSE
:
2292 MIPI_DSI_RX_DCS_LONG_READ_RESPONSE
)) {
2294 int len
= FLD_GET(val
, 23, 8);
2295 if (dsi
->debug_read
)
2296 DSSDBG("\t%s long response, len %d\n",
2297 type
== DSS_DSI_CONTENT_GENERIC
? "GENERIC" :
2305 /* two byte checksum ends the packet, not included in len */
2306 for (w
= 0; w
< len
+ 2;) {
2308 val
= dsi_read_reg(dsi
,
2309 DSI_VC_SHORT_PACKET_HEADER(vc
));
2310 if (dsi
->debug_read
)
2311 DSSDBG("\t\t%02x %02x %02x %02x\n",
2315 (val
>> 24) & 0xff);
2317 for (b
= 0; b
< 4; ++b
) {
2319 buf
[w
] = (val
>> (b
* 8)) & 0xff;
2320 /* we discard the 2 byte checksum */
2327 DSSERR("\tunknown datatype 0x%02x\n", dt
);
2333 DSSERR("dsi_vc_read_rx_fifo(vc %d type %s) failed\n", vc
,
2334 type
== DSS_DSI_CONTENT_GENERIC
? "GENERIC" : "DCS");
2339 static int dsi_vc_dcs_read(struct omap_dss_device
*dssdev
, int vc
,
2340 const struct mipi_dsi_msg
*msg
)
2342 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
2343 u8 cmd
= ((u8
*)msg
->tx_buf
)[0];
2346 if (dsi
->debug_read
)
2347 DSSDBG("%s(vc %d, cmd %x)\n", __func__
, vc
, cmd
);
2349 r
= dsi_vc_send_short(dsi
, vc
, msg
);
2353 r
= dsi_vc_send_bta_sync(dssdev
, vc
);
2357 r
= dsi_vc_read_rx_fifo(dsi
, vc
, msg
->rx_buf
, msg
->rx_len
,
2358 DSS_DSI_CONTENT_DCS
);
2362 if (r
!= msg
->rx_len
) {
2369 DSSERR("%s(vc %d, cmd 0x%02x) failed\n", __func__
, vc
, cmd
);
2373 static int dsi_vc_generic_read(struct omap_dss_device
*dssdev
, int vc
,
2374 const struct mipi_dsi_msg
*msg
)
2376 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
2379 r
= dsi_vc_send_short(dsi
, vc
, msg
);
2383 r
= dsi_vc_send_bta_sync(dssdev
, vc
);
2387 r
= dsi_vc_read_rx_fifo(dsi
, vc
, msg
->rx_buf
, msg
->rx_len
,
2388 DSS_DSI_CONTENT_GENERIC
);
2392 if (r
!= msg
->rx_len
) {
2399 DSSERR("%s(vc %d, reqlen %zu) failed\n", __func__
, vc
, msg
->tx_len
);
2403 static void dsi_set_lp_rx_timeout(struct dsi_data
*dsi
, unsigned int ticks
,
2407 unsigned long total_ticks
;
2410 BUG_ON(ticks
> 0x1fff);
2412 /* ticks in DSI_FCK */
2413 fck
= dsi_fclk_rate(dsi
);
2415 r
= dsi_read_reg(dsi
, DSI_TIMING2
);
2416 r
= FLD_MOD(r
, 1, 15, 15); /* LP_RX_TO */
2417 r
= FLD_MOD(r
, x16
? 1 : 0, 14, 14); /* LP_RX_TO_X16 */
2418 r
= FLD_MOD(r
, x4
? 1 : 0, 13, 13); /* LP_RX_TO_X4 */
2419 r
= FLD_MOD(r
, ticks
, 12, 0); /* LP_RX_COUNTER */
2420 dsi_write_reg(dsi
, DSI_TIMING2
, r
);
2422 total_ticks
= ticks
* (x16
? 16 : 1) * (x4
? 4 : 1);
2424 DSSDBG("LP_RX_TO %lu ticks (%#x%s%s) = %lu ns\n",
2426 ticks
, x4
? " x4" : "", x16
? " x16" : "",
2427 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
2430 static void dsi_set_ta_timeout(struct dsi_data
*dsi
, unsigned int ticks
,
2434 unsigned long total_ticks
;
2437 BUG_ON(ticks
> 0x1fff);
2439 /* ticks in DSI_FCK */
2440 fck
= dsi_fclk_rate(dsi
);
2442 r
= dsi_read_reg(dsi
, DSI_TIMING1
);
2443 r
= FLD_MOD(r
, 1, 31, 31); /* TA_TO */
2444 r
= FLD_MOD(r
, x16
? 1 : 0, 30, 30); /* TA_TO_X16 */
2445 r
= FLD_MOD(r
, x8
? 1 : 0, 29, 29); /* TA_TO_X8 */
2446 r
= FLD_MOD(r
, ticks
, 28, 16); /* TA_TO_COUNTER */
2447 dsi_write_reg(dsi
, DSI_TIMING1
, r
);
2449 total_ticks
= ticks
* (x16
? 16 : 1) * (x8
? 8 : 1);
2451 DSSDBG("TA_TO %lu ticks (%#x%s%s) = %lu ns\n",
2453 ticks
, x8
? " x8" : "", x16
? " x16" : "",
2454 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
2457 static void dsi_set_stop_state_counter(struct dsi_data
*dsi
, unsigned int ticks
,
2461 unsigned long total_ticks
;
2464 BUG_ON(ticks
> 0x1fff);
2466 /* ticks in DSI_FCK */
2467 fck
= dsi_fclk_rate(dsi
);
2469 r
= dsi_read_reg(dsi
, DSI_TIMING1
);
2470 r
= FLD_MOD(r
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
2471 r
= FLD_MOD(r
, x16
? 1 : 0, 14, 14); /* STOP_STATE_X16_IO */
2472 r
= FLD_MOD(r
, x4
? 1 : 0, 13, 13); /* STOP_STATE_X4_IO */
2473 r
= FLD_MOD(r
, ticks
, 12, 0); /* STOP_STATE_COUNTER_IO */
2474 dsi_write_reg(dsi
, DSI_TIMING1
, r
);
2476 total_ticks
= ticks
* (x16
? 16 : 1) * (x4
? 4 : 1);
2478 DSSDBG("STOP_STATE_COUNTER %lu ticks (%#x%s%s) = %lu ns\n",
2480 ticks
, x4
? " x4" : "", x16
? " x16" : "",
2481 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
2484 static void dsi_set_hs_tx_timeout(struct dsi_data
*dsi
, unsigned int ticks
,
2488 unsigned long total_ticks
;
2491 BUG_ON(ticks
> 0x1fff);
2493 /* ticks in TxByteClkHS */
2494 fck
= dsi_get_txbyteclkhs(dsi
);
2496 r
= dsi_read_reg(dsi
, DSI_TIMING2
);
2497 r
= FLD_MOD(r
, 1, 31, 31); /* HS_TX_TO */
2498 r
= FLD_MOD(r
, x16
? 1 : 0, 30, 30); /* HS_TX_TO_X16 */
2499 r
= FLD_MOD(r
, x4
? 1 : 0, 29, 29); /* HS_TX_TO_X8 (4 really) */
2500 r
= FLD_MOD(r
, ticks
, 28, 16); /* HS_TX_TO_COUNTER */
2501 dsi_write_reg(dsi
, DSI_TIMING2
, r
);
2503 total_ticks
= ticks
* (x16
? 16 : 1) * (x4
? 4 : 1);
2505 DSSDBG("HS_TX_TO %lu ticks (%#x%s%s) = %lu ns\n",
2507 ticks
, x4
? " x4" : "", x16
? " x16" : "",
2508 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
2511 static void dsi_config_vp_num_line_buffers(struct dsi_data
*dsi
)
2513 int num_line_buffers
;
2515 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
2516 int bpp
= mipi_dsi_pixel_format_to_bpp(dsi
->pix_fmt
);
2517 const struct videomode
*vm
= &dsi
->vm
;
2519 * Don't use line buffers if width is greater than the video
2520 * port's line buffer size
2522 if (dsi
->line_buffer_size
<= vm
->hactive
* bpp
/ 8)
2523 num_line_buffers
= 0;
2525 num_line_buffers
= 2;
2527 /* Use maximum number of line buffers in command mode */
2528 num_line_buffers
= 2;
2532 REG_FLD_MOD(dsi
, DSI_CTRL
, num_line_buffers
, 13, 12);
2535 static void dsi_config_vp_sync_events(struct dsi_data
*dsi
)
2540 if (dsi
->vm_timings
.trans_mode
== OMAP_DSS_DSI_PULSE_MODE
)
2545 r
= dsi_read_reg(dsi
, DSI_CTRL
);
2546 r
= FLD_MOD(r
, 1, 9, 9); /* VP_DE_POL */
2547 r
= FLD_MOD(r
, 1, 10, 10); /* VP_HSYNC_POL */
2548 r
= FLD_MOD(r
, 1, 11, 11); /* VP_VSYNC_POL */
2549 r
= FLD_MOD(r
, 1, 15, 15); /* VP_VSYNC_START */
2550 r
= FLD_MOD(r
, sync_end
, 16, 16); /* VP_VSYNC_END */
2551 r
= FLD_MOD(r
, 1, 17, 17); /* VP_HSYNC_START */
2552 r
= FLD_MOD(r
, sync_end
, 18, 18); /* VP_HSYNC_END */
2553 dsi_write_reg(dsi
, DSI_CTRL
, r
);
2556 static void dsi_config_blanking_modes(struct dsi_data
*dsi
)
2558 int blanking_mode
= dsi
->vm_timings
.blanking_mode
;
2559 int hfp_blanking_mode
= dsi
->vm_timings
.hfp_blanking_mode
;
2560 int hbp_blanking_mode
= dsi
->vm_timings
.hbp_blanking_mode
;
2561 int hsa_blanking_mode
= dsi
->vm_timings
.hsa_blanking_mode
;
2565 * 0 = TX FIFO packets sent or LPS in corresponding blanking periods
2566 * 1 = Long blanking packets are sent in corresponding blanking periods
2568 r
= dsi_read_reg(dsi
, DSI_CTRL
);
2569 r
= FLD_MOD(r
, blanking_mode
, 20, 20); /* BLANKING_MODE */
2570 r
= FLD_MOD(r
, hfp_blanking_mode
, 21, 21); /* HFP_BLANKING */
2571 r
= FLD_MOD(r
, hbp_blanking_mode
, 22, 22); /* HBP_BLANKING */
2572 r
= FLD_MOD(r
, hsa_blanking_mode
, 23, 23); /* HSA_BLANKING */
2573 dsi_write_reg(dsi
, DSI_CTRL
, r
);
2577 * According to section 'HS Command Mode Interleaving' in OMAP TRM, Scenario 3
2578 * results in maximum transition time for data and clock lanes to enter and
2579 * exit HS mode. Hence, this is the scenario where the least amount of command
2580 * mode data can be interleaved. We program the minimum amount of TXBYTECLKHS
2581 * clock cycles that can be used to interleave command mode data in HS so that
2582 * all scenarios are satisfied.
2584 static int dsi_compute_interleave_hs(int blank
, bool ddr_alwon
, int enter_hs
,
2585 int exit_hs
, int exiths_clk
, int ddr_pre
, int ddr_post
)
2590 * If DDR_CLK_ALWAYS_ON is set, we need to consider HS mode transition
2591 * time of data lanes only, if it isn't set, we need to consider HS
2592 * transition time of both data and clock lanes. HS transition time
2593 * of Scenario 3 is considered.
2596 transition
= enter_hs
+ exit_hs
+ max(enter_hs
, 2) + 1;
2599 trans1
= ddr_pre
+ enter_hs
+ exit_hs
+ max(enter_hs
, 2) + 1;
2600 trans2
= ddr_pre
+ enter_hs
+ exiths_clk
+ ddr_post
+ ddr_pre
+
2602 transition
= max(trans1
, trans2
);
2605 return blank
> transition
? blank
- transition
: 0;
2609 * According to section 'LP Command Mode Interleaving' in OMAP TRM, Scenario 1
2610 * results in maximum transition time for data lanes to enter and exit LP mode.
2611 * Hence, this is the scenario where the least amount of command mode data can
2612 * be interleaved. We program the minimum amount of bytes that can be
2613 * interleaved in LP so that all scenarios are satisfied.
2615 static int dsi_compute_interleave_lp(int blank
, int enter_hs
, int exit_hs
,
2616 int lp_clk_div
, int tdsi_fclk
)
2618 int trans_lp
; /* time required for a LP transition, in TXBYTECLKHS */
2619 int tlp_avail
; /* time left for interleaving commands, in CLKIN4DDR */
2620 int ttxclkesc
; /* period of LP transmit escape clock, in CLKIN4DDR */
2621 int thsbyte_clk
= 16; /* Period of TXBYTECLKHS clock, in CLKIN4DDR */
2622 int lp_inter
; /* cmd mode data that can be interleaved, in bytes */
2624 /* maximum LP transition time according to Scenario 1 */
2625 trans_lp
= exit_hs
+ max(enter_hs
, 2) + 1;
2627 /* CLKIN4DDR = 16 * TXBYTECLKHS */
2628 tlp_avail
= thsbyte_clk
* (blank
- trans_lp
);
2630 ttxclkesc
= tdsi_fclk
* lp_clk_div
;
2632 lp_inter
= ((tlp_avail
- 8 * thsbyte_clk
- 5 * tdsi_fclk
) / ttxclkesc
-
2635 return max(lp_inter
, 0);
2638 static void dsi_config_cmd_mode_interleaving(struct dsi_data
*dsi
)
2641 int hfp_blanking_mode
, hbp_blanking_mode
, hsa_blanking_mode
;
2642 int hsa
, hfp
, hbp
, width_bytes
, bllp
, lp_clk_div
;
2643 int ddr_clk_pre
, ddr_clk_post
, enter_hs_mode_lat
, exit_hs_mode_lat
;
2644 int tclk_trail
, ths_exit
, exiths_clk
;
2646 const struct videomode
*vm
= &dsi
->vm
;
2647 int bpp
= mipi_dsi_pixel_format_to_bpp(dsi
->pix_fmt
);
2648 int ndl
= dsi
->num_lanes_used
- 1;
2649 int dsi_fclk_hsdiv
= dsi
->user_dsi_cinfo
.mX
[HSDIV_DSI
] + 1;
2650 int hsa_interleave_hs
= 0, hsa_interleave_lp
= 0;
2651 int hfp_interleave_hs
= 0, hfp_interleave_lp
= 0;
2652 int hbp_interleave_hs
= 0, hbp_interleave_lp
= 0;
2653 int bl_interleave_hs
= 0, bl_interleave_lp
= 0;
2656 r
= dsi_read_reg(dsi
, DSI_CTRL
);
2657 blanking_mode
= FLD_GET(r
, 20, 20);
2658 hfp_blanking_mode
= FLD_GET(r
, 21, 21);
2659 hbp_blanking_mode
= FLD_GET(r
, 22, 22);
2660 hsa_blanking_mode
= FLD_GET(r
, 23, 23);
2662 r
= dsi_read_reg(dsi
, DSI_VM_TIMING1
);
2663 hbp
= FLD_GET(r
, 11, 0);
2664 hfp
= FLD_GET(r
, 23, 12);
2665 hsa
= FLD_GET(r
, 31, 24);
2667 r
= dsi_read_reg(dsi
, DSI_CLK_TIMING
);
2668 ddr_clk_post
= FLD_GET(r
, 7, 0);
2669 ddr_clk_pre
= FLD_GET(r
, 15, 8);
2671 r
= dsi_read_reg(dsi
, DSI_VM_TIMING7
);
2672 exit_hs_mode_lat
= FLD_GET(r
, 15, 0);
2673 enter_hs_mode_lat
= FLD_GET(r
, 31, 16);
2675 r
= dsi_read_reg(dsi
, DSI_CLK_CTRL
);
2676 lp_clk_div
= FLD_GET(r
, 12, 0);
2677 ddr_alwon
= FLD_GET(r
, 13, 13);
2679 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG0
);
2680 ths_exit
= FLD_GET(r
, 7, 0);
2682 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG1
);
2683 tclk_trail
= FLD_GET(r
, 15, 8);
2685 exiths_clk
= ths_exit
+ tclk_trail
;
2687 width_bytes
= DIV_ROUND_UP(vm
->hactive
* bpp
, 8);
2688 bllp
= hbp
+ hfp
+ hsa
+ DIV_ROUND_UP(width_bytes
+ 6, ndl
);
2690 if (!hsa_blanking_mode
) {
2691 hsa_interleave_hs
= dsi_compute_interleave_hs(hsa
, ddr_alwon
,
2692 enter_hs_mode_lat
, exit_hs_mode_lat
,
2693 exiths_clk
, ddr_clk_pre
, ddr_clk_post
);
2694 hsa_interleave_lp
= dsi_compute_interleave_lp(hsa
,
2695 enter_hs_mode_lat
, exit_hs_mode_lat
,
2696 lp_clk_div
, dsi_fclk_hsdiv
);
2699 if (!hfp_blanking_mode
) {
2700 hfp_interleave_hs
= dsi_compute_interleave_hs(hfp
, ddr_alwon
,
2701 enter_hs_mode_lat
, exit_hs_mode_lat
,
2702 exiths_clk
, ddr_clk_pre
, ddr_clk_post
);
2703 hfp_interleave_lp
= dsi_compute_interleave_lp(hfp
,
2704 enter_hs_mode_lat
, exit_hs_mode_lat
,
2705 lp_clk_div
, dsi_fclk_hsdiv
);
2708 if (!hbp_blanking_mode
) {
2709 hbp_interleave_hs
= dsi_compute_interleave_hs(hbp
, ddr_alwon
,
2710 enter_hs_mode_lat
, exit_hs_mode_lat
,
2711 exiths_clk
, ddr_clk_pre
, ddr_clk_post
);
2713 hbp_interleave_lp
= dsi_compute_interleave_lp(hbp
,
2714 enter_hs_mode_lat
, exit_hs_mode_lat
,
2715 lp_clk_div
, dsi_fclk_hsdiv
);
2718 if (!blanking_mode
) {
2719 bl_interleave_hs
= dsi_compute_interleave_hs(bllp
, ddr_alwon
,
2720 enter_hs_mode_lat
, exit_hs_mode_lat
,
2721 exiths_clk
, ddr_clk_pre
, ddr_clk_post
);
2723 bl_interleave_lp
= dsi_compute_interleave_lp(bllp
,
2724 enter_hs_mode_lat
, exit_hs_mode_lat
,
2725 lp_clk_div
, dsi_fclk_hsdiv
);
2728 DSSDBG("DSI HS interleaving(TXBYTECLKHS) HSA %d, HFP %d, HBP %d, BLLP %d\n",
2729 hsa_interleave_hs
, hfp_interleave_hs
, hbp_interleave_hs
,
2732 DSSDBG("DSI LP interleaving(bytes) HSA %d, HFP %d, HBP %d, BLLP %d\n",
2733 hsa_interleave_lp
, hfp_interleave_lp
, hbp_interleave_lp
,
2736 r
= dsi_read_reg(dsi
, DSI_VM_TIMING4
);
2737 r
= FLD_MOD(r
, hsa_interleave_hs
, 23, 16);
2738 r
= FLD_MOD(r
, hfp_interleave_hs
, 15, 8);
2739 r
= FLD_MOD(r
, hbp_interleave_hs
, 7, 0);
2740 dsi_write_reg(dsi
, DSI_VM_TIMING4
, r
);
2742 r
= dsi_read_reg(dsi
, DSI_VM_TIMING5
);
2743 r
= FLD_MOD(r
, hsa_interleave_lp
, 23, 16);
2744 r
= FLD_MOD(r
, hfp_interleave_lp
, 15, 8);
2745 r
= FLD_MOD(r
, hbp_interleave_lp
, 7, 0);
2746 dsi_write_reg(dsi
, DSI_VM_TIMING5
, r
);
2748 r
= dsi_read_reg(dsi
, DSI_VM_TIMING6
);
2749 r
= FLD_MOD(r
, bl_interleave_hs
, 31, 15);
2750 r
= FLD_MOD(r
, bl_interleave_lp
, 16, 0);
2751 dsi_write_reg(dsi
, DSI_VM_TIMING6
, r
);
2754 static int dsi_proto_config(struct dsi_data
*dsi
)
2759 dsi_config_tx_fifo(dsi
, DSI_FIFO_SIZE_32
,
2764 dsi_config_rx_fifo(dsi
, DSI_FIFO_SIZE_32
,
2769 /* XXX what values for the timeouts? */
2770 dsi_set_stop_state_counter(dsi
, 0x1000, false, false);
2771 dsi_set_ta_timeout(dsi
, 0x1fff, true, true);
2772 dsi_set_lp_rx_timeout(dsi
, 0x1fff, true, true);
2773 dsi_set_hs_tx_timeout(dsi
, 0x1fff, true, true);
2775 switch (mipi_dsi_pixel_format_to_bpp(dsi
->pix_fmt
)) {
2790 r
= dsi_read_reg(dsi
, DSI_CTRL
);
2791 r
= FLD_MOD(r
, 1, 1, 1); /* CS_RX_EN */
2792 r
= FLD_MOD(r
, 1, 2, 2); /* ECC_RX_EN */
2793 r
= FLD_MOD(r
, 1, 3, 3); /* TX_FIFO_ARBITRATION */
2794 r
= FLD_MOD(r
, 1, 4, 4); /* VP_CLK_RATIO, always 1, see errata*/
2795 r
= FLD_MOD(r
, buswidth
, 7, 6); /* VP_DATA_BUS_WIDTH */
2796 r
= FLD_MOD(r
, 0, 8, 8); /* VP_CLK_POL */
2797 r
= FLD_MOD(r
, 1, 14, 14); /* TRIGGER_RESET_MODE */
2798 r
= FLD_MOD(r
, 1, 19, 19); /* EOT_ENABLE */
2799 if (!(dsi
->data
->quirks
& DSI_QUIRK_DCS_CMD_CONFIG_VC
)) {
2800 r
= FLD_MOD(r
, 1, 24, 24); /* DCS_CMD_ENABLE */
2801 /* DCS_CMD_CODE, 1=start, 0=continue */
2802 r
= FLD_MOD(r
, 0, 25, 25);
2805 dsi_write_reg(dsi
, DSI_CTRL
, r
);
2807 dsi_config_vp_num_line_buffers(dsi
);
2809 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
2810 dsi_config_vp_sync_events(dsi
);
2811 dsi_config_blanking_modes(dsi
);
2812 dsi_config_cmd_mode_interleaving(dsi
);
2815 dsi_vc_initial_config(dsi
, 0);
2816 dsi_vc_initial_config(dsi
, 1);
2817 dsi_vc_initial_config(dsi
, 2);
2818 dsi_vc_initial_config(dsi
, 3);
2823 static void dsi_proto_timings(struct dsi_data
*dsi
)
2825 unsigned int tlpx
, tclk_zero
, tclk_prepare
;
2826 unsigned int tclk_pre
, tclk_post
;
2827 unsigned int ths_prepare
, ths_prepare_ths_zero
, ths_zero
;
2828 unsigned int ths_trail
, ths_exit
;
2829 unsigned int ddr_clk_pre
, ddr_clk_post
;
2830 unsigned int enter_hs_mode_lat
, exit_hs_mode_lat
;
2831 unsigned int ths_eot
;
2832 int ndl
= dsi
->num_lanes_used
- 1;
2835 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG0
);
2836 ths_prepare
= FLD_GET(r
, 31, 24);
2837 ths_prepare_ths_zero
= FLD_GET(r
, 23, 16);
2838 ths_zero
= ths_prepare_ths_zero
- ths_prepare
;
2839 ths_trail
= FLD_GET(r
, 15, 8);
2840 ths_exit
= FLD_GET(r
, 7, 0);
2842 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG1
);
2843 tlpx
= FLD_GET(r
, 20, 16) * 2;
2844 tclk_zero
= FLD_GET(r
, 7, 0);
2846 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG2
);
2847 tclk_prepare
= FLD_GET(r
, 7, 0);
2851 /* min 60ns + 52*UI */
2852 tclk_post
= ns2ddr(dsi
, 60) + 26;
2854 ths_eot
= DIV_ROUND_UP(4, ndl
);
2856 ddr_clk_pre
= DIV_ROUND_UP(tclk_pre
+ tlpx
+ tclk_zero
+ tclk_prepare
,
2858 ddr_clk_post
= DIV_ROUND_UP(tclk_post
+ ths_trail
, 4) + ths_eot
;
2860 BUG_ON(ddr_clk_pre
== 0 || ddr_clk_pre
> 255);
2861 BUG_ON(ddr_clk_post
== 0 || ddr_clk_post
> 255);
2863 r
= dsi_read_reg(dsi
, DSI_CLK_TIMING
);
2864 r
= FLD_MOD(r
, ddr_clk_pre
, 15, 8);
2865 r
= FLD_MOD(r
, ddr_clk_post
, 7, 0);
2866 dsi_write_reg(dsi
, DSI_CLK_TIMING
, r
);
2868 DSSDBG("ddr_clk_pre %u, ddr_clk_post %u\n",
2872 enter_hs_mode_lat
= 1 + DIV_ROUND_UP(tlpx
, 4) +
2873 DIV_ROUND_UP(ths_prepare
, 4) +
2874 DIV_ROUND_UP(ths_zero
+ 3, 4);
2876 exit_hs_mode_lat
= DIV_ROUND_UP(ths_trail
+ ths_exit
, 4) + 1 + ths_eot
;
2878 r
= FLD_VAL(enter_hs_mode_lat
, 31, 16) |
2879 FLD_VAL(exit_hs_mode_lat
, 15, 0);
2880 dsi_write_reg(dsi
, DSI_VM_TIMING7
, r
);
2882 DSSDBG("enter_hs_mode_lat %u, exit_hs_mode_lat %u\n",
2883 enter_hs_mode_lat
, exit_hs_mode_lat
);
2885 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
2886 /* TODO: Implement a video mode check_timings function */
2887 int hsa
= dsi
->vm_timings
.hsa
;
2888 int hfp
= dsi
->vm_timings
.hfp
;
2889 int hbp
= dsi
->vm_timings
.hbp
;
2890 int vsa
= dsi
->vm_timings
.vsa
;
2891 int vfp
= dsi
->vm_timings
.vfp
;
2892 int vbp
= dsi
->vm_timings
.vbp
;
2893 int window_sync
= dsi
->vm_timings
.window_sync
;
2895 const struct videomode
*vm
= &dsi
->vm
;
2896 int bpp
= mipi_dsi_pixel_format_to_bpp(dsi
->pix_fmt
);
2897 int tl
, t_he
, width_bytes
;
2899 hsync_end
= dsi
->vm_timings
.trans_mode
== OMAP_DSS_DSI_PULSE_MODE
;
2901 ((hsa
== 0 && ndl
== 3) ? 1 : DIV_ROUND_UP(4, ndl
)) : 0;
2903 width_bytes
= DIV_ROUND_UP(vm
->hactive
* bpp
, 8);
2905 /* TL = t_HS + HSA + t_HE + HFP + ceil((WC + 6) / NDL) + HBP */
2906 tl
= DIV_ROUND_UP(4, ndl
) + (hsync_end
? hsa
: 0) + t_he
+ hfp
+
2907 DIV_ROUND_UP(width_bytes
+ 6, ndl
) + hbp
;
2909 DSSDBG("HBP: %d, HFP: %d, HSA: %d, TL: %d TXBYTECLKHS\n", hbp
,
2910 hfp
, hsync_end
? hsa
: 0, tl
);
2911 DSSDBG("VBP: %d, VFP: %d, VSA: %d, VACT: %d lines\n", vbp
, vfp
,
2914 r
= dsi_read_reg(dsi
, DSI_VM_TIMING1
);
2915 r
= FLD_MOD(r
, hbp
, 11, 0); /* HBP */
2916 r
= FLD_MOD(r
, hfp
, 23, 12); /* HFP */
2917 r
= FLD_MOD(r
, hsync_end
? hsa
: 0, 31, 24); /* HSA */
2918 dsi_write_reg(dsi
, DSI_VM_TIMING1
, r
);
2920 r
= dsi_read_reg(dsi
, DSI_VM_TIMING2
);
2921 r
= FLD_MOD(r
, vbp
, 7, 0); /* VBP */
2922 r
= FLD_MOD(r
, vfp
, 15, 8); /* VFP */
2923 r
= FLD_MOD(r
, vsa
, 23, 16); /* VSA */
2924 r
= FLD_MOD(r
, window_sync
, 27, 24); /* WINDOW_SYNC */
2925 dsi_write_reg(dsi
, DSI_VM_TIMING2
, r
);
2927 r
= dsi_read_reg(dsi
, DSI_VM_TIMING3
);
2928 r
= FLD_MOD(r
, vm
->vactive
, 14, 0); /* VACT */
2929 r
= FLD_MOD(r
, tl
, 31, 16); /* TL */
2930 dsi_write_reg(dsi
, DSI_VM_TIMING3
, r
);
2934 static int dsi_configure_pins(struct dsi_data
*dsi
,
2935 int num_pins
, const u32
*pins
)
2937 struct dsi_lane_config lanes
[DSI_MAX_NR_LANES
];
2941 static const enum dsi_lane_function functions
[] = {
2949 if (num_pins
< 4 || num_pins
> dsi
->num_lanes_supported
* 2
2950 || num_pins
% 2 != 0)
2953 for (i
= 0; i
< DSI_MAX_NR_LANES
; ++i
)
2954 lanes
[i
].function
= DSI_LANE_UNUSED
;
2958 for (i
= 0; i
< num_pins
; i
+= 2) {
2965 if (dx
>= dsi
->num_lanes_supported
* 2)
2968 if (dy
>= dsi
->num_lanes_supported
* 2)
2983 lanes
[lane
].function
= functions
[i
/ 2];
2984 lanes
[lane
].polarity
= pol
;
2988 memcpy(dsi
->lanes
, lanes
, sizeof(dsi
->lanes
));
2989 dsi
->num_lanes_used
= num_lanes
;
2994 static int dsi_enable_video_mode(struct dsi_data
*dsi
, int vc
)
2996 int bpp
= mipi_dsi_pixel_format_to_bpp(dsi
->pix_fmt
);
3000 switch (dsi
->pix_fmt
) {
3001 case MIPI_DSI_FMT_RGB888
:
3002 data_type
= MIPI_DSI_PACKED_PIXEL_STREAM_24
;
3004 case MIPI_DSI_FMT_RGB666
:
3005 data_type
= MIPI_DSI_PIXEL_STREAM_3BYTE_18
;
3007 case MIPI_DSI_FMT_RGB666_PACKED
:
3008 data_type
= MIPI_DSI_PACKED_PIXEL_STREAM_18
;
3010 case MIPI_DSI_FMT_RGB565
:
3011 data_type
= MIPI_DSI_PACKED_PIXEL_STREAM_16
;
3017 dsi_if_enable(dsi
, false);
3018 dsi_vc_enable(dsi
, vc
, false);
3020 /* MODE, 1 = video mode */
3021 REG_FLD_MOD(dsi
, DSI_VC_CTRL(vc
), 1, 4, 4);
3023 word_count
= DIV_ROUND_UP(dsi
->vm
.hactive
* bpp
, 8);
3025 dsi_vc_write_long_header(dsi
, vc
, dsi
->dsidev
->channel
, data_type
,
3028 dsi_vc_enable(dsi
, vc
, true);
3029 dsi_if_enable(dsi
, true);
3034 static void dsi_disable_video_mode(struct dsi_data
*dsi
, int vc
)
3036 dsi_if_enable(dsi
, false);
3037 dsi_vc_enable(dsi
, vc
, false);
3039 /* MODE, 0 = command mode */
3040 REG_FLD_MOD(dsi
, DSI_VC_CTRL(vc
), 0, 4, 4);
3042 dsi_vc_enable(dsi
, vc
, true);
3043 dsi_if_enable(dsi
, true);
3046 static void dsi_enable_video_output(struct omap_dss_device
*dssdev
, int vc
)
3048 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
3051 r
= dsi_init_dispc(dsi
);
3053 dev_err(dsi
->dev
, "failed to init dispc!\n");
3057 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
3058 r
= dsi_enable_video_mode(dsi
, vc
);
3060 goto err_video_mode
;
3063 r
= dss_mgr_enable(&dsi
->output
);
3065 goto err_mgr_enable
;
3070 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
3071 dsi_if_enable(dsi
, false);
3072 dsi_vc_enable(dsi
, vc
, false);
3075 dsi_uninit_dispc(dsi
);
3076 dev_err(dsi
->dev
, "failed to enable DSI encoder!\n");
3080 static void dsi_disable_video_output(struct omap_dss_device
*dssdev
, int vc
)
3082 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
3084 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
)
3085 dsi_disable_video_mode(dsi
, vc
);
3087 dss_mgr_disable(&dsi
->output
);
3089 dsi_uninit_dispc(dsi
);
3092 static void dsi_update_screen_dispc(struct dsi_data
*dsi
)
3094 unsigned int bytespp
;
3095 unsigned int bytespl
;
3096 unsigned int bytespf
;
3097 unsigned int total_len
;
3098 unsigned int packet_payload
;
3099 unsigned int packet_len
;
3102 const unsigned vc
= dsi
->update_vc
;
3103 const unsigned int line_buf_size
= dsi
->line_buffer_size
;
3104 u16 w
= dsi
->vm
.hactive
;
3105 u16 h
= dsi
->vm
.vactive
;
3107 DSSDBG("dsi_update_screen_dispc(%dx%d)\n", w
, h
);
3109 bytespp
= mipi_dsi_pixel_format_to_bpp(dsi
->pix_fmt
) / 8;
3110 bytespl
= w
* bytespp
;
3111 bytespf
= bytespl
* h
;
3113 /* NOTE: packet_payload has to be equal to N * bytespl, where N is
3114 * number of lines in a packet. See errata about VP_CLK_RATIO */
3116 if (bytespf
< line_buf_size
)
3117 packet_payload
= bytespf
;
3119 packet_payload
= (line_buf_size
) / bytespl
* bytespl
;
3121 packet_len
= packet_payload
+ 1; /* 1 byte for DCS cmd */
3122 total_len
= (bytespf
/ packet_payload
) * packet_len
;
3124 if (bytespf
% packet_payload
)
3125 total_len
+= (bytespf
% packet_payload
) + 1;
3127 l
= FLD_VAL(total_len
, 23, 0); /* TE_SIZE */
3128 dsi_write_reg(dsi
, DSI_VC_TE(vc
), l
);
3130 dsi_vc_write_long_header(dsi
, vc
, dsi
->dsidev
->channel
, MIPI_DSI_DCS_LONG_WRITE
,
3133 if (dsi
->te_enabled
)
3134 l
= FLD_MOD(l
, 1, 30, 30); /* TE_EN */
3136 l
= FLD_MOD(l
, 1, 31, 31); /* TE_START */
3137 dsi_write_reg(dsi
, DSI_VC_TE(vc
), l
);
3139 /* We put SIDLEMODE to no-idle for the duration of the transfer,
3140 * because DSS interrupts are not capable of waking up the CPU and the
3141 * framedone interrupt could be delayed for quite a long time. I think
3142 * the same goes for any DSS interrupts, but for some reason I have not
3143 * seen the problem anywhere else than here.
3145 dispc_disable_sidle(dsi
->dss
->dispc
);
3147 dsi_perf_mark_start(dsi
);
3149 r
= schedule_delayed_work(&dsi
->framedone_timeout_work
,
3150 msecs_to_jiffies(250));
3153 dss_mgr_start_update(&dsi
->output
);
3155 if (dsi
->te_enabled
) {
3156 /* disable LP_RX_TO, so that we can receive TE. Time to wait
3157 * for TE is longer than the timer allows */
3158 REG_FLD_MOD(dsi
, DSI_TIMING2
, 0, 15, 15); /* LP_RX_TO */
3160 dsi_vc_send_bta(dsi
, vc
);
3162 #ifdef DSI_CATCH_MISSING_TE
3163 mod_timer(&dsi
->te_timer
, jiffies
+ msecs_to_jiffies(250));
3168 #ifdef DSI_CATCH_MISSING_TE
3169 static void dsi_te_timeout(struct timer_list
*unused
)
3171 DSSERR("TE not received for 250ms!\n");
3175 static void dsi_handle_framedone(struct dsi_data
*dsi
, int error
)
3177 /* SIDLEMODE back to smart-idle */
3178 dispc_enable_sidle(dsi
->dss
->dispc
);
3180 if (dsi
->te_enabled
) {
3181 /* enable LP_RX_TO again after the TE */
3182 REG_FLD_MOD(dsi
, DSI_TIMING2
, 1, 15, 15); /* LP_RX_TO */
3185 dsi_bus_unlock(dsi
);
3188 dsi_perf_show(dsi
, "DISPC");
3191 static void dsi_framedone_timeout_work_callback(struct work_struct
*work
)
3193 struct dsi_data
*dsi
= container_of(work
, struct dsi_data
,
3194 framedone_timeout_work
.work
);
3195 /* XXX While extremely unlikely, we could get FRAMEDONE interrupt after
3196 * 250ms which would conflict with this timeout work. What should be
3197 * done is first cancel the transfer on the HW, and then cancel the
3198 * possibly scheduled framedone work. However, cancelling the transfer
3199 * on the HW is buggy, and would probably require resetting the whole
3202 DSSERR("Framedone not received for 250ms!\n");
3204 dsi_handle_framedone(dsi
, -ETIMEDOUT
);
3207 static void dsi_framedone_irq_callback(void *data
)
3209 struct dsi_data
*dsi
= data
;
3211 /* Note: We get FRAMEDONE when DISPC has finished sending pixels and
3212 * turns itself off. However, DSI still has the pixels in its buffers,
3213 * and is sending the data.
3216 cancel_delayed_work(&dsi
->framedone_timeout_work
);
3218 DSSDBG("Framedone received!\n");
3220 dsi_handle_framedone(dsi
, 0);
3223 static int _dsi_update(struct dsi_data
*dsi
)
3225 dsi_perf_mark_setup(dsi
);
3227 #ifdef DSI_PERF_MEASURE
3228 dsi
->update_bytes
= dsi
->vm
.hactive
* dsi
->vm
.vactive
*
3229 mipi_dsi_pixel_format_to_bpp(dsi
->pix_fmt
) / 8;
3231 dsi_update_screen_dispc(dsi
);
3236 static int _dsi_send_nop(struct dsi_data
*dsi
, int vc
, int channel
)
3238 const u8 payload
[] = { MIPI_DCS_NOP
};
3239 const struct mipi_dsi_msg msg
= {
3241 .type
= MIPI_DSI_DCS_SHORT_WRITE
,
3246 WARN_ON(!dsi_bus_is_locked(dsi
));
3248 return _omap_dsi_host_transfer(dsi
, vc
, &msg
);
3251 static int dsi_update_channel(struct omap_dss_device
*dssdev
, int vc
)
3253 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
3258 if (!dsi
->video_enabled
) {
3263 if (dsi
->vm
.hactive
== 0 || dsi
->vm
.vactive
== 0) {
3268 DSSDBG("dsi_update_channel: %d", vc
);
3271 * Send NOP between the frames. If we don't send something here, the
3272 * updates stop working. This is probably related to DSI spec stating
3273 * that the DSI host should transition to LP at least once per frame.
3275 r
= _dsi_send_nop(dsi
, VC_CMD
, dsi
->dsidev
->channel
);
3277 DSSWARN("failed to send nop between frames: %d\n", r
);
3281 dsi
->update_vc
= vc
;
3283 if (dsi
->te_enabled
&& dsi
->te_gpio
) {
3284 schedule_delayed_work(&dsi
->te_timeout_work
,
3285 msecs_to_jiffies(250));
3286 atomic_set(&dsi
->do_ext_te_update
, 1);
3294 dsi_bus_unlock(dsi
);
3298 static int dsi_update_all(struct omap_dss_device
*dssdev
)
3300 return dsi_update_channel(dssdev
, VC_VIDEO
);
3305 static int dsi_configure_dispc_clocks(struct dsi_data
*dsi
)
3307 struct dispc_clock_info dispc_cinfo
;
3311 fck
= dsi_get_pll_hsdiv_dispc_rate(dsi
);
3313 dispc_cinfo
.lck_div
= dsi
->user_dispc_cinfo
.lck_div
;
3314 dispc_cinfo
.pck_div
= dsi
->user_dispc_cinfo
.pck_div
;
3316 r
= dispc_calc_clock_rates(dsi
->dss
->dispc
, fck
, &dispc_cinfo
);
3318 DSSERR("Failed to calc dispc clocks\n");
3322 dsi
->mgr_config
.clock_info
= dispc_cinfo
;
3327 static int dsi_init_dispc(struct dsi_data
*dsi
)
3329 enum omap_channel dispc_channel
= dsi
->output
.dispc_channel
;
3332 dss_select_lcd_clk_source(dsi
->dss
, dispc_channel
, dsi
->module_id
== 0 ?
3333 DSS_CLK_SRC_PLL1_1
:
3334 DSS_CLK_SRC_PLL2_1
);
3336 if (dsi
->mode
== OMAP_DSS_DSI_CMD_MODE
) {
3337 r
= dss_mgr_register_framedone_handler(&dsi
->output
,
3338 dsi_framedone_irq_callback
, dsi
);
3340 DSSERR("can't register FRAMEDONE handler\n");
3344 dsi
->mgr_config
.stallmode
= true;
3345 dsi
->mgr_config
.fifohandcheck
= true;
3347 dsi
->mgr_config
.stallmode
= false;
3348 dsi
->mgr_config
.fifohandcheck
= false;
3351 r
= dsi_configure_dispc_clocks(dsi
);
3355 dsi
->mgr_config
.io_pad_mode
= DSS_IO_PAD_MODE_BYPASS
;
3356 dsi
->mgr_config
.video_port_width
=
3357 mipi_dsi_pixel_format_to_bpp(dsi
->pix_fmt
);
3358 dsi
->mgr_config
.lcden_sig_polarity
= 0;
3360 dss_mgr_set_lcd_config(&dsi
->output
, &dsi
->mgr_config
);
3364 if (dsi
->mode
== OMAP_DSS_DSI_CMD_MODE
)
3365 dss_mgr_unregister_framedone_handler(&dsi
->output
,
3366 dsi_framedone_irq_callback
, dsi
);
3368 dss_select_lcd_clk_source(dsi
->dss
, dispc_channel
, DSS_CLK_SRC_FCK
);
3372 static void dsi_uninit_dispc(struct dsi_data
*dsi
)
3374 enum omap_channel dispc_channel
= dsi
->output
.dispc_channel
;
3376 if (dsi
->mode
== OMAP_DSS_DSI_CMD_MODE
)
3377 dss_mgr_unregister_framedone_handler(&dsi
->output
,
3378 dsi_framedone_irq_callback
, dsi
);
3380 dss_select_lcd_clk_source(dsi
->dss
, dispc_channel
, DSS_CLK_SRC_FCK
);
3383 static int dsi_configure_dsi_clocks(struct dsi_data
*dsi
)
3385 struct dss_pll_clock_info cinfo
;
3388 cinfo
= dsi
->user_dsi_cinfo
;
3390 r
= dss_pll_set_config(&dsi
->pll
, &cinfo
);
3392 DSSERR("Failed to set dsi clocks\n");
3399 static void dsi_setup_dsi_vcs(struct dsi_data
*dsi
)
3401 /* Setup VC_CMD for LP and cpu transfers */
3402 REG_FLD_MOD(dsi
, DSI_VC_CTRL(VC_CMD
), 0, 9, 9); /* LP */
3404 REG_FLD_MOD(dsi
, DSI_VC_CTRL(VC_CMD
), 0, 1, 1); /* SOURCE_L4 */
3405 dsi
->vc
[VC_CMD
].source
= DSI_VC_SOURCE_L4
;
3407 /* Setup VC_VIDEO for HS and dispc transfers */
3408 REG_FLD_MOD(dsi
, DSI_VC_CTRL(VC_VIDEO
), 1, 9, 9); /* HS */
3410 REG_FLD_MOD(dsi
, DSI_VC_CTRL(VC_VIDEO
), 1, 1, 1); /* SOURCE_VP */
3411 dsi
->vc
[VC_VIDEO
].source
= DSI_VC_SOURCE_VP
;
3413 if ((dsi
->data
->quirks
& DSI_QUIRK_DCS_CMD_CONFIG_VC
) &&
3414 !(dsi
->dsidev
->mode_flags
& MIPI_DSI_MODE_VIDEO
))
3415 REG_FLD_MOD(dsi
, DSI_VC_CTRL(VC_VIDEO
), 1, 30, 30); /* DCS_CMD_ENABLE */
3417 dsi_vc_enable(dsi
, VC_CMD
, 1);
3418 dsi_vc_enable(dsi
, VC_VIDEO
, 1);
3420 dsi_if_enable(dsi
, 1);
3422 dsi_force_tx_stop_mode_io(dsi
);
3424 /* start the DDR clock by sending a NULL packet */
3425 if (!(dsi
->dsidev
->mode_flags
& MIPI_DSI_CLOCK_NON_CONTINUOUS
))
3426 dsi_vc_send_null(dsi
, VC_CMD
, dsi
->dsidev
->channel
);
3429 static int dsi_init_dsi(struct dsi_data
*dsi
)
3433 r
= dss_pll_enable(&dsi
->pll
);
3437 r
= dsi_configure_dsi_clocks(dsi
);
3441 dss_select_dsi_clk_source(dsi
->dss
, dsi
->module_id
,
3442 dsi
->module_id
== 0 ?
3443 DSS_CLK_SRC_PLL1_2
: DSS_CLK_SRC_PLL2_2
);
3447 if (!dsi
->vdds_dsi_enabled
) {
3448 r
= regulator_enable(dsi
->vdds_dsi_reg
);
3452 dsi
->vdds_dsi_enabled
= true;
3455 r
= dsi_cio_init(dsi
);
3459 _dsi_print_reset_status(dsi
);
3461 dsi_proto_timings(dsi
);
3462 dsi_set_lp_clk_divisor(dsi
);
3465 _dsi_print_reset_status(dsi
);
3467 r
= dsi_proto_config(dsi
);
3471 dsi_setup_dsi_vcs(dsi
);
3475 dsi_cio_uninit(dsi
);
3477 regulator_disable(dsi
->vdds_dsi_reg
);
3478 dsi
->vdds_dsi_enabled
= false;
3480 dss_select_dsi_clk_source(dsi
->dss
, dsi
->module_id
, DSS_CLK_SRC_FCK
);
3482 dss_pll_disable(&dsi
->pll
);
3487 static void dsi_uninit_dsi(struct dsi_data
*dsi
)
3489 /* disable interface */
3490 dsi_if_enable(dsi
, 0);
3491 dsi_vc_enable(dsi
, 0, 0);
3492 dsi_vc_enable(dsi
, 1, 0);
3493 dsi_vc_enable(dsi
, 2, 0);
3494 dsi_vc_enable(dsi
, 3, 0);
3496 dss_select_dsi_clk_source(dsi
->dss
, dsi
->module_id
, DSS_CLK_SRC_FCK
);
3497 dsi_cio_uninit(dsi
);
3498 dss_pll_disable(&dsi
->pll
);
3500 regulator_disable(dsi
->vdds_dsi_reg
);
3501 dsi
->vdds_dsi_enabled
= false;
3504 static void dsi_enable(struct dsi_data
*dsi
)
3508 WARN_ON(!dsi_bus_is_locked(dsi
));
3510 if (WARN_ON(dsi
->iface_enabled
))
3513 mutex_lock(&dsi
->lock
);
3515 r
= dsi_runtime_get(dsi
);
3519 _dsi_initialize_irq(dsi
);
3521 r
= dsi_init_dsi(dsi
);
3525 dsi
->iface_enabled
= true;
3527 mutex_unlock(&dsi
->lock
);
3532 dsi_runtime_put(dsi
);
3534 mutex_unlock(&dsi
->lock
);
3535 DSSDBG("dsi_enable FAILED\n");
3538 static void dsi_disable(struct dsi_data
*dsi
)
3540 WARN_ON(!dsi_bus_is_locked(dsi
));
3542 if (WARN_ON(!dsi
->iface_enabled
))
3545 mutex_lock(&dsi
->lock
);
3547 dsi_sync_vc(dsi
, 0);
3548 dsi_sync_vc(dsi
, 1);
3549 dsi_sync_vc(dsi
, 2);
3550 dsi_sync_vc(dsi
, 3);
3552 dsi_uninit_dsi(dsi
);
3554 dsi_runtime_put(dsi
);
3556 dsi
->iface_enabled
= false;
3558 mutex_unlock(&dsi
->lock
);
3561 static int dsi_enable_te(struct dsi_data
*dsi
, bool enable
)
3563 dsi
->te_enabled
= enable
;
3567 enable_irq(dsi
->te_irq
);
3569 disable_irq(dsi
->te_irq
);
3575 #ifdef PRINT_VERBOSE_VM_TIMINGS
3576 static void print_dsi_vm(const char *str
,
3577 const struct omap_dss_dsi_videomode_timings
*t
)
3579 unsigned long byteclk
= t
->hsclk
/ 4;
3580 int bl
, wc
, pps
, tot
;
3582 wc
= DIV_ROUND_UP(t
->hact
* t
->bitspp
, 8);
3583 pps
= DIV_ROUND_UP(wc
+ 6, t
->ndl
); /* pixel packet size */
3584 bl
= t
->hss
+ t
->hsa
+ t
->hse
+ t
->hbp
+ t
->hfp
;
3587 #define TO_DSI_T(x) ((u32)div64_u64((u64)x * 1000000000llu, byteclk))
3589 pr_debug("%s bck %lu, %u/%u/%u/%u/%u/%u = %u+%u = %u, "
3590 "%u/%u/%u/%u/%u/%u = %u + %u = %u\n",
3593 t
->hss
, t
->hsa
, t
->hse
, t
->hbp
, pps
, t
->hfp
,
3609 static void print_dispc_vm(const char *str
, const struct videomode
*vm
)
3611 unsigned long pck
= vm
->pixelclock
;
3615 bl
= vm
->hsync_len
+ vm
->hback_porch
+ vm
->hfront_porch
;
3618 #define TO_DISPC_T(x) ((u32)div64_u64((u64)x * 1000000000llu, pck))
3620 pr_debug("%s pck %lu, %u/%u/%u/%u = %u+%u = %u, "
3621 "%u/%u/%u/%u = %u + %u = %u\n",
3624 vm
->hsync_len
, vm
->hback_porch
, hact
, vm
->hfront_porch
,
3626 TO_DISPC_T(vm
->hsync_len
),
3627 TO_DISPC_T(vm
->hback_porch
),
3629 TO_DISPC_T(vm
->hfront_porch
),
3636 /* note: this is not quite accurate */
3637 static void print_dsi_dispc_vm(const char *str
,
3638 const struct omap_dss_dsi_videomode_timings
*t
)
3640 struct videomode vm
= { 0 };
3641 unsigned long byteclk
= t
->hsclk
/ 4;
3644 int dsi_hact
, dsi_htot
;
3646 dsi_tput
= (u64
)byteclk
* t
->ndl
* 8;
3647 pck
= (u32
)div64_u64(dsi_tput
, t
->bitspp
);
3648 dsi_hact
= DIV_ROUND_UP(DIV_ROUND_UP(t
->hact
* t
->bitspp
, 8) + 6, t
->ndl
);
3649 dsi_htot
= t
->hss
+ t
->hsa
+ t
->hse
+ t
->hbp
+ dsi_hact
+ t
->hfp
;
3651 vm
.pixelclock
= pck
;
3652 vm
.hsync_len
= div64_u64((u64
)(t
->hsa
+ t
->hse
) * pck
, byteclk
);
3653 vm
.hback_porch
= div64_u64((u64
)t
->hbp
* pck
, byteclk
);
3654 vm
.hfront_porch
= div64_u64((u64
)t
->hfp
* pck
, byteclk
);
3655 vm
.hactive
= t
->hact
;
3657 print_dispc_vm(str
, &vm
);
3659 #endif /* PRINT_VERBOSE_VM_TIMINGS */
3661 static bool dsi_cm_calc_dispc_cb(int lckd
, int pckd
, unsigned long lck
,
3662 unsigned long pck
, void *data
)
3664 struct dsi_clk_calc_ctx
*ctx
= data
;
3665 struct videomode
*vm
= &ctx
->vm
;
3667 ctx
->dispc_cinfo
.lck_div
= lckd
;
3668 ctx
->dispc_cinfo
.pck_div
= pckd
;
3669 ctx
->dispc_cinfo
.lck
= lck
;
3670 ctx
->dispc_cinfo
.pck
= pck
;
3672 *vm
= *ctx
->config
->vm
;
3673 vm
->pixelclock
= pck
;
3674 vm
->hactive
= ctx
->config
->vm
->hactive
;
3675 vm
->vactive
= ctx
->config
->vm
->vactive
;
3676 vm
->hsync_len
= vm
->hfront_porch
= vm
->hback_porch
= vm
->vsync_len
= 1;
3677 vm
->vfront_porch
= vm
->vback_porch
= 0;
3682 static bool dsi_cm_calc_hsdiv_cb(int m_dispc
, unsigned long dispc
,
3685 struct dsi_clk_calc_ctx
*ctx
= data
;
3687 ctx
->dsi_cinfo
.mX
[HSDIV_DISPC
] = m_dispc
;
3688 ctx
->dsi_cinfo
.clkout
[HSDIV_DISPC
] = dispc
;
3690 return dispc_div_calc(ctx
->dsi
->dss
->dispc
, dispc
,
3691 ctx
->req_pck_min
, ctx
->req_pck_max
,
3692 dsi_cm_calc_dispc_cb
, ctx
);
3695 static bool dsi_cm_calc_pll_cb(int n
, int m
, unsigned long fint
,
3696 unsigned long clkdco
, void *data
)
3698 struct dsi_clk_calc_ctx
*ctx
= data
;
3699 struct dsi_data
*dsi
= ctx
->dsi
;
3701 ctx
->dsi_cinfo
.n
= n
;
3702 ctx
->dsi_cinfo
.m
= m
;
3703 ctx
->dsi_cinfo
.fint
= fint
;
3704 ctx
->dsi_cinfo
.clkdco
= clkdco
;
3706 return dss_pll_hsdiv_calc_a(ctx
->pll
, clkdco
, ctx
->req_pck_min
,
3707 dsi
->data
->max_fck_freq
,
3708 dsi_cm_calc_hsdiv_cb
, ctx
);
3711 static bool dsi_cm_calc(struct dsi_data
*dsi
,
3712 const struct omap_dss_dsi_config
*cfg
,
3713 struct dsi_clk_calc_ctx
*ctx
)
3715 unsigned long clkin
;
3717 unsigned long pll_min
, pll_max
;
3718 unsigned long pck
, txbyteclk
;
3720 clkin
= clk_get_rate(dsi
->pll
.clkin
);
3721 bitspp
= mipi_dsi_pixel_format_to_bpp(cfg
->pixel_format
);
3722 ndl
= dsi
->num_lanes_used
- 1;
3725 * Here we should calculate minimum txbyteclk to be able to send the
3726 * frame in time, and also to handle TE. That's not very simple, though,
3727 * especially as we go to LP between each pixel packet due to HW
3728 * "feature". So let's just estimate very roughly and multiply by 1.5.
3730 pck
= cfg
->vm
->pixelclock
;
3732 txbyteclk
= pck
* bitspp
/ 8 / ndl
;
3734 memset(ctx
, 0, sizeof(*ctx
));
3736 ctx
->pll
= &dsi
->pll
;
3738 ctx
->req_pck_min
= pck
;
3739 ctx
->req_pck_nom
= pck
;
3740 ctx
->req_pck_max
= pck
* 3 / 2;
3742 pll_min
= max(cfg
->hs_clk_min
* 4, txbyteclk
* 4 * 4);
3743 pll_max
= cfg
->hs_clk_max
* 4;
3745 return dss_pll_calc_a(ctx
->pll
, clkin
,
3747 dsi_cm_calc_pll_cb
, ctx
);
3750 static bool dsi_vm_calc_blanking(struct dsi_clk_calc_ctx
*ctx
)
3752 struct dsi_data
*dsi
= ctx
->dsi
;
3753 const struct omap_dss_dsi_config
*cfg
= ctx
->config
;
3754 int bitspp
= mipi_dsi_pixel_format_to_bpp(cfg
->pixel_format
);
3755 int ndl
= dsi
->num_lanes_used
- 1;
3756 unsigned long hsclk
= ctx
->dsi_cinfo
.clkdco
/ 4;
3757 unsigned long byteclk
= hsclk
/ 4;
3759 unsigned long dispc_pck
, req_pck_min
, req_pck_nom
, req_pck_max
;
3761 int panel_htot
, panel_hbl
; /* pixels */
3762 int dispc_htot
, dispc_hbl
; /* pixels */
3763 int dsi_htot
, dsi_hact
, dsi_hbl
, hss
, hse
; /* byteclks */
3765 const struct videomode
*req_vm
;
3766 struct videomode
*dispc_vm
;
3767 struct omap_dss_dsi_videomode_timings
*dsi_vm
;
3768 u64 dsi_tput
, dispc_tput
;
3770 dsi_tput
= (u64
)byteclk
* ndl
* 8;
3773 req_pck_min
= ctx
->req_pck_min
;
3774 req_pck_max
= ctx
->req_pck_max
;
3775 req_pck_nom
= ctx
->req_pck_nom
;
3777 dispc_pck
= ctx
->dispc_cinfo
.pck
;
3778 dispc_tput
= (u64
)dispc_pck
* bitspp
;
3780 xres
= req_vm
->hactive
;
3782 panel_hbl
= req_vm
->hfront_porch
+ req_vm
->hback_porch
+
3784 panel_htot
= xres
+ panel_hbl
;
3786 dsi_hact
= DIV_ROUND_UP(DIV_ROUND_UP(xres
* bitspp
, 8) + 6, ndl
);
3789 * When there are no line buffers, DISPC and DSI must have the
3790 * same tput. Otherwise DISPC tput needs to be higher than DSI's.
3792 if (dsi
->line_buffer_size
< xres
* bitspp
/ 8) {
3793 if (dispc_tput
!= dsi_tput
)
3796 if (dispc_tput
< dsi_tput
)
3800 /* DSI tput must be over the min requirement */
3801 if (dsi_tput
< (u64
)bitspp
* req_pck_min
)
3804 /* When non-burst mode, DSI tput must be below max requirement. */
3805 if (cfg
->trans_mode
!= OMAP_DSS_DSI_BURST_MODE
) {
3806 if (dsi_tput
> (u64
)bitspp
* req_pck_max
)
3810 hss
= DIV_ROUND_UP(4, ndl
);
3812 if (cfg
->trans_mode
== OMAP_DSS_DSI_PULSE_MODE
) {
3813 if (ndl
== 3 && req_vm
->hsync_len
== 0)
3816 hse
= DIV_ROUND_UP(4, ndl
);
3821 /* DSI htot to match the panel's nominal pck */
3822 dsi_htot
= div64_u64((u64
)panel_htot
* byteclk
, req_pck_nom
);
3824 /* fail if there would be no time for blanking */
3825 if (dsi_htot
< hss
+ hse
+ dsi_hact
)
3828 /* total DSI blanking needed to achieve panel's TL */
3829 dsi_hbl
= dsi_htot
- dsi_hact
;
3831 /* DISPC htot to match the DSI TL */
3832 dispc_htot
= div64_u64((u64
)dsi_htot
* dispc_pck
, byteclk
);
3834 /* verify that the DSI and DISPC TLs are the same */
3835 if ((u64
)dsi_htot
* dispc_pck
!= (u64
)dispc_htot
* byteclk
)
3838 dispc_hbl
= dispc_htot
- xres
;
3840 /* setup DSI videomode */
3842 dsi_vm
= &ctx
->dsi_vm
;
3843 memset(dsi_vm
, 0, sizeof(*dsi_vm
));
3845 dsi_vm
->hsclk
= hsclk
;
3848 dsi_vm
->bitspp
= bitspp
;
3850 if (cfg
->trans_mode
!= OMAP_DSS_DSI_PULSE_MODE
) {
3852 } else if (ndl
== 3 && req_vm
->hsync_len
== 0) {
3855 hsa
= div64_u64((u64
)req_vm
->hsync_len
* byteclk
, req_pck_nom
);
3856 hsa
= max(hsa
- hse
, 1);
3859 hbp
= div64_u64((u64
)req_vm
->hback_porch
* byteclk
, req_pck_nom
);
3862 hfp
= dsi_hbl
- (hss
+ hsa
+ hse
+ hbp
);
3865 /* we need to take cycles from hbp */
3868 hbp
= max(hbp
- t
, 1);
3869 hfp
= dsi_hbl
- (hss
+ hsa
+ hse
+ hbp
);
3871 if (hfp
< 1 && hsa
> 0) {
3872 /* we need to take cycles from hsa */
3874 hsa
= max(hsa
- t
, 1);
3875 hfp
= dsi_hbl
- (hss
+ hsa
+ hse
+ hbp
);
3886 dsi_vm
->hact
= xres
;
3889 dsi_vm
->vsa
= req_vm
->vsync_len
;
3890 dsi_vm
->vbp
= req_vm
->vback_porch
;
3891 dsi_vm
->vact
= req_vm
->vactive
;
3892 dsi_vm
->vfp
= req_vm
->vfront_porch
;
3894 dsi_vm
->trans_mode
= cfg
->trans_mode
;
3896 dsi_vm
->blanking_mode
= 0;
3897 dsi_vm
->hsa_blanking_mode
= 1;
3898 dsi_vm
->hfp_blanking_mode
= 1;
3899 dsi_vm
->hbp_blanking_mode
= 1;
3901 dsi_vm
->window_sync
= 4;
3903 /* setup DISPC videomode */
3905 dispc_vm
= &ctx
->vm
;
3906 *dispc_vm
= *req_vm
;
3907 dispc_vm
->pixelclock
= dispc_pck
;
3909 if (cfg
->trans_mode
== OMAP_DSS_DSI_PULSE_MODE
) {
3910 hsa
= div64_u64((u64
)req_vm
->hsync_len
* dispc_pck
,
3917 hbp
= div64_u64((u64
)req_vm
->hback_porch
* dispc_pck
, req_pck_nom
);
3920 hfp
= dispc_hbl
- hsa
- hbp
;
3923 /* we need to take cycles from hbp */
3926 hbp
= max(hbp
- t
, 1);
3927 hfp
= dispc_hbl
- hsa
- hbp
;
3930 /* we need to take cycles from hsa */
3932 hsa
= max(hsa
- t
, 1);
3933 hfp
= dispc_hbl
- hsa
- hbp
;
3940 dispc_vm
->hfront_porch
= hfp
;
3941 dispc_vm
->hsync_len
= hsa
;
3942 dispc_vm
->hback_porch
= hbp
;
3948 static bool dsi_vm_calc_dispc_cb(int lckd
, int pckd
, unsigned long lck
,
3949 unsigned long pck
, void *data
)
3951 struct dsi_clk_calc_ctx
*ctx
= data
;
3953 ctx
->dispc_cinfo
.lck_div
= lckd
;
3954 ctx
->dispc_cinfo
.pck_div
= pckd
;
3955 ctx
->dispc_cinfo
.lck
= lck
;
3956 ctx
->dispc_cinfo
.pck
= pck
;
3958 if (dsi_vm_calc_blanking(ctx
) == false)
3961 #ifdef PRINT_VERBOSE_VM_TIMINGS
3962 print_dispc_vm("dispc", &ctx
->vm
);
3963 print_dsi_vm("dsi ", &ctx
->dsi_vm
);
3964 print_dispc_vm("req ", ctx
->config
->vm
);
3965 print_dsi_dispc_vm("act ", &ctx
->dsi_vm
);
3971 static bool dsi_vm_calc_hsdiv_cb(int m_dispc
, unsigned long dispc
,
3974 struct dsi_clk_calc_ctx
*ctx
= data
;
3975 unsigned long pck_max
;
3977 ctx
->dsi_cinfo
.mX
[HSDIV_DISPC
] = m_dispc
;
3978 ctx
->dsi_cinfo
.clkout
[HSDIV_DISPC
] = dispc
;
3981 * In burst mode we can let the dispc pck be arbitrarily high, but it
3982 * limits our scaling abilities. So for now, don't aim too high.
3985 if (ctx
->config
->trans_mode
== OMAP_DSS_DSI_BURST_MODE
)
3986 pck_max
= ctx
->req_pck_max
+ 10000000;
3988 pck_max
= ctx
->req_pck_max
;
3990 return dispc_div_calc(ctx
->dsi
->dss
->dispc
, dispc
,
3991 ctx
->req_pck_min
, pck_max
,
3992 dsi_vm_calc_dispc_cb
, ctx
);
3995 static bool dsi_vm_calc_pll_cb(int n
, int m
, unsigned long fint
,
3996 unsigned long clkdco
, void *data
)
3998 struct dsi_clk_calc_ctx
*ctx
= data
;
3999 struct dsi_data
*dsi
= ctx
->dsi
;
4001 ctx
->dsi_cinfo
.n
= n
;
4002 ctx
->dsi_cinfo
.m
= m
;
4003 ctx
->dsi_cinfo
.fint
= fint
;
4004 ctx
->dsi_cinfo
.clkdco
= clkdco
;
4006 return dss_pll_hsdiv_calc_a(ctx
->pll
, clkdco
, ctx
->req_pck_min
,
4007 dsi
->data
->max_fck_freq
,
4008 dsi_vm_calc_hsdiv_cb
, ctx
);
4011 static bool dsi_vm_calc(struct dsi_data
*dsi
,
4012 const struct omap_dss_dsi_config
*cfg
,
4013 struct dsi_clk_calc_ctx
*ctx
)
4015 const struct videomode
*vm
= cfg
->vm
;
4016 unsigned long clkin
;
4017 unsigned long pll_min
;
4018 unsigned long pll_max
;
4019 int ndl
= dsi
->num_lanes_used
- 1;
4020 int bitspp
= mipi_dsi_pixel_format_to_bpp(cfg
->pixel_format
);
4021 unsigned long byteclk_min
;
4023 clkin
= clk_get_rate(dsi
->pll
.clkin
);
4025 memset(ctx
, 0, sizeof(*ctx
));
4027 ctx
->pll
= &dsi
->pll
;
4030 /* these limits should come from the panel driver */
4031 ctx
->req_pck_min
= vm
->pixelclock
- 1000;
4032 ctx
->req_pck_nom
= vm
->pixelclock
;
4033 ctx
->req_pck_max
= vm
->pixelclock
+ 1000;
4035 byteclk_min
= div64_u64((u64
)ctx
->req_pck_min
* bitspp
, ndl
* 8);
4036 pll_min
= max(cfg
->hs_clk_min
* 4, byteclk_min
* 4 * 4);
4038 if (cfg
->trans_mode
== OMAP_DSS_DSI_BURST_MODE
) {
4039 pll_max
= cfg
->hs_clk_max
* 4;
4041 unsigned long byteclk_max
;
4042 byteclk_max
= div64_u64((u64
)ctx
->req_pck_max
* bitspp
,
4045 pll_max
= byteclk_max
* 4 * 4;
4048 return dss_pll_calc_a(ctx
->pll
, clkin
,
4050 dsi_vm_calc_pll_cb
, ctx
);
4053 static bool dsi_is_video_mode(struct omap_dss_device
*dssdev
)
4055 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
4057 return dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
;
4060 static int __dsi_calc_config(struct dsi_data
*dsi
,
4061 const struct drm_display_mode
*mode
,
4062 struct dsi_clk_calc_ctx
*ctx
)
4064 struct omap_dss_dsi_config cfg
= dsi
->config
;
4065 struct videomode vm
;
4069 drm_display_mode_to_videomode(mode
, &vm
);
4072 cfg
.mode
= dsi
->mode
;
4073 cfg
.pixel_format
= dsi
->pix_fmt
;
4075 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
)
4076 ok
= dsi_vm_calc(dsi
, &cfg
, ctx
);
4078 ok
= dsi_cm_calc(dsi
, &cfg
, ctx
);
4083 dsi_pll_calc_dsi_fck(dsi
, &ctx
->dsi_cinfo
);
4085 r
= dsi_lp_clock_calc(ctx
->dsi_cinfo
.clkout
[HSDIV_DSI
],
4086 cfg
.lp_clk_min
, cfg
.lp_clk_max
, &ctx
->lp_cinfo
);
4093 static int dsi_set_config(struct omap_dss_device
*dssdev
,
4094 const struct drm_display_mode
*mode
)
4096 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
4097 struct dsi_clk_calc_ctx ctx
;
4100 mutex_lock(&dsi
->lock
);
4102 r
= __dsi_calc_config(dsi
, mode
, &ctx
);
4104 DSSERR("failed to find suitable DSI clock settings\n");
4108 dsi
->user_lp_cinfo
= ctx
.lp_cinfo
;
4109 dsi
->user_dsi_cinfo
= ctx
.dsi_cinfo
;
4110 dsi
->user_dispc_cinfo
= ctx
.dispc_cinfo
;
4115 * override interlace, logic level and edge related parameters in
4116 * videomode with default values
4118 dsi
->vm
.flags
&= ~DISPLAY_FLAGS_INTERLACED
;
4119 dsi
->vm
.flags
&= ~DISPLAY_FLAGS_HSYNC_LOW
;
4120 dsi
->vm
.flags
|= DISPLAY_FLAGS_HSYNC_HIGH
;
4121 dsi
->vm
.flags
&= ~DISPLAY_FLAGS_VSYNC_LOW
;
4122 dsi
->vm
.flags
|= DISPLAY_FLAGS_VSYNC_HIGH
;
4124 * HACK: These flags should be handled through the omap_dss_device bus
4125 * flags, but this will only be possible when the DSI encoder will be
4126 * converted to the omapdrm-managed encoder model.
4128 dsi
->vm
.flags
&= ~DISPLAY_FLAGS_PIXDATA_NEGEDGE
;
4129 dsi
->vm
.flags
|= DISPLAY_FLAGS_PIXDATA_POSEDGE
;
4130 dsi
->vm
.flags
&= ~DISPLAY_FLAGS_DE_LOW
;
4131 dsi
->vm
.flags
|= DISPLAY_FLAGS_DE_HIGH
;
4132 dsi
->vm
.flags
&= ~DISPLAY_FLAGS_SYNC_POSEDGE
;
4133 dsi
->vm
.flags
|= DISPLAY_FLAGS_SYNC_NEGEDGE
;
4135 dss_mgr_set_timings(&dsi
->output
, &dsi
->vm
);
4137 dsi
->vm_timings
= ctx
.dsi_vm
;
4139 mutex_unlock(&dsi
->lock
);
4143 mutex_unlock(&dsi
->lock
);
4149 * Return a hardcoded dispc channel for the DSI output. This should work for
4150 * current use cases, but this can be later expanded to either resolve
4151 * the channel in some more dynamic manner, or get the channel as a user
4154 static enum omap_channel
dsi_get_dispc_channel(struct dsi_data
*dsi
)
4156 switch (dsi
->data
->model
) {
4157 case DSI_MODEL_OMAP3
:
4158 return OMAP_DSS_CHANNEL_LCD
;
4160 case DSI_MODEL_OMAP4
:
4161 switch (dsi
->module_id
) {
4163 return OMAP_DSS_CHANNEL_LCD
;
4165 return OMAP_DSS_CHANNEL_LCD2
;
4167 DSSWARN("unsupported module id\n");
4168 return OMAP_DSS_CHANNEL_LCD
;
4171 case DSI_MODEL_OMAP5
:
4172 switch (dsi
->module_id
) {
4174 return OMAP_DSS_CHANNEL_LCD
;
4176 return OMAP_DSS_CHANNEL_LCD3
;
4178 DSSWARN("unsupported module id\n");
4179 return OMAP_DSS_CHANNEL_LCD
;
4183 DSSWARN("unsupported DSS version\n");
4184 return OMAP_DSS_CHANNEL_LCD
;
4188 static ssize_t
_omap_dsi_host_transfer(struct dsi_data
*dsi
, int vc
,
4189 const struct mipi_dsi_msg
*msg
)
4191 struct omap_dss_device
*dssdev
= &dsi
->output
;
4194 dsi_vc_enable_hs(dssdev
, vc
, !(msg
->flags
& MIPI_DSI_MSG_USE_LPM
));
4196 switch (msg
->type
) {
4197 case MIPI_DSI_GENERIC_SHORT_WRITE_0_PARAM
:
4198 case MIPI_DSI_GENERIC_SHORT_WRITE_1_PARAM
:
4199 case MIPI_DSI_GENERIC_SHORT_WRITE_2_PARAM
:
4200 case MIPI_DSI_GENERIC_LONG_WRITE
:
4201 case MIPI_DSI_DCS_SHORT_WRITE
:
4202 case MIPI_DSI_DCS_SHORT_WRITE_PARAM
:
4203 case MIPI_DSI_DCS_LONG_WRITE
:
4204 case MIPI_DSI_SET_MAXIMUM_RETURN_PACKET_SIZE
:
4205 case MIPI_DSI_NULL_PACKET
:
4206 r
= dsi_vc_write_common(dssdev
, vc
, msg
);
4208 case MIPI_DSI_GENERIC_READ_REQUEST_0_PARAM
:
4209 case MIPI_DSI_GENERIC_READ_REQUEST_1_PARAM
:
4210 case MIPI_DSI_GENERIC_READ_REQUEST_2_PARAM
:
4211 r
= dsi_vc_generic_read(dssdev
, vc
, msg
);
4213 case MIPI_DSI_DCS_READ
:
4214 r
= dsi_vc_dcs_read(dssdev
, vc
, msg
);
4224 if (msg
->type
== MIPI_DSI_DCS_SHORT_WRITE
||
4225 msg
->type
== MIPI_DSI_DCS_SHORT_WRITE_PARAM
) {
4226 u8 cmd
= ((u8
*)msg
->tx_buf
)[0];
4228 if (cmd
== MIPI_DCS_SET_TEAR_OFF
)
4229 dsi_enable_te(dsi
, false);
4230 else if (cmd
== MIPI_DCS_SET_TEAR_ON
)
4231 dsi_enable_te(dsi
, true);
4237 static ssize_t
omap_dsi_host_transfer(struct mipi_dsi_host
*host
,
4238 const struct mipi_dsi_msg
*msg
)
4240 struct dsi_data
*dsi
= host_to_omap(host
);
4246 if (!dsi
->iface_enabled
) {
4248 schedule_delayed_work(&dsi
->dsi_disable_work
, msecs_to_jiffies(2000));
4251 r
= _omap_dsi_host_transfer(dsi
, vc
, msg
);
4253 dsi_bus_unlock(dsi
);
4258 static int dsi_get_clocks(struct dsi_data
*dsi
)
4262 clk
= devm_clk_get(dsi
->dev
, "fck");
4264 DSSERR("can't get fck\n");
4265 return PTR_ERR(clk
);
4273 static const struct omapdss_dsi_ops dsi_ops
= {
4274 .update
= dsi_update_all
,
4275 .is_video_mode
= dsi_is_video_mode
,
4278 static irqreturn_t
omap_dsi_te_irq_handler(int irq
, void *dev_id
)
4280 struct dsi_data
*dsi
= (struct dsi_data
*)dev_id
;
4283 old
= atomic_cmpxchg(&dsi
->do_ext_te_update
, 1, 0);
4285 cancel_delayed_work(&dsi
->te_timeout_work
);
4292 static void omap_dsi_te_timeout_work_callback(struct work_struct
*work
)
4294 struct dsi_data
*dsi
=
4295 container_of(work
, struct dsi_data
, te_timeout_work
.work
);
4298 old
= atomic_cmpxchg(&dsi
->do_ext_te_update
, 1, 0);
4300 dev_err(dsi
->dev
, "TE not received for 250ms!\n");
4305 static int omap_dsi_register_te_irq(struct dsi_data
*dsi
,
4306 struct mipi_dsi_device
*client
)
4311 dsi
->te_gpio
= gpiod_get(&client
->dev
, "te-gpios", GPIOD_IN
);
4312 if (IS_ERR(dsi
->te_gpio
)) {
4313 err
= PTR_ERR(dsi
->te_gpio
);
4315 if (err
== -ENOENT
) {
4316 dsi
->te_gpio
= NULL
;
4320 dev_err(dsi
->dev
, "Could not get TE gpio: %d\n", err
);
4324 te_irq
= gpiod_to_irq(dsi
->te_gpio
);
4326 gpiod_put(dsi
->te_gpio
);
4327 dsi
->te_gpio
= NULL
;
4331 dsi
->te_irq
= te_irq
;
4333 irq_set_status_flags(te_irq
, IRQ_NOAUTOEN
);
4335 err
= request_threaded_irq(te_irq
, NULL
, omap_dsi_te_irq_handler
,
4336 IRQF_TRIGGER_RISING
| IRQF_ONESHOT
,
4339 dev_err(dsi
->dev
, "request irq failed with %d\n", err
);
4340 gpiod_put(dsi
->te_gpio
);
4341 dsi
->te_gpio
= NULL
;
4345 INIT_DEFERRABLE_WORK(&dsi
->te_timeout_work
,
4346 omap_dsi_te_timeout_work_callback
);
4348 dev_dbg(dsi
->dev
, "Using GPIO TE\n");
4353 static void omap_dsi_unregister_te_irq(struct dsi_data
*dsi
)
4356 free_irq(dsi
->te_irq
, dsi
);
4357 cancel_delayed_work(&dsi
->te_timeout_work
);
4358 gpiod_put(dsi
->te_gpio
);
4359 dsi
->te_gpio
= NULL
;
4363 static int omap_dsi_host_attach(struct mipi_dsi_host
*host
,
4364 struct mipi_dsi_device
*client
)
4366 struct dsi_data
*dsi
= host_to_omap(host
);
4370 DSSERR("dsi client already attached\n");
4374 if (mipi_dsi_pixel_format_to_bpp(client
->format
) < 0) {
4375 DSSERR("invalid pixel format\n");
4379 atomic_set(&dsi
->do_ext_te_update
, 0);
4381 if (client
->mode_flags
& MIPI_DSI_MODE_VIDEO
) {
4382 dsi
->mode
= OMAP_DSS_DSI_VIDEO_MODE
;
4384 r
= omap_dsi_register_te_irq(dsi
, client
);
4388 dsi
->mode
= OMAP_DSS_DSI_CMD_MODE
;
4391 dsi
->dsidev
= client
;
4392 dsi
->pix_fmt
= client
->format
;
4394 dsi
->config
.hs_clk_min
= 150000000; // TODO: get from client?
4395 dsi
->config
.hs_clk_max
= client
->hs_rate
;
4396 dsi
->config
.lp_clk_min
= 7000000; // TODO: get from client?
4397 dsi
->config
.lp_clk_max
= client
->lp_rate
;
4399 if (client
->mode_flags
& MIPI_DSI_MODE_VIDEO_BURST
)
4400 dsi
->config
.trans_mode
= OMAP_DSS_DSI_BURST_MODE
;
4401 else if (client
->mode_flags
& MIPI_DSI_MODE_VIDEO_SYNC_PULSE
)
4402 dsi
->config
.trans_mode
= OMAP_DSS_DSI_PULSE_MODE
;
4404 dsi
->config
.trans_mode
= OMAP_DSS_DSI_EVENT_MODE
;
4409 static int omap_dsi_host_detach(struct mipi_dsi_host
*host
,
4410 struct mipi_dsi_device
*client
)
4412 struct dsi_data
*dsi
= host_to_omap(host
);
4414 if (WARN_ON(dsi
->dsidev
!= client
))
4417 cancel_delayed_work_sync(&dsi
->dsi_disable_work
);
4421 if (dsi
->iface_enabled
)
4424 dsi_bus_unlock(dsi
);
4426 omap_dsi_unregister_te_irq(dsi
);
4431 static const struct mipi_dsi_host_ops omap_dsi_host_ops
= {
4432 .attach
= omap_dsi_host_attach
,
4433 .detach
= omap_dsi_host_detach
,
4434 .transfer
= omap_dsi_host_transfer
,
4437 /* -----------------------------------------------------------------------------
4441 static const struct dss_pll_ops dsi_pll_ops
= {
4442 .enable
= dsi_pll_enable
,
4443 .disable
= dsi_pll_disable
,
4444 .set_config
= dss_pll_write_config_type_a
,
4447 static const struct dss_pll_hw dss_omap3_dsi_pll_hw
= {
4448 .type
= DSS_PLL_TYPE_A
,
4450 .n_max
= (1 << 7) - 1,
4451 .m_max
= (1 << 11) - 1,
4452 .mX_max
= (1 << 4) - 1,
4454 .fint_max
= 2100000,
4455 .clkdco_low
= 1000000000,
4456 .clkdco_max
= 1800000000,
4468 .has_stopmode
= true,
4469 .has_freqsel
= true,
4470 .has_selfreqdco
= false,
4471 .has_refsel
= false,
4474 static const struct dss_pll_hw dss_omap4_dsi_pll_hw
= {
4475 .type
= DSS_PLL_TYPE_A
,
4477 .n_max
= (1 << 8) - 1,
4478 .m_max
= (1 << 12) - 1,
4479 .mX_max
= (1 << 5) - 1,
4481 .fint_max
= 2500000,
4482 .clkdco_low
= 1000000000,
4483 .clkdco_max
= 1800000000,
4495 .has_stopmode
= true,
4496 .has_freqsel
= false,
4497 .has_selfreqdco
= false,
4498 .has_refsel
= false,
4501 static const struct dss_pll_hw dss_omap5_dsi_pll_hw
= {
4502 .type
= DSS_PLL_TYPE_A
,
4504 .n_max
= (1 << 8) - 1,
4505 .m_max
= (1 << 12) - 1,
4506 .mX_max
= (1 << 5) - 1,
4508 .fint_max
= 52000000,
4509 .clkdco_low
= 1000000000,
4510 .clkdco_max
= 1800000000,
4522 .has_stopmode
= true,
4523 .has_freqsel
= false,
4524 .has_selfreqdco
= true,
4528 static int dsi_init_pll_data(struct dss_device
*dss
, struct dsi_data
*dsi
)
4530 struct dss_pll
*pll
= &dsi
->pll
;
4534 clk
= devm_clk_get(dsi
->dev
, "sys_clk");
4536 DSSERR("can't get sys_clk\n");
4537 return PTR_ERR(clk
);
4540 pll
->name
= dsi
->module_id
== 0 ? "dsi0" : "dsi1";
4541 pll
->id
= dsi
->module_id
== 0 ? DSS_PLL_DSI1
: DSS_PLL_DSI2
;
4543 pll
->base
= dsi
->pll_base
;
4544 pll
->hw
= dsi
->data
->pll_hw
;
4545 pll
->ops
= &dsi_pll_ops
;
4547 r
= dss_pll_register(dss
, pll
);
4554 /* -----------------------------------------------------------------------------
4555 * Component Bind & Unbind
4558 static int dsi_bind(struct device
*dev
, struct device
*master
, void *data
)
4560 struct dss_device
*dss
= dss_get_device(master
);
4561 struct dsi_data
*dsi
= dev_get_drvdata(dev
);
4568 dsi_init_pll_data(dss
, dsi
);
4570 r
= dsi_runtime_get(dsi
);
4574 rev
= dsi_read_reg(dsi
, DSI_REVISION
);
4575 dev_dbg(dev
, "OMAP DSI rev %d.%d\n",
4576 FLD_GET(rev
, 7, 4), FLD_GET(rev
, 3, 0));
4578 dsi
->line_buffer_size
= dsi_get_line_buf_size(dsi
);
4580 dsi_runtime_put(dsi
);
4582 snprintf(name
, sizeof(name
), "dsi%u_regs", dsi
->module_id
+ 1);
4583 dsi
->debugfs
.regs
= dss_debugfs_create_file(dss
, name
,
4584 dsi_dump_dsi_regs
, dsi
);
4585 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
4586 snprintf(name
, sizeof(name
), "dsi%u_irqs", dsi
->module_id
+ 1);
4587 dsi
->debugfs
.irqs
= dss_debugfs_create_file(dss
, name
,
4588 dsi_dump_dsi_irqs
, dsi
);
4590 snprintf(name
, sizeof(name
), "dsi%u_clks", dsi
->module_id
+ 1);
4591 dsi
->debugfs
.clks
= dss_debugfs_create_file(dss
, name
,
4592 dsi_dump_dsi_clocks
, dsi
);
4597 static void dsi_unbind(struct device
*dev
, struct device
*master
, void *data
)
4599 struct dsi_data
*dsi
= dev_get_drvdata(dev
);
4601 dss_debugfs_remove_file(dsi
->debugfs
.clks
);
4602 dss_debugfs_remove_file(dsi
->debugfs
.irqs
);
4603 dss_debugfs_remove_file(dsi
->debugfs
.regs
);
4605 WARN_ON(dsi
->scp_clk_refcount
> 0);
4607 dss_pll_unregister(&dsi
->pll
);
4610 static const struct component_ops dsi_component_ops
= {
4612 .unbind
= dsi_unbind
,
4615 /* -----------------------------------------------------------------------------
4616 * DRM Bridge Operations
4619 static int dsi_bridge_attach(struct drm_bridge
*bridge
,
4620 enum drm_bridge_attach_flags flags
)
4622 struct dsi_data
*dsi
= drm_bridge_to_dsi(bridge
);
4624 if (!(flags
& DRM_BRIDGE_ATTACH_NO_CONNECTOR
))
4627 return drm_bridge_attach(bridge
->encoder
, dsi
->output
.next_bridge
,
4631 static enum drm_mode_status
4632 dsi_bridge_mode_valid(struct drm_bridge
*bridge
,
4633 const struct drm_display_info
*info
,
4634 const struct drm_display_mode
*mode
)
4636 struct dsi_data
*dsi
= drm_bridge_to_dsi(bridge
);
4637 struct dsi_clk_calc_ctx ctx
;
4640 mutex_lock(&dsi
->lock
);
4641 r
= __dsi_calc_config(dsi
, mode
, &ctx
);
4642 mutex_unlock(&dsi
->lock
);
4644 return r
? MODE_CLOCK_RANGE
: MODE_OK
;
4647 static void dsi_bridge_mode_set(struct drm_bridge
*bridge
,
4648 const struct drm_display_mode
*mode
,
4649 const struct drm_display_mode
*adjusted_mode
)
4651 struct dsi_data
*dsi
= drm_bridge_to_dsi(bridge
);
4653 dsi_set_config(&dsi
->output
, adjusted_mode
);
4656 static void dsi_bridge_enable(struct drm_bridge
*bridge
)
4658 struct dsi_data
*dsi
= drm_bridge_to_dsi(bridge
);
4659 struct omap_dss_device
*dssdev
= &dsi
->output
;
4661 cancel_delayed_work_sync(&dsi
->dsi_disable_work
);
4665 if (!dsi
->iface_enabled
)
4668 dsi_enable_video_output(dssdev
, VC_VIDEO
);
4670 dsi
->video_enabled
= true;
4672 dsi_bus_unlock(dsi
);
4675 static void dsi_bridge_disable(struct drm_bridge
*bridge
)
4677 struct dsi_data
*dsi
= drm_bridge_to_dsi(bridge
);
4678 struct omap_dss_device
*dssdev
= &dsi
->output
;
4680 cancel_delayed_work_sync(&dsi
->dsi_disable_work
);
4684 dsi
->video_enabled
= false;
4686 dsi_disable_video_output(dssdev
, VC_VIDEO
);
4690 dsi_bus_unlock(dsi
);
4693 static const struct drm_bridge_funcs dsi_bridge_funcs
= {
4694 .attach
= dsi_bridge_attach
,
4695 .mode_valid
= dsi_bridge_mode_valid
,
4696 .mode_set
= dsi_bridge_mode_set
,
4697 .enable
= dsi_bridge_enable
,
4698 .disable
= dsi_bridge_disable
,
4701 static void dsi_bridge_init(struct dsi_data
*dsi
)
4703 dsi
->bridge
.funcs
= &dsi_bridge_funcs
;
4704 dsi
->bridge
.of_node
= dsi
->host
.dev
->of_node
;
4705 dsi
->bridge
.type
= DRM_MODE_CONNECTOR_DSI
;
4707 drm_bridge_add(&dsi
->bridge
);
4710 static void dsi_bridge_cleanup(struct dsi_data
*dsi
)
4712 drm_bridge_remove(&dsi
->bridge
);
4715 /* -----------------------------------------------------------------------------
4716 * Probe & Remove, Suspend & Resume
4719 static int dsi_init_output(struct dsi_data
*dsi
)
4721 struct omap_dss_device
*out
= &dsi
->output
;
4724 dsi_bridge_init(dsi
);
4726 out
->dev
= dsi
->dev
;
4727 out
->id
= dsi
->module_id
== 0 ?
4728 OMAP_DSS_OUTPUT_DSI1
: OMAP_DSS_OUTPUT_DSI2
;
4730 out
->type
= OMAP_DISPLAY_TYPE_DSI
;
4731 out
->name
= dsi
->module_id
== 0 ? "dsi.0" : "dsi.1";
4732 out
->dispc_channel
= dsi_get_dispc_channel(dsi
);
4733 out
->dsi_ops
= &dsi_ops
;
4735 out
->bus_flags
= DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE
4736 | DRM_BUS_FLAG_DE_HIGH
4737 | DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE
;
4739 r
= omapdss_device_init_output(out
, &dsi
->bridge
);
4741 dsi_bridge_cleanup(dsi
);
4745 omapdss_device_register(out
);
4750 static void dsi_uninit_output(struct dsi_data
*dsi
)
4752 struct omap_dss_device
*out
= &dsi
->output
;
4754 omapdss_device_unregister(out
);
4755 omapdss_device_cleanup_output(out
);
4756 dsi_bridge_cleanup(dsi
);
4759 static int dsi_probe_of(struct dsi_data
*dsi
)
4761 struct device_node
*node
= dsi
->dev
->of_node
;
4762 struct property
*prop
;
4766 struct device_node
*ep
;
4768 ep
= of_graph_get_endpoint_by_regs(node
, 0, 0);
4772 prop
= of_find_property(ep
, "lanes", &len
);
4774 dev_err(dsi
->dev
, "failed to find lane data\n");
4779 num_pins
= len
/ sizeof(u32
);
4781 if (num_pins
< 4 || num_pins
% 2 != 0 ||
4782 num_pins
> dsi
->num_lanes_supported
* 2) {
4783 dev_err(dsi
->dev
, "bad number of lanes\n");
4788 r
= of_property_read_u32_array(ep
, "lanes", lane_arr
, num_pins
);
4790 dev_err(dsi
->dev
, "failed to read lane data\n");
4794 r
= dsi_configure_pins(dsi
, num_pins
, lane_arr
);
4796 dev_err(dsi
->dev
, "failed to configure pins");
4809 static const struct dsi_of_data dsi_of_data_omap34xx
= {
4810 .model
= DSI_MODEL_OMAP3
,
4811 .pll_hw
= &dss_omap3_dsi_pll_hw
,
4812 .modules
= (const struct dsi_module_id_data
[]) {
4813 { .address
= 0x4804fc00, .id
= 0, },
4816 .max_fck_freq
= 173000000,
4817 .max_pll_lpdiv
= (1 << 13) - 1,
4818 .quirks
= DSI_QUIRK_REVERSE_TXCLKESC
,
4821 static const struct dsi_of_data dsi_of_data_omap36xx
= {
4822 .model
= DSI_MODEL_OMAP3
,
4823 .pll_hw
= &dss_omap3_dsi_pll_hw
,
4824 .modules
= (const struct dsi_module_id_data
[]) {
4825 { .address
= 0x4804fc00, .id
= 0, },
4828 .max_fck_freq
= 173000000,
4829 .max_pll_lpdiv
= (1 << 13) - 1,
4830 .quirks
= DSI_QUIRK_PLL_PWR_BUG
,
4833 static const struct dsi_of_data dsi_of_data_omap4
= {
4834 .model
= DSI_MODEL_OMAP4
,
4835 .pll_hw
= &dss_omap4_dsi_pll_hw
,
4836 .modules
= (const struct dsi_module_id_data
[]) {
4837 { .address
= 0x58004000, .id
= 0, },
4838 { .address
= 0x58005000, .id
= 1, },
4841 .max_fck_freq
= 170000000,
4842 .max_pll_lpdiv
= (1 << 13) - 1,
4843 .quirks
= DSI_QUIRK_DCS_CMD_CONFIG_VC
| DSI_QUIRK_VC_OCP_WIDTH
4847 static const struct dsi_of_data dsi_of_data_omap5
= {
4848 .model
= DSI_MODEL_OMAP5
,
4849 .pll_hw
= &dss_omap5_dsi_pll_hw
,
4850 .modules
= (const struct dsi_module_id_data
[]) {
4851 { .address
= 0x58004000, .id
= 0, },
4852 { .address
= 0x58009000, .id
= 1, },
4855 .max_fck_freq
= 209250000,
4856 .max_pll_lpdiv
= (1 << 13) - 1,
4857 .quirks
= DSI_QUIRK_DCS_CMD_CONFIG_VC
| DSI_QUIRK_VC_OCP_WIDTH
4858 | DSI_QUIRK_GNQ
| DSI_QUIRK_PHY_DCC
,
4861 static const struct of_device_id dsi_of_match
[] = {
4862 { .compatible
= "ti,omap3-dsi", .data
= &dsi_of_data_omap36xx
, },
4863 { .compatible
= "ti,omap4-dsi", .data
= &dsi_of_data_omap4
, },
4864 { .compatible
= "ti,omap5-dsi", .data
= &dsi_of_data_omap5
, },
4868 static const struct soc_device_attribute dsi_soc_devices
[] = {
4869 { .machine
= "OMAP3[45]*", .data
= &dsi_of_data_omap34xx
},
4870 { .machine
= "AM35*", .data
= &dsi_of_data_omap34xx
},
4874 static void omap_dsi_disable_work_callback(struct work_struct
*work
)
4876 struct dsi_data
*dsi
= container_of(work
, struct dsi_data
, dsi_disable_work
.work
);
4880 if (dsi
->iface_enabled
&& !dsi
->video_enabled
)
4883 dsi_bus_unlock(dsi
);
4886 static int dsi_probe(struct platform_device
*pdev
)
4888 const struct soc_device_attribute
*soc
;
4889 const struct dsi_module_id_data
*d
;
4890 struct device
*dev
= &pdev
->dev
;
4891 struct dsi_data
*dsi
;
4892 struct resource
*dsi_mem
;
4896 dsi
= devm_kzalloc(dev
, sizeof(*dsi
), GFP_KERNEL
);
4901 dev_set_drvdata(dev
, dsi
);
4903 spin_lock_init(&dsi
->irq_lock
);
4904 spin_lock_init(&dsi
->errors_lock
);
4907 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
4908 spin_lock_init(&dsi
->irq_stats_lock
);
4909 dsi
->irq_stats
.last_reset
= jiffies
;
4912 mutex_init(&dsi
->lock
);
4913 sema_init(&dsi
->bus_lock
, 1);
4915 INIT_DEFERRABLE_WORK(&dsi
->framedone_timeout_work
,
4916 dsi_framedone_timeout_work_callback
);
4918 INIT_DEFERRABLE_WORK(&dsi
->dsi_disable_work
, omap_dsi_disable_work_callback
);
4920 #ifdef DSI_CATCH_MISSING_TE
4921 timer_setup(&dsi
->te_timer
, dsi_te_timeout
, 0);
4924 dsi_mem
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "proto");
4925 dsi
->proto_base
= devm_ioremap_resource(dev
, dsi_mem
);
4926 if (IS_ERR(dsi
->proto_base
))
4927 return PTR_ERR(dsi
->proto_base
);
4929 dsi
->phy_base
= devm_platform_ioremap_resource_byname(pdev
, "phy");
4930 if (IS_ERR(dsi
->phy_base
))
4931 return PTR_ERR(dsi
->phy_base
);
4933 dsi
->pll_base
= devm_platform_ioremap_resource_byname(pdev
, "pll");
4934 if (IS_ERR(dsi
->pll_base
))
4935 return PTR_ERR(dsi
->pll_base
);
4937 dsi
->irq
= platform_get_irq(pdev
, 0);
4939 DSSERR("platform_get_irq failed\n");
4943 r
= devm_request_irq(dev
, dsi
->irq
, omap_dsi_irq_handler
,
4944 IRQF_SHARED
, dev_name(dev
), dsi
);
4946 DSSERR("request_irq failed\n");
4950 dsi
->vdds_dsi_reg
= devm_regulator_get(dev
, "vdd");
4951 if (IS_ERR(dsi
->vdds_dsi_reg
)) {
4952 if (PTR_ERR(dsi
->vdds_dsi_reg
) != -EPROBE_DEFER
)
4953 DSSERR("can't get DSI VDD regulator\n");
4954 return PTR_ERR(dsi
->vdds_dsi_reg
);
4957 soc
= soc_device_match(dsi_soc_devices
);
4959 dsi
->data
= soc
->data
;
4961 dsi
->data
= of_match_node(dsi_of_match
, dev
->of_node
)->data
;
4963 d
= dsi
->data
->modules
;
4964 while (d
->address
!= 0 && d
->address
!= dsi_mem
->start
)
4967 if (d
->address
== 0) {
4968 DSSERR("unsupported DSI module\n");
4972 dsi
->module_id
= d
->id
;
4974 if (dsi
->data
->model
== DSI_MODEL_OMAP4
||
4975 dsi
->data
->model
== DSI_MODEL_OMAP5
) {
4976 struct device_node
*np
;
4979 * The OMAP4/5 display DT bindings don't reference the padconf
4980 * syscon. Our only option to retrieve it is to find it by name.
4982 np
= of_find_node_by_name(NULL
,
4983 dsi
->data
->model
== DSI_MODEL_OMAP4
?
4984 "omap4_padconf_global" : "omap5_padconf_global");
4988 dsi
->syscon
= syscon_node_to_regmap(np
);
4992 /* DSI VCs initialization */
4993 for (i
= 0; i
< ARRAY_SIZE(dsi
->vc
); i
++)
4994 dsi
->vc
[i
].source
= DSI_VC_SOURCE_L4
;
4996 r
= dsi_get_clocks(dsi
);
5000 pm_runtime_enable(dev
);
5002 /* DSI on OMAP3 doesn't have register DSI_GNQ, set number
5003 * of data to 3 by default */
5004 if (dsi
->data
->quirks
& DSI_QUIRK_GNQ
) {
5005 dsi_runtime_get(dsi
);
5007 dsi
->num_lanes_supported
= 1 + REG_GET(dsi
, DSI_GNQ
, 11, 9);
5008 dsi_runtime_put(dsi
);
5010 dsi
->num_lanes_supported
= 3;
5013 dsi
->host
.ops
= &omap_dsi_host_ops
;
5014 dsi
->host
.dev
= &pdev
->dev
;
5016 r
= dsi_probe_of(dsi
);
5018 DSSERR("Invalid DSI DT data\n");
5019 goto err_pm_disable
;
5022 r
= mipi_dsi_host_register(&dsi
->host
);
5024 dev_err(&pdev
->dev
, "failed to register DSI host: %d\n", r
);
5025 goto err_pm_disable
;
5028 r
= dsi_init_output(dsi
);
5030 goto err_dsi_host_unregister
;
5032 r
= component_add(&pdev
->dev
, &dsi_component_ops
);
5034 goto err_uninit_output
;
5039 dsi_uninit_output(dsi
);
5040 err_dsi_host_unregister
:
5041 mipi_dsi_host_unregister(&dsi
->host
);
5043 pm_runtime_disable(dev
);
5047 static void dsi_remove(struct platform_device
*pdev
)
5049 struct dsi_data
*dsi
= platform_get_drvdata(pdev
);
5051 component_del(&pdev
->dev
, &dsi_component_ops
);
5053 dsi_uninit_output(dsi
);
5055 mipi_dsi_host_unregister(&dsi
->host
);
5057 pm_runtime_disable(&pdev
->dev
);
5059 if (dsi
->vdds_dsi_reg
!= NULL
&& dsi
->vdds_dsi_enabled
) {
5060 regulator_disable(dsi
->vdds_dsi_reg
);
5061 dsi
->vdds_dsi_enabled
= false;
5065 static __maybe_unused
int dsi_runtime_suspend(struct device
*dev
)
5067 struct dsi_data
*dsi
= dev_get_drvdata(dev
);
5069 dsi
->is_enabled
= false;
5070 /* ensure the irq handler sees the is_enabled value */
5072 /* wait for current handler to finish before turning the DSI off */
5073 synchronize_irq(dsi
->irq
);
5078 static __maybe_unused
int dsi_runtime_resume(struct device
*dev
)
5080 struct dsi_data
*dsi
= dev_get_drvdata(dev
);
5082 dsi
->is_enabled
= true;
5083 /* ensure the irq handler sees the is_enabled value */
5089 static const struct dev_pm_ops dsi_pm_ops
= {
5090 SET_RUNTIME_PM_OPS(dsi_runtime_suspend
, dsi_runtime_resume
, NULL
)
5091 SET_LATE_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
, pm_runtime_force_resume
)
5094 struct platform_driver omap_dsihw_driver
= {
5096 .remove
= dsi_remove
,
5098 .name
= "omapdss_dsi",
5100 .of_match_table
= dsi_of_match
,
5101 .suppress_bind_attrs
= true,