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
|
// SPDX-License-Identifier: GPL-2.0+
/*
* i.MX8 LCD interface driver inspired from the Linux driver
* Copyright 2019 NXP
* Copyright 2024 Bootlin
* Adapted by Miquel Raynal <miquel.raynal@bootlin.com>
*/
#include <asm/io.h>
#include <asm/mach-imx/dma.h>
#include <clk.h>
#include <dm.h>
#include <panel.h>
#include <power-domain.h>
#include <video.h>
#include <video_bridge.h>
#include <linux/delay.h>
#include "../videomodes.h"
#define LCDIFV3_CTRL 0x0
#define LCDIFV3_CTRL_SET 0x4
#define LCDIFV3_CTRL_CLR 0x8
#define CTRL_INV_HS BIT(0)
#define CTRL_INV_VS BIT(1)
#define CTRL_INV_DE BIT(2)
#define CTRL_INV_PXCK BIT(3)
#define CTRL_CLK_GATE BIT(30)
#define CTRL_SW_RESET BIT(31)
#define LCDIFV3_DISP_PARA 0x10
#define DISP_PARA_DISP_MODE_NORMAL 0
#define DISP_PARA_LINE_PATTERN_RGB_YUV 0
#define DISP_PARA_DISP_ON BIT(31)
#define LCDIFV3_DISP_SIZE 0x14
#define DISP_SIZE_DELTA_X(x) ((x) & 0xffff)
#define DISP_SIZE_DELTA_Y(x) ((x) << 16)
#define LCDIFV3_HSYN_PARA 0x18
#define HSYN_PARA_FP_H(x) ((x) & 0xffff)
#define HSYN_PARA_BP_H(x) ((x) << 16)
#define LCDIFV3_VSYN_PARA 0x1C
#define VSYN_PARA_FP_V(x) ((x) & 0xffff)
#define VSYN_PARA_BP_V(x) ((x) << 16)
#define LCDIFV3_VSYN_HSYN_WIDTH 0x20
#define VSYN_HSYN_PW_H(x) ((x) & 0xffff)
#define VSYN_HSYN_PW_V(x) ((x) << 16)
#define LCDIFV3_CTRLDESCL0_1 0x200
#define CTRLDESCL0_1_WIDTH(x) ((x) & 0xffff)
#define CTRLDESCL0_1_HEIGHT(x) ((x) << 16)
#define LCDIFV3_CTRLDESCL0_3 0x208
#define CTRLDESCL0_3_PITCH(x) ((x) & 0xFFFF)
#define LCDIFV3_CTRLDESCL_LOW0_4 0x20C
#define LCDIFV3_CTRLDESCL_HIGH0_4 0x210
#define LCDIFV3_CTRLDESCL0_5 0x214
#define CTRLDESCL0_5_YUV_FORMAT(x) (((x) & 0x3) << 14)
#define CTRLDESCL0_5_BPP(x) (((x) & 0xf) << 24)
#define BPP32_ARGB8888 0x9
#define CTRLDESCL0_5_SHADOW_LOAD_EN BIT(30)
#define CTRLDESCL0_5_EN BIT(31)
struct lcdifv3_priv {
void __iomem *base;
struct clk pix_clk;
struct power_domain pd;
struct udevice *panel;
struct udevice *bridge;
};
static void lcdifv3_set_mode(struct lcdifv3_priv *priv,
struct display_timing *timings)
{
u32 reg;
writel(DISP_SIZE_DELTA_X(timings->hactive.typ) |
DISP_SIZE_DELTA_Y(timings->vactive.typ),
priv->base + LCDIFV3_DISP_SIZE);
writel(HSYN_PARA_FP_H(timings->hfront_porch.typ) |
HSYN_PARA_BP_H(timings->hback_porch.typ),
priv->base + LCDIFV3_HSYN_PARA);
writel(VSYN_PARA_BP_V(timings->vback_porch.typ) |
VSYN_PARA_FP_V(timings->vfront_porch.typ),
priv->base + LCDIFV3_VSYN_PARA);
writel(VSYN_HSYN_PW_H(timings->hsync_len.typ) |
VSYN_HSYN_PW_V(timings->vsync_len.typ),
priv->base + LCDIFV3_VSYN_HSYN_WIDTH);
writel(CTRLDESCL0_1_WIDTH(timings->hactive.typ) |
CTRLDESCL0_1_HEIGHT(timings->vactive.typ),
priv->base + LCDIFV3_CTRLDESCL0_1);
if (timings->flags & DISPLAY_FLAGS_HSYNC_LOW)
writel(CTRL_INV_HS, priv->base + LCDIFV3_CTRL_SET);
else
writel(CTRL_INV_HS, priv->base + LCDIFV3_CTRL_CLR);
if (timings->flags & DISPLAY_FLAGS_VSYNC_LOW)
writel(CTRL_INV_VS, priv->base + LCDIFV3_CTRL_SET);
else
writel(CTRL_INV_VS, priv->base + LCDIFV3_CTRL_CLR);
if (timings->flags & DISPLAY_FLAGS_DE_LOW)
writel(CTRL_INV_DE, priv->base + LCDIFV3_CTRL_SET);
else
writel(CTRL_INV_DE, priv->base + LCDIFV3_CTRL_CLR);
if (timings->flags & DISPLAY_FLAGS_PIXDATA_POSEDGE)
writel(CTRL_INV_PXCK, priv->base + LCDIFV3_CTRL_SET);
else
writel(CTRL_INV_PXCK, priv->base + LCDIFV3_CTRL_CLR);
writel(0, priv->base + LCDIFV3_DISP_PARA);
reg = readl(priv->base + LCDIFV3_CTRLDESCL0_5);
reg &= ~(CTRLDESCL0_5_BPP(0xf) | CTRLDESCL0_5_YUV_FORMAT(0x3));
reg |= CTRLDESCL0_5_BPP(BPP32_ARGB8888);
writel(reg, priv->base + LCDIFV3_CTRLDESCL0_5);
}
static void lcdifv3_enable_controller(struct lcdifv3_priv *priv)
{
u32 reg;
reg = readl(priv->base + LCDIFV3_DISP_PARA);
reg |= DISP_PARA_DISP_ON;
writel(reg, priv->base + LCDIFV3_DISP_PARA);
reg = readl(priv->base + LCDIFV3_CTRLDESCL0_5);
reg |= CTRLDESCL0_5_EN;
writel(reg, priv->base + LCDIFV3_CTRLDESCL0_5);
}
static int lcdifv3_video_sync(struct udevice *dev)
{
struct lcdifv3_priv *priv = dev_get_priv(dev);
u32 reg;
reg = readl(priv->base + LCDIFV3_CTRLDESCL0_5);
reg |= CTRLDESCL0_5_SHADOW_LOAD_EN;
writel(reg, priv->base + LCDIFV3_CTRLDESCL0_5);
return 0;
}
static void lcdifv3_init(struct udevice *dev, struct display_timing *timings)
{
struct video_uc_plat *plat = dev_get_uclass_plat(dev);
struct lcdifv3_priv *priv = dev_get_priv(dev);
clk_set_rate(&priv->pix_clk, timings->pixelclock.typ);
writel(CTRL_SW_RESET | CTRL_CLK_GATE, priv->base + LCDIFV3_CTRL_CLR);
udelay(10);
lcdifv3_set_mode(priv, timings);
writel(plat->base & 0xFFFFFFFF, priv->base + LCDIFV3_CTRLDESCL_LOW0_4);
writel(plat->base >> 32, priv->base + LCDIFV3_CTRLDESCL_HIGH0_4);
writel(CTRLDESCL0_3_PITCH(timings->hactive.typ * 4), /* 32bpp */
priv->base + LCDIFV3_CTRLDESCL0_3);
lcdifv3_enable_controller(priv);
}
static int lcdifv3_video_probe(struct udevice *dev)
{
struct video_uc_plat *plat = dev_get_uclass_plat(dev);
struct video_priv *uc_priv = dev_get_uclass_priv(dev);
struct lcdifv3_priv *priv = dev_get_priv(dev);
struct clk axi_clk, disp_axi_clk;
struct display_timing timings;
u32 fb_start, fb_end;
int ret;
ret = power_domain_get(dev, &priv->pd);
if (ret < 0)
return ret;
ret = clk_get_by_name(dev, "pix", &priv->pix_clk);
if (ret < 0)
return ret;
ret = clk_get_by_name(dev, "axi", &axi_clk);
if (ret < 0)
return ret;
ret = clk_get_by_name(dev, "disp_axi", &disp_axi_clk);
if (ret < 0)
return ret;
ret = power_domain_on(&priv->pd);
if (ret)
return ret;
ret = clk_enable(&priv->pix_clk);
if (ret)
goto dis_pd;
ret = clk_enable(&axi_clk);
if (ret)
goto dis_pix_clk;
ret = clk_enable(&disp_axi_clk);
if (ret)
goto dis_axi_clk;
priv->base = dev_remap_addr(dev);
if (!priv->base) {
ret = -EINVAL;
goto dis_clks;
}
/* Attach bridge */
ret = uclass_get_device_by_endpoint(UCLASS_VIDEO_BRIDGE, dev,
-1, -1, &priv->bridge);
if (ret)
goto dis_clks;
ret = video_bridge_attach(priv->bridge);
if (ret)
goto dis_clks;
ret = video_bridge_set_backlight(priv->bridge, 80);
if (ret)
goto dis_clks;
/* Attach panels */
ret = uclass_get_device_by_endpoint(UCLASS_PANEL, priv->bridge,
1, -1, &priv->panel);
if (ret) {
ret = uclass_get_device_by_endpoint(UCLASS_PANEL, priv->bridge,
2, -1, &priv->panel);
if (ret)
goto dis_clks;
}
ret = panel_get_display_timing(priv->panel, &timings);
if (ret) {
ret = ofnode_decode_display_timing(dev_ofnode(priv->panel),
0, &timings);
if (ret) {
printf("Cannot decode panel timings (%d)\n", ret);
goto dis_clks;
}
}
lcdifv3_init(dev, &timings);
/* Only support 32bpp for now */
uc_priv->bpix = VIDEO_BPP32;
uc_priv->xsize = timings.hactive.typ;
uc_priv->ysize = timings.vactive.typ;
/* Enable dcache for the frame buffer */
fb_start = plat->base & ~(MMU_SECTION_SIZE - 1);
fb_end = ALIGN(plat->base + plat->size, 1 << MMU_SECTION_SHIFT);
mmu_set_region_dcache_behaviour(fb_start, fb_end - fb_start,
DCACHE_WRITEBACK);
video_set_flush_dcache(dev, true);
return 0;
dis_clks:
clk_disable(&disp_axi_clk);
dis_axi_clk:
clk_disable(&axi_clk);
dis_pix_clk:
clk_disable(&priv->pix_clk);
dis_pd:
power_domain_off(&priv->pd);
return ret;
}
static int lcdifv3_video_bind(struct udevice *dev)
{
struct video_uc_plat *plat = dev_get_uclass_plat(dev);
/* Max size supported by LCDIF */
plat->size = 1920 * 1080 * VNBYTES(VIDEO_BPP32);
return 0;
}
static const struct udevice_id lcdifv3_video_ids[] = {
{ .compatible = "fsl,imx8mp-lcdif" },
{ }
};
static struct video_ops lcdifv3_video_ops = {
.video_sync = lcdifv3_video_sync,
};
U_BOOT_DRIVER(lcdifv3_video) = {
.name = "lcdif",
.id = UCLASS_VIDEO,
.of_match = lcdifv3_video_ids,
.bind = lcdifv3_video_bind,
.ops = &lcdifv3_video_ops,
.probe = lcdifv3_video_probe,
.priv_auto = sizeof(struct lcdifv3_priv),
.flags = DM_FLAG_PRE_RELOC | DM_FLAG_OS_PREPARE,
};
|