summaryrefslogtreecommitdiff
path: root/drivers/video/stm32/stm32_lvds.c
blob: bf1393c9e8724ed099aeed63344ebdc0004507b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
// SPDX-License-Identifier: GPL-2.0-or-later OR BSD-3-Clause
/*
 * Copyright (C) 2025 STMicroelectronics - All Rights Reserved
 * Author(s): Raphaël Gallais-Pou <[email protected]> for STMicroelectronics.
 *
 * This Low Voltage Differential Signal controller driver is based on the Linux Kernel driver from
 * drivers/gpu/drm/stm/ltdc.c
 */

#define LOG_CATEGORY UCLASS_VIDEO_BRIDGE

#include <clk.h>
#include <dm.h>
#include <log.h>
#include <media_bus_format.h>
#include <panel.h>
#include <reset.h>
#include <video.h>
#include <video_bridge.h>
#include <asm/io.h>
#include <dm/device_compat.h>
#include <dm/ofnode.h>
#include <linux/iopoll.h>

/* LVDS Host registers */
#define LVDS_CR		0x0000  /* configuration register */
#define LVDS_DMLCR0	0x0004  /* data mapping lsb configuration register 0	*/
#define LVDS_DMMCR0	0x0008  /* data mapping msb configuration register 0	*/
#define LVDS_DMLCR1	0x000C  /* data mapping lsb configuration register 1	*/
#define LVDS_DMMCR1	0x0010  /* data mapping msb configuration register 1	*/
#define LVDS_DMLCR2	0x0014  /* data mapping lsb configuration register 2	*/
#define LVDS_DMMCR2	0x0018  /* data mapping msb configuration register 2	*/
#define LVDS_DMLCR3	0x001C  /* data mapping lsb configuration register 3	*/
#define LVDS_DMMCR3	0x0020  /* data mapping msb configuration register 3	*/
#define LVDS_DMLCR4	0x0024  /* data mapping lsb configuration register 4	*/
#define LVDS_DMMCR4	0x0028  /* data mapping msb configuration register 4	*/
#define LVDS_DMLCR(id)	(LVDS_DMLCR0 + 8U * (id))
#define LVDS_DMMCR(id)	(LVDS_DMMCR0 + 8U * (id))
#define LVDS_CDL1CR	0x002C  /* channel distrib link 1 configuration register	*/
#define LVDS_CDL2CR	0x0030  /* channel distrib link 2 configuration register	*/

#define CDL1CR_DEFAULT	0x4321
#define CDL2CR_DEFAULT	0x59876

/* LVDS Host registers */
#define LVDS_PHY_MASTER	0x0
#define LVDS_PHY_SLAVE	0x100

/* phy parameter can only be one of those two above */
#define LVDS_PXGCR(phy)		((phy) + 0x1000)   /* Global Control Register	*/
#define LVDS_PXCMCR1(phy)	((phy) + 0x100C)   /* Current Mode Control Register 1 */
#define LVDS_PXCMCR2(phy)	((phy) + 0x1010)  /* Current Mode Control Register 2 */
#define LVDS_PXSCR(phy)		((phy) + 0x1020)  /* Serial Control Register	*/
#define LVDS_PXBCR1(phy)	((phy) + 0x102C)  /* Bias Control Register 1	*/
#define LVDS_PXBCR2(phy)	((phy) + 0x1030)  /* Bias Control Register 2	*/
#define LVDS_PXBCR3(phy)	((phy) + 0x1034)  /* Bias Control Register 3	*/
#define LVDS_PXMPLCR(phy)	((phy) + 0x1064)  /* Monitor PLL Lock Control Register */
#define LVDS_PXDCR(phy)		((phy) + 0x1084)  /* Debug Control Register	*/
#define LVDS_PXSSR1(phy)	((phy) + 0x1088)  /* Spare Status Register 1	*/
#define LVDS_PXCFGCR(phy)	((phy) + 0x10A0)  /* Configuration Control Register */
#define LVDS_PXPLLCR1(phy)	((phy) + 0x10C0)  /* PLL_MODE 1 Control Register	*/
#define LVDS_PXPLLCR2(phy)	((phy) + 0x10C4)  /* PLL_MODE 2 Control Register	*/
#define LVDS_PXPLLSR(phy)	((phy) + 0x10C8)  /* PLL Status Register	*/
#define LVDS_PXPLLSDCR1(phy)	((phy) + 0x10CC)  /* PLL_SD_1 Control Register	*/
#define LVDS_PXPLLSDCR2(phy)	((phy) + 0x10D0)  /* PLL_SD_2 Control Register	*/
#define LVDS_PXPLLTWGCR1(phy)	((phy) + 0x10D4)  /* PLL_TWG_1 Control Register	*/
#define LVDS_PXPLLTWGCR2(phy)	((phy) + 0x10D8)  /* PLL_TWG_2 Control Register	*/
#define LVDS_PXPLLCPCR(phy)	((phy) + 0x10E0)  /* PLL_CP Control Register	*/
#define LVDS_PXPLLTESTCR(phy)	((phy) + 0x10E8)  /* PLL_TEST Control Register	*/

/* LVDS Wrapper registers */
#define LVDS_WCLKCR	0x11B0  /* Wrapper clock control register */
#define LVDS_HWCFGR	0x1FF0  /* HW configuration register	*/
#define LVDS_VERR	0x1FF4  /* Version register	*/
#define LVDS_IPIDR	0x1FF8  /* Identification register	*/
#define LVDS_SIDR	0x1FFC  /* Size Identification register	*/

#define CR_LVDSEN	BIT(0)  /* LVDS PHY Enable */
#define CR_HSPOL	BIT(1)  /* HS Polarity (horizontal sync) */
#define CR_VSPOL	BIT(2)  /* VS Polarity (vertical sync) */
#define CR_DEPOL	BIT(3)  /* DE Polarity (data enable) */
#define CR_CI		BIT(4)  /* Control Internal (software controlled bit) */
#define CR_LKMOD	BIT(5)  /* Link Mode, for both Links */
#define CR_LKPHA	BIT(6)  /* Link Phase, for both Links */
#define CR_LK1POL	GENMASK(20, 16)  /* Link-1 output Polarity */
#define CR_LK2POL	GENMASK(25, 21)  /* Link-2 output Polarity */

#define DMMCRX_MAP0	GENMASK(4, 0)
#define DMMCRX_MAP1	GENMASK(9, 5)
#define DMMCRX_MAP2	GENMASK(14, 10)
#define DMMCRX_MAP3	GENMASK(19, 15)
#define DMLCRX_MAP4	GENMASK(4, 0)
#define DMLCRX_MAP5	GENMASK(9, 5)
#define DMLCRX_MAP6	GENMASK(14, 10)

#define CDLCRX_DISTR0	GENMASK(3, 0)
#define CDLCRX_DISTR1	GENMASK(7, 4)
#define CDLCRX_DISTR2	GENMASK(11, 8)
#define CDLCRX_DISTR3	GENMASK(15, 12)
#define CDLCRX_DISTR4	GENMASK(19, 16)

#define FREF_INDEX	0
#define NDIV_INDEX	1
#define FPFD_INDEX	2
#define MDIV_INDEX	3
#define FVCO_INDEX	4
#define BDIV_INDEX	5
#define FBIT_INDEX	6
#define FLS_INDEX	7
#define FDP_INDEX	8

#define PXGCR_BIT_CLK_OUT	BIT(0)
#define PXGCR_LS_CLK_OUT	BIT(4)
#define PXGCR_DP_CLK_OUT	BIT(8)
#define PXGCR_RSTZ		BIT(24)
#define PXGCR_DIV_RSTN		BIT(25)

#define PXCMCR1_CM_EN_DL	(BIT(28) | BIT(20) | BIT(12) | BIT(4))
#define PXCMCR2_CM_EN_DL4	BIT(4)
#define PXSCR_SER_DATA_OK	BIT(16)
#define PXBCR1_EN_BIAS_DL	(BIT(16) | BIT(12) | BIT(8) | BIT(4) | BIT(0))
#define PXBCR2_BIAS_EN		BIT(28)
#define PXBCR3_VM_EN_DL		(BIT(16) | BIT(12) | BIT(8) | BIT(4) | BIT(0))
#define PXDCR_POWER_OK		BIT(12)
#define PXCFGCR_EN_DIG_DL	GENMASK(4, 0)

#define PXPLLCR1_PLL_EN		BIT(0)
#define PxPLLCR1_SD_EN		BIT(1)
#define PXPLLCR1_TWG_EN		BIT(2)
#define PXPLLCR1_PLL_DIVIDERS_EN	BIT(8)
#define PXPLLCR2_NDIV		GENMASK(25, 16)
#define PXPLLCR2_BDIV		GENMASK(9, 0)
#define PXPLLSR_PLL_LOCK	BIT(0)
#define PXPLLSDCR1_MDIV		GENMASK(9, 0)
#define PXPLLCPCR_CPCTRL_DEFAULT	0x1
#define PXPLLTESTCR_PLL_TEST_CLK_EN	BIT(0)
#define PXPLLTESTCR_PLL_TDIV_EN		BIT(8)
#define PXPLLTESTCR_TDIV	GENMASK(25, 16)
#define PXPLLTESTCR_TDIV_VALUE	70

#define WCLKCR_SLV_CLKPIX_SEL	BIT(0)
#define WCLKCR_SRCSEL		BIT(8)

/* Sleep & timeout for pll lock/unlock */
#define SLEEP_US	1000
#define TIMEOUT_US	20000000

#define PHY_SLV_OFS	0x100

/* PLL parameters */
#define NDIV_MIN	2
#define NDIV_MAX	6
#define BDIV_MIN	2
#define BDIV_MAX	6
#define MDIV_MIN	1
#define MDIV_MAX	1023

struct stm32_lvds_plat {
	void __iomem *base;
	struct udevice *panel;
	struct reset_ctl rst;
	struct clk pclk;
	struct clk refclk;
};

struct stm32_lvds_priv {
	struct display_timing timings;
	u32 refclk_rate;
	int dual_link;
	int bus_format;
};

/*
 * enum lvds_pixels_order - Pixel order of an LVDS connection
 * @LVDS_DUAL_LINK_EVEN_ODD_PIXELS: Even pixels are expected to be generated
 *    from the first port, odd pixels from the second port
 * @LVDS_DUAL_LINK_ODD_EVEN_PIXELS: Odd pixels are expected to be generated
 *    from the first port, even pixels from the second port
 */
enum lvds_pixels_order {
	LVDS_DUAL_LINK_EVEN_ODD_PIXELS = BIT(0),
	LVDS_DUAL_LINK_ODD_EVEN_PIXELS = BIT(1),
};

enum lvds_pixel {
	PIX_R_0		= 0x00,
	PIX_R_1		= 0x01,
	PIX_R_2		= 0x02,
	PIX_R_3		= 0x03,
	PIX_R_4		= 0x04,
	PIX_R_5		= 0x05,
	PIX_R_6		= 0x06,
	PIX_R_7		= 0x07,
	PIX_G_0		= 0x08,
	PIX_G_1		= 0x09,
	PIX_G_2		= 0x0A,
	PIX_G_3		= 0x0B,
	PIX_G_4		= 0x0C,
	PIX_G_5		= 0x0D,
	PIX_G_6		= 0x0E,
	PIX_G_7		= 0x0F,
	PIX_B_0		= 0x10,
	PIX_B_1		= 0x11,
	PIX_B_2		= 0x12,
	PIX_B_3		= 0x13,
	PIX_B_4		= 0x14,
	PIX_B_5		= 0x15,
	PIX_B_6		= 0x16,
	PIX_B_7		= 0x17,
	PIX_H_S		= 0x18,
	PIX_V_S		= 0x19,
	PIX_D_E		= 0x1A,
	PIX_C_E		= 0x1B,
	PIX_C_I		= 0x1C,
	PIX_TOG		= 0x1D,
	PIX_ONE		= 0x1E,
	PIX_ZER		= 0x1F,
};

/*
 * Expected JEIDA-RGB888 data to be sent in LSB format
 *	    bit6 ............................bit0
 */
const enum lvds_pixel lvds_bitmap_jeida_rgb888[5][7] = {
	{ PIX_ONE, PIX_ONE, PIX_ZER, PIX_ZER, PIX_ZER, PIX_ONE, PIX_ONE },
	{ PIX_G_2, PIX_R_7, PIX_R_6, PIX_R_5, PIX_R_4, PIX_R_3, PIX_R_2 },
	{ PIX_B_3, PIX_B_2, PIX_G_7, PIX_G_6, PIX_G_5, PIX_G_4, PIX_G_3 },
	{ PIX_D_E, PIX_V_S, PIX_H_S, PIX_B_7, PIX_B_6, PIX_B_5, PIX_B_4 },
	{ PIX_C_E, PIX_B_1, PIX_B_0, PIX_G_1, PIX_G_0, PIX_R_1, PIX_R_0 }
};

/*
 * Expected VESA-RGB888 data to be sent in LSB format
 *	    bit6 ............................bit0
 */
const enum lvds_pixel lvds_bitmap_vesa_rgb888[5][7] = {
	{ PIX_ONE, PIX_ONE, PIX_ZER, PIX_ZER, PIX_ZER, PIX_ONE, PIX_ONE },
	{ PIX_G_0, PIX_R_5, PIX_R_4, PIX_R_3, PIX_R_2, PIX_R_1, PIX_R_0 },
	{ PIX_B_1, PIX_B_0, PIX_G_5, PIX_G_4, PIX_G_3, PIX_G_2, PIX_G_1 },
	{ PIX_D_E, PIX_V_S, PIX_H_S, PIX_B_5, PIX_B_4, PIX_B_3, PIX_B_2 },
	{ PIX_C_E, PIX_B_7, PIX_B_6, PIX_G_7, PIX_G_6, PIX_R_7, PIX_R_6 }
};

static inline void lvds_writel(void __iomem *base, u32 reg, u32 val)
{
	writel(val, base + reg);
}

static inline u32 lvds_readl(void __iomem *base, u32 reg)
{
	return readl(base + reg);
}

static inline void lvds_set(void __iomem *base, u32 reg, u32 mask)
{
	lvds_writel(base, reg, lvds_readl(base, reg) | mask);
}

static inline void lvds_clear(void __iomem *base, u32 reg, u32 mask)
{
	lvds_writel(base, reg, lvds_readl(base, reg) & ~mask);
}

static u32 pll_get_clkout_khz(u32 clkin_khz, u32 bdiv, u32 mdiv, u32 ndiv)
{
	int divisor = ndiv * bdiv;

	/* Prevents from division by 0 */
	if (!divisor)
		return 0;

	return clkin_khz * mdiv / divisor;
}

static int lvds_pll_get_params(u32 clkin_khz, u32 clkout_khz,
			       u32 *bdiv, u32 *mdiv, u32 *ndiv)
{
	u32 i, o, n;
	u32 delta, best_delta; /* all in khz */

	/* Early checks preventing division by 0 & odd results */
	if (clkin_khz == 0 || clkout_khz == 0)
		return -EINVAL;

	best_delta = 1000000; /* big started value (1000000khz) */

	for (i = NDIV_MIN; i <= NDIV_MAX; i++) {
		for (o = BDIV_MIN; o <= BDIV_MAX; o++) {
			n = DIV_ROUND_CLOSEST(i * o * clkout_khz, clkin_khz);
			/* Check ndiv according to vco range */
			if (n < MDIV_MIN || n > MDIV_MAX)
				continue;
			/* Check if new delta is better & saves parameters */
			delta = abs(pll_get_clkout_khz(clkin_khz, i, n, o) - clkout_khz);
			if (delta < best_delta) {
				*ndiv = i;
				*mdiv = n;
				*bdiv = o;
				best_delta = delta;
			}
			/* fast return in case of "perfect result" */
			if (!delta)
				return 0;
		}
	}

	return 0;
}

static int stm32_lvds_pll_enable(struct udevice *dev,
				 int phy)
{
	struct stm32_lvds_plat *plat = dev_get_plat(dev);
	struct stm32_lvds_priv *priv = dev_get_priv(dev);
	struct display_timing timings = priv->timings;
	u32 pll_in_khz, bdiv = 0, mdiv = 0, ndiv = 0;
	int ret, val, multiplier;

	/* Release PHY from reset */
	lvds_set(plat->base, LVDS_PXGCR(phy), PXGCR_DIV_RSTN | PXGCR_RSTZ);

	/* lvds_pll_config */
	/* Set PLL Slv & Mst configs and timings */
	pll_in_khz = priv->refclk_rate / 1000;

	if (priv->dual_link)
		multiplier = 2;
	else
		multiplier = 1;

	ret = lvds_pll_get_params(pll_in_khz, timings.pixelclock.typ * 7 / 1000 / multiplier,
				  &bdiv, &mdiv, &ndiv);
	if (ret)
		return ret;

	/* Set PLL parameters */
	lvds_writel(plat->base, LVDS_PXPLLCR2(phy), (ndiv << 16) | bdiv);
	lvds_writel(plat->base, LVDS_PXPLLSDCR1(phy), mdiv);
	lvds_writel(plat->base, LVDS_PXPLLTESTCR(phy), PXPLLTESTCR_TDIV_VALUE << 16);

	/* Disable TWG and SD: for now, PLL just need to be in integer mode */
	lvds_clear(plat->base, LVDS_PXPLLCR1(phy), PXPLLCR1_TWG_EN | PxPLLCR1_SD_EN);

	/* Power up bias and PLL dividers */
	lvds_set(plat->base, LVDS_PXDCR(phy), PXDCR_POWER_OK);

	lvds_set(plat->base, LVDS_PXCMCR1(phy), PXCMCR1_CM_EN_DL);
	lvds_set(plat->base, LVDS_PXCMCR2(phy), PXCMCR2_CM_EN_DL4);

	lvds_set(plat->base, LVDS_PXPLLCPCR(phy), PXPLLCPCR_CPCTRL_DEFAULT);
	lvds_set(plat->base, LVDS_PXBCR3(phy), PXBCR3_VM_EN_DL);
	lvds_set(plat->base, LVDS_PXBCR1(phy), PXBCR1_EN_BIAS_DL);
	lvds_set(plat->base, LVDS_PXCFGCR(phy), PXCFGCR_EN_DIG_DL);

	/* lvds_pll_enable */
	/* PLL lock timing control for the monitor unmask after startup (pll_en) */
	/* Adjust the value so that the masking window is opened at start-up */
	/* MST_MON_PLL_LOCK_UNMASK_TUNE */
	lvds_writel(plat->base, LVDS_PXMPLCR(phy), (0x200 - 0x160) << 16);

	lvds_writel(plat->base, LVDS_PXBCR2(phy), PXBCR2_BIAS_EN);

	lvds_set(plat->base, LVDS_PXGCR(phy),
		 PXGCR_DP_CLK_OUT | PXGCR_LS_CLK_OUT | PXGCR_BIT_CLK_OUT);

	lvds_set(plat->base, LVDS_PXPLLTESTCR(phy), PXPLLTESTCR_PLL_TDIV_EN);
	lvds_set(plat->base, LVDS_PXPLLCR1(phy), PXPLLCR1_PLL_DIVIDERS_EN);
	lvds_set(plat->base, LVDS_PXSCR(phy), PXSCR_SER_DATA_OK);

	/* Enable the LVDS PLL & wait for its lock */
	lvds_set(plat->base, LVDS_PXPLLCR1(phy), PXPLLCR1_PLL_EN);
	ret = readl_poll_sleep_timeout(plat->base + LVDS_PXPLLSR(phy),
				       val, val & PXPLLSR_PLL_LOCK, SLEEP_US, TIMEOUT_US);
	if (ret)
		return ret;

	/* Select MST PHY clock as pixel clock for the LDITX instead of FREF */
	/* WCLKCR_SLV_CLKPIX_SEL is for dual link */
	lvds_writel(plat->base, LVDS_WCLKCR, WCLKCR_SLV_CLKPIX_SEL);

	lvds_set(plat->base, LVDS_PXPLLTESTCR(phy), PXPLLTESTCR_PLL_TEST_CLK_EN);

	return 0;
}

static int stm32_lvds_enable(struct udevice *dev)
{
	struct stm32_lvds_plat *plat = dev_get_plat(dev);
	struct stm32_lvds_priv *priv = dev_get_priv(dev);
	struct display_timing timings = priv->timings;
	u32 lvds_cdl1cr = 0;
	u32 lvds_cdl2cr = 0;
	u32 lvds_dmlcr = 0;
	u32 lvds_dmmcr = 0;
	u32 lvds_cr = 0;
	int i;

	lvds_clear(plat->base, LVDS_CDL1CR, CDLCRX_DISTR0 | CDLCRX_DISTR1 | CDLCRX_DISTR2
					| CDLCRX_DISTR3 | CDLCRX_DISTR4);
	lvds_clear(plat->base, LVDS_CDL2CR, CDLCRX_DISTR0 | CDLCRX_DISTR1 | CDLCRX_DISTR2
					| CDLCRX_DISTR3 | CDLCRX_DISTR4);

	/* Set channel distribution */
	lvds_cr &= ~CR_LKMOD;
	lvds_cdl1cr = CDL1CR_DEFAULT;

	if (priv->dual_link) {
		lvds_cr |= CR_LKMOD;
		lvds_cdl2cr = CDL2CR_DEFAULT;
	}

	/* Set signal polarity */
	if (timings.flags & DISPLAY_FLAGS_DE_LOW)
		lvds_cr |= CR_DEPOL;

	if (timings.flags & DISPLAY_FLAGS_HSYNC_LOW)
		lvds_cr |= CR_HSPOL;

	if (timings.flags & DISPLAY_FLAGS_VSYNC_LOW)
		lvds_cr |= CR_VSPOL;

	/* Set link phase */
	switch (priv->dual_link) {
	case LVDS_DUAL_LINK_EVEN_ODD_PIXELS: /* LKPHA = 0 */
		lvds_cr &= ~CR_LKPHA;
		break;
	case LVDS_DUAL_LINK_ODD_EVEN_PIXELS: /* LKPHA = 1 */
		lvds_cr |= CR_LKPHA;
		break;
	default:
		dev_dbg(dev, "No phase precised, setting default\n");
		lvds_cr &= ~CR_LKPHA;
		break;
	}

	/* Set Data Mapping */
	switch (priv->bus_format) {
	case MEDIA_BUS_FMT_RGB888_1X7X4_SPWG: /* VESA-RGB888 */
		for (i = 0; i < 5; i++) {
			lvds_dmlcr = ((lvds_bitmap_vesa_rgb888[i][0])
				      + (lvds_bitmap_vesa_rgb888[i][1] << 5)
				      + (lvds_bitmap_vesa_rgb888[i][2] << 10)
				      + (lvds_bitmap_vesa_rgb888[i][3] << 15));
			lvds_dmmcr = ((lvds_bitmap_vesa_rgb888[i][4])
				      + (lvds_bitmap_vesa_rgb888[i][5] << 5)
				      + (lvds_bitmap_vesa_rgb888[i][6] << 10));

			/* Write registers at the end of computations */
			lvds_writel(plat->base, LVDS_DMLCR(i), lvds_dmlcr);
			lvds_writel(plat->base, LVDS_DMMCR(i), lvds_dmmcr);
		}
		break;
	case MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA: /* JEIDA-RGB888 */
		for (i = 0; i < 5; i++) {
			lvds_dmlcr = ((lvds_bitmap_jeida_rgb888[i][0])
				      + (lvds_bitmap_jeida_rgb888[i][1] << 5)
				      + (lvds_bitmap_jeida_rgb888[i][2] << 10)
				      + (lvds_bitmap_jeida_rgb888[i][3] << 15));
			lvds_dmmcr = ((lvds_bitmap_jeida_rgb888[i][4])
				      + (lvds_bitmap_jeida_rgb888[i][5] << 5)
				      + (lvds_bitmap_jeida_rgb888[i][6] << 10));

			/* Write registers at the end of computations */
			lvds_writel(plat->base, LVDS_DMLCR(i), lvds_dmlcr);
			lvds_writel(plat->base, LVDS_DMMCR(i), lvds_dmmcr);
		}
		break;
	default:
		dev_dbg(dev, "Unsupported LVDS bus format 0x%04x\n", priv->bus_format);
	}

	/* Turn the output on */
	lvds_cr |= CR_LVDSEN;

	/* Commit config to registers */
	lvds_set(plat->base, LVDS_CR, lvds_cr);
	lvds_writel(plat->base, LVDS_CDL1CR, lvds_cdl1cr);
	lvds_writel(plat->base, LVDS_CDL2CR, lvds_cdl2cr);

	return 0;
}

static int stm32_lvds_attach(struct udevice *dev)
{
	struct stm32_lvds_plat *plat = dev_get_plat(dev);
	struct stm32_lvds_priv *priv = dev_get_priv(dev);
	int ret;

	ret = panel_get_display_timing(plat->panel, &priv->timings);
	if (ret) {
		ret = ofnode_decode_display_timing(dev_ofnode(plat->panel),
						   0, &priv->timings);
		if (ret) {
			dev_err(dev, "decode display timing error %d\n", ret);
			return ret;
		}
	}

	ret = stm32_lvds_enable(dev);

	return ret;
}

static int stm32_lvds_set_backlight(struct udevice *dev, int percent)
{
	struct stm32_lvds_plat *plat = dev_get_plat(dev);
	int ret;

	ret = panel_enable_backlight(plat->panel);
	if (ret) {
		dev_err(dev, "panel %s enable backlight error %d\n",
			plat->panel->name, ret);
	}

	return ret;
}

static int lvds_handle_pixel_order(struct stm32_lvds_plat *plat)
{
	ofnode parent, panel_port0, panel_port1;
	bool even_pixels, odd_pixels;
	int port0, port1;

	/*
	 * In case we are operating in single link,
	 * there is only one port linked to the LVDS.
	 * Check whether we are in this case and exit if yes.
	 */
	parent = ofnode_find_subnode(dev_ofnode(plat->panel), "ports");
	if (!ofnode_valid(parent))
		return 0;

	panel_port0 = ofnode_first_subnode(parent);
	if (!ofnode_valid(panel_port0))
		return -EPIPE;

	even_pixels = ofnode_read_bool(panel_port0, "dual-lvds-even-pixels");
	odd_pixels = ofnode_read_bool(panel_port0, "dual-lvds-odd-pixels");
	if (even_pixels && odd_pixels)
		return -EINVAL;

	port0 = even_pixels ? LVDS_DUAL_LINK_EVEN_ODD_PIXELS :
		LVDS_DUAL_LINK_ODD_EVEN_PIXELS;

	panel_port1 = ofnode_next_subnode(panel_port0);
	if (!ofnode_valid(panel_port1))
		return -EPIPE;

	even_pixels = ofnode_read_bool(panel_port1, "dual-lvds-even-pixels");
	odd_pixels = ofnode_read_bool(panel_port1, "dual-lvds-odd-pixels");
	if (even_pixels && odd_pixels)
		return -EINVAL;

	port1 = even_pixels ? LVDS_DUAL_LINK_EVEN_ODD_PIXELS :
		LVDS_DUAL_LINK_ODD_EVEN_PIXELS;

	/*
	 * A valid dual-LVDS bus is found when one port is marked with
	 * "dual-lvds-even-pixels", and the other port is marked with
	 * "dual-lvds-odd-pixels", bail out if the markers are not right.
	 */
	if (port0 + port1 != LVDS_DUAL_LINK_EVEN_ODD_PIXELS + LVDS_DUAL_LINK_ODD_EVEN_PIXELS)
		return -EINVAL;

	return port0;
}

static int stm32_lvds_of_to_plat(struct udevice *dev)
{
	struct stm32_lvds_plat *plat = dev_get_plat(dev);
	struct stm32_lvds_priv *priv = dev_get_priv(dev);
	const char *data_mapping;
	int ret;

	plat->base = dev_read_addr_ptr(dev);
	if ((fdt_addr_t)plat->base == FDT_ADDR_T_NONE) {
		dev_err(dev, "Unable to read LVDS base address\n");
		return -EINVAL;
	}

	ret = clk_get_by_name(dev, "pclk", &plat->pclk);
	if (ret) {
		dev_err(dev, "Unable to get peripheral clock: %d\n", ret);
		return ret;
	}

	ret = clk_get_by_name(dev, "ref", &plat->refclk);
	if (ret) {
		dev_err(dev, "Unable to get reference clock: %d\n", ret);
		return ret;
	}

	ret = reset_get_by_index(dev, 0, &plat->rst);
	if (ret) {
		dev_err(dev, "Failed to get LVDS reset: %d\n", ret);
		return ret;
	}

	ret = uclass_get_device_by_driver(UCLASS_PANEL,
					  DM_DRIVER_GET(simple_panel), &plat->panel);
	if (ret) {
		dev_err(dev, "panel device error %d\n", ret);
		return ret;
	}

	ret = panel_get_display_timing(plat->panel, &priv->timings);
	if (ret) {
		ret = ofnode_decode_display_timing(dev_ofnode(plat->panel),
						   0, &priv->timings);
		if (ret) {
			dev_err(dev, "decode display timing error %d\n", ret);
			return ret;
		}
	}

	data_mapping = ofnode_read_string(dev_ofnode(plat->panel), "data-mapping");
	if (!strcmp(data_mapping, "vesa-24"))
		priv->bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG;
	else if (!strcmp(data_mapping, "jeida-24"))
		priv->bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA;
	else
		priv->bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG;

	return 0;
}

static int stm32_lvds_probe(struct udevice *dev)
{
	struct stm32_lvds_plat *plat = dev_get_plat(dev);
	struct stm32_lvds_priv *priv = dev_get_priv(dev);
	int ret;

	ret = clk_enable(&plat->pclk);
	if (ret) {
		dev_err(dev, "Failed to enable peripheral clock: %d\n", ret);
		return ret;
	}

	ret = clk_enable(&plat->refclk);
	if (ret) {
		dev_err(dev, "Failed to enable reference clock: %d\n", ret);
		goto err_clk;
	}

	priv->refclk_rate = (unsigned int)clk_get_rate(&plat->refclk);

	reset_deassert(&plat->rst);

	/* Handle dual link config */
	priv->dual_link = lvds_handle_pixel_order(plat);
	if (priv->dual_link < 0)
		goto err_rst;

	if (priv->dual_link > 0) {
		ret = stm32_lvds_pll_enable(dev, LVDS_PHY_SLAVE);
		if (ret)
			goto err_rst;
	}

	ret = stm32_lvds_pll_enable(dev, LVDS_PHY_MASTER);
	if (ret)
		goto err_rst;

	return 0;

err_rst:
	clk_disable(&plat->refclk);
err_clk:
	clk_disable(&plat->pclk);

	return ret;
}

static const struct video_bridge_ops stm32_lvds_ops = {
	.attach = stm32_lvds_attach,
	.set_backlight = stm32_lvds_set_backlight,
};

static const struct udevice_id stm32_lvds_ids[] = {
	{.compatible = "st,stm32mp25-lvds"},
	{}
};

U_BOOT_DRIVER(stm32_lvds) = {
	.name		= "stm32-display-lvds",
	.id		= UCLASS_VIDEO_BRIDGE,
	.of_match	= stm32_lvds_ids,
	.ops		= &stm32_lvds_ops,
	.of_to_plat	= stm32_lvds_of_to_plat,
	.probe		= stm32_lvds_probe,
	.plat_auto	= sizeof(struct stm32_lvds_plat),
	.priv_auto	= sizeof(struct stm32_lvds_priv),
};