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_fb_helper.h>
21 #include <drm/drm_crtc_helper.h>
22 #include <drm/drm_panel.h>
23 #include <linux/mfd/syscon.h>
24 #include <linux/mfd/syscon/imx6q-iomuxc-gpr.h>
25 #include <linux/of_device.h>
26 #include <linux/of_graph.h>
27 #include <video/of_videomode.h>
28 #include <linux/regmap.h>
29 #include <linux/videodev2.h>
33 #define DRIVER_NAME "imx-ldb"
35 #define LDB_CH0_MODE_EN_TO_DI0 (1 << 0)
36 #define LDB_CH0_MODE_EN_TO_DI1 (3 << 0)
37 #define LDB_CH0_MODE_EN_MASK (3 << 0)
38 #define LDB_CH1_MODE_EN_TO_DI0 (1 << 2)
39 #define LDB_CH1_MODE_EN_TO_DI1 (3 << 2)
40 #define LDB_CH1_MODE_EN_MASK (3 << 2)
41 #define LDB_SPLIT_MODE_EN (1 << 4)
42 #define LDB_DATA_WIDTH_CH0_24 (1 << 5)
43 #define LDB_BIT_MAP_CH0_JEIDA (1 << 6)
44 #define LDB_DATA_WIDTH_CH1_24 (1 << 7)
45 #define LDB_BIT_MAP_CH1_JEIDA (1 << 8)
46 #define LDB_DI0_VS_POL_ACT_LOW (1 << 9)
47 #define LDB_DI1_VS_POL_ACT_LOW (1 << 10)
48 #define LDB_BGREF_RMODE_INT (1 << 15)
50 #define con_to_imx_ldb_ch(x) container_of(x, struct imx_ldb_channel, connector)
51 #define enc_to_imx_ldb_ch(x) container_of(x, struct imx_ldb_channel, encoder)
55 struct imx_ldb_channel
{
57 struct drm_connector connector
;
58 struct drm_encoder encoder
;
59 struct drm_panel
*panel
;
60 struct device_node
*child
;
64 struct drm_display_mode mode
;
76 struct regmap
*regmap
;
78 struct imx_ldb_channel channel
[2];
79 struct clk
*clk
[2]; /* our own clock */
80 struct clk
*clk_sel
[4]; /* parent of display clock */
81 struct clk
*clk_parent
[4]; /* original parent of clk_sel */
82 struct clk
*clk_pll
[2]; /* upstream clock we can adjust */
84 const struct bus_mux
*lvds_mux
;
87 static enum drm_connector_status
imx_ldb_connector_detect(
88 struct drm_connector
*connector
, bool force
)
90 return connector_status_connected
;
93 static int imx_ldb_connector_get_modes(struct drm_connector
*connector
)
95 struct imx_ldb_channel
*imx_ldb_ch
= con_to_imx_ldb_ch(connector
);
98 if (imx_ldb_ch
->panel
&& imx_ldb_ch
->panel
->funcs
&&
99 imx_ldb_ch
->panel
->funcs
->get_modes
) {
100 struct drm_display_info
*di
= &connector
->display_info
;
102 num_modes
= imx_ldb_ch
->panel
->funcs
->get_modes(imx_ldb_ch
->panel
);
103 if (!imx_ldb_ch
->bus_format
&& di
->num_bus_formats
)
104 imx_ldb_ch
->bus_format
= di
->bus_formats
[0];
109 if (imx_ldb_ch
->edid
) {
110 drm_mode_connector_update_edid_property(connector
,
112 num_modes
= drm_add_edid_modes(connector
, imx_ldb_ch
->edid
);
115 if (imx_ldb_ch
->mode_valid
) {
116 struct drm_display_mode
*mode
;
118 mode
= drm_mode_create(connector
->dev
);
121 drm_mode_copy(mode
, &imx_ldb_ch
->mode
);
122 mode
->type
|= DRM_MODE_TYPE_DRIVER
| DRM_MODE_TYPE_PREFERRED
;
123 drm_mode_probed_add(connector
, mode
);
130 static struct drm_encoder
*imx_ldb_connector_best_encoder(
131 struct drm_connector
*connector
)
133 struct imx_ldb_channel
*imx_ldb_ch
= con_to_imx_ldb_ch(connector
);
135 return &imx_ldb_ch
->encoder
;
138 static void imx_ldb_encoder_dpms(struct drm_encoder
*encoder
, int mode
)
142 static bool imx_ldb_encoder_mode_fixup(struct drm_encoder
*encoder
,
143 const struct drm_display_mode
*mode
,
144 struct drm_display_mode
*adjusted_mode
)
149 static void imx_ldb_set_clock(struct imx_ldb
*ldb
, int mux
, int chno
,
150 unsigned long serial_clk
, unsigned long di_clk
)
154 dev_dbg(ldb
->dev
, "%s: now: %ld want: %ld\n", __func__
,
155 clk_get_rate(ldb
->clk_pll
[chno
]), serial_clk
);
156 clk_set_rate(ldb
->clk_pll
[chno
], serial_clk
);
158 dev_dbg(ldb
->dev
, "%s after: %ld\n", __func__
,
159 clk_get_rate(ldb
->clk_pll
[chno
]));
161 dev_dbg(ldb
->dev
, "%s: now: %ld want: %ld\n", __func__
,
162 clk_get_rate(ldb
->clk
[chno
]),
164 clk_set_rate(ldb
->clk
[chno
], di_clk
);
166 dev_dbg(ldb
->dev
, "%s after: %ld\n", __func__
,
167 clk_get_rate(ldb
->clk
[chno
]));
169 /* set display clock mux to LDB input clock */
170 ret
= clk_set_parent(ldb
->clk_sel
[mux
], ldb
->clk
[chno
]);
173 "unable to set di%d parent clock to ldb_di%d\n", mux
,
177 static void imx_ldb_encoder_prepare(struct drm_encoder
*encoder
)
179 struct imx_ldb_channel
*imx_ldb_ch
= enc_to_imx_ldb_ch(encoder
);
180 struct imx_ldb
*ldb
= imx_ldb_ch
->ldb
;
181 int dual
= ldb
->ldb_ctrl
& LDB_SPLIT_MODE_EN
;
184 switch (imx_ldb_ch
->bus_format
) {
187 "could not determine data mapping, default to 18-bit \"spwg\"\n");
189 case MEDIA_BUS_FMT_RGB666_1X7X3_SPWG
:
190 bus_format
= MEDIA_BUS_FMT_RGB666_1X18
;
192 case MEDIA_BUS_FMT_RGB888_1X7X4_SPWG
:
193 bus_format
= MEDIA_BUS_FMT_RGB888_1X24
;
194 if (imx_ldb_ch
->chno
== 0 || dual
)
195 ldb
->ldb_ctrl
|= LDB_DATA_WIDTH_CH0_24
;
196 if (imx_ldb_ch
->chno
== 1 || dual
)
197 ldb
->ldb_ctrl
|= LDB_DATA_WIDTH_CH1_24
;
199 case MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA
:
200 bus_format
= MEDIA_BUS_FMT_RGB888_1X24
;
201 if (imx_ldb_ch
->chno
== 0 || dual
)
202 ldb
->ldb_ctrl
|= LDB_DATA_WIDTH_CH0_24
|
203 LDB_BIT_MAP_CH0_JEIDA
;
204 if (imx_ldb_ch
->chno
== 1 || dual
)
205 ldb
->ldb_ctrl
|= LDB_DATA_WIDTH_CH1_24
|
206 LDB_BIT_MAP_CH1_JEIDA
;
210 imx_drm_set_bus_format(encoder
, bus_format
);
213 static void imx_ldb_encoder_commit(struct drm_encoder
*encoder
)
215 struct imx_ldb_channel
*imx_ldb_ch
= enc_to_imx_ldb_ch(encoder
);
216 struct imx_ldb
*ldb
= imx_ldb_ch
->ldb
;
217 int dual
= ldb
->ldb_ctrl
& LDB_SPLIT_MODE_EN
;
218 int mux
= imx_drm_encoder_get_mux_id(imx_ldb_ch
->child
, encoder
);
220 drm_panel_prepare(imx_ldb_ch
->panel
);
223 clk_prepare_enable(ldb
->clk
[0]);
224 clk_prepare_enable(ldb
->clk
[1]);
227 if (imx_ldb_ch
== &ldb
->channel
[0] || dual
) {
228 ldb
->ldb_ctrl
&= ~LDB_CH0_MODE_EN_MASK
;
229 if (mux
== 0 || ldb
->lvds_mux
)
230 ldb
->ldb_ctrl
|= LDB_CH0_MODE_EN_TO_DI0
;
232 ldb
->ldb_ctrl
|= LDB_CH0_MODE_EN_TO_DI1
;
234 if (imx_ldb_ch
== &ldb
->channel
[1] || dual
) {
235 ldb
->ldb_ctrl
&= ~LDB_CH1_MODE_EN_MASK
;
236 if (mux
== 1 || ldb
->lvds_mux
)
237 ldb
->ldb_ctrl
|= LDB_CH1_MODE_EN_TO_DI1
;
239 ldb
->ldb_ctrl
|= LDB_CH1_MODE_EN_TO_DI0
;
243 const struct bus_mux
*lvds_mux
= NULL
;
245 if (imx_ldb_ch
== &ldb
->channel
[0])
246 lvds_mux
= &ldb
->lvds_mux
[0];
247 else if (imx_ldb_ch
== &ldb
->channel
[1])
248 lvds_mux
= &ldb
->lvds_mux
[1];
250 regmap_update_bits(ldb
->regmap
, lvds_mux
->reg
, lvds_mux
->mask
,
251 mux
<< lvds_mux
->shift
);
254 regmap_write(ldb
->regmap
, IOMUXC_GPR2
, ldb
->ldb_ctrl
);
256 drm_panel_enable(imx_ldb_ch
->panel
);
259 static void imx_ldb_encoder_mode_set(struct drm_encoder
*encoder
,
260 struct drm_display_mode
*orig_mode
,
261 struct drm_display_mode
*mode
)
263 struct imx_ldb_channel
*imx_ldb_ch
= enc_to_imx_ldb_ch(encoder
);
264 struct imx_ldb
*ldb
= imx_ldb_ch
->ldb
;
265 int dual
= ldb
->ldb_ctrl
& LDB_SPLIT_MODE_EN
;
266 unsigned long serial_clk
;
267 unsigned long di_clk
= mode
->clock
* 1000;
268 int mux
= imx_drm_encoder_get_mux_id(imx_ldb_ch
->child
, encoder
);
270 if (mode
->clock
> 170000) {
272 "%s: mode exceeds 170 MHz pixel clock\n", __func__
);
274 if (mode
->clock
> 85000 && !dual
) {
276 "%s: mode exceeds 85 MHz pixel clock\n", __func__
);
280 serial_clk
= 3500UL * mode
->clock
;
281 imx_ldb_set_clock(ldb
, mux
, 0, serial_clk
, di_clk
);
282 imx_ldb_set_clock(ldb
, mux
, 1, serial_clk
, di_clk
);
284 serial_clk
= 7000UL * mode
->clock
;
285 imx_ldb_set_clock(ldb
, mux
, imx_ldb_ch
->chno
, serial_clk
,
289 /* FIXME - assumes straight connections DI0 --> CH0, DI1 --> CH1 */
290 if (imx_ldb_ch
== &ldb
->channel
[0]) {
291 if (mode
->flags
& DRM_MODE_FLAG_NVSYNC
)
292 ldb
->ldb_ctrl
|= LDB_DI0_VS_POL_ACT_LOW
;
293 else if (mode
->flags
& DRM_MODE_FLAG_PVSYNC
)
294 ldb
->ldb_ctrl
&= ~LDB_DI0_VS_POL_ACT_LOW
;
296 if (imx_ldb_ch
== &ldb
->channel
[1]) {
297 if (mode
->flags
& DRM_MODE_FLAG_NVSYNC
)
298 ldb
->ldb_ctrl
|= LDB_DI1_VS_POL_ACT_LOW
;
299 else if (mode
->flags
& DRM_MODE_FLAG_PVSYNC
)
300 ldb
->ldb_ctrl
&= ~LDB_DI1_VS_POL_ACT_LOW
;
304 static void imx_ldb_encoder_disable(struct drm_encoder
*encoder
)
306 struct imx_ldb_channel
*imx_ldb_ch
= enc_to_imx_ldb_ch(encoder
);
307 struct imx_ldb
*ldb
= imx_ldb_ch
->ldb
;
311 * imx_ldb_encoder_disable is called by
312 * drm_helper_disable_unused_functions without
313 * the encoder being enabled before.
315 if (imx_ldb_ch
== &ldb
->channel
[0] &&
316 (ldb
->ldb_ctrl
& LDB_CH0_MODE_EN_MASK
) == 0)
318 else if (imx_ldb_ch
== &ldb
->channel
[1] &&
319 (ldb
->ldb_ctrl
& LDB_CH1_MODE_EN_MASK
) == 0)
322 drm_panel_disable(imx_ldb_ch
->panel
);
324 if (imx_ldb_ch
== &ldb
->channel
[0])
325 ldb
->ldb_ctrl
&= ~LDB_CH0_MODE_EN_MASK
;
326 else if (imx_ldb_ch
== &ldb
->channel
[1])
327 ldb
->ldb_ctrl
&= ~LDB_CH1_MODE_EN_MASK
;
329 regmap_write(ldb
->regmap
, IOMUXC_GPR2
, ldb
->ldb_ctrl
);
331 if (ldb
->ldb_ctrl
& LDB_SPLIT_MODE_EN
) {
332 clk_disable_unprepare(ldb
->clk
[0]);
333 clk_disable_unprepare(ldb
->clk
[1]);
337 const struct bus_mux
*lvds_mux
= NULL
;
339 if (imx_ldb_ch
== &ldb
->channel
[0])
340 lvds_mux
= &ldb
->lvds_mux
[0];
341 else if (imx_ldb_ch
== &ldb
->channel
[1])
342 lvds_mux
= &ldb
->lvds_mux
[1];
344 regmap_read(ldb
->regmap
, lvds_mux
->reg
, &mux
);
345 mux
&= lvds_mux
->mask
;
346 mux
>>= lvds_mux
->shift
;
348 mux
= (imx_ldb_ch
== &ldb
->channel
[0]) ? 0 : 1;
351 /* set display clock mux back to original input clock */
352 ret
= clk_set_parent(ldb
->clk_sel
[mux
], ldb
->clk_parent
[mux
]);
355 "unable to set di%d parent clock to original parent\n",
358 drm_panel_unprepare(imx_ldb_ch
->panel
);
361 static struct drm_connector_funcs imx_ldb_connector_funcs
= {
362 .dpms
= drm_helper_connector_dpms
,
363 .fill_modes
= drm_helper_probe_single_connector_modes
,
364 .detect
= imx_ldb_connector_detect
,
365 .destroy
= imx_drm_connector_destroy
,
368 static struct drm_connector_helper_funcs imx_ldb_connector_helper_funcs
= {
369 .get_modes
= imx_ldb_connector_get_modes
,
370 .best_encoder
= imx_ldb_connector_best_encoder
,
373 static struct drm_encoder_funcs imx_ldb_encoder_funcs
= {
374 .destroy
= imx_drm_encoder_destroy
,
377 static struct drm_encoder_helper_funcs imx_ldb_encoder_helper_funcs
= {
378 .dpms
= imx_ldb_encoder_dpms
,
379 .mode_fixup
= imx_ldb_encoder_mode_fixup
,
380 .prepare
= imx_ldb_encoder_prepare
,
381 .commit
= imx_ldb_encoder_commit
,
382 .mode_set
= imx_ldb_encoder_mode_set
,
383 .disable
= imx_ldb_encoder_disable
,
386 static int imx_ldb_get_clk(struct imx_ldb
*ldb
, int chno
)
390 snprintf(clkname
, sizeof(clkname
), "di%d", chno
);
391 ldb
->clk
[chno
] = devm_clk_get(ldb
->dev
, clkname
);
392 if (IS_ERR(ldb
->clk
[chno
]))
393 return PTR_ERR(ldb
->clk
[chno
]);
395 snprintf(clkname
, sizeof(clkname
), "di%d_pll", chno
);
396 ldb
->clk_pll
[chno
] = devm_clk_get(ldb
->dev
, clkname
);
398 return PTR_ERR_OR_ZERO(ldb
->clk_pll
[chno
]);
401 static int imx_ldb_register(struct drm_device
*drm
,
402 struct imx_ldb_channel
*imx_ldb_ch
)
404 struct imx_ldb
*ldb
= imx_ldb_ch
->ldb
;
407 ret
= imx_drm_encoder_parse_of(drm
, &imx_ldb_ch
->encoder
,
412 ret
= imx_ldb_get_clk(ldb
, imx_ldb_ch
->chno
);
416 if (ldb
->ldb_ctrl
& LDB_SPLIT_MODE_EN
) {
417 ret
= imx_ldb_get_clk(ldb
, 1);
422 drm_encoder_helper_add(&imx_ldb_ch
->encoder
,
423 &imx_ldb_encoder_helper_funcs
);
424 drm_encoder_init(drm
, &imx_ldb_ch
->encoder
, &imx_ldb_encoder_funcs
,
425 DRM_MODE_ENCODER_LVDS
);
427 drm_connector_helper_add(&imx_ldb_ch
->connector
,
428 &imx_ldb_connector_helper_funcs
);
429 drm_connector_init(drm
, &imx_ldb_ch
->connector
,
430 &imx_ldb_connector_funcs
, DRM_MODE_CONNECTOR_LVDS
);
432 if (imx_ldb_ch
->panel
)
433 drm_panel_attach(imx_ldb_ch
->panel
, &imx_ldb_ch
->connector
);
435 drm_mode_connector_attach_encoder(&imx_ldb_ch
->connector
,
436 &imx_ldb_ch
->encoder
);
446 struct imx_ldb_bit_mapping
{
449 const char * const mapping
;
452 static const struct imx_ldb_bit_mapping imx_ldb_bit_mappings
[] = {
453 { MEDIA_BUS_FMT_RGB666_1X7X3_SPWG
, 18, "spwg" },
454 { MEDIA_BUS_FMT_RGB888_1X7X4_SPWG
, 24, "spwg" },
455 { MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA
, 24, "jeida" },
458 static u32
of_get_bus_format(struct device
*dev
, struct device_node
*np
)
464 ret
= of_property_read_string(np
, "fsl,data-mapping", &bm
);
468 of_property_read_u32(np
, "fsl,data-width", &datawidth
);
470 for (i
= 0; i
< ARRAY_SIZE(imx_ldb_bit_mappings
); i
++) {
471 if (!strcasecmp(bm
, imx_ldb_bit_mappings
[i
].mapping
) &&
472 datawidth
== imx_ldb_bit_mappings
[i
].datawidth
)
473 return imx_ldb_bit_mappings
[i
].bus_format
;
476 dev_err(dev
, "invalid data mapping: %d-bit \"%s\"\n", datawidth
, bm
);
481 static struct bus_mux imx6q_lvds_mux
[2] = {
485 .mask
= IMX6Q_GPR3_LVDS0_MUX_CTL_MASK
,
489 .mask
= IMX6Q_GPR3_LVDS1_MUX_CTL_MASK
,
494 * For a device declaring compatible = "fsl,imx6q-ldb", "fsl,imx53-ldb",
495 * of_match_device will walk through this list and take the first entry
496 * matching any of its compatible values. Therefore, the more generic
497 * entries (in this case fsl,imx53-ldb) need to be ordered last.
499 static const struct of_device_id imx_ldb_dt_ids
[] = {
500 { .compatible
= "fsl,imx6q-ldb", .data
= imx6q_lvds_mux
, },
501 { .compatible
= "fsl,imx53-ldb", .data
= NULL
, },
504 MODULE_DEVICE_TABLE(of
, imx_ldb_dt_ids
);
506 static int imx_ldb_bind(struct device
*dev
, struct device
*master
, void *data
)
508 struct drm_device
*drm
= data
;
509 struct device_node
*np
= dev
->of_node
;
510 const struct of_device_id
*of_id
=
511 of_match_device(imx_ldb_dt_ids
, dev
);
512 struct device_node
*child
;
514 struct imx_ldb
*imx_ldb
;
519 imx_ldb
= devm_kzalloc(dev
, sizeof(*imx_ldb
), GFP_KERNEL
);
523 imx_ldb
->regmap
= syscon_regmap_lookup_by_phandle(np
, "gpr");
524 if (IS_ERR(imx_ldb
->regmap
)) {
525 dev_err(dev
, "failed to get parent regmap\n");
526 return PTR_ERR(imx_ldb
->regmap
);
532 imx_ldb
->lvds_mux
= of_id
->data
;
534 dual
= of_property_read_bool(np
, "fsl,dual-channel");
536 imx_ldb
->ldb_ctrl
|= LDB_SPLIT_MODE_EN
;
539 * There are three different possible clock mux configurations:
540 * i.MX53: ipu1_di0_sel, ipu1_di1_sel
541 * i.MX6q: ipu1_di0_sel, ipu1_di1_sel, ipu2_di0_sel, ipu2_di1_sel
542 * i.MX6dl: ipu1_di0_sel, ipu1_di1_sel, lcdif_sel
543 * Map them all to di0_sel...di3_sel.
545 for (i
= 0; i
< 4; i
++) {
548 sprintf(clkname
, "di%d_sel", i
);
549 imx_ldb
->clk_sel
[i
] = devm_clk_get(imx_ldb
->dev
, clkname
);
550 if (IS_ERR(imx_ldb
->clk_sel
[i
])) {
551 ret
= PTR_ERR(imx_ldb
->clk_sel
[i
]);
552 imx_ldb
->clk_sel
[i
] = NULL
;
556 imx_ldb
->clk_parent
[i
] = clk_get_parent(imx_ldb
->clk_sel
[i
]);
561 for_each_child_of_node(np
, child
) {
562 struct imx_ldb_channel
*channel
;
563 struct device_node
*port
;
565 ret
= of_property_read_u32(child
, "reg", &i
);
566 if (ret
|| i
< 0 || i
> 1)
570 dev_warn(dev
, "dual-channel mode, ignoring second output\n");
574 if (!of_device_is_available(child
))
577 channel
= &imx_ldb
->channel
[i
];
578 channel
->ldb
= imx_ldb
;
580 channel
->child
= child
;
583 * The output port is port@4 with an external 4-port mux or
584 * port@2 with the internal 2-port mux.
586 port
= of_graph_get_port_by_id(child
, imx_ldb
->lvds_mux
? 4 : 2);
588 struct device_node
*endpoint
, *remote
;
590 endpoint
= of_get_child_by_name(port
, "endpoint");
592 remote
= of_graph_get_remote_port_parent(endpoint
);
594 channel
->panel
= of_drm_find_panel(remote
);
596 return -EPROBE_DEFER
;
597 if (!channel
->panel
) {
598 dev_err(dev
, "panel not found: %s\n",
600 return -EPROBE_DEFER
;
605 edidp
= of_get_property(child
, "edid", &channel
->edid_len
);
607 channel
->edid
= kmemdup(edidp
, channel
->edid_len
,
609 } else if (!channel
->panel
) {
610 ret
= of_get_drm_display_mode(child
, &channel
->mode
, 0);
612 channel
->mode_valid
= 1;
615 channel
->bus_format
= of_get_bus_format(dev
, child
);
616 if (channel
->bus_format
== -EINVAL
) {
618 * If no bus format was specified in the device tree,
619 * we can still get it from the connected panel later.
621 if (channel
->panel
&& channel
->panel
->funcs
&&
622 channel
->panel
->funcs
->get_modes
)
623 channel
->bus_format
= 0;
625 if (channel
->bus_format
< 0) {
626 dev_err(dev
, "could not determine data mapping: %d\n",
627 channel
->bus_format
);
628 return channel
->bus_format
;
631 ret
= imx_ldb_register(drm
, channel
);
636 dev_set_drvdata(dev
, imx_ldb
);
641 static void imx_ldb_unbind(struct device
*dev
, struct device
*master
,
644 struct imx_ldb
*imx_ldb
= dev_get_drvdata(dev
);
647 for (i
= 0; i
< 2; i
++) {
648 struct imx_ldb_channel
*channel
= &imx_ldb
->channel
[i
];
650 if (!channel
->connector
.funcs
)
653 channel
->connector
.funcs
->destroy(&channel
->connector
);
654 channel
->encoder
.funcs
->destroy(&channel
->encoder
);
656 kfree(channel
->edid
);
660 static const struct component_ops imx_ldb_ops
= {
661 .bind
= imx_ldb_bind
,
662 .unbind
= imx_ldb_unbind
,
665 static int imx_ldb_probe(struct platform_device
*pdev
)
667 return component_add(&pdev
->dev
, &imx_ldb_ops
);
670 static int imx_ldb_remove(struct platform_device
*pdev
)
672 component_del(&pdev
->dev
, &imx_ldb_ops
);
676 static struct platform_driver imx_ldb_driver
= {
677 .probe
= imx_ldb_probe
,
678 .remove
= imx_ldb_remove
,
680 .of_match_table
= imx_ldb_dt_ids
,
685 module_platform_driver(imx_ldb_driver
);
687 MODULE_DESCRIPTION("i.MX LVDS driver");
688 MODULE_AUTHOR("Sascha Hauer, Pengutronix");
689 MODULE_LICENSE("GPL");
690 MODULE_ALIAS("platform:" DRIVER_NAME
);