blob: 04796435f117dcf39ca205302087d4421ab6650c [file] [log] [blame]
Yannick Fertré1334cf22019-10-07 15:29:07 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2019 STMicroelectronics - All Rights Reserved
4 * Author(s): Philippe Cornu <philippe.cornu@st.com> for STMicroelectronics.
5 * Yannick Fertre <yannick.fertre@st.com> for STMicroelectronics.
6 *
7 * This MIPI DSI controller driver is based on the Linux Kernel driver from
8 * drivers/gpu/drm/stm/dw_mipi_dsi-stm.c.
9 */
10
11#include <common.h>
12#include <clk.h>
13#include <dm.h>
14#include <dsi_host.h>
Simon Glass0f2af882020-05-10 11:40:05 -060015#include <log.h>
Yannick Fertré1334cf22019-10-07 15:29:07 +020016#include <mipi_dsi.h>
17#include <panel.h>
18#include <reset.h>
19#include <video.h>
20#include <video_bridge.h>
21#include <asm/io.h>
22#include <asm/arch/gpio.h>
23#include <dm/device-internal.h>
Simon Glass9bc15642020-02-03 07:36:16 -070024#include <dm/device_compat.h>
Patrick Delaunayc44ae812019-11-12 15:39:58 +010025#include <dm/lists.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060026#include <linux/bitops.h>
Yannick Fertré1334cf22019-10-07 15:29:07 +020027#include <linux/iopoll.h>
28#include <power/regulator.h>
29
30#define HWVER_130 0x31333000 /* IP version 1.30 */
31#define HWVER_131 0x31333100 /* IP version 1.31 */
32
33/* DSI digital registers & bit definitions */
34#define DSI_VERSION 0x00
35#define VERSION GENMASK(31, 8)
36
37/*
38 * DSI wrapper registers & bit definitions
39 * Note: registers are named as in the Reference Manual
40 */
41#define DSI_WCFGR 0x0400 /* Wrapper ConFiGuration Reg */
42#define WCFGR_DSIM BIT(0) /* DSI Mode */
43#define WCFGR_COLMUX GENMASK(3, 1) /* COLor MUltipleXing */
44
45#define DSI_WCR 0x0404 /* Wrapper Control Reg */
46#define WCR_DSIEN BIT(3) /* DSI ENable */
47
48#define DSI_WISR 0x040C /* Wrapper Interrupt and Status Reg */
49#define WISR_PLLLS BIT(8) /* PLL Lock Status */
50#define WISR_RRS BIT(12) /* Regulator Ready Status */
51
52#define DSI_WPCR0 0x0418 /* Wrapper Phy Conf Reg 0 */
53#define WPCR0_UIX4 GENMASK(5, 0) /* Unit Interval X 4 */
54#define WPCR0_TDDL BIT(16) /* Turn Disable Data Lanes */
55
56#define DSI_WRPCR 0x0430 /* Wrapper Regulator & Pll Ctrl Reg */
57#define WRPCR_PLLEN BIT(0) /* PLL ENable */
58#define WRPCR_NDIV GENMASK(8, 2) /* pll loop DIVision Factor */
59#define WRPCR_IDF GENMASK(14, 11) /* pll Input Division Factor */
60#define WRPCR_ODF GENMASK(17, 16) /* pll Output Division Factor */
61#define WRPCR_REGEN BIT(24) /* REGulator ENable */
62#define WRPCR_BGREN BIT(28) /* BandGap Reference ENable */
63#define IDF_MIN 1
64#define IDF_MAX 7
65#define NDIV_MIN 10
66#define NDIV_MAX 125
67#define ODF_MIN 1
68#define ODF_MAX 8
69
70/* dsi color format coding according to the datasheet */
71enum dsi_color {
72 DSI_RGB565_CONF1,
73 DSI_RGB565_CONF2,
74 DSI_RGB565_CONF3,
75 DSI_RGB666_CONF1,
76 DSI_RGB666_CONF2,
77 DSI_RGB888,
78};
79
80#define LANE_MIN_KBPS 31250
81#define LANE_MAX_KBPS 500000
82
83/* Timeout for regulator on/off, pll lock/unlock & fifo empty */
84#define TIMEOUT_US 200000
85
86struct stm32_dsi_priv {
87 struct mipi_dsi_device device;
88 void __iomem *base;
89 struct udevice *panel;
90 u32 pllref_clk;
91 u32 hw_version;
92 int lane_min_kbps;
93 int lane_max_kbps;
94 struct udevice *vdd_reg;
95 struct udevice *dsi_host;
96};
97
98static inline void dsi_write(struct stm32_dsi_priv *dsi, u32 reg, u32 val)
99{
100 writel(val, dsi->base + reg);
101}
102
103static inline u32 dsi_read(struct stm32_dsi_priv *dsi, u32 reg)
104{
105 return readl(dsi->base + reg);
106}
107
108static inline void dsi_set(struct stm32_dsi_priv *dsi, u32 reg, u32 mask)
109{
110 dsi_write(dsi, reg, dsi_read(dsi, reg) | mask);
111}
112
113static inline void dsi_clear(struct stm32_dsi_priv *dsi, u32 reg, u32 mask)
114{
115 dsi_write(dsi, reg, dsi_read(dsi, reg) & ~mask);
116}
117
118static inline void dsi_update_bits(struct stm32_dsi_priv *dsi, u32 reg,
119 u32 mask, u32 val)
120{
121 dsi_write(dsi, reg, (dsi_read(dsi, reg) & ~mask) | val);
122}
123
124static enum dsi_color dsi_color_from_mipi(u32 fmt)
125{
126 switch (fmt) {
127 case MIPI_DSI_FMT_RGB888:
128 return DSI_RGB888;
129 case MIPI_DSI_FMT_RGB666:
130 return DSI_RGB666_CONF2;
131 case MIPI_DSI_FMT_RGB666_PACKED:
132 return DSI_RGB666_CONF1;
133 case MIPI_DSI_FMT_RGB565:
134 return DSI_RGB565_CONF1;
135 default:
136 pr_err("MIPI color invalid, so we use rgb888\n");
137 }
138 return DSI_RGB888;
139}
140
141static int dsi_pll_get_clkout_khz(int clkin_khz, int idf, int ndiv, int odf)
142{
143 int divisor = idf * odf;
144
145 /* prevent from division by 0 */
146 if (!divisor)
147 return 0;
148
149 return DIV_ROUND_CLOSEST(clkin_khz * ndiv, divisor);
150}
151
152static int dsi_pll_get_params(struct stm32_dsi_priv *dsi,
153 int clkin_khz, int clkout_khz,
154 int *idf, int *ndiv, int *odf)
155{
156 int i, o, n, n_min, n_max;
157 int fvco_min, fvco_max, delta, best_delta; /* all in khz */
158
159 /* Early checks preventing division by 0 & odd results */
160 if (clkin_khz <= 0 || clkout_khz <= 0)
161 return -EINVAL;
162
163 fvco_min = dsi->lane_min_kbps * 2 * ODF_MAX;
164 fvco_max = dsi->lane_max_kbps * 2 * ODF_MIN;
165
166 best_delta = 1000000; /* big started value (1000000khz) */
167
168 for (i = IDF_MIN; i <= IDF_MAX; i++) {
169 /* Compute ndiv range according to Fvco */
170 n_min = ((fvco_min * i) / (2 * clkin_khz)) + 1;
171 n_max = (fvco_max * i) / (2 * clkin_khz);
172
173 /* No need to continue idf loop if we reach ndiv max */
174 if (n_min >= NDIV_MAX)
175 break;
176
177 /* Clamp ndiv to valid values */
178 if (n_min < NDIV_MIN)
179 n_min = NDIV_MIN;
180 if (n_max > NDIV_MAX)
181 n_max = NDIV_MAX;
182
183 for (o = ODF_MIN; o <= ODF_MAX; o *= 2) {
184 n = DIV_ROUND_CLOSEST(i * o * clkout_khz, clkin_khz);
185 /* Check ndiv according to vco range */
186 if (n < n_min || n > n_max)
187 continue;
188 /* Check if new delta is better & saves parameters */
189 delta = dsi_pll_get_clkout_khz(clkin_khz, i, n, o) -
190 clkout_khz;
191 if (delta < 0)
192 delta = -delta;
193 if (delta < best_delta) {
194 *idf = i;
195 *ndiv = n;
196 *odf = o;
197 best_delta = delta;
198 }
199 /* fast return in case of "perfect result" */
200 if (!delta)
201 return 0;
202 }
203 }
204
205 return 0;
206}
207
208static int dsi_phy_init(void *priv_data)
209{
210 struct mipi_dsi_device *device = priv_data;
211 struct udevice *dev = device->dev;
212 struct stm32_dsi_priv *dsi = dev_get_priv(dev);
213 u32 val;
214 int ret;
215
216 debug("Initialize DSI physical layer\n");
217
218 /* Enable the regulator */
219 dsi_set(dsi, DSI_WRPCR, WRPCR_REGEN | WRPCR_BGREN);
220 ret = readl_poll_timeout(dsi->base + DSI_WISR, val, val & WISR_RRS,
221 TIMEOUT_US);
222 if (ret) {
223 debug("!TIMEOUT! waiting REGU\n");
224 return ret;
225 }
226
227 /* Enable the DSI PLL & wait for its lock */
228 dsi_set(dsi, DSI_WRPCR, WRPCR_PLLEN);
229 ret = readl_poll_timeout(dsi->base + DSI_WISR, val, val & WISR_PLLLS,
230 TIMEOUT_US);
231 if (ret) {
232 debug("!TIMEOUT! waiting PLL\n");
233 return ret;
234 }
235
236 return 0;
237}
238
239static void dsi_phy_post_set_mode(void *priv_data, unsigned long mode_flags)
240{
241 struct mipi_dsi_device *device = priv_data;
242 struct udevice *dev = device->dev;
243 struct stm32_dsi_priv *dsi = dev_get_priv(dev);
244
245 debug("Set mode %p enable %ld\n", dsi,
246 mode_flags & MIPI_DSI_MODE_VIDEO);
247
248 if (!dsi)
249 return;
250
251 /*
252 * DSI wrapper must be enabled in video mode & disabled in command mode.
253 * If wrapper is enabled in command mode, the display controller
254 * register access will hang.
255 */
256
257 if (mode_flags & MIPI_DSI_MODE_VIDEO)
258 dsi_set(dsi, DSI_WCR, WCR_DSIEN);
259 else
260 dsi_clear(dsi, DSI_WCR, WCR_DSIEN);
261}
262
263static int dsi_get_lane_mbps(void *priv_data, struct display_timing *timings,
264 u32 lanes, u32 format, unsigned int *lane_mbps)
265{
266 struct mipi_dsi_device *device = priv_data;
267 struct udevice *dev = device->dev;
268 struct stm32_dsi_priv *dsi = dev_get_priv(dev);
269 int idf, ndiv, odf, pll_in_khz, pll_out_khz;
270 int ret, bpp;
271 u32 val;
272
273 /* Update lane capabilities according to hw version */
274 dsi->hw_version = dsi_read(dsi, DSI_VERSION) & VERSION;
275 dsi->lane_min_kbps = LANE_MIN_KBPS;
276 dsi->lane_max_kbps = LANE_MAX_KBPS;
277 if (dsi->hw_version == HWVER_131) {
278 dsi->lane_min_kbps *= 2;
279 dsi->lane_max_kbps *= 2;
280 }
281
282 pll_in_khz = dsi->pllref_clk / 1000;
283
284 /* Compute requested pll out */
285 bpp = mipi_dsi_pixel_format_to_bpp(format);
286 pll_out_khz = (timings->pixelclock.typ / 1000) * bpp / lanes;
287 /* Add 20% to pll out to be higher than pixel bw (burst mode only) */
288 pll_out_khz = (pll_out_khz * 12) / 10;
289 if (pll_out_khz > dsi->lane_max_kbps) {
290 pll_out_khz = dsi->lane_max_kbps;
291 dev_warn(dev, "Warning max phy mbps is used\n");
292 }
293 if (pll_out_khz < dsi->lane_min_kbps) {
294 pll_out_khz = dsi->lane_min_kbps;
295 dev_warn(dev, "Warning min phy mbps is used\n");
296 }
297
298 /* Compute best pll parameters */
299 idf = 0;
300 ndiv = 0;
301 odf = 0;
302 ret = dsi_pll_get_params(dsi, pll_in_khz, pll_out_khz,
303 &idf, &ndiv, &odf);
304 if (ret) {
305 dev_err(dev, "Warning dsi_pll_get_params(): bad params\n");
306 return ret;
307 }
308
309 /* Get the adjusted pll out value */
310 pll_out_khz = dsi_pll_get_clkout_khz(pll_in_khz, idf, ndiv, odf);
311
312 /* Set the PLL division factors */
313 dsi_update_bits(dsi, DSI_WRPCR, WRPCR_NDIV | WRPCR_IDF | WRPCR_ODF,
314 (ndiv << 2) | (idf << 11) | ((ffs(odf) - 1) << 16));
315
316 /* Compute uix4 & set the bit period in high-speed mode */
317 val = 4000000 / pll_out_khz;
318 dsi_update_bits(dsi, DSI_WPCR0, WPCR0_UIX4, val);
319
320 /* Select video mode by resetting DSIM bit */
321 dsi_clear(dsi, DSI_WCFGR, WCFGR_DSIM);
322
323 /* Select the color coding */
324 dsi_update_bits(dsi, DSI_WCFGR, WCFGR_COLMUX,
325 dsi_color_from_mipi(format) << 1);
326
327 *lane_mbps = pll_out_khz / 1000;
328
329 debug("pll_in %ukHz pll_out %ukHz lane_mbps %uMHz\n",
330 pll_in_khz, pll_out_khz, *lane_mbps);
331
332 return 0;
333}
334
335static const struct mipi_dsi_phy_ops dsi_stm_phy_ops = {
336 .init = dsi_phy_init,
337 .get_lane_mbps = dsi_get_lane_mbps,
338 .post_set_mode = dsi_phy_post_set_mode,
339};
340
341static int stm32_dsi_attach(struct udevice *dev)
342{
343 struct stm32_dsi_priv *priv = dev_get_priv(dev);
344 struct mipi_dsi_device *device = &priv->device;
345 struct mipi_dsi_panel_plat *mplat;
346 struct display_timing timings;
347 int ret;
348
349 ret = uclass_first_device(UCLASS_PANEL, &priv->panel);
350 if (ret) {
351 dev_err(dev, "panel device error %d\n", ret);
352 return ret;
353 }
354
355 mplat = dev_get_platdata(priv->panel);
356 mplat->device = &priv->device;
357
358 ret = panel_get_display_timing(priv->panel, &timings);
359 if (ret) {
360 ret = fdtdec_decode_display_timing(gd->fdt_blob,
361 dev_of_offset(priv->panel),
362 0, &timings);
363 if (ret) {
364 dev_err(dev, "decode display timing error %d\n", ret);
365 return ret;
366 }
367 }
368
369 ret = uclass_get_device(UCLASS_DSI_HOST, 0, &priv->dsi_host);
370 if (ret) {
371 dev_err(dev, "No video dsi host detected %d\n", ret);
372 return ret;
373 }
374
375 ret = dsi_host_init(priv->dsi_host, device, &timings, 2,
376 &dsi_stm_phy_ops);
377 if (ret) {
378 dev_err(dev, "failed to initialize mipi dsi host\n");
379 return ret;
380 }
381
382 return 0;
383}
384
385static int stm32_dsi_set_backlight(struct udevice *dev, int percent)
386{
387 struct stm32_dsi_priv *priv = dev_get_priv(dev);
388 int ret;
389
390 ret = panel_enable_backlight(priv->panel);
391 if (ret) {
392 dev_err(dev, "panel %s enable backlight error %d\n",
393 priv->panel->name, ret);
394 return ret;
395 }
396
397 ret = dsi_host_enable(priv->dsi_host);
398 if (ret) {
399 dev_err(dev, "failed to enable mipi dsi host\n");
400 return ret;
401 }
402
403 return 0;
404}
405
Patrick Delaunayc44ae812019-11-12 15:39:58 +0100406static int stm32_dsi_bind(struct udevice *dev)
407{
408 int ret;
409
410 ret = device_bind_driver_to_node(dev, "dw_mipi_dsi", "dsihost",
411 dev_ofnode(dev), NULL);
412 if (ret)
413 return ret;
414
415 return dm_scan_fdt_dev(dev);
416}
417
Yannick Fertré1334cf22019-10-07 15:29:07 +0200418static int stm32_dsi_probe(struct udevice *dev)
419{
420 struct stm32_dsi_priv *priv = dev_get_priv(dev);
421 struct mipi_dsi_device *device = &priv->device;
422 struct reset_ctl rst;
423 struct clk clk;
424 int ret;
425
426 device->dev = dev;
427
428 priv->base = (void *)dev_read_addr(dev);
429 if ((fdt_addr_t)priv->base == FDT_ADDR_T_NONE) {
430 dev_err(dev, "dsi dt register address error\n");
431 return -EINVAL;
432 }
433
434 if (IS_ENABLED(CONFIG_DM_REGULATOR)) {
435 ret = device_get_supply_regulator(dev, "phy-dsi-supply",
436 &priv->vdd_reg);
437 if (ret && ret != -ENOENT) {
438 dev_err(dev, "Warning: cannot get phy dsi supply\n");
439 return -ENODEV;
440 }
441
442 if (ret != -ENOENT) {
443 ret = regulator_set_enable(priv->vdd_reg, true);
444 if (ret)
445 return ret;
446 }
447 }
448
449 ret = clk_get_by_name(device->dev, "pclk", &clk);
450 if (ret) {
451 dev_err(dev, "peripheral clock get error %d\n", ret);
452 goto err_reg;
453 }
454
455 ret = clk_enable(&clk);
456 if (ret) {
457 dev_err(dev, "peripheral clock enable error %d\n", ret);
458 goto err_reg;
459 }
460
461 ret = clk_get_by_name(dev, "ref", &clk);
462 if (ret) {
463 dev_err(dev, "pll reference clock get error %d\n", ret);
464 goto err_clk;
465 }
466
467 priv->pllref_clk = (unsigned int)clk_get_rate(&clk);
468
469 ret = reset_get_by_index(device->dev, 0, &rst);
470 if (ret) {
471 dev_err(dev, "missing dsi hardware reset\n");
472 goto err_clk;
473 }
474
475 /* Reset */
476 reset_deassert(&rst);
477
478 return 0;
479err_clk:
480 clk_disable(&clk);
481err_reg:
482 if (IS_ENABLED(CONFIG_DM_REGULATOR))
483 regulator_set_enable(priv->vdd_reg, false);
484
485 return ret;
486}
487
488struct video_bridge_ops stm32_dsi_ops = {
489 .attach = stm32_dsi_attach,
490 .set_backlight = stm32_dsi_set_backlight,
491};
492
493static const struct udevice_id stm32_dsi_ids[] = {
494 { .compatible = "st,stm32-dsi"},
495 { }
496};
497
498U_BOOT_DRIVER(stm32_dsi) = {
499 .name = "stm32-display-dsi",
500 .id = UCLASS_VIDEO_BRIDGE,
501 .of_match = stm32_dsi_ids,
Patrick Delaunayc44ae812019-11-12 15:39:58 +0100502 .bind = stm32_dsi_bind,
Yannick Fertré1334cf22019-10-07 15:29:07 +0200503 .probe = stm32_dsi_probe,
504 .ops = &stm32_dsi_ops,
505 .priv_auto_alloc_size = sizeof(struct stm32_dsi_priv),
506};