Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (c) 2014 MediaTek Inc.
4 * Author: Jie Qiu <jie.qiu@mediatek.com>
5 */
6
7#include <linux/bitfield.h>
8#include <linux/clk.h>
9#include <linux/component.h>
10#include <linux/debugfs.h>
11#include <linux/interrupt.h>
12#include <linux/kernel.h>
13#include <linux/media-bus-format.h>
14#include <linux/of.h>
15#include <linux/of_graph.h>
16#include <linux/pinctrl/consumer.h>
17#include <linux/platform_device.h>
18#include <linux/soc/mediatek/mtk-mmsys.h>
19#include <linux/types.h>
20
21#include <video/videomode.h>
22
23#include <drm/drm_atomic_helper.h>
24#include <drm/drm_bridge.h>
25#include <drm/drm_bridge_connector.h>
26#include <drm/drm_crtc.h>
27#include <drm/drm_edid.h>
28#include <drm/drm_of.h>
29#include <drm/drm_simple_kms_helper.h>
30
31#include "mtk_ddp_comp.h"
32#include "mtk_disp_drv.h"
33#include "mtk_dpi_regs.h"
34#include "mtk_drm_drv.h"
35
36enum mtk_dpi_out_bit_num {
37 MTK_DPI_OUT_BIT_NUM_8BITS,
38 MTK_DPI_OUT_BIT_NUM_10BITS,
39 MTK_DPI_OUT_BIT_NUM_12BITS,
40 MTK_DPI_OUT_BIT_NUM_16BITS
41};
42
43enum mtk_dpi_out_yc_map {
44 MTK_DPI_OUT_YC_MAP_RGB,
45 MTK_DPI_OUT_YC_MAP_CYCY,
46 MTK_DPI_OUT_YC_MAP_YCYC,
47 MTK_DPI_OUT_YC_MAP_CY,
48 MTK_DPI_OUT_YC_MAP_YC
49};
50
51enum mtk_dpi_out_channel_swap {
52 MTK_DPI_OUT_CHANNEL_SWAP_RGB,
53 MTK_DPI_OUT_CHANNEL_SWAP_GBR,
54 MTK_DPI_OUT_CHANNEL_SWAP_BRG,
55 MTK_DPI_OUT_CHANNEL_SWAP_RBG,
56 MTK_DPI_OUT_CHANNEL_SWAP_GRB,
57 MTK_DPI_OUT_CHANNEL_SWAP_BGR
58};
59
60enum mtk_dpi_out_color_format {
61 MTK_DPI_COLOR_FORMAT_RGB,
62 MTK_DPI_COLOR_FORMAT_YCBCR_422,
63 MTK_DPI_COLOR_FORMAT_YCBCR_444
64};
65
66struct mtk_dpi {
67 struct drm_encoder encoder;
68 struct drm_bridge bridge;
69 struct drm_bridge *next_bridge;
70 struct drm_connector *connector;
71 void __iomem *regs;
72 struct device *dev;
73 struct device *mmsys_dev;
74 struct clk *engine_clk;
75 struct clk *pixel_clk;
76 struct clk *tvd_clk;
77 int irq;
78 struct drm_display_mode mode;
79 const struct mtk_dpi_conf *conf;
80 enum mtk_dpi_out_color_format color_format;
81 enum mtk_dpi_out_yc_map yc_map;
82 enum mtk_dpi_out_bit_num bit_num;
83 enum mtk_dpi_out_channel_swap channel_swap;
84 struct pinctrl *pinctrl;
85 struct pinctrl_state *pins_gpio;
86 struct pinctrl_state *pins_dpi;
87 u32 output_fmt;
88 int refcount;
89};
90
91static inline struct mtk_dpi *bridge_to_dpi(struct drm_bridge *b)
92{
93 return container_of(b, struct mtk_dpi, bridge);
94}
95
96enum mtk_dpi_polarity {
97 MTK_DPI_POLARITY_RISING,
98 MTK_DPI_POLARITY_FALLING,
99};
100
101struct mtk_dpi_polarities {
102 enum mtk_dpi_polarity de_pol;
103 enum mtk_dpi_polarity ck_pol;
104 enum mtk_dpi_polarity hsync_pol;
105 enum mtk_dpi_polarity vsync_pol;
106};
107
108struct mtk_dpi_sync_param {
109 u32 sync_width;
110 u32 front_porch;
111 u32 back_porch;
112 bool shift_half_line;
113};
114
115struct mtk_dpi_yc_limit {
116 u16 y_top;
117 u16 y_bottom;
118 u16 c_top;
119 u16 c_bottom;
120};
121
122struct mtk_dpi_factor {
123 u32 clock;
124 u8 factor;
125};
126
127/**
128 * struct mtk_dpi_conf - Configuration of mediatek dpi.
129 * @dpi_factor: SoC-specific pixel clock PLL factor values.
130 * @num_dpi_factor: Number of pixel clock PLL factor values.
131 * @reg_h_fre_con: Register address of frequency control.
132 * @max_clock_khz: Max clock frequency supported for this SoCs in khz units.
133 * @edge_sel_en: Enable of edge selection.
134 * @output_fmts: Array of supported output formats.
135 * @num_output_fmts: Quantity of supported output formats.
136 * @is_ck_de_pol: Support CK/DE polarity.
137 * @swap_input_support: Support input swap function.
138 * @support_direct_pin: IP supports direct connection to dpi panels.
139 * @dimension_mask: Mask used for HWIDTH, HPORCH, VSYNC_WIDTH and VSYNC_PORCH
140 * (no shift).
141 * @hvsize_mask: Mask of HSIZE and VSIZE mask (no shift).
142 * @channel_swap_shift: Shift value of channel swap.
143 * @yuv422_en_bit: Enable bit of yuv422.
144 * @csc_enable_bit: Enable bit of CSC.
145 * @input_2p_en_bit: Enable bit for input two pixel per round feature.
146 * If present, implies that the feature must be enabled.
147 * @pixels_per_iter: Quantity of transferred pixels per iteration.
148 * @edge_cfg_in_mmsys: If the edge configuration for DPI's output needs to be set in MMSYS.
149 * @clocked_by_hdmi: HDMI IP outputs clock to dpi_pixel_clk input clock, needed
150 * for DPI registers access.
151 * @output_1pixel: Enable outputting one pixel per round; if the input is two pixel per
152 * round, the DPI hardware will internally transform it to 1T1P.
153 */
154struct mtk_dpi_conf {
155 const struct mtk_dpi_factor *dpi_factor;
156 const u8 num_dpi_factor;
157 u32 reg_h_fre_con;
158 u32 max_clock_khz;
159 bool edge_sel_en;
160 const u32 *output_fmts;
161 u32 num_output_fmts;
162 bool is_ck_de_pol;
163 bool swap_input_support;
164 bool support_direct_pin;
165 u32 dimension_mask;
166 u32 hvsize_mask;
167 u32 channel_swap_shift;
168 u32 yuv422_en_bit;
169 u32 csc_enable_bit;
170 u32 input_2p_en_bit;
171 u32 pixels_per_iter;
172 bool edge_cfg_in_mmsys;
173 bool clocked_by_hdmi;
174 bool output_1pixel;
175};
176
177static void mtk_dpi_mask(struct mtk_dpi *dpi, u32 offset, u32 val, u32 mask)
178{
179 u32 tmp = readl(dpi->regs + offset) & ~mask;
180
181 tmp |= (val & mask);
182 writel(tmp, dpi->regs + offset);
183}
184
185static void mtk_dpi_test_pattern_en(struct mtk_dpi *dpi, u8 type, bool enable)
186{
187 u32 val;
188
189 if (enable)
190 val = FIELD_PREP(DPI_PAT_SEL, type) | DPI_PAT_EN;
191 else
192 val = 0;
193
194 mtk_dpi_mask(dpi, DPI_PATTERN0, val, DPI_PAT_SEL | DPI_PAT_EN);
195}
196
197static void mtk_dpi_sw_reset(struct mtk_dpi *dpi, bool reset)
198{
199 mtk_dpi_mask(dpi, DPI_RET, reset ? RST : 0, RST);
200}
201
202static void mtk_dpi_enable(struct mtk_dpi *dpi)
203{
204 mtk_dpi_mask(dpi, DPI_EN, EN, EN);
205}
206
207static void mtk_dpi_disable(struct mtk_dpi *dpi)
208{
209 mtk_dpi_mask(dpi, DPI_EN, 0, EN);
210}
211
212static void mtk_dpi_config_hsync(struct mtk_dpi *dpi,
213 struct mtk_dpi_sync_param *sync)
214{
215 mtk_dpi_mask(dpi, DPI_TGEN_HWIDTH, sync->sync_width << HPW,
216 dpi->conf->dimension_mask << HPW);
217 mtk_dpi_mask(dpi, DPI_TGEN_HPORCH, sync->back_porch << HBP,
218 dpi->conf->dimension_mask << HBP);
219 mtk_dpi_mask(dpi, DPI_TGEN_HPORCH, sync->front_porch << HFP,
220 dpi->conf->dimension_mask << HFP);
221}
222
223static void mtk_dpi_config_vsync(struct mtk_dpi *dpi,
224 struct mtk_dpi_sync_param *sync,
225 u32 width_addr, u32 porch_addr)
226{
227 mtk_dpi_mask(dpi, width_addr,
228 sync->shift_half_line << VSYNC_HALF_LINE_SHIFT,
229 VSYNC_HALF_LINE_MASK);
230 mtk_dpi_mask(dpi, width_addr,
231 sync->sync_width << VSYNC_WIDTH_SHIFT,
232 dpi->conf->dimension_mask << VSYNC_WIDTH_SHIFT);
233 mtk_dpi_mask(dpi, porch_addr,
234 sync->back_porch << VSYNC_BACK_PORCH_SHIFT,
235 dpi->conf->dimension_mask << VSYNC_BACK_PORCH_SHIFT);
236 mtk_dpi_mask(dpi, porch_addr,
237 sync->front_porch << VSYNC_FRONT_PORCH_SHIFT,
238 dpi->conf->dimension_mask << VSYNC_FRONT_PORCH_SHIFT);
239}
240
241static void mtk_dpi_config_vsync_lodd(struct mtk_dpi *dpi,
242 struct mtk_dpi_sync_param *sync)
243{
244 mtk_dpi_config_vsync(dpi, sync, DPI_TGEN_VWIDTH, DPI_TGEN_VPORCH);
245}
246
247static void mtk_dpi_config_vsync_leven(struct mtk_dpi *dpi,
248 struct mtk_dpi_sync_param *sync)
249{
250 mtk_dpi_config_vsync(dpi, sync, DPI_TGEN_VWIDTH_LEVEN,
251 DPI_TGEN_VPORCH_LEVEN);
252}
253
254static void mtk_dpi_config_vsync_rodd(struct mtk_dpi *dpi,
255 struct mtk_dpi_sync_param *sync)
256{
257 mtk_dpi_config_vsync(dpi, sync, DPI_TGEN_VWIDTH_RODD,
258 DPI_TGEN_VPORCH_RODD);
259}
260
261static void mtk_dpi_config_vsync_reven(struct mtk_dpi *dpi,
262 struct mtk_dpi_sync_param *sync)
263{
264 mtk_dpi_config_vsync(dpi, sync, DPI_TGEN_VWIDTH_REVEN,
265 DPI_TGEN_VPORCH_REVEN);
266}
267
268static void mtk_dpi_config_pol(struct mtk_dpi *dpi,
269 struct mtk_dpi_polarities *dpi_pol)
270{
271 unsigned int pol;
272 unsigned int mask;
273
274 mask = HSYNC_POL | VSYNC_POL;
275 pol = (dpi_pol->hsync_pol == MTK_DPI_POLARITY_RISING ? 0 : HSYNC_POL) |
276 (dpi_pol->vsync_pol == MTK_DPI_POLARITY_RISING ? 0 : VSYNC_POL);
277 if (dpi->conf->is_ck_de_pol) {
278 mask |= CK_POL | DE_POL;
279 pol |= (dpi_pol->ck_pol == MTK_DPI_POLARITY_RISING ?
280 0 : CK_POL) |
281 (dpi_pol->de_pol == MTK_DPI_POLARITY_RISING ?
282 0 : DE_POL);
283 }
284
285 mtk_dpi_mask(dpi, DPI_OUTPUT_SETTING, pol, mask);
286}
287
288static void mtk_dpi_config_3d(struct mtk_dpi *dpi, bool en_3d)
289{
290 mtk_dpi_mask(dpi, DPI_CON, en_3d ? TDFP_EN : 0, TDFP_EN);
291}
292
293static void mtk_dpi_config_interface(struct mtk_dpi *dpi, bool inter)
294{
295 mtk_dpi_mask(dpi, DPI_CON, inter ? INTL_EN : 0, INTL_EN);
296}
297
298static void mtk_dpi_config_fb_size(struct mtk_dpi *dpi, u32 width, u32 height)
299{
300 mtk_dpi_mask(dpi, DPI_SIZE, width << HSIZE,
301 dpi->conf->hvsize_mask << HSIZE);
302 mtk_dpi_mask(dpi, DPI_SIZE, height << VSIZE,
303 dpi->conf->hvsize_mask << VSIZE);
304}
305
306static void mtk_dpi_config_channel_limit(struct mtk_dpi *dpi)
307{
308 struct mtk_dpi_yc_limit limit;
309
310 if (drm_default_rgb_quant_range(&dpi->mode) ==
311 HDMI_QUANTIZATION_RANGE_LIMITED) {
312 limit.y_bottom = 0x10;
313 limit.y_top = 0xfe0;
314 limit.c_bottom = 0x10;
315 limit.c_top = 0xfe0;
316 } else {
317 limit.y_bottom = 0;
318 limit.y_top = 0xfff;
319 limit.c_bottom = 0;
320 limit.c_top = 0xfff;
321 }
322
323 mtk_dpi_mask(dpi, DPI_Y_LIMIT, limit.y_bottom << Y_LIMINT_BOT,
324 Y_LIMINT_BOT_MASK);
325 mtk_dpi_mask(dpi, DPI_Y_LIMIT, limit.y_top << Y_LIMINT_TOP,
326 Y_LIMINT_TOP_MASK);
327 mtk_dpi_mask(dpi, DPI_C_LIMIT, limit.c_bottom << C_LIMIT_BOT,
328 C_LIMIT_BOT_MASK);
329 mtk_dpi_mask(dpi, DPI_C_LIMIT, limit.c_top << C_LIMIT_TOP,
330 C_LIMIT_TOP_MASK);
331}
332
333static void mtk_dpi_config_bit_num(struct mtk_dpi *dpi,
334 enum mtk_dpi_out_bit_num num)
335{
336 u32 val;
337
338 switch (num) {
339 case MTK_DPI_OUT_BIT_NUM_8BITS:
340 val = OUT_BIT_8;
341 break;
342 case MTK_DPI_OUT_BIT_NUM_10BITS:
343 val = OUT_BIT_10;
344 break;
345 case MTK_DPI_OUT_BIT_NUM_12BITS:
346 val = OUT_BIT_12;
347 break;
348 case MTK_DPI_OUT_BIT_NUM_16BITS:
349 val = OUT_BIT_16;
350 break;
351 default:
352 val = OUT_BIT_8;
353 break;
354 }
355 mtk_dpi_mask(dpi, DPI_OUTPUT_SETTING, val << OUT_BIT,
356 OUT_BIT_MASK);
357}
358
359static void mtk_dpi_config_yc_map(struct mtk_dpi *dpi,
360 enum mtk_dpi_out_yc_map map)
361{
362 u32 val;
363
364 switch (map) {
365 case MTK_DPI_OUT_YC_MAP_RGB:
366 val = YC_MAP_RGB;
367 break;
368 case MTK_DPI_OUT_YC_MAP_CYCY:
369 val = YC_MAP_CYCY;
370 break;
371 case MTK_DPI_OUT_YC_MAP_YCYC:
372 val = YC_MAP_YCYC;
373 break;
374 case MTK_DPI_OUT_YC_MAP_CY:
375 val = YC_MAP_CY;
376 break;
377 case MTK_DPI_OUT_YC_MAP_YC:
378 val = YC_MAP_YC;
379 break;
380 default:
381 val = YC_MAP_RGB;
382 break;
383 }
384
385 mtk_dpi_mask(dpi, DPI_OUTPUT_SETTING, val << YC_MAP, YC_MAP_MASK);
386}
387
388static void mtk_dpi_config_channel_swap(struct mtk_dpi *dpi,
389 enum mtk_dpi_out_channel_swap swap)
390{
391 u32 val;
392
393 switch (swap) {
394 case MTK_DPI_OUT_CHANNEL_SWAP_RGB:
395 val = SWAP_RGB;
396 break;
397 case MTK_DPI_OUT_CHANNEL_SWAP_GBR:
398 val = SWAP_GBR;
399 break;
400 case MTK_DPI_OUT_CHANNEL_SWAP_BRG:
401 val = SWAP_BRG;
402 break;
403 case MTK_DPI_OUT_CHANNEL_SWAP_RBG:
404 val = SWAP_RBG;
405 break;
406 case MTK_DPI_OUT_CHANNEL_SWAP_GRB:
407 val = SWAP_GRB;
408 break;
409 case MTK_DPI_OUT_CHANNEL_SWAP_BGR:
410 val = SWAP_BGR;
411 break;
412 default:
413 val = SWAP_RGB;
414 break;
415 }
416
417 mtk_dpi_mask(dpi, DPI_OUTPUT_SETTING,
418 val << dpi->conf->channel_swap_shift,
419 CH_SWAP_MASK << dpi->conf->channel_swap_shift);
420}
421
422static void mtk_dpi_config_yuv422_enable(struct mtk_dpi *dpi, bool enable)
423{
424 mtk_dpi_mask(dpi, DPI_CON, enable ? dpi->conf->yuv422_en_bit : 0,
425 dpi->conf->yuv422_en_bit);
426}
427
428static void mtk_dpi_config_csc_enable(struct mtk_dpi *dpi, bool enable)
429{
430 mtk_dpi_mask(dpi, DPI_CON, enable ? dpi->conf->csc_enable_bit : 0,
431 dpi->conf->csc_enable_bit);
432}
433
434static void mtk_dpi_config_swap_input(struct mtk_dpi *dpi, bool enable)
435{
436 mtk_dpi_mask(dpi, DPI_CON, enable ? IN_RB_SWAP : 0, IN_RB_SWAP);
437}
438
439static void mtk_dpi_config_2n_h_fre(struct mtk_dpi *dpi)
440{
441 if (dpi->conf->reg_h_fre_con)
442 mtk_dpi_mask(dpi, dpi->conf->reg_h_fre_con, H_FRE_2N, H_FRE_2N);
443}
444
445static void mtk_dpi_config_disable_edge(struct mtk_dpi *dpi)
446{
447 if (dpi->conf->edge_sel_en && dpi->conf->reg_h_fre_con)
448 mtk_dpi_mask(dpi, dpi->conf->reg_h_fre_con, 0, EDGE_SEL_EN);
449}
450
451static void mtk_dpi_config_color_format(struct mtk_dpi *dpi,
452 enum mtk_dpi_out_color_format format)
453{
454 mtk_dpi_config_channel_swap(dpi, dpi->channel_swap);
455
456 switch (format) {
457 case MTK_DPI_COLOR_FORMAT_YCBCR_444:
458 mtk_dpi_config_yuv422_enable(dpi, false);
459 mtk_dpi_config_csc_enable(dpi, true);
460 if (dpi->conf->swap_input_support)
461 mtk_dpi_config_swap_input(dpi, false);
462 break;
463 case MTK_DPI_COLOR_FORMAT_YCBCR_422:
464 mtk_dpi_config_yuv422_enable(dpi, true);
465 mtk_dpi_config_csc_enable(dpi, true);
466
467 /*
468 * If height is smaller than 720, we need to use RGB_TO_BT601
469 * to transfer to yuv422. Otherwise, we use RGB_TO_JPEG.
470 */
471 mtk_dpi_mask(dpi, DPI_MATRIX_SET, dpi->mode.hdisplay <= 720 ?
472 MATRIX_SEL_RGB_TO_BT601 : MATRIX_SEL_RGB_TO_JPEG,
473 INT_MATRIX_SEL_MASK);
474 break;
475 default:
476 case MTK_DPI_COLOR_FORMAT_RGB:
477 mtk_dpi_config_yuv422_enable(dpi, false);
478 mtk_dpi_config_csc_enable(dpi, false);
479 if (dpi->conf->swap_input_support)
480 mtk_dpi_config_swap_input(dpi, false);
481 break;
482 }
483}
484
485static void mtk_dpi_dual_edge(struct mtk_dpi *dpi)
486{
487 if ((dpi->output_fmt == MEDIA_BUS_FMT_RGB888_2X12_LE) ||
488 (dpi->output_fmt == MEDIA_BUS_FMT_RGB888_2X12_BE)) {
489 mtk_dpi_mask(dpi, DPI_DDR_SETTING, DDR_EN | DDR_4PHASE,
490 DDR_EN | DDR_4PHASE);
491 mtk_dpi_mask(dpi, DPI_OUTPUT_SETTING,
492 dpi->output_fmt == MEDIA_BUS_FMT_RGB888_2X12_LE ?
493 EDGE_SEL : 0, EDGE_SEL);
494 if (dpi->conf->edge_cfg_in_mmsys)
495 mtk_mmsys_ddp_dpi_fmt_config(dpi->mmsys_dev, MTK_DPI_RGB888_DDR_CON);
496 } else {
497 mtk_dpi_mask(dpi, DPI_DDR_SETTING, DDR_EN | DDR_4PHASE, 0);
498 if (dpi->conf->edge_cfg_in_mmsys)
499 mtk_mmsys_ddp_dpi_fmt_config(dpi->mmsys_dev, MTK_DPI_RGB888_SDR_CON);
500 }
501}
502
503static void mtk_dpi_power_off(struct mtk_dpi *dpi)
504{
505 if (WARN_ON(dpi->refcount == 0))
506 return;
507
508 if (--dpi->refcount != 0)
509 return;
510
511 mtk_dpi_disable(dpi);
512 clk_disable_unprepare(dpi->pixel_clk);
513 clk_disable_unprepare(dpi->tvd_clk);
514 clk_disable_unprepare(dpi->engine_clk);
515}
516
517static int mtk_dpi_power_on(struct mtk_dpi *dpi)
518{
519 int ret;
520
521 if (++dpi->refcount != 1)
522 return 0;
523
524 ret = clk_prepare_enable(dpi->engine_clk);
525 if (ret) {
526 dev_err(dpi->dev, "Failed to enable engine clock: %d\n", ret);
527 goto err_refcount;
528 }
529
530 ret = clk_prepare_enable(dpi->tvd_clk);
531 if (ret) {
532 dev_err(dpi->dev, "Failed to enable tvd pll: %d\n", ret);
533 goto err_engine;
534 }
535
536 ret = clk_prepare_enable(dpi->pixel_clk);
537 if (ret) {
538 dev_err(dpi->dev, "Failed to enable pixel clock: %d\n", ret);
539 goto err_pixel;
540 }
541
542 return 0;
543
544err_pixel:
545 clk_disable_unprepare(dpi->tvd_clk);
546err_engine:
547 clk_disable_unprepare(dpi->engine_clk);
548err_refcount:
549 dpi->refcount--;
550 return ret;
551}
552
553static unsigned int mtk_dpi_calculate_factor(struct mtk_dpi *dpi, int mode_clk)
554{
555 const struct mtk_dpi_factor *dpi_factor = dpi->conf->dpi_factor;
556 int i;
557
558 for (i = 0; i < dpi->conf->num_dpi_factor; i++) {
559 if (mode_clk <= dpi_factor[i].clock)
560 return dpi_factor[i].factor;
561 }
562
563 /* If no match try the lowest possible factor */
564 return dpi_factor[dpi->conf->num_dpi_factor - 1].factor;
565}
566
567static void mtk_dpi_set_pixel_clk(struct mtk_dpi *dpi, struct videomode *vm, int mode_clk)
568{
569 unsigned long pll_rate;
570 unsigned int factor;
571
572 /* let pll_rate can fix the valid range of tvdpll (1G~2GHz) */
573 factor = mtk_dpi_calculate_factor(dpi, mode_clk);
574 pll_rate = vm->pixelclock * factor;
575
576 dev_dbg(dpi->dev, "Want PLL %lu Hz, pixel clock %lu Hz\n",
577 pll_rate, vm->pixelclock);
578
579 clk_set_rate(dpi->tvd_clk, pll_rate);
580 pll_rate = clk_get_rate(dpi->tvd_clk);
581
582 /*
583 * Depending on the IP version, we may output a different amount of
584 * pixels for each iteration: divide the clock by this number and
585 * adjust the display porches accordingly.
586 */
587 vm->pixelclock = pll_rate / factor;
588 vm->pixelclock /= dpi->conf->pixels_per_iter;
589
590 if ((dpi->output_fmt == MEDIA_BUS_FMT_RGB888_2X12_LE) ||
591 (dpi->output_fmt == MEDIA_BUS_FMT_RGB888_2X12_BE))
592 clk_set_rate(dpi->pixel_clk, vm->pixelclock * 2);
593 else
594 clk_set_rate(dpi->pixel_clk, vm->pixelclock);
595
596 vm->pixelclock = clk_get_rate(dpi->pixel_clk);
597
598 dev_dbg(dpi->dev, "Got PLL %lu Hz, pixel clock %lu Hz\n",
599 pll_rate, vm->pixelclock);
600}
601
602static int mtk_dpi_set_display_mode(struct mtk_dpi *dpi,
603 struct drm_display_mode *mode)
604{
605 struct mtk_dpi_polarities dpi_pol;
606 struct mtk_dpi_sync_param hsync;
607 struct mtk_dpi_sync_param vsync_lodd = { 0 };
608 struct mtk_dpi_sync_param vsync_leven = { 0 };
609 struct mtk_dpi_sync_param vsync_rodd = { 0 };
610 struct mtk_dpi_sync_param vsync_reven = { 0 };
611 struct videomode vm = { 0 };
612
613 drm_display_mode_to_videomode(mode, &vm);
614
615 if (!dpi->conf->clocked_by_hdmi)
616 mtk_dpi_set_pixel_clk(dpi, &vm, mode->clock);
617
618 dpi_pol.ck_pol = MTK_DPI_POLARITY_FALLING;
619 dpi_pol.de_pol = MTK_DPI_POLARITY_RISING;
620 dpi_pol.hsync_pol = vm.flags & DISPLAY_FLAGS_HSYNC_HIGH ?
621 MTK_DPI_POLARITY_FALLING : MTK_DPI_POLARITY_RISING;
622 dpi_pol.vsync_pol = vm.flags & DISPLAY_FLAGS_VSYNC_HIGH ?
623 MTK_DPI_POLARITY_FALLING : MTK_DPI_POLARITY_RISING;
624
625 /*
626 * Depending on the IP version, we may output a different amount of
627 * pixels for each iteration: divide the clock by this number and
628 * adjust the display porches accordingly.
629 */
630 hsync.sync_width = vm.hsync_len / dpi->conf->pixels_per_iter;
631 hsync.back_porch = vm.hback_porch / dpi->conf->pixels_per_iter;
632 hsync.front_porch = vm.hfront_porch / dpi->conf->pixels_per_iter;
633
634 hsync.shift_half_line = false;
635 vsync_lodd.sync_width = vm.vsync_len;
636 vsync_lodd.back_porch = vm.vback_porch;
637 vsync_lodd.front_porch = vm.vfront_porch;
638 vsync_lodd.shift_half_line = false;
639
640 if (vm.flags & DISPLAY_FLAGS_INTERLACED &&
641 mode->flags & DRM_MODE_FLAG_3D_MASK) {
642 vsync_leven = vsync_lodd;
643 vsync_rodd = vsync_lodd;
644 vsync_reven = vsync_lodd;
645 vsync_leven.shift_half_line = true;
646 vsync_reven.shift_half_line = true;
647 } else if (vm.flags & DISPLAY_FLAGS_INTERLACED &&
648 !(mode->flags & DRM_MODE_FLAG_3D_MASK)) {
649 vsync_leven = vsync_lodd;
650 vsync_leven.shift_half_line = true;
651 } else if (!(vm.flags & DISPLAY_FLAGS_INTERLACED) &&
652 mode->flags & DRM_MODE_FLAG_3D_MASK) {
653 vsync_rodd = vsync_lodd;
654 }
655 mtk_dpi_sw_reset(dpi, true);
656 mtk_dpi_config_pol(dpi, &dpi_pol);
657
658 mtk_dpi_config_hsync(dpi, &hsync);
659 mtk_dpi_config_vsync_lodd(dpi, &vsync_lodd);
660 mtk_dpi_config_vsync_rodd(dpi, &vsync_rodd);
661 mtk_dpi_config_vsync_leven(dpi, &vsync_leven);
662 mtk_dpi_config_vsync_reven(dpi, &vsync_reven);
663
664 mtk_dpi_config_3d(dpi, !!(mode->flags & DRM_MODE_FLAG_3D_MASK));
665 mtk_dpi_config_interface(dpi, !!(vm.flags &
666 DISPLAY_FLAGS_INTERLACED));
667 if (vm.flags & DISPLAY_FLAGS_INTERLACED)
668 mtk_dpi_config_fb_size(dpi, vm.hactive, vm.vactive >> 1);
669 else
670 mtk_dpi_config_fb_size(dpi, vm.hactive, vm.vactive);
671
672 mtk_dpi_config_channel_limit(dpi);
673 mtk_dpi_config_bit_num(dpi, dpi->bit_num);
674 mtk_dpi_config_channel_swap(dpi, dpi->channel_swap);
675 mtk_dpi_config_color_format(dpi, dpi->color_format);
676 if (dpi->conf->support_direct_pin) {
677 mtk_dpi_config_yc_map(dpi, dpi->yc_map);
678 mtk_dpi_config_2n_h_fre(dpi);
679
680 /* DPI can connect to either an external bridge or the internal HDMI encoder */
681 if (dpi->conf->output_1pixel)
682 mtk_dpi_mask(dpi, DPI_CON, DPI_OUTPUT_1T1P_EN, DPI_OUTPUT_1T1P_EN);
683 else
684 mtk_dpi_dual_edge(dpi);
685
686 mtk_dpi_config_disable_edge(dpi);
687 }
688 if (dpi->conf->input_2p_en_bit) {
689 mtk_dpi_mask(dpi, DPI_CON, dpi->conf->input_2p_en_bit,
690 dpi->conf->input_2p_en_bit);
691 }
692 mtk_dpi_sw_reset(dpi, false);
693
694 return 0;
695}
696
697static u32 *mtk_dpi_bridge_atomic_get_output_bus_fmts(struct drm_bridge *bridge,
698 struct drm_bridge_state *bridge_state,
699 struct drm_crtc_state *crtc_state,
700 struct drm_connector_state *conn_state,
701 unsigned int *num_output_fmts)
702{
703 struct mtk_dpi *dpi = bridge_to_dpi(bridge);
704 u32 *output_fmts;
705
706 *num_output_fmts = 0;
707
708 if (!dpi->conf->output_fmts) {
709 dev_err(dpi->dev, "output_fmts should not be null\n");
710 return NULL;
711 }
712
713 output_fmts = kcalloc(dpi->conf->num_output_fmts, sizeof(*output_fmts),
714 GFP_KERNEL);
715 if (!output_fmts)
716 return NULL;
717
718 *num_output_fmts = dpi->conf->num_output_fmts;
719
720 memcpy(output_fmts, dpi->conf->output_fmts,
721 sizeof(*output_fmts) * dpi->conf->num_output_fmts);
722
723 return output_fmts;
724}
725
726static u32 *mtk_dpi_bridge_atomic_get_input_bus_fmts(struct drm_bridge *bridge,
727 struct drm_bridge_state *bridge_state,
728 struct drm_crtc_state *crtc_state,
729 struct drm_connector_state *conn_state,
730 u32 output_fmt,
731 unsigned int *num_input_fmts)
732{
733 u32 *input_fmts;
734
735 *num_input_fmts = 0;
736
737 input_fmts = kcalloc(1, sizeof(*input_fmts),
738 GFP_KERNEL);
739 if (!input_fmts)
740 return NULL;
741
742 *num_input_fmts = 1;
743 input_fmts[0] = MEDIA_BUS_FMT_RGB888_1X24;
744
745 return input_fmts;
746}
747
748static unsigned int mtk_dpi_bus_fmt_bit_num(unsigned int out_bus_format)
749{
750 switch (out_bus_format) {
751 default:
752 case MEDIA_BUS_FMT_RGB888_1X24:
753 case MEDIA_BUS_FMT_BGR888_1X24:
754 case MEDIA_BUS_FMT_RGB888_2X12_LE:
755 case MEDIA_BUS_FMT_RGB888_2X12_BE:
756 case MEDIA_BUS_FMT_YUYV8_1X16:
757 case MEDIA_BUS_FMT_YUV8_1X24:
758 return MTK_DPI_OUT_BIT_NUM_8BITS;
759 case MEDIA_BUS_FMT_RGB101010_1X30:
760 case MEDIA_BUS_FMT_YUYV10_1X20:
761 case MEDIA_BUS_FMT_YUV10_1X30:
762 return MTK_DPI_OUT_BIT_NUM_10BITS;
763 case MEDIA_BUS_FMT_YUYV12_1X24:
764 return MTK_DPI_OUT_BIT_NUM_12BITS;
765 }
766}
767
768static unsigned int mtk_dpi_bus_fmt_channel_swap(unsigned int out_bus_format)
769{
770 switch (out_bus_format) {
771 default:
772 case MEDIA_BUS_FMT_RGB888_1X24:
773 case MEDIA_BUS_FMT_RGB888_2X12_LE:
774 case MEDIA_BUS_FMT_RGB888_2X12_BE:
775 case MEDIA_BUS_FMT_RGB101010_1X30:
776 case MEDIA_BUS_FMT_YUYV8_1X16:
777 case MEDIA_BUS_FMT_YUYV10_1X20:
778 case MEDIA_BUS_FMT_YUYV12_1X24:
779 return MTK_DPI_OUT_CHANNEL_SWAP_RGB;
780 case MEDIA_BUS_FMT_BGR888_1X24:
781 case MEDIA_BUS_FMT_YUV8_1X24:
782 case MEDIA_BUS_FMT_YUV10_1X30:
783 return MTK_DPI_OUT_CHANNEL_SWAP_BGR;
784 }
785}
786
787static unsigned int mtk_dpi_bus_fmt_color_format(unsigned int out_bus_format)
788{
789 switch (out_bus_format) {
790 default:
791 case MEDIA_BUS_FMT_RGB888_1X24:
792 case MEDIA_BUS_FMT_BGR888_1X24:
793 case MEDIA_BUS_FMT_RGB888_2X12_LE:
794 case MEDIA_BUS_FMT_RGB888_2X12_BE:
795 case MEDIA_BUS_FMT_RGB101010_1X30:
796 return MTK_DPI_COLOR_FORMAT_RGB;
797 case MEDIA_BUS_FMT_YUYV8_1X16:
798 case MEDIA_BUS_FMT_YUYV10_1X20:
799 case MEDIA_BUS_FMT_YUYV12_1X24:
800 return MTK_DPI_COLOR_FORMAT_YCBCR_422;
801 case MEDIA_BUS_FMT_YUV8_1X24:
802 case MEDIA_BUS_FMT_YUV10_1X30:
803 return MTK_DPI_COLOR_FORMAT_YCBCR_444;
804 }
805}
806
807static int mtk_dpi_bridge_atomic_check(struct drm_bridge *bridge,
808 struct drm_bridge_state *bridge_state,
809 struct drm_crtc_state *crtc_state,
810 struct drm_connector_state *conn_state)
811{
812 struct mtk_dpi *dpi = bridge_to_dpi(bridge);
813 unsigned int out_bus_format;
814
815 out_bus_format = bridge_state->output_bus_cfg.format;
816
817 if (out_bus_format == MEDIA_BUS_FMT_FIXED)
818 if (dpi->conf->num_output_fmts)
819 out_bus_format = dpi->conf->output_fmts[0];
820
821 dev_dbg(dpi->dev, "input format 0x%04x, output format 0x%04x\n",
822 bridge_state->input_bus_cfg.format,
823 bridge_state->output_bus_cfg.format);
824
825 dpi->output_fmt = out_bus_format;
826 dpi->bit_num = mtk_dpi_bus_fmt_bit_num(out_bus_format);
827 dpi->channel_swap = mtk_dpi_bus_fmt_channel_swap(out_bus_format);
828 dpi->yc_map = MTK_DPI_OUT_YC_MAP_RGB;
829 dpi->color_format = mtk_dpi_bus_fmt_color_format(out_bus_format);
830
831 return 0;
832}
833
834static int mtk_dpi_bridge_attach(struct drm_bridge *bridge,
835 struct drm_encoder *encoder,
836 enum drm_bridge_attach_flags flags)
837{
838 struct mtk_dpi *dpi = bridge_to_dpi(bridge);
839 int ret;
840
841 dpi->next_bridge = devm_drm_of_get_bridge(dpi->dev, dpi->dev->of_node, 1, -1);
842 if (IS_ERR(dpi->next_bridge)) {
843 ret = PTR_ERR(dpi->next_bridge);
844 if (ret == -EPROBE_DEFER)
845 return ret;
846
847 /* Old devicetree has only one endpoint */
848 dpi->next_bridge = devm_drm_of_get_bridge(dpi->dev, dpi->dev->of_node, 0, 0);
849 if (IS_ERR(dpi->next_bridge))
850 return dev_err_probe(dpi->dev, PTR_ERR(dpi->next_bridge),
851 "Failed to get bridge\n");
852 }
853
854 return drm_bridge_attach(encoder, dpi->next_bridge,
855 &dpi->bridge, flags);
856}
857
858static void mtk_dpi_bridge_mode_set(struct drm_bridge *bridge,
859 const struct drm_display_mode *mode,
860 const struct drm_display_mode *adjusted_mode)
861{
862 struct mtk_dpi *dpi = bridge_to_dpi(bridge);
863
864 drm_mode_copy(&dpi->mode, adjusted_mode);
865}
866
867static void mtk_dpi_bridge_disable(struct drm_bridge *bridge)
868{
869 struct mtk_dpi *dpi = bridge_to_dpi(bridge);
870
871 mtk_dpi_power_off(dpi);
872
873 if (dpi->pinctrl && dpi->pins_gpio)
874 pinctrl_select_state(dpi->pinctrl, dpi->pins_gpio);
875}
876
877static void mtk_dpi_bridge_enable(struct drm_bridge *bridge)
878{
879 struct mtk_dpi *dpi = bridge_to_dpi(bridge);
880
881 if (dpi->pinctrl && dpi->pins_dpi)
882 pinctrl_select_state(dpi->pinctrl, dpi->pins_dpi);
883
884 mtk_dpi_power_on(dpi);
885 mtk_dpi_set_display_mode(dpi, &dpi->mode);
886 mtk_dpi_enable(dpi);
887}
888
889static enum drm_mode_status
890mtk_dpi_bridge_mode_valid(struct drm_bridge *bridge,
891 const struct drm_display_info *info,
892 const struct drm_display_mode *mode)
893{
894 struct mtk_dpi *dpi = bridge_to_dpi(bridge);
895
896 if (mode->clock > dpi->conf->max_clock_khz)
897 return MODE_CLOCK_HIGH;
898
899 return MODE_OK;
900}
901
902static int mtk_dpi_debug_tp_show(struct seq_file *m, void *arg)
903{
904 struct mtk_dpi *dpi = m->private;
905 bool en;
906 u32 val;
907
908 if (!dpi)
909 return -EINVAL;
910
911 val = readl(dpi->regs + DPI_PATTERN0);
912 en = val & DPI_PAT_EN;
913 val = FIELD_GET(DPI_PAT_SEL, val);
914
915 seq_printf(m, "DPI Test Pattern: %s\n", en ? "Enabled" : "Disabled");
916
917 if (en) {
918 seq_printf(m, "Internal pattern %d: ", val);
919 switch (val) {
920 case 0:
921 seq_puts(m, "256 Vertical Gray\n");
922 break;
923 case 1:
924 seq_puts(m, "1024 Vertical Gray\n");
925 break;
926 case 2:
927 seq_puts(m, "256 Horizontal Gray\n");
928 break;
929 case 3:
930 seq_puts(m, "1024 Horizontal Gray\n");
931 break;
932 case 4:
933 seq_puts(m, "Vertical Color bars\n");
934 break;
935 case 6:
936 seq_puts(m, "Frame border\n");
937 break;
938 case 7:
939 seq_puts(m, "Dot moire\n");
940 break;
941 default:
942 seq_puts(m, "Invalid selection\n");
943 break;
944 }
945 }
946
947 return 0;
948}
949
950static ssize_t mtk_dpi_debug_tp_write(struct file *file, const char __user *ubuf,
951 size_t len, loff_t *offp)
952{
953 struct seq_file *m = file->private_data;
954 u32 en, type;
955 char buf[6];
956
957 if (!m || !m->private || *offp || len > sizeof(buf) - 1)
958 return -EINVAL;
959
960 memset(buf, 0, sizeof(buf));
961 if (copy_from_user(buf, ubuf, len))
962 return -EFAULT;
963
964 if (sscanf(buf, "%u %u", &en, &type) != 2)
965 return -EINVAL;
966
967 if (en < 0 || en > 1 || type < 0 || type > 7)
968 return -EINVAL;
969
970 mtk_dpi_test_pattern_en((struct mtk_dpi *)m->private, type, en);
971 return len;
972}
973
974static int mtk_dpi_debug_tp_open(struct inode *inode, struct file *file)
975{
976 return single_open(file, mtk_dpi_debug_tp_show, inode->i_private);
977}
978
979static const struct file_operations mtk_dpi_debug_tp_fops = {
980 .owner = THIS_MODULE,
981 .open = mtk_dpi_debug_tp_open,
982 .read = seq_read,
983 .write = mtk_dpi_debug_tp_write,
984 .llseek = seq_lseek,
985 .release = single_release,
986};
987
988static void mtk_dpi_debugfs_init(struct drm_bridge *bridge, struct dentry *root)
989{
990 struct mtk_dpi *dpi = bridge_to_dpi(bridge);
991
992 debugfs_create_file("dpi_test_pattern", 0640, root, dpi, &mtk_dpi_debug_tp_fops);
993}
994
995static const struct drm_bridge_funcs mtk_dpi_bridge_funcs = {
996 .attach = mtk_dpi_bridge_attach,
997 .mode_set = mtk_dpi_bridge_mode_set,
998 .mode_valid = mtk_dpi_bridge_mode_valid,
999 .disable = mtk_dpi_bridge_disable,
1000 .enable = mtk_dpi_bridge_enable,
1001 .atomic_check = mtk_dpi_bridge_atomic_check,
1002 .atomic_get_output_bus_fmts = mtk_dpi_bridge_atomic_get_output_bus_fmts,
1003 .atomic_get_input_bus_fmts = mtk_dpi_bridge_atomic_get_input_bus_fmts,
1004 .atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state,
1005 .atomic_destroy_state = drm_atomic_helper_bridge_destroy_state,
1006 .atomic_reset = drm_atomic_helper_bridge_reset,
1007 .debugfs_init = mtk_dpi_debugfs_init,
1008};
1009
1010void mtk_dpi_start(struct device *dev)
1011{
1012 struct mtk_dpi *dpi = dev_get_drvdata(dev);
1013
1014 if (!dpi->conf->clocked_by_hdmi)
1015 mtk_dpi_power_on(dpi);
1016}
1017
1018void mtk_dpi_stop(struct device *dev)
1019{
1020 struct mtk_dpi *dpi = dev_get_drvdata(dev);
1021
1022 if (!dpi->conf->clocked_by_hdmi)
1023 mtk_dpi_power_off(dpi);
1024}
1025
1026unsigned int mtk_dpi_encoder_index(struct device *dev)
1027{
1028 struct mtk_dpi *dpi = dev_get_drvdata(dev);
1029 unsigned int encoder_index = drm_encoder_index(&dpi->encoder);
1030
1031 dev_dbg(dev, "encoder index:%d\n", encoder_index);
1032 return encoder_index;
1033}
1034
1035static int mtk_dpi_bind(struct device *dev, struct device *master, void *data)
1036{
1037 struct mtk_dpi *dpi = dev_get_drvdata(dev);
1038 struct drm_device *drm_dev = data;
1039 struct mtk_drm_private *priv = drm_dev->dev_private;
1040 int ret;
1041
1042 dpi->mmsys_dev = priv->mmsys_dev;
1043 ret = drm_simple_encoder_init(drm_dev, &dpi->encoder,
1044 DRM_MODE_ENCODER_TMDS);
1045 if (ret) {
1046 dev_err(dev, "Failed to initialize decoder: %d\n", ret);
1047 return ret;
1048 }
1049
1050 ret = mtk_find_possible_crtcs(drm_dev, dpi->dev);
1051 if (ret < 0)
1052 goto err_cleanup;
1053 dpi->encoder.possible_crtcs = ret;
1054
1055 ret = drm_bridge_attach(&dpi->encoder, &dpi->bridge, NULL,
1056 DRM_BRIDGE_ATTACH_NO_CONNECTOR);
1057 if (ret)
1058 goto err_cleanup;
1059
1060 dpi->connector = drm_bridge_connector_init(drm_dev, &dpi->encoder);
1061 if (IS_ERR(dpi->connector)) {
1062 dev_err(dev, "Unable to create bridge connector\n");
1063 ret = PTR_ERR(dpi->connector);
1064 goto err_cleanup;
1065 }
1066 drm_connector_attach_encoder(dpi->connector, &dpi->encoder);
1067
1068 return 0;
1069
1070err_cleanup:
1071 drm_encoder_cleanup(&dpi->encoder);
1072 return ret;
1073}
1074
1075static void mtk_dpi_unbind(struct device *dev, struct device *master,
1076 void *data)
1077{
1078 struct mtk_dpi *dpi = dev_get_drvdata(dev);
1079
1080 drm_encoder_cleanup(&dpi->encoder);
1081}
1082
1083static const struct component_ops mtk_dpi_component_ops = {
1084 .bind = mtk_dpi_bind,
1085 .unbind = mtk_dpi_unbind,
1086};
1087
1088static const u32 mt8173_output_fmts[] = {
1089 MEDIA_BUS_FMT_RGB888_1X24,
1090};
1091
1092static const u32 mt8183_output_fmts[] = {
1093 MEDIA_BUS_FMT_RGB888_2X12_LE,
1094 MEDIA_BUS_FMT_RGB888_2X12_BE,
1095};
1096
1097static const u32 mt8195_dpi_output_fmts[] = {
1098 MEDIA_BUS_FMT_RGB888_1X24,
1099 MEDIA_BUS_FMT_RGB888_2X12_LE,
1100 MEDIA_BUS_FMT_RGB888_2X12_BE,
1101 MEDIA_BUS_FMT_RGB101010_1X30,
1102 MEDIA_BUS_FMT_YUYV8_1X16,
1103 MEDIA_BUS_FMT_YUYV10_1X20,
1104 MEDIA_BUS_FMT_YUYV12_1X24,
1105 MEDIA_BUS_FMT_BGR888_1X24,
1106 MEDIA_BUS_FMT_YUV8_1X24,
1107 MEDIA_BUS_FMT_YUV10_1X30,
1108};
1109
1110static const u32 mt8195_dp_intf_output_fmts[] = {
1111 MEDIA_BUS_FMT_RGB888_1X24,
1112 MEDIA_BUS_FMT_RGB888_2X12_LE,
1113 MEDIA_BUS_FMT_RGB888_2X12_BE,
1114 MEDIA_BUS_FMT_RGB101010_1X30,
1115 MEDIA_BUS_FMT_YUYV8_1X16,
1116 MEDIA_BUS_FMT_YUYV10_1X20,
1117 MEDIA_BUS_FMT_BGR888_1X24,
1118 MEDIA_BUS_FMT_YUV8_1X24,
1119 MEDIA_BUS_FMT_YUV10_1X30,
1120};
1121
1122static const struct mtk_dpi_factor dpi_factor_mt2701[] = {
1123 { 64000, 4 }, { 128000, 2 }, { U32_MAX, 1 }
1124};
1125
1126static const struct mtk_dpi_factor dpi_factor_mt8173[] = {
1127 { 27000, 48 }, { 84000, 24 }, { 167000, 12 }, { U32_MAX, 6 }
1128};
1129
1130static const struct mtk_dpi_factor dpi_factor_mt8183[] = {
1131 { 27000, 8 }, { 167000, 4 }, { U32_MAX, 2 }
1132};
1133
1134static const struct mtk_dpi_factor dpi_factor_mt8195_dp_intf[] = {
1135 { 70000 - 1, 4 }, { 200000 - 1, 2 }, { U32_MAX, 1 }
1136};
1137
1138static const struct mtk_dpi_conf mt8173_conf = {
1139 .dpi_factor = dpi_factor_mt8173,
1140 .num_dpi_factor = ARRAY_SIZE(dpi_factor_mt8173),
1141 .reg_h_fre_con = 0xe0,
1142 .max_clock_khz = 300000,
1143 .output_fmts = mt8173_output_fmts,
1144 .num_output_fmts = ARRAY_SIZE(mt8173_output_fmts),
1145 .pixels_per_iter = 1,
1146 .is_ck_de_pol = true,
1147 .swap_input_support = true,
1148 .support_direct_pin = true,
1149 .dimension_mask = HPW_MASK,
1150 .hvsize_mask = HSIZE_MASK,
1151 .channel_swap_shift = CH_SWAP,
1152 .yuv422_en_bit = YUV422_EN,
1153 .csc_enable_bit = CSC_ENABLE,
1154};
1155
1156static const struct mtk_dpi_conf mt2701_conf = {
1157 .dpi_factor = dpi_factor_mt2701,
1158 .num_dpi_factor = ARRAY_SIZE(dpi_factor_mt2701),
1159 .reg_h_fre_con = 0xb0,
1160 .edge_sel_en = true,
1161 .max_clock_khz = 150000,
1162 .output_fmts = mt8173_output_fmts,
1163 .num_output_fmts = ARRAY_SIZE(mt8173_output_fmts),
1164 .pixels_per_iter = 1,
1165 .is_ck_de_pol = true,
1166 .swap_input_support = true,
1167 .support_direct_pin = true,
1168 .dimension_mask = HPW_MASK,
1169 .hvsize_mask = HSIZE_MASK,
1170 .channel_swap_shift = CH_SWAP,
1171 .yuv422_en_bit = YUV422_EN,
1172 .csc_enable_bit = CSC_ENABLE,
1173};
1174
1175static const struct mtk_dpi_conf mt8183_conf = {
1176 .dpi_factor = dpi_factor_mt8183,
1177 .num_dpi_factor = ARRAY_SIZE(dpi_factor_mt8183),
1178 .reg_h_fre_con = 0xe0,
1179 .max_clock_khz = 100000,
1180 .output_fmts = mt8183_output_fmts,
1181 .num_output_fmts = ARRAY_SIZE(mt8183_output_fmts),
1182 .pixels_per_iter = 1,
1183 .is_ck_de_pol = true,
1184 .swap_input_support = true,
1185 .support_direct_pin = true,
1186 .dimension_mask = HPW_MASK,
1187 .hvsize_mask = HSIZE_MASK,
1188 .channel_swap_shift = CH_SWAP,
1189 .yuv422_en_bit = YUV422_EN,
1190 .csc_enable_bit = CSC_ENABLE,
1191};
1192
1193static const struct mtk_dpi_conf mt8186_conf = {
1194 .dpi_factor = dpi_factor_mt8183,
1195 .num_dpi_factor = ARRAY_SIZE(dpi_factor_mt8183),
1196 .reg_h_fre_con = 0xe0,
1197 .max_clock_khz = 150000,
1198 .output_fmts = mt8183_output_fmts,
1199 .num_output_fmts = ARRAY_SIZE(mt8183_output_fmts),
1200 .edge_cfg_in_mmsys = true,
1201 .pixels_per_iter = 1,
1202 .is_ck_de_pol = true,
1203 .swap_input_support = true,
1204 .support_direct_pin = true,
1205 .dimension_mask = HPW_MASK,
1206 .hvsize_mask = HSIZE_MASK,
1207 .channel_swap_shift = CH_SWAP,
1208 .yuv422_en_bit = YUV422_EN,
1209 .csc_enable_bit = CSC_ENABLE,
1210};
1211
1212static const struct mtk_dpi_conf mt8192_conf = {
1213 .dpi_factor = dpi_factor_mt8183,
1214 .num_dpi_factor = ARRAY_SIZE(dpi_factor_mt8183),
1215 .reg_h_fre_con = 0xe0,
1216 .max_clock_khz = 150000,
1217 .output_fmts = mt8183_output_fmts,
1218 .num_output_fmts = ARRAY_SIZE(mt8183_output_fmts),
1219 .pixels_per_iter = 1,
1220 .is_ck_de_pol = true,
1221 .swap_input_support = true,
1222 .support_direct_pin = true,
1223 .dimension_mask = HPW_MASK,
1224 .hvsize_mask = HSIZE_MASK,
1225 .channel_swap_shift = CH_SWAP,
1226 .yuv422_en_bit = YUV422_EN,
1227 .csc_enable_bit = CSC_ENABLE,
1228};
1229
1230static const struct mtk_dpi_conf mt8195_conf = {
1231 .max_clock_khz = 594000,
1232 .output_fmts = mt8195_dpi_output_fmts,
1233 .num_output_fmts = ARRAY_SIZE(mt8195_dpi_output_fmts),
1234 .pixels_per_iter = 1,
1235 .is_ck_de_pol = true,
1236 .swap_input_support = true,
1237 .support_direct_pin = true,
1238 .dimension_mask = HPW_MASK,
1239 .hvsize_mask = HSIZE_MASK,
1240 .channel_swap_shift = CH_SWAP,
1241 .yuv422_en_bit = YUV422_EN,
1242 .csc_enable_bit = CSC_ENABLE,
1243 .input_2p_en_bit = DPI_INPUT_2P_EN,
1244 .clocked_by_hdmi = true,
1245 .output_1pixel = true,
1246};
1247
1248static const struct mtk_dpi_conf mt8195_dpintf_conf = {
1249 .dpi_factor = dpi_factor_mt8195_dp_intf,
1250 .num_dpi_factor = ARRAY_SIZE(dpi_factor_mt8195_dp_intf),
1251 .max_clock_khz = 600000,
1252 .output_fmts = mt8195_dp_intf_output_fmts,
1253 .num_output_fmts = ARRAY_SIZE(mt8195_dp_intf_output_fmts),
1254 .pixels_per_iter = 4,
1255 .dimension_mask = DPINTF_HPW_MASK,
1256 .hvsize_mask = DPINTF_HSIZE_MASK,
1257 .channel_swap_shift = DPINTF_CH_SWAP,
1258 .yuv422_en_bit = DPINTF_YUV422_EN,
1259 .csc_enable_bit = DPINTF_CSC_ENABLE,
1260 .input_2p_en_bit = DPINTF_INPUT_2P_EN,
1261};
1262
1263static int mtk_dpi_probe(struct platform_device *pdev)
1264{
1265 struct device *dev = &pdev->dev;
1266 struct mtk_dpi *dpi;
1267 int ret;
1268
1269 dpi = devm_drm_bridge_alloc(dev, struct mtk_dpi, bridge,
1270 &mtk_dpi_bridge_funcs);
1271 if (IS_ERR(dpi))
1272 return PTR_ERR(dpi);
1273
1274 dpi->dev = dev;
1275 dpi->conf = (struct mtk_dpi_conf *)of_device_get_match_data(dev);
1276 dpi->output_fmt = MEDIA_BUS_FMT_RGB888_1X24;
1277
1278 dpi->pinctrl = devm_pinctrl_get(&pdev->dev);
1279 if (IS_ERR(dpi->pinctrl)) {
1280 dpi->pinctrl = NULL;
1281 dev_dbg(&pdev->dev, "Cannot find pinctrl!\n");
1282 }
1283 if (dpi->pinctrl) {
1284 dpi->pins_gpio = pinctrl_lookup_state(dpi->pinctrl, "sleep");
1285 if (IS_ERR(dpi->pins_gpio)) {
1286 dpi->pins_gpio = NULL;
1287 dev_dbg(&pdev->dev, "Cannot find pinctrl idle!\n");
1288 }
1289 if (dpi->pins_gpio)
1290 pinctrl_select_state(dpi->pinctrl, dpi->pins_gpio);
1291
1292 dpi->pins_dpi = pinctrl_lookup_state(dpi->pinctrl, "default");
1293 if (IS_ERR(dpi->pins_dpi)) {
1294 dpi->pins_dpi = NULL;
1295 dev_dbg(&pdev->dev, "Cannot find pinctrl active!\n");
1296 }
1297 }
1298 dpi->regs = devm_platform_ioremap_resource(pdev, 0);
1299 if (IS_ERR(dpi->regs))
1300 return dev_err_probe(dev, PTR_ERR(dpi->regs),
1301 "Failed to ioremap mem resource\n");
1302
1303 dpi->engine_clk = devm_clk_get(dev, "engine");
1304 if (IS_ERR(dpi->engine_clk))
1305 return dev_err_probe(dev, PTR_ERR(dpi->engine_clk),
1306 "Failed to get engine clock\n");
1307
1308 dpi->pixel_clk = devm_clk_get(dev, "pixel");
1309 if (IS_ERR(dpi->pixel_clk))
1310 return dev_err_probe(dev, PTR_ERR(dpi->pixel_clk),
1311 "Failed to get pixel clock\n");
1312
1313 dpi->tvd_clk = devm_clk_get(dev, "pll");
1314 if (IS_ERR(dpi->tvd_clk))
1315 return dev_err_probe(dev, PTR_ERR(dpi->tvd_clk),
1316 "Failed to get tvdpll clock\n");
1317
1318 dpi->irq = platform_get_irq(pdev, 0);
1319 if (dpi->irq < 0)
1320 return dpi->irq;
1321
1322 platform_set_drvdata(pdev, dpi);
1323
1324 dpi->bridge.of_node = dev->of_node;
1325 dpi->bridge.type = DRM_MODE_CONNECTOR_DPI;
1326
1327 ret = devm_drm_bridge_add(dev, &dpi->bridge);
1328 if (ret)
1329 return ret;
1330
1331 ret = component_add(dev, &mtk_dpi_component_ops);
1332 if (ret)
1333 return dev_err_probe(dev, ret, "Failed to add component.\n");
1334
1335 return 0;
1336}
1337
1338static void mtk_dpi_remove(struct platform_device *pdev)
1339{
1340 component_del(&pdev->dev, &mtk_dpi_component_ops);
1341}
1342
1343static const struct of_device_id mtk_dpi_of_ids[] = {
1344 { .compatible = "mediatek,mt2701-dpi", .data = &mt2701_conf },
1345 { .compatible = "mediatek,mt8173-dpi", .data = &mt8173_conf },
1346 { .compatible = "mediatek,mt8183-dpi", .data = &mt8183_conf },
1347 { .compatible = "mediatek,mt8186-dpi", .data = &mt8186_conf },
1348 { .compatible = "mediatek,mt8188-dp-intf", .data = &mt8195_dpintf_conf },
1349 { .compatible = "mediatek,mt8192-dpi", .data = &mt8192_conf },
1350 { .compatible = "mediatek,mt8195-dp-intf", .data = &mt8195_dpintf_conf },
1351 { .compatible = "mediatek,mt8195-dpi", .data = &mt8195_conf },
1352 { /* sentinel */ },
1353};
1354MODULE_DEVICE_TABLE(of, mtk_dpi_of_ids);
1355
1356struct platform_driver mtk_dpi_driver = {
1357 .probe = mtk_dpi_probe,
1358 .remove = mtk_dpi_remove,
1359 .driver = {
1360 .name = "mediatek-dpi",
1361 .of_match_table = mtk_dpi_of_ids,
1362 },
1363};