2 * Copyright (C) 2013 NVIDIA Corporation
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
10 #include <linux/debugfs.h>
11 #include <linux/host1x.h>
12 #include <linux/module.h>
14 #include <linux/of_platform.h>
15 #include <linux/platform_device.h>
16 #include <linux/reset.h>
18 #include <linux/regulator/consumer.h>
20 #include <drm/drm_atomic_helper.h>
21 #include <drm/drm_mipi_dsi.h>
22 #include <drm/drm_panel.h>
24 #include <video/mipi_display.h>
31 struct tegra_dsi_state
{
32 struct drm_connector_state base
;
34 struct mipi_dphy_timing timing
;
37 unsigned int vrefresh
;
42 enum tegra_dsi_format format
;
47 static inline struct tegra_dsi_state
*
48 to_dsi_state(struct drm_connector_state
*state
)
50 return container_of(state
, struct tegra_dsi_state
, base
);
54 struct host1x_client client
;
55 struct tegra_output output
;
60 struct reset_control
*rst
;
61 struct clk
*clk_parent
;
65 struct drm_info_list
*debugfs_files
;
66 struct drm_minor
*minor
;
67 struct dentry
*debugfs
;
70 enum mipi_dsi_pixel_format format
;
73 struct tegra_mipi_device
*mipi
;
74 struct mipi_dsi_host host
;
76 struct regulator
*vdd
;
78 unsigned int video_fifo_depth
;
79 unsigned int host_fifo_depth
;
81 /* for ganged-mode support */
82 struct tegra_dsi
*master
;
83 struct tegra_dsi
*slave
;
86 static inline struct tegra_dsi
*
87 host1x_client_to_dsi(struct host1x_client
*client
)
89 return container_of(client
, struct tegra_dsi
, client
);
92 static inline struct tegra_dsi
*host_to_tegra(struct mipi_dsi_host
*host
)
94 return container_of(host
, struct tegra_dsi
, host
);
97 static inline struct tegra_dsi
*to_dsi(struct tegra_output
*output
)
99 return container_of(output
, struct tegra_dsi
, output
);
102 static struct tegra_dsi_state
*tegra_dsi_get_state(struct tegra_dsi
*dsi
)
104 return to_dsi_state(dsi
->output
.connector
.state
);
107 static inline u32
tegra_dsi_readl(struct tegra_dsi
*dsi
, unsigned long reg
)
109 return readl(dsi
->regs
+ (reg
<< 2));
112 static inline void tegra_dsi_writel(struct tegra_dsi
*dsi
, u32 value
,
115 writel(value
, dsi
->regs
+ (reg
<< 2));
118 static int tegra_dsi_show_regs(struct seq_file
*s
, void *data
)
120 struct drm_info_node
*node
= s
->private;
121 struct tegra_dsi
*dsi
= node
->info_ent
->data
;
123 #define DUMP_REG(name) \
124 seq_printf(s, "%-32s %#05x %08x\n", #name, name, \
125 tegra_dsi_readl(dsi, name))
127 DUMP_REG(DSI_INCR_SYNCPT
);
128 DUMP_REG(DSI_INCR_SYNCPT_CONTROL
);
129 DUMP_REG(DSI_INCR_SYNCPT_ERROR
);
131 DUMP_REG(DSI_RD_DATA
);
132 DUMP_REG(DSI_WR_DATA
);
133 DUMP_REG(DSI_POWER_CONTROL
);
134 DUMP_REG(DSI_INT_ENABLE
);
135 DUMP_REG(DSI_INT_STATUS
);
136 DUMP_REG(DSI_INT_MASK
);
137 DUMP_REG(DSI_HOST_CONTROL
);
138 DUMP_REG(DSI_CONTROL
);
139 DUMP_REG(DSI_SOL_DELAY
);
140 DUMP_REG(DSI_MAX_THRESHOLD
);
141 DUMP_REG(DSI_TRIGGER
);
142 DUMP_REG(DSI_TX_CRC
);
143 DUMP_REG(DSI_STATUS
);
145 DUMP_REG(DSI_INIT_SEQ_CONTROL
);
146 DUMP_REG(DSI_INIT_SEQ_DATA_0
);
147 DUMP_REG(DSI_INIT_SEQ_DATA_1
);
148 DUMP_REG(DSI_INIT_SEQ_DATA_2
);
149 DUMP_REG(DSI_INIT_SEQ_DATA_3
);
150 DUMP_REG(DSI_INIT_SEQ_DATA_4
);
151 DUMP_REG(DSI_INIT_SEQ_DATA_5
);
152 DUMP_REG(DSI_INIT_SEQ_DATA_6
);
153 DUMP_REG(DSI_INIT_SEQ_DATA_7
);
155 DUMP_REG(DSI_PKT_SEQ_0_LO
);
156 DUMP_REG(DSI_PKT_SEQ_0_HI
);
157 DUMP_REG(DSI_PKT_SEQ_1_LO
);
158 DUMP_REG(DSI_PKT_SEQ_1_HI
);
159 DUMP_REG(DSI_PKT_SEQ_2_LO
);
160 DUMP_REG(DSI_PKT_SEQ_2_HI
);
161 DUMP_REG(DSI_PKT_SEQ_3_LO
);
162 DUMP_REG(DSI_PKT_SEQ_3_HI
);
163 DUMP_REG(DSI_PKT_SEQ_4_LO
);
164 DUMP_REG(DSI_PKT_SEQ_4_HI
);
165 DUMP_REG(DSI_PKT_SEQ_5_LO
);
166 DUMP_REG(DSI_PKT_SEQ_5_HI
);
168 DUMP_REG(DSI_DCS_CMDS
);
170 DUMP_REG(DSI_PKT_LEN_0_1
);
171 DUMP_REG(DSI_PKT_LEN_2_3
);
172 DUMP_REG(DSI_PKT_LEN_4_5
);
173 DUMP_REG(DSI_PKT_LEN_6_7
);
175 DUMP_REG(DSI_PHY_TIMING_0
);
176 DUMP_REG(DSI_PHY_TIMING_1
);
177 DUMP_REG(DSI_PHY_TIMING_2
);
178 DUMP_REG(DSI_BTA_TIMING
);
180 DUMP_REG(DSI_TIMEOUT_0
);
181 DUMP_REG(DSI_TIMEOUT_1
);
182 DUMP_REG(DSI_TO_TALLY
);
184 DUMP_REG(DSI_PAD_CONTROL_0
);
185 DUMP_REG(DSI_PAD_CONTROL_CD
);
186 DUMP_REG(DSI_PAD_CD_STATUS
);
187 DUMP_REG(DSI_VIDEO_MODE_CONTROL
);
188 DUMP_REG(DSI_PAD_CONTROL_1
);
189 DUMP_REG(DSI_PAD_CONTROL_2
);
190 DUMP_REG(DSI_PAD_CONTROL_3
);
191 DUMP_REG(DSI_PAD_CONTROL_4
);
193 DUMP_REG(DSI_GANGED_MODE_CONTROL
);
194 DUMP_REG(DSI_GANGED_MODE_START
);
195 DUMP_REG(DSI_GANGED_MODE_SIZE
);
197 DUMP_REG(DSI_RAW_DATA_BYTE_COUNT
);
198 DUMP_REG(DSI_ULTRA_LOW_POWER_CONTROL
);
200 DUMP_REG(DSI_INIT_SEQ_DATA_8
);
201 DUMP_REG(DSI_INIT_SEQ_DATA_9
);
202 DUMP_REG(DSI_INIT_SEQ_DATA_10
);
203 DUMP_REG(DSI_INIT_SEQ_DATA_11
);
204 DUMP_REG(DSI_INIT_SEQ_DATA_12
);
205 DUMP_REG(DSI_INIT_SEQ_DATA_13
);
206 DUMP_REG(DSI_INIT_SEQ_DATA_14
);
207 DUMP_REG(DSI_INIT_SEQ_DATA_15
);
214 static struct drm_info_list debugfs_files
[] = {
215 { "regs", tegra_dsi_show_regs
, 0, NULL
},
218 static int tegra_dsi_debugfs_init(struct tegra_dsi
*dsi
,
219 struct drm_minor
*minor
)
221 const char *name
= dev_name(dsi
->dev
);
225 dsi
->debugfs
= debugfs_create_dir(name
, minor
->debugfs_root
);
229 dsi
->debugfs_files
= kmemdup(debugfs_files
, sizeof(debugfs_files
),
231 if (!dsi
->debugfs_files
) {
236 for (i
= 0; i
< ARRAY_SIZE(debugfs_files
); i
++)
237 dsi
->debugfs_files
[i
].data
= dsi
;
239 err
= drm_debugfs_create_files(dsi
->debugfs_files
,
240 ARRAY_SIZE(debugfs_files
),
241 dsi
->debugfs
, minor
);
250 kfree(dsi
->debugfs_files
);
251 dsi
->debugfs_files
= NULL
;
253 debugfs_remove(dsi
->debugfs
);
259 static void tegra_dsi_debugfs_exit(struct tegra_dsi
*dsi
)
261 drm_debugfs_remove_files(dsi
->debugfs_files
, ARRAY_SIZE(debugfs_files
),
265 kfree(dsi
->debugfs_files
);
266 dsi
->debugfs_files
= NULL
;
268 debugfs_remove(dsi
->debugfs
);
272 #define PKT_ID0(id) ((((id) & 0x3f) << 3) | (1 << 9))
273 #define PKT_LEN0(len) (((len) & 0x07) << 0)
274 #define PKT_ID1(id) ((((id) & 0x3f) << 13) | (1 << 19))
275 #define PKT_LEN1(len) (((len) & 0x07) << 10)
276 #define PKT_ID2(id) ((((id) & 0x3f) << 23) | (1 << 29))
277 #define PKT_LEN2(len) (((len) & 0x07) << 20)
279 #define PKT_LP (1 << 30)
280 #define NUM_PKT_SEQ 12
283 * non-burst mode with sync pulses
285 static const u32 pkt_seq_video_non_burst_sync_pulses
[NUM_PKT_SEQ
] = {
286 [ 0] = PKT_ID0(MIPI_DSI_V_SYNC_START
) | PKT_LEN0(0) |
287 PKT_ID1(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN1(1) |
288 PKT_ID2(MIPI_DSI_H_SYNC_END
) | PKT_LEN2(0) |
291 [ 2] = PKT_ID0(MIPI_DSI_V_SYNC_END
) | PKT_LEN0(0) |
292 PKT_ID1(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN1(1) |
293 PKT_ID2(MIPI_DSI_H_SYNC_END
) | PKT_LEN2(0) |
296 [ 4] = PKT_ID0(MIPI_DSI_H_SYNC_START
) | PKT_LEN0(0) |
297 PKT_ID1(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN1(1) |
298 PKT_ID2(MIPI_DSI_H_SYNC_END
) | PKT_LEN2(0) |
301 [ 6] = PKT_ID0(MIPI_DSI_H_SYNC_START
) | PKT_LEN0(0) |
302 PKT_ID1(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN1(1) |
303 PKT_ID2(MIPI_DSI_H_SYNC_END
) | PKT_LEN2(0),
304 [ 7] = PKT_ID0(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN0(2) |
305 PKT_ID1(MIPI_DSI_PACKED_PIXEL_STREAM_24
) | PKT_LEN1(3) |
306 PKT_ID2(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN2(4),
307 [ 8] = PKT_ID0(MIPI_DSI_H_SYNC_START
) | PKT_LEN0(0) |
308 PKT_ID1(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN1(1) |
309 PKT_ID2(MIPI_DSI_H_SYNC_END
) | PKT_LEN2(0) |
312 [10] = PKT_ID0(MIPI_DSI_H_SYNC_START
) | PKT_LEN0(0) |
313 PKT_ID1(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN1(1) |
314 PKT_ID2(MIPI_DSI_H_SYNC_END
) | PKT_LEN2(0),
315 [11] = PKT_ID0(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN0(2) |
316 PKT_ID1(MIPI_DSI_PACKED_PIXEL_STREAM_24
) | PKT_LEN1(3) |
317 PKT_ID2(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN2(4),
321 * non-burst mode with sync events
323 static const u32 pkt_seq_video_non_burst_sync_events
[NUM_PKT_SEQ
] = {
324 [ 0] = PKT_ID0(MIPI_DSI_V_SYNC_START
) | PKT_LEN0(0) |
325 PKT_ID1(MIPI_DSI_END_OF_TRANSMISSION
) | PKT_LEN1(7) |
328 [ 2] = PKT_ID0(MIPI_DSI_H_SYNC_START
) | PKT_LEN0(0) |
329 PKT_ID1(MIPI_DSI_END_OF_TRANSMISSION
) | PKT_LEN1(7) |
332 [ 4] = PKT_ID0(MIPI_DSI_H_SYNC_START
) | PKT_LEN0(0) |
333 PKT_ID1(MIPI_DSI_END_OF_TRANSMISSION
) | PKT_LEN1(7) |
336 [ 6] = PKT_ID0(MIPI_DSI_H_SYNC_START
) | PKT_LEN0(0) |
337 PKT_ID1(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN1(2) |
338 PKT_ID2(MIPI_DSI_PACKED_PIXEL_STREAM_24
) | PKT_LEN2(3),
339 [ 7] = PKT_ID0(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN0(4),
340 [ 8] = PKT_ID0(MIPI_DSI_H_SYNC_START
) | PKT_LEN0(0) |
341 PKT_ID1(MIPI_DSI_END_OF_TRANSMISSION
) | PKT_LEN1(7) |
344 [10] = PKT_ID0(MIPI_DSI_H_SYNC_START
) | PKT_LEN0(0) |
345 PKT_ID1(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN1(2) |
346 PKT_ID2(MIPI_DSI_PACKED_PIXEL_STREAM_24
) | PKT_LEN2(3),
347 [11] = PKT_ID0(MIPI_DSI_BLANKING_PACKET
) | PKT_LEN0(4),
350 static const u32 pkt_seq_command_mode
[NUM_PKT_SEQ
] = {
357 [ 6] = PKT_ID0(MIPI_DSI_DCS_LONG_WRITE
) | PKT_LEN0(3) | PKT_LP
,
361 [10] = PKT_ID0(MIPI_DSI_DCS_LONG_WRITE
) | PKT_LEN0(5) | PKT_LP
,
365 static void tegra_dsi_set_phy_timing(struct tegra_dsi
*dsi
,
366 unsigned long period
,
367 const struct mipi_dphy_timing
*timing
)
371 value
= DSI_TIMING_FIELD(timing
->hsexit
, period
, 1) << 24 |
372 DSI_TIMING_FIELD(timing
->hstrail
, period
, 0) << 16 |
373 DSI_TIMING_FIELD(timing
->hszero
, period
, 3) << 8 |
374 DSI_TIMING_FIELD(timing
->hsprepare
, period
, 1);
375 tegra_dsi_writel(dsi
, value
, DSI_PHY_TIMING_0
);
377 value
= DSI_TIMING_FIELD(timing
->clktrail
, period
, 1) << 24 |
378 DSI_TIMING_FIELD(timing
->clkpost
, period
, 1) << 16 |
379 DSI_TIMING_FIELD(timing
->clkzero
, period
, 1) << 8 |
380 DSI_TIMING_FIELD(timing
->lpx
, period
, 1);
381 tegra_dsi_writel(dsi
, value
, DSI_PHY_TIMING_1
);
383 value
= DSI_TIMING_FIELD(timing
->clkprepare
, period
, 1) << 16 |
384 DSI_TIMING_FIELD(timing
->clkpre
, period
, 1) << 8 |
385 DSI_TIMING_FIELD(0xff * period
, period
, 0) << 0;
386 tegra_dsi_writel(dsi
, value
, DSI_PHY_TIMING_2
);
388 value
= DSI_TIMING_FIELD(timing
->taget
, period
, 1) << 16 |
389 DSI_TIMING_FIELD(timing
->tasure
, period
, 1) << 8 |
390 DSI_TIMING_FIELD(timing
->tago
, period
, 1);
391 tegra_dsi_writel(dsi
, value
, DSI_BTA_TIMING
);
394 tegra_dsi_set_phy_timing(dsi
->slave
, period
, timing
);
397 static int tegra_dsi_get_muldiv(enum mipi_dsi_pixel_format format
,
398 unsigned int *mulp
, unsigned int *divp
)
401 case MIPI_DSI_FMT_RGB666_PACKED
:
402 case MIPI_DSI_FMT_RGB888
:
407 case MIPI_DSI_FMT_RGB565
:
412 case MIPI_DSI_FMT_RGB666
:
424 static int tegra_dsi_get_format(enum mipi_dsi_pixel_format format
,
425 enum tegra_dsi_format
*fmt
)
428 case MIPI_DSI_FMT_RGB888
:
429 *fmt
= TEGRA_DSI_FORMAT_24P
;
432 case MIPI_DSI_FMT_RGB666
:
433 *fmt
= TEGRA_DSI_FORMAT_18NP
;
436 case MIPI_DSI_FMT_RGB666_PACKED
:
437 *fmt
= TEGRA_DSI_FORMAT_18P
;
440 case MIPI_DSI_FMT_RGB565
:
441 *fmt
= TEGRA_DSI_FORMAT_16P
;
451 static void tegra_dsi_ganged_enable(struct tegra_dsi
*dsi
, unsigned int start
,
456 tegra_dsi_writel(dsi
, start
, DSI_GANGED_MODE_START
);
457 tegra_dsi_writel(dsi
, size
<< 16 | size
, DSI_GANGED_MODE_SIZE
);
459 value
= DSI_GANGED_MODE_CONTROL_ENABLE
;
460 tegra_dsi_writel(dsi
, value
, DSI_GANGED_MODE_CONTROL
);
463 static void tegra_dsi_enable(struct tegra_dsi
*dsi
)
467 value
= tegra_dsi_readl(dsi
, DSI_POWER_CONTROL
);
468 value
|= DSI_POWER_CONTROL_ENABLE
;
469 tegra_dsi_writel(dsi
, value
, DSI_POWER_CONTROL
);
472 tegra_dsi_enable(dsi
->slave
);
475 static unsigned int tegra_dsi_get_lanes(struct tegra_dsi
*dsi
)
478 return dsi
->master
->lanes
+ dsi
->lanes
;
481 return dsi
->lanes
+ dsi
->slave
->lanes
;
486 static void tegra_dsi_configure(struct tegra_dsi
*dsi
, unsigned int pipe
,
487 const struct drm_display_mode
*mode
)
489 unsigned int hact
, hsw
, hbp
, hfp
, i
, mul
, div
;
490 struct tegra_dsi_state
*state
;
494 /* XXX: pass in state into this function? */
496 state
= tegra_dsi_get_state(dsi
->master
);
498 state
= tegra_dsi_get_state(dsi
);
503 if (dsi
->flags
& MIPI_DSI_MODE_VIDEO_SYNC_PULSE
) {
504 DRM_DEBUG_KMS("Non-burst video mode with sync pulses\n");
505 pkt_seq
= pkt_seq_video_non_burst_sync_pulses
;
506 } else if (dsi
->flags
& MIPI_DSI_MODE_VIDEO
) {
507 DRM_DEBUG_KMS("Non-burst video mode with sync events\n");
508 pkt_seq
= pkt_seq_video_non_burst_sync_events
;
510 DRM_DEBUG_KMS("Command mode\n");
511 pkt_seq
= pkt_seq_command_mode
;
514 value
= DSI_CONTROL_CHANNEL(0) |
515 DSI_CONTROL_FORMAT(state
->format
) |
516 DSI_CONTROL_LANES(dsi
->lanes
- 1) |
517 DSI_CONTROL_SOURCE(pipe
);
518 tegra_dsi_writel(dsi
, value
, DSI_CONTROL
);
520 tegra_dsi_writel(dsi
, dsi
->video_fifo_depth
, DSI_MAX_THRESHOLD
);
522 value
= DSI_HOST_CONTROL_HS
;
523 tegra_dsi_writel(dsi
, value
, DSI_HOST_CONTROL
);
525 value
= tegra_dsi_readl(dsi
, DSI_CONTROL
);
527 if (dsi
->flags
& MIPI_DSI_CLOCK_NON_CONTINUOUS
)
528 value
|= DSI_CONTROL_HS_CLK_CTRL
;
530 value
&= ~DSI_CONTROL_TX_TRIG(3);
532 /* enable DCS commands for command mode */
533 if (dsi
->flags
& MIPI_DSI_MODE_VIDEO
)
534 value
&= ~DSI_CONTROL_DCS_ENABLE
;
536 value
|= DSI_CONTROL_DCS_ENABLE
;
538 value
|= DSI_CONTROL_VIDEO_ENABLE
;
539 value
&= ~DSI_CONTROL_HOST_ENABLE
;
540 tegra_dsi_writel(dsi
, value
, DSI_CONTROL
);
542 for (i
= 0; i
< NUM_PKT_SEQ
; i
++)
543 tegra_dsi_writel(dsi
, pkt_seq
[i
], DSI_PKT_SEQ_0_LO
+ i
);
545 if (dsi
->flags
& MIPI_DSI_MODE_VIDEO
) {
546 /* horizontal active pixels */
547 hact
= mode
->hdisplay
* mul
/ div
;
549 /* horizontal sync width */
550 hsw
= (mode
->hsync_end
- mode
->hsync_start
) * mul
/ div
;
553 /* horizontal back porch */
554 hbp
= (mode
->htotal
- mode
->hsync_end
) * mul
/ div
;
557 /* horizontal front porch */
558 hfp
= (mode
->hsync_start
- mode
->hdisplay
) * mul
/ div
;
561 tegra_dsi_writel(dsi
, hsw
<< 16 | 0, DSI_PKT_LEN_0_1
);
562 tegra_dsi_writel(dsi
, hact
<< 16 | hbp
, DSI_PKT_LEN_2_3
);
563 tegra_dsi_writel(dsi
, hfp
, DSI_PKT_LEN_4_5
);
564 tegra_dsi_writel(dsi
, 0x0f0f << 16, DSI_PKT_LEN_6_7
);
566 /* set SOL delay (for non-burst mode only) */
567 tegra_dsi_writel(dsi
, 8 * mul
/ div
, DSI_SOL_DELAY
);
569 /* TODO: implement ganged mode */
573 if (dsi
->master
|| dsi
->slave
) {
575 * For ganged mode, assume symmetric left-right mode.
577 bytes
= 1 + (mode
->hdisplay
/ 2) * mul
/ div
;
579 /* 1 byte (DCS command) + pixel data */
580 bytes
= 1 + mode
->hdisplay
* mul
/ div
;
583 tegra_dsi_writel(dsi
, 0, DSI_PKT_LEN_0_1
);
584 tegra_dsi_writel(dsi
, bytes
<< 16, DSI_PKT_LEN_2_3
);
585 tegra_dsi_writel(dsi
, bytes
<< 16, DSI_PKT_LEN_4_5
);
586 tegra_dsi_writel(dsi
, 0, DSI_PKT_LEN_6_7
);
588 value
= MIPI_DCS_WRITE_MEMORY_START
<< 8 |
589 MIPI_DCS_WRITE_MEMORY_CONTINUE
;
590 tegra_dsi_writel(dsi
, value
, DSI_DCS_CMDS
);
593 if (dsi
->master
|| dsi
->slave
) {
594 unsigned long delay
, bclk
, bclk_ganged
;
595 unsigned int lanes
= state
->lanes
;
597 /* SOL to valid, valid to FIFO and FIFO write delay */
599 delay
= DIV_ROUND_UP(delay
* mul
, div
* lanes
);
600 /* FIFO read delay */
603 bclk
= DIV_ROUND_UP(mode
->htotal
* mul
, div
* lanes
);
604 bclk_ganged
= DIV_ROUND_UP(bclk
* lanes
/ 2, lanes
);
605 value
= bclk
- bclk_ganged
+ delay
+ 20;
607 /* TODO: revisit for non-ganged mode */
608 value
= 8 * mul
/ div
;
611 tegra_dsi_writel(dsi
, value
, DSI_SOL_DELAY
);
615 tegra_dsi_configure(dsi
->slave
, pipe
, mode
);
618 * TODO: Support modes other than symmetrical left-right
621 tegra_dsi_ganged_enable(dsi
, 0, mode
->hdisplay
/ 2);
622 tegra_dsi_ganged_enable(dsi
->slave
, mode
->hdisplay
/ 2,
627 static int tegra_dsi_wait_idle(struct tegra_dsi
*dsi
, unsigned long timeout
)
631 timeout
= jiffies
+ msecs_to_jiffies(timeout
);
633 while (time_before(jiffies
, timeout
)) {
634 value
= tegra_dsi_readl(dsi
, DSI_STATUS
);
635 if (value
& DSI_STATUS_IDLE
)
638 usleep_range(1000, 2000);
644 static void tegra_dsi_video_disable(struct tegra_dsi
*dsi
)
648 value
= tegra_dsi_readl(dsi
, DSI_CONTROL
);
649 value
&= ~DSI_CONTROL_VIDEO_ENABLE
;
650 tegra_dsi_writel(dsi
, value
, DSI_CONTROL
);
653 tegra_dsi_video_disable(dsi
->slave
);
656 static void tegra_dsi_ganged_disable(struct tegra_dsi
*dsi
)
658 tegra_dsi_writel(dsi
, 0, DSI_GANGED_MODE_START
);
659 tegra_dsi_writel(dsi
, 0, DSI_GANGED_MODE_SIZE
);
660 tegra_dsi_writel(dsi
, 0, DSI_GANGED_MODE_CONTROL
);
663 static void tegra_dsi_set_timeout(struct tegra_dsi
*dsi
, unsigned long bclk
,
664 unsigned int vrefresh
)
666 unsigned int timeout
;
669 /* one frame high-speed transmission timeout */
670 timeout
= (bclk
/ vrefresh
) / 512;
671 value
= DSI_TIMEOUT_LRX(0x2000) | DSI_TIMEOUT_HTX(timeout
);
672 tegra_dsi_writel(dsi
, value
, DSI_TIMEOUT_0
);
674 /* 2 ms peripheral timeout for panel */
675 timeout
= 2 * bclk
/ 512 * 1000;
676 value
= DSI_TIMEOUT_PR(timeout
) | DSI_TIMEOUT_TA(0x2000);
677 tegra_dsi_writel(dsi
, value
, DSI_TIMEOUT_1
);
679 value
= DSI_TALLY_TA(0) | DSI_TALLY_LRX(0) | DSI_TALLY_HTX(0);
680 tegra_dsi_writel(dsi
, value
, DSI_TO_TALLY
);
683 tegra_dsi_set_timeout(dsi
->slave
, bclk
, vrefresh
);
686 static void tegra_dsi_disable(struct tegra_dsi
*dsi
)
691 tegra_dsi_ganged_disable(dsi
->slave
);
692 tegra_dsi_ganged_disable(dsi
);
695 value
= tegra_dsi_readl(dsi
, DSI_POWER_CONTROL
);
696 value
&= ~DSI_POWER_CONTROL_ENABLE
;
697 tegra_dsi_writel(dsi
, value
, DSI_POWER_CONTROL
);
700 tegra_dsi_disable(dsi
->slave
);
702 usleep_range(5000, 10000);
705 static void tegra_dsi_soft_reset(struct tegra_dsi
*dsi
)
709 value
= tegra_dsi_readl(dsi
, DSI_POWER_CONTROL
);
710 value
&= ~DSI_POWER_CONTROL_ENABLE
;
711 tegra_dsi_writel(dsi
, value
, DSI_POWER_CONTROL
);
713 usleep_range(300, 1000);
715 value
= tegra_dsi_readl(dsi
, DSI_POWER_CONTROL
);
716 value
|= DSI_POWER_CONTROL_ENABLE
;
717 tegra_dsi_writel(dsi
, value
, DSI_POWER_CONTROL
);
719 usleep_range(300, 1000);
721 value
= tegra_dsi_readl(dsi
, DSI_TRIGGER
);
723 tegra_dsi_writel(dsi
, 0, DSI_TRIGGER
);
726 tegra_dsi_soft_reset(dsi
->slave
);
729 static void tegra_dsi_connector_dpms(struct drm_connector
*connector
, int mode
)
733 static void tegra_dsi_connector_reset(struct drm_connector
*connector
)
735 struct tegra_dsi_state
*state
;
737 kfree(connector
->state
);
738 connector
->state
= NULL
;
740 state
= kzalloc(sizeof(*state
), GFP_KERNEL
);
742 connector
->state
= &state
->base
;
745 static struct drm_connector_state
*
746 tegra_dsi_connector_duplicate_state(struct drm_connector
*connector
)
748 struct tegra_dsi_state
*state
= to_dsi_state(connector
->state
);
749 struct tegra_dsi_state
*copy
;
751 copy
= kmemdup(state
, sizeof(*state
), GFP_KERNEL
);
758 static const struct drm_connector_funcs tegra_dsi_connector_funcs
= {
759 .dpms
= tegra_dsi_connector_dpms
,
760 .reset
= tegra_dsi_connector_reset
,
761 .detect
= tegra_output_connector_detect
,
762 .fill_modes
= drm_helper_probe_single_connector_modes
,
763 .destroy
= tegra_output_connector_destroy
,
764 .atomic_duplicate_state
= tegra_dsi_connector_duplicate_state
,
765 .atomic_destroy_state
= drm_atomic_helper_connector_destroy_state
,
768 static enum drm_mode_status
769 tegra_dsi_connector_mode_valid(struct drm_connector
*connector
,
770 struct drm_display_mode
*mode
)
775 static const struct drm_connector_helper_funcs tegra_dsi_connector_helper_funcs
= {
776 .get_modes
= tegra_output_connector_get_modes
,
777 .mode_valid
= tegra_dsi_connector_mode_valid
,
778 .best_encoder
= tegra_output_connector_best_encoder
,
781 static const struct drm_encoder_funcs tegra_dsi_encoder_funcs
= {
782 .destroy
= tegra_output_encoder_destroy
,
785 static void tegra_dsi_encoder_dpms(struct drm_encoder
*encoder
, int mode
)
789 static void tegra_dsi_encoder_prepare(struct drm_encoder
*encoder
)
793 static void tegra_dsi_encoder_commit(struct drm_encoder
*encoder
)
797 static void tegra_dsi_encoder_mode_set(struct drm_encoder
*encoder
,
798 struct drm_display_mode
*mode
,
799 struct drm_display_mode
*adjusted
)
801 struct tegra_output
*output
= encoder_to_output(encoder
);
802 struct tegra_dc
*dc
= to_tegra_dc(encoder
->crtc
);
803 struct tegra_dsi
*dsi
= to_dsi(output
);
804 struct tegra_dsi_state
*state
;
807 state
= tegra_dsi_get_state(dsi
);
809 tegra_dsi_set_timeout(dsi
, state
->bclk
, state
->vrefresh
);
812 * The D-PHY timing fields are expressed in byte-clock cycles, so
813 * multiply the period by 8.
815 tegra_dsi_set_phy_timing(dsi
, state
->period
* 8, &state
->timing
);
818 drm_panel_prepare(output
->panel
);
820 tegra_dsi_configure(dsi
, dc
->pipe
, mode
);
822 /* enable display controller */
823 value
= tegra_dc_readl(dc
, DC_DISP_DISP_WIN_OPTIONS
);
825 tegra_dc_writel(dc
, value
, DC_DISP_DISP_WIN_OPTIONS
);
829 /* enable DSI controller */
830 tegra_dsi_enable(dsi
);
833 drm_panel_enable(output
->panel
);
838 static void tegra_dsi_encoder_disable(struct drm_encoder
*encoder
)
840 struct tegra_output
*output
= encoder_to_output(encoder
);
841 struct tegra_dc
*dc
= to_tegra_dc(encoder
->crtc
);
842 struct tegra_dsi
*dsi
= to_dsi(output
);
847 drm_panel_disable(output
->panel
);
849 tegra_dsi_video_disable(dsi
);
852 * The following accesses registers of the display controller, so make
853 * sure it's only executed when the output is attached to one.
856 value
= tegra_dc_readl(dc
, DC_DISP_DISP_WIN_OPTIONS
);
857 value
&= ~DSI_ENABLE
;
858 tegra_dc_writel(dc
, value
, DC_DISP_DISP_WIN_OPTIONS
);
863 err
= tegra_dsi_wait_idle(dsi
, 100);
865 dev_dbg(dsi
->dev
, "failed to idle DSI: %d\n", err
);
867 tegra_dsi_soft_reset(dsi
);
870 drm_panel_unprepare(output
->panel
);
872 tegra_dsi_disable(dsi
);
878 tegra_dsi_encoder_atomic_check(struct drm_encoder
*encoder
,
879 struct drm_crtc_state
*crtc_state
,
880 struct drm_connector_state
*conn_state
)
882 struct tegra_output
*output
= encoder_to_output(encoder
);
883 struct tegra_dsi_state
*state
= to_dsi_state(conn_state
);
884 struct tegra_dc
*dc
= to_tegra_dc(conn_state
->crtc
);
885 struct tegra_dsi
*dsi
= to_dsi(output
);
890 state
->pclk
= crtc_state
->mode
.clock
* 1000;
892 err
= tegra_dsi_get_muldiv(dsi
->format
, &state
->mul
, &state
->div
);
896 state
->lanes
= tegra_dsi_get_lanes(dsi
);
898 err
= tegra_dsi_get_format(dsi
->format
, &state
->format
);
902 state
->vrefresh
= drm_mode_vrefresh(&crtc_state
->mode
);
904 /* compute byte clock */
905 state
->bclk
= (state
->pclk
* state
->mul
) / (state
->div
* state
->lanes
);
907 DRM_DEBUG_KMS("mul: %u, div: %u, lanes: %u\n", state
->mul
, state
->div
,
909 DRM_DEBUG_KMS("format: %u, vrefresh: %u\n", state
->format
,
911 DRM_DEBUG_KMS("bclk: %lu\n", state
->bclk
);
914 * Compute bit clock and round up to the next MHz.
916 plld
= DIV_ROUND_UP(state
->bclk
* 8, USEC_PER_SEC
) * USEC_PER_SEC
;
917 state
->period
= DIV_ROUND_CLOSEST(NSEC_PER_SEC
, plld
);
919 err
= mipi_dphy_timing_get_default(&state
->timing
, state
->period
);
923 err
= mipi_dphy_timing_validate(&state
->timing
, state
->period
);
925 dev_err(dsi
->dev
, "failed to validate D-PHY timing: %d\n", err
);
930 * We divide the frequency by two here, but we make up for that by
931 * setting the shift clock divider (further below) to half of the
937 * Derive pixel clock from bit clock using the shift clock divider.
938 * Note that this is only half of what we would expect, but we need
939 * that to make up for the fact that we divided the bit clock by a
940 * factor of two above.
942 * It's not clear exactly why this is necessary, but the display is
943 * not working properly otherwise. Perhaps the PLLs cannot generate
944 * frequencies sufficiently high.
946 scdiv
= ((8 * state
->mul
) / (state
->div
* state
->lanes
)) - 2;
948 err
= tegra_dc_state_setup_clock(dc
, crtc_state
, dsi
->clk_parent
,
951 dev_err(output
->dev
, "failed to setup CRTC state: %d\n", err
);
958 static const struct drm_encoder_helper_funcs tegra_dsi_encoder_helper_funcs
= {
959 .dpms
= tegra_dsi_encoder_dpms
,
960 .prepare
= tegra_dsi_encoder_prepare
,
961 .commit
= tegra_dsi_encoder_commit
,
962 .mode_set
= tegra_dsi_encoder_mode_set
,
963 .disable
= tegra_dsi_encoder_disable
,
964 .atomic_check
= tegra_dsi_encoder_atomic_check
,
967 static int tegra_dsi_pad_enable(struct tegra_dsi
*dsi
)
971 value
= DSI_PAD_CONTROL_VS1_PULLDN(0) | DSI_PAD_CONTROL_VS1_PDIO(0);
972 tegra_dsi_writel(dsi
, value
, DSI_PAD_CONTROL_0
);
977 static int tegra_dsi_pad_calibrate(struct tegra_dsi
*dsi
)
981 tegra_dsi_writel(dsi
, 0, DSI_PAD_CONTROL_0
);
982 tegra_dsi_writel(dsi
, 0, DSI_PAD_CONTROL_1
);
983 tegra_dsi_writel(dsi
, 0, DSI_PAD_CONTROL_2
);
984 tegra_dsi_writel(dsi
, 0, DSI_PAD_CONTROL_3
);
985 tegra_dsi_writel(dsi
, 0, DSI_PAD_CONTROL_4
);
987 /* start calibration */
988 tegra_dsi_pad_enable(dsi
);
990 value
= DSI_PAD_SLEW_UP(0x7) | DSI_PAD_SLEW_DN(0x7) |
991 DSI_PAD_LP_UP(0x1) | DSI_PAD_LP_DN(0x1) |
992 DSI_PAD_OUT_CLK(0x0);
993 tegra_dsi_writel(dsi
, value
, DSI_PAD_CONTROL_2
);
995 return tegra_mipi_calibrate(dsi
->mipi
);
998 static int tegra_dsi_init(struct host1x_client
*client
)
1000 struct drm_device
*drm
= dev_get_drvdata(client
->parent
);
1001 struct tegra_dsi
*dsi
= host1x_client_to_dsi(client
);
1004 reset_control_deassert(dsi
->rst
);
1006 err
= tegra_dsi_pad_calibrate(dsi
);
1008 dev_err(dsi
->dev
, "MIPI calibration failed: %d\n", err
);
1012 /* Gangsters must not register their own outputs. */
1014 dsi
->output
.dev
= client
->dev
;
1016 drm_connector_init(drm
, &dsi
->output
.connector
,
1017 &tegra_dsi_connector_funcs
,
1018 DRM_MODE_CONNECTOR_DSI
);
1019 drm_connector_helper_add(&dsi
->output
.connector
,
1020 &tegra_dsi_connector_helper_funcs
);
1021 dsi
->output
.connector
.dpms
= DRM_MODE_DPMS_OFF
;
1023 drm_encoder_init(drm
, &dsi
->output
.encoder
,
1024 &tegra_dsi_encoder_funcs
,
1025 DRM_MODE_ENCODER_DSI
);
1026 drm_encoder_helper_add(&dsi
->output
.encoder
,
1027 &tegra_dsi_encoder_helper_funcs
);
1029 drm_mode_connector_attach_encoder(&dsi
->output
.connector
,
1030 &dsi
->output
.encoder
);
1031 drm_connector_register(&dsi
->output
.connector
);
1033 err
= tegra_output_init(drm
, &dsi
->output
);
1035 dev_err(client
->dev
,
1036 "failed to initialize output: %d\n",
1041 dsi
->output
.encoder
.possible_crtcs
= 0x3;
1044 if (IS_ENABLED(CONFIG_DEBUG_FS
)) {
1045 err
= tegra_dsi_debugfs_init(dsi
, drm
->primary
);
1047 dev_err(dsi
->dev
, "debugfs setup failed: %d\n", err
);
1053 reset_control_assert(dsi
->rst
);
1057 static int tegra_dsi_exit(struct host1x_client
*client
)
1059 struct tegra_dsi
*dsi
= host1x_client_to_dsi(client
);
1061 tegra_output_exit(&dsi
->output
);
1063 if (IS_ENABLED(CONFIG_DEBUG_FS
))
1064 tegra_dsi_debugfs_exit(dsi
);
1066 reset_control_assert(dsi
->rst
);
1071 static const struct host1x_client_ops dsi_client_ops
= {
1072 .init
= tegra_dsi_init
,
1073 .exit
= tegra_dsi_exit
,
1076 static int tegra_dsi_setup_clocks(struct tegra_dsi
*dsi
)
1081 parent
= clk_get_parent(dsi
->clk
);
1085 err
= clk_set_parent(parent
, dsi
->clk_parent
);
1092 static const char * const error_report
[16] = {
1096 "Escape Mode Entry Command Error",
1097 "Low-Power Transmit Sync Error",
1098 "Peripheral Timeout Error",
1099 "False Control Error",
1100 "Contention Detected",
1101 "ECC Error, single-bit",
1102 "ECC Error, multi-bit",
1104 "DSI Data Type Not Recognized",
1105 "DSI VC ID Invalid",
1106 "Invalid Transmission Length",
1108 "DSI Protocol Violation",
1111 static ssize_t
tegra_dsi_read_response(struct tegra_dsi
*dsi
,
1112 const struct mipi_dsi_msg
*msg
,
1115 u8
*rx
= msg
->rx_buf
;
1116 unsigned int i
, j
, k
;
1121 /* read and parse packet header */
1122 value
= tegra_dsi_readl(dsi
, DSI_RD_DATA
);
1124 switch (value
& 0x3f) {
1125 case MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT
:
1126 errors
= (value
>> 8) & 0xffff;
1127 dev_dbg(dsi
->dev
, "Acknowledge and error report: %04x\n",
1129 for (i
= 0; i
< ARRAY_SIZE(error_report
); i
++)
1130 if (errors
& BIT(i
))
1131 dev_dbg(dsi
->dev
, " %2u: %s\n", i
,
1135 case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE
:
1136 rx
[0] = (value
>> 8) & 0xff;
1140 case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE
:
1141 rx
[0] = (value
>> 8) & 0xff;
1142 rx
[1] = (value
>> 16) & 0xff;
1146 case MIPI_DSI_RX_DCS_LONG_READ_RESPONSE
:
1147 size
= ((value
>> 8) & 0xff00) | ((value
>> 8) & 0xff);
1150 case MIPI_DSI_RX_GENERIC_LONG_READ_RESPONSE
:
1151 size
= ((value
>> 8) & 0xff00) | ((value
>> 8) & 0xff);
1155 dev_err(dsi
->dev
, "unhandled response type: %02x\n",
1160 size
= min(size
, msg
->rx_len
);
1162 if (msg
->rx_buf
&& size
> 0) {
1163 for (i
= 0, j
= 0; i
< count
- 1; i
++, j
+= 4) {
1164 u8
*rx
= msg
->rx_buf
+ j
;
1166 value
= tegra_dsi_readl(dsi
, DSI_RD_DATA
);
1168 for (k
= 0; k
< 4 && (j
+ k
) < msg
->rx_len
; k
++)
1169 rx
[j
+ k
] = (value
>> (k
<< 3)) & 0xff;
1176 static int tegra_dsi_transmit(struct tegra_dsi
*dsi
, unsigned long timeout
)
1178 tegra_dsi_writel(dsi
, DSI_TRIGGER_HOST
, DSI_TRIGGER
);
1180 timeout
= jiffies
+ msecs_to_jiffies(timeout
);
1182 while (time_before(jiffies
, timeout
)) {
1183 u32 value
= tegra_dsi_readl(dsi
, DSI_TRIGGER
);
1184 if ((value
& DSI_TRIGGER_HOST
) == 0)
1187 usleep_range(1000, 2000);
1190 DRM_DEBUG_KMS("timeout waiting for transmission to complete\n");
1194 static int tegra_dsi_wait_for_response(struct tegra_dsi
*dsi
,
1195 unsigned long timeout
)
1197 timeout
= jiffies
+ msecs_to_jiffies(250);
1199 while (time_before(jiffies
, timeout
)) {
1200 u32 value
= tegra_dsi_readl(dsi
, DSI_STATUS
);
1201 u8 count
= value
& 0x1f;
1206 usleep_range(1000, 2000);
1209 DRM_DEBUG_KMS("peripheral returned no data\n");
1213 static void tegra_dsi_writesl(struct tegra_dsi
*dsi
, unsigned long offset
,
1214 const void *buffer
, size_t size
)
1216 const u8
*buf
= buffer
;
1220 for (j
= 0; j
< size
; j
+= 4) {
1223 for (i
= 0; i
< 4 && j
+ i
< size
; i
++)
1224 value
|= buf
[j
+ i
] << (i
<< 3);
1226 tegra_dsi_writel(dsi
, value
, DSI_WR_DATA
);
1230 static ssize_t
tegra_dsi_host_transfer(struct mipi_dsi_host
*host
,
1231 const struct mipi_dsi_msg
*msg
)
1233 struct tegra_dsi
*dsi
= host_to_tegra(host
);
1234 struct mipi_dsi_packet packet
;
1240 err
= mipi_dsi_create_packet(&packet
, msg
);
1244 header
= packet
.header
;
1246 /* maximum FIFO depth is 1920 words */
1247 if (packet
.size
> dsi
->video_fifo_depth
* 4)
1250 /* reset underflow/overflow flags */
1251 value
= tegra_dsi_readl(dsi
, DSI_STATUS
);
1252 if (value
& (DSI_STATUS_UNDERFLOW
| DSI_STATUS_OVERFLOW
)) {
1253 value
= DSI_HOST_CONTROL_FIFO_RESET
;
1254 tegra_dsi_writel(dsi
, value
, DSI_HOST_CONTROL
);
1255 usleep_range(10, 20);
1258 value
= tegra_dsi_readl(dsi
, DSI_POWER_CONTROL
);
1259 value
|= DSI_POWER_CONTROL_ENABLE
;
1260 tegra_dsi_writel(dsi
, value
, DSI_POWER_CONTROL
);
1262 usleep_range(5000, 10000);
1264 value
= DSI_HOST_CONTROL_CRC_RESET
| DSI_HOST_CONTROL_TX_TRIG_HOST
|
1265 DSI_HOST_CONTROL_CS
| DSI_HOST_CONTROL_ECC
;
1267 if ((msg
->flags
& MIPI_DSI_MSG_USE_LPM
) == 0)
1268 value
|= DSI_HOST_CONTROL_HS
;
1271 * The host FIFO has a maximum of 64 words, so larger transmissions
1272 * need to use the video FIFO.
1274 if (packet
.size
> dsi
->host_fifo_depth
* 4)
1275 value
|= DSI_HOST_CONTROL_FIFO_SEL
;
1277 tegra_dsi_writel(dsi
, value
, DSI_HOST_CONTROL
);
1280 * For reads and messages with explicitly requested ACK, generate a
1281 * BTA sequence after the transmission of the packet.
1283 if ((msg
->flags
& MIPI_DSI_MSG_REQ_ACK
) ||
1284 (msg
->rx_buf
&& msg
->rx_len
> 0)) {
1285 value
= tegra_dsi_readl(dsi
, DSI_HOST_CONTROL
);
1286 value
|= DSI_HOST_CONTROL_PKT_BTA
;
1287 tegra_dsi_writel(dsi
, value
, DSI_HOST_CONTROL
);
1290 value
= DSI_CONTROL_LANES(0) | DSI_CONTROL_HOST_ENABLE
;
1291 tegra_dsi_writel(dsi
, value
, DSI_CONTROL
);
1293 /* write packet header, ECC is generated by hardware */
1294 value
= header
[2] << 16 | header
[1] << 8 | header
[0];
1295 tegra_dsi_writel(dsi
, value
, DSI_WR_DATA
);
1297 /* write payload (if any) */
1298 if (packet
.payload_length
> 0)
1299 tegra_dsi_writesl(dsi
, DSI_WR_DATA
, packet
.payload
,
1300 packet
.payload_length
);
1302 err
= tegra_dsi_transmit(dsi
, 250);
1306 if ((msg
->flags
& MIPI_DSI_MSG_REQ_ACK
) ||
1307 (msg
->rx_buf
&& msg
->rx_len
> 0)) {
1308 err
= tegra_dsi_wait_for_response(dsi
, 250);
1314 value
= tegra_dsi_readl(dsi
, DSI_RD_DATA
);
1318 dev_dbg(dsi->dev, "ACK\n");
1324 dev_dbg(dsi->dev, "ESCAPE\n");
1329 dev_err(dsi
->dev
, "unknown status: %08x\n", value
);
1334 err
= tegra_dsi_read_response(dsi
, msg
, count
);
1337 "failed to parse response: %zd\n",
1341 * For read commands, return the number of
1342 * bytes returned by the peripheral.
1349 * For write commands, we have transmitted the 4-byte header
1350 * plus the variable-length payload.
1352 count
= 4 + packet
.payload_length
;
1358 static int tegra_dsi_ganged_setup(struct tegra_dsi
*dsi
)
1363 /* make sure both DSI controllers share the same PLL */
1364 parent
= clk_get_parent(dsi
->slave
->clk
);
1368 err
= clk_set_parent(parent
, dsi
->clk_parent
);
1375 static int tegra_dsi_host_attach(struct mipi_dsi_host
*host
,
1376 struct mipi_dsi_device
*device
)
1378 struct tegra_dsi
*dsi
= host_to_tegra(host
);
1380 dsi
->flags
= device
->mode_flags
;
1381 dsi
->format
= device
->format
;
1382 dsi
->lanes
= device
->lanes
;
1387 dev_dbg(dsi
->dev
, "attaching dual-channel device %s\n",
1388 dev_name(&device
->dev
));
1390 err
= tegra_dsi_ganged_setup(dsi
);
1392 dev_err(dsi
->dev
, "failed to set up ganged mode: %d\n",
1399 * Slaves don't have a panel associated with them, so they provide
1400 * merely the second channel.
1403 struct tegra_output
*output
= &dsi
->output
;
1405 output
->panel
= of_drm_find_panel(device
->dev
.of_node
);
1406 if (output
->panel
&& output
->connector
.dev
) {
1407 drm_panel_attach(output
->panel
, &output
->connector
);
1408 drm_helper_hpd_irq_event(output
->connector
.dev
);
1415 static int tegra_dsi_host_detach(struct mipi_dsi_host
*host
,
1416 struct mipi_dsi_device
*device
)
1418 struct tegra_dsi
*dsi
= host_to_tegra(host
);
1419 struct tegra_output
*output
= &dsi
->output
;
1421 if (output
->panel
&& &device
->dev
== output
->panel
->dev
) {
1422 output
->panel
= NULL
;
1424 if (output
->connector
.dev
)
1425 drm_helper_hpd_irq_event(output
->connector
.dev
);
1431 static const struct mipi_dsi_host_ops tegra_dsi_host_ops
= {
1432 .attach
= tegra_dsi_host_attach
,
1433 .detach
= tegra_dsi_host_detach
,
1434 .transfer
= tegra_dsi_host_transfer
,
1437 static int tegra_dsi_ganged_probe(struct tegra_dsi
*dsi
)
1439 struct device_node
*np
;
1441 np
= of_parse_phandle(dsi
->dev
->of_node
, "nvidia,ganged-mode", 0);
1443 struct platform_device
*gangster
= of_find_device_by_node(np
);
1445 dsi
->slave
= platform_get_drvdata(gangster
);
1449 return -EPROBE_DEFER
;
1451 dsi
->slave
->master
= dsi
;
1457 static int tegra_dsi_probe(struct platform_device
*pdev
)
1459 struct tegra_dsi
*dsi
;
1460 struct resource
*regs
;
1463 dsi
= devm_kzalloc(&pdev
->dev
, sizeof(*dsi
), GFP_KERNEL
);
1467 dsi
->output
.dev
= dsi
->dev
= &pdev
->dev
;
1468 dsi
->video_fifo_depth
= 1920;
1469 dsi
->host_fifo_depth
= 64;
1471 err
= tegra_dsi_ganged_probe(dsi
);
1475 err
= tegra_output_probe(&dsi
->output
);
1479 dsi
->output
.connector
.polled
= DRM_CONNECTOR_POLL_HPD
;
1482 * Assume these values by default. When a DSI peripheral driver
1483 * attaches to the DSI host, the parameters will be taken from
1484 * the attached device.
1486 dsi
->flags
= MIPI_DSI_MODE_VIDEO
;
1487 dsi
->format
= MIPI_DSI_FMT_RGB888
;
1490 dsi
->rst
= devm_reset_control_get(&pdev
->dev
, "dsi");
1491 if (IS_ERR(dsi
->rst
))
1492 return PTR_ERR(dsi
->rst
);
1494 dsi
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
1495 if (IS_ERR(dsi
->clk
)) {
1496 dev_err(&pdev
->dev
, "cannot get DSI clock\n");
1497 err
= PTR_ERR(dsi
->clk
);
1501 err
= clk_prepare_enable(dsi
->clk
);
1503 dev_err(&pdev
->dev
, "cannot enable DSI clock\n");
1507 dsi
->clk_lp
= devm_clk_get(&pdev
->dev
, "lp");
1508 if (IS_ERR(dsi
->clk_lp
)) {
1509 dev_err(&pdev
->dev
, "cannot get low-power clock\n");
1510 err
= PTR_ERR(dsi
->clk_lp
);
1514 err
= clk_prepare_enable(dsi
->clk_lp
);
1516 dev_err(&pdev
->dev
, "cannot enable low-power clock\n");
1520 dsi
->clk_parent
= devm_clk_get(&pdev
->dev
, "parent");
1521 if (IS_ERR(dsi
->clk_parent
)) {
1522 dev_err(&pdev
->dev
, "cannot get parent clock\n");
1523 err
= PTR_ERR(dsi
->clk_parent
);
1524 goto disable_clk_lp
;
1527 dsi
->vdd
= devm_regulator_get(&pdev
->dev
, "avdd-dsi-csi");
1528 if (IS_ERR(dsi
->vdd
)) {
1529 dev_err(&pdev
->dev
, "cannot get VDD supply\n");
1530 err
= PTR_ERR(dsi
->vdd
);
1531 goto disable_clk_lp
;
1534 err
= regulator_enable(dsi
->vdd
);
1536 dev_err(&pdev
->dev
, "cannot enable VDD supply\n");
1537 goto disable_clk_lp
;
1540 err
= tegra_dsi_setup_clocks(dsi
);
1542 dev_err(&pdev
->dev
, "cannot setup clocks\n");
1546 regs
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1547 dsi
->regs
= devm_ioremap_resource(&pdev
->dev
, regs
);
1548 if (IS_ERR(dsi
->regs
)) {
1549 err
= PTR_ERR(dsi
->regs
);
1553 dsi
->mipi
= tegra_mipi_request(&pdev
->dev
);
1554 if (IS_ERR(dsi
->mipi
)) {
1555 err
= PTR_ERR(dsi
->mipi
);
1559 dsi
->host
.ops
= &tegra_dsi_host_ops
;
1560 dsi
->host
.dev
= &pdev
->dev
;
1562 err
= mipi_dsi_host_register(&dsi
->host
);
1564 dev_err(&pdev
->dev
, "failed to register DSI host: %d\n", err
);
1568 INIT_LIST_HEAD(&dsi
->client
.list
);
1569 dsi
->client
.ops
= &dsi_client_ops
;
1570 dsi
->client
.dev
= &pdev
->dev
;
1572 err
= host1x_client_register(&dsi
->client
);
1574 dev_err(&pdev
->dev
, "failed to register host1x client: %d\n",
1579 platform_set_drvdata(pdev
, dsi
);
1584 mipi_dsi_host_unregister(&dsi
->host
);
1586 tegra_mipi_free(dsi
->mipi
);
1588 regulator_disable(dsi
->vdd
);
1590 clk_disable_unprepare(dsi
->clk_lp
);
1592 clk_disable_unprepare(dsi
->clk
);
1594 reset_control_assert(dsi
->rst
);
1598 static int tegra_dsi_remove(struct platform_device
*pdev
)
1600 struct tegra_dsi
*dsi
= platform_get_drvdata(pdev
);
1603 err
= host1x_client_unregister(&dsi
->client
);
1605 dev_err(&pdev
->dev
, "failed to unregister host1x client: %d\n",
1610 tegra_output_remove(&dsi
->output
);
1612 mipi_dsi_host_unregister(&dsi
->host
);
1613 tegra_mipi_free(dsi
->mipi
);
1615 regulator_disable(dsi
->vdd
);
1616 clk_disable_unprepare(dsi
->clk_lp
);
1617 clk_disable_unprepare(dsi
->clk
);
1618 reset_control_assert(dsi
->rst
);
1623 static const struct of_device_id tegra_dsi_of_match
[] = {
1624 { .compatible
= "nvidia,tegra114-dsi", },
1627 MODULE_DEVICE_TABLE(of
, tegra_dsi_of_match
);
1629 struct platform_driver tegra_dsi_driver
= {
1631 .name
= "tegra-dsi",
1632 .of_match_table
= tegra_dsi_of_match
,
1634 .probe
= tegra_dsi_probe
,
1635 .remove
= tegra_dsi_remove
,