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/delay.h>
18 #include <linux/mutex.h>
19 #include <linux/module.h>
20 #include <linux/semaphore.h>
21 #include <linux/seq_file.h>
22 #include <linux/platform_device.h>
23 #include <linux/regulator/consumer.h>
24 #include <linux/wait.h>
25 #include <linux/workqueue.h>
26 #include <linux/sched.h>
27 #include <linux/slab.h>
28 #include <linux/debugfs.h>
29 #include <linux/pm_runtime.h>
31 #include <linux/of_graph.h>
32 #include <linux/of_platform.h>
33 #include <linux/component.h>
34 #include <linux/sys_soc.h>
36 #include <video/mipi_display.h>
41 #define DSI_CATCH_MISSING_TE
43 struct dsi_reg
{ u16 module
; u16 idx
; };
45 #define DSI_REG(mod, idx) ((const struct dsi_reg) { mod, idx })
47 /* DSI Protocol Engine */
50 #define DSI_PROTO_SZ 0x200
52 #define DSI_REVISION DSI_REG(DSI_PROTO, 0x0000)
53 #define DSI_SYSCONFIG DSI_REG(DSI_PROTO, 0x0010)
54 #define DSI_SYSSTATUS DSI_REG(DSI_PROTO, 0x0014)
55 #define DSI_IRQSTATUS DSI_REG(DSI_PROTO, 0x0018)
56 #define DSI_IRQENABLE DSI_REG(DSI_PROTO, 0x001C)
57 #define DSI_CTRL DSI_REG(DSI_PROTO, 0x0040)
58 #define DSI_GNQ DSI_REG(DSI_PROTO, 0x0044)
59 #define DSI_COMPLEXIO_CFG1 DSI_REG(DSI_PROTO, 0x0048)
60 #define DSI_COMPLEXIO_IRQ_STATUS DSI_REG(DSI_PROTO, 0x004C)
61 #define DSI_COMPLEXIO_IRQ_ENABLE DSI_REG(DSI_PROTO, 0x0050)
62 #define DSI_CLK_CTRL DSI_REG(DSI_PROTO, 0x0054)
63 #define DSI_TIMING1 DSI_REG(DSI_PROTO, 0x0058)
64 #define DSI_TIMING2 DSI_REG(DSI_PROTO, 0x005C)
65 #define DSI_VM_TIMING1 DSI_REG(DSI_PROTO, 0x0060)
66 #define DSI_VM_TIMING2 DSI_REG(DSI_PROTO, 0x0064)
67 #define DSI_VM_TIMING3 DSI_REG(DSI_PROTO, 0x0068)
68 #define DSI_CLK_TIMING DSI_REG(DSI_PROTO, 0x006C)
69 #define DSI_TX_FIFO_VC_SIZE DSI_REG(DSI_PROTO, 0x0070)
70 #define DSI_RX_FIFO_VC_SIZE DSI_REG(DSI_PROTO, 0x0074)
71 #define DSI_COMPLEXIO_CFG2 DSI_REG(DSI_PROTO, 0x0078)
72 #define DSI_RX_FIFO_VC_FULLNESS DSI_REG(DSI_PROTO, 0x007C)
73 #define DSI_VM_TIMING4 DSI_REG(DSI_PROTO, 0x0080)
74 #define DSI_TX_FIFO_VC_EMPTINESS DSI_REG(DSI_PROTO, 0x0084)
75 #define DSI_VM_TIMING5 DSI_REG(DSI_PROTO, 0x0088)
76 #define DSI_VM_TIMING6 DSI_REG(DSI_PROTO, 0x008C)
77 #define DSI_VM_TIMING7 DSI_REG(DSI_PROTO, 0x0090)
78 #define DSI_STOPCLK_TIMING DSI_REG(DSI_PROTO, 0x0094)
79 #define DSI_VC_CTRL(n) DSI_REG(DSI_PROTO, 0x0100 + (n * 0x20))
80 #define DSI_VC_TE(n) DSI_REG(DSI_PROTO, 0x0104 + (n * 0x20))
81 #define DSI_VC_LONG_PACKET_HEADER(n) DSI_REG(DSI_PROTO, 0x0108 + (n * 0x20))
82 #define DSI_VC_LONG_PACKET_PAYLOAD(n) DSI_REG(DSI_PROTO, 0x010C + (n * 0x20))
83 #define DSI_VC_SHORT_PACKET_HEADER(n) DSI_REG(DSI_PROTO, 0x0110 + (n * 0x20))
84 #define DSI_VC_IRQSTATUS(n) DSI_REG(DSI_PROTO, 0x0118 + (n * 0x20))
85 #define DSI_VC_IRQENABLE(n) DSI_REG(DSI_PROTO, 0x011C + (n * 0x20))
90 #define DSI_PHY_OFFSET 0x200
91 #define DSI_PHY_SZ 0x40
93 #define DSI_DSIPHY_CFG0 DSI_REG(DSI_PHY, 0x0000)
94 #define DSI_DSIPHY_CFG1 DSI_REG(DSI_PHY, 0x0004)
95 #define DSI_DSIPHY_CFG2 DSI_REG(DSI_PHY, 0x0008)
96 #define DSI_DSIPHY_CFG5 DSI_REG(DSI_PHY, 0x0014)
97 #define DSI_DSIPHY_CFG10 DSI_REG(DSI_PHY, 0x0028)
99 /* DSI_PLL_CTRL_SCP */
102 #define DSI_PLL_OFFSET 0x300
103 #define DSI_PLL_SZ 0x20
105 #define DSI_PLL_CONTROL DSI_REG(DSI_PLL, 0x0000)
106 #define DSI_PLL_STATUS DSI_REG(DSI_PLL, 0x0004)
107 #define DSI_PLL_GO DSI_REG(DSI_PLL, 0x0008)
108 #define DSI_PLL_CONFIGURATION1 DSI_REG(DSI_PLL, 0x000C)
109 #define DSI_PLL_CONFIGURATION2 DSI_REG(DSI_PLL, 0x0010)
111 #define REG_GET(dsi, idx, start, end) \
112 FLD_GET(dsi_read_reg(dsi, idx), start, end)
114 #define REG_FLD_MOD(dsi, idx, val, start, end) \
115 dsi_write_reg(dsi, idx, FLD_MOD(dsi_read_reg(dsi, idx), val, start, end))
117 /* Global interrupts */
118 #define DSI_IRQ_VC0 (1 << 0)
119 #define DSI_IRQ_VC1 (1 << 1)
120 #define DSI_IRQ_VC2 (1 << 2)
121 #define DSI_IRQ_VC3 (1 << 3)
122 #define DSI_IRQ_WAKEUP (1 << 4)
123 #define DSI_IRQ_RESYNC (1 << 5)
124 #define DSI_IRQ_PLL_LOCK (1 << 7)
125 #define DSI_IRQ_PLL_UNLOCK (1 << 8)
126 #define DSI_IRQ_PLL_RECALL (1 << 9)
127 #define DSI_IRQ_COMPLEXIO_ERR (1 << 10)
128 #define DSI_IRQ_HS_TX_TIMEOUT (1 << 14)
129 #define DSI_IRQ_LP_RX_TIMEOUT (1 << 15)
130 #define DSI_IRQ_TE_TRIGGER (1 << 16)
131 #define DSI_IRQ_ACK_TRIGGER (1 << 17)
132 #define DSI_IRQ_SYNC_LOST (1 << 18)
133 #define DSI_IRQ_LDO_POWER_GOOD (1 << 19)
134 #define DSI_IRQ_TA_TIMEOUT (1 << 20)
135 #define DSI_IRQ_ERROR_MASK \
136 (DSI_IRQ_HS_TX_TIMEOUT | DSI_IRQ_LP_RX_TIMEOUT | DSI_IRQ_SYNC_LOST | \
138 #define DSI_IRQ_CHANNEL_MASK 0xf
140 /* Virtual channel interrupts */
141 #define DSI_VC_IRQ_CS (1 << 0)
142 #define DSI_VC_IRQ_ECC_CORR (1 << 1)
143 #define DSI_VC_IRQ_PACKET_SENT (1 << 2)
144 #define DSI_VC_IRQ_FIFO_TX_OVF (1 << 3)
145 #define DSI_VC_IRQ_FIFO_RX_OVF (1 << 4)
146 #define DSI_VC_IRQ_BTA (1 << 5)
147 #define DSI_VC_IRQ_ECC_NO_CORR (1 << 6)
148 #define DSI_VC_IRQ_FIFO_TX_UDF (1 << 7)
149 #define DSI_VC_IRQ_PP_BUSY_CHANGE (1 << 8)
150 #define DSI_VC_IRQ_ERROR_MASK \
151 (DSI_VC_IRQ_CS | DSI_VC_IRQ_ECC_CORR | DSI_VC_IRQ_FIFO_TX_OVF | \
152 DSI_VC_IRQ_FIFO_RX_OVF | DSI_VC_IRQ_ECC_NO_CORR | \
153 DSI_VC_IRQ_FIFO_TX_UDF)
155 /* ComplexIO interrupts */
156 #define DSI_CIO_IRQ_ERRSYNCESC1 (1 << 0)
157 #define DSI_CIO_IRQ_ERRSYNCESC2 (1 << 1)
158 #define DSI_CIO_IRQ_ERRSYNCESC3 (1 << 2)
159 #define DSI_CIO_IRQ_ERRSYNCESC4 (1 << 3)
160 #define DSI_CIO_IRQ_ERRSYNCESC5 (1 << 4)
161 #define DSI_CIO_IRQ_ERRESC1 (1 << 5)
162 #define DSI_CIO_IRQ_ERRESC2 (1 << 6)
163 #define DSI_CIO_IRQ_ERRESC3 (1 << 7)
164 #define DSI_CIO_IRQ_ERRESC4 (1 << 8)
165 #define DSI_CIO_IRQ_ERRESC5 (1 << 9)
166 #define DSI_CIO_IRQ_ERRCONTROL1 (1 << 10)
167 #define DSI_CIO_IRQ_ERRCONTROL2 (1 << 11)
168 #define DSI_CIO_IRQ_ERRCONTROL3 (1 << 12)
169 #define DSI_CIO_IRQ_ERRCONTROL4 (1 << 13)
170 #define DSI_CIO_IRQ_ERRCONTROL5 (1 << 14)
171 #define DSI_CIO_IRQ_STATEULPS1 (1 << 15)
172 #define DSI_CIO_IRQ_STATEULPS2 (1 << 16)
173 #define DSI_CIO_IRQ_STATEULPS3 (1 << 17)
174 #define DSI_CIO_IRQ_STATEULPS4 (1 << 18)
175 #define DSI_CIO_IRQ_STATEULPS5 (1 << 19)
176 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_1 (1 << 20)
177 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_1 (1 << 21)
178 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_2 (1 << 22)
179 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_2 (1 << 23)
180 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_3 (1 << 24)
181 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_3 (1 << 25)
182 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_4 (1 << 26)
183 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_4 (1 << 27)
184 #define DSI_CIO_IRQ_ERRCONTENTIONLP0_5 (1 << 28)
185 #define DSI_CIO_IRQ_ERRCONTENTIONLP1_5 (1 << 29)
186 #define DSI_CIO_IRQ_ULPSACTIVENOT_ALL0 (1 << 30)
187 #define DSI_CIO_IRQ_ULPSACTIVENOT_ALL1 (1 << 31)
188 #define DSI_CIO_IRQ_ERROR_MASK \
189 (DSI_CIO_IRQ_ERRSYNCESC1 | DSI_CIO_IRQ_ERRSYNCESC2 | \
190 DSI_CIO_IRQ_ERRSYNCESC3 | DSI_CIO_IRQ_ERRSYNCESC4 | \
191 DSI_CIO_IRQ_ERRSYNCESC5 | \
192 DSI_CIO_IRQ_ERRESC1 | DSI_CIO_IRQ_ERRESC2 | \
193 DSI_CIO_IRQ_ERRESC3 | DSI_CIO_IRQ_ERRESC4 | \
194 DSI_CIO_IRQ_ERRESC5 | \
195 DSI_CIO_IRQ_ERRCONTROL1 | DSI_CIO_IRQ_ERRCONTROL2 | \
196 DSI_CIO_IRQ_ERRCONTROL3 | DSI_CIO_IRQ_ERRCONTROL4 | \
197 DSI_CIO_IRQ_ERRCONTROL5 | \
198 DSI_CIO_IRQ_ERRCONTENTIONLP0_1 | DSI_CIO_IRQ_ERRCONTENTIONLP1_1 | \
199 DSI_CIO_IRQ_ERRCONTENTIONLP0_2 | DSI_CIO_IRQ_ERRCONTENTIONLP1_2 | \
200 DSI_CIO_IRQ_ERRCONTENTIONLP0_3 | DSI_CIO_IRQ_ERRCONTENTIONLP1_3 | \
201 DSI_CIO_IRQ_ERRCONTENTIONLP0_4 | DSI_CIO_IRQ_ERRCONTENTIONLP1_4 | \
202 DSI_CIO_IRQ_ERRCONTENTIONLP0_5 | DSI_CIO_IRQ_ERRCONTENTIONLP1_5)
204 typedef void (*omap_dsi_isr_t
) (void *arg
, u32 mask
);
207 static int dsi_display_init_dispc(struct dsi_data
*dsi
);
208 static void dsi_display_uninit_dispc(struct dsi_data
*dsi
);
210 static int dsi_vc_send_null(struct dsi_data
*dsi
, int channel
);
212 /* DSI PLL HSDIV indices */
213 #define HSDIV_DISPC 0
216 #define DSI_MAX_NR_ISRS 2
217 #define DSI_MAX_NR_LANES 5
225 enum dsi_lane_function
{
234 struct dsi_lane_config
{
235 enum dsi_lane_function function
;
239 struct dsi_isr_data
{
247 DSI_FIFO_SIZE_32
= 1,
248 DSI_FIFO_SIZE_64
= 2,
249 DSI_FIFO_SIZE_96
= 3,
250 DSI_FIFO_SIZE_128
= 4,
254 DSI_VC_SOURCE_L4
= 0,
258 struct dsi_irq_stats
{
259 unsigned long last_reset
;
260 unsigned int irq_count
;
261 unsigned int dsi_irqs
[32];
262 unsigned int vc_irqs
[4][32];
263 unsigned int cio_irqs
[32];
266 struct dsi_isr_tables
{
267 struct dsi_isr_data isr_table
[DSI_MAX_NR_ISRS
];
268 struct dsi_isr_data isr_table_vc
[4][DSI_MAX_NR_ISRS
];
269 struct dsi_isr_data isr_table_cio
[DSI_MAX_NR_ISRS
];
272 struct dsi_clk_calc_ctx
{
273 struct dsi_data
*dsi
;
278 const struct omap_dss_dsi_config
*config
;
280 unsigned long req_pck_min
, req_pck_nom
, req_pck_max
;
284 struct dss_pll_clock_info dsi_cinfo
;
285 struct dispc_clock_info dispc_cinfo
;
288 struct omap_dss_dsi_videomode_timings dsi_vm
;
291 struct dsi_lp_clock_info
{
292 unsigned long lp_clk
;
296 struct dsi_module_id_data
{
302 DSI_QUIRK_PLL_PWR_BUG
= (1 << 0), /* DSI-PLL power command 0x3 is not working */
303 DSI_QUIRK_DCS_CMD_CONFIG_VC
= (1 << 1),
304 DSI_QUIRK_VC_OCP_WIDTH
= (1 << 2),
305 DSI_QUIRK_REVERSE_TXCLKESC
= (1 << 3),
306 DSI_QUIRK_GNQ
= (1 << 4),
307 DSI_QUIRK_PHY_DCC
= (1 << 5),
311 enum dsi_model model
;
312 const struct dss_pll_hw
*pll_hw
;
313 const struct dsi_module_id_data
*modules
;
314 unsigned int max_fck_freq
;
315 unsigned int max_pll_lpdiv
;
316 enum dsi_quirks quirks
;
321 void __iomem
*proto_base
;
322 void __iomem
*phy_base
;
323 void __iomem
*pll_base
;
325 const struct dsi_of_data
*data
;
333 struct regmap
*syscon
;
334 struct dss_device
*dss
;
336 struct dispc_clock_info user_dispc_cinfo
;
337 struct dss_pll_clock_info user_dsi_cinfo
;
339 struct dsi_lp_clock_info user_lp_cinfo
;
340 struct dsi_lp_clock_info current_lp_cinfo
;
344 bool vdds_dsi_enabled
;
345 struct regulator
*vdds_dsi_reg
;
348 enum dsi_vc_source source
;
349 struct omap_dss_device
*dssdev
;
350 enum fifo_size tx_fifo_size
;
351 enum fifo_size rx_fifo_size
;
356 struct semaphore bus_lock
;
359 struct dsi_isr_tables isr_tables
;
360 /* space for a copy used by the interrupt handler */
361 struct dsi_isr_tables isr_tables_copy
;
364 #ifdef DSI_PERF_MEASURE
365 unsigned int update_bytes
;
371 void (*framedone_callback
)(int, void *);
372 void *framedone_data
;
374 struct delayed_work framedone_timeout_work
;
376 #ifdef DSI_CATCH_MISSING_TE
377 struct timer_list te_timer
;
380 unsigned long cache_req_pck
;
381 unsigned long cache_clk_freq
;
382 struct dss_pll_clock_info cache_cinfo
;
385 spinlock_t errors_lock
;
386 #ifdef DSI_PERF_MEASURE
387 ktime_t perf_setup_time
;
388 ktime_t perf_start_time
;
393 struct dss_debugfs_entry
*irqs
;
394 struct dss_debugfs_entry
*regs
;
395 struct dss_debugfs_entry
*clks
;
398 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
399 spinlock_t irq_stats_lock
;
400 struct dsi_irq_stats irq_stats
;
403 unsigned int num_lanes_supported
;
404 unsigned int line_buffer_size
;
406 struct dsi_lane_config lanes
[DSI_MAX_NR_LANES
];
407 unsigned int num_lanes_used
;
409 unsigned int scp_clk_refcount
;
411 struct dss_lcd_mgr_config mgr_config
;
413 enum omap_dss_dsi_pixel_format pix_fmt
;
414 enum omap_dss_dsi_mode mode
;
415 struct omap_dss_dsi_videomode_timings vm_timings
;
417 struct omap_dss_device output
;
420 struct dsi_packet_sent_handler_data
{
421 struct dsi_data
*dsi
;
422 struct completion
*completion
;
425 #ifdef DSI_PERF_MEASURE
426 static bool dsi_perf
;
427 module_param(dsi_perf
, bool, 0644);
430 static inline struct dsi_data
*to_dsi_data(struct omap_dss_device
*dssdev
)
432 return dev_get_drvdata(dssdev
->dev
);
435 static inline void dsi_write_reg(struct dsi_data
*dsi
,
436 const struct dsi_reg idx
, u32 val
)
441 case DSI_PROTO
: base
= dsi
->proto_base
; break;
442 case DSI_PHY
: base
= dsi
->phy_base
; break;
443 case DSI_PLL
: base
= dsi
->pll_base
; break;
447 __raw_writel(val
, base
+ idx
.idx
);
450 static inline u32
dsi_read_reg(struct dsi_data
*dsi
, const struct dsi_reg idx
)
455 case DSI_PROTO
: base
= dsi
->proto_base
; break;
456 case DSI_PHY
: base
= dsi
->phy_base
; break;
457 case DSI_PLL
: base
= dsi
->pll_base
; break;
461 return __raw_readl(base
+ idx
.idx
);
464 static void dsi_bus_lock(struct omap_dss_device
*dssdev
)
466 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
468 down(&dsi
->bus_lock
);
471 static void dsi_bus_unlock(struct omap_dss_device
*dssdev
)
473 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
478 static bool dsi_bus_is_locked(struct dsi_data
*dsi
)
480 return dsi
->bus_lock
.count
== 0;
483 static void dsi_completion_handler(void *data
, u32 mask
)
485 complete((struct completion
*)data
);
488 static inline bool wait_for_bit_change(struct dsi_data
*dsi
,
489 const struct dsi_reg idx
,
490 int bitnum
, int value
)
492 unsigned long timeout
;
496 /* first busyloop to see if the bit changes right away */
499 if (REG_GET(dsi
, idx
, bitnum
, bitnum
) == value
)
503 /* then loop for 500ms, sleeping for 1ms in between */
504 timeout
= jiffies
+ msecs_to_jiffies(500);
505 while (time_before(jiffies
, timeout
)) {
506 if (REG_GET(dsi
, idx
, bitnum
, bitnum
) == value
)
509 wait
= ns_to_ktime(1000 * 1000);
510 set_current_state(TASK_UNINTERRUPTIBLE
);
511 schedule_hrtimeout(&wait
, HRTIMER_MODE_REL
);
517 static u8
dsi_get_pixel_size(enum omap_dss_dsi_pixel_format fmt
)
520 case OMAP_DSS_DSI_FMT_RGB888
:
521 case OMAP_DSS_DSI_FMT_RGB666
:
523 case OMAP_DSS_DSI_FMT_RGB666_PACKED
:
525 case OMAP_DSS_DSI_FMT_RGB565
:
533 #ifdef DSI_PERF_MEASURE
534 static void dsi_perf_mark_setup(struct dsi_data
*dsi
)
536 dsi
->perf_setup_time
= ktime_get();
539 static void dsi_perf_mark_start(struct dsi_data
*dsi
)
541 dsi
->perf_start_time
= ktime_get();
544 static void dsi_perf_show(struct dsi_data
*dsi
, const char *name
)
546 ktime_t t
, setup_time
, trans_time
;
548 u32 setup_us
, trans_us
, total_us
;
555 setup_time
= ktime_sub(dsi
->perf_start_time
, dsi
->perf_setup_time
);
556 setup_us
= (u32
)ktime_to_us(setup_time
);
560 trans_time
= ktime_sub(t
, dsi
->perf_start_time
);
561 trans_us
= (u32
)ktime_to_us(trans_time
);
565 total_us
= setup_us
+ trans_us
;
567 total_bytes
= dsi
->update_bytes
;
569 pr_info("DSI(%s): %u us + %u us = %u us (%uHz), %u bytes, %u kbytes/sec\n",
574 1000 * 1000 / total_us
,
576 total_bytes
* 1000 / total_us
);
579 static inline void dsi_perf_mark_setup(struct dsi_data
*dsi
)
583 static inline void dsi_perf_mark_start(struct dsi_data
*dsi
)
587 static inline void dsi_perf_show(struct dsi_data
*dsi
, const char *name
)
592 static int verbose_irq
;
594 static void print_irq_status(u32 status
)
599 if (!verbose_irq
&& (status
& ~DSI_IRQ_CHANNEL_MASK
) == 0)
602 #define PIS(x) (status & DSI_IRQ_##x) ? (#x " ") : ""
604 pr_debug("DSI IRQ: 0x%x: %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
606 verbose_irq
? PIS(VC0
) : "",
607 verbose_irq
? PIS(VC1
) : "",
608 verbose_irq
? PIS(VC2
) : "",
609 verbose_irq
? PIS(VC3
) : "",
626 static void print_irq_status_vc(int channel
, u32 status
)
631 if (!verbose_irq
&& (status
& ~DSI_VC_IRQ_PACKET_SENT
) == 0)
634 #define PIS(x) (status & DSI_VC_IRQ_##x) ? (#x " ") : ""
636 pr_debug("DSI VC(%d) IRQ 0x%x: %s%s%s%s%s%s%s%s%s\n",
642 verbose_irq
? PIS(PACKET_SENT
) : "",
647 PIS(PP_BUSY_CHANGE
));
651 static void print_irq_status_cio(u32 status
)
656 #define PIS(x) (status & DSI_CIO_IRQ_##x) ? (#x " ") : ""
658 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",
672 PIS(ERRCONTENTIONLP0_1
),
673 PIS(ERRCONTENTIONLP1_1
),
674 PIS(ERRCONTENTIONLP0_2
),
675 PIS(ERRCONTENTIONLP1_2
),
676 PIS(ERRCONTENTIONLP0_3
),
677 PIS(ERRCONTENTIONLP1_3
),
678 PIS(ULPSACTIVENOT_ALL0
),
679 PIS(ULPSACTIVENOT_ALL1
));
683 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
684 static void dsi_collect_irq_stats(struct dsi_data
*dsi
, u32 irqstatus
,
685 u32
*vcstatus
, u32 ciostatus
)
689 spin_lock(&dsi
->irq_stats_lock
);
691 dsi
->irq_stats
.irq_count
++;
692 dss_collect_irq_stats(irqstatus
, dsi
->irq_stats
.dsi_irqs
);
694 for (i
= 0; i
< 4; ++i
)
695 dss_collect_irq_stats(vcstatus
[i
], dsi
->irq_stats
.vc_irqs
[i
]);
697 dss_collect_irq_stats(ciostatus
, dsi
->irq_stats
.cio_irqs
);
699 spin_unlock(&dsi
->irq_stats_lock
);
702 #define dsi_collect_irq_stats(dsi, irqstatus, vcstatus, ciostatus)
705 static int debug_irq
;
707 static void dsi_handle_irq_errors(struct dsi_data
*dsi
, u32 irqstatus
,
708 u32
*vcstatus
, u32 ciostatus
)
712 if (irqstatus
& DSI_IRQ_ERROR_MASK
) {
713 DSSERR("DSI error, irqstatus %x\n", irqstatus
);
714 print_irq_status(irqstatus
);
715 spin_lock(&dsi
->errors_lock
);
716 dsi
->errors
|= irqstatus
& DSI_IRQ_ERROR_MASK
;
717 spin_unlock(&dsi
->errors_lock
);
718 } else if (debug_irq
) {
719 print_irq_status(irqstatus
);
722 for (i
= 0; i
< 4; ++i
) {
723 if (vcstatus
[i
] & DSI_VC_IRQ_ERROR_MASK
) {
724 DSSERR("DSI VC(%d) error, vc irqstatus %x\n",
726 print_irq_status_vc(i
, vcstatus
[i
]);
727 } else if (debug_irq
) {
728 print_irq_status_vc(i
, vcstatus
[i
]);
732 if (ciostatus
& DSI_CIO_IRQ_ERROR_MASK
) {
733 DSSERR("DSI CIO error, cio irqstatus %x\n", ciostatus
);
734 print_irq_status_cio(ciostatus
);
735 } else if (debug_irq
) {
736 print_irq_status_cio(ciostatus
);
740 static void dsi_call_isrs(struct dsi_isr_data
*isr_array
,
741 unsigned int isr_array_size
, u32 irqstatus
)
743 struct dsi_isr_data
*isr_data
;
746 for (i
= 0; i
< isr_array_size
; i
++) {
747 isr_data
= &isr_array
[i
];
748 if (isr_data
->isr
&& isr_data
->mask
& irqstatus
)
749 isr_data
->isr(isr_data
->arg
, irqstatus
);
753 static void dsi_handle_isrs(struct dsi_isr_tables
*isr_tables
,
754 u32 irqstatus
, u32
*vcstatus
, u32 ciostatus
)
758 dsi_call_isrs(isr_tables
->isr_table
,
759 ARRAY_SIZE(isr_tables
->isr_table
),
762 for (i
= 0; i
< 4; ++i
) {
763 if (vcstatus
[i
] == 0)
765 dsi_call_isrs(isr_tables
->isr_table_vc
[i
],
766 ARRAY_SIZE(isr_tables
->isr_table_vc
[i
]),
771 dsi_call_isrs(isr_tables
->isr_table_cio
,
772 ARRAY_SIZE(isr_tables
->isr_table_cio
),
776 static irqreturn_t
omap_dsi_irq_handler(int irq
, void *arg
)
778 struct dsi_data
*dsi
= arg
;
779 u32 irqstatus
, vcstatus
[4], ciostatus
;
782 if (!dsi
->is_enabled
)
785 spin_lock(&dsi
->irq_lock
);
787 irqstatus
= dsi_read_reg(dsi
, DSI_IRQSTATUS
);
789 /* IRQ is not for us */
791 spin_unlock(&dsi
->irq_lock
);
795 dsi_write_reg(dsi
, DSI_IRQSTATUS
, irqstatus
& ~DSI_IRQ_CHANNEL_MASK
);
796 /* flush posted write */
797 dsi_read_reg(dsi
, DSI_IRQSTATUS
);
799 for (i
= 0; i
< 4; ++i
) {
800 if ((irqstatus
& (1 << i
)) == 0) {
805 vcstatus
[i
] = dsi_read_reg(dsi
, DSI_VC_IRQSTATUS(i
));
807 dsi_write_reg(dsi
, DSI_VC_IRQSTATUS(i
), vcstatus
[i
]);
808 /* flush posted write */
809 dsi_read_reg(dsi
, DSI_VC_IRQSTATUS(i
));
812 if (irqstatus
& DSI_IRQ_COMPLEXIO_ERR
) {
813 ciostatus
= dsi_read_reg(dsi
, DSI_COMPLEXIO_IRQ_STATUS
);
815 dsi_write_reg(dsi
, DSI_COMPLEXIO_IRQ_STATUS
, ciostatus
);
816 /* flush posted write */
817 dsi_read_reg(dsi
, DSI_COMPLEXIO_IRQ_STATUS
);
822 #ifdef DSI_CATCH_MISSING_TE
823 if (irqstatus
& DSI_IRQ_TE_TRIGGER
)
824 del_timer(&dsi
->te_timer
);
827 /* make a copy and unlock, so that isrs can unregister
829 memcpy(&dsi
->isr_tables_copy
, &dsi
->isr_tables
,
830 sizeof(dsi
->isr_tables
));
832 spin_unlock(&dsi
->irq_lock
);
834 dsi_handle_isrs(&dsi
->isr_tables_copy
, irqstatus
, vcstatus
, ciostatus
);
836 dsi_handle_irq_errors(dsi
, irqstatus
, vcstatus
, ciostatus
);
838 dsi_collect_irq_stats(dsi
, irqstatus
, vcstatus
, ciostatus
);
843 /* dsi->irq_lock has to be locked by the caller */
844 static void _omap_dsi_configure_irqs(struct dsi_data
*dsi
,
845 struct dsi_isr_data
*isr_array
,
846 unsigned int isr_array_size
,
848 const struct dsi_reg enable_reg
,
849 const struct dsi_reg status_reg
)
851 struct dsi_isr_data
*isr_data
;
858 for (i
= 0; i
< isr_array_size
; i
++) {
859 isr_data
= &isr_array
[i
];
861 if (isr_data
->isr
== NULL
)
864 mask
|= isr_data
->mask
;
867 old_mask
= dsi_read_reg(dsi
, enable_reg
);
868 /* clear the irqstatus for newly enabled irqs */
869 dsi_write_reg(dsi
, status_reg
, (mask
^ old_mask
) & mask
);
870 dsi_write_reg(dsi
, enable_reg
, mask
);
872 /* flush posted writes */
873 dsi_read_reg(dsi
, enable_reg
);
874 dsi_read_reg(dsi
, status_reg
);
877 /* dsi->irq_lock has to be locked by the caller */
878 static void _omap_dsi_set_irqs(struct dsi_data
*dsi
)
880 u32 mask
= DSI_IRQ_ERROR_MASK
;
881 #ifdef DSI_CATCH_MISSING_TE
882 mask
|= DSI_IRQ_TE_TRIGGER
;
884 _omap_dsi_configure_irqs(dsi
, dsi
->isr_tables
.isr_table
,
885 ARRAY_SIZE(dsi
->isr_tables
.isr_table
), mask
,
886 DSI_IRQENABLE
, DSI_IRQSTATUS
);
889 /* dsi->irq_lock has to be locked by the caller */
890 static void _omap_dsi_set_irqs_vc(struct dsi_data
*dsi
, int vc
)
892 _omap_dsi_configure_irqs(dsi
, dsi
->isr_tables
.isr_table_vc
[vc
],
893 ARRAY_SIZE(dsi
->isr_tables
.isr_table_vc
[vc
]),
894 DSI_VC_IRQ_ERROR_MASK
,
895 DSI_VC_IRQENABLE(vc
), DSI_VC_IRQSTATUS(vc
));
898 /* dsi->irq_lock has to be locked by the caller */
899 static void _omap_dsi_set_irqs_cio(struct dsi_data
*dsi
)
901 _omap_dsi_configure_irqs(dsi
, dsi
->isr_tables
.isr_table_cio
,
902 ARRAY_SIZE(dsi
->isr_tables
.isr_table_cio
),
903 DSI_CIO_IRQ_ERROR_MASK
,
904 DSI_COMPLEXIO_IRQ_ENABLE
, DSI_COMPLEXIO_IRQ_STATUS
);
907 static void _dsi_initialize_irq(struct dsi_data
*dsi
)
912 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
914 memset(&dsi
->isr_tables
, 0, sizeof(dsi
->isr_tables
));
916 _omap_dsi_set_irqs(dsi
);
917 for (vc
= 0; vc
< 4; ++vc
)
918 _omap_dsi_set_irqs_vc(dsi
, vc
);
919 _omap_dsi_set_irqs_cio(dsi
);
921 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
924 static int _dsi_register_isr(omap_dsi_isr_t isr
, void *arg
, u32 mask
,
925 struct dsi_isr_data
*isr_array
, unsigned int isr_array_size
)
927 struct dsi_isr_data
*isr_data
;
933 /* check for duplicate entry and find a free slot */
935 for (i
= 0; i
< isr_array_size
; i
++) {
936 isr_data
= &isr_array
[i
];
938 if (isr_data
->isr
== isr
&& isr_data
->arg
== arg
&&
939 isr_data
->mask
== mask
) {
943 if (isr_data
->isr
== NULL
&& free_idx
== -1)
950 isr_data
= &isr_array
[free_idx
];
953 isr_data
->mask
= mask
;
958 static int _dsi_unregister_isr(omap_dsi_isr_t isr
, void *arg
, u32 mask
,
959 struct dsi_isr_data
*isr_array
, unsigned int isr_array_size
)
961 struct dsi_isr_data
*isr_data
;
964 for (i
= 0; i
< isr_array_size
; i
++) {
965 isr_data
= &isr_array
[i
];
966 if (isr_data
->isr
!= isr
|| isr_data
->arg
!= arg
||
967 isr_data
->mask
!= mask
)
970 isr_data
->isr
= NULL
;
971 isr_data
->arg
= NULL
;
980 static int dsi_register_isr(struct dsi_data
*dsi
, omap_dsi_isr_t isr
,
986 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
988 r
= _dsi_register_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table
,
989 ARRAY_SIZE(dsi
->isr_tables
.isr_table
));
992 _omap_dsi_set_irqs(dsi
);
994 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
999 static int dsi_unregister_isr(struct dsi_data
*dsi
, omap_dsi_isr_t isr
,
1000 void *arg
, u32 mask
)
1002 unsigned long flags
;
1005 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
1007 r
= _dsi_unregister_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table
,
1008 ARRAY_SIZE(dsi
->isr_tables
.isr_table
));
1011 _omap_dsi_set_irqs(dsi
);
1013 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
1018 static int dsi_register_isr_vc(struct dsi_data
*dsi
, int channel
,
1019 omap_dsi_isr_t isr
, void *arg
, u32 mask
)
1021 unsigned long flags
;
1024 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
1026 r
= _dsi_register_isr(isr
, arg
, mask
,
1027 dsi
->isr_tables
.isr_table_vc
[channel
],
1028 ARRAY_SIZE(dsi
->isr_tables
.isr_table_vc
[channel
]));
1031 _omap_dsi_set_irqs_vc(dsi
, channel
);
1033 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
1038 static int dsi_unregister_isr_vc(struct dsi_data
*dsi
, int channel
,
1039 omap_dsi_isr_t isr
, void *arg
, u32 mask
)
1041 unsigned long flags
;
1044 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
1046 r
= _dsi_unregister_isr(isr
, arg
, mask
,
1047 dsi
->isr_tables
.isr_table_vc
[channel
],
1048 ARRAY_SIZE(dsi
->isr_tables
.isr_table_vc
[channel
]));
1051 _omap_dsi_set_irqs_vc(dsi
, channel
);
1053 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
1058 static int dsi_register_isr_cio(struct dsi_data
*dsi
, omap_dsi_isr_t isr
,
1059 void *arg
, u32 mask
)
1061 unsigned long flags
;
1064 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
1066 r
= _dsi_register_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table_cio
,
1067 ARRAY_SIZE(dsi
->isr_tables
.isr_table_cio
));
1070 _omap_dsi_set_irqs_cio(dsi
);
1072 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
1077 static int dsi_unregister_isr_cio(struct dsi_data
*dsi
, omap_dsi_isr_t isr
,
1078 void *arg
, u32 mask
)
1080 unsigned long flags
;
1083 spin_lock_irqsave(&dsi
->irq_lock
, flags
);
1085 r
= _dsi_unregister_isr(isr
, arg
, mask
, dsi
->isr_tables
.isr_table_cio
,
1086 ARRAY_SIZE(dsi
->isr_tables
.isr_table_cio
));
1089 _omap_dsi_set_irqs_cio(dsi
);
1091 spin_unlock_irqrestore(&dsi
->irq_lock
, flags
);
1096 static u32
dsi_get_errors(struct dsi_data
*dsi
)
1098 unsigned long flags
;
1101 spin_lock_irqsave(&dsi
->errors_lock
, flags
);
1104 spin_unlock_irqrestore(&dsi
->errors_lock
, flags
);
1108 static int dsi_runtime_get(struct dsi_data
*dsi
)
1112 DSSDBG("dsi_runtime_get\n");
1114 r
= pm_runtime_get_sync(dsi
->dev
);
1115 if (WARN_ON(r
< 0)) {
1116 pm_runtime_put_noidle(dsi
->dev
);
1122 static void dsi_runtime_put(struct dsi_data
*dsi
)
1126 DSSDBG("dsi_runtime_put\n");
1128 r
= pm_runtime_put_sync(dsi
->dev
);
1129 WARN_ON(r
< 0 && r
!= -ENOSYS
);
1132 static void _dsi_print_reset_status(struct dsi_data
*dsi
)
1136 /* A dummy read using the SCP interface to any DSIPHY register is
1137 * required after DSIPHY reset to complete the reset of the DSI complex
1139 dsi_read_reg(dsi
, DSI_DSIPHY_CFG5
);
1141 if (dsi
->data
->quirks
& DSI_QUIRK_REVERSE_TXCLKESC
) {
1151 #define DSI_FLD_GET(fld, start, end)\
1152 FLD_GET(dsi_read_reg(dsi, DSI_##fld), start, end)
1154 pr_debug("DSI resets: PLL (%d) CIO (%d) PHY (%x%x%x, %d, %d, %d)\n",
1155 DSI_FLD_GET(PLL_STATUS
, 0, 0),
1156 DSI_FLD_GET(COMPLEXIO_CFG1
, 29, 29),
1157 DSI_FLD_GET(DSIPHY_CFG5
, b0
, b0
),
1158 DSI_FLD_GET(DSIPHY_CFG5
, b1
, b1
),
1159 DSI_FLD_GET(DSIPHY_CFG5
, b2
, b2
),
1160 DSI_FLD_GET(DSIPHY_CFG5
, 29, 29),
1161 DSI_FLD_GET(DSIPHY_CFG5
, 30, 30),
1162 DSI_FLD_GET(DSIPHY_CFG5
, 31, 31));
1167 static inline int dsi_if_enable(struct dsi_data
*dsi
, bool enable
)
1169 DSSDBG("dsi_if_enable(%d)\n", enable
);
1171 enable
= enable
? 1 : 0;
1172 REG_FLD_MOD(dsi
, DSI_CTRL
, enable
, 0, 0); /* IF_EN */
1174 if (!wait_for_bit_change(dsi
, DSI_CTRL
, 0, enable
)) {
1175 DSSERR("Failed to set dsi_if_enable to %d\n", enable
);
1182 static unsigned long dsi_get_pll_hsdiv_dispc_rate(struct dsi_data
*dsi
)
1184 return dsi
->pll
.cinfo
.clkout
[HSDIV_DISPC
];
1187 static unsigned long dsi_get_pll_hsdiv_dsi_rate(struct dsi_data
*dsi
)
1189 return dsi
->pll
.cinfo
.clkout
[HSDIV_DSI
];
1192 static unsigned long dsi_get_txbyteclkhs(struct dsi_data
*dsi
)
1194 return dsi
->pll
.cinfo
.clkdco
/ 16;
1197 static unsigned long dsi_fclk_rate(struct dsi_data
*dsi
)
1200 enum dss_clk_source source
;
1202 source
= dss_get_dsi_clk_source(dsi
->dss
, dsi
->module_id
);
1203 if (source
== DSS_CLK_SRC_FCK
) {
1204 /* DSI FCLK source is DSS_CLK_FCK */
1205 r
= clk_get_rate(dsi
->dss_clk
);
1207 /* DSI FCLK source is dsi_pll_hsdiv_dsi_clk */
1208 r
= dsi_get_pll_hsdiv_dsi_rate(dsi
);
1214 static int dsi_lp_clock_calc(unsigned long dsi_fclk
,
1215 unsigned long lp_clk_min
, unsigned long lp_clk_max
,
1216 struct dsi_lp_clock_info
*lp_cinfo
)
1218 unsigned int lp_clk_div
;
1219 unsigned long lp_clk
;
1221 lp_clk_div
= DIV_ROUND_UP(dsi_fclk
, lp_clk_max
* 2);
1222 lp_clk
= dsi_fclk
/ 2 / lp_clk_div
;
1224 if (lp_clk
< lp_clk_min
|| lp_clk
> lp_clk_max
)
1227 lp_cinfo
->lp_clk_div
= lp_clk_div
;
1228 lp_cinfo
->lp_clk
= lp_clk
;
1233 static int dsi_set_lp_clk_divisor(struct dsi_data
*dsi
)
1235 unsigned long dsi_fclk
;
1236 unsigned int lp_clk_div
;
1237 unsigned long lp_clk
;
1238 unsigned int lpdiv_max
= dsi
->data
->max_pll_lpdiv
;
1241 lp_clk_div
= dsi
->user_lp_cinfo
.lp_clk_div
;
1243 if (lp_clk_div
== 0 || lp_clk_div
> lpdiv_max
)
1246 dsi_fclk
= dsi_fclk_rate(dsi
);
1248 lp_clk
= dsi_fclk
/ 2 / lp_clk_div
;
1250 DSSDBG("LP_CLK_DIV %u, LP_CLK %lu\n", lp_clk_div
, lp_clk
);
1251 dsi
->current_lp_cinfo
.lp_clk
= lp_clk
;
1252 dsi
->current_lp_cinfo
.lp_clk_div
= lp_clk_div
;
1254 /* LP_CLK_DIVISOR */
1255 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, lp_clk_div
, 12, 0);
1257 /* LP_RX_SYNCHRO_ENABLE */
1258 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, dsi_fclk
> 30000000 ? 1 : 0, 21, 21);
1263 static void dsi_enable_scp_clk(struct dsi_data
*dsi
)
1265 if (dsi
->scp_clk_refcount
++ == 0)
1266 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, 1, 14, 14); /* CIO_CLK_ICG */
1269 static void dsi_disable_scp_clk(struct dsi_data
*dsi
)
1271 WARN_ON(dsi
->scp_clk_refcount
== 0);
1272 if (--dsi
->scp_clk_refcount
== 0)
1273 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, 0, 14, 14); /* CIO_CLK_ICG */
1276 enum dsi_pll_power_state
{
1277 DSI_PLL_POWER_OFF
= 0x0,
1278 DSI_PLL_POWER_ON_HSCLK
= 0x1,
1279 DSI_PLL_POWER_ON_ALL
= 0x2,
1280 DSI_PLL_POWER_ON_DIV
= 0x3,
1283 static int dsi_pll_power(struct dsi_data
*dsi
, enum dsi_pll_power_state state
)
1287 /* DSI-PLL power command 0x3 is not working */
1288 if ((dsi
->data
->quirks
& DSI_QUIRK_PLL_PWR_BUG
) &&
1289 state
== DSI_PLL_POWER_ON_DIV
)
1290 state
= DSI_PLL_POWER_ON_ALL
;
1293 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, state
, 31, 30);
1295 /* PLL_PWR_STATUS */
1296 while (FLD_GET(dsi_read_reg(dsi
, DSI_CLK_CTRL
), 29, 28) != state
) {
1298 DSSERR("Failed to set DSI PLL power mode to %d\n",
1309 static void dsi_pll_calc_dsi_fck(struct dsi_data
*dsi
,
1310 struct dss_pll_clock_info
*cinfo
)
1312 unsigned long max_dsi_fck
;
1314 max_dsi_fck
= dsi
->data
->max_fck_freq
;
1316 cinfo
->mX
[HSDIV_DSI
] = DIV_ROUND_UP(cinfo
->clkdco
, max_dsi_fck
);
1317 cinfo
->clkout
[HSDIV_DSI
] = cinfo
->clkdco
/ cinfo
->mX
[HSDIV_DSI
];
1320 static int dsi_pll_enable(struct dss_pll
*pll
)
1322 struct dsi_data
*dsi
= container_of(pll
, struct dsi_data
, pll
);
1325 DSSDBG("PLL init\n");
1327 r
= dsi_runtime_get(dsi
);
1332 * Note: SCP CLK is not required on OMAP3, but it is required on OMAP4.
1334 dsi_enable_scp_clk(dsi
);
1336 r
= regulator_enable(dsi
->vdds_dsi_reg
);
1340 /* XXX PLL does not come out of reset without this... */
1341 dispc_pck_free_enable(dsi
->dss
->dispc
, 1);
1343 if (!wait_for_bit_change(dsi
, DSI_PLL_STATUS
, 0, 1)) {
1344 DSSERR("PLL not coming out of reset.\n");
1346 dispc_pck_free_enable(dsi
->dss
->dispc
, 0);
1350 /* XXX ... but if left on, we get problems when planes do not
1351 * fill the whole display. No idea about this */
1352 dispc_pck_free_enable(dsi
->dss
->dispc
, 0);
1354 r
= dsi_pll_power(dsi
, DSI_PLL_POWER_ON_ALL
);
1359 DSSDBG("PLL init done\n");
1363 regulator_disable(dsi
->vdds_dsi_reg
);
1365 dsi_disable_scp_clk(dsi
);
1366 dsi_runtime_put(dsi
);
1370 static void dsi_pll_disable(struct dss_pll
*pll
)
1372 struct dsi_data
*dsi
= container_of(pll
, struct dsi_data
, pll
);
1374 dsi_pll_power(dsi
, DSI_PLL_POWER_OFF
);
1376 regulator_disable(dsi
->vdds_dsi_reg
);
1378 dsi_disable_scp_clk(dsi
);
1379 dsi_runtime_put(dsi
);
1381 DSSDBG("PLL disable done\n");
1384 static int dsi_dump_dsi_clocks(struct seq_file
*s
, void *p
)
1386 struct dsi_data
*dsi
= s
->private;
1387 struct dss_pll_clock_info
*cinfo
= &dsi
->pll
.cinfo
;
1388 enum dss_clk_source dispc_clk_src
, dsi_clk_src
;
1389 int dsi_module
= dsi
->module_id
;
1390 struct dss_pll
*pll
= &dsi
->pll
;
1392 dispc_clk_src
= dss_get_dispc_clk_source(dsi
->dss
);
1393 dsi_clk_src
= dss_get_dsi_clk_source(dsi
->dss
, dsi_module
);
1395 if (dsi_runtime_get(dsi
))
1398 seq_printf(s
, "- DSI%d PLL -\n", dsi_module
+ 1);
1400 seq_printf(s
, "dsi pll clkin\t%lu\n", clk_get_rate(pll
->clkin
));
1402 seq_printf(s
, "Fint\t\t%-16lun %u\n", cinfo
->fint
, cinfo
->n
);
1404 seq_printf(s
, "CLKIN4DDR\t%-16lum %u\n",
1405 cinfo
->clkdco
, cinfo
->m
);
1407 seq_printf(s
, "DSI_PLL_HSDIV_DISPC (%s)\t%-16lum_dispc %u\t(%s)\n",
1408 dss_get_clk_source_name(dsi_module
== 0 ?
1409 DSS_CLK_SRC_PLL1_1
:
1410 DSS_CLK_SRC_PLL2_1
),
1411 cinfo
->clkout
[HSDIV_DISPC
],
1412 cinfo
->mX
[HSDIV_DISPC
],
1413 dispc_clk_src
== DSS_CLK_SRC_FCK
?
1416 seq_printf(s
, "DSI_PLL_HSDIV_DSI (%s)\t%-16lum_dsi %u\t(%s)\n",
1417 dss_get_clk_source_name(dsi_module
== 0 ?
1418 DSS_CLK_SRC_PLL1_2
:
1419 DSS_CLK_SRC_PLL2_2
),
1420 cinfo
->clkout
[HSDIV_DSI
],
1421 cinfo
->mX
[HSDIV_DSI
],
1422 dsi_clk_src
== DSS_CLK_SRC_FCK
?
1425 seq_printf(s
, "- DSI%d -\n", dsi_module
+ 1);
1427 seq_printf(s
, "dsi fclk source = %s\n",
1428 dss_get_clk_source_name(dsi_clk_src
));
1430 seq_printf(s
, "DSI_FCLK\t%lu\n", dsi_fclk_rate(dsi
));
1432 seq_printf(s
, "DDR_CLK\t\t%lu\n",
1435 seq_printf(s
, "TxByteClkHS\t%lu\n", dsi_get_txbyteclkhs(dsi
));
1437 seq_printf(s
, "LP_CLK\t\t%lu\n", dsi
->current_lp_cinfo
.lp_clk
);
1439 dsi_runtime_put(dsi
);
1444 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
1445 static int dsi_dump_dsi_irqs(struct seq_file
*s
, void *p
)
1447 struct dsi_data
*dsi
= s
->private;
1448 unsigned long flags
;
1449 struct dsi_irq_stats stats
;
1451 spin_lock_irqsave(&dsi
->irq_stats_lock
, flags
);
1453 stats
= dsi
->irq_stats
;
1454 memset(&dsi
->irq_stats
, 0, sizeof(dsi
->irq_stats
));
1455 dsi
->irq_stats
.last_reset
= jiffies
;
1457 spin_unlock_irqrestore(&dsi
->irq_stats_lock
, flags
);
1459 seq_printf(s
, "period %u ms\n",
1460 jiffies_to_msecs(jiffies
- stats
.last_reset
));
1462 seq_printf(s
, "irqs %d\n", stats
.irq_count
);
1464 seq_printf(s, "%-20s %10d\n", #x, stats.dsi_irqs[ffs(DSI_IRQ_##x)-1]);
1466 seq_printf(s
, "-- DSI%d interrupts --\n", dsi
->module_id
+ 1);
1482 PIS(LDO_POWER_GOOD
);
1487 seq_printf(s, "%-20s %10d %10d %10d %10d\n", #x, \
1488 stats.vc_irqs[0][ffs(DSI_VC_IRQ_##x)-1], \
1489 stats.vc_irqs[1][ffs(DSI_VC_IRQ_##x)-1], \
1490 stats.vc_irqs[2][ffs(DSI_VC_IRQ_##x)-1], \
1491 stats.vc_irqs[3][ffs(DSI_VC_IRQ_##x)-1]);
1493 seq_printf(s
, "-- VC interrupts --\n");
1502 PIS(PP_BUSY_CHANGE
);
1506 seq_printf(s, "%-20s %10d\n", #x, \
1507 stats.cio_irqs[ffs(DSI_CIO_IRQ_##x)-1]);
1509 seq_printf(s
, "-- CIO interrupts --\n");
1522 PIS(ERRCONTENTIONLP0_1
);
1523 PIS(ERRCONTENTIONLP1_1
);
1524 PIS(ERRCONTENTIONLP0_2
);
1525 PIS(ERRCONTENTIONLP1_2
);
1526 PIS(ERRCONTENTIONLP0_3
);
1527 PIS(ERRCONTENTIONLP1_3
);
1528 PIS(ULPSACTIVENOT_ALL0
);
1529 PIS(ULPSACTIVENOT_ALL1
);
1536 static int dsi_dump_dsi_regs(struct seq_file
*s
, void *p
)
1538 struct dsi_data
*dsi
= s
->private;
1540 if (dsi_runtime_get(dsi
))
1542 dsi_enable_scp_clk(dsi
);
1544 #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, dsi_read_reg(dsi, r))
1545 DUMPREG(DSI_REVISION
);
1546 DUMPREG(DSI_SYSCONFIG
);
1547 DUMPREG(DSI_SYSSTATUS
);
1548 DUMPREG(DSI_IRQSTATUS
);
1549 DUMPREG(DSI_IRQENABLE
);
1551 DUMPREG(DSI_COMPLEXIO_CFG1
);
1552 DUMPREG(DSI_COMPLEXIO_IRQ_STATUS
);
1553 DUMPREG(DSI_COMPLEXIO_IRQ_ENABLE
);
1554 DUMPREG(DSI_CLK_CTRL
);
1555 DUMPREG(DSI_TIMING1
);
1556 DUMPREG(DSI_TIMING2
);
1557 DUMPREG(DSI_VM_TIMING1
);
1558 DUMPREG(DSI_VM_TIMING2
);
1559 DUMPREG(DSI_VM_TIMING3
);
1560 DUMPREG(DSI_CLK_TIMING
);
1561 DUMPREG(DSI_TX_FIFO_VC_SIZE
);
1562 DUMPREG(DSI_RX_FIFO_VC_SIZE
);
1563 DUMPREG(DSI_COMPLEXIO_CFG2
);
1564 DUMPREG(DSI_RX_FIFO_VC_FULLNESS
);
1565 DUMPREG(DSI_VM_TIMING4
);
1566 DUMPREG(DSI_TX_FIFO_VC_EMPTINESS
);
1567 DUMPREG(DSI_VM_TIMING5
);
1568 DUMPREG(DSI_VM_TIMING6
);
1569 DUMPREG(DSI_VM_TIMING7
);
1570 DUMPREG(DSI_STOPCLK_TIMING
);
1572 DUMPREG(DSI_VC_CTRL(0));
1573 DUMPREG(DSI_VC_TE(0));
1574 DUMPREG(DSI_VC_LONG_PACKET_HEADER(0));
1575 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(0));
1576 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(0));
1577 DUMPREG(DSI_VC_IRQSTATUS(0));
1578 DUMPREG(DSI_VC_IRQENABLE(0));
1580 DUMPREG(DSI_VC_CTRL(1));
1581 DUMPREG(DSI_VC_TE(1));
1582 DUMPREG(DSI_VC_LONG_PACKET_HEADER(1));
1583 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(1));
1584 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(1));
1585 DUMPREG(DSI_VC_IRQSTATUS(1));
1586 DUMPREG(DSI_VC_IRQENABLE(1));
1588 DUMPREG(DSI_VC_CTRL(2));
1589 DUMPREG(DSI_VC_TE(2));
1590 DUMPREG(DSI_VC_LONG_PACKET_HEADER(2));
1591 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(2));
1592 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(2));
1593 DUMPREG(DSI_VC_IRQSTATUS(2));
1594 DUMPREG(DSI_VC_IRQENABLE(2));
1596 DUMPREG(DSI_VC_CTRL(3));
1597 DUMPREG(DSI_VC_TE(3));
1598 DUMPREG(DSI_VC_LONG_PACKET_HEADER(3));
1599 DUMPREG(DSI_VC_LONG_PACKET_PAYLOAD(3));
1600 DUMPREG(DSI_VC_SHORT_PACKET_HEADER(3));
1601 DUMPREG(DSI_VC_IRQSTATUS(3));
1602 DUMPREG(DSI_VC_IRQENABLE(3));
1604 DUMPREG(DSI_DSIPHY_CFG0
);
1605 DUMPREG(DSI_DSIPHY_CFG1
);
1606 DUMPREG(DSI_DSIPHY_CFG2
);
1607 DUMPREG(DSI_DSIPHY_CFG5
);
1609 DUMPREG(DSI_PLL_CONTROL
);
1610 DUMPREG(DSI_PLL_STATUS
);
1611 DUMPREG(DSI_PLL_GO
);
1612 DUMPREG(DSI_PLL_CONFIGURATION1
);
1613 DUMPREG(DSI_PLL_CONFIGURATION2
);
1616 dsi_disable_scp_clk(dsi
);
1617 dsi_runtime_put(dsi
);
1622 enum dsi_cio_power_state
{
1623 DSI_COMPLEXIO_POWER_OFF
= 0x0,
1624 DSI_COMPLEXIO_POWER_ON
= 0x1,
1625 DSI_COMPLEXIO_POWER_ULPS
= 0x2,
1628 static int dsi_cio_power(struct dsi_data
*dsi
, enum dsi_cio_power_state state
)
1633 REG_FLD_MOD(dsi
, DSI_COMPLEXIO_CFG1
, state
, 28, 27);
1636 while (FLD_GET(dsi_read_reg(dsi
, DSI_COMPLEXIO_CFG1
),
1639 DSSERR("failed to set complexio power state to "
1649 static unsigned int dsi_get_line_buf_size(struct dsi_data
*dsi
)
1653 /* line buffer on OMAP3 is 1024 x 24bits */
1654 /* XXX: for some reason using full buffer size causes
1655 * considerable TX slowdown with update sizes that fill the
1657 if (!(dsi
->data
->quirks
& DSI_QUIRK_GNQ
))
1660 val
= REG_GET(dsi
, DSI_GNQ
, 14, 12); /* VP1_LINE_BUFFER_SIZE */
1664 return 512 * 3; /* 512x24 bits */
1666 return 682 * 3; /* 682x24 bits */
1668 return 853 * 3; /* 853x24 bits */
1670 return 1024 * 3; /* 1024x24 bits */
1672 return 1194 * 3; /* 1194x24 bits */
1674 return 1365 * 3; /* 1365x24 bits */
1676 return 1920 * 3; /* 1920x24 bits */
1683 static int dsi_set_lane_config(struct dsi_data
*dsi
)
1685 static const u8 offsets
[] = { 0, 4, 8, 12, 16 };
1686 static const enum dsi_lane_function functions
[] = {
1696 r
= dsi_read_reg(dsi
, DSI_COMPLEXIO_CFG1
);
1698 for (i
= 0; i
< dsi
->num_lanes_used
; ++i
) {
1699 unsigned int offset
= offsets
[i
];
1700 unsigned int polarity
, lane_number
;
1703 for (t
= 0; t
< dsi
->num_lanes_supported
; ++t
)
1704 if (dsi
->lanes
[t
].function
== functions
[i
])
1707 if (t
== dsi
->num_lanes_supported
)
1711 polarity
= dsi
->lanes
[t
].polarity
;
1713 r
= FLD_MOD(r
, lane_number
+ 1, offset
+ 2, offset
);
1714 r
= FLD_MOD(r
, polarity
, offset
+ 3, offset
+ 3);
1717 /* clear the unused lanes */
1718 for (; i
< dsi
->num_lanes_supported
; ++i
) {
1719 unsigned int offset
= offsets
[i
];
1721 r
= FLD_MOD(r
, 0, offset
+ 2, offset
);
1722 r
= FLD_MOD(r
, 0, offset
+ 3, offset
+ 3);
1725 dsi_write_reg(dsi
, DSI_COMPLEXIO_CFG1
, r
);
1730 static inline unsigned int ns2ddr(struct dsi_data
*dsi
, unsigned int ns
)
1732 /* convert time in ns to ddr ticks, rounding up */
1733 unsigned long ddr_clk
= dsi
->pll
.cinfo
.clkdco
/ 4;
1735 return (ns
* (ddr_clk
/ 1000 / 1000) + 999) / 1000;
1738 static inline unsigned int ddr2ns(struct dsi_data
*dsi
, unsigned int ddr
)
1740 unsigned long ddr_clk
= dsi
->pll
.cinfo
.clkdco
/ 4;
1742 return ddr
* 1000 * 1000 / (ddr_clk
/ 1000);
1745 static void dsi_cio_timings(struct dsi_data
*dsi
)
1748 u32 ths_prepare
, ths_prepare_ths_zero
, ths_trail
, ths_exit
;
1749 u32 tlpx_half
, tclk_trail
, tclk_zero
;
1752 /* calculate timings */
1754 /* 1 * DDR_CLK = 2 * UI */
1756 /* min 40ns + 4*UI max 85ns + 6*UI */
1757 ths_prepare
= ns2ddr(dsi
, 70) + 2;
1759 /* min 145ns + 10*UI */
1760 ths_prepare_ths_zero
= ns2ddr(dsi
, 175) + 2;
1762 /* min max(8*UI, 60ns+4*UI) */
1763 ths_trail
= ns2ddr(dsi
, 60) + 5;
1766 ths_exit
= ns2ddr(dsi
, 145);
1769 tlpx_half
= ns2ddr(dsi
, 25);
1772 tclk_trail
= ns2ddr(dsi
, 60) + 2;
1774 /* min 38ns, max 95ns */
1775 tclk_prepare
= ns2ddr(dsi
, 65);
1777 /* min tclk-prepare + tclk-zero = 300ns */
1778 tclk_zero
= ns2ddr(dsi
, 260);
1780 DSSDBG("ths_prepare %u (%uns), ths_prepare_ths_zero %u (%uns)\n",
1781 ths_prepare
, ddr2ns(dsi
, ths_prepare
),
1782 ths_prepare_ths_zero
, ddr2ns(dsi
, ths_prepare_ths_zero
));
1783 DSSDBG("ths_trail %u (%uns), ths_exit %u (%uns)\n",
1784 ths_trail
, ddr2ns(dsi
, ths_trail
),
1785 ths_exit
, ddr2ns(dsi
, ths_exit
));
1787 DSSDBG("tlpx_half %u (%uns), tclk_trail %u (%uns), "
1788 "tclk_zero %u (%uns)\n",
1789 tlpx_half
, ddr2ns(dsi
, tlpx_half
),
1790 tclk_trail
, ddr2ns(dsi
, tclk_trail
),
1791 tclk_zero
, ddr2ns(dsi
, tclk_zero
));
1792 DSSDBG("tclk_prepare %u (%uns)\n",
1793 tclk_prepare
, ddr2ns(dsi
, tclk_prepare
));
1795 /* program timings */
1797 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG0
);
1798 r
= FLD_MOD(r
, ths_prepare
, 31, 24);
1799 r
= FLD_MOD(r
, ths_prepare_ths_zero
, 23, 16);
1800 r
= FLD_MOD(r
, ths_trail
, 15, 8);
1801 r
= FLD_MOD(r
, ths_exit
, 7, 0);
1802 dsi_write_reg(dsi
, DSI_DSIPHY_CFG0
, r
);
1804 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG1
);
1805 r
= FLD_MOD(r
, tlpx_half
, 20, 16);
1806 r
= FLD_MOD(r
, tclk_trail
, 15, 8);
1807 r
= FLD_MOD(r
, tclk_zero
, 7, 0);
1809 if (dsi
->data
->quirks
& DSI_QUIRK_PHY_DCC
) {
1810 r
= FLD_MOD(r
, 0, 21, 21); /* DCCEN = disable */
1811 r
= FLD_MOD(r
, 1, 22, 22); /* CLKINP_DIVBY2EN = enable */
1812 r
= FLD_MOD(r
, 1, 23, 23); /* CLKINP_SEL = enable */
1815 dsi_write_reg(dsi
, DSI_DSIPHY_CFG1
, r
);
1817 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG2
);
1818 r
= FLD_MOD(r
, tclk_prepare
, 7, 0);
1819 dsi_write_reg(dsi
, DSI_DSIPHY_CFG2
, r
);
1822 /* lane masks have lane 0 at lsb. mask_p for positive lines, n for negative */
1823 static void dsi_cio_enable_lane_override(struct dsi_data
*dsi
,
1824 unsigned int mask_p
,
1825 unsigned int mask_n
)
1829 u8 lptxscp_start
= dsi
->num_lanes_supported
== 3 ? 22 : 26;
1833 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
1834 unsigned int p
= dsi
->lanes
[i
].polarity
;
1836 if (mask_p
& (1 << i
))
1837 l
|= 1 << (i
* 2 + (p
? 0 : 1));
1839 if (mask_n
& (1 << i
))
1840 l
|= 1 << (i
* 2 + (p
? 1 : 0));
1844 * Bits in REGLPTXSCPDAT4TO0DXDY:
1852 /* Set the lane override configuration */
1854 /* REGLPTXSCPDAT4TO0DXDY */
1855 REG_FLD_MOD(dsi
, DSI_DSIPHY_CFG10
, l
, lptxscp_start
, 17);
1857 /* Enable lane override */
1860 REG_FLD_MOD(dsi
, DSI_DSIPHY_CFG10
, 1, 27, 27);
1863 static void dsi_cio_disable_lane_override(struct dsi_data
*dsi
)
1865 /* Disable lane override */
1866 REG_FLD_MOD(dsi
, DSI_DSIPHY_CFG10
, 0, 27, 27); /* ENLPTXSCPDAT */
1867 /* Reset the lane override configuration */
1868 /* REGLPTXSCPDAT4TO0DXDY */
1869 REG_FLD_MOD(dsi
, DSI_DSIPHY_CFG10
, 0, 22, 17);
1872 static int dsi_cio_wait_tx_clk_esc_reset(struct dsi_data
*dsi
)
1875 bool in_use
[DSI_MAX_NR_LANES
];
1876 static const u8 offsets_old
[] = { 28, 27, 26 };
1877 static const u8 offsets_new
[] = { 24, 25, 26, 27, 28 };
1880 if (dsi
->data
->quirks
& DSI_QUIRK_REVERSE_TXCLKESC
)
1881 offsets
= offsets_old
;
1883 offsets
= offsets_new
;
1885 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
)
1886 in_use
[i
] = dsi
->lanes
[i
].function
!= DSI_LANE_UNUSED
;
1893 l
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG5
);
1896 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
1897 if (!in_use
[i
] || (l
& (1 << offsets
[i
])))
1901 if (ok
== dsi
->num_lanes_supported
)
1905 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
1906 if (!in_use
[i
] || (l
& (1 << offsets
[i
])))
1909 DSSERR("CIO TXCLKESC%d domain not coming " \
1910 "out of reset\n", i
);
1919 /* return bitmask of enabled lanes, lane0 being the lsb */
1920 static unsigned int dsi_get_lane_mask(struct dsi_data
*dsi
)
1922 unsigned int mask
= 0;
1925 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
1926 if (dsi
->lanes
[i
].function
!= DSI_LANE_UNUSED
)
1933 /* OMAP4 CONTROL_DSIPHY */
1934 #define OMAP4_DSIPHY_SYSCON_OFFSET 0x78
1936 #define OMAP4_DSI2_LANEENABLE_SHIFT 29
1937 #define OMAP4_DSI2_LANEENABLE_MASK (0x7 << 29)
1938 #define OMAP4_DSI1_LANEENABLE_SHIFT 24
1939 #define OMAP4_DSI1_LANEENABLE_MASK (0x1f << 24)
1940 #define OMAP4_DSI1_PIPD_SHIFT 19
1941 #define OMAP4_DSI1_PIPD_MASK (0x1f << 19)
1942 #define OMAP4_DSI2_PIPD_SHIFT 14
1943 #define OMAP4_DSI2_PIPD_MASK (0x1f << 14)
1945 static int dsi_omap4_mux_pads(struct dsi_data
*dsi
, unsigned int lanes
)
1947 u32 enable_mask
, enable_shift
;
1948 u32 pipd_mask
, pipd_shift
;
1950 if (dsi
->module_id
== 0) {
1951 enable_mask
= OMAP4_DSI1_LANEENABLE_MASK
;
1952 enable_shift
= OMAP4_DSI1_LANEENABLE_SHIFT
;
1953 pipd_mask
= OMAP4_DSI1_PIPD_MASK
;
1954 pipd_shift
= OMAP4_DSI1_PIPD_SHIFT
;
1955 } else if (dsi
->module_id
== 1) {
1956 enable_mask
= OMAP4_DSI2_LANEENABLE_MASK
;
1957 enable_shift
= OMAP4_DSI2_LANEENABLE_SHIFT
;
1958 pipd_mask
= OMAP4_DSI2_PIPD_MASK
;
1959 pipd_shift
= OMAP4_DSI2_PIPD_SHIFT
;
1964 return regmap_update_bits(dsi
->syscon
, OMAP4_DSIPHY_SYSCON_OFFSET
,
1965 enable_mask
| pipd_mask
,
1966 (lanes
<< enable_shift
) | (lanes
<< pipd_shift
));
1969 /* OMAP5 CONTROL_DSIPHY */
1971 #define OMAP5_DSIPHY_SYSCON_OFFSET 0x74
1973 #define OMAP5_DSI1_LANEENABLE_SHIFT 24
1974 #define OMAP5_DSI2_LANEENABLE_SHIFT 19
1975 #define OMAP5_DSI_LANEENABLE_MASK 0x1f
1977 static int dsi_omap5_mux_pads(struct dsi_data
*dsi
, unsigned int lanes
)
1981 if (dsi
->module_id
== 0)
1982 enable_shift
= OMAP5_DSI1_LANEENABLE_SHIFT
;
1983 else if (dsi
->module_id
== 1)
1984 enable_shift
= OMAP5_DSI2_LANEENABLE_SHIFT
;
1988 return regmap_update_bits(dsi
->syscon
, OMAP5_DSIPHY_SYSCON_OFFSET
,
1989 OMAP5_DSI_LANEENABLE_MASK
<< enable_shift
,
1990 lanes
<< enable_shift
);
1993 static int dsi_enable_pads(struct dsi_data
*dsi
, unsigned int lane_mask
)
1995 if (dsi
->data
->model
== DSI_MODEL_OMAP4
)
1996 return dsi_omap4_mux_pads(dsi
, lane_mask
);
1997 if (dsi
->data
->model
== DSI_MODEL_OMAP5
)
1998 return dsi_omap5_mux_pads(dsi
, lane_mask
);
2002 static void dsi_disable_pads(struct dsi_data
*dsi
)
2004 if (dsi
->data
->model
== DSI_MODEL_OMAP4
)
2005 dsi_omap4_mux_pads(dsi
, 0);
2006 else if (dsi
->data
->model
== DSI_MODEL_OMAP5
)
2007 dsi_omap5_mux_pads(dsi
, 0);
2010 static int dsi_cio_init(struct dsi_data
*dsi
)
2015 DSSDBG("DSI CIO init starts");
2017 r
= dsi_enable_pads(dsi
, dsi_get_lane_mask(dsi
));
2021 dsi_enable_scp_clk(dsi
);
2023 /* A dummy read using the SCP interface to any DSIPHY register is
2024 * required after DSIPHY reset to complete the reset of the DSI complex
2026 dsi_read_reg(dsi
, DSI_DSIPHY_CFG5
);
2028 if (!wait_for_bit_change(dsi
, DSI_DSIPHY_CFG5
, 30, 1)) {
2029 DSSERR("CIO SCP Clock domain not coming out of reset.\n");
2031 goto err_scp_clk_dom
;
2034 r
= dsi_set_lane_config(dsi
);
2036 goto err_scp_clk_dom
;
2038 /* set TX STOP MODE timer to maximum for this operation */
2039 l
= dsi_read_reg(dsi
, DSI_TIMING1
);
2040 l
= FLD_MOD(l
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
2041 l
= FLD_MOD(l
, 1, 14, 14); /* STOP_STATE_X16_IO */
2042 l
= FLD_MOD(l
, 1, 13, 13); /* STOP_STATE_X4_IO */
2043 l
= FLD_MOD(l
, 0x1fff, 12, 0); /* STOP_STATE_COUNTER_IO */
2044 dsi_write_reg(dsi
, DSI_TIMING1
, l
);
2046 if (dsi
->ulps_enabled
) {
2047 unsigned int mask_p
;
2050 DSSDBG("manual ulps exit\n");
2052 /* ULPS is exited by Mark-1 state for 1ms, followed by
2053 * stop state. DSS HW cannot do this via the normal
2054 * ULPS exit sequence, as after reset the DSS HW thinks
2055 * that we are not in ULPS mode, and refuses to send the
2056 * sequence. So we need to send the ULPS exit sequence
2057 * manually by setting positive lines high and negative lines
2063 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
2064 if (dsi
->lanes
[i
].function
== DSI_LANE_UNUSED
)
2069 dsi_cio_enable_lane_override(dsi
, mask_p
, 0);
2072 r
= dsi_cio_power(dsi
, DSI_COMPLEXIO_POWER_ON
);
2076 if (!wait_for_bit_change(dsi
, DSI_COMPLEXIO_CFG1
, 29, 1)) {
2077 DSSERR("CIO PWR clock domain not coming out of reset.\n");
2079 goto err_cio_pwr_dom
;
2082 dsi_if_enable(dsi
, true);
2083 dsi_if_enable(dsi
, false);
2084 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, 1, 20, 20); /* LP_CLK_ENABLE */
2086 r
= dsi_cio_wait_tx_clk_esc_reset(dsi
);
2088 goto err_tx_clk_esc_rst
;
2090 if (dsi
->ulps_enabled
) {
2091 /* Keep Mark-1 state for 1ms (as per DSI spec) */
2092 ktime_t wait
= ns_to_ktime(1000 * 1000);
2093 set_current_state(TASK_UNINTERRUPTIBLE
);
2094 schedule_hrtimeout(&wait
, HRTIMER_MODE_REL
);
2096 /* Disable the override. The lanes should be set to Mark-11
2097 * state by the HW */
2098 dsi_cio_disable_lane_override(dsi
);
2101 /* FORCE_TX_STOP_MODE_IO */
2102 REG_FLD_MOD(dsi
, DSI_TIMING1
, 0, 15, 15);
2104 dsi_cio_timings(dsi
);
2106 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
2107 /* DDR_CLK_ALWAYS_ON */
2108 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
,
2109 dsi
->vm_timings
.ddr_clk_always_on
, 13, 13);
2112 dsi
->ulps_enabled
= false;
2114 DSSDBG("CIO init done\n");
2119 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, 0, 20, 20); /* LP_CLK_ENABLE */
2121 dsi_cio_power(dsi
, DSI_COMPLEXIO_POWER_OFF
);
2123 if (dsi
->ulps_enabled
)
2124 dsi_cio_disable_lane_override(dsi
);
2126 dsi_disable_scp_clk(dsi
);
2127 dsi_disable_pads(dsi
);
2131 static void dsi_cio_uninit(struct dsi_data
*dsi
)
2133 /* DDR_CLK_ALWAYS_ON */
2134 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, 0, 13, 13);
2136 dsi_cio_power(dsi
, DSI_COMPLEXIO_POWER_OFF
);
2137 dsi_disable_scp_clk(dsi
);
2138 dsi_disable_pads(dsi
);
2141 static void dsi_config_tx_fifo(struct dsi_data
*dsi
,
2142 enum fifo_size size1
, enum fifo_size size2
,
2143 enum fifo_size size3
, enum fifo_size size4
)
2149 dsi
->vc
[0].tx_fifo_size
= size1
;
2150 dsi
->vc
[1].tx_fifo_size
= size2
;
2151 dsi
->vc
[2].tx_fifo_size
= size3
;
2152 dsi
->vc
[3].tx_fifo_size
= size4
;
2154 for (i
= 0; i
< 4; i
++) {
2156 int size
= dsi
->vc
[i
].tx_fifo_size
;
2158 if (add
+ size
> 4) {
2159 DSSERR("Illegal FIFO configuration\n");
2164 v
= FLD_VAL(add
, 2, 0) | FLD_VAL(size
, 7, 4);
2166 /*DSSDBG("TX FIFO vc %d: size %d, add %d\n", i, size, add); */
2170 dsi_write_reg(dsi
, DSI_TX_FIFO_VC_SIZE
, r
);
2173 static void dsi_config_rx_fifo(struct dsi_data
*dsi
,
2174 enum fifo_size size1
, enum fifo_size size2
,
2175 enum fifo_size size3
, enum fifo_size size4
)
2181 dsi
->vc
[0].rx_fifo_size
= size1
;
2182 dsi
->vc
[1].rx_fifo_size
= size2
;
2183 dsi
->vc
[2].rx_fifo_size
= size3
;
2184 dsi
->vc
[3].rx_fifo_size
= size4
;
2186 for (i
= 0; i
< 4; i
++) {
2188 int size
= dsi
->vc
[i
].rx_fifo_size
;
2190 if (add
+ size
> 4) {
2191 DSSERR("Illegal FIFO configuration\n");
2196 v
= FLD_VAL(add
, 2, 0) | FLD_VAL(size
, 7, 4);
2198 /*DSSDBG("RX FIFO vc %d: size %d, add %d\n", i, size, add); */
2202 dsi_write_reg(dsi
, DSI_RX_FIFO_VC_SIZE
, r
);
2205 static int dsi_force_tx_stop_mode_io(struct dsi_data
*dsi
)
2209 r
= dsi_read_reg(dsi
, DSI_TIMING1
);
2210 r
= FLD_MOD(r
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
2211 dsi_write_reg(dsi
, DSI_TIMING1
, r
);
2213 if (!wait_for_bit_change(dsi
, DSI_TIMING1
, 15, 0)) {
2214 DSSERR("TX_STOP bit not going down\n");
2221 static bool dsi_vc_is_enabled(struct dsi_data
*dsi
, int channel
)
2223 return REG_GET(dsi
, DSI_VC_CTRL(channel
), 0, 0);
2226 static void dsi_packet_sent_handler_vp(void *data
, u32 mask
)
2228 struct dsi_packet_sent_handler_data
*vp_data
=
2229 (struct dsi_packet_sent_handler_data
*) data
;
2230 struct dsi_data
*dsi
= vp_data
->dsi
;
2231 const int channel
= dsi
->update_channel
;
2232 u8 bit
= dsi
->te_enabled
? 30 : 31;
2234 if (REG_GET(dsi
, DSI_VC_TE(channel
), bit
, bit
) == 0)
2235 complete(vp_data
->completion
);
2238 static int dsi_sync_vc_vp(struct dsi_data
*dsi
, int channel
)
2240 DECLARE_COMPLETION_ONSTACK(completion
);
2241 struct dsi_packet_sent_handler_data vp_data
= {
2243 .completion
= &completion
2248 bit
= dsi
->te_enabled
? 30 : 31;
2250 r
= dsi_register_isr_vc(dsi
, channel
, dsi_packet_sent_handler_vp
,
2251 &vp_data
, DSI_VC_IRQ_PACKET_SENT
);
2255 /* Wait for completion only if TE_EN/TE_START is still set */
2256 if (REG_GET(dsi
, DSI_VC_TE(channel
), bit
, bit
)) {
2257 if (wait_for_completion_timeout(&completion
,
2258 msecs_to_jiffies(10)) == 0) {
2259 DSSERR("Failed to complete previous frame transfer\n");
2265 dsi_unregister_isr_vc(dsi
, channel
, dsi_packet_sent_handler_vp
,
2266 &vp_data
, DSI_VC_IRQ_PACKET_SENT
);
2270 dsi_unregister_isr_vc(dsi
, channel
, dsi_packet_sent_handler_vp
,
2271 &vp_data
, DSI_VC_IRQ_PACKET_SENT
);
2276 static void dsi_packet_sent_handler_l4(void *data
, u32 mask
)
2278 struct dsi_packet_sent_handler_data
*l4_data
=
2279 (struct dsi_packet_sent_handler_data
*) data
;
2280 struct dsi_data
*dsi
= l4_data
->dsi
;
2281 const int channel
= dsi
->update_channel
;
2283 if (REG_GET(dsi
, DSI_VC_CTRL(channel
), 5, 5) == 0)
2284 complete(l4_data
->completion
);
2287 static int dsi_sync_vc_l4(struct dsi_data
*dsi
, int channel
)
2289 DECLARE_COMPLETION_ONSTACK(completion
);
2290 struct dsi_packet_sent_handler_data l4_data
= {
2292 .completion
= &completion
2296 r
= dsi_register_isr_vc(dsi
, channel
, dsi_packet_sent_handler_l4
,
2297 &l4_data
, DSI_VC_IRQ_PACKET_SENT
);
2301 /* Wait for completion only if TX_FIFO_NOT_EMPTY is still set */
2302 if (REG_GET(dsi
, DSI_VC_CTRL(channel
), 5, 5)) {
2303 if (wait_for_completion_timeout(&completion
,
2304 msecs_to_jiffies(10)) == 0) {
2305 DSSERR("Failed to complete previous l4 transfer\n");
2311 dsi_unregister_isr_vc(dsi
, channel
, dsi_packet_sent_handler_l4
,
2312 &l4_data
, DSI_VC_IRQ_PACKET_SENT
);
2316 dsi_unregister_isr_vc(dsi
, channel
, dsi_packet_sent_handler_l4
,
2317 &l4_data
, DSI_VC_IRQ_PACKET_SENT
);
2322 static int dsi_sync_vc(struct dsi_data
*dsi
, int channel
)
2324 WARN_ON(!dsi_bus_is_locked(dsi
));
2326 WARN_ON(in_interrupt());
2328 if (!dsi_vc_is_enabled(dsi
, channel
))
2331 switch (dsi
->vc
[channel
].source
) {
2332 case DSI_VC_SOURCE_VP
:
2333 return dsi_sync_vc_vp(dsi
, channel
);
2334 case DSI_VC_SOURCE_L4
:
2335 return dsi_sync_vc_l4(dsi
, channel
);
2342 static int dsi_vc_enable(struct dsi_data
*dsi
, int channel
, bool enable
)
2344 DSSDBG("dsi_vc_enable channel %d, enable %d\n",
2347 enable
= enable
? 1 : 0;
2349 REG_FLD_MOD(dsi
, DSI_VC_CTRL(channel
), enable
, 0, 0);
2351 if (!wait_for_bit_change(dsi
, DSI_VC_CTRL(channel
), 0, enable
)) {
2352 DSSERR("Failed to set dsi_vc_enable to %d\n", enable
);
2359 static void dsi_vc_initial_config(struct dsi_data
*dsi
, int channel
)
2363 DSSDBG("Initial config of virtual channel %d", channel
);
2365 r
= dsi_read_reg(dsi
, DSI_VC_CTRL(channel
));
2367 if (FLD_GET(r
, 15, 15)) /* VC_BUSY */
2368 DSSERR("VC(%d) busy when trying to configure it!\n",
2371 r
= FLD_MOD(r
, 0, 1, 1); /* SOURCE, 0 = L4 */
2372 r
= FLD_MOD(r
, 0, 2, 2); /* BTA_SHORT_EN */
2373 r
= FLD_MOD(r
, 0, 3, 3); /* BTA_LONG_EN */
2374 r
= FLD_MOD(r
, 0, 4, 4); /* MODE, 0 = command */
2375 r
= FLD_MOD(r
, 1, 7, 7); /* CS_TX_EN */
2376 r
= FLD_MOD(r
, 1, 8, 8); /* ECC_TX_EN */
2377 r
= FLD_MOD(r
, 0, 9, 9); /* MODE_SPEED, high speed on/off */
2378 if (dsi
->data
->quirks
& DSI_QUIRK_VC_OCP_WIDTH
)
2379 r
= FLD_MOD(r
, 3, 11, 10); /* OCP_WIDTH = 32 bit */
2381 r
= FLD_MOD(r
, 4, 29, 27); /* DMA_RX_REQ_NB = no dma */
2382 r
= FLD_MOD(r
, 4, 23, 21); /* DMA_TX_REQ_NB = no dma */
2384 dsi_write_reg(dsi
, DSI_VC_CTRL(channel
), r
);
2386 dsi
->vc
[channel
].source
= DSI_VC_SOURCE_L4
;
2389 static int dsi_vc_config_source(struct dsi_data
*dsi
, int channel
,
2390 enum dsi_vc_source source
)
2392 if (dsi
->vc
[channel
].source
== source
)
2395 DSSDBG("Source config of virtual channel %d", channel
);
2397 dsi_sync_vc(dsi
, channel
);
2399 dsi_vc_enable(dsi
, channel
, 0);
2402 if (!wait_for_bit_change(dsi
, DSI_VC_CTRL(channel
), 15, 0)) {
2403 DSSERR("vc(%d) busy when trying to config for VP\n", channel
);
2407 /* SOURCE, 0 = L4, 1 = video port */
2408 REG_FLD_MOD(dsi
, DSI_VC_CTRL(channel
), source
, 1, 1);
2410 /* DCS_CMD_ENABLE */
2411 if (dsi
->data
->quirks
& DSI_QUIRK_DCS_CMD_CONFIG_VC
) {
2412 bool enable
= source
== DSI_VC_SOURCE_VP
;
2413 REG_FLD_MOD(dsi
, DSI_VC_CTRL(channel
), enable
, 30, 30);
2416 dsi_vc_enable(dsi
, channel
, 1);
2418 dsi
->vc
[channel
].source
= source
;
2423 static void dsi_vc_enable_hs(struct omap_dss_device
*dssdev
, int channel
,
2426 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
2428 DSSDBG("dsi_vc_enable_hs(%d, %d)\n", channel
, enable
);
2430 WARN_ON(!dsi_bus_is_locked(dsi
));
2432 dsi_vc_enable(dsi
, channel
, 0);
2433 dsi_if_enable(dsi
, 0);
2435 REG_FLD_MOD(dsi
, DSI_VC_CTRL(channel
), enable
, 9, 9);
2437 dsi_vc_enable(dsi
, channel
, 1);
2438 dsi_if_enable(dsi
, 1);
2440 dsi_force_tx_stop_mode_io(dsi
);
2442 /* start the DDR clock by sending a NULL packet */
2443 if (dsi
->vm_timings
.ddr_clk_always_on
&& enable
)
2444 dsi_vc_send_null(dsi
, channel
);
2447 static void dsi_vc_flush_long_data(struct dsi_data
*dsi
, int channel
)
2449 while (REG_GET(dsi
, DSI_VC_CTRL(channel
), 20, 20)) {
2451 val
= dsi_read_reg(dsi
, DSI_VC_SHORT_PACKET_HEADER(channel
));
2452 DSSDBG("\t\tb1 %#02x b2 %#02x b3 %#02x b4 %#02x\n",
2456 (val
>> 24) & 0xff);
2460 static void dsi_show_rx_ack_with_err(u16 err
)
2462 DSSERR("\tACK with ERROR (%#x):\n", err
);
2464 DSSERR("\t\tSoT Error\n");
2466 DSSERR("\t\tSoT Sync Error\n");
2468 DSSERR("\t\tEoT Sync Error\n");
2470 DSSERR("\t\tEscape Mode Entry Command Error\n");
2472 DSSERR("\t\tLP Transmit Sync Error\n");
2474 DSSERR("\t\tHS Receive Timeout Error\n");
2476 DSSERR("\t\tFalse Control Error\n");
2478 DSSERR("\t\t(reserved7)\n");
2480 DSSERR("\t\tECC Error, single-bit (corrected)\n");
2482 DSSERR("\t\tECC Error, multi-bit (not corrected)\n");
2483 if (err
& (1 << 10))
2484 DSSERR("\t\tChecksum Error\n");
2485 if (err
& (1 << 11))
2486 DSSERR("\t\tData type not recognized\n");
2487 if (err
& (1 << 12))
2488 DSSERR("\t\tInvalid VC ID\n");
2489 if (err
& (1 << 13))
2490 DSSERR("\t\tInvalid Transmission Length\n");
2491 if (err
& (1 << 14))
2492 DSSERR("\t\t(reserved14)\n");
2493 if (err
& (1 << 15))
2494 DSSERR("\t\tDSI Protocol Violation\n");
2497 static u16
dsi_vc_flush_receive_data(struct dsi_data
*dsi
, int channel
)
2499 /* RX_FIFO_NOT_EMPTY */
2500 while (REG_GET(dsi
, DSI_VC_CTRL(channel
), 20, 20)) {
2503 val
= dsi_read_reg(dsi
, DSI_VC_SHORT_PACKET_HEADER(channel
));
2504 DSSERR("\trawval %#08x\n", val
);
2505 dt
= FLD_GET(val
, 5, 0);
2506 if (dt
== MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT
) {
2507 u16 err
= FLD_GET(val
, 23, 8);
2508 dsi_show_rx_ack_with_err(err
);
2509 } else if (dt
== MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE
) {
2510 DSSERR("\tDCS short response, 1 byte: %#x\n",
2511 FLD_GET(val
, 23, 8));
2512 } else if (dt
== MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE
) {
2513 DSSERR("\tDCS short response, 2 byte: %#x\n",
2514 FLD_GET(val
, 23, 8));
2515 } else if (dt
== MIPI_DSI_RX_DCS_LONG_READ_RESPONSE
) {
2516 DSSERR("\tDCS long response, len %d\n",
2517 FLD_GET(val
, 23, 8));
2518 dsi_vc_flush_long_data(dsi
, channel
);
2520 DSSERR("\tunknown datatype 0x%02x\n", dt
);
2526 static int dsi_vc_send_bta(struct dsi_data
*dsi
, int channel
)
2528 if (dsi
->debug_write
|| dsi
->debug_read
)
2529 DSSDBG("dsi_vc_send_bta %d\n", channel
);
2531 WARN_ON(!dsi_bus_is_locked(dsi
));
2533 /* RX_FIFO_NOT_EMPTY */
2534 if (REG_GET(dsi
, DSI_VC_CTRL(channel
), 20, 20)) {
2535 DSSERR("rx fifo not empty when sending BTA, dumping data:\n");
2536 dsi_vc_flush_receive_data(dsi
, channel
);
2539 REG_FLD_MOD(dsi
, DSI_VC_CTRL(channel
), 1, 6, 6); /* BTA_EN */
2541 /* flush posted write */
2542 dsi_read_reg(dsi
, DSI_VC_CTRL(channel
));
2547 static int dsi_vc_send_bta_sync(struct omap_dss_device
*dssdev
, int channel
)
2549 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
2550 DECLARE_COMPLETION_ONSTACK(completion
);
2554 r
= dsi_register_isr_vc(dsi
, channel
, dsi_completion_handler
,
2555 &completion
, DSI_VC_IRQ_BTA
);
2559 r
= dsi_register_isr(dsi
, dsi_completion_handler
, &completion
,
2560 DSI_IRQ_ERROR_MASK
);
2564 r
= dsi_vc_send_bta(dsi
, channel
);
2568 if (wait_for_completion_timeout(&completion
,
2569 msecs_to_jiffies(500)) == 0) {
2570 DSSERR("Failed to receive BTA\n");
2575 err
= dsi_get_errors(dsi
);
2577 DSSERR("Error while sending BTA: %x\n", err
);
2582 dsi_unregister_isr(dsi
, dsi_completion_handler
, &completion
,
2583 DSI_IRQ_ERROR_MASK
);
2585 dsi_unregister_isr_vc(dsi
, channel
, dsi_completion_handler
,
2586 &completion
, DSI_VC_IRQ_BTA
);
2591 static inline void dsi_vc_write_long_header(struct dsi_data
*dsi
, int channel
,
2592 u8 data_type
, u16 len
, u8 ecc
)
2597 WARN_ON(!dsi_bus_is_locked(dsi
));
2599 data_id
= data_type
| dsi
->vc
[channel
].vc_id
<< 6;
2601 val
= FLD_VAL(data_id
, 7, 0) | FLD_VAL(len
, 23, 8) |
2602 FLD_VAL(ecc
, 31, 24);
2604 dsi_write_reg(dsi
, DSI_VC_LONG_PACKET_HEADER(channel
), val
);
2607 static inline void dsi_vc_write_long_payload(struct dsi_data
*dsi
, int channel
,
2608 u8 b1
, u8 b2
, u8 b3
, u8 b4
)
2612 val
= b4
<< 24 | b3
<< 16 | b2
<< 8 | b1
<< 0;
2614 /* DSSDBG("\twriting %02x, %02x, %02x, %02x (%#010x)\n",
2615 b1, b2, b3, b4, val); */
2617 dsi_write_reg(dsi
, DSI_VC_LONG_PACKET_PAYLOAD(channel
), val
);
2620 static int dsi_vc_send_long(struct dsi_data
*dsi
, int channel
, u8 data_type
,
2621 u8
*data
, u16 len
, u8 ecc
)
2629 if (dsi
->debug_write
)
2630 DSSDBG("dsi_vc_send_long, %d bytes\n", len
);
2633 if (dsi
->vc
[channel
].tx_fifo_size
* 32 * 4 < len
+ 4) {
2634 DSSERR("unable to send long packet: packet too long.\n");
2638 dsi_vc_config_source(dsi
, channel
, DSI_VC_SOURCE_L4
);
2640 dsi_vc_write_long_header(dsi
, channel
, data_type
, len
, ecc
);
2643 for (i
= 0; i
< len
>> 2; i
++) {
2644 if (dsi
->debug_write
)
2645 DSSDBG("\tsending full packet %d\n", i
);
2652 dsi_vc_write_long_payload(dsi
, channel
, b1
, b2
, b3
, b4
);
2657 b1
= 0; b2
= 0; b3
= 0;
2659 if (dsi
->debug_write
)
2660 DSSDBG("\tsending remainder bytes %d\n", i
);
2677 dsi_vc_write_long_payload(dsi
, channel
, b1
, b2
, b3
, 0);
2683 static int dsi_vc_send_short(struct dsi_data
*dsi
, int channel
, u8 data_type
,
2689 WARN_ON(!dsi_bus_is_locked(dsi
));
2691 if (dsi
->debug_write
)
2692 DSSDBG("dsi_vc_send_short(ch%d, dt %#x, b1 %#x, b2 %#x)\n",
2694 data_type
, data
& 0xff, (data
>> 8) & 0xff);
2696 dsi_vc_config_source(dsi
, channel
, DSI_VC_SOURCE_L4
);
2698 if (FLD_GET(dsi_read_reg(dsi
, DSI_VC_CTRL(channel
)), 16, 16)) {
2699 DSSERR("ERROR FIFO FULL, aborting transfer\n");
2703 data_id
= data_type
| dsi
->vc
[channel
].vc_id
<< 6;
2705 r
= (data_id
<< 0) | (data
<< 8) | (ecc
<< 24);
2707 dsi_write_reg(dsi
, DSI_VC_SHORT_PACKET_HEADER(channel
), r
);
2712 static int dsi_vc_send_null(struct dsi_data
*dsi
, int channel
)
2714 return dsi_vc_send_long(dsi
, channel
, MIPI_DSI_NULL_PACKET
, NULL
, 0, 0);
2717 static int dsi_vc_write_nosync_common(struct dsi_data
*dsi
, int channel
,
2719 enum dss_dsi_content_type type
)
2724 BUG_ON(type
== DSS_DSI_CONTENT_DCS
);
2725 r
= dsi_vc_send_short(dsi
, channel
,
2726 MIPI_DSI_GENERIC_SHORT_WRITE_0_PARAM
, 0, 0);
2727 } else if (len
== 1) {
2728 r
= dsi_vc_send_short(dsi
, channel
,
2729 type
== DSS_DSI_CONTENT_GENERIC
?
2730 MIPI_DSI_GENERIC_SHORT_WRITE_1_PARAM
:
2731 MIPI_DSI_DCS_SHORT_WRITE
, data
[0], 0);
2732 } else if (len
== 2) {
2733 r
= dsi_vc_send_short(dsi
, channel
,
2734 type
== DSS_DSI_CONTENT_GENERIC
?
2735 MIPI_DSI_GENERIC_SHORT_WRITE_2_PARAM
:
2736 MIPI_DSI_DCS_SHORT_WRITE_PARAM
,
2737 data
[0] | (data
[1] << 8), 0);
2739 r
= dsi_vc_send_long(dsi
, channel
,
2740 type
== DSS_DSI_CONTENT_GENERIC
?
2741 MIPI_DSI_GENERIC_LONG_WRITE
:
2742 MIPI_DSI_DCS_LONG_WRITE
, data
, len
, 0);
2748 static int dsi_vc_dcs_write_nosync(struct omap_dss_device
*dssdev
, int channel
,
2751 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
2753 return dsi_vc_write_nosync_common(dsi
, channel
, data
, len
,
2754 DSS_DSI_CONTENT_DCS
);
2757 static int dsi_vc_generic_write_nosync(struct omap_dss_device
*dssdev
, int channel
,
2760 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
2762 return dsi_vc_write_nosync_common(dsi
, channel
, data
, len
,
2763 DSS_DSI_CONTENT_GENERIC
);
2766 static int dsi_vc_write_common(struct omap_dss_device
*dssdev
,
2767 int channel
, u8
*data
, int len
,
2768 enum dss_dsi_content_type type
)
2770 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
2773 r
= dsi_vc_write_nosync_common(dsi
, channel
, data
, len
, type
);
2777 r
= dsi_vc_send_bta_sync(dssdev
, channel
);
2781 /* RX_FIFO_NOT_EMPTY */
2782 if (REG_GET(dsi
, DSI_VC_CTRL(channel
), 20, 20)) {
2783 DSSERR("rx fifo not empty after write, dumping data:\n");
2784 dsi_vc_flush_receive_data(dsi
, channel
);
2791 DSSERR("dsi_vc_write_common(ch %d, cmd 0x%02x, len %d) failed\n",
2792 channel
, data
[0], len
);
2796 static int dsi_vc_dcs_write(struct omap_dss_device
*dssdev
, int channel
, u8
*data
,
2799 return dsi_vc_write_common(dssdev
, channel
, data
, len
,
2800 DSS_DSI_CONTENT_DCS
);
2803 static int dsi_vc_generic_write(struct omap_dss_device
*dssdev
, int channel
, u8
*data
,
2806 return dsi_vc_write_common(dssdev
, channel
, data
, len
,
2807 DSS_DSI_CONTENT_GENERIC
);
2810 static int dsi_vc_dcs_send_read_request(struct dsi_data
*dsi
, int channel
,
2815 if (dsi
->debug_read
)
2816 DSSDBG("dsi_vc_dcs_send_read_request(ch%d, dcs_cmd %x)\n",
2819 r
= dsi_vc_send_short(dsi
, channel
, MIPI_DSI_DCS_READ
, dcs_cmd
, 0);
2821 DSSERR("dsi_vc_dcs_send_read_request(ch %d, cmd 0x%02x)"
2822 " failed\n", channel
, dcs_cmd
);
2829 static int dsi_vc_generic_send_read_request(struct dsi_data
*dsi
, int channel
,
2830 u8
*reqdata
, int reqlen
)
2836 if (dsi
->debug_read
)
2837 DSSDBG("dsi_vc_generic_send_read_request(ch %d, reqlen %d)\n",
2841 data_type
= MIPI_DSI_GENERIC_READ_REQUEST_0_PARAM
;
2843 } else if (reqlen
== 1) {
2844 data_type
= MIPI_DSI_GENERIC_READ_REQUEST_1_PARAM
;
2846 } else if (reqlen
== 2) {
2847 data_type
= MIPI_DSI_GENERIC_READ_REQUEST_2_PARAM
;
2848 data
= reqdata
[0] | (reqdata
[1] << 8);
2854 r
= dsi_vc_send_short(dsi
, channel
, data_type
, data
, 0);
2856 DSSERR("dsi_vc_generic_send_read_request(ch %d, reqlen %d)"
2857 " failed\n", channel
, reqlen
);
2864 static int dsi_vc_read_rx_fifo(struct dsi_data
*dsi
, int channel
, u8
*buf
,
2865 int buflen
, enum dss_dsi_content_type type
)
2871 /* RX_FIFO_NOT_EMPTY */
2872 if (REG_GET(dsi
, DSI_VC_CTRL(channel
), 20, 20) == 0) {
2873 DSSERR("RX fifo empty when trying to read.\n");
2878 val
= dsi_read_reg(dsi
, DSI_VC_SHORT_PACKET_HEADER(channel
));
2879 if (dsi
->debug_read
)
2880 DSSDBG("\theader: %08x\n", val
);
2881 dt
= FLD_GET(val
, 5, 0);
2882 if (dt
== MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT
) {
2883 u16 err
= FLD_GET(val
, 23, 8);
2884 dsi_show_rx_ack_with_err(err
);
2888 } else if (dt
== (type
== DSS_DSI_CONTENT_GENERIC
?
2889 MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_1BYTE
:
2890 MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE
)) {
2891 u8 data
= FLD_GET(val
, 15, 8);
2892 if (dsi
->debug_read
)
2893 DSSDBG("\t%s short response, 1 byte: %02x\n",
2894 type
== DSS_DSI_CONTENT_GENERIC
? "GENERIC" :
2905 } else if (dt
== (type
== DSS_DSI_CONTENT_GENERIC
?
2906 MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_2BYTE
:
2907 MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE
)) {
2908 u16 data
= FLD_GET(val
, 23, 8);
2909 if (dsi
->debug_read
)
2910 DSSDBG("\t%s short response, 2 byte: %04x\n",
2911 type
== DSS_DSI_CONTENT_GENERIC
? "GENERIC" :
2919 buf
[0] = data
& 0xff;
2920 buf
[1] = (data
>> 8) & 0xff;
2923 } else if (dt
== (type
== DSS_DSI_CONTENT_GENERIC
?
2924 MIPI_DSI_RX_GENERIC_LONG_READ_RESPONSE
:
2925 MIPI_DSI_RX_DCS_LONG_READ_RESPONSE
)) {
2927 int len
= FLD_GET(val
, 23, 8);
2928 if (dsi
->debug_read
)
2929 DSSDBG("\t%s long response, len %d\n",
2930 type
== DSS_DSI_CONTENT_GENERIC
? "GENERIC" :
2938 /* two byte checksum ends the packet, not included in len */
2939 for (w
= 0; w
< len
+ 2;) {
2941 val
= dsi_read_reg(dsi
,
2942 DSI_VC_SHORT_PACKET_HEADER(channel
));
2943 if (dsi
->debug_read
)
2944 DSSDBG("\t\t%02x %02x %02x %02x\n",
2948 (val
>> 24) & 0xff);
2950 for (b
= 0; b
< 4; ++b
) {
2952 buf
[w
] = (val
>> (b
* 8)) & 0xff;
2953 /* we discard the 2 byte checksum */
2960 DSSERR("\tunknown datatype 0x%02x\n", dt
);
2966 DSSERR("dsi_vc_read_rx_fifo(ch %d type %s) failed\n", channel
,
2967 type
== DSS_DSI_CONTENT_GENERIC
? "GENERIC" : "DCS");
2972 static int dsi_vc_dcs_read(struct omap_dss_device
*dssdev
, int channel
, u8 dcs_cmd
,
2973 u8
*buf
, int buflen
)
2975 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
2978 r
= dsi_vc_dcs_send_read_request(dsi
, channel
, dcs_cmd
);
2982 r
= dsi_vc_send_bta_sync(dssdev
, channel
);
2986 r
= dsi_vc_read_rx_fifo(dsi
, channel
, buf
, buflen
,
2987 DSS_DSI_CONTENT_DCS
);
2998 DSSERR("dsi_vc_dcs_read(ch %d, cmd 0x%02x) failed\n", channel
, dcs_cmd
);
3002 static int dsi_vc_generic_read(struct omap_dss_device
*dssdev
, int channel
,
3003 u8
*reqdata
, int reqlen
, u8
*buf
, int buflen
)
3005 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
3008 r
= dsi_vc_generic_send_read_request(dsi
, channel
, reqdata
, reqlen
);
3012 r
= dsi_vc_send_bta_sync(dssdev
, channel
);
3016 r
= dsi_vc_read_rx_fifo(dsi
, channel
, buf
, buflen
,
3017 DSS_DSI_CONTENT_GENERIC
);
3029 static int dsi_vc_set_max_rx_packet_size(struct omap_dss_device
*dssdev
, int channel
,
3032 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
3034 return dsi_vc_send_short(dsi
, channel
,
3035 MIPI_DSI_SET_MAXIMUM_RETURN_PACKET_SIZE
, len
, 0);
3038 static int dsi_enter_ulps(struct dsi_data
*dsi
)
3040 DECLARE_COMPLETION_ONSTACK(completion
);
3044 DSSDBG("Entering ULPS");
3046 WARN_ON(!dsi_bus_is_locked(dsi
));
3048 WARN_ON(dsi
->ulps_enabled
);
3050 if (dsi
->ulps_enabled
)
3053 /* DDR_CLK_ALWAYS_ON */
3054 if (REG_GET(dsi
, DSI_CLK_CTRL
, 13, 13)) {
3055 dsi_if_enable(dsi
, 0);
3056 REG_FLD_MOD(dsi
, DSI_CLK_CTRL
, 0, 13, 13);
3057 dsi_if_enable(dsi
, 1);
3060 dsi_sync_vc(dsi
, 0);
3061 dsi_sync_vc(dsi
, 1);
3062 dsi_sync_vc(dsi
, 2);
3063 dsi_sync_vc(dsi
, 3);
3065 dsi_force_tx_stop_mode_io(dsi
);
3067 dsi_vc_enable(dsi
, 0, false);
3068 dsi_vc_enable(dsi
, 1, false);
3069 dsi_vc_enable(dsi
, 2, false);
3070 dsi_vc_enable(dsi
, 3, false);
3072 if (REG_GET(dsi
, DSI_COMPLEXIO_CFG2
, 16, 16)) { /* HS_BUSY */
3073 DSSERR("HS busy when enabling ULPS\n");
3077 if (REG_GET(dsi
, DSI_COMPLEXIO_CFG2
, 17, 17)) { /* LP_BUSY */
3078 DSSERR("LP busy when enabling ULPS\n");
3082 r
= dsi_register_isr_cio(dsi
, dsi_completion_handler
, &completion
,
3083 DSI_CIO_IRQ_ULPSACTIVENOT_ALL0
);
3089 for (i
= 0; i
< dsi
->num_lanes_supported
; ++i
) {
3090 if (dsi
->lanes
[i
].function
== DSI_LANE_UNUSED
)
3094 /* Assert TxRequestEsc for data lanes and TxUlpsClk for clk lane */
3095 /* LANEx_ULPS_SIG2 */
3096 REG_FLD_MOD(dsi
, DSI_COMPLEXIO_CFG2
, mask
, 9, 5);
3098 /* flush posted write and wait for SCP interface to finish the write */
3099 dsi_read_reg(dsi
, DSI_COMPLEXIO_CFG2
);
3101 if (wait_for_completion_timeout(&completion
,
3102 msecs_to_jiffies(1000)) == 0) {
3103 DSSERR("ULPS enable timeout\n");
3108 dsi_unregister_isr_cio(dsi
, dsi_completion_handler
, &completion
,
3109 DSI_CIO_IRQ_ULPSACTIVENOT_ALL0
);
3111 /* Reset LANEx_ULPS_SIG2 */
3112 REG_FLD_MOD(dsi
, DSI_COMPLEXIO_CFG2
, 0, 9, 5);
3114 /* flush posted write and wait for SCP interface to finish the write */
3115 dsi_read_reg(dsi
, DSI_COMPLEXIO_CFG2
);
3117 dsi_cio_power(dsi
, DSI_COMPLEXIO_POWER_ULPS
);
3119 dsi_if_enable(dsi
, false);
3121 dsi
->ulps_enabled
= true;
3126 dsi_unregister_isr_cio(dsi
, dsi_completion_handler
, &completion
,
3127 DSI_CIO_IRQ_ULPSACTIVENOT_ALL0
);
3131 static void dsi_set_lp_rx_timeout(struct dsi_data
*dsi
, unsigned int ticks
,
3135 unsigned long total_ticks
;
3138 BUG_ON(ticks
> 0x1fff);
3140 /* ticks in DSI_FCK */
3141 fck
= dsi_fclk_rate(dsi
);
3143 r
= dsi_read_reg(dsi
, DSI_TIMING2
);
3144 r
= FLD_MOD(r
, 1, 15, 15); /* LP_RX_TO */
3145 r
= FLD_MOD(r
, x16
? 1 : 0, 14, 14); /* LP_RX_TO_X16 */
3146 r
= FLD_MOD(r
, x4
? 1 : 0, 13, 13); /* LP_RX_TO_X4 */
3147 r
= FLD_MOD(r
, ticks
, 12, 0); /* LP_RX_COUNTER */
3148 dsi_write_reg(dsi
, DSI_TIMING2
, r
);
3150 total_ticks
= ticks
* (x16
? 16 : 1) * (x4
? 4 : 1);
3152 DSSDBG("LP_RX_TO %lu ticks (%#x%s%s) = %lu ns\n",
3154 ticks
, x4
? " x4" : "", x16
? " x16" : "",
3155 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
3158 static void dsi_set_ta_timeout(struct dsi_data
*dsi
, unsigned int ticks
,
3162 unsigned long total_ticks
;
3165 BUG_ON(ticks
> 0x1fff);
3167 /* ticks in DSI_FCK */
3168 fck
= dsi_fclk_rate(dsi
);
3170 r
= dsi_read_reg(dsi
, DSI_TIMING1
);
3171 r
= FLD_MOD(r
, 1, 31, 31); /* TA_TO */
3172 r
= FLD_MOD(r
, x16
? 1 : 0, 30, 30); /* TA_TO_X16 */
3173 r
= FLD_MOD(r
, x8
? 1 : 0, 29, 29); /* TA_TO_X8 */
3174 r
= FLD_MOD(r
, ticks
, 28, 16); /* TA_TO_COUNTER */
3175 dsi_write_reg(dsi
, DSI_TIMING1
, r
);
3177 total_ticks
= ticks
* (x16
? 16 : 1) * (x8
? 8 : 1);
3179 DSSDBG("TA_TO %lu ticks (%#x%s%s) = %lu ns\n",
3181 ticks
, x8
? " x8" : "", x16
? " x16" : "",
3182 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
3185 static void dsi_set_stop_state_counter(struct dsi_data
*dsi
, unsigned int ticks
,
3189 unsigned long total_ticks
;
3192 BUG_ON(ticks
> 0x1fff);
3194 /* ticks in DSI_FCK */
3195 fck
= dsi_fclk_rate(dsi
);
3197 r
= dsi_read_reg(dsi
, DSI_TIMING1
);
3198 r
= FLD_MOD(r
, 1, 15, 15); /* FORCE_TX_STOP_MODE_IO */
3199 r
= FLD_MOD(r
, x16
? 1 : 0, 14, 14); /* STOP_STATE_X16_IO */
3200 r
= FLD_MOD(r
, x4
? 1 : 0, 13, 13); /* STOP_STATE_X4_IO */
3201 r
= FLD_MOD(r
, ticks
, 12, 0); /* STOP_STATE_COUNTER_IO */
3202 dsi_write_reg(dsi
, DSI_TIMING1
, r
);
3204 total_ticks
= ticks
* (x16
? 16 : 1) * (x4
? 4 : 1);
3206 DSSDBG("STOP_STATE_COUNTER %lu ticks (%#x%s%s) = %lu ns\n",
3208 ticks
, x4
? " x4" : "", x16
? " x16" : "",
3209 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
3212 static void dsi_set_hs_tx_timeout(struct dsi_data
*dsi
, unsigned int ticks
,
3216 unsigned long total_ticks
;
3219 BUG_ON(ticks
> 0x1fff);
3221 /* ticks in TxByteClkHS */
3222 fck
= dsi_get_txbyteclkhs(dsi
);
3224 r
= dsi_read_reg(dsi
, DSI_TIMING2
);
3225 r
= FLD_MOD(r
, 1, 31, 31); /* HS_TX_TO */
3226 r
= FLD_MOD(r
, x16
? 1 : 0, 30, 30); /* HS_TX_TO_X16 */
3227 r
= FLD_MOD(r
, x4
? 1 : 0, 29, 29); /* HS_TX_TO_X8 (4 really) */
3228 r
= FLD_MOD(r
, ticks
, 28, 16); /* HS_TX_TO_COUNTER */
3229 dsi_write_reg(dsi
, DSI_TIMING2
, r
);
3231 total_ticks
= ticks
* (x16
? 16 : 1) * (x4
? 4 : 1);
3233 DSSDBG("HS_TX_TO %lu ticks (%#x%s%s) = %lu ns\n",
3235 ticks
, x4
? " x4" : "", x16
? " x16" : "",
3236 (total_ticks
* 1000) / (fck
/ 1000 / 1000));
3239 static void dsi_config_vp_num_line_buffers(struct dsi_data
*dsi
)
3241 int num_line_buffers
;
3243 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
3244 int bpp
= dsi_get_pixel_size(dsi
->pix_fmt
);
3245 const struct videomode
*vm
= &dsi
->vm
;
3247 * Don't use line buffers if width is greater than the video
3248 * port's line buffer size
3250 if (dsi
->line_buffer_size
<= vm
->hactive
* bpp
/ 8)
3251 num_line_buffers
= 0;
3253 num_line_buffers
= 2;
3255 /* Use maximum number of line buffers in command mode */
3256 num_line_buffers
= 2;
3260 REG_FLD_MOD(dsi
, DSI_CTRL
, num_line_buffers
, 13, 12);
3263 static void dsi_config_vp_sync_events(struct dsi_data
*dsi
)
3268 if (dsi
->vm_timings
.trans_mode
== OMAP_DSS_DSI_PULSE_MODE
)
3273 r
= dsi_read_reg(dsi
, DSI_CTRL
);
3274 r
= FLD_MOD(r
, 1, 9, 9); /* VP_DE_POL */
3275 r
= FLD_MOD(r
, 1, 10, 10); /* VP_HSYNC_POL */
3276 r
= FLD_MOD(r
, 1, 11, 11); /* VP_VSYNC_POL */
3277 r
= FLD_MOD(r
, 1, 15, 15); /* VP_VSYNC_START */
3278 r
= FLD_MOD(r
, sync_end
, 16, 16); /* VP_VSYNC_END */
3279 r
= FLD_MOD(r
, 1, 17, 17); /* VP_HSYNC_START */
3280 r
= FLD_MOD(r
, sync_end
, 18, 18); /* VP_HSYNC_END */
3281 dsi_write_reg(dsi
, DSI_CTRL
, r
);
3284 static void dsi_config_blanking_modes(struct dsi_data
*dsi
)
3286 int blanking_mode
= dsi
->vm_timings
.blanking_mode
;
3287 int hfp_blanking_mode
= dsi
->vm_timings
.hfp_blanking_mode
;
3288 int hbp_blanking_mode
= dsi
->vm_timings
.hbp_blanking_mode
;
3289 int hsa_blanking_mode
= dsi
->vm_timings
.hsa_blanking_mode
;
3293 * 0 = TX FIFO packets sent or LPS in corresponding blanking periods
3294 * 1 = Long blanking packets are sent in corresponding blanking periods
3296 r
= dsi_read_reg(dsi
, DSI_CTRL
);
3297 r
= FLD_MOD(r
, blanking_mode
, 20, 20); /* BLANKING_MODE */
3298 r
= FLD_MOD(r
, hfp_blanking_mode
, 21, 21); /* HFP_BLANKING */
3299 r
= FLD_MOD(r
, hbp_blanking_mode
, 22, 22); /* HBP_BLANKING */
3300 r
= FLD_MOD(r
, hsa_blanking_mode
, 23, 23); /* HSA_BLANKING */
3301 dsi_write_reg(dsi
, DSI_CTRL
, r
);
3305 * According to section 'HS Command Mode Interleaving' in OMAP TRM, Scenario 3
3306 * results in maximum transition time for data and clock lanes to enter and
3307 * exit HS mode. Hence, this is the scenario where the least amount of command
3308 * mode data can be interleaved. We program the minimum amount of TXBYTECLKHS
3309 * clock cycles that can be used to interleave command mode data in HS so that
3310 * all scenarios are satisfied.
3312 static int dsi_compute_interleave_hs(int blank
, bool ddr_alwon
, int enter_hs
,
3313 int exit_hs
, int exiths_clk
, int ddr_pre
, int ddr_post
)
3318 * If DDR_CLK_ALWAYS_ON is set, we need to consider HS mode transition
3319 * time of data lanes only, if it isn't set, we need to consider HS
3320 * transition time of both data and clock lanes. HS transition time
3321 * of Scenario 3 is considered.
3324 transition
= enter_hs
+ exit_hs
+ max(enter_hs
, 2) + 1;
3327 trans1
= ddr_pre
+ enter_hs
+ exit_hs
+ max(enter_hs
, 2) + 1;
3328 trans2
= ddr_pre
+ enter_hs
+ exiths_clk
+ ddr_post
+ ddr_pre
+
3330 transition
= max(trans1
, trans2
);
3333 return blank
> transition
? blank
- transition
: 0;
3337 * According to section 'LP Command Mode Interleaving' in OMAP TRM, Scenario 1
3338 * results in maximum transition time for data lanes to enter and exit LP mode.
3339 * Hence, this is the scenario where the least amount of command mode data can
3340 * be interleaved. We program the minimum amount of bytes that can be
3341 * interleaved in LP so that all scenarios are satisfied.
3343 static int dsi_compute_interleave_lp(int blank
, int enter_hs
, int exit_hs
,
3344 int lp_clk_div
, int tdsi_fclk
)
3346 int trans_lp
; /* time required for a LP transition, in TXBYTECLKHS */
3347 int tlp_avail
; /* time left for interleaving commands, in CLKIN4DDR */
3348 int ttxclkesc
; /* period of LP transmit escape clock, in CLKIN4DDR */
3349 int thsbyte_clk
= 16; /* Period of TXBYTECLKHS clock, in CLKIN4DDR */
3350 int lp_inter
; /* cmd mode data that can be interleaved, in bytes */
3352 /* maximum LP transition time according to Scenario 1 */
3353 trans_lp
= exit_hs
+ max(enter_hs
, 2) + 1;
3355 /* CLKIN4DDR = 16 * TXBYTECLKHS */
3356 tlp_avail
= thsbyte_clk
* (blank
- trans_lp
);
3358 ttxclkesc
= tdsi_fclk
* lp_clk_div
;
3360 lp_inter
= ((tlp_avail
- 8 * thsbyte_clk
- 5 * tdsi_fclk
) / ttxclkesc
-
3363 return max(lp_inter
, 0);
3366 static void dsi_config_cmd_mode_interleaving(struct dsi_data
*dsi
)
3369 int hfp_blanking_mode
, hbp_blanking_mode
, hsa_blanking_mode
;
3370 int hsa
, hfp
, hbp
, width_bytes
, bllp
, lp_clk_div
;
3371 int ddr_clk_pre
, ddr_clk_post
, enter_hs_mode_lat
, exit_hs_mode_lat
;
3372 int tclk_trail
, ths_exit
, exiths_clk
;
3374 const struct videomode
*vm
= &dsi
->vm
;
3375 int bpp
= dsi_get_pixel_size(dsi
->pix_fmt
);
3376 int ndl
= dsi
->num_lanes_used
- 1;
3377 int dsi_fclk_hsdiv
= dsi
->user_dsi_cinfo
.mX
[HSDIV_DSI
] + 1;
3378 int hsa_interleave_hs
= 0, hsa_interleave_lp
= 0;
3379 int hfp_interleave_hs
= 0, hfp_interleave_lp
= 0;
3380 int hbp_interleave_hs
= 0, hbp_interleave_lp
= 0;
3381 int bl_interleave_hs
= 0, bl_interleave_lp
= 0;
3384 r
= dsi_read_reg(dsi
, DSI_CTRL
);
3385 blanking_mode
= FLD_GET(r
, 20, 20);
3386 hfp_blanking_mode
= FLD_GET(r
, 21, 21);
3387 hbp_blanking_mode
= FLD_GET(r
, 22, 22);
3388 hsa_blanking_mode
= FLD_GET(r
, 23, 23);
3390 r
= dsi_read_reg(dsi
, DSI_VM_TIMING1
);
3391 hbp
= FLD_GET(r
, 11, 0);
3392 hfp
= FLD_GET(r
, 23, 12);
3393 hsa
= FLD_GET(r
, 31, 24);
3395 r
= dsi_read_reg(dsi
, DSI_CLK_TIMING
);
3396 ddr_clk_post
= FLD_GET(r
, 7, 0);
3397 ddr_clk_pre
= FLD_GET(r
, 15, 8);
3399 r
= dsi_read_reg(dsi
, DSI_VM_TIMING7
);
3400 exit_hs_mode_lat
= FLD_GET(r
, 15, 0);
3401 enter_hs_mode_lat
= FLD_GET(r
, 31, 16);
3403 r
= dsi_read_reg(dsi
, DSI_CLK_CTRL
);
3404 lp_clk_div
= FLD_GET(r
, 12, 0);
3405 ddr_alwon
= FLD_GET(r
, 13, 13);
3407 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG0
);
3408 ths_exit
= FLD_GET(r
, 7, 0);
3410 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG1
);
3411 tclk_trail
= FLD_GET(r
, 15, 8);
3413 exiths_clk
= ths_exit
+ tclk_trail
;
3415 width_bytes
= DIV_ROUND_UP(vm
->hactive
* bpp
, 8);
3416 bllp
= hbp
+ hfp
+ hsa
+ DIV_ROUND_UP(width_bytes
+ 6, ndl
);
3418 if (!hsa_blanking_mode
) {
3419 hsa_interleave_hs
= dsi_compute_interleave_hs(hsa
, ddr_alwon
,
3420 enter_hs_mode_lat
, exit_hs_mode_lat
,
3421 exiths_clk
, ddr_clk_pre
, ddr_clk_post
);
3422 hsa_interleave_lp
= dsi_compute_interleave_lp(hsa
,
3423 enter_hs_mode_lat
, exit_hs_mode_lat
,
3424 lp_clk_div
, dsi_fclk_hsdiv
);
3427 if (!hfp_blanking_mode
) {
3428 hfp_interleave_hs
= dsi_compute_interleave_hs(hfp
, ddr_alwon
,
3429 enter_hs_mode_lat
, exit_hs_mode_lat
,
3430 exiths_clk
, ddr_clk_pre
, ddr_clk_post
);
3431 hfp_interleave_lp
= dsi_compute_interleave_lp(hfp
,
3432 enter_hs_mode_lat
, exit_hs_mode_lat
,
3433 lp_clk_div
, dsi_fclk_hsdiv
);
3436 if (!hbp_blanking_mode
) {
3437 hbp_interleave_hs
= dsi_compute_interleave_hs(hbp
, ddr_alwon
,
3438 enter_hs_mode_lat
, exit_hs_mode_lat
,
3439 exiths_clk
, ddr_clk_pre
, ddr_clk_post
);
3441 hbp_interleave_lp
= dsi_compute_interleave_lp(hbp
,
3442 enter_hs_mode_lat
, exit_hs_mode_lat
,
3443 lp_clk_div
, dsi_fclk_hsdiv
);
3446 if (!blanking_mode
) {
3447 bl_interleave_hs
= dsi_compute_interleave_hs(bllp
, ddr_alwon
,
3448 enter_hs_mode_lat
, exit_hs_mode_lat
,
3449 exiths_clk
, ddr_clk_pre
, ddr_clk_post
);
3451 bl_interleave_lp
= dsi_compute_interleave_lp(bllp
,
3452 enter_hs_mode_lat
, exit_hs_mode_lat
,
3453 lp_clk_div
, dsi_fclk_hsdiv
);
3456 DSSDBG("DSI HS interleaving(TXBYTECLKHS) HSA %d, HFP %d, HBP %d, BLLP %d\n",
3457 hsa_interleave_hs
, hfp_interleave_hs
, hbp_interleave_hs
,
3460 DSSDBG("DSI LP interleaving(bytes) HSA %d, HFP %d, HBP %d, BLLP %d\n",
3461 hsa_interleave_lp
, hfp_interleave_lp
, hbp_interleave_lp
,
3464 r
= dsi_read_reg(dsi
, DSI_VM_TIMING4
);
3465 r
= FLD_MOD(r
, hsa_interleave_hs
, 23, 16);
3466 r
= FLD_MOD(r
, hfp_interleave_hs
, 15, 8);
3467 r
= FLD_MOD(r
, hbp_interleave_hs
, 7, 0);
3468 dsi_write_reg(dsi
, DSI_VM_TIMING4
, r
);
3470 r
= dsi_read_reg(dsi
, DSI_VM_TIMING5
);
3471 r
= FLD_MOD(r
, hsa_interleave_lp
, 23, 16);
3472 r
= FLD_MOD(r
, hfp_interleave_lp
, 15, 8);
3473 r
= FLD_MOD(r
, hbp_interleave_lp
, 7, 0);
3474 dsi_write_reg(dsi
, DSI_VM_TIMING5
, r
);
3476 r
= dsi_read_reg(dsi
, DSI_VM_TIMING6
);
3477 r
= FLD_MOD(r
, bl_interleave_hs
, 31, 15);
3478 r
= FLD_MOD(r
, bl_interleave_lp
, 16, 0);
3479 dsi_write_reg(dsi
, DSI_VM_TIMING6
, r
);
3482 static int dsi_proto_config(struct dsi_data
*dsi
)
3487 dsi_config_tx_fifo(dsi
, DSI_FIFO_SIZE_32
,
3492 dsi_config_rx_fifo(dsi
, DSI_FIFO_SIZE_32
,
3497 /* XXX what values for the timeouts? */
3498 dsi_set_stop_state_counter(dsi
, 0x1000, false, false);
3499 dsi_set_ta_timeout(dsi
, 0x1fff, true, true);
3500 dsi_set_lp_rx_timeout(dsi
, 0x1fff, true, true);
3501 dsi_set_hs_tx_timeout(dsi
, 0x1fff, true, true);
3503 switch (dsi_get_pixel_size(dsi
->pix_fmt
)) {
3518 r
= dsi_read_reg(dsi
, DSI_CTRL
);
3519 r
= FLD_MOD(r
, 1, 1, 1); /* CS_RX_EN */
3520 r
= FLD_MOD(r
, 1, 2, 2); /* ECC_RX_EN */
3521 r
= FLD_MOD(r
, 1, 3, 3); /* TX_FIFO_ARBITRATION */
3522 r
= FLD_MOD(r
, 1, 4, 4); /* VP_CLK_RATIO, always 1, see errata*/
3523 r
= FLD_MOD(r
, buswidth
, 7, 6); /* VP_DATA_BUS_WIDTH */
3524 r
= FLD_MOD(r
, 0, 8, 8); /* VP_CLK_POL */
3525 r
= FLD_MOD(r
, 1, 14, 14); /* TRIGGER_RESET_MODE */
3526 r
= FLD_MOD(r
, 1, 19, 19); /* EOT_ENABLE */
3527 if (!(dsi
->data
->quirks
& DSI_QUIRK_DCS_CMD_CONFIG_VC
)) {
3528 r
= FLD_MOD(r
, 1, 24, 24); /* DCS_CMD_ENABLE */
3529 /* DCS_CMD_CODE, 1=start, 0=continue */
3530 r
= FLD_MOD(r
, 0, 25, 25);
3533 dsi_write_reg(dsi
, DSI_CTRL
, r
);
3535 dsi_config_vp_num_line_buffers(dsi
);
3537 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
3538 dsi_config_vp_sync_events(dsi
);
3539 dsi_config_blanking_modes(dsi
);
3540 dsi_config_cmd_mode_interleaving(dsi
);
3543 dsi_vc_initial_config(dsi
, 0);
3544 dsi_vc_initial_config(dsi
, 1);
3545 dsi_vc_initial_config(dsi
, 2);
3546 dsi_vc_initial_config(dsi
, 3);
3551 static void dsi_proto_timings(struct dsi_data
*dsi
)
3553 unsigned int tlpx
, tclk_zero
, tclk_prepare
;
3554 unsigned int tclk_pre
, tclk_post
;
3555 unsigned int ths_prepare
, ths_prepare_ths_zero
, ths_zero
;
3556 unsigned int ths_trail
, ths_exit
;
3557 unsigned int ddr_clk_pre
, ddr_clk_post
;
3558 unsigned int enter_hs_mode_lat
, exit_hs_mode_lat
;
3559 unsigned int ths_eot
;
3560 int ndl
= dsi
->num_lanes_used
- 1;
3563 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG0
);
3564 ths_prepare
= FLD_GET(r
, 31, 24);
3565 ths_prepare_ths_zero
= FLD_GET(r
, 23, 16);
3566 ths_zero
= ths_prepare_ths_zero
- ths_prepare
;
3567 ths_trail
= FLD_GET(r
, 15, 8);
3568 ths_exit
= FLD_GET(r
, 7, 0);
3570 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG1
);
3571 tlpx
= FLD_GET(r
, 20, 16) * 2;
3572 tclk_zero
= FLD_GET(r
, 7, 0);
3574 r
= dsi_read_reg(dsi
, DSI_DSIPHY_CFG2
);
3575 tclk_prepare
= FLD_GET(r
, 7, 0);
3579 /* min 60ns + 52*UI */
3580 tclk_post
= ns2ddr(dsi
, 60) + 26;
3582 ths_eot
= DIV_ROUND_UP(4, ndl
);
3584 ddr_clk_pre
= DIV_ROUND_UP(tclk_pre
+ tlpx
+ tclk_zero
+ tclk_prepare
,
3586 ddr_clk_post
= DIV_ROUND_UP(tclk_post
+ ths_trail
, 4) + ths_eot
;
3588 BUG_ON(ddr_clk_pre
== 0 || ddr_clk_pre
> 255);
3589 BUG_ON(ddr_clk_post
== 0 || ddr_clk_post
> 255);
3591 r
= dsi_read_reg(dsi
, DSI_CLK_TIMING
);
3592 r
= FLD_MOD(r
, ddr_clk_pre
, 15, 8);
3593 r
= FLD_MOD(r
, ddr_clk_post
, 7, 0);
3594 dsi_write_reg(dsi
, DSI_CLK_TIMING
, r
);
3596 DSSDBG("ddr_clk_pre %u, ddr_clk_post %u\n",
3600 enter_hs_mode_lat
= 1 + DIV_ROUND_UP(tlpx
, 4) +
3601 DIV_ROUND_UP(ths_prepare
, 4) +
3602 DIV_ROUND_UP(ths_zero
+ 3, 4);
3604 exit_hs_mode_lat
= DIV_ROUND_UP(ths_trail
+ ths_exit
, 4) + 1 + ths_eot
;
3606 r
= FLD_VAL(enter_hs_mode_lat
, 31, 16) |
3607 FLD_VAL(exit_hs_mode_lat
, 15, 0);
3608 dsi_write_reg(dsi
, DSI_VM_TIMING7
, r
);
3610 DSSDBG("enter_hs_mode_lat %u, exit_hs_mode_lat %u\n",
3611 enter_hs_mode_lat
, exit_hs_mode_lat
);
3613 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
3614 /* TODO: Implement a video mode check_timings function */
3615 int hsa
= dsi
->vm_timings
.hsa
;
3616 int hfp
= dsi
->vm_timings
.hfp
;
3617 int hbp
= dsi
->vm_timings
.hbp
;
3618 int vsa
= dsi
->vm_timings
.vsa
;
3619 int vfp
= dsi
->vm_timings
.vfp
;
3620 int vbp
= dsi
->vm_timings
.vbp
;
3621 int window_sync
= dsi
->vm_timings
.window_sync
;
3623 const struct videomode
*vm
= &dsi
->vm
;
3624 int bpp
= dsi_get_pixel_size(dsi
->pix_fmt
);
3625 int tl
, t_he
, width_bytes
;
3627 hsync_end
= dsi
->vm_timings
.trans_mode
== OMAP_DSS_DSI_PULSE_MODE
;
3629 ((hsa
== 0 && ndl
== 3) ? 1 : DIV_ROUND_UP(4, ndl
)) : 0;
3631 width_bytes
= DIV_ROUND_UP(vm
->hactive
* bpp
, 8);
3633 /* TL = t_HS + HSA + t_HE + HFP + ceil((WC + 6) / NDL) + HBP */
3634 tl
= DIV_ROUND_UP(4, ndl
) + (hsync_end
? hsa
: 0) + t_he
+ hfp
+
3635 DIV_ROUND_UP(width_bytes
+ 6, ndl
) + hbp
;
3637 DSSDBG("HBP: %d, HFP: %d, HSA: %d, TL: %d TXBYTECLKHS\n", hbp
,
3638 hfp
, hsync_end
? hsa
: 0, tl
);
3639 DSSDBG("VBP: %d, VFP: %d, VSA: %d, VACT: %d lines\n", vbp
, vfp
,
3642 r
= dsi_read_reg(dsi
, DSI_VM_TIMING1
);
3643 r
= FLD_MOD(r
, hbp
, 11, 0); /* HBP */
3644 r
= FLD_MOD(r
, hfp
, 23, 12); /* HFP */
3645 r
= FLD_MOD(r
, hsync_end
? hsa
: 0, 31, 24); /* HSA */
3646 dsi_write_reg(dsi
, DSI_VM_TIMING1
, r
);
3648 r
= dsi_read_reg(dsi
, DSI_VM_TIMING2
);
3649 r
= FLD_MOD(r
, vbp
, 7, 0); /* VBP */
3650 r
= FLD_MOD(r
, vfp
, 15, 8); /* VFP */
3651 r
= FLD_MOD(r
, vsa
, 23, 16); /* VSA */
3652 r
= FLD_MOD(r
, window_sync
, 27, 24); /* WINDOW_SYNC */
3653 dsi_write_reg(dsi
, DSI_VM_TIMING2
, r
);
3655 r
= dsi_read_reg(dsi
, DSI_VM_TIMING3
);
3656 r
= FLD_MOD(r
, vm
->vactive
, 14, 0); /* VACT */
3657 r
= FLD_MOD(r
, tl
, 31, 16); /* TL */
3658 dsi_write_reg(dsi
, DSI_VM_TIMING3
, r
);
3662 static int dsi_configure_pins(struct omap_dss_device
*dssdev
,
3663 const struct omap_dsi_pin_config
*pin_cfg
)
3665 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
3668 struct dsi_lane_config lanes
[DSI_MAX_NR_LANES
];
3672 static const enum dsi_lane_function functions
[] = {
3680 num_pins
= pin_cfg
->num_pins
;
3681 pins
= pin_cfg
->pins
;
3683 if (num_pins
< 4 || num_pins
> dsi
->num_lanes_supported
* 2
3684 || num_pins
% 2 != 0)
3687 for (i
= 0; i
< DSI_MAX_NR_LANES
; ++i
)
3688 lanes
[i
].function
= DSI_LANE_UNUSED
;
3692 for (i
= 0; i
< num_pins
; i
+= 2) {
3699 if (dx
< 0 || dx
>= dsi
->num_lanes_supported
* 2)
3702 if (dy
< 0 || dy
>= dsi
->num_lanes_supported
* 2)
3717 lanes
[lane
].function
= functions
[i
/ 2];
3718 lanes
[lane
].polarity
= pol
;
3722 memcpy(dsi
->lanes
, lanes
, sizeof(dsi
->lanes
));
3723 dsi
->num_lanes_used
= num_lanes
;
3728 static int dsi_enable_video_output(struct omap_dss_device
*dssdev
, int channel
)
3730 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
3731 int bpp
= dsi_get_pixel_size(dsi
->pix_fmt
);
3736 r
= dsi_display_init_dispc(dsi
);
3740 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
3741 switch (dsi
->pix_fmt
) {
3742 case OMAP_DSS_DSI_FMT_RGB888
:
3743 data_type
= MIPI_DSI_PACKED_PIXEL_STREAM_24
;
3745 case OMAP_DSS_DSI_FMT_RGB666
:
3746 data_type
= MIPI_DSI_PIXEL_STREAM_3BYTE_18
;
3748 case OMAP_DSS_DSI_FMT_RGB666_PACKED
:
3749 data_type
= MIPI_DSI_PACKED_PIXEL_STREAM_18
;
3751 case OMAP_DSS_DSI_FMT_RGB565
:
3752 data_type
= MIPI_DSI_PACKED_PIXEL_STREAM_16
;
3759 dsi_if_enable(dsi
, false);
3760 dsi_vc_enable(dsi
, channel
, false);
3762 /* MODE, 1 = video mode */
3763 REG_FLD_MOD(dsi
, DSI_VC_CTRL(channel
), 1, 4, 4);
3765 word_count
= DIV_ROUND_UP(dsi
->vm
.hactive
* bpp
, 8);
3767 dsi_vc_write_long_header(dsi
, channel
, data_type
,
3770 dsi_vc_enable(dsi
, channel
, true);
3771 dsi_if_enable(dsi
, true);
3774 r
= dss_mgr_enable(&dsi
->output
);
3776 goto err_mgr_enable
;
3781 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
3782 dsi_if_enable(dsi
, false);
3783 dsi_vc_enable(dsi
, channel
, false);
3786 dsi_display_uninit_dispc(dsi
);
3790 static void dsi_disable_video_output(struct omap_dss_device
*dssdev
, int channel
)
3792 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
3794 if (dsi
->mode
== OMAP_DSS_DSI_VIDEO_MODE
) {
3795 dsi_if_enable(dsi
, false);
3796 dsi_vc_enable(dsi
, channel
, false);
3798 /* MODE, 0 = command mode */
3799 REG_FLD_MOD(dsi
, DSI_VC_CTRL(channel
), 0, 4, 4);
3801 dsi_vc_enable(dsi
, channel
, true);
3802 dsi_if_enable(dsi
, true);
3805 dss_mgr_disable(&dsi
->output
);
3807 dsi_display_uninit_dispc(dsi
);
3810 static void dsi_update_screen_dispc(struct dsi_data
*dsi
)
3812 unsigned int bytespp
;
3813 unsigned int bytespl
;
3814 unsigned int bytespf
;
3815 unsigned int total_len
;
3816 unsigned int packet_payload
;
3817 unsigned int packet_len
;
3820 const unsigned channel
= dsi
->update_channel
;
3821 const unsigned int line_buf_size
= dsi
->line_buffer_size
;
3822 u16 w
= dsi
->vm
.hactive
;
3823 u16 h
= dsi
->vm
.vactive
;
3825 DSSDBG("dsi_update_screen_dispc(%dx%d)\n", w
, h
);
3827 dsi_vc_config_source(dsi
, channel
, DSI_VC_SOURCE_VP
);
3829 bytespp
= dsi_get_pixel_size(dsi
->pix_fmt
) / 8;
3830 bytespl
= w
* bytespp
;
3831 bytespf
= bytespl
* h
;
3833 /* NOTE: packet_payload has to be equal to N * bytespl, where N is
3834 * number of lines in a packet. See errata about VP_CLK_RATIO */
3836 if (bytespf
< line_buf_size
)
3837 packet_payload
= bytespf
;
3839 packet_payload
= (line_buf_size
) / bytespl
* bytespl
;
3841 packet_len
= packet_payload
+ 1; /* 1 byte for DCS cmd */
3842 total_len
= (bytespf
/ packet_payload
) * packet_len
;
3844 if (bytespf
% packet_payload
)
3845 total_len
+= (bytespf
% packet_payload
) + 1;
3847 l
= FLD_VAL(total_len
, 23, 0); /* TE_SIZE */
3848 dsi_write_reg(dsi
, DSI_VC_TE(channel
), l
);
3850 dsi_vc_write_long_header(dsi
, channel
, MIPI_DSI_DCS_LONG_WRITE
,
3853 if (dsi
->te_enabled
)
3854 l
= FLD_MOD(l
, 1, 30, 30); /* TE_EN */
3856 l
= FLD_MOD(l
, 1, 31, 31); /* TE_START */
3857 dsi_write_reg(dsi
, DSI_VC_TE(channel
), l
);
3859 /* We put SIDLEMODE to no-idle for the duration of the transfer,
3860 * because DSS interrupts are not capable of waking up the CPU and the
3861 * framedone interrupt could be delayed for quite a long time. I think
3862 * the same goes for any DSS interrupts, but for some reason I have not
3863 * seen the problem anywhere else than here.
3865 dispc_disable_sidle(dsi
->dss
->dispc
);
3867 dsi_perf_mark_start(dsi
);
3869 r
= schedule_delayed_work(&dsi
->framedone_timeout_work
,
3870 msecs_to_jiffies(250));
3873 dss_mgr_start_update(&dsi
->output
);
3875 if (dsi
->te_enabled
) {
3876 /* disable LP_RX_TO, so that we can receive TE. Time to wait
3877 * for TE is longer than the timer allows */
3878 REG_FLD_MOD(dsi
, DSI_TIMING2
, 0, 15, 15); /* LP_RX_TO */
3880 dsi_vc_send_bta(dsi
, channel
);
3882 #ifdef DSI_CATCH_MISSING_TE
3883 mod_timer(&dsi
->te_timer
, jiffies
+ msecs_to_jiffies(250));
3888 #ifdef DSI_CATCH_MISSING_TE
3889 static void dsi_te_timeout(struct timer_list
*unused
)
3891 DSSERR("TE not received for 250ms!\n");
3895 static void dsi_handle_framedone(struct dsi_data
*dsi
, int error
)
3897 /* SIDLEMODE back to smart-idle */
3898 dispc_enable_sidle(dsi
->dss
->dispc
);
3900 if (dsi
->te_enabled
) {
3901 /* enable LP_RX_TO again after the TE */
3902 REG_FLD_MOD(dsi
, DSI_TIMING2
, 1, 15, 15); /* LP_RX_TO */
3905 dsi
->framedone_callback(error
, dsi
->framedone_data
);
3908 dsi_perf_show(dsi
, "DISPC");
3911 static void dsi_framedone_timeout_work_callback(struct work_struct
*work
)
3913 struct dsi_data
*dsi
= container_of(work
, struct dsi_data
,
3914 framedone_timeout_work
.work
);
3915 /* XXX While extremely unlikely, we could get FRAMEDONE interrupt after
3916 * 250ms which would conflict with this timeout work. What should be
3917 * done is first cancel the transfer on the HW, and then cancel the
3918 * possibly scheduled framedone work. However, cancelling the transfer
3919 * on the HW is buggy, and would probably require resetting the whole
3922 DSSERR("Framedone not received for 250ms!\n");
3924 dsi_handle_framedone(dsi
, -ETIMEDOUT
);
3927 static void dsi_framedone_irq_callback(void *data
)
3929 struct dsi_data
*dsi
= data
;
3931 /* Note: We get FRAMEDONE when DISPC has finished sending pixels and
3932 * turns itself off. However, DSI still has the pixels in its buffers,
3933 * and is sending the data.
3936 cancel_delayed_work(&dsi
->framedone_timeout_work
);
3938 dsi_handle_framedone(dsi
, 0);
3941 static int dsi_update(struct omap_dss_device
*dssdev
, int channel
,
3942 void (*callback
)(int, void *), void *data
)
3944 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
3946 dsi_perf_mark_setup(dsi
);
3948 dsi
->update_channel
= channel
;
3950 dsi
->framedone_callback
= callback
;
3951 dsi
->framedone_data
= data
;
3953 #ifdef DSI_PERF_MEASURE
3954 dsi
->update_bytes
= dsi
->vm
.hactive
* dsi
->vm
.vactive
*
3955 dsi_get_pixel_size(dsi
->pix_fmt
) / 8;
3957 dsi_update_screen_dispc(dsi
);
3964 static int dsi_configure_dispc_clocks(struct dsi_data
*dsi
)
3966 struct dispc_clock_info dispc_cinfo
;
3970 fck
= dsi_get_pll_hsdiv_dispc_rate(dsi
);
3972 dispc_cinfo
.lck_div
= dsi
->user_dispc_cinfo
.lck_div
;
3973 dispc_cinfo
.pck_div
= dsi
->user_dispc_cinfo
.pck_div
;
3975 r
= dispc_calc_clock_rates(dsi
->dss
->dispc
, fck
, &dispc_cinfo
);
3977 DSSERR("Failed to calc dispc clocks\n");
3981 dsi
->mgr_config
.clock_info
= dispc_cinfo
;
3986 static int dsi_display_init_dispc(struct dsi_data
*dsi
)
3988 enum omap_channel channel
= dsi
->output
.dispc_channel
;
3991 dss_select_lcd_clk_source(dsi
->dss
, channel
, dsi
->module_id
== 0 ?
3992 DSS_CLK_SRC_PLL1_1
:
3993 DSS_CLK_SRC_PLL2_1
);
3995 if (dsi
->mode
== OMAP_DSS_DSI_CMD_MODE
) {
3996 r
= dss_mgr_register_framedone_handler(&dsi
->output
,
3997 dsi_framedone_irq_callback
, dsi
);
3999 DSSERR("can't register FRAMEDONE handler\n");
4003 dsi
->mgr_config
.stallmode
= true;
4004 dsi
->mgr_config
.fifohandcheck
= true;
4006 dsi
->mgr_config
.stallmode
= false;
4007 dsi
->mgr_config
.fifohandcheck
= false;
4010 r
= dsi_configure_dispc_clocks(dsi
);
4014 dsi
->mgr_config
.io_pad_mode
= DSS_IO_PAD_MODE_BYPASS
;
4015 dsi
->mgr_config
.video_port_width
=
4016 dsi_get_pixel_size(dsi
->pix_fmt
);
4017 dsi
->mgr_config
.lcden_sig_polarity
= 0;
4019 dss_mgr_set_lcd_config(&dsi
->output
, &dsi
->mgr_config
);
4023 if (dsi
->mode
== OMAP_DSS_DSI_CMD_MODE
)
4024 dss_mgr_unregister_framedone_handler(&dsi
->output
,
4025 dsi_framedone_irq_callback
, dsi
);
4027 dss_select_lcd_clk_source(dsi
->dss
, channel
, DSS_CLK_SRC_FCK
);
4031 static void dsi_display_uninit_dispc(struct dsi_data
*dsi
)
4033 enum omap_channel channel
= dsi
->output
.dispc_channel
;
4035 if (dsi
->mode
== OMAP_DSS_DSI_CMD_MODE
)
4036 dss_mgr_unregister_framedone_handler(&dsi
->output
,
4037 dsi_framedone_irq_callback
, dsi
);
4039 dss_select_lcd_clk_source(dsi
->dss
, channel
, DSS_CLK_SRC_FCK
);
4042 static int dsi_configure_dsi_clocks(struct dsi_data
*dsi
)
4044 struct dss_pll_clock_info cinfo
;
4047 cinfo
= dsi
->user_dsi_cinfo
;
4049 r
= dss_pll_set_config(&dsi
->pll
, &cinfo
);
4051 DSSERR("Failed to set dsi clocks\n");
4058 static int dsi_display_init_dsi(struct dsi_data
*dsi
)
4062 r
= dss_pll_enable(&dsi
->pll
);
4066 r
= dsi_configure_dsi_clocks(dsi
);
4070 dss_select_dsi_clk_source(dsi
->dss
, dsi
->module_id
,
4071 dsi
->module_id
== 0 ?
4072 DSS_CLK_SRC_PLL1_2
: DSS_CLK_SRC_PLL2_2
);
4076 if (!dsi
->vdds_dsi_enabled
) {
4077 r
= regulator_enable(dsi
->vdds_dsi_reg
);
4081 dsi
->vdds_dsi_enabled
= true;
4084 r
= dsi_cio_init(dsi
);
4088 _dsi_print_reset_status(dsi
);
4090 dsi_proto_timings(dsi
);
4091 dsi_set_lp_clk_divisor(dsi
);
4094 _dsi_print_reset_status(dsi
);
4096 r
= dsi_proto_config(dsi
);
4100 /* enable interface */
4101 dsi_vc_enable(dsi
, 0, 1);
4102 dsi_vc_enable(dsi
, 1, 1);
4103 dsi_vc_enable(dsi
, 2, 1);
4104 dsi_vc_enable(dsi
, 3, 1);
4105 dsi_if_enable(dsi
, 1);
4106 dsi_force_tx_stop_mode_io(dsi
);
4110 dsi_cio_uninit(dsi
);
4112 regulator_disable(dsi
->vdds_dsi_reg
);
4113 dsi
->vdds_dsi_enabled
= false;
4115 dss_select_dsi_clk_source(dsi
->dss
, dsi
->module_id
, DSS_CLK_SRC_FCK
);
4117 dss_pll_disable(&dsi
->pll
);
4122 static void dsi_display_uninit_dsi(struct dsi_data
*dsi
, bool disconnect_lanes
,
4125 if (enter_ulps
&& !dsi
->ulps_enabled
)
4126 dsi_enter_ulps(dsi
);
4128 /* disable interface */
4129 dsi_if_enable(dsi
, 0);
4130 dsi_vc_enable(dsi
, 0, 0);
4131 dsi_vc_enable(dsi
, 1, 0);
4132 dsi_vc_enable(dsi
, 2, 0);
4133 dsi_vc_enable(dsi
, 3, 0);
4135 dss_select_dsi_clk_source(dsi
->dss
, dsi
->module_id
, DSS_CLK_SRC_FCK
);
4136 dsi_cio_uninit(dsi
);
4137 dss_pll_disable(&dsi
->pll
);
4139 if (disconnect_lanes
) {
4140 regulator_disable(dsi
->vdds_dsi_reg
);
4141 dsi
->vdds_dsi_enabled
= false;
4145 static void dsi_display_enable(struct omap_dss_device
*dssdev
)
4147 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
4150 DSSDBG("dsi_display_enable\n");
4152 WARN_ON(!dsi_bus_is_locked(dsi
));
4154 mutex_lock(&dsi
->lock
);
4156 r
= dsi_runtime_get(dsi
);
4160 _dsi_initialize_irq(dsi
);
4162 r
= dsi_display_init_dsi(dsi
);
4166 mutex_unlock(&dsi
->lock
);
4171 dsi_runtime_put(dsi
);
4173 mutex_unlock(&dsi
->lock
);
4174 DSSDBG("dsi_display_enable FAILED\n");
4177 static void dsi_display_disable(struct omap_dss_device
*dssdev
,
4178 bool disconnect_lanes
, bool enter_ulps
)
4180 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
4182 DSSDBG("dsi_display_disable\n");
4184 WARN_ON(!dsi_bus_is_locked(dsi
));
4186 mutex_lock(&dsi
->lock
);
4188 dsi_sync_vc(dsi
, 0);
4189 dsi_sync_vc(dsi
, 1);
4190 dsi_sync_vc(dsi
, 2);
4191 dsi_sync_vc(dsi
, 3);
4193 dsi_display_uninit_dsi(dsi
, disconnect_lanes
, enter_ulps
);
4195 dsi_runtime_put(dsi
);
4197 mutex_unlock(&dsi
->lock
);
4200 static int dsi_enable_te(struct omap_dss_device
*dssdev
, bool enable
)
4202 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
4204 dsi
->te_enabled
= enable
;
4208 #ifdef PRINT_VERBOSE_VM_TIMINGS
4209 static void print_dsi_vm(const char *str
,
4210 const struct omap_dss_dsi_videomode_timings
*t
)
4212 unsigned long byteclk
= t
->hsclk
/ 4;
4213 int bl
, wc
, pps
, tot
;
4215 wc
= DIV_ROUND_UP(t
->hact
* t
->bitspp
, 8);
4216 pps
= DIV_ROUND_UP(wc
+ 6, t
->ndl
); /* pixel packet size */
4217 bl
= t
->hss
+ t
->hsa
+ t
->hse
+ t
->hbp
+ t
->hfp
;
4220 #define TO_DSI_T(x) ((u32)div64_u64((u64)x * 1000000000llu, byteclk))
4222 pr_debug("%s bck %lu, %u/%u/%u/%u/%u/%u = %u+%u = %u, "
4223 "%u/%u/%u/%u/%u/%u = %u + %u = %u\n",
4226 t
->hss
, t
->hsa
, t
->hse
, t
->hbp
, pps
, t
->hfp
,
4242 static void print_dispc_vm(const char *str
, const struct videomode
*vm
)
4244 unsigned long pck
= vm
->pixelclock
;
4248 bl
= vm
->hsync_len
+ vm
->hback_porch
+ vm
->hfront_porch
;
4251 #define TO_DISPC_T(x) ((u32)div64_u64((u64)x * 1000000000llu, pck))
4253 pr_debug("%s pck %lu, %u/%u/%u/%u = %u+%u = %u, "
4254 "%u/%u/%u/%u = %u + %u = %u\n",
4257 vm
->hsync_len
, vm
->hback_porch
, hact
, vm
->hfront_porch
,
4259 TO_DISPC_T(vm
->hsync_len
),
4260 TO_DISPC_T(vm
->hback_porch
),
4262 TO_DISPC_T(vm
->hfront_porch
),
4269 /* note: this is not quite accurate */
4270 static void print_dsi_dispc_vm(const char *str
,
4271 const struct omap_dss_dsi_videomode_timings
*t
)
4273 struct videomode vm
= { 0 };
4274 unsigned long byteclk
= t
->hsclk
/ 4;
4277 int dsi_hact
, dsi_htot
;
4279 dsi_tput
= (u64
)byteclk
* t
->ndl
* 8;
4280 pck
= (u32
)div64_u64(dsi_tput
, t
->bitspp
);
4281 dsi_hact
= DIV_ROUND_UP(DIV_ROUND_UP(t
->hact
* t
->bitspp
, 8) + 6, t
->ndl
);
4282 dsi_htot
= t
->hss
+ t
->hsa
+ t
->hse
+ t
->hbp
+ dsi_hact
+ t
->hfp
;
4284 vm
.pixelclock
= pck
;
4285 vm
.hsync_len
= div64_u64((u64
)(t
->hsa
+ t
->hse
) * pck
, byteclk
);
4286 vm
.hback_porch
= div64_u64((u64
)t
->hbp
* pck
, byteclk
);
4287 vm
.hfront_porch
= div64_u64((u64
)t
->hfp
* pck
, byteclk
);
4288 vm
.hactive
= t
->hact
;
4290 print_dispc_vm(str
, &vm
);
4292 #endif /* PRINT_VERBOSE_VM_TIMINGS */
4294 static bool dsi_cm_calc_dispc_cb(int lckd
, int pckd
, unsigned long lck
,
4295 unsigned long pck
, void *data
)
4297 struct dsi_clk_calc_ctx
*ctx
= data
;
4298 struct videomode
*vm
= &ctx
->vm
;
4300 ctx
->dispc_cinfo
.lck_div
= lckd
;
4301 ctx
->dispc_cinfo
.pck_div
= pckd
;
4302 ctx
->dispc_cinfo
.lck
= lck
;
4303 ctx
->dispc_cinfo
.pck
= pck
;
4305 *vm
= *ctx
->config
->vm
;
4306 vm
->pixelclock
= pck
;
4307 vm
->hactive
= ctx
->config
->vm
->hactive
;
4308 vm
->vactive
= ctx
->config
->vm
->vactive
;
4309 vm
->hsync_len
= vm
->hfront_porch
= vm
->hback_porch
= vm
->vsync_len
= 1;
4310 vm
->vfront_porch
= vm
->vback_porch
= 0;
4315 static bool dsi_cm_calc_hsdiv_cb(int m_dispc
, unsigned long dispc
,
4318 struct dsi_clk_calc_ctx
*ctx
= data
;
4320 ctx
->dsi_cinfo
.mX
[HSDIV_DISPC
] = m_dispc
;
4321 ctx
->dsi_cinfo
.clkout
[HSDIV_DISPC
] = dispc
;
4323 return dispc_div_calc(ctx
->dsi
->dss
->dispc
, dispc
,
4324 ctx
->req_pck_min
, ctx
->req_pck_max
,
4325 dsi_cm_calc_dispc_cb
, ctx
);
4328 static bool dsi_cm_calc_pll_cb(int n
, int m
, unsigned long fint
,
4329 unsigned long clkdco
, void *data
)
4331 struct dsi_clk_calc_ctx
*ctx
= data
;
4332 struct dsi_data
*dsi
= ctx
->dsi
;
4334 ctx
->dsi_cinfo
.n
= n
;
4335 ctx
->dsi_cinfo
.m
= m
;
4336 ctx
->dsi_cinfo
.fint
= fint
;
4337 ctx
->dsi_cinfo
.clkdco
= clkdco
;
4339 return dss_pll_hsdiv_calc_a(ctx
->pll
, clkdco
, ctx
->req_pck_min
,
4340 dsi
->data
->max_fck_freq
,
4341 dsi_cm_calc_hsdiv_cb
, ctx
);
4344 static bool dsi_cm_calc(struct dsi_data
*dsi
,
4345 const struct omap_dss_dsi_config
*cfg
,
4346 struct dsi_clk_calc_ctx
*ctx
)
4348 unsigned long clkin
;
4350 unsigned long pll_min
, pll_max
;
4351 unsigned long pck
, txbyteclk
;
4353 clkin
= clk_get_rate(dsi
->pll
.clkin
);
4354 bitspp
= dsi_get_pixel_size(cfg
->pixel_format
);
4355 ndl
= dsi
->num_lanes_used
- 1;
4358 * Here we should calculate minimum txbyteclk to be able to send the
4359 * frame in time, and also to handle TE. That's not very simple, though,
4360 * especially as we go to LP between each pixel packet due to HW
4361 * "feature". So let's just estimate very roughly and multiply by 1.5.
4363 pck
= cfg
->vm
->pixelclock
;
4365 txbyteclk
= pck
* bitspp
/ 8 / ndl
;
4367 memset(ctx
, 0, sizeof(*ctx
));
4369 ctx
->pll
= &dsi
->pll
;
4371 ctx
->req_pck_min
= pck
;
4372 ctx
->req_pck_nom
= pck
;
4373 ctx
->req_pck_max
= pck
* 3 / 2;
4375 pll_min
= max(cfg
->hs_clk_min
* 4, txbyteclk
* 4 * 4);
4376 pll_max
= cfg
->hs_clk_max
* 4;
4378 return dss_pll_calc_a(ctx
->pll
, clkin
,
4380 dsi_cm_calc_pll_cb
, ctx
);
4383 static bool dsi_vm_calc_blanking(struct dsi_clk_calc_ctx
*ctx
)
4385 struct dsi_data
*dsi
= ctx
->dsi
;
4386 const struct omap_dss_dsi_config
*cfg
= ctx
->config
;
4387 int bitspp
= dsi_get_pixel_size(cfg
->pixel_format
);
4388 int ndl
= dsi
->num_lanes_used
- 1;
4389 unsigned long hsclk
= ctx
->dsi_cinfo
.clkdco
/ 4;
4390 unsigned long byteclk
= hsclk
/ 4;
4392 unsigned long dispc_pck
, req_pck_min
, req_pck_nom
, req_pck_max
;
4394 int panel_htot
, panel_hbl
; /* pixels */
4395 int dispc_htot
, dispc_hbl
; /* pixels */
4396 int dsi_htot
, dsi_hact
, dsi_hbl
, hss
, hse
; /* byteclks */
4398 const struct videomode
*req_vm
;
4399 struct videomode
*dispc_vm
;
4400 struct omap_dss_dsi_videomode_timings
*dsi_vm
;
4401 u64 dsi_tput
, dispc_tput
;
4403 dsi_tput
= (u64
)byteclk
* ndl
* 8;
4406 req_pck_min
= ctx
->req_pck_min
;
4407 req_pck_max
= ctx
->req_pck_max
;
4408 req_pck_nom
= ctx
->req_pck_nom
;
4410 dispc_pck
= ctx
->dispc_cinfo
.pck
;
4411 dispc_tput
= (u64
)dispc_pck
* bitspp
;
4413 xres
= req_vm
->hactive
;
4415 panel_hbl
= req_vm
->hfront_porch
+ req_vm
->hback_porch
+
4417 panel_htot
= xres
+ panel_hbl
;
4419 dsi_hact
= DIV_ROUND_UP(DIV_ROUND_UP(xres
* bitspp
, 8) + 6, ndl
);
4422 * When there are no line buffers, DISPC and DSI must have the
4423 * same tput. Otherwise DISPC tput needs to be higher than DSI's.
4425 if (dsi
->line_buffer_size
< xres
* bitspp
/ 8) {
4426 if (dispc_tput
!= dsi_tput
)
4429 if (dispc_tput
< dsi_tput
)
4433 /* DSI tput must be over the min requirement */
4434 if (dsi_tput
< (u64
)bitspp
* req_pck_min
)
4437 /* When non-burst mode, DSI tput must be below max requirement. */
4438 if (cfg
->trans_mode
!= OMAP_DSS_DSI_BURST_MODE
) {
4439 if (dsi_tput
> (u64
)bitspp
* req_pck_max
)
4443 hss
= DIV_ROUND_UP(4, ndl
);
4445 if (cfg
->trans_mode
== OMAP_DSS_DSI_PULSE_MODE
) {
4446 if (ndl
== 3 && req_vm
->hsync_len
== 0)
4449 hse
= DIV_ROUND_UP(4, ndl
);
4454 /* DSI htot to match the panel's nominal pck */
4455 dsi_htot
= div64_u64((u64
)panel_htot
* byteclk
, req_pck_nom
);
4457 /* fail if there would be no time for blanking */
4458 if (dsi_htot
< hss
+ hse
+ dsi_hact
)
4461 /* total DSI blanking needed to achieve panel's TL */
4462 dsi_hbl
= dsi_htot
- dsi_hact
;
4464 /* DISPC htot to match the DSI TL */
4465 dispc_htot
= div64_u64((u64
)dsi_htot
* dispc_pck
, byteclk
);
4467 /* verify that the DSI and DISPC TLs are the same */
4468 if ((u64
)dsi_htot
* dispc_pck
!= (u64
)dispc_htot
* byteclk
)
4471 dispc_hbl
= dispc_htot
- xres
;
4473 /* setup DSI videomode */
4475 dsi_vm
= &ctx
->dsi_vm
;
4476 memset(dsi_vm
, 0, sizeof(*dsi_vm
));
4478 dsi_vm
->hsclk
= hsclk
;
4481 dsi_vm
->bitspp
= bitspp
;
4483 if (cfg
->trans_mode
!= OMAP_DSS_DSI_PULSE_MODE
) {
4485 } else if (ndl
== 3 && req_vm
->hsync_len
== 0) {
4488 hsa
= div64_u64((u64
)req_vm
->hsync_len
* byteclk
, req_pck_nom
);
4489 hsa
= max(hsa
- hse
, 1);
4492 hbp
= div64_u64((u64
)req_vm
->hback_porch
* byteclk
, req_pck_nom
);
4495 hfp
= dsi_hbl
- (hss
+ hsa
+ hse
+ hbp
);
4498 /* we need to take cycles from hbp */
4501 hbp
= max(hbp
- t
, 1);
4502 hfp
= dsi_hbl
- (hss
+ hsa
+ hse
+ hbp
);
4504 if (hfp
< 1 && hsa
> 0) {
4505 /* we need to take cycles from hsa */
4507 hsa
= max(hsa
- t
, 1);
4508 hfp
= dsi_hbl
- (hss
+ hsa
+ hse
+ hbp
);
4519 dsi_vm
->hact
= xres
;
4522 dsi_vm
->vsa
= req_vm
->vsync_len
;
4523 dsi_vm
->vbp
= req_vm
->vback_porch
;
4524 dsi_vm
->vact
= req_vm
->vactive
;
4525 dsi_vm
->vfp
= req_vm
->vfront_porch
;
4527 dsi_vm
->trans_mode
= cfg
->trans_mode
;
4529 dsi_vm
->blanking_mode
= 0;
4530 dsi_vm
->hsa_blanking_mode
= 1;
4531 dsi_vm
->hfp_blanking_mode
= 1;
4532 dsi_vm
->hbp_blanking_mode
= 1;
4534 dsi_vm
->ddr_clk_always_on
= cfg
->ddr_clk_always_on
;
4535 dsi_vm
->window_sync
= 4;
4537 /* setup DISPC videomode */
4539 dispc_vm
= &ctx
->vm
;
4540 *dispc_vm
= *req_vm
;
4541 dispc_vm
->pixelclock
= dispc_pck
;
4543 if (cfg
->trans_mode
== OMAP_DSS_DSI_PULSE_MODE
) {
4544 hsa
= div64_u64((u64
)req_vm
->hsync_len
* dispc_pck
,
4551 hbp
= div64_u64((u64
)req_vm
->hback_porch
* dispc_pck
, req_pck_nom
);
4554 hfp
= dispc_hbl
- hsa
- hbp
;
4557 /* we need to take cycles from hbp */
4560 hbp
= max(hbp
- t
, 1);
4561 hfp
= dispc_hbl
- hsa
- hbp
;
4564 /* we need to take cycles from hsa */
4566 hsa
= max(hsa
- t
, 1);
4567 hfp
= dispc_hbl
- hsa
- hbp
;
4574 dispc_vm
->hfront_porch
= hfp
;
4575 dispc_vm
->hsync_len
= hsa
;
4576 dispc_vm
->hback_porch
= hbp
;
4582 static bool dsi_vm_calc_dispc_cb(int lckd
, int pckd
, unsigned long lck
,
4583 unsigned long pck
, void *data
)
4585 struct dsi_clk_calc_ctx
*ctx
= data
;
4587 ctx
->dispc_cinfo
.lck_div
= lckd
;
4588 ctx
->dispc_cinfo
.pck_div
= pckd
;
4589 ctx
->dispc_cinfo
.lck
= lck
;
4590 ctx
->dispc_cinfo
.pck
= pck
;
4592 if (dsi_vm_calc_blanking(ctx
) == false)
4595 #ifdef PRINT_VERBOSE_VM_TIMINGS
4596 print_dispc_vm("dispc", &ctx
->vm
);
4597 print_dsi_vm("dsi ", &ctx
->dsi_vm
);
4598 print_dispc_vm("req ", ctx
->config
->vm
);
4599 print_dsi_dispc_vm("act ", &ctx
->dsi_vm
);
4605 static bool dsi_vm_calc_hsdiv_cb(int m_dispc
, unsigned long dispc
,
4608 struct dsi_clk_calc_ctx
*ctx
= data
;
4609 unsigned long pck_max
;
4611 ctx
->dsi_cinfo
.mX
[HSDIV_DISPC
] = m_dispc
;
4612 ctx
->dsi_cinfo
.clkout
[HSDIV_DISPC
] = dispc
;
4615 * In burst mode we can let the dispc pck be arbitrarily high, but it
4616 * limits our scaling abilities. So for now, don't aim too high.
4619 if (ctx
->config
->trans_mode
== OMAP_DSS_DSI_BURST_MODE
)
4620 pck_max
= ctx
->req_pck_max
+ 10000000;
4622 pck_max
= ctx
->req_pck_max
;
4624 return dispc_div_calc(ctx
->dsi
->dss
->dispc
, dispc
,
4625 ctx
->req_pck_min
, pck_max
,
4626 dsi_vm_calc_dispc_cb
, ctx
);
4629 static bool dsi_vm_calc_pll_cb(int n
, int m
, unsigned long fint
,
4630 unsigned long clkdco
, void *data
)
4632 struct dsi_clk_calc_ctx
*ctx
= data
;
4633 struct dsi_data
*dsi
= ctx
->dsi
;
4635 ctx
->dsi_cinfo
.n
= n
;
4636 ctx
->dsi_cinfo
.m
= m
;
4637 ctx
->dsi_cinfo
.fint
= fint
;
4638 ctx
->dsi_cinfo
.clkdco
= clkdco
;
4640 return dss_pll_hsdiv_calc_a(ctx
->pll
, clkdco
, ctx
->req_pck_min
,
4641 dsi
->data
->max_fck_freq
,
4642 dsi_vm_calc_hsdiv_cb
, ctx
);
4645 static bool dsi_vm_calc(struct dsi_data
*dsi
,
4646 const struct omap_dss_dsi_config
*cfg
,
4647 struct dsi_clk_calc_ctx
*ctx
)
4649 const struct videomode
*vm
= cfg
->vm
;
4650 unsigned long clkin
;
4651 unsigned long pll_min
;
4652 unsigned long pll_max
;
4653 int ndl
= dsi
->num_lanes_used
- 1;
4654 int bitspp
= dsi_get_pixel_size(cfg
->pixel_format
);
4655 unsigned long byteclk_min
;
4657 clkin
= clk_get_rate(dsi
->pll
.clkin
);
4659 memset(ctx
, 0, sizeof(*ctx
));
4661 ctx
->pll
= &dsi
->pll
;
4664 /* these limits should come from the panel driver */
4665 ctx
->req_pck_min
= vm
->pixelclock
- 1000;
4666 ctx
->req_pck_nom
= vm
->pixelclock
;
4667 ctx
->req_pck_max
= vm
->pixelclock
+ 1000;
4669 byteclk_min
= div64_u64((u64
)ctx
->req_pck_min
* bitspp
, ndl
* 8);
4670 pll_min
= max(cfg
->hs_clk_min
* 4, byteclk_min
* 4 * 4);
4672 if (cfg
->trans_mode
== OMAP_DSS_DSI_BURST_MODE
) {
4673 pll_max
= cfg
->hs_clk_max
* 4;
4675 unsigned long byteclk_max
;
4676 byteclk_max
= div64_u64((u64
)ctx
->req_pck_max
* bitspp
,
4679 pll_max
= byteclk_max
* 4 * 4;
4682 return dss_pll_calc_a(ctx
->pll
, clkin
,
4684 dsi_vm_calc_pll_cb
, ctx
);
4687 static int dsi_set_config(struct omap_dss_device
*dssdev
,
4688 const struct omap_dss_dsi_config
*config
)
4690 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
4691 struct dsi_clk_calc_ctx ctx
;
4695 mutex_lock(&dsi
->lock
);
4697 dsi
->pix_fmt
= config
->pixel_format
;
4698 dsi
->mode
= config
->mode
;
4700 if (config
->mode
== OMAP_DSS_DSI_VIDEO_MODE
)
4701 ok
= dsi_vm_calc(dsi
, config
, &ctx
);
4703 ok
= dsi_cm_calc(dsi
, config
, &ctx
);
4706 DSSERR("failed to find suitable DSI clock settings\n");
4711 dsi_pll_calc_dsi_fck(dsi
, &ctx
.dsi_cinfo
);
4713 r
= dsi_lp_clock_calc(ctx
.dsi_cinfo
.clkout
[HSDIV_DSI
],
4714 config
->lp_clk_min
, config
->lp_clk_max
, &dsi
->user_lp_cinfo
);
4716 DSSERR("failed to find suitable DSI LP clock settings\n");
4720 dsi
->user_dsi_cinfo
= ctx
.dsi_cinfo
;
4721 dsi
->user_dispc_cinfo
= ctx
.dispc_cinfo
;
4726 * override interlace, logic level and edge related parameters in
4727 * videomode with default values
4729 dsi
->vm
.flags
&= ~DISPLAY_FLAGS_INTERLACED
;
4730 dsi
->vm
.flags
&= ~DISPLAY_FLAGS_HSYNC_LOW
;
4731 dsi
->vm
.flags
|= DISPLAY_FLAGS_HSYNC_HIGH
;
4732 dsi
->vm
.flags
&= ~DISPLAY_FLAGS_VSYNC_LOW
;
4733 dsi
->vm
.flags
|= DISPLAY_FLAGS_VSYNC_HIGH
;
4735 * HACK: These flags should be handled through the omap_dss_device bus
4736 * flags, but this will only be possible when the DSI encoder will be
4737 * converted to the omapdrm-managed encoder model.
4739 dsi
->vm
.flags
&= ~DISPLAY_FLAGS_PIXDATA_NEGEDGE
;
4740 dsi
->vm
.flags
|= DISPLAY_FLAGS_PIXDATA_POSEDGE
;
4741 dsi
->vm
.flags
&= ~DISPLAY_FLAGS_DE_LOW
;
4742 dsi
->vm
.flags
|= DISPLAY_FLAGS_DE_HIGH
;
4743 dsi
->vm
.flags
&= ~DISPLAY_FLAGS_SYNC_POSEDGE
;
4744 dsi
->vm
.flags
|= DISPLAY_FLAGS_SYNC_NEGEDGE
;
4746 dss_mgr_set_timings(&dsi
->output
, &dsi
->vm
);
4748 dsi
->vm_timings
= ctx
.dsi_vm
;
4750 mutex_unlock(&dsi
->lock
);
4754 mutex_unlock(&dsi
->lock
);
4760 * Return a hardcoded channel for the DSI output. This should work for
4761 * current use cases, but this can be later expanded to either resolve
4762 * the channel in some more dynamic manner, or get the channel as a user
4765 static enum omap_channel
dsi_get_channel(struct dsi_data
*dsi
)
4767 switch (dsi
->data
->model
) {
4768 case DSI_MODEL_OMAP3
:
4769 return OMAP_DSS_CHANNEL_LCD
;
4771 case DSI_MODEL_OMAP4
:
4772 switch (dsi
->module_id
) {
4774 return OMAP_DSS_CHANNEL_LCD
;
4776 return OMAP_DSS_CHANNEL_LCD2
;
4778 DSSWARN("unsupported module id\n");
4779 return OMAP_DSS_CHANNEL_LCD
;
4782 case DSI_MODEL_OMAP5
:
4783 switch (dsi
->module_id
) {
4785 return OMAP_DSS_CHANNEL_LCD
;
4787 return OMAP_DSS_CHANNEL_LCD3
;
4789 DSSWARN("unsupported module id\n");
4790 return OMAP_DSS_CHANNEL_LCD
;
4794 DSSWARN("unsupported DSS version\n");
4795 return OMAP_DSS_CHANNEL_LCD
;
4799 static int dsi_request_vc(struct omap_dss_device
*dssdev
, int *channel
)
4801 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
4804 for (i
= 0; i
< ARRAY_SIZE(dsi
->vc
); i
++) {
4805 if (!dsi
->vc
[i
].dssdev
) {
4806 dsi
->vc
[i
].dssdev
= dssdev
;
4812 DSSERR("cannot get VC for display %s", dssdev
->name
);
4816 static int dsi_set_vc_id(struct omap_dss_device
*dssdev
, int channel
, int vc_id
)
4818 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
4820 if (vc_id
< 0 || vc_id
> 3) {
4821 DSSERR("VC ID out of range\n");
4825 if (channel
< 0 || channel
> 3) {
4826 DSSERR("Virtual Channel out of range\n");
4830 if (dsi
->vc
[channel
].dssdev
!= dssdev
) {
4831 DSSERR("Virtual Channel not allocated to display %s\n",
4836 dsi
->vc
[channel
].vc_id
= vc_id
;
4841 static void dsi_release_vc(struct omap_dss_device
*dssdev
, int channel
)
4843 struct dsi_data
*dsi
= to_dsi_data(dssdev
);
4845 if ((channel
>= 0 && channel
<= 3) &&
4846 dsi
->vc
[channel
].dssdev
== dssdev
) {
4847 dsi
->vc
[channel
].dssdev
= NULL
;
4848 dsi
->vc
[channel
].vc_id
= 0;
4853 static int dsi_get_clocks(struct dsi_data
*dsi
)
4857 clk
= devm_clk_get(dsi
->dev
, "fck");
4859 DSSERR("can't get fck\n");
4860 return PTR_ERR(clk
);
4868 static int dsi_connect(struct omap_dss_device
*src
,
4869 struct omap_dss_device
*dst
)
4871 return omapdss_device_connect(dst
->dss
, dst
, dst
->next
);
4874 static void dsi_disconnect(struct omap_dss_device
*src
,
4875 struct omap_dss_device
*dst
)
4877 omapdss_device_disconnect(dst
, dst
->next
);
4880 static const struct omap_dss_device_ops dsi_ops
= {
4881 .connect
= dsi_connect
,
4882 .disconnect
= dsi_disconnect
,
4883 .enable
= dsi_display_enable
,
4886 .bus_lock
= dsi_bus_lock
,
4887 .bus_unlock
= dsi_bus_unlock
,
4889 .disable
= dsi_display_disable
,
4891 .enable_hs
= dsi_vc_enable_hs
,
4893 .configure_pins
= dsi_configure_pins
,
4894 .set_config
= dsi_set_config
,
4896 .enable_video_output
= dsi_enable_video_output
,
4897 .disable_video_output
= dsi_disable_video_output
,
4899 .update
= dsi_update
,
4901 .enable_te
= dsi_enable_te
,
4903 .request_vc
= dsi_request_vc
,
4904 .set_vc_id
= dsi_set_vc_id
,
4905 .release_vc
= dsi_release_vc
,
4907 .dcs_write
= dsi_vc_dcs_write
,
4908 .dcs_write_nosync
= dsi_vc_dcs_write_nosync
,
4909 .dcs_read
= dsi_vc_dcs_read
,
4911 .gen_write
= dsi_vc_generic_write
,
4912 .gen_write_nosync
= dsi_vc_generic_write_nosync
,
4913 .gen_read
= dsi_vc_generic_read
,
4915 .bta_sync
= dsi_vc_send_bta_sync
,
4917 .set_max_rx_packet_size
= dsi_vc_set_max_rx_packet_size
,
4921 /* -----------------------------------------------------------------------------
4925 static const struct dss_pll_ops dsi_pll_ops
= {
4926 .enable
= dsi_pll_enable
,
4927 .disable
= dsi_pll_disable
,
4928 .set_config
= dss_pll_write_config_type_a
,
4931 static const struct dss_pll_hw dss_omap3_dsi_pll_hw
= {
4932 .type
= DSS_PLL_TYPE_A
,
4934 .n_max
= (1 << 7) - 1,
4935 .m_max
= (1 << 11) - 1,
4936 .mX_max
= (1 << 4) - 1,
4938 .fint_max
= 2100000,
4939 .clkdco_low
= 1000000000,
4940 .clkdco_max
= 1800000000,
4952 .has_stopmode
= true,
4953 .has_freqsel
= true,
4954 .has_selfreqdco
= false,
4955 .has_refsel
= false,
4958 static const struct dss_pll_hw dss_omap4_dsi_pll_hw
= {
4959 .type
= DSS_PLL_TYPE_A
,
4961 .n_max
= (1 << 8) - 1,
4962 .m_max
= (1 << 12) - 1,
4963 .mX_max
= (1 << 5) - 1,
4965 .fint_max
= 2500000,
4966 .clkdco_low
= 1000000000,
4967 .clkdco_max
= 1800000000,
4979 .has_stopmode
= true,
4980 .has_freqsel
= false,
4981 .has_selfreqdco
= false,
4982 .has_refsel
= false,
4985 static const struct dss_pll_hw dss_omap5_dsi_pll_hw
= {
4986 .type
= DSS_PLL_TYPE_A
,
4988 .n_max
= (1 << 8) - 1,
4989 .m_max
= (1 << 12) - 1,
4990 .mX_max
= (1 << 5) - 1,
4992 .fint_max
= 52000000,
4993 .clkdco_low
= 1000000000,
4994 .clkdco_max
= 1800000000,
5006 .has_stopmode
= true,
5007 .has_freqsel
= false,
5008 .has_selfreqdco
= true,
5012 static int dsi_init_pll_data(struct dss_device
*dss
, struct dsi_data
*dsi
)
5014 struct dss_pll
*pll
= &dsi
->pll
;
5018 clk
= devm_clk_get(dsi
->dev
, "sys_clk");
5020 DSSERR("can't get sys_clk\n");
5021 return PTR_ERR(clk
);
5024 pll
->name
= dsi
->module_id
== 0 ? "dsi0" : "dsi1";
5025 pll
->id
= dsi
->module_id
== 0 ? DSS_PLL_DSI1
: DSS_PLL_DSI2
;
5027 pll
->base
= dsi
->pll_base
;
5028 pll
->hw
= dsi
->data
->pll_hw
;
5029 pll
->ops
= &dsi_pll_ops
;
5031 r
= dss_pll_register(dss
, pll
);
5038 /* -----------------------------------------------------------------------------
5039 * Component Bind & Unbind
5042 static int dsi_bind(struct device
*dev
, struct device
*master
, void *data
)
5044 struct dss_device
*dss
= dss_get_device(master
);
5045 struct dsi_data
*dsi
= dev_get_drvdata(dev
);
5052 dsi_init_pll_data(dss
, dsi
);
5054 r
= dsi_runtime_get(dsi
);
5058 rev
= dsi_read_reg(dsi
, DSI_REVISION
);
5059 dev_dbg(dev
, "OMAP DSI rev %d.%d\n",
5060 FLD_GET(rev
, 7, 4), FLD_GET(rev
, 3, 0));
5062 dsi
->line_buffer_size
= dsi_get_line_buf_size(dsi
);
5064 dsi_runtime_put(dsi
);
5066 snprintf(name
, sizeof(name
), "dsi%u_regs", dsi
->module_id
+ 1);
5067 dsi
->debugfs
.regs
= dss_debugfs_create_file(dss
, name
,
5068 dsi_dump_dsi_regs
, dsi
);
5069 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
5070 snprintf(name
, sizeof(name
), "dsi%u_irqs", dsi
->module_id
+ 1);
5071 dsi
->debugfs
.irqs
= dss_debugfs_create_file(dss
, name
,
5072 dsi_dump_dsi_irqs
, dsi
);
5074 snprintf(name
, sizeof(name
), "dsi%u_clks", dsi
->module_id
+ 1);
5075 dsi
->debugfs
.clks
= dss_debugfs_create_file(dss
, name
,
5076 dsi_dump_dsi_clocks
, dsi
);
5081 static void dsi_unbind(struct device
*dev
, struct device
*master
, void *data
)
5083 struct dsi_data
*dsi
= dev_get_drvdata(dev
);
5085 dss_debugfs_remove_file(dsi
->debugfs
.clks
);
5086 dss_debugfs_remove_file(dsi
->debugfs
.irqs
);
5087 dss_debugfs_remove_file(dsi
->debugfs
.regs
);
5089 WARN_ON(dsi
->scp_clk_refcount
> 0);
5091 dss_pll_unregister(&dsi
->pll
);
5094 static const struct component_ops dsi_component_ops
= {
5096 .unbind
= dsi_unbind
,
5099 /* -----------------------------------------------------------------------------
5100 * Probe & Remove, Suspend & Resume
5103 static int dsi_init_output(struct dsi_data
*dsi
)
5105 struct omap_dss_device
*out
= &dsi
->output
;
5108 out
->dev
= dsi
->dev
;
5109 out
->id
= dsi
->module_id
== 0 ?
5110 OMAP_DSS_OUTPUT_DSI1
: OMAP_DSS_OUTPUT_DSI2
;
5112 out
->type
= OMAP_DISPLAY_TYPE_DSI
;
5113 out
->name
= dsi
->module_id
== 0 ? "dsi.0" : "dsi.1";
5114 out
->dispc_channel
= dsi_get_channel(dsi
);
5115 out
->ops
= &dsi_ops
;
5116 out
->owner
= THIS_MODULE
;
5118 out
->bus_flags
= DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE
5119 | DRM_BUS_FLAG_DE_HIGH
5120 | DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE
;
5122 r
= omapdss_device_init_output(out
, NULL
);
5126 omapdss_device_register(out
);
5131 static void dsi_uninit_output(struct dsi_data
*dsi
)
5133 struct omap_dss_device
*out
= &dsi
->output
;
5135 omapdss_device_unregister(out
);
5136 omapdss_device_cleanup_output(out
);
5139 static int dsi_probe_of(struct dsi_data
*dsi
)
5141 struct device_node
*node
= dsi
->dev
->of_node
;
5142 struct property
*prop
;
5146 struct device_node
*ep
;
5147 struct omap_dsi_pin_config pin_cfg
;
5149 ep
= of_graph_get_endpoint_by_regs(node
, 0, 0);
5153 prop
= of_find_property(ep
, "lanes", &len
);
5155 dev_err(dsi
->dev
, "failed to find lane data\n");
5160 num_pins
= len
/ sizeof(u32
);
5162 if (num_pins
< 4 || num_pins
% 2 != 0 ||
5163 num_pins
> dsi
->num_lanes_supported
* 2) {
5164 dev_err(dsi
->dev
, "bad number of lanes\n");
5169 r
= of_property_read_u32_array(ep
, "lanes", lane_arr
, num_pins
);
5171 dev_err(dsi
->dev
, "failed to read lane data\n");
5175 pin_cfg
.num_pins
= num_pins
;
5176 for (i
= 0; i
< num_pins
; ++i
)
5177 pin_cfg
.pins
[i
] = (int)lane_arr
[i
];
5179 r
= dsi_configure_pins(&dsi
->output
, &pin_cfg
);
5181 dev_err(dsi
->dev
, "failed to configure pins");
5194 static const struct dsi_of_data dsi_of_data_omap34xx
= {
5195 .model
= DSI_MODEL_OMAP3
,
5196 .pll_hw
= &dss_omap3_dsi_pll_hw
,
5197 .modules
= (const struct dsi_module_id_data
[]) {
5198 { .address
= 0x4804fc00, .id
= 0, },
5201 .max_fck_freq
= 173000000,
5202 .max_pll_lpdiv
= (1 << 13) - 1,
5203 .quirks
= DSI_QUIRK_REVERSE_TXCLKESC
,
5206 static const struct dsi_of_data dsi_of_data_omap36xx
= {
5207 .model
= DSI_MODEL_OMAP3
,
5208 .pll_hw
= &dss_omap3_dsi_pll_hw
,
5209 .modules
= (const struct dsi_module_id_data
[]) {
5210 { .address
= 0x4804fc00, .id
= 0, },
5213 .max_fck_freq
= 173000000,
5214 .max_pll_lpdiv
= (1 << 13) - 1,
5215 .quirks
= DSI_QUIRK_PLL_PWR_BUG
,
5218 static const struct dsi_of_data dsi_of_data_omap4
= {
5219 .model
= DSI_MODEL_OMAP4
,
5220 .pll_hw
= &dss_omap4_dsi_pll_hw
,
5221 .modules
= (const struct dsi_module_id_data
[]) {
5222 { .address
= 0x58004000, .id
= 0, },
5223 { .address
= 0x58005000, .id
= 1, },
5226 .max_fck_freq
= 170000000,
5227 .max_pll_lpdiv
= (1 << 13) - 1,
5228 .quirks
= DSI_QUIRK_DCS_CMD_CONFIG_VC
| DSI_QUIRK_VC_OCP_WIDTH
5232 static const struct dsi_of_data dsi_of_data_omap5
= {
5233 .model
= DSI_MODEL_OMAP5
,
5234 .pll_hw
= &dss_omap5_dsi_pll_hw
,
5235 .modules
= (const struct dsi_module_id_data
[]) {
5236 { .address
= 0x58004000, .id
= 0, },
5237 { .address
= 0x58009000, .id
= 1, },
5240 .max_fck_freq
= 209250000,
5241 .max_pll_lpdiv
= (1 << 13) - 1,
5242 .quirks
= DSI_QUIRK_DCS_CMD_CONFIG_VC
| DSI_QUIRK_VC_OCP_WIDTH
5243 | DSI_QUIRK_GNQ
| DSI_QUIRK_PHY_DCC
,
5246 static const struct of_device_id dsi_of_match
[] = {
5247 { .compatible
= "ti,omap3-dsi", .data
= &dsi_of_data_omap36xx
, },
5248 { .compatible
= "ti,omap4-dsi", .data
= &dsi_of_data_omap4
, },
5249 { .compatible
= "ti,omap5-dsi", .data
= &dsi_of_data_omap5
, },
5253 static const struct soc_device_attribute dsi_soc_devices
[] = {
5254 { .machine
= "OMAP3[45]*", .data
= &dsi_of_data_omap34xx
},
5255 { .machine
= "AM35*", .data
= &dsi_of_data_omap34xx
},
5259 static int dsi_probe(struct platform_device
*pdev
)
5261 const struct soc_device_attribute
*soc
;
5262 const struct dsi_module_id_data
*d
;
5263 struct device
*dev
= &pdev
->dev
;
5264 struct dsi_data
*dsi
;
5265 struct resource
*dsi_mem
;
5266 struct resource
*res
;
5270 dsi
= devm_kzalloc(dev
, sizeof(*dsi
), GFP_KERNEL
);
5275 dev_set_drvdata(dev
, dsi
);
5277 spin_lock_init(&dsi
->irq_lock
);
5278 spin_lock_init(&dsi
->errors_lock
);
5281 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
5282 spin_lock_init(&dsi
->irq_stats_lock
);
5283 dsi
->irq_stats
.last_reset
= jiffies
;
5286 mutex_init(&dsi
->lock
);
5287 sema_init(&dsi
->bus_lock
, 1);
5289 INIT_DEFERRABLE_WORK(&dsi
->framedone_timeout_work
,
5290 dsi_framedone_timeout_work_callback
);
5292 #ifdef DSI_CATCH_MISSING_TE
5293 timer_setup(&dsi
->te_timer
, dsi_te_timeout
, 0);
5296 dsi_mem
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "proto");
5297 dsi
->proto_base
= devm_ioremap_resource(dev
, dsi_mem
);
5298 if (IS_ERR(dsi
->proto_base
))
5299 return PTR_ERR(dsi
->proto_base
);
5301 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "phy");
5302 dsi
->phy_base
= devm_ioremap_resource(dev
, res
);
5303 if (IS_ERR(dsi
->phy_base
))
5304 return PTR_ERR(dsi
->phy_base
);
5306 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "pll");
5307 dsi
->pll_base
= devm_ioremap_resource(dev
, res
);
5308 if (IS_ERR(dsi
->pll_base
))
5309 return PTR_ERR(dsi
->pll_base
);
5311 dsi
->irq
= platform_get_irq(pdev
, 0);
5313 DSSERR("platform_get_irq failed\n");
5317 r
= devm_request_irq(dev
, dsi
->irq
, omap_dsi_irq_handler
,
5318 IRQF_SHARED
, dev_name(dev
), dsi
);
5320 DSSERR("request_irq failed\n");
5324 dsi
->vdds_dsi_reg
= devm_regulator_get(dev
, "vdd");
5325 if (IS_ERR(dsi
->vdds_dsi_reg
)) {
5326 if (PTR_ERR(dsi
->vdds_dsi_reg
) != -EPROBE_DEFER
)
5327 DSSERR("can't get DSI VDD regulator\n");
5328 return PTR_ERR(dsi
->vdds_dsi_reg
);
5331 soc
= soc_device_match(dsi_soc_devices
);
5333 dsi
->data
= soc
->data
;
5335 dsi
->data
= of_match_node(dsi_of_match
, dev
->of_node
)->data
;
5337 d
= dsi
->data
->modules
;
5338 while (d
->address
!= 0 && d
->address
!= dsi_mem
->start
)
5341 if (d
->address
== 0) {
5342 DSSERR("unsupported DSI module\n");
5346 dsi
->module_id
= d
->id
;
5348 if (dsi
->data
->model
== DSI_MODEL_OMAP4
||
5349 dsi
->data
->model
== DSI_MODEL_OMAP5
) {
5350 struct device_node
*np
;
5353 * The OMAP4/5 display DT bindings don't reference the padconf
5354 * syscon. Our only option to retrieve it is to find it by name.
5356 np
= of_find_node_by_name(NULL
,
5357 dsi
->data
->model
== DSI_MODEL_OMAP4
?
5358 "omap4_padconf_global" : "omap5_padconf_global");
5362 dsi
->syscon
= syscon_node_to_regmap(np
);
5366 /* DSI VCs initialization */
5367 for (i
= 0; i
< ARRAY_SIZE(dsi
->vc
); i
++) {
5368 dsi
->vc
[i
].source
= DSI_VC_SOURCE_L4
;
5369 dsi
->vc
[i
].dssdev
= NULL
;
5370 dsi
->vc
[i
].vc_id
= 0;
5373 r
= dsi_get_clocks(dsi
);
5377 pm_runtime_enable(dev
);
5379 /* DSI on OMAP3 doesn't have register DSI_GNQ, set number
5380 * of data to 3 by default */
5381 if (dsi
->data
->quirks
& DSI_QUIRK_GNQ
) {
5382 dsi_runtime_get(dsi
);
5384 dsi
->num_lanes_supported
= 1 + REG_GET(dsi
, DSI_GNQ
, 11, 9);
5385 dsi_runtime_put(dsi
);
5387 dsi
->num_lanes_supported
= 3;
5390 r
= of_platform_populate(dev
->of_node
, NULL
, NULL
, dev
);
5392 DSSERR("Failed to populate DSI child devices: %d\n", r
);
5393 goto err_pm_disable
;
5396 r
= dsi_init_output(dsi
);
5398 goto err_of_depopulate
;
5400 r
= dsi_probe_of(dsi
);
5402 DSSERR("Invalid DSI DT data\n");
5403 goto err_uninit_output
;
5406 r
= component_add(&pdev
->dev
, &dsi_component_ops
);
5408 goto err_uninit_output
;
5413 dsi_uninit_output(dsi
);
5415 of_platform_depopulate(dev
);
5417 pm_runtime_disable(dev
);
5421 static int dsi_remove(struct platform_device
*pdev
)
5423 struct dsi_data
*dsi
= platform_get_drvdata(pdev
);
5425 component_del(&pdev
->dev
, &dsi_component_ops
);
5427 dsi_uninit_output(dsi
);
5429 of_platform_depopulate(&pdev
->dev
);
5431 pm_runtime_disable(&pdev
->dev
);
5433 if (dsi
->vdds_dsi_reg
!= NULL
&& dsi
->vdds_dsi_enabled
) {
5434 regulator_disable(dsi
->vdds_dsi_reg
);
5435 dsi
->vdds_dsi_enabled
= false;
5441 static int dsi_runtime_suspend(struct device
*dev
)
5443 struct dsi_data
*dsi
= dev_get_drvdata(dev
);
5445 dsi
->is_enabled
= false;
5446 /* ensure the irq handler sees the is_enabled value */
5448 /* wait for current handler to finish before turning the DSI off */
5449 synchronize_irq(dsi
->irq
);
5454 static int dsi_runtime_resume(struct device
*dev
)
5456 struct dsi_data
*dsi
= dev_get_drvdata(dev
);
5458 dsi
->is_enabled
= true;
5459 /* ensure the irq handler sees the is_enabled value */
5465 static const struct dev_pm_ops dsi_pm_ops
= {
5466 .runtime_suspend
= dsi_runtime_suspend
,
5467 .runtime_resume
= dsi_runtime_resume
,
5468 SET_LATE_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
, pm_runtime_force_resume
)
5471 struct platform_driver omap_dsihw_driver
= {
5473 .remove
= dsi_remove
,
5475 .name
= "omapdss_dsi",
5477 .of_match_table
= dsi_of_match
,
5478 .suppress_bind_attrs
= true,