blob: 116473c2360aa06e19741097043c7b3e87129611 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0+
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * i.MX drm driver - LVDS display bridge
4 *
5 * Copyright (C) 2012 Sascha Hauer, Pengutronix
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 */
7
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00008#include <linux/clk.h>
9#include <linux/component.h>
David Brazdil0f672f62019-12-10 10:32:29 +000010#include <linux/mfd/syscon.h>
11#include <linux/mfd/syscon/imx6q-iomuxc-gpr.h>
12#include <linux/module.h>
13#include <linux/of_device.h>
14#include <linux/of_graph.h>
15#include <linux/regmap.h>
16#include <linux/videodev2.h>
17
18#include <video/of_display_timing.h>
19#include <video/of_videomode.h>
20
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000021#include <drm/drm_atomic.h>
22#include <drm/drm_atomic_helper.h>
23#include <drm/drm_fb_helper.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000024#include <drm/drm_of.h>
25#include <drm/drm_panel.h>
David Brazdil0f672f62019-12-10 10:32:29 +000026#include <drm/drm_print.h>
27#include <drm/drm_probe_helper.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000028
29#include "imx-drm.h"
30
31#define DRIVER_NAME "imx-ldb"
32
33#define LDB_CH0_MODE_EN_TO_DI0 (1 << 0)
34#define LDB_CH0_MODE_EN_TO_DI1 (3 << 0)
35#define LDB_CH0_MODE_EN_MASK (3 << 0)
36#define LDB_CH1_MODE_EN_TO_DI0 (1 << 2)
37#define LDB_CH1_MODE_EN_TO_DI1 (3 << 2)
38#define LDB_CH1_MODE_EN_MASK (3 << 2)
39#define LDB_SPLIT_MODE_EN (1 << 4)
40#define LDB_DATA_WIDTH_CH0_24 (1 << 5)
41#define LDB_BIT_MAP_CH0_JEIDA (1 << 6)
42#define LDB_DATA_WIDTH_CH1_24 (1 << 7)
43#define LDB_BIT_MAP_CH1_JEIDA (1 << 8)
44#define LDB_DI0_VS_POL_ACT_LOW (1 << 9)
45#define LDB_DI1_VS_POL_ACT_LOW (1 << 10)
46#define LDB_BGREF_RMODE_INT (1 << 15)
47
48struct imx_ldb;
49
50struct imx_ldb_channel {
51 struct imx_ldb *ldb;
52 struct drm_connector connector;
53 struct drm_encoder encoder;
54
55 /* Defines what is connected to the ldb, only one at a time */
56 struct drm_panel *panel;
57 struct drm_bridge *bridge;
58
59 struct device_node *child;
60 struct i2c_adapter *ddc;
61 int chno;
62 void *edid;
63 int edid_len;
64 struct drm_display_mode mode;
65 int mode_valid;
66 u32 bus_format;
67 u32 bus_flags;
68};
69
70static inline struct imx_ldb_channel *con_to_imx_ldb_ch(struct drm_connector *c)
71{
72 return container_of(c, struct imx_ldb_channel, connector);
73}
74
75static inline struct imx_ldb_channel *enc_to_imx_ldb_ch(struct drm_encoder *e)
76{
77 return container_of(e, struct imx_ldb_channel, encoder);
78}
79
80struct bus_mux {
81 int reg;
82 int shift;
83 int mask;
84};
85
86struct imx_ldb {
87 struct regmap *regmap;
88 struct device *dev;
89 struct imx_ldb_channel channel[2];
90 struct clk *clk[2]; /* our own clock */
91 struct clk *clk_sel[4]; /* parent of display clock */
92 struct clk *clk_parent[4]; /* original parent of clk_sel */
93 struct clk *clk_pll[2]; /* upstream clock we can adjust */
94 u32 ldb_ctrl;
95 const struct bus_mux *lvds_mux;
96};
97
98static void imx_ldb_ch_set_bus_format(struct imx_ldb_channel *imx_ldb_ch,
99 u32 bus_format)
100{
101 struct imx_ldb *ldb = imx_ldb_ch->ldb;
102 int dual = ldb->ldb_ctrl & LDB_SPLIT_MODE_EN;
103
104 switch (bus_format) {
105 case MEDIA_BUS_FMT_RGB666_1X7X3_SPWG:
106 break;
107 case MEDIA_BUS_FMT_RGB888_1X7X4_SPWG:
108 if (imx_ldb_ch->chno == 0 || dual)
109 ldb->ldb_ctrl |= LDB_DATA_WIDTH_CH0_24;
110 if (imx_ldb_ch->chno == 1 || dual)
111 ldb->ldb_ctrl |= LDB_DATA_WIDTH_CH1_24;
112 break;
113 case MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA:
114 if (imx_ldb_ch->chno == 0 || dual)
115 ldb->ldb_ctrl |= LDB_DATA_WIDTH_CH0_24 |
116 LDB_BIT_MAP_CH0_JEIDA;
117 if (imx_ldb_ch->chno == 1 || dual)
118 ldb->ldb_ctrl |= LDB_DATA_WIDTH_CH1_24 |
119 LDB_BIT_MAP_CH1_JEIDA;
120 break;
121 }
122}
123
124static int imx_ldb_connector_get_modes(struct drm_connector *connector)
125{
126 struct imx_ldb_channel *imx_ldb_ch = con_to_imx_ldb_ch(connector);
David Brazdil0f672f62019-12-10 10:32:29 +0000127 int num_modes;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000128
David Brazdil0f672f62019-12-10 10:32:29 +0000129 num_modes = drm_panel_get_modes(imx_ldb_ch->panel);
130 if (num_modes > 0)
131 return num_modes;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000132
133 if (!imx_ldb_ch->edid && imx_ldb_ch->ddc)
134 imx_ldb_ch->edid = drm_get_edid(connector, imx_ldb_ch->ddc);
135
136 if (imx_ldb_ch->edid) {
137 drm_connector_update_edid_property(connector,
138 imx_ldb_ch->edid);
139 num_modes = drm_add_edid_modes(connector, imx_ldb_ch->edid);
140 }
141
142 if (imx_ldb_ch->mode_valid) {
143 struct drm_display_mode *mode;
144
145 mode = drm_mode_create(connector->dev);
146 if (!mode)
147 return -EINVAL;
148 drm_mode_copy(mode, &imx_ldb_ch->mode);
149 mode->type |= DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED;
150 drm_mode_probed_add(connector, mode);
151 num_modes++;
152 }
153
154 return num_modes;
155}
156
157static struct drm_encoder *imx_ldb_connector_best_encoder(
158 struct drm_connector *connector)
159{
160 struct imx_ldb_channel *imx_ldb_ch = con_to_imx_ldb_ch(connector);
161
162 return &imx_ldb_ch->encoder;
163}
164
165static void imx_ldb_set_clock(struct imx_ldb *ldb, int mux, int chno,
166 unsigned long serial_clk, unsigned long di_clk)
167{
168 int ret;
169
170 dev_dbg(ldb->dev, "%s: now: %ld want: %ld\n", __func__,
171 clk_get_rate(ldb->clk_pll[chno]), serial_clk);
172 clk_set_rate(ldb->clk_pll[chno], serial_clk);
173
174 dev_dbg(ldb->dev, "%s after: %ld\n", __func__,
175 clk_get_rate(ldb->clk_pll[chno]));
176
177 dev_dbg(ldb->dev, "%s: now: %ld want: %ld\n", __func__,
178 clk_get_rate(ldb->clk[chno]),
179 (long int)di_clk);
180 clk_set_rate(ldb->clk[chno], di_clk);
181
182 dev_dbg(ldb->dev, "%s after: %ld\n", __func__,
183 clk_get_rate(ldb->clk[chno]));
184
185 /* set display clock mux to LDB input clock */
186 ret = clk_set_parent(ldb->clk_sel[mux], ldb->clk[chno]);
187 if (ret)
188 dev_err(ldb->dev,
189 "unable to set di%d parent clock to ldb_di%d\n", mux,
190 chno);
191}
192
193static void imx_ldb_encoder_enable(struct drm_encoder *encoder)
194{
195 struct imx_ldb_channel *imx_ldb_ch = enc_to_imx_ldb_ch(encoder);
196 struct imx_ldb *ldb = imx_ldb_ch->ldb;
197 int dual = ldb->ldb_ctrl & LDB_SPLIT_MODE_EN;
198 int mux = drm_of_encoder_active_port_id(imx_ldb_ch->child, encoder);
199
Olivier Deprez0e641232021-09-23 10:07:05 +0200200 if (mux < 0 || mux >= ARRAY_SIZE(ldb->clk_sel)) {
201 dev_warn(ldb->dev, "%s: invalid mux %d\n", __func__, mux);
202 return;
203 }
204
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000205 drm_panel_prepare(imx_ldb_ch->panel);
206
207 if (dual) {
208 clk_set_parent(ldb->clk_sel[mux], ldb->clk[0]);
209 clk_set_parent(ldb->clk_sel[mux], ldb->clk[1]);
210
211 clk_prepare_enable(ldb->clk[0]);
212 clk_prepare_enable(ldb->clk[1]);
213 } else {
214 clk_set_parent(ldb->clk_sel[mux], ldb->clk[imx_ldb_ch->chno]);
215 }
216
217 if (imx_ldb_ch == &ldb->channel[0] || dual) {
218 ldb->ldb_ctrl &= ~LDB_CH0_MODE_EN_MASK;
219 if (mux == 0 || ldb->lvds_mux)
220 ldb->ldb_ctrl |= LDB_CH0_MODE_EN_TO_DI0;
221 else if (mux == 1)
222 ldb->ldb_ctrl |= LDB_CH0_MODE_EN_TO_DI1;
223 }
224 if (imx_ldb_ch == &ldb->channel[1] || dual) {
225 ldb->ldb_ctrl &= ~LDB_CH1_MODE_EN_MASK;
226 if (mux == 1 || ldb->lvds_mux)
227 ldb->ldb_ctrl |= LDB_CH1_MODE_EN_TO_DI1;
228 else if (mux == 0)
229 ldb->ldb_ctrl |= LDB_CH1_MODE_EN_TO_DI0;
230 }
231
232 if (ldb->lvds_mux) {
233 const struct bus_mux *lvds_mux = NULL;
234
235 if (imx_ldb_ch == &ldb->channel[0])
236 lvds_mux = &ldb->lvds_mux[0];
237 else if (imx_ldb_ch == &ldb->channel[1])
238 lvds_mux = &ldb->lvds_mux[1];
239
240 regmap_update_bits(ldb->regmap, lvds_mux->reg, lvds_mux->mask,
241 mux << lvds_mux->shift);
242 }
243
244 regmap_write(ldb->regmap, IOMUXC_GPR2, ldb->ldb_ctrl);
245
246 drm_panel_enable(imx_ldb_ch->panel);
247}
248
249static void
250imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder,
251 struct drm_crtc_state *crtc_state,
252 struct drm_connector_state *connector_state)
253{
254 struct imx_ldb_channel *imx_ldb_ch = enc_to_imx_ldb_ch(encoder);
255 struct drm_display_mode *mode = &crtc_state->adjusted_mode;
256 struct imx_ldb *ldb = imx_ldb_ch->ldb;
257 int dual = ldb->ldb_ctrl & LDB_SPLIT_MODE_EN;
258 unsigned long serial_clk;
259 unsigned long di_clk = mode->clock * 1000;
260 int mux = drm_of_encoder_active_port_id(imx_ldb_ch->child, encoder);
261 u32 bus_format = imx_ldb_ch->bus_format;
262
Olivier Deprez0e641232021-09-23 10:07:05 +0200263 if (mux < 0 || mux >= ARRAY_SIZE(ldb->clk_sel)) {
264 dev_warn(ldb->dev, "%s: invalid mux %d\n", __func__, mux);
265 return;
266 }
267
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000268 if (mode->clock > 170000) {
269 dev_warn(ldb->dev,
270 "%s: mode exceeds 170 MHz pixel clock\n", __func__);
271 }
272 if (mode->clock > 85000 && !dual) {
273 dev_warn(ldb->dev,
274 "%s: mode exceeds 85 MHz pixel clock\n", __func__);
275 }
276
277 if (dual) {
278 serial_clk = 3500UL * mode->clock;
279 imx_ldb_set_clock(ldb, mux, 0, serial_clk, di_clk);
280 imx_ldb_set_clock(ldb, mux, 1, serial_clk, di_clk);
281 } else {
282 serial_clk = 7000UL * mode->clock;
283 imx_ldb_set_clock(ldb, mux, imx_ldb_ch->chno, serial_clk,
284 di_clk);
285 }
286
287 /* FIXME - assumes straight connections DI0 --> CH0, DI1 --> CH1 */
288 if (imx_ldb_ch == &ldb->channel[0] || dual) {
289 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
290 ldb->ldb_ctrl |= LDB_DI0_VS_POL_ACT_LOW;
291 else if (mode->flags & DRM_MODE_FLAG_PVSYNC)
292 ldb->ldb_ctrl &= ~LDB_DI0_VS_POL_ACT_LOW;
293 }
294 if (imx_ldb_ch == &ldb->channel[1] || dual) {
295 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
296 ldb->ldb_ctrl |= LDB_DI1_VS_POL_ACT_LOW;
297 else if (mode->flags & DRM_MODE_FLAG_PVSYNC)
298 ldb->ldb_ctrl &= ~LDB_DI1_VS_POL_ACT_LOW;
299 }
300
301 if (!bus_format) {
302 struct drm_connector *connector = connector_state->connector;
303 struct drm_display_info *di = &connector->display_info;
304
305 if (di->num_bus_formats)
306 bus_format = di->bus_formats[0];
307 }
308 imx_ldb_ch_set_bus_format(imx_ldb_ch, bus_format);
309}
310
311static void imx_ldb_encoder_disable(struct drm_encoder *encoder)
312{
313 struct imx_ldb_channel *imx_ldb_ch = enc_to_imx_ldb_ch(encoder);
314 struct imx_ldb *ldb = imx_ldb_ch->ldb;
Olivier Deprez0e641232021-09-23 10:07:05 +0200315 int dual = ldb->ldb_ctrl & LDB_SPLIT_MODE_EN;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000316 int mux, ret;
317
318 drm_panel_disable(imx_ldb_ch->panel);
319
Olivier Deprez0e641232021-09-23 10:07:05 +0200320 if (imx_ldb_ch == &ldb->channel[0] || dual)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000321 ldb->ldb_ctrl &= ~LDB_CH0_MODE_EN_MASK;
Olivier Deprez0e641232021-09-23 10:07:05 +0200322 if (imx_ldb_ch == &ldb->channel[1] || dual)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000323 ldb->ldb_ctrl &= ~LDB_CH1_MODE_EN_MASK;
324
325 regmap_write(ldb->regmap, IOMUXC_GPR2, ldb->ldb_ctrl);
326
Olivier Deprez0e641232021-09-23 10:07:05 +0200327 if (dual) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000328 clk_disable_unprepare(ldb->clk[0]);
329 clk_disable_unprepare(ldb->clk[1]);
330 }
331
332 if (ldb->lvds_mux) {
333 const struct bus_mux *lvds_mux = NULL;
334
335 if (imx_ldb_ch == &ldb->channel[0])
336 lvds_mux = &ldb->lvds_mux[0];
337 else if (imx_ldb_ch == &ldb->channel[1])
338 lvds_mux = &ldb->lvds_mux[1];
339
340 regmap_read(ldb->regmap, lvds_mux->reg, &mux);
341 mux &= lvds_mux->mask;
342 mux >>= lvds_mux->shift;
343 } else {
344 mux = (imx_ldb_ch == &ldb->channel[0]) ? 0 : 1;
345 }
346
347 /* set display clock mux back to original input clock */
348 ret = clk_set_parent(ldb->clk_sel[mux], ldb->clk_parent[mux]);
349 if (ret)
350 dev_err(ldb->dev,
351 "unable to set di%d parent clock to original parent\n",
352 mux);
353
354 drm_panel_unprepare(imx_ldb_ch->panel);
355}
356
357static int imx_ldb_encoder_atomic_check(struct drm_encoder *encoder,
358 struct drm_crtc_state *crtc_state,
359 struct drm_connector_state *conn_state)
360{
361 struct imx_crtc_state *imx_crtc_state = to_imx_crtc_state(crtc_state);
362 struct imx_ldb_channel *imx_ldb_ch = enc_to_imx_ldb_ch(encoder);
363 struct drm_display_info *di = &conn_state->connector->display_info;
364 u32 bus_format = imx_ldb_ch->bus_format;
365
366 /* Bus format description in DT overrides connector display info. */
367 if (!bus_format && di->num_bus_formats) {
368 bus_format = di->bus_formats[0];
369 imx_crtc_state->bus_flags = di->bus_flags;
370 } else {
371 bus_format = imx_ldb_ch->bus_format;
372 imx_crtc_state->bus_flags = imx_ldb_ch->bus_flags;
373 }
374 switch (bus_format) {
375 case MEDIA_BUS_FMT_RGB666_1X7X3_SPWG:
376 imx_crtc_state->bus_format = MEDIA_BUS_FMT_RGB666_1X18;
377 break;
378 case MEDIA_BUS_FMT_RGB888_1X7X4_SPWG:
379 case MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA:
380 imx_crtc_state->bus_format = MEDIA_BUS_FMT_RGB888_1X24;
381 break;
382 default:
383 return -EINVAL;
384 }
385
386 imx_crtc_state->di_hsync_pin = 2;
387 imx_crtc_state->di_vsync_pin = 3;
388
389 return 0;
390}
391
392
393static const struct drm_connector_funcs imx_ldb_connector_funcs = {
394 .fill_modes = drm_helper_probe_single_connector_modes,
395 .destroy = imx_drm_connector_destroy,
396 .reset = drm_atomic_helper_connector_reset,
397 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
398 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
399};
400
401static const struct drm_connector_helper_funcs imx_ldb_connector_helper_funcs = {
402 .get_modes = imx_ldb_connector_get_modes,
403 .best_encoder = imx_ldb_connector_best_encoder,
404};
405
406static const struct drm_encoder_funcs imx_ldb_encoder_funcs = {
407 .destroy = imx_drm_encoder_destroy,
408};
409
410static const struct drm_encoder_helper_funcs imx_ldb_encoder_helper_funcs = {
411 .atomic_mode_set = imx_ldb_encoder_atomic_mode_set,
412 .enable = imx_ldb_encoder_enable,
413 .disable = imx_ldb_encoder_disable,
414 .atomic_check = imx_ldb_encoder_atomic_check,
415};
416
417static int imx_ldb_get_clk(struct imx_ldb *ldb, int chno)
418{
419 char clkname[16];
420
421 snprintf(clkname, sizeof(clkname), "di%d", chno);
422 ldb->clk[chno] = devm_clk_get(ldb->dev, clkname);
423 if (IS_ERR(ldb->clk[chno]))
424 return PTR_ERR(ldb->clk[chno]);
425
426 snprintf(clkname, sizeof(clkname), "di%d_pll", chno);
427 ldb->clk_pll[chno] = devm_clk_get(ldb->dev, clkname);
428
429 return PTR_ERR_OR_ZERO(ldb->clk_pll[chno]);
430}
431
432static int imx_ldb_register(struct drm_device *drm,
433 struct imx_ldb_channel *imx_ldb_ch)
434{
435 struct imx_ldb *ldb = imx_ldb_ch->ldb;
436 struct drm_encoder *encoder = &imx_ldb_ch->encoder;
437 int ret;
438
439 ret = imx_drm_encoder_parse_of(drm, encoder, imx_ldb_ch->child);
440 if (ret)
441 return ret;
442
443 ret = imx_ldb_get_clk(ldb, imx_ldb_ch->chno);
444 if (ret)
445 return ret;
446
447 if (ldb->ldb_ctrl & LDB_SPLIT_MODE_EN) {
448 ret = imx_ldb_get_clk(ldb, 1);
449 if (ret)
450 return ret;
451 }
452
453 drm_encoder_helper_add(encoder, &imx_ldb_encoder_helper_funcs);
454 drm_encoder_init(drm, encoder, &imx_ldb_encoder_funcs,
455 DRM_MODE_ENCODER_LVDS, NULL);
456
457 if (imx_ldb_ch->bridge) {
458 ret = drm_bridge_attach(&imx_ldb_ch->encoder,
459 imx_ldb_ch->bridge, NULL);
460 if (ret) {
461 DRM_ERROR("Failed to initialize bridge with drm\n");
462 return ret;
463 }
464 } else {
465 /*
466 * We want to add the connector whenever there is no bridge
467 * that brings its own, not only when there is a panel. For
468 * historical reasons, the ldb driver can also work without
469 * a panel.
470 */
471 drm_connector_helper_add(&imx_ldb_ch->connector,
472 &imx_ldb_connector_helper_funcs);
David Brazdil0f672f62019-12-10 10:32:29 +0000473 drm_connector_init_with_ddc(drm, &imx_ldb_ch->connector,
474 &imx_ldb_connector_funcs,
475 DRM_MODE_CONNECTOR_LVDS,
476 imx_ldb_ch->ddc);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000477 drm_connector_attach_encoder(&imx_ldb_ch->connector, encoder);
478 }
479
480 if (imx_ldb_ch->panel) {
481 ret = drm_panel_attach(imx_ldb_ch->panel,
482 &imx_ldb_ch->connector);
483 if (ret)
484 return ret;
485 }
486
487 return 0;
488}
489
490enum {
491 LVDS_BIT_MAP_SPWG,
492 LVDS_BIT_MAP_JEIDA
493};
494
495struct imx_ldb_bit_mapping {
496 u32 bus_format;
497 u32 datawidth;
498 const char * const mapping;
499};
500
501static const struct imx_ldb_bit_mapping imx_ldb_bit_mappings[] = {
502 { MEDIA_BUS_FMT_RGB666_1X7X3_SPWG, 18, "spwg" },
503 { MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, 24, "spwg" },
504 { MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA, 24, "jeida" },
505};
506
507static u32 of_get_bus_format(struct device *dev, struct device_node *np)
508{
509 const char *bm;
510 u32 datawidth = 0;
511 int ret, i;
512
513 ret = of_property_read_string(np, "fsl,data-mapping", &bm);
514 if (ret < 0)
515 return ret;
516
517 of_property_read_u32(np, "fsl,data-width", &datawidth);
518
519 for (i = 0; i < ARRAY_SIZE(imx_ldb_bit_mappings); i++) {
520 if (!strcasecmp(bm, imx_ldb_bit_mappings[i].mapping) &&
521 datawidth == imx_ldb_bit_mappings[i].datawidth)
522 return imx_ldb_bit_mappings[i].bus_format;
523 }
524
525 dev_err(dev, "invalid data mapping: %d-bit \"%s\"\n", datawidth, bm);
526
527 return -ENOENT;
528}
529
530static struct bus_mux imx6q_lvds_mux[2] = {
531 {
532 .reg = IOMUXC_GPR3,
533 .shift = 6,
534 .mask = IMX6Q_GPR3_LVDS0_MUX_CTL_MASK,
535 }, {
536 .reg = IOMUXC_GPR3,
537 .shift = 8,
538 .mask = IMX6Q_GPR3_LVDS1_MUX_CTL_MASK,
539 }
540};
541
542/*
543 * For a device declaring compatible = "fsl,imx6q-ldb", "fsl,imx53-ldb",
544 * of_match_device will walk through this list and take the first entry
545 * matching any of its compatible values. Therefore, the more generic
546 * entries (in this case fsl,imx53-ldb) need to be ordered last.
547 */
548static const struct of_device_id imx_ldb_dt_ids[] = {
549 { .compatible = "fsl,imx6q-ldb", .data = imx6q_lvds_mux, },
550 { .compatible = "fsl,imx53-ldb", .data = NULL, },
551 { }
552};
553MODULE_DEVICE_TABLE(of, imx_ldb_dt_ids);
554
555static int imx_ldb_panel_ddc(struct device *dev,
556 struct imx_ldb_channel *channel, struct device_node *child)
557{
558 struct device_node *ddc_node;
559 const u8 *edidp;
560 int ret;
561
562 ddc_node = of_parse_phandle(child, "ddc-i2c-bus", 0);
563 if (ddc_node) {
564 channel->ddc = of_find_i2c_adapter_by_node(ddc_node);
565 of_node_put(ddc_node);
566 if (!channel->ddc) {
567 dev_warn(dev, "failed to get ddc i2c adapter\n");
568 return -EPROBE_DEFER;
569 }
570 }
571
572 if (!channel->ddc) {
573 /* if no DDC available, fallback to hardcoded EDID */
574 dev_dbg(dev, "no ddc available\n");
575
576 edidp = of_get_property(child, "edid",
577 &channel->edid_len);
578 if (edidp) {
579 channel->edid = kmemdup(edidp,
580 channel->edid_len,
581 GFP_KERNEL);
582 } else if (!channel->panel) {
583 /* fallback to display-timings node */
584 ret = of_get_drm_display_mode(child,
585 &channel->mode,
586 &channel->bus_flags,
587 OF_USE_NATIVE_MODE);
588 if (!ret)
589 channel->mode_valid = 1;
590 }
591 }
592 return 0;
593}
594
595static int imx_ldb_bind(struct device *dev, struct device *master, void *data)
596{
597 struct drm_device *drm = data;
598 struct device_node *np = dev->of_node;
599 const struct of_device_id *of_id =
600 of_match_device(imx_ldb_dt_ids, dev);
601 struct device_node *child;
602 struct imx_ldb *imx_ldb;
603 int dual;
604 int ret;
605 int i;
606
Olivier Deprez0e641232021-09-23 10:07:05 +0200607 imx_ldb = dev_get_drvdata(dev);
608 memset(imx_ldb, 0, sizeof(*imx_ldb));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000609
610 imx_ldb->regmap = syscon_regmap_lookup_by_phandle(np, "gpr");
611 if (IS_ERR(imx_ldb->regmap)) {
612 dev_err(dev, "failed to get parent regmap\n");
613 return PTR_ERR(imx_ldb->regmap);
614 }
615
616 /* disable LDB by resetting the control register to POR default */
617 regmap_write(imx_ldb->regmap, IOMUXC_GPR2, 0);
618
619 imx_ldb->dev = dev;
620
621 if (of_id)
622 imx_ldb->lvds_mux = of_id->data;
623
624 dual = of_property_read_bool(np, "fsl,dual-channel");
625 if (dual)
626 imx_ldb->ldb_ctrl |= LDB_SPLIT_MODE_EN;
627
628 /*
629 * There are three different possible clock mux configurations:
630 * i.MX53: ipu1_di0_sel, ipu1_di1_sel
631 * i.MX6q: ipu1_di0_sel, ipu1_di1_sel, ipu2_di0_sel, ipu2_di1_sel
632 * i.MX6dl: ipu1_di0_sel, ipu1_di1_sel, lcdif_sel
633 * Map them all to di0_sel...di3_sel.
634 */
635 for (i = 0; i < 4; i++) {
636 char clkname[16];
637
638 sprintf(clkname, "di%d_sel", i);
639 imx_ldb->clk_sel[i] = devm_clk_get(imx_ldb->dev, clkname);
640 if (IS_ERR(imx_ldb->clk_sel[i])) {
641 ret = PTR_ERR(imx_ldb->clk_sel[i]);
642 imx_ldb->clk_sel[i] = NULL;
643 break;
644 }
645
646 imx_ldb->clk_parent[i] = clk_get_parent(imx_ldb->clk_sel[i]);
647 }
648 if (i == 0)
649 return ret;
650
651 for_each_child_of_node(np, child) {
652 struct imx_ldb_channel *channel;
653 int bus_format;
654
655 ret = of_property_read_u32(child, "reg", &i);
David Brazdil0f672f62019-12-10 10:32:29 +0000656 if (ret || i < 0 || i > 1) {
657 ret = -EINVAL;
658 goto free_child;
659 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000660
661 if (!of_device_is_available(child))
662 continue;
663
664 if (dual && i > 0) {
665 dev_warn(dev, "dual-channel mode, ignoring second output\n");
666 continue;
667 }
668
669 channel = &imx_ldb->channel[i];
670 channel->ldb = imx_ldb;
671 channel->chno = i;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000672
673 /*
674 * The output port is port@4 with an external 4-port mux or
675 * port@2 with the internal 2-port mux.
676 */
677 ret = drm_of_find_panel_or_bridge(child,
678 imx_ldb->lvds_mux ? 4 : 2, 0,
679 &channel->panel, &channel->bridge);
680 if (ret && ret != -ENODEV)
David Brazdil0f672f62019-12-10 10:32:29 +0000681 goto free_child;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000682
683 /* panel ddc only if there is no bridge */
684 if (!channel->bridge) {
685 ret = imx_ldb_panel_ddc(dev, channel, child);
686 if (ret)
David Brazdil0f672f62019-12-10 10:32:29 +0000687 goto free_child;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000688 }
689
690 bus_format = of_get_bus_format(dev, child);
691 if (bus_format == -EINVAL) {
692 /*
693 * If no bus format was specified in the device tree,
694 * we can still get it from the connected panel later.
695 */
696 if (channel->panel && channel->panel->funcs &&
697 channel->panel->funcs->get_modes)
698 bus_format = 0;
699 }
700 if (bus_format < 0) {
701 dev_err(dev, "could not determine data mapping: %d\n",
702 bus_format);
David Brazdil0f672f62019-12-10 10:32:29 +0000703 ret = bus_format;
704 goto free_child;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000705 }
706 channel->bus_format = bus_format;
David Brazdil0f672f62019-12-10 10:32:29 +0000707 channel->child = child;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000708
709 ret = imx_ldb_register(drm, channel);
David Brazdil0f672f62019-12-10 10:32:29 +0000710 if (ret) {
711 channel->child = NULL;
712 goto free_child;
713 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000714 }
715
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000716 return 0;
David Brazdil0f672f62019-12-10 10:32:29 +0000717
718free_child:
719 of_node_put(child);
720 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000721}
722
723static void imx_ldb_unbind(struct device *dev, struct device *master,
724 void *data)
725{
726 struct imx_ldb *imx_ldb = dev_get_drvdata(dev);
727 int i;
728
729 for (i = 0; i < 2; i++) {
730 struct imx_ldb_channel *channel = &imx_ldb->channel[i];
731
732 if (channel->panel)
733 drm_panel_detach(channel->panel);
734
735 kfree(channel->edid);
736 i2c_put_adapter(channel->ddc);
737 }
738}
739
740static const struct component_ops imx_ldb_ops = {
741 .bind = imx_ldb_bind,
742 .unbind = imx_ldb_unbind,
743};
744
745static int imx_ldb_probe(struct platform_device *pdev)
746{
Olivier Deprez0e641232021-09-23 10:07:05 +0200747 struct imx_ldb *imx_ldb;
748
749 imx_ldb = devm_kzalloc(&pdev->dev, sizeof(*imx_ldb), GFP_KERNEL);
750 if (!imx_ldb)
751 return -ENOMEM;
752
753 platform_set_drvdata(pdev, imx_ldb);
754
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000755 return component_add(&pdev->dev, &imx_ldb_ops);
756}
757
758static int imx_ldb_remove(struct platform_device *pdev)
759{
760 component_del(&pdev->dev, &imx_ldb_ops);
761 return 0;
762}
763
764static struct platform_driver imx_ldb_driver = {
765 .probe = imx_ldb_probe,
766 .remove = imx_ldb_remove,
767 .driver = {
768 .of_match_table = imx_ldb_dt_ids,
769 .name = DRIVER_NAME,
770 },
771};
772
773module_platform_driver(imx_ldb_driver);
774
775MODULE_DESCRIPTION("i.MX LVDS driver");
776MODULE_AUTHOR("Sascha Hauer, Pengutronix");
777MODULE_LICENSE("GPL");
778MODULE_ALIAS("platform:" DRIVER_NAME);