2 * i.MX drm driver - LVDS display bridge
4 * Copyright (C) 2012 Sascha Hauer, Pengutronix
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <linux/module.h>
17 #include <linux/clk.h>
18 #include <linux/component.h>
20 #include <drm/drm_atomic.h>
21 #include <drm/drm_atomic_helper.h>
22 #include <drm/drm_fb_helper.h>
23 #include <drm/drm_crtc_helper.h>
24 #include <drm/drm_of.h>
25 #include <drm/drm_panel.h>
26 #include <linux/mfd/syscon.h>
27 #include <linux/mfd/syscon/imx6q-iomuxc-gpr.h>
28 #include <linux/of_device.h>
29 #include <linux/of_graph.h>
30 #include <video/of_display_timing.h>
31 #include <video/of_videomode.h>
32 #include <linux/regmap.h>
33 #include <linux/videodev2.h>
37 #define DRIVER_NAME "imx-ldb"
39 #define LDB_CH0_MODE_EN_TO_DI0 (1 << 0)
40 #define LDB_CH0_MODE_EN_TO_DI1 (3 << 0)
41 #define LDB_CH0_MODE_EN_MASK (3 << 0)
42 #define LDB_CH1_MODE_EN_TO_DI0 (1 << 2)
43 #define LDB_CH1_MODE_EN_TO_DI1 (3 << 2)
44 #define LDB_CH1_MODE_EN_MASK (3 << 2)
45 #define LDB_SPLIT_MODE_EN (1 << 4)
46 #define LDB_DATA_WIDTH_CH0_24 (1 << 5)
47 #define LDB_BIT_MAP_CH0_JEIDA (1 << 6)
48 #define LDB_DATA_WIDTH_CH1_24 (1 << 7)
49 #define LDB_BIT_MAP_CH1_JEIDA (1 << 8)
50 #define LDB_DI0_VS_POL_ACT_LOW (1 << 9)
51 #define LDB_DI1_VS_POL_ACT_LOW (1 << 10)
52 #define LDB_BGREF_RMODE_INT (1 << 15)
56 struct imx_ldb_channel
{
58 struct drm_connector connector
;
59 struct drm_encoder encoder
;
61 /* Defines what is connected to the ldb, only one at a time */
62 struct drm_panel
*panel
;
63 struct drm_bridge
*bridge
;
65 struct device_node
*child
;
66 struct i2c_adapter
*ddc
;
70 struct drm_display_mode mode
;
76 static inline struct imx_ldb_channel
*con_to_imx_ldb_ch(struct drm_connector
*c
)
78 return container_of(c
, struct imx_ldb_channel
, connector
);
81 static inline struct imx_ldb_channel
*enc_to_imx_ldb_ch(struct drm_encoder
*e
)
83 return container_of(e
, struct imx_ldb_channel
, encoder
);
93 struct regmap
*regmap
;
95 struct imx_ldb_channel channel
[2];
96 struct clk
*clk
[2]; /* our own clock */
97 struct clk
*clk_sel
[4]; /* parent of display clock */
98 struct clk
*clk_parent
[4]; /* original parent of clk_sel */
99 struct clk
*clk_pll
[2]; /* upstream clock we can adjust */
101 const struct bus_mux
*lvds_mux
;
104 static void imx_ldb_ch_set_bus_format(struct imx_ldb_channel
*imx_ldb_ch
,
107 struct imx_ldb
*ldb
= imx_ldb_ch
->ldb
;
108 int dual
= ldb
->ldb_ctrl
& LDB_SPLIT_MODE_EN
;
110 switch (bus_format
) {
111 case MEDIA_BUS_FMT_RGB666_1X7X3_SPWG
:
113 case MEDIA_BUS_FMT_RGB888_1X7X4_SPWG
:
114 if (imx_ldb_ch
->chno
== 0 || dual
)
115 ldb
->ldb_ctrl
|= LDB_DATA_WIDTH_CH0_24
;
116 if (imx_ldb_ch
->chno
== 1 || dual
)
117 ldb
->ldb_ctrl
|= LDB_DATA_WIDTH_CH1_24
;
119 case MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA
:
120 if (imx_ldb_ch
->chno
== 0 || dual
)
121 ldb
->ldb_ctrl
|= LDB_DATA_WIDTH_CH0_24
|
122 LDB_BIT_MAP_CH0_JEIDA
;
123 if (imx_ldb_ch
->chno
== 1 || dual
)
124 ldb
->ldb_ctrl
|= LDB_DATA_WIDTH_CH1_24
|
125 LDB_BIT_MAP_CH1_JEIDA
;
130 static int imx_ldb_connector_get_modes(struct drm_connector
*connector
)
132 struct imx_ldb_channel
*imx_ldb_ch
= con_to_imx_ldb_ch(connector
);
135 if (imx_ldb_ch
->panel
&& imx_ldb_ch
->panel
->funcs
&&
136 imx_ldb_ch
->panel
->funcs
->get_modes
) {
137 num_modes
= imx_ldb_ch
->panel
->funcs
->get_modes(imx_ldb_ch
->panel
);
142 if (!imx_ldb_ch
->edid
&& imx_ldb_ch
->ddc
)
143 imx_ldb_ch
->edid
= drm_get_edid(connector
, imx_ldb_ch
->ddc
);
145 if (imx_ldb_ch
->edid
) {
146 drm_mode_connector_update_edid_property(connector
,
148 num_modes
= drm_add_edid_modes(connector
, imx_ldb_ch
->edid
);
151 if (imx_ldb_ch
->mode_valid
) {
152 struct drm_display_mode
*mode
;
154 mode
= drm_mode_create(connector
->dev
);
157 drm_mode_copy(mode
, &imx_ldb_ch
->mode
);
158 mode
->type
|= DRM_MODE_TYPE_DRIVER
| DRM_MODE_TYPE_PREFERRED
;
159 drm_mode_probed_add(connector
, mode
);
166 static struct drm_encoder
*imx_ldb_connector_best_encoder(
167 struct drm_connector
*connector
)
169 struct imx_ldb_channel
*imx_ldb_ch
= con_to_imx_ldb_ch(connector
);
171 return &imx_ldb_ch
->encoder
;
174 static void imx_ldb_set_clock(struct imx_ldb
*ldb
, int mux
, int chno
,
175 unsigned long serial_clk
, unsigned long di_clk
)
179 dev_dbg(ldb
->dev
, "%s: now: %ld want: %ld\n", __func__
,
180 clk_get_rate(ldb
->clk_pll
[chno
]), serial_clk
);
181 clk_set_rate(ldb
->clk_pll
[chno
], serial_clk
);
183 dev_dbg(ldb
->dev
, "%s after: %ld\n", __func__
,
184 clk_get_rate(ldb
->clk_pll
[chno
]));
186 dev_dbg(ldb
->dev
, "%s: now: %ld want: %ld\n", __func__
,
187 clk_get_rate(ldb
->clk
[chno
]),
189 clk_set_rate(ldb
->clk
[chno
], di_clk
);
191 dev_dbg(ldb
->dev
, "%s after: %ld\n", __func__
,
192 clk_get_rate(ldb
->clk
[chno
]));
194 /* set display clock mux to LDB input clock */
195 ret
= clk_set_parent(ldb
->clk_sel
[mux
], ldb
->clk
[chno
]);
198 "unable to set di%d parent clock to ldb_di%d\n", mux
,
202 static void imx_ldb_encoder_enable(struct drm_encoder
*encoder
)
204 struct imx_ldb_channel
*imx_ldb_ch
= enc_to_imx_ldb_ch(encoder
);
205 struct imx_ldb
*ldb
= imx_ldb_ch
->ldb
;
206 int dual
= ldb
->ldb_ctrl
& LDB_SPLIT_MODE_EN
;
207 int mux
= drm_of_encoder_active_port_id(imx_ldb_ch
->child
, encoder
);
209 drm_panel_prepare(imx_ldb_ch
->panel
);
212 clk_set_parent(ldb
->clk_sel
[mux
], ldb
->clk
[0]);
213 clk_set_parent(ldb
->clk_sel
[mux
], ldb
->clk
[1]);
215 clk_prepare_enable(ldb
->clk
[0]);
216 clk_prepare_enable(ldb
->clk
[1]);
218 clk_set_parent(ldb
->clk_sel
[mux
], ldb
->clk
[imx_ldb_ch
->chno
]);
221 if (imx_ldb_ch
== &ldb
->channel
[0] || dual
) {
222 ldb
->ldb_ctrl
&= ~LDB_CH0_MODE_EN_MASK
;
223 if (mux
== 0 || ldb
->lvds_mux
)
224 ldb
->ldb_ctrl
|= LDB_CH0_MODE_EN_TO_DI0
;
226 ldb
->ldb_ctrl
|= LDB_CH0_MODE_EN_TO_DI1
;
228 if (imx_ldb_ch
== &ldb
->channel
[1] || dual
) {
229 ldb
->ldb_ctrl
&= ~LDB_CH1_MODE_EN_MASK
;
230 if (mux
== 1 || ldb
->lvds_mux
)
231 ldb
->ldb_ctrl
|= LDB_CH1_MODE_EN_TO_DI1
;
233 ldb
->ldb_ctrl
|= LDB_CH1_MODE_EN_TO_DI0
;
237 const struct bus_mux
*lvds_mux
= NULL
;
239 if (imx_ldb_ch
== &ldb
->channel
[0])
240 lvds_mux
= &ldb
->lvds_mux
[0];
241 else if (imx_ldb_ch
== &ldb
->channel
[1])
242 lvds_mux
= &ldb
->lvds_mux
[1];
244 regmap_update_bits(ldb
->regmap
, lvds_mux
->reg
, lvds_mux
->mask
,
245 mux
<< lvds_mux
->shift
);
248 regmap_write(ldb
->regmap
, IOMUXC_GPR2
, ldb
->ldb_ctrl
);
250 drm_panel_enable(imx_ldb_ch
->panel
);
254 imx_ldb_encoder_atomic_mode_set(struct drm_encoder
*encoder
,
255 struct drm_crtc_state
*crtc_state
,
256 struct drm_connector_state
*connector_state
)
258 struct imx_ldb_channel
*imx_ldb_ch
= enc_to_imx_ldb_ch(encoder
);
259 struct drm_display_mode
*mode
= &crtc_state
->adjusted_mode
;
260 struct imx_ldb
*ldb
= imx_ldb_ch
->ldb
;
261 int dual
= ldb
->ldb_ctrl
& LDB_SPLIT_MODE_EN
;
262 unsigned long serial_clk
;
263 unsigned long di_clk
= mode
->clock
* 1000;
264 int mux
= drm_of_encoder_active_port_id(imx_ldb_ch
->child
, encoder
);
265 u32 bus_format
= imx_ldb_ch
->bus_format
;
267 if (mode
->clock
> 170000) {
269 "%s: mode exceeds 170 MHz pixel clock\n", __func__
);
271 if (mode
->clock
> 85000 && !dual
) {
273 "%s: mode exceeds 85 MHz pixel clock\n", __func__
);
277 serial_clk
= 3500UL * mode
->clock
;
278 imx_ldb_set_clock(ldb
, mux
, 0, serial_clk
, di_clk
);
279 imx_ldb_set_clock(ldb
, mux
, 1, serial_clk
, di_clk
);
281 serial_clk
= 7000UL * mode
->clock
;
282 imx_ldb_set_clock(ldb
, mux
, imx_ldb_ch
->chno
, serial_clk
,
286 /* FIXME - assumes straight connections DI0 --> CH0, DI1 --> CH1 */
287 if (imx_ldb_ch
== &ldb
->channel
[0] || dual
) {
288 if (mode
->flags
& DRM_MODE_FLAG_NVSYNC
)
289 ldb
->ldb_ctrl
|= LDB_DI0_VS_POL_ACT_LOW
;
290 else if (mode
->flags
& DRM_MODE_FLAG_PVSYNC
)
291 ldb
->ldb_ctrl
&= ~LDB_DI0_VS_POL_ACT_LOW
;
293 if (imx_ldb_ch
== &ldb
->channel
[1] || dual
) {
294 if (mode
->flags
& DRM_MODE_FLAG_NVSYNC
)
295 ldb
->ldb_ctrl
|= LDB_DI1_VS_POL_ACT_LOW
;
296 else if (mode
->flags
& DRM_MODE_FLAG_PVSYNC
)
297 ldb
->ldb_ctrl
&= ~LDB_DI1_VS_POL_ACT_LOW
;
301 struct drm_connector
*connector
= connector_state
->connector
;
302 struct drm_display_info
*di
= &connector
->display_info
;
304 if (di
->num_bus_formats
)
305 bus_format
= di
->bus_formats
[0];
307 imx_ldb_ch_set_bus_format(imx_ldb_ch
, bus_format
);
310 static void imx_ldb_encoder_disable(struct drm_encoder
*encoder
)
312 struct imx_ldb_channel
*imx_ldb_ch
= enc_to_imx_ldb_ch(encoder
);
313 struct imx_ldb
*ldb
= imx_ldb_ch
->ldb
;
316 drm_panel_disable(imx_ldb_ch
->panel
);
318 if (imx_ldb_ch
== &ldb
->channel
[0])
319 ldb
->ldb_ctrl
&= ~LDB_CH0_MODE_EN_MASK
;
320 else if (imx_ldb_ch
== &ldb
->channel
[1])
321 ldb
->ldb_ctrl
&= ~LDB_CH1_MODE_EN_MASK
;
323 regmap_write(ldb
->regmap
, IOMUXC_GPR2
, ldb
->ldb_ctrl
);
325 if (ldb
->ldb_ctrl
& LDB_SPLIT_MODE_EN
) {
326 clk_disable_unprepare(ldb
->clk
[0]);
327 clk_disable_unprepare(ldb
->clk
[1]);
331 const struct bus_mux
*lvds_mux
= NULL
;
333 if (imx_ldb_ch
== &ldb
->channel
[0])
334 lvds_mux
= &ldb
->lvds_mux
[0];
335 else if (imx_ldb_ch
== &ldb
->channel
[1])
336 lvds_mux
= &ldb
->lvds_mux
[1];
338 regmap_read(ldb
->regmap
, lvds_mux
->reg
, &mux
);
339 mux
&= lvds_mux
->mask
;
340 mux
>>= lvds_mux
->shift
;
342 mux
= (imx_ldb_ch
== &ldb
->channel
[0]) ? 0 : 1;
345 /* set display clock mux back to original input clock */
346 ret
= clk_set_parent(ldb
->clk_sel
[mux
], ldb
->clk_parent
[mux
]);
349 "unable to set di%d parent clock to original parent\n",
352 drm_panel_unprepare(imx_ldb_ch
->panel
);
355 static int imx_ldb_encoder_atomic_check(struct drm_encoder
*encoder
,
356 struct drm_crtc_state
*crtc_state
,
357 struct drm_connector_state
*conn_state
)
359 struct imx_crtc_state
*imx_crtc_state
= to_imx_crtc_state(crtc_state
);
360 struct imx_ldb_channel
*imx_ldb_ch
= enc_to_imx_ldb_ch(encoder
);
361 struct drm_display_info
*di
= &conn_state
->connector
->display_info
;
362 u32 bus_format
= imx_ldb_ch
->bus_format
;
364 /* Bus format description in DT overrides connector display info. */
365 if (!bus_format
&& di
->num_bus_formats
) {
366 bus_format
= di
->bus_formats
[0];
367 imx_crtc_state
->bus_flags
= di
->bus_flags
;
369 bus_format
= imx_ldb_ch
->bus_format
;
370 imx_crtc_state
->bus_flags
= imx_ldb_ch
->bus_flags
;
372 switch (bus_format
) {
373 case MEDIA_BUS_FMT_RGB666_1X7X3_SPWG
:
374 imx_crtc_state
->bus_format
= MEDIA_BUS_FMT_RGB666_1X18
;
376 case MEDIA_BUS_FMT_RGB888_1X7X4_SPWG
:
377 case MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA
:
378 imx_crtc_state
->bus_format
= MEDIA_BUS_FMT_RGB888_1X24
;
384 imx_crtc_state
->di_hsync_pin
= 2;
385 imx_crtc_state
->di_vsync_pin
= 3;
391 static const struct drm_connector_funcs imx_ldb_connector_funcs
= {
392 .dpms
= drm_atomic_helper_connector_dpms
,
393 .fill_modes
= drm_helper_probe_single_connector_modes
,
394 .destroy
= imx_drm_connector_destroy
,
395 .reset
= drm_atomic_helper_connector_reset
,
396 .atomic_duplicate_state
= drm_atomic_helper_connector_duplicate_state
,
397 .atomic_destroy_state
= drm_atomic_helper_connector_destroy_state
,
400 static const struct drm_connector_helper_funcs imx_ldb_connector_helper_funcs
= {
401 .get_modes
= imx_ldb_connector_get_modes
,
402 .best_encoder
= imx_ldb_connector_best_encoder
,
405 static const struct drm_encoder_funcs imx_ldb_encoder_funcs
= {
406 .destroy
= imx_drm_encoder_destroy
,
409 static const struct drm_encoder_helper_funcs imx_ldb_encoder_helper_funcs
= {
410 .atomic_mode_set
= imx_ldb_encoder_atomic_mode_set
,
411 .enable
= imx_ldb_encoder_enable
,
412 .disable
= imx_ldb_encoder_disable
,
413 .atomic_check
= imx_ldb_encoder_atomic_check
,
416 static int imx_ldb_get_clk(struct imx_ldb
*ldb
, int chno
)
420 snprintf(clkname
, sizeof(clkname
), "di%d", chno
);
421 ldb
->clk
[chno
] = devm_clk_get(ldb
->dev
, clkname
);
422 if (IS_ERR(ldb
->clk
[chno
]))
423 return PTR_ERR(ldb
->clk
[chno
]);
425 snprintf(clkname
, sizeof(clkname
), "di%d_pll", chno
);
426 ldb
->clk_pll
[chno
] = devm_clk_get(ldb
->dev
, clkname
);
428 return PTR_ERR_OR_ZERO(ldb
->clk_pll
[chno
]);
431 static int imx_ldb_register(struct drm_device
*drm
,
432 struct imx_ldb_channel
*imx_ldb_ch
)
434 struct imx_ldb
*ldb
= imx_ldb_ch
->ldb
;
435 struct drm_encoder
*encoder
= &imx_ldb_ch
->encoder
;
438 ret
= imx_drm_encoder_parse_of(drm
, encoder
, imx_ldb_ch
->child
);
442 ret
= imx_ldb_get_clk(ldb
, imx_ldb_ch
->chno
);
446 if (ldb
->ldb_ctrl
& LDB_SPLIT_MODE_EN
) {
447 ret
= imx_ldb_get_clk(ldb
, 1);
452 drm_encoder_helper_add(encoder
, &imx_ldb_encoder_helper_funcs
);
453 drm_encoder_init(drm
, encoder
, &imx_ldb_encoder_funcs
,
454 DRM_MODE_ENCODER_LVDS
, NULL
);
456 if (imx_ldb_ch
->bridge
) {
457 ret
= drm_bridge_attach(&imx_ldb_ch
->encoder
,
458 imx_ldb_ch
->bridge
, NULL
);
460 DRM_ERROR("Failed to initialize bridge with drm\n");
465 * We want to add the connector whenever there is no bridge
466 * that brings its own, not only when there is a panel. For
467 * historical reasons, the ldb driver can also work without
470 drm_connector_helper_add(&imx_ldb_ch
->connector
,
471 &imx_ldb_connector_helper_funcs
);
472 drm_connector_init(drm
, &imx_ldb_ch
->connector
,
473 &imx_ldb_connector_funcs
,
474 DRM_MODE_CONNECTOR_LVDS
);
475 drm_mode_connector_attach_encoder(&imx_ldb_ch
->connector
,
479 if (imx_ldb_ch
->panel
) {
480 ret
= drm_panel_attach(imx_ldb_ch
->panel
,
481 &imx_ldb_ch
->connector
);
494 struct imx_ldb_bit_mapping
{
497 const char * const mapping
;
500 static const struct imx_ldb_bit_mapping imx_ldb_bit_mappings
[] = {
501 { MEDIA_BUS_FMT_RGB666_1X7X3_SPWG
, 18, "spwg" },
502 { MEDIA_BUS_FMT_RGB888_1X7X4_SPWG
, 24, "spwg" },
503 { MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA
, 24, "jeida" },
506 static u32
of_get_bus_format(struct device
*dev
, struct device_node
*np
)
512 ret
= of_property_read_string(np
, "fsl,data-mapping", &bm
);
516 of_property_read_u32(np
, "fsl,data-width", &datawidth
);
518 for (i
= 0; i
< ARRAY_SIZE(imx_ldb_bit_mappings
); i
++) {
519 if (!strcasecmp(bm
, imx_ldb_bit_mappings
[i
].mapping
) &&
520 datawidth
== imx_ldb_bit_mappings
[i
].datawidth
)
521 return imx_ldb_bit_mappings
[i
].bus_format
;
524 dev_err(dev
, "invalid data mapping: %d-bit \"%s\"\n", datawidth
, bm
);
529 static struct bus_mux imx6q_lvds_mux
[2] = {
533 .mask
= IMX6Q_GPR3_LVDS0_MUX_CTL_MASK
,
537 .mask
= IMX6Q_GPR3_LVDS1_MUX_CTL_MASK
,
542 * For a device declaring compatible = "fsl,imx6q-ldb", "fsl,imx53-ldb",
543 * of_match_device will walk through this list and take the first entry
544 * matching any of its compatible values. Therefore, the more generic
545 * entries (in this case fsl,imx53-ldb) need to be ordered last.
547 static const struct of_device_id imx_ldb_dt_ids
[] = {
548 { .compatible
= "fsl,imx6q-ldb", .data
= imx6q_lvds_mux
, },
549 { .compatible
= "fsl,imx53-ldb", .data
= NULL
, },
552 MODULE_DEVICE_TABLE(of
, imx_ldb_dt_ids
);
554 static int imx_ldb_panel_ddc(struct device
*dev
,
555 struct imx_ldb_channel
*channel
, struct device_node
*child
)
557 struct device_node
*ddc_node
;
561 ddc_node
= of_parse_phandle(child
, "ddc-i2c-bus", 0);
563 channel
->ddc
= of_find_i2c_adapter_by_node(ddc_node
);
564 of_node_put(ddc_node
);
566 dev_warn(dev
, "failed to get ddc i2c adapter\n");
567 return -EPROBE_DEFER
;
572 /* if no DDC available, fallback to hardcoded EDID */
573 dev_dbg(dev
, "no ddc available\n");
575 edidp
= of_get_property(child
, "edid",
578 channel
->edid
= kmemdup(edidp
,
581 } else if (!channel
->panel
) {
582 /* fallback to display-timings node */
583 ret
= of_get_drm_display_mode(child
,
588 channel
->mode_valid
= 1;
594 static int imx_ldb_bind(struct device
*dev
, struct device
*master
, void *data
)
596 struct drm_device
*drm
= data
;
597 struct device_node
*np
= dev
->of_node
;
598 const struct of_device_id
*of_id
=
599 of_match_device(imx_ldb_dt_ids
, dev
);
600 struct device_node
*child
;
601 struct imx_ldb
*imx_ldb
;
606 imx_ldb
= devm_kzalloc(dev
, sizeof(*imx_ldb
), GFP_KERNEL
);
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
);
619 imx_ldb
->lvds_mux
= of_id
->data
;
621 dual
= of_property_read_bool(np
, "fsl,dual-channel");
623 imx_ldb
->ldb_ctrl
|= LDB_SPLIT_MODE_EN
;
626 * There are three different possible clock mux configurations:
627 * i.MX53: ipu1_di0_sel, ipu1_di1_sel
628 * i.MX6q: ipu1_di0_sel, ipu1_di1_sel, ipu2_di0_sel, ipu2_di1_sel
629 * i.MX6dl: ipu1_di0_sel, ipu1_di1_sel, lcdif_sel
630 * Map them all to di0_sel...di3_sel.
632 for (i
= 0; i
< 4; i
++) {
635 sprintf(clkname
, "di%d_sel", i
);
636 imx_ldb
->clk_sel
[i
] = devm_clk_get(imx_ldb
->dev
, clkname
);
637 if (IS_ERR(imx_ldb
->clk_sel
[i
])) {
638 ret
= PTR_ERR(imx_ldb
->clk_sel
[i
]);
639 imx_ldb
->clk_sel
[i
] = NULL
;
643 imx_ldb
->clk_parent
[i
] = clk_get_parent(imx_ldb
->clk_sel
[i
]);
648 for_each_child_of_node(np
, child
) {
649 struct imx_ldb_channel
*channel
;
652 ret
= of_property_read_u32(child
, "reg", &i
);
653 if (ret
|| i
< 0 || i
> 1)
657 dev_warn(dev
, "dual-channel mode, ignoring second output\n");
661 if (!of_device_is_available(child
))
664 channel
= &imx_ldb
->channel
[i
];
665 channel
->ldb
= imx_ldb
;
667 channel
->child
= child
;
670 * The output port is port@4 with an external 4-port mux or
671 * port@2 with the internal 2-port mux.
673 ret
= drm_of_find_panel_or_bridge(child
,
674 imx_ldb
->lvds_mux
? 4 : 2, 0,
675 &channel
->panel
, &channel
->bridge
);
676 if (ret
&& ret
!= -ENODEV
)
679 /* panel ddc only if there is no bridge */
680 if (!channel
->bridge
) {
681 ret
= imx_ldb_panel_ddc(dev
, channel
, child
);
686 bus_format
= of_get_bus_format(dev
, child
);
687 if (bus_format
== -EINVAL
) {
689 * If no bus format was specified in the device tree,
690 * we can still get it from the connected panel later.
692 if (channel
->panel
&& channel
->panel
->funcs
&&
693 channel
->panel
->funcs
->get_modes
)
696 if (bus_format
< 0) {
697 dev_err(dev
, "could not determine data mapping: %d\n",
701 channel
->bus_format
= bus_format
;
703 ret
= imx_ldb_register(drm
, channel
);
708 dev_set_drvdata(dev
, imx_ldb
);
713 static void imx_ldb_unbind(struct device
*dev
, struct device
*master
,
716 struct imx_ldb
*imx_ldb
= dev_get_drvdata(dev
);
719 for (i
= 0; i
< 2; i
++) {
720 struct imx_ldb_channel
*channel
= &imx_ldb
->channel
[i
];
723 drm_panel_detach(channel
->panel
);
725 kfree(channel
->edid
);
726 i2c_put_adapter(channel
->ddc
);
730 static const struct component_ops imx_ldb_ops
= {
731 .bind
= imx_ldb_bind
,
732 .unbind
= imx_ldb_unbind
,
735 static int imx_ldb_probe(struct platform_device
*pdev
)
737 return component_add(&pdev
->dev
, &imx_ldb_ops
);
740 static int imx_ldb_remove(struct platform_device
*pdev
)
742 component_del(&pdev
->dev
, &imx_ldb_ops
);
746 static struct platform_driver imx_ldb_driver
= {
747 .probe
= imx_ldb_probe
,
748 .remove
= imx_ldb_remove
,
750 .of_match_table
= imx_ldb_dt_ids
,
755 module_platform_driver(imx_ldb_driver
);
757 MODULE_DESCRIPTION("i.MX LVDS driver");
758 MODULE_AUTHOR("Sascha Hauer, Pengutronix");
759 MODULE_LICENSE("GPL");
760 MODULE_ALIAS("platform:" DRIVER_NAME
);