1 // SPDX-License-Identifier: GPL-2.0
3 * rcar_lvds.c -- R-Car LVDS Encoder
5 * Copyright (C) 2013-2018 Renesas Electronics Corporation
10 #include <linux/clk.h>
11 #include <linux/delay.h>
13 #include <linux/module.h>
15 #include <linux/of_device.h>
16 #include <linux/of_graph.h>
17 #include <linux/platform_device.h>
18 #include <linux/slab.h>
19 #include <linux/sys_soc.h>
21 #include <drm/drm_atomic.h>
22 #include <drm/drm_atomic_helper.h>
23 #include <drm/drm_bridge.h>
24 #include <drm/drm_panel.h>
25 #include <drm/drm_probe_helper.h>
27 #include "rcar_lvds.h"
28 #include "rcar_lvds_regs.h"
32 /* Keep in sync with the LVDCR0.LVMD hardware register values. */
34 RCAR_LVDS_MODE_JEIDA = 0,
35 RCAR_LVDS_MODE_MIRROR = 1,
36 RCAR_LVDS_MODE_VESA = 4,
39 #define RCAR_LVDS_QUIRK_LANES BIT(0) /* LVDS lanes 1 and 3 inverted */
40 #define RCAR_LVDS_QUIRK_GEN3_LVEN BIT(1) /* LVEN bit needs to be set on R8A77970/R8A7799x */
41 #define RCAR_LVDS_QUIRK_PWD BIT(2) /* PWD bit available (all of Gen3 but E3) */
42 #define RCAR_LVDS_QUIRK_EXT_PLL BIT(3) /* Has extended PLL */
43 #define RCAR_LVDS_QUIRK_DUAL_LINK BIT(4) /* Supports dual-link operation */
45 struct rcar_lvds_device_info {
48 void (*pll_setup)(struct rcar_lvds *lvds, unsigned int freq);
53 const struct rcar_lvds_device_info *info;
55 struct drm_bridge bridge;
57 struct drm_bridge *next_bridge;
58 struct drm_connector connector;
59 struct drm_panel *panel;
63 struct clk *mod; /* CPG module clock */
64 struct clk *extal; /* External clock */
65 struct clk *dotclkin[2]; /* External DU clocks */
68 struct drm_display_mode display_mode;
69 enum rcar_lvds_mode mode;
71 struct drm_bridge *companion;
75 #define bridge_to_rcar_lvds(b) \
76 container_of(b, struct rcar_lvds, bridge)
78 #define connector_to_rcar_lvds(c) \
79 container_of(c, struct rcar_lvds, connector)
81 static void rcar_lvds_write(struct rcar_lvds *lvds, u32 reg, u32 data)
83 iowrite32(data, lvds->mmio + reg);
86 /* -----------------------------------------------------------------------------
90 static int rcar_lvds_connector_get_modes(struct drm_connector *connector)
92 struct rcar_lvds *lvds = connector_to_rcar_lvds(connector);
94 return drm_panel_get_modes(lvds->panel);
97 static int rcar_lvds_connector_atomic_check(struct drm_connector *connector,
98 struct drm_atomic_state *state)
100 struct rcar_lvds *lvds = connector_to_rcar_lvds(connector);
101 const struct drm_display_mode *panel_mode;
102 struct drm_connector_state *conn_state;
103 struct drm_crtc_state *crtc_state;
105 conn_state = drm_atomic_get_new_connector_state(state, connector);
106 if (!conn_state->crtc)
109 if (list_empty(&connector->modes)) {
110 dev_dbg(lvds->dev, "connector: empty modes list\n");
114 panel_mode = list_first_entry(&connector->modes,
115 struct drm_display_mode, head);
117 /* We're not allowed to modify the resolution. */
118 crtc_state = drm_atomic_get_crtc_state(state, conn_state->crtc);
119 if (IS_ERR(crtc_state))
120 return PTR_ERR(crtc_state);
122 if (crtc_state->mode.hdisplay != panel_mode->hdisplay ||
123 crtc_state->mode.vdisplay != panel_mode->vdisplay)
126 /* The flat panel mode is fixed, just copy it to the adjusted mode. */
127 drm_mode_copy(&crtc_state->adjusted_mode, panel_mode);
132 static const struct drm_connector_helper_funcs rcar_lvds_conn_helper_funcs = {
133 .get_modes = rcar_lvds_connector_get_modes,
134 .atomic_check = rcar_lvds_connector_atomic_check,
137 static const struct drm_connector_funcs rcar_lvds_conn_funcs = {
138 .reset = drm_atomic_helper_connector_reset,
139 .fill_modes = drm_helper_probe_single_connector_modes,
140 .destroy = drm_connector_cleanup,
141 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
142 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
145 /* -----------------------------------------------------------------------------
149 static void rcar_lvds_pll_setup_gen2(struct rcar_lvds *lvds, unsigned int freq)
154 val = LVDPLLCR_CEEN | LVDPLLCR_COSEL | LVDPLLCR_PLLDLYCNT_38M;
155 else if (freq < 61000000)
156 val = LVDPLLCR_CEEN | LVDPLLCR_COSEL | LVDPLLCR_PLLDLYCNT_60M;
157 else if (freq < 121000000)
158 val = LVDPLLCR_CEEN | LVDPLLCR_COSEL | LVDPLLCR_PLLDLYCNT_121M;
160 val = LVDPLLCR_PLLDLYCNT_150M;
162 rcar_lvds_write(lvds, LVDPLLCR, val);
165 static void rcar_lvds_pll_setup_gen3(struct rcar_lvds *lvds, unsigned int freq)
170 val = LVDPLLCR_PLLDIVCNT_42M;
171 else if (freq < 85000000)
172 val = LVDPLLCR_PLLDIVCNT_85M;
173 else if (freq < 128000000)
174 val = LVDPLLCR_PLLDIVCNT_128M;
176 val = LVDPLLCR_PLLDIVCNT_148M;
178 rcar_lvds_write(lvds, LVDPLLCR, val);
190 static void rcar_lvds_d3_e3_pll_calc(struct rcar_lvds *lvds, struct clk *clk,
191 unsigned long target, struct pll_info *pll,
192 u32 clksel, bool dot_clock_only)
194 unsigned int div7 = dot_clock_only ? 1 : 7;
195 unsigned long output;
206 * The LVDS PLL is made of a pre-divider and a multiplier (strangely
207 * enough called M and N respectively), followed by a post-divider E.
209 * ,-----. ,-----. ,-----. ,-----.
210 * Fin --> | 1/M | -Fpdf-> | PFD | --> | VCO | -Fvco-> | 1/E | --> Fout
211 * `-----' ,-> | | `-----' | `-----'
214 * `-------- | 1/N | <-------'
217 * The clock output by the PLL is then further divided by a programmable
218 * divider DIV to achieve the desired target frequency. Finally, an
219 * optional fixed /7 divider is used to convert the bit clock to a pixel
220 * clock (as LVDS transmits 7 bits per lane per clock sample).
222 * ,-------. ,-----. |\
223 * Fout --> | 1/DIV | --> | 1/7 | --> | |
224 * `-------' | `-----' | | --> dot clock
228 * The /7 divider is optional, it is enabled when the LVDS PLL is used
229 * to drive the LVDS encoder, and disabled when used to generate a dot
230 * clock for the DU RGB output, without using the LVDS encoder.
232 * The PLL allowed input frequency range is 12 MHz to 192 MHz.
235 fin = clk_get_rate(clk);
236 if (fin < 12000000 || fin > 192000000)
240 * The comparison frequency range is 12 MHz to 24 MHz, which limits the
241 * allowed values for the pre-divider M (normal range 1-8).
245 m_min = max_t(unsigned int, 1, DIV_ROUND_UP(fin, 24000000));
246 m_max = min_t(unsigned int, 8, fin / 12000000);
248 for (m = m_min; m <= m_max; ++m) {
255 * The VCO operating range is 900 Mhz to 1800 MHz, which limits
256 * the allowed values for the multiplier N (normal range
262 n_min = max_t(unsigned int, 60, DIV_ROUND_UP(900000000, fpfd));
263 n_max = min_t(unsigned int, 120, 1800000000 / fpfd);
265 for (n = n_min; n < n_max; ++n) {
271 * The output frequency is limited to 1039.5 MHz,
272 * limiting again the allowed values for the
273 * post-divider E (normal value 1, 2 or 4).
278 e_min = fvco > 1039500000 ? 1 : 0;
280 for (e = e_min; e < 3; ++e) {
286 * Finally we have a programable divider after
287 * the PLL, followed by a an optional fixed /7
290 fout = fvco / (1 << e) / div7;
291 div = max(1UL, DIV_ROUND_CLOSEST(fout, target));
292 diff = abs(fout / div - target);
294 if (diff < pll->diff) {
300 pll->clksel = clksel;
310 output = fin * pll->pll_n / pll->pll_m / (1 << pll->pll_e)
312 error = (long)(output - target) * 10000 / (long)target;
315 "%pC %lu Hz -> Fout %lu Hz (target %lu Hz, error %d.%02u%%), PLL M/N/E/DIV %u/%u/%u/%u\n",
316 clk, fin, output, target, error / 100,
317 error < 0 ? -error % 100 : error % 100,
318 pll->pll_m, pll->pll_n, pll->pll_e, pll->div);
321 static void __rcar_lvds_pll_setup_d3_e3(struct rcar_lvds *lvds,
322 unsigned int freq, bool dot_clock_only)
324 struct pll_info pll = { .diff = (unsigned long)-1 };
327 rcar_lvds_d3_e3_pll_calc(lvds, lvds->clocks.dotclkin[0], freq, &pll,
328 LVDPLLCR_CKSEL_DU_DOTCLKIN(0), dot_clock_only);
329 rcar_lvds_d3_e3_pll_calc(lvds, lvds->clocks.dotclkin[1], freq, &pll,
330 LVDPLLCR_CKSEL_DU_DOTCLKIN(1), dot_clock_only);
331 rcar_lvds_d3_e3_pll_calc(lvds, lvds->clocks.extal, freq, &pll,
332 LVDPLLCR_CKSEL_EXTAL, dot_clock_only);
334 lvdpllcr = LVDPLLCR_PLLON | pll.clksel | LVDPLLCR_CLKOUT
335 | LVDPLLCR_PLLN(pll.pll_n - 1) | LVDPLLCR_PLLM(pll.pll_m - 1);
338 lvdpllcr |= LVDPLLCR_STP_CLKOUTE | LVDPLLCR_OUTCLKSEL
339 | LVDPLLCR_PLLE(pll.pll_e - 1);
342 lvdpllcr |= LVDPLLCR_OCKSEL;
344 rcar_lvds_write(lvds, LVDPLLCR, lvdpllcr);
348 * The DIVRESET bit is a misnomer, setting it to 1 deasserts the
351 rcar_lvds_write(lvds, LVDDIV, LVDDIV_DIVSEL |
352 LVDDIV_DIVRESET | LVDDIV_DIV(pll.div - 1));
354 rcar_lvds_write(lvds, LVDDIV, 0);
357 static void rcar_lvds_pll_setup_d3_e3(struct rcar_lvds *lvds, unsigned int freq)
359 __rcar_lvds_pll_setup_d3_e3(lvds, freq, false);
362 /* -----------------------------------------------------------------------------
366 int rcar_lvds_clk_enable(struct drm_bridge *bridge, unsigned long freq)
368 struct rcar_lvds *lvds = bridge_to_rcar_lvds(bridge);
371 if (WARN_ON(!(lvds->info->quirks & RCAR_LVDS_QUIRK_EXT_PLL)))
374 dev_dbg(lvds->dev, "enabling LVDS PLL, freq=%luHz\n", freq);
376 ret = clk_prepare_enable(lvds->clocks.mod);
380 __rcar_lvds_pll_setup_d3_e3(lvds, freq, true);
384 EXPORT_SYMBOL_GPL(rcar_lvds_clk_enable);
386 void rcar_lvds_clk_disable(struct drm_bridge *bridge)
388 struct rcar_lvds *lvds = bridge_to_rcar_lvds(bridge);
390 if (WARN_ON(!(lvds->info->quirks & RCAR_LVDS_QUIRK_EXT_PLL)))
393 dev_dbg(lvds->dev, "disabling LVDS PLL\n");
395 rcar_lvds_write(lvds, LVDPLLCR, 0);
397 clk_disable_unprepare(lvds->clocks.mod);
399 EXPORT_SYMBOL_GPL(rcar_lvds_clk_disable);
401 /* -----------------------------------------------------------------------------
405 static void rcar_lvds_enable(struct drm_bridge *bridge)
407 struct rcar_lvds *lvds = bridge_to_rcar_lvds(bridge);
408 const struct drm_display_mode *mode = &lvds->display_mode;
413 ret = clk_prepare_enable(lvds->clocks.mod);
417 /* Enable the companion LVDS encoder in dual-link mode. */
418 if (lvds->dual_link && lvds->companion)
419 lvds->companion->funcs->enable(lvds->companion);
422 * Hardcode the channels and control signals routing for now.
429 rcar_lvds_write(lvds, LVDCTRCR, LVDCTRCR_CTR3SEL_ZERO |
430 LVDCTRCR_CTR2SEL_DISP | LVDCTRCR_CTR1SEL_VSYNC |
431 LVDCTRCR_CTR0SEL_HSYNC);
433 if (lvds->info->quirks & RCAR_LVDS_QUIRK_LANES)
434 lvdhcr = LVDCHCR_CHSEL_CH(0, 0) | LVDCHCR_CHSEL_CH(1, 3)
435 | LVDCHCR_CHSEL_CH(2, 2) | LVDCHCR_CHSEL_CH(3, 1);
437 lvdhcr = LVDCHCR_CHSEL_CH(0, 0) | LVDCHCR_CHSEL_CH(1, 1)
438 | LVDCHCR_CHSEL_CH(2, 2) | LVDCHCR_CHSEL_CH(3, 3);
440 rcar_lvds_write(lvds, LVDCHCR, lvdhcr);
442 if (lvds->info->quirks & RCAR_LVDS_QUIRK_DUAL_LINK) {
444 * Configure vertical stripe based on the mode of operation of
445 * the connected device.
447 rcar_lvds_write(lvds, LVDSTRIPE,
448 lvds->dual_link ? LVDSTRIPE_ST_ON : 0);
452 * PLL clock configuration on all instances but the companion in
455 if (!lvds->dual_link || lvds->companion)
456 lvds->info->pll_setup(lvds, mode->clock * 1000);
458 /* Set the LVDS mode and select the input. */
459 lvdcr0 = lvds->mode << LVDCR0_LVMD_SHIFT;
461 if (lvds->bridge.encoder) {
463 * FIXME: We should really retrieve the CRTC through the state,
464 * but how do we get a state pointer?
466 if (drm_crtc_index(lvds->bridge.encoder->crtc) == 2)
467 lvdcr0 |= LVDCR0_DUSEL;
470 rcar_lvds_write(lvds, LVDCR0, lvdcr0);
472 /* Turn all the channels on. */
473 rcar_lvds_write(lvds, LVDCR1,
474 LVDCR1_CHSTBY(3) | LVDCR1_CHSTBY(2) |
475 LVDCR1_CHSTBY(1) | LVDCR1_CHSTBY(0) | LVDCR1_CLKSTBY);
477 if (lvds->info->gen < 3) {
478 /* Enable LVDS operation and turn the bias circuitry on. */
479 lvdcr0 |= LVDCR0_BEN | LVDCR0_LVEN;
480 rcar_lvds_write(lvds, LVDCR0, lvdcr0);
483 if (!(lvds->info->quirks & RCAR_LVDS_QUIRK_EXT_PLL)) {
485 * Turn the PLL on (simple PLL only, extended PLL is fully
486 * controlled through LVDPLLCR).
488 lvdcr0 |= LVDCR0_PLLON;
489 rcar_lvds_write(lvds, LVDCR0, lvdcr0);
492 if (lvds->info->quirks & RCAR_LVDS_QUIRK_PWD) {
493 /* Set LVDS normal mode. */
494 lvdcr0 |= LVDCR0_PWD;
495 rcar_lvds_write(lvds, LVDCR0, lvdcr0);
498 if (lvds->info->quirks & RCAR_LVDS_QUIRK_GEN3_LVEN) {
500 * Turn on the LVDS PHY. On D3, the LVEN and LVRES bit must be
501 * set at the same time, so don't write the register yet.
503 lvdcr0 |= LVDCR0_LVEN;
504 if (!(lvds->info->quirks & RCAR_LVDS_QUIRK_PWD))
505 rcar_lvds_write(lvds, LVDCR0, lvdcr0);
508 if (!(lvds->info->quirks & RCAR_LVDS_QUIRK_EXT_PLL)) {
509 /* Wait for the PLL startup delay (simple PLL only). */
510 usleep_range(100, 150);
513 /* Turn the output on. */
514 lvdcr0 |= LVDCR0_LVRES;
515 rcar_lvds_write(lvds, LVDCR0, lvdcr0);
518 drm_panel_prepare(lvds->panel);
519 drm_panel_enable(lvds->panel);
523 static void rcar_lvds_disable(struct drm_bridge *bridge)
525 struct rcar_lvds *lvds = bridge_to_rcar_lvds(bridge);
528 drm_panel_disable(lvds->panel);
529 drm_panel_unprepare(lvds->panel);
532 rcar_lvds_write(lvds, LVDCR0, 0);
533 rcar_lvds_write(lvds, LVDCR1, 0);
534 rcar_lvds_write(lvds, LVDPLLCR, 0);
536 /* Disable the companion LVDS encoder in dual-link mode. */
537 if (lvds->dual_link && lvds->companion)
538 lvds->companion->funcs->disable(lvds->companion);
540 clk_disable_unprepare(lvds->clocks.mod);
543 static bool rcar_lvds_mode_fixup(struct drm_bridge *bridge,
544 const struct drm_display_mode *mode,
545 struct drm_display_mode *adjusted_mode)
547 struct rcar_lvds *lvds = bridge_to_rcar_lvds(bridge);
551 * The internal LVDS encoder has a restricted clock frequency operating
552 * range, from 5MHz to 148.5MHz on D3 and E3, and from 31MHz to
553 * 148.5MHz on all other platforms. Clamp the clock accordingly.
555 min_freq = lvds->info->quirks & RCAR_LVDS_QUIRK_EXT_PLL ? 5000 : 31000;
556 adjusted_mode->clock = clamp(adjusted_mode->clock, min_freq, 148500);
561 static void rcar_lvds_get_lvds_mode(struct rcar_lvds *lvds)
563 struct drm_display_info *info = &lvds->connector.display_info;
564 enum rcar_lvds_mode mode;
567 * There is no API yet to retrieve LVDS mode from a bridge, only panels
573 if (!info->num_bus_formats || !info->bus_formats) {
574 dev_err(lvds->dev, "no LVDS bus format reported\n");
578 switch (info->bus_formats[0]) {
579 case MEDIA_BUS_FMT_RGB666_1X7X3_SPWG:
580 case MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA:
581 mode = RCAR_LVDS_MODE_JEIDA;
583 case MEDIA_BUS_FMT_RGB888_1X7X4_SPWG:
584 mode = RCAR_LVDS_MODE_VESA;
587 dev_err(lvds->dev, "unsupported LVDS bus format 0x%04x\n",
588 info->bus_formats[0]);
592 if (info->bus_flags & DRM_BUS_FLAG_DATA_LSB_TO_MSB)
593 mode |= RCAR_LVDS_MODE_MIRROR;
598 static void rcar_lvds_mode_set(struct drm_bridge *bridge,
599 const struct drm_display_mode *mode,
600 const struct drm_display_mode *adjusted_mode)
602 struct rcar_lvds *lvds = bridge_to_rcar_lvds(bridge);
604 lvds->display_mode = *adjusted_mode;
606 rcar_lvds_get_lvds_mode(lvds);
609 static int rcar_lvds_attach(struct drm_bridge *bridge)
611 struct rcar_lvds *lvds = bridge_to_rcar_lvds(bridge);
612 struct drm_connector *connector = &lvds->connector;
613 struct drm_encoder *encoder = bridge->encoder;
616 /* If we have a next bridge just attach it. */
617 if (lvds->next_bridge)
618 return drm_bridge_attach(bridge->encoder, lvds->next_bridge,
621 /* Otherwise if we have a panel, create a connector. */
625 ret = drm_connector_init(bridge->dev, connector, &rcar_lvds_conn_funcs,
626 DRM_MODE_CONNECTOR_LVDS);
630 drm_connector_helper_add(connector, &rcar_lvds_conn_helper_funcs);
632 ret = drm_connector_attach_encoder(connector, encoder);
636 return drm_panel_attach(lvds->panel, connector);
639 static void rcar_lvds_detach(struct drm_bridge *bridge)
641 struct rcar_lvds *lvds = bridge_to_rcar_lvds(bridge);
644 drm_panel_detach(lvds->panel);
647 static const struct drm_bridge_funcs rcar_lvds_bridge_ops = {
648 .attach = rcar_lvds_attach,
649 .detach = rcar_lvds_detach,
650 .enable = rcar_lvds_enable,
651 .disable = rcar_lvds_disable,
652 .mode_fixup = rcar_lvds_mode_fixup,
653 .mode_set = rcar_lvds_mode_set,
656 bool rcar_lvds_dual_link(struct drm_bridge *bridge)
658 struct rcar_lvds *lvds = bridge_to_rcar_lvds(bridge);
660 return lvds->dual_link;
662 EXPORT_SYMBOL_GPL(rcar_lvds_dual_link);
664 /* -----------------------------------------------------------------------------
668 static int rcar_lvds_parse_dt_companion(struct rcar_lvds *lvds)
670 const struct of_device_id *match;
671 struct device_node *companion;
672 struct device *dev = lvds->dev;
675 /* Locate the companion LVDS encoder for dual-link operation, if any. */
676 companion = of_parse_phandle(dev->of_node, "renesas,companion", 0);
681 * Sanity check: the companion encoder must have the same compatible
684 match = of_match_device(dev->driver->of_match_table, dev);
685 if (!of_device_is_compatible(companion, match->compatible)) {
686 dev_err(dev, "Companion LVDS encoder is invalid\n");
691 lvds->companion = of_drm_find_bridge(companion);
692 if (!lvds->companion) {
697 dev_dbg(dev, "Found companion encoder %pOF\n", companion);
700 of_node_put(companion);
705 static int rcar_lvds_parse_dt(struct rcar_lvds *lvds)
707 struct device_node *local_output = NULL;
708 struct device_node *remote_input = NULL;
709 struct device_node *remote = NULL;
710 struct device_node *node;
711 bool is_bridge = false;
714 local_output = of_graph_get_endpoint_by_regs(lvds->dev->of_node, 1, 0);
716 dev_dbg(lvds->dev, "unconnected port@1\n");
722 * Locate the connected entity and infer its type from the number of
725 remote = of_graph_get_remote_port_parent(local_output);
727 dev_dbg(lvds->dev, "unconnected endpoint %pOF\n", local_output);
732 if (!of_device_is_available(remote)) {
733 dev_dbg(lvds->dev, "connected entity %pOF is disabled\n",
739 remote_input = of_graph_get_remote_endpoint(local_output);
741 for_each_endpoint_of_node(remote, node) {
742 if (node != remote_input) {
744 * We've found one endpoint other than the input, this
754 lvds->next_bridge = of_drm_find_bridge(remote);
755 if (!lvds->next_bridge) {
760 if (lvds->info->quirks & RCAR_LVDS_QUIRK_DUAL_LINK)
761 lvds->dual_link = lvds->next_bridge->timings
762 ? lvds->next_bridge->timings->dual_link
765 lvds->panel = of_drm_find_panel(remote);
766 if (IS_ERR(lvds->panel)) {
767 ret = PTR_ERR(lvds->panel);
773 ret = rcar_lvds_parse_dt_companion(lvds);
776 of_node_put(local_output);
777 of_node_put(remote_input);
781 * On D3/E3 the LVDS encoder provides a clock to the DU, which can be
782 * used for the DPAD output even when the LVDS output is not connected.
783 * Don't fail probe in that case as the DU will need the bridge to
786 if (lvds->info->quirks & RCAR_LVDS_QUIRK_EXT_PLL)
787 return ret == -ENODEV ? 0 : ret;
792 static struct clk *rcar_lvds_get_clock(struct rcar_lvds *lvds, const char *name,
797 clk = devm_clk_get(lvds->dev, name);
801 if (PTR_ERR(clk) == -ENOENT && optional)
804 if (PTR_ERR(clk) != -EPROBE_DEFER)
805 dev_err(lvds->dev, "failed to get %s clock\n",
806 name ? name : "module");
811 static int rcar_lvds_get_clocks(struct rcar_lvds *lvds)
813 lvds->clocks.mod = rcar_lvds_get_clock(lvds, NULL, false);
814 if (IS_ERR(lvds->clocks.mod))
815 return PTR_ERR(lvds->clocks.mod);
818 * LVDS encoders without an extended PLL have no external clock inputs.
820 if (!(lvds->info->quirks & RCAR_LVDS_QUIRK_EXT_PLL))
823 lvds->clocks.extal = rcar_lvds_get_clock(lvds, "extal", true);
824 if (IS_ERR(lvds->clocks.extal))
825 return PTR_ERR(lvds->clocks.extal);
827 lvds->clocks.dotclkin[0] = rcar_lvds_get_clock(lvds, "dclkin.0", true);
828 if (IS_ERR(lvds->clocks.dotclkin[0]))
829 return PTR_ERR(lvds->clocks.dotclkin[0]);
831 lvds->clocks.dotclkin[1] = rcar_lvds_get_clock(lvds, "dclkin.1", true);
832 if (IS_ERR(lvds->clocks.dotclkin[1]))
833 return PTR_ERR(lvds->clocks.dotclkin[1]);
835 /* At least one input to the PLL must be available. */
836 if (!lvds->clocks.extal && !lvds->clocks.dotclkin[0] &&
837 !lvds->clocks.dotclkin[1]) {
839 "no input clock (extal, dclkin.0 or dclkin.1)\n");
846 static const struct rcar_lvds_device_info rcar_lvds_r8a7790es1_info = {
848 .quirks = RCAR_LVDS_QUIRK_LANES,
849 .pll_setup = rcar_lvds_pll_setup_gen2,
852 static const struct soc_device_attribute lvds_quirk_matches[] = {
854 .soc_id = "r8a7790", .revision = "ES1.*",
855 .data = &rcar_lvds_r8a7790es1_info,
860 static int rcar_lvds_probe(struct platform_device *pdev)
862 const struct soc_device_attribute *attr;
863 struct rcar_lvds *lvds;
864 struct resource *mem;
867 lvds = devm_kzalloc(&pdev->dev, sizeof(*lvds), GFP_KERNEL);
871 platform_set_drvdata(pdev, lvds);
873 lvds->dev = &pdev->dev;
874 lvds->info = of_device_get_match_data(&pdev->dev);
876 attr = soc_device_match(lvds_quirk_matches);
878 lvds->info = attr->data;
880 ret = rcar_lvds_parse_dt(lvds);
884 lvds->bridge.driver_private = lvds;
885 lvds->bridge.funcs = &rcar_lvds_bridge_ops;
886 lvds->bridge.of_node = pdev->dev.of_node;
888 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
889 lvds->mmio = devm_ioremap_resource(&pdev->dev, mem);
890 if (IS_ERR(lvds->mmio))
891 return PTR_ERR(lvds->mmio);
893 ret = rcar_lvds_get_clocks(lvds);
897 drm_bridge_add(&lvds->bridge);
902 static int rcar_lvds_remove(struct platform_device *pdev)
904 struct rcar_lvds *lvds = platform_get_drvdata(pdev);
906 drm_bridge_remove(&lvds->bridge);
911 static const struct rcar_lvds_device_info rcar_lvds_gen2_info = {
913 .pll_setup = rcar_lvds_pll_setup_gen2,
916 static const struct rcar_lvds_device_info rcar_lvds_gen3_info = {
918 .quirks = RCAR_LVDS_QUIRK_PWD,
919 .pll_setup = rcar_lvds_pll_setup_gen3,
922 static const struct rcar_lvds_device_info rcar_lvds_r8a77970_info = {
924 .quirks = RCAR_LVDS_QUIRK_PWD | RCAR_LVDS_QUIRK_GEN3_LVEN,
925 .pll_setup = rcar_lvds_pll_setup_gen2,
928 static const struct rcar_lvds_device_info rcar_lvds_r8a77990_info = {
930 .quirks = RCAR_LVDS_QUIRK_GEN3_LVEN | RCAR_LVDS_QUIRK_EXT_PLL
931 | RCAR_LVDS_QUIRK_DUAL_LINK,
932 .pll_setup = rcar_lvds_pll_setup_d3_e3,
935 static const struct rcar_lvds_device_info rcar_lvds_r8a77995_info = {
937 .quirks = RCAR_LVDS_QUIRK_GEN3_LVEN | RCAR_LVDS_QUIRK_PWD
938 | RCAR_LVDS_QUIRK_EXT_PLL | RCAR_LVDS_QUIRK_DUAL_LINK,
939 .pll_setup = rcar_lvds_pll_setup_d3_e3,
942 static const struct of_device_id rcar_lvds_of_table[] = {
943 { .compatible = "renesas,r8a7743-lvds", .data = &rcar_lvds_gen2_info },
944 { .compatible = "renesas,r8a7744-lvds", .data = &rcar_lvds_gen2_info },
945 { .compatible = "renesas,r8a774a1-lvds", .data = &rcar_lvds_gen3_info },
946 { .compatible = "renesas,r8a774b1-lvds", .data = &rcar_lvds_gen3_info },
947 { .compatible = "renesas,r8a774c0-lvds", .data = &rcar_lvds_r8a77990_info },
948 { .compatible = "renesas,r8a7790-lvds", .data = &rcar_lvds_gen2_info },
949 { .compatible = "renesas,r8a7791-lvds", .data = &rcar_lvds_gen2_info },
950 { .compatible = "renesas,r8a7793-lvds", .data = &rcar_lvds_gen2_info },
951 { .compatible = "renesas,r8a7795-lvds", .data = &rcar_lvds_gen3_info },
952 { .compatible = "renesas,r8a7796-lvds", .data = &rcar_lvds_gen3_info },
953 { .compatible = "renesas,r8a77965-lvds", .data = &rcar_lvds_gen3_info },
954 { .compatible = "renesas,r8a77970-lvds", .data = &rcar_lvds_r8a77970_info },
955 { .compatible = "renesas,r8a77980-lvds", .data = &rcar_lvds_gen3_info },
956 { .compatible = "renesas,r8a77990-lvds", .data = &rcar_lvds_r8a77990_info },
957 { .compatible = "renesas,r8a77995-lvds", .data = &rcar_lvds_r8a77995_info },
961 MODULE_DEVICE_TABLE(of, rcar_lvds_of_table);
963 static struct platform_driver rcar_lvds_platform_driver = {
964 .probe = rcar_lvds_probe,
965 .remove = rcar_lvds_remove,
968 .of_match_table = rcar_lvds_of_table,
972 module_platform_driver(rcar_lvds_platform_driver);
975 MODULE_DESCRIPTION("Renesas R-Car LVDS Encoder Driver");
976 MODULE_LICENSE("GPL");