2 * Copyright (C) 2015 Free Electrons
3 * Copyright (C) 2015 NextThing Co
5 * Maxime Ripard <maxime.ripard@free-electrons.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
14 #include <drm/drm_atomic_helper.h>
15 #include <drm/drm_crtc.h>
16 #include <drm/drm_crtc_helper.h>
17 #include <drm/drm_modes.h>
18 #include <drm/drm_panel.h>
20 #include <linux/component.h>
21 #include <linux/ioport.h>
22 #include <linux/of_address.h>
23 #include <linux/of_device.h>
24 #include <linux/of_graph.h>
25 #include <linux/of_irq.h>
26 #include <linux/regmap.h>
27 #include <linux/reset.h>
29 #include "sun4i_crtc.h"
30 #include "sun4i_dotclock.h"
31 #include "sun4i_drv.h"
32 #include "sun4i_rgb.h"
33 #include "sun4i_tcon.h"
35 void sun4i_tcon_disable(struct sun4i_tcon
*tcon
)
37 DRM_DEBUG_DRIVER("Disabling TCON\n");
39 /* Disable the TCON */
40 regmap_update_bits(tcon
->regs
, SUN4I_TCON_GCTL_REG
,
41 SUN4I_TCON_GCTL_TCON_ENABLE
, 0);
43 EXPORT_SYMBOL(sun4i_tcon_disable
);
45 void sun4i_tcon_enable(struct sun4i_tcon
*tcon
)
47 DRM_DEBUG_DRIVER("Enabling TCON\n");
50 regmap_update_bits(tcon
->regs
, SUN4I_TCON_GCTL_REG
,
51 SUN4I_TCON_GCTL_TCON_ENABLE
,
52 SUN4I_TCON_GCTL_TCON_ENABLE
);
54 EXPORT_SYMBOL(sun4i_tcon_enable
);
56 void sun4i_tcon_channel_disable(struct sun4i_tcon
*tcon
, int channel
)
58 /* Disable the TCON's channel */
60 regmap_update_bits(tcon
->regs
, SUN4I_TCON0_CTL_REG
,
61 SUN4I_TCON0_CTL_TCON_ENABLE
, 0);
62 clk_disable_unprepare(tcon
->dclk
);
66 WARN_ON(!tcon
->quirks
->has_channel_1
);
67 regmap_update_bits(tcon
->regs
, SUN4I_TCON1_CTL_REG
,
68 SUN4I_TCON1_CTL_TCON_ENABLE
, 0);
69 clk_disable_unprepare(tcon
->sclk1
);
71 EXPORT_SYMBOL(sun4i_tcon_channel_disable
);
73 void sun4i_tcon_channel_enable(struct sun4i_tcon
*tcon
, int channel
)
75 /* Enable the TCON's channel */
77 regmap_update_bits(tcon
->regs
, SUN4I_TCON0_CTL_REG
,
78 SUN4I_TCON0_CTL_TCON_ENABLE
,
79 SUN4I_TCON0_CTL_TCON_ENABLE
);
80 clk_prepare_enable(tcon
->dclk
);
84 WARN_ON(!tcon
->quirks
->has_channel_1
);
85 regmap_update_bits(tcon
->regs
, SUN4I_TCON1_CTL_REG
,
86 SUN4I_TCON1_CTL_TCON_ENABLE
,
87 SUN4I_TCON1_CTL_TCON_ENABLE
);
88 clk_prepare_enable(tcon
->sclk1
);
90 EXPORT_SYMBOL(sun4i_tcon_channel_enable
);
92 void sun4i_tcon_enable_vblank(struct sun4i_tcon
*tcon
, bool enable
)
96 DRM_DEBUG_DRIVER("%sabling VBLANK interrupt\n", enable
? "En" : "Dis");
98 mask
= SUN4I_TCON_GINT0_VBLANK_ENABLE(0) |
99 SUN4I_TCON_GINT0_VBLANK_ENABLE(1);
104 regmap_update_bits(tcon
->regs
, SUN4I_TCON_GINT0_REG
, mask
, val
);
106 EXPORT_SYMBOL(sun4i_tcon_enable_vblank
);
108 static int sun4i_tcon_get_clk_delay(struct drm_display_mode
*mode
,
111 int delay
= mode
->vtotal
- mode
->vdisplay
;
113 if (mode
->flags
& DRM_MODE_FLAG_INTERLACE
)
119 delay
= min(delay
, 30);
121 DRM_DEBUG_DRIVER("TCON %d clock delay %u\n", channel
, delay
);
126 void sun4i_tcon0_mode_set(struct sun4i_tcon
*tcon
,
127 struct drm_display_mode
*mode
)
129 unsigned int bp
, hsync
, vsync
;
133 /* Adjust clock delay */
134 clk_delay
= sun4i_tcon_get_clk_delay(mode
, 0);
135 regmap_update_bits(tcon
->regs
, SUN4I_TCON0_CTL_REG
,
136 SUN4I_TCON0_CTL_CLK_DELAY_MASK
,
137 SUN4I_TCON0_CTL_CLK_DELAY(clk_delay
));
139 /* Set the resolution */
140 regmap_write(tcon
->regs
, SUN4I_TCON0_BASIC0_REG
,
141 SUN4I_TCON0_BASIC0_X(mode
->crtc_hdisplay
) |
142 SUN4I_TCON0_BASIC0_Y(mode
->crtc_vdisplay
));
145 * This is called a backporch in the register documentation,
146 * but it really is the front porch + hsync
148 bp
= mode
->crtc_htotal
- mode
->crtc_hsync_start
;
149 DRM_DEBUG_DRIVER("Setting horizontal total %d, backporch %d\n",
150 mode
->crtc_htotal
, bp
);
152 /* Set horizontal display timings */
153 regmap_write(tcon
->regs
, SUN4I_TCON0_BASIC1_REG
,
154 SUN4I_TCON0_BASIC1_H_TOTAL(mode
->crtc_htotal
) |
155 SUN4I_TCON0_BASIC1_H_BACKPORCH(bp
));
158 * This is called a backporch in the register documentation,
159 * but it really is the front porch + hsync
161 bp
= mode
->crtc_vtotal
- mode
->crtc_vsync_start
;
162 DRM_DEBUG_DRIVER("Setting vertical total %d, backporch %d\n",
163 mode
->crtc_vtotal
, bp
);
165 /* Set vertical display timings */
166 regmap_write(tcon
->regs
, SUN4I_TCON0_BASIC2_REG
,
167 SUN4I_TCON0_BASIC2_V_TOTAL(mode
->crtc_vtotal
) |
168 SUN4I_TCON0_BASIC2_V_BACKPORCH(bp
));
170 /* Set Hsync and Vsync length */
171 hsync
= mode
->crtc_hsync_end
- mode
->crtc_hsync_start
;
172 vsync
= mode
->crtc_vsync_end
- mode
->crtc_vsync_start
;
173 DRM_DEBUG_DRIVER("Setting HSYNC %d, VSYNC %d\n", hsync
, vsync
);
174 regmap_write(tcon
->regs
, SUN4I_TCON0_BASIC3_REG
,
175 SUN4I_TCON0_BASIC3_V_SYNC(vsync
) |
176 SUN4I_TCON0_BASIC3_H_SYNC(hsync
));
178 /* Setup the polarity of the various signals */
179 if (!(mode
->flags
& DRM_MODE_FLAG_PHSYNC
))
180 val
|= SUN4I_TCON0_IO_POL_HSYNC_POSITIVE
;
182 if (!(mode
->flags
& DRM_MODE_FLAG_PVSYNC
))
183 val
|= SUN4I_TCON0_IO_POL_VSYNC_POSITIVE
;
185 regmap_update_bits(tcon
->regs
, SUN4I_TCON0_IO_POL_REG
,
186 SUN4I_TCON0_IO_POL_HSYNC_POSITIVE
| SUN4I_TCON0_IO_POL_VSYNC_POSITIVE
,
189 /* Map output pins to channel 0 */
190 regmap_update_bits(tcon
->regs
, SUN4I_TCON_GCTL_REG
,
191 SUN4I_TCON_GCTL_IOMAP_MASK
,
192 SUN4I_TCON_GCTL_IOMAP_TCON0
);
194 /* Enable the output on the pins */
195 regmap_write(tcon
->regs
, SUN4I_TCON0_IO_TRI_REG
, 0);
197 EXPORT_SYMBOL(sun4i_tcon0_mode_set
);
199 void sun4i_tcon1_mode_set(struct sun4i_tcon
*tcon
,
200 struct drm_display_mode
*mode
)
202 unsigned int bp
, hsync
, vsync
;
206 WARN_ON(!tcon
->quirks
->has_channel_1
);
208 /* Adjust clock delay */
209 clk_delay
= sun4i_tcon_get_clk_delay(mode
, 1);
210 regmap_update_bits(tcon
->regs
, SUN4I_TCON1_CTL_REG
,
211 SUN4I_TCON1_CTL_CLK_DELAY_MASK
,
212 SUN4I_TCON1_CTL_CLK_DELAY(clk_delay
));
214 /* Set interlaced mode */
215 if (mode
->flags
& DRM_MODE_FLAG_INTERLACE
)
216 val
= SUN4I_TCON1_CTL_INTERLACE_ENABLE
;
219 regmap_update_bits(tcon
->regs
, SUN4I_TCON1_CTL_REG
,
220 SUN4I_TCON1_CTL_INTERLACE_ENABLE
,
223 /* Set the input resolution */
224 regmap_write(tcon
->regs
, SUN4I_TCON1_BASIC0_REG
,
225 SUN4I_TCON1_BASIC0_X(mode
->crtc_hdisplay
) |
226 SUN4I_TCON1_BASIC0_Y(mode
->crtc_vdisplay
));
228 /* Set the upscaling resolution */
229 regmap_write(tcon
->regs
, SUN4I_TCON1_BASIC1_REG
,
230 SUN4I_TCON1_BASIC1_X(mode
->crtc_hdisplay
) |
231 SUN4I_TCON1_BASIC1_Y(mode
->crtc_vdisplay
));
233 /* Set the output resolution */
234 regmap_write(tcon
->regs
, SUN4I_TCON1_BASIC2_REG
,
235 SUN4I_TCON1_BASIC2_X(mode
->crtc_hdisplay
) |
236 SUN4I_TCON1_BASIC2_Y(mode
->crtc_vdisplay
));
238 /* Set horizontal display timings */
239 bp
= mode
->crtc_htotal
- mode
->crtc_hsync_end
;
240 DRM_DEBUG_DRIVER("Setting horizontal total %d, backporch %d\n",
242 regmap_write(tcon
->regs
, SUN4I_TCON1_BASIC3_REG
,
243 SUN4I_TCON1_BASIC3_H_TOTAL(mode
->crtc_htotal
) |
244 SUN4I_TCON1_BASIC3_H_BACKPORCH(bp
));
246 /* Set vertical display timings */
247 bp
= mode
->crtc_vtotal
- mode
->crtc_vsync_end
;
248 DRM_DEBUG_DRIVER("Setting vertical total %d, backporch %d\n",
250 regmap_write(tcon
->regs
, SUN4I_TCON1_BASIC4_REG
,
251 SUN4I_TCON1_BASIC4_V_TOTAL(mode
->vtotal
) |
252 SUN4I_TCON1_BASIC4_V_BACKPORCH(bp
));
254 /* Set Hsync and Vsync length */
255 hsync
= mode
->crtc_hsync_end
- mode
->crtc_hsync_start
;
256 vsync
= mode
->crtc_vsync_end
- mode
->crtc_vsync_start
;
257 DRM_DEBUG_DRIVER("Setting HSYNC %d, VSYNC %d\n", hsync
, vsync
);
258 regmap_write(tcon
->regs
, SUN4I_TCON1_BASIC5_REG
,
259 SUN4I_TCON1_BASIC5_V_SYNC(vsync
) |
260 SUN4I_TCON1_BASIC5_H_SYNC(hsync
));
262 /* Map output pins to channel 1 */
263 regmap_update_bits(tcon
->regs
, SUN4I_TCON_GCTL_REG
,
264 SUN4I_TCON_GCTL_IOMAP_MASK
,
265 SUN4I_TCON_GCTL_IOMAP_TCON1
);
268 * FIXME: Undocumented bits
270 if (tcon
->quirks
->has_unknown_mux
)
271 regmap_write(tcon
->regs
, SUN4I_TCON_MUX_CTRL_REG
, 1);
273 EXPORT_SYMBOL(sun4i_tcon1_mode_set
);
275 static void sun4i_tcon_finish_page_flip(struct drm_device
*dev
,
276 struct sun4i_crtc
*scrtc
)
280 spin_lock_irqsave(&dev
->event_lock
, flags
);
282 drm_crtc_send_vblank_event(&scrtc
->crtc
, scrtc
->event
);
283 drm_crtc_vblank_put(&scrtc
->crtc
);
286 spin_unlock_irqrestore(&dev
->event_lock
, flags
);
289 static irqreturn_t
sun4i_tcon_handler(int irq
, void *private)
291 struct sun4i_tcon
*tcon
= private;
292 struct drm_device
*drm
= tcon
->drm
;
293 struct sun4i_drv
*drv
= drm
->dev_private
;
294 struct sun4i_crtc
*scrtc
= drv
->crtc
;
297 regmap_read(tcon
->regs
, SUN4I_TCON_GINT0_REG
, &status
);
299 if (!(status
& (SUN4I_TCON_GINT0_VBLANK_INT(0) |
300 SUN4I_TCON_GINT0_VBLANK_INT(1))))
303 drm_crtc_handle_vblank(&scrtc
->crtc
);
304 sun4i_tcon_finish_page_flip(drm
, scrtc
);
306 /* Acknowledge the interrupt */
307 regmap_update_bits(tcon
->regs
, SUN4I_TCON_GINT0_REG
,
308 SUN4I_TCON_GINT0_VBLANK_INT(0) |
309 SUN4I_TCON_GINT0_VBLANK_INT(1),
315 static int sun4i_tcon_init_clocks(struct device
*dev
,
316 struct sun4i_tcon
*tcon
)
318 tcon
->clk
= devm_clk_get(dev
, "ahb");
319 if (IS_ERR(tcon
->clk
)) {
320 dev_err(dev
, "Couldn't get the TCON bus clock\n");
321 return PTR_ERR(tcon
->clk
);
323 clk_prepare_enable(tcon
->clk
);
325 tcon
->sclk0
= devm_clk_get(dev
, "tcon-ch0");
326 if (IS_ERR(tcon
->sclk0
)) {
327 dev_err(dev
, "Couldn't get the TCON channel 0 clock\n");
328 return PTR_ERR(tcon
->sclk0
);
331 if (tcon
->quirks
->has_channel_1
) {
332 tcon
->sclk1
= devm_clk_get(dev
, "tcon-ch1");
333 if (IS_ERR(tcon
->sclk1
)) {
334 dev_err(dev
, "Couldn't get the TCON channel 1 clock\n");
335 return PTR_ERR(tcon
->sclk1
);
339 return sun4i_dclk_create(dev
, tcon
);
342 static void sun4i_tcon_free_clocks(struct sun4i_tcon
*tcon
)
344 sun4i_dclk_free(tcon
);
345 clk_disable_unprepare(tcon
->clk
);
348 static int sun4i_tcon_init_irq(struct device
*dev
,
349 struct sun4i_tcon
*tcon
)
351 struct platform_device
*pdev
= to_platform_device(dev
);
354 irq
= platform_get_irq(pdev
, 0);
356 dev_err(dev
, "Couldn't retrieve the TCON interrupt\n");
360 ret
= devm_request_irq(dev
, irq
, sun4i_tcon_handler
, 0,
361 dev_name(dev
), tcon
);
363 dev_err(dev
, "Couldn't request the IRQ\n");
370 static struct regmap_config sun4i_tcon_regmap_config
= {
374 .max_register
= 0x800,
377 static int sun4i_tcon_init_regmap(struct device
*dev
,
378 struct sun4i_tcon
*tcon
)
380 struct platform_device
*pdev
= to_platform_device(dev
);
381 struct resource
*res
;
384 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
385 regs
= devm_ioremap_resource(dev
, res
);
387 return PTR_ERR(regs
);
389 tcon
->regs
= devm_regmap_init_mmio(dev
, regs
,
390 &sun4i_tcon_regmap_config
);
391 if (IS_ERR(tcon
->regs
)) {
392 dev_err(dev
, "Couldn't create the TCON regmap\n");
393 return PTR_ERR(tcon
->regs
);
396 /* Make sure the TCON is disabled and all IRQs are off */
397 regmap_write(tcon
->regs
, SUN4I_TCON_GCTL_REG
, 0);
398 regmap_write(tcon
->regs
, SUN4I_TCON_GINT0_REG
, 0);
399 regmap_write(tcon
->regs
, SUN4I_TCON_GINT1_REG
, 0);
401 /* Disable IO lines and set them to tristate */
402 regmap_write(tcon
->regs
, SUN4I_TCON0_IO_TRI_REG
, ~0);
403 regmap_write(tcon
->regs
, SUN4I_TCON1_IO_TRI_REG
, ~0);
408 struct drm_panel
*sun4i_tcon_find_panel(struct device_node
*node
)
410 struct device_node
*port
, *remote
, *child
;
411 struct device_node
*end_node
= NULL
;
413 /* Inputs are listed first, then outputs */
414 port
= of_graph_get_port_by_id(node
, 1);
417 * Our first output is the RGB interface where the panel will
420 for_each_child_of_node(port
, child
) {
423 of_property_read_u32(child
, "reg", ®
);
429 DRM_DEBUG_DRIVER("Missing panel endpoint\n");
430 return ERR_PTR(-ENODEV
);
433 remote
= of_graph_get_remote_port_parent(end_node
);
435 DRM_DEBUG_DRIVER("Unable to parse remote node\n");
436 return ERR_PTR(-EINVAL
);
439 return of_drm_find_panel(remote
) ?: ERR_PTR(-EPROBE_DEFER
);
442 struct drm_bridge
*sun4i_tcon_find_bridge(struct device_node
*node
)
444 struct device_node
*port
, *remote
, *child
;
445 struct device_node
*end_node
= NULL
;
447 /* Inputs are listed first, then outputs */
448 port
= of_graph_get_port_by_id(node
, 1);
451 * Our first output is the RGB interface where the panel will
454 for_each_child_of_node(port
, child
) {
457 of_property_read_u32(child
, "reg", ®
);
463 DRM_DEBUG_DRIVER("Missing bridge endpoint\n");
464 return ERR_PTR(-ENODEV
);
467 remote
= of_graph_get_remote_port_parent(end_node
);
469 DRM_DEBUG_DRIVER("Enable to parse remote node\n");
470 return ERR_PTR(-EINVAL
);
473 return of_drm_find_bridge(remote
) ?: ERR_PTR(-EPROBE_DEFER
);
476 static int sun4i_tcon_bind(struct device
*dev
, struct device
*master
,
479 struct drm_device
*drm
= data
;
480 struct sun4i_drv
*drv
= drm
->dev_private
;
481 struct sun4i_tcon
*tcon
;
484 tcon
= devm_kzalloc(dev
, sizeof(*tcon
), GFP_KERNEL
);
487 dev_set_drvdata(dev
, tcon
);
491 tcon
->quirks
= of_device_get_match_data(dev
);
493 tcon
->lcd_rst
= devm_reset_control_get(dev
, "lcd");
494 if (IS_ERR(tcon
->lcd_rst
)) {
495 dev_err(dev
, "Couldn't get our reset line\n");
496 return PTR_ERR(tcon
->lcd_rst
);
499 /* Make sure our TCON is reset */
500 if (!reset_control_status(tcon
->lcd_rst
))
501 reset_control_assert(tcon
->lcd_rst
);
503 ret
= reset_control_deassert(tcon
->lcd_rst
);
505 dev_err(dev
, "Couldn't deassert our reset line\n");
509 ret
= sun4i_tcon_init_regmap(dev
, tcon
);
511 dev_err(dev
, "Couldn't init our TCON regmap\n");
512 goto err_assert_reset
;
515 ret
= sun4i_tcon_init_clocks(dev
, tcon
);
517 dev_err(dev
, "Couldn't init our TCON clocks\n");
518 goto err_assert_reset
;
521 ret
= sun4i_tcon_init_irq(dev
, tcon
);
523 dev_err(dev
, "Couldn't init our TCON interrupts\n");
524 goto err_free_clocks
;
527 ret
= sun4i_rgb_init(drm
);
529 goto err_free_clocks
;
534 sun4i_tcon_free_clocks(tcon
);
536 reset_control_assert(tcon
->lcd_rst
);
540 static void sun4i_tcon_unbind(struct device
*dev
, struct device
*master
,
543 struct sun4i_tcon
*tcon
= dev_get_drvdata(dev
);
545 sun4i_tcon_free_clocks(tcon
);
548 static const struct component_ops sun4i_tcon_ops
= {
549 .bind
= sun4i_tcon_bind
,
550 .unbind
= sun4i_tcon_unbind
,
553 static int sun4i_tcon_probe(struct platform_device
*pdev
)
555 struct device_node
*node
= pdev
->dev
.of_node
;
556 struct drm_bridge
*bridge
;
557 struct drm_panel
*panel
;
560 * Neither the bridge or the panel is ready.
563 panel
= sun4i_tcon_find_panel(node
);
564 bridge
= sun4i_tcon_find_bridge(node
);
567 * If we don't have a panel endpoint, just go on
569 if ((PTR_ERR(panel
) == -EPROBE_DEFER
) &&
570 (PTR_ERR(bridge
) == -EPROBE_DEFER
)) {
571 DRM_DEBUG_DRIVER("Still waiting for our panel/bridge. Deferring...\n");
572 return -EPROBE_DEFER
;
575 return component_add(&pdev
->dev
, &sun4i_tcon_ops
);
578 static int sun4i_tcon_remove(struct platform_device
*pdev
)
580 component_del(&pdev
->dev
, &sun4i_tcon_ops
);
585 static const struct sun4i_tcon_quirks sun5i_a13_quirks
= {
586 .has_unknown_mux
= true,
587 .has_channel_1
= true,
590 static const struct sun4i_tcon_quirks sun6i_a31_quirks
= {
591 .has_channel_1
= true,
594 static const struct sun4i_tcon_quirks sun6i_a31s_quirks
= {
595 .has_channel_1
= true,
598 static const struct sun4i_tcon_quirks sun8i_a33_quirks
= {
599 /* nothing is supported */
602 static const struct of_device_id sun4i_tcon_of_table
[] = {
603 { .compatible
= "allwinner,sun5i-a13-tcon", .data
= &sun5i_a13_quirks
},
604 { .compatible
= "allwinner,sun6i-a31-tcon", .data
= &sun6i_a31_quirks
},
605 { .compatible
= "allwinner,sun6i-a31s-tcon", .data
= &sun6i_a31s_quirks
},
606 { .compatible
= "allwinner,sun8i-a33-tcon", .data
= &sun8i_a33_quirks
},
609 MODULE_DEVICE_TABLE(of
, sun4i_tcon_of_table
);
611 static struct platform_driver sun4i_tcon_platform_driver
= {
612 .probe
= sun4i_tcon_probe
,
613 .remove
= sun4i_tcon_remove
,
615 .name
= "sun4i-tcon",
616 .of_match_table
= sun4i_tcon_of_table
,
619 module_platform_driver(sun4i_tcon_platform_driver
);
621 MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
622 MODULE_DESCRIPTION("Allwinner A10 Timing Controller Driver");
623 MODULE_LICENSE("GPL");