gpio: stm32: create include file for driver private data
[platform/kernel/u-boot.git] / drivers / video / stm32 / stm32_dsi.c
1 // 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 #define LOG_CATEGORY UCLASS_VIDEO_BRIDGE
12
13 #include <common.h>
14 #include <clk.h>
15 #include <dm.h>
16 #include <dsi_host.h>
17 #include <log.h>
18 #include <mipi_dsi.h>
19 #include <panel.h>
20 #include <reset.h>
21 #include <video.h>
22 #include <video_bridge.h>
23 #include <asm/io.h>
24 #include <dm/device-internal.h>
25 #include <dm/device_compat.h>
26 #include <dm/lists.h>
27 #include <linux/bitops.h>
28 #include <linux/iopoll.h>
29 #include <power/regulator.h>
30
31 #define HWVER_130                       0x31333000      /* IP version 1.30 */
32 #define HWVER_131                       0x31333100      /* IP version 1.31 */
33
34 /* DSI digital registers & bit definitions */
35 #define DSI_VERSION                     0x00
36 #define VERSION                         GENMASK(31, 8)
37
38 /*
39  * DSI wrapper registers & bit definitions
40  * Note: registers are named as in the Reference Manual
41  */
42 #define DSI_WCFGR       0x0400          /* Wrapper ConFiGuration Reg */
43 #define WCFGR_DSIM      BIT(0)          /* DSI Mode */
44 #define WCFGR_COLMUX    GENMASK(3, 1)   /* COLor MUltipleXing */
45
46 #define DSI_WCR         0x0404          /* Wrapper Control Reg */
47 #define WCR_DSIEN       BIT(3)          /* DSI ENable */
48
49 #define DSI_WISR        0x040C          /* Wrapper Interrupt and Status Reg */
50 #define WISR_PLLLS      BIT(8)          /* PLL Lock Status */
51 #define WISR_RRS        BIT(12)         /* Regulator Ready Status */
52
53 #define DSI_WPCR0       0x0418          /* Wrapper Phy Conf Reg 0 */
54 #define WPCR0_UIX4      GENMASK(5, 0)   /* Unit Interval X 4 */
55 #define WPCR0_TDDL      BIT(16)         /* Turn Disable Data Lanes */
56
57 #define DSI_WRPCR       0x0430          /* Wrapper Regulator & Pll Ctrl Reg */
58 #define WRPCR_PLLEN     BIT(0)          /* PLL ENable */
59 #define WRPCR_NDIV      GENMASK(8, 2)   /* pll loop DIVision Factor */
60 #define WRPCR_IDF       GENMASK(14, 11) /* pll Input Division Factor */
61 #define WRPCR_ODF       GENMASK(17, 16) /* pll Output Division Factor */
62 #define WRPCR_REGEN     BIT(24)         /* REGulator ENable */
63 #define WRPCR_BGREN     BIT(28)         /* BandGap Reference ENable */
64 #define IDF_MIN         1
65 #define IDF_MAX         7
66 #define NDIV_MIN        10
67 #define NDIV_MAX        125
68 #define ODF_MIN         1
69 #define ODF_MAX         8
70
71 /* dsi color format coding according to the datasheet */
72 enum dsi_color {
73         DSI_RGB565_CONF1,
74         DSI_RGB565_CONF2,
75         DSI_RGB565_CONF3,
76         DSI_RGB666_CONF1,
77         DSI_RGB666_CONF2,
78         DSI_RGB888,
79 };
80
81 #define LANE_MIN_KBPS   31250
82 #define LANE_MAX_KBPS   500000
83
84 /* Timeout for regulator on/off, pll lock/unlock & fifo empty */
85 #define TIMEOUT_US      200000
86
87 struct stm32_dsi_priv {
88         struct mipi_dsi_device device;
89         void __iomem *base;
90         struct udevice *panel;
91         u32 pllref_clk;
92         u32 hw_version;
93         int lane_min_kbps;
94         int lane_max_kbps;
95         struct udevice *vdd_reg;
96         struct udevice *dsi_host;
97 };
98
99 static inline void dsi_write(struct stm32_dsi_priv *dsi, u32 reg, u32 val)
100 {
101         writel(val, dsi->base + reg);
102 }
103
104 static inline u32 dsi_read(struct stm32_dsi_priv *dsi, u32 reg)
105 {
106         return readl(dsi->base + reg);
107 }
108
109 static inline void dsi_set(struct stm32_dsi_priv *dsi, u32 reg, u32 mask)
110 {
111         dsi_write(dsi, reg, dsi_read(dsi, reg) | mask);
112 }
113
114 static inline void dsi_clear(struct stm32_dsi_priv *dsi, u32 reg, u32 mask)
115 {
116         dsi_write(dsi, reg, dsi_read(dsi, reg) & ~mask);
117 }
118
119 static inline void dsi_update_bits(struct stm32_dsi_priv *dsi, u32 reg,
120                                    u32 mask, u32 val)
121 {
122         dsi_write(dsi, reg, (dsi_read(dsi, reg) & ~mask) | val);
123 }
124
125 static enum dsi_color dsi_color_from_mipi(u32 fmt)
126 {
127         switch (fmt) {
128         case MIPI_DSI_FMT_RGB888:
129                 return DSI_RGB888;
130         case MIPI_DSI_FMT_RGB666:
131                 return DSI_RGB666_CONF2;
132         case MIPI_DSI_FMT_RGB666_PACKED:
133                 return DSI_RGB666_CONF1;
134         case MIPI_DSI_FMT_RGB565:
135                 return DSI_RGB565_CONF1;
136         default:
137                 log_err("MIPI color invalid, so we use rgb888\n");
138         }
139         return DSI_RGB888;
140 }
141
142 static int dsi_pll_get_clkout_khz(int clkin_khz, int idf, int ndiv, int odf)
143 {
144         int divisor = idf * odf;
145
146         /* prevent from division by 0 */
147         if (!divisor)
148                 return 0;
149
150         return DIV_ROUND_CLOSEST(clkin_khz * ndiv, divisor);
151 }
152
153 static int dsi_pll_get_params(struct stm32_dsi_priv *dsi,
154                               int clkin_khz, int clkout_khz,
155                               int *idf, int *ndiv, int *odf)
156 {
157         int i, o, n, n_min, n_max;
158         int fvco_min, fvco_max, delta, best_delta; /* all in khz */
159
160         /* Early checks preventing division by 0 & odd results */
161         if (clkin_khz <= 0 || clkout_khz <= 0)
162                 return -EINVAL;
163
164         fvco_min = dsi->lane_min_kbps * 2 * ODF_MAX;
165         fvco_max = dsi->lane_max_kbps * 2 * ODF_MIN;
166
167         best_delta = 1000000; /* big started value (1000000khz) */
168
169         for (i = IDF_MIN; i <= IDF_MAX; i++) {
170                 /* Compute ndiv range according to Fvco */
171                 n_min = ((fvco_min * i) / (2 * clkin_khz)) + 1;
172                 n_max = (fvco_max * i) / (2 * clkin_khz);
173
174                 /* No need to continue idf loop if we reach ndiv max */
175                 if (n_min >= NDIV_MAX)
176                         break;
177
178                 /* Clamp ndiv to valid values */
179                 if (n_min < NDIV_MIN)
180                         n_min = NDIV_MIN;
181                 if (n_max > NDIV_MAX)
182                         n_max = NDIV_MAX;
183
184                 for (o = ODF_MIN; o <= ODF_MAX; o *= 2) {
185                         n = DIV_ROUND_CLOSEST(i * o * clkout_khz, clkin_khz);
186                         /* Check ndiv according to vco range */
187                         if (n < n_min || n > n_max)
188                                 continue;
189                         /* Check if new delta is better & saves parameters */
190                         delta = dsi_pll_get_clkout_khz(clkin_khz, i, n, o) -
191                                 clkout_khz;
192                         if (delta < 0)
193                                 delta = -delta;
194                         if (delta < best_delta) {
195                                 *idf = i;
196                                 *ndiv = n;
197                                 *odf = o;
198                                 best_delta = delta;
199                         }
200                         /* fast return in case of "perfect result" */
201                         if (!delta)
202                                 return 0;
203                 }
204         }
205
206         return 0;
207 }
208
209 static int dsi_phy_init(void *priv_data)
210 {
211         struct mipi_dsi_device *device = priv_data;
212         struct udevice *dev = device->dev;
213         struct stm32_dsi_priv *dsi = dev_get_priv(dev);
214         u32 val;
215         int ret;
216
217         dev_dbg(dev, "Initialize DSI physical layer\n");
218
219         /* Enable the regulator */
220         dsi_set(dsi, DSI_WRPCR, WRPCR_REGEN | WRPCR_BGREN);
221         ret = readl_poll_timeout(dsi->base + DSI_WISR, val, val & WISR_RRS,
222                                  TIMEOUT_US);
223         if (ret) {
224                 dev_dbg(dev, "!TIMEOUT! waiting REGU\n");
225                 return ret;
226         }
227
228         /* Enable the DSI PLL & wait for its lock */
229         dsi_set(dsi, DSI_WRPCR, WRPCR_PLLEN);
230         ret = readl_poll_timeout(dsi->base + DSI_WISR, val, val & WISR_PLLLS,
231                                  TIMEOUT_US);
232         if (ret) {
233                 dev_dbg(dev, "!TIMEOUT! waiting PLL\n");
234                 return ret;
235         }
236
237         return 0;
238 }
239
240 static void dsi_phy_post_set_mode(void *priv_data, unsigned long mode_flags)
241 {
242         struct mipi_dsi_device *device = priv_data;
243         struct udevice *dev = device->dev;
244         struct stm32_dsi_priv *dsi = dev_get_priv(dev);
245
246         dev_dbg(dev, "Set mode %p enable %ld\n", dsi,
247                 mode_flags & MIPI_DSI_MODE_VIDEO);
248
249         if (!dsi)
250                 return;
251
252         /*
253          * DSI wrapper must be enabled in video mode & disabled in command mode.
254          * If wrapper is enabled in command mode, the display controller
255          * register access will hang.
256          */
257
258         if (mode_flags & MIPI_DSI_MODE_VIDEO)
259                 dsi_set(dsi, DSI_WCR, WCR_DSIEN);
260         else
261                 dsi_clear(dsi, DSI_WCR, WCR_DSIEN);
262 }
263
264 static int dsi_get_lane_mbps(void *priv_data, struct display_timing *timings,
265                              u32 lanes, u32 format, unsigned int *lane_mbps)
266 {
267         struct mipi_dsi_device *device = priv_data;
268         struct udevice *dev = device->dev;
269         struct stm32_dsi_priv *dsi = dev_get_priv(dev);
270         int idf, ndiv, odf, pll_in_khz, pll_out_khz;
271         int ret, bpp;
272         u32 val;
273
274         /* Update lane capabilities according to hw 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         dev_dbg(dev, "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
335 static 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
341 static 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_plat(priv->panel);
356         mplat->device = &priv->device;
357         device->lanes = mplat->lanes;
358         device->format = mplat->format;
359         device->mode_flags = mplat->mode_flags;
360
361         ret = panel_get_display_timing(priv->panel, &timings);
362         if (ret) {
363                 ret = ofnode_decode_display_timing(dev_ofnode(priv->panel),
364                                                    0, &timings);
365                 if (ret) {
366                         dev_err(dev, "decode display timing error %d\n", ret);
367                         return ret;
368                 }
369         }
370
371         ret = uclass_get_device(UCLASS_DSI_HOST, 0, &priv->dsi_host);
372         if (ret) {
373                 dev_err(dev, "No video dsi host detected %d\n", ret);
374                 return ret;
375         }
376
377         ret = dsi_host_init(priv->dsi_host, device, &timings, 2,
378                             &dsi_stm_phy_ops);
379         if (ret) {
380                 dev_err(dev, "failed to initialize mipi dsi host\n");
381                 return ret;
382         }
383
384         return 0;
385 }
386
387 static int stm32_dsi_set_backlight(struct udevice *dev, int percent)
388 {
389         struct stm32_dsi_priv *priv = dev_get_priv(dev);
390         int ret;
391
392         ret = panel_enable_backlight(priv->panel);
393         if (ret) {
394                 dev_err(dev, "panel %s enable backlight error %d\n",
395                         priv->panel->name, ret);
396                 return ret;
397         }
398
399         ret = dsi_host_enable(priv->dsi_host);
400         if (ret) {
401                 dev_err(dev, "failed to enable mipi dsi host\n");
402                 return ret;
403         }
404
405         return 0;
406 }
407
408 static int stm32_dsi_bind(struct udevice *dev)
409 {
410         int ret;
411
412         ret = device_bind_driver_to_node(dev, "dw_mipi_dsi", "dsihost",
413                                          dev_ofnode(dev), NULL);
414         if (ret)
415                 return ret;
416
417         return dm_scan_fdt_dev(dev);
418 }
419
420 static int stm32_dsi_probe(struct udevice *dev)
421 {
422         struct stm32_dsi_priv *priv = dev_get_priv(dev);
423         struct mipi_dsi_device *device = &priv->device;
424         struct reset_ctl rst;
425         struct clk clk;
426         int ret;
427
428         device->dev = dev;
429
430         priv->base = (void *)dev_read_addr(dev);
431         if ((fdt_addr_t)priv->base == FDT_ADDR_T_NONE) {
432                 dev_err(dev, "dsi dt register address error\n");
433                 return -EINVAL;
434         }
435
436         if (IS_ENABLED(CONFIG_DM_REGULATOR)) {
437                 ret =  device_get_supply_regulator(dev, "phy-dsi-supply",
438                                                    &priv->vdd_reg);
439                 if (ret && ret != -ENOENT) {
440                         dev_err(dev, "Warning: cannot get phy dsi supply\n");
441                         return -ENODEV;
442                 }
443
444                 if (ret != -ENOENT) {
445                         ret = regulator_set_enable(priv->vdd_reg, true);
446                         if (ret)
447                                 return ret;
448                 }
449         }
450
451         ret = clk_get_by_name(device->dev, "pclk", &clk);
452         if (ret) {
453                 dev_err(dev, "peripheral clock get error %d\n", ret);
454                 goto err_reg;
455         }
456
457         ret = clk_enable(&clk);
458         if (ret) {
459                 dev_err(dev, "peripheral clock enable error %d\n", ret);
460                 goto err_reg;
461         }
462
463         ret = clk_get_by_name(dev, "ref", &clk);
464         if (ret) {
465                 dev_err(dev, "pll reference clock get error %d\n", ret);
466                 goto err_clk;
467         }
468
469         priv->pllref_clk = (unsigned int)clk_get_rate(&clk);
470
471         ret = reset_get_by_index(device->dev, 0, &rst);
472         if (ret) {
473                 dev_err(dev, "missing dsi hardware reset\n");
474                 goto err_clk;
475         }
476
477         /* Reset */
478         reset_deassert(&rst);
479
480         /* check hardware version */
481         priv->hw_version = dsi_read(priv, DSI_VERSION) & VERSION;
482         if (priv->hw_version != HWVER_130 &&
483             priv->hw_version != HWVER_131) {
484                 dev_err(dev, "DSI version 0x%x not supported\n", priv->hw_version);
485                 dev_dbg(dev, "remove and unbind all DSI child\n");
486                 device_chld_remove(dev, NULL, DM_REMOVE_NORMAL);
487                 device_chld_unbind(dev, NULL);
488                 ret = -ENODEV;
489                 goto err_clk;
490         }
491
492         return 0;
493 err_clk:
494         clk_disable(&clk);
495 err_reg:
496         if (IS_ENABLED(CONFIG_DM_REGULATOR))
497                 regulator_set_enable(priv->vdd_reg, false);
498
499         return ret;
500 }
501
502 struct video_bridge_ops stm32_dsi_ops = {
503         .attach = stm32_dsi_attach,
504         .set_backlight = stm32_dsi_set_backlight,
505 };
506
507 static const struct udevice_id stm32_dsi_ids[] = {
508         { .compatible = "st,stm32-dsi"},
509         { }
510 };
511
512 U_BOOT_DRIVER(stm32_dsi) = {
513         .name                           = "stm32-display-dsi",
514         .id                             = UCLASS_VIDEO_BRIDGE,
515         .of_match                       = stm32_dsi_ids,
516         .bind                           = stm32_dsi_bind,
517         .probe                          = stm32_dsi_probe,
518         .ops                            = &stm32_dsi_ops,
519         .priv_auto              = sizeof(struct stm32_dsi_priv),
520 };