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_fb_cma_helper.h>
18 #include <drm/drm_gem_cma_helper.h>
19 #include <drm/drm_plane_helper.h>
21 #include <linux/component.h>
22 #include <linux/list.h>
23 #include <linux/of_device.h>
24 #include <linux/of_graph.h>
25 #include <linux/reset.h>
27 #include "sun4i_backend.h"
28 #include "sun4i_drv.h"
29 #include "sun4i_layer.h"
30 #include "sunxi_engine.h"
32 struct sun4i_backend_quirks
{
33 /* backend <-> TCON muxing selection done in backend */
34 bool needs_output_muxing
;
37 static const u32 sunxi_rgb2yuv_coef
[12] = {
38 0x00000107, 0x00000204, 0x00000064, 0x00000108,
39 0x00003f69, 0x00003ed6, 0x000001c1, 0x00000808,
40 0x000001c1, 0x00003e88, 0x00003fb8, 0x00000808
43 static void sun4i_backend_apply_color_correction(struct sunxi_engine
*engine
)
47 DRM_DEBUG_DRIVER("Applying RGB to YUV color correction\n");
49 /* Set color correction */
50 regmap_write(engine
->regs
, SUN4I_BACKEND_OCCTL_REG
,
51 SUN4I_BACKEND_OCCTL_ENABLE
);
53 for (i
= 0; i
< 12; i
++)
54 regmap_write(engine
->regs
, SUN4I_BACKEND_OCRCOEF_REG(i
),
55 sunxi_rgb2yuv_coef
[i
]);
58 static void sun4i_backend_disable_color_correction(struct sunxi_engine
*engine
)
60 DRM_DEBUG_DRIVER("Disabling color correction\n");
62 /* Disable color correction */
63 regmap_update_bits(engine
->regs
, SUN4I_BACKEND_OCCTL_REG
,
64 SUN4I_BACKEND_OCCTL_ENABLE
, 0);
67 static void sun4i_backend_commit(struct sunxi_engine
*engine
)
69 DRM_DEBUG_DRIVER("Committing changes\n");
71 regmap_write(engine
->regs
, SUN4I_BACKEND_REGBUFFCTL_REG
,
72 SUN4I_BACKEND_REGBUFFCTL_AUTOLOAD_DIS
|
73 SUN4I_BACKEND_REGBUFFCTL_LOADCTL
);
76 void sun4i_backend_layer_enable(struct sun4i_backend
*backend
,
77 int layer
, bool enable
)
81 DRM_DEBUG_DRIVER("%sabling layer %d\n", enable
? "En" : "Dis",
85 val
= SUN4I_BACKEND_MODCTL_LAY_EN(layer
);
89 regmap_update_bits(backend
->engine
.regs
, SUN4I_BACKEND_MODCTL_REG
,
90 SUN4I_BACKEND_MODCTL_LAY_EN(layer
), val
);
93 static int sun4i_backend_drm_format_to_layer(struct drm_plane
*plane
,
94 u32 format
, u32
*mode
)
96 if ((plane
->type
== DRM_PLANE_TYPE_PRIMARY
) &&
97 (format
== DRM_FORMAT_ARGB8888
))
98 format
= DRM_FORMAT_XRGB8888
;
101 case DRM_FORMAT_ARGB8888
:
102 *mode
= SUN4I_BACKEND_LAY_FBFMT_ARGB8888
;
105 case DRM_FORMAT_ARGB4444
:
106 *mode
= SUN4I_BACKEND_LAY_FBFMT_ARGB4444
;
109 case DRM_FORMAT_ARGB1555
:
110 *mode
= SUN4I_BACKEND_LAY_FBFMT_ARGB1555
;
113 case DRM_FORMAT_RGBA5551
:
114 *mode
= SUN4I_BACKEND_LAY_FBFMT_RGBA5551
;
117 case DRM_FORMAT_RGBA4444
:
118 *mode
= SUN4I_BACKEND_LAY_FBFMT_RGBA4444
;
121 case DRM_FORMAT_XRGB8888
:
122 *mode
= SUN4I_BACKEND_LAY_FBFMT_XRGB8888
;
125 case DRM_FORMAT_RGB888
:
126 *mode
= SUN4I_BACKEND_LAY_FBFMT_RGB888
;
129 case DRM_FORMAT_RGB565
:
130 *mode
= SUN4I_BACKEND_LAY_FBFMT_RGB565
;
140 int sun4i_backend_update_layer_coord(struct sun4i_backend
*backend
,
141 int layer
, struct drm_plane
*plane
)
143 struct drm_plane_state
*state
= plane
->state
;
144 struct drm_framebuffer
*fb
= state
->fb
;
146 DRM_DEBUG_DRIVER("Updating layer %d\n", layer
);
148 if (plane
->type
== DRM_PLANE_TYPE_PRIMARY
) {
149 DRM_DEBUG_DRIVER("Primary layer, updating global size W: %u H: %u\n",
150 state
->crtc_w
, state
->crtc_h
);
151 regmap_write(backend
->engine
.regs
, SUN4I_BACKEND_DISSIZE_REG
,
152 SUN4I_BACKEND_DISSIZE(state
->crtc_w
,
156 /* Set the line width */
157 DRM_DEBUG_DRIVER("Layer line width: %d bits\n", fb
->pitches
[0] * 8);
158 regmap_write(backend
->engine
.regs
,
159 SUN4I_BACKEND_LAYLINEWIDTH_REG(layer
),
162 /* Set height and width */
163 DRM_DEBUG_DRIVER("Layer size W: %u H: %u\n",
164 state
->crtc_w
, state
->crtc_h
);
165 regmap_write(backend
->engine
.regs
, SUN4I_BACKEND_LAYSIZE_REG(layer
),
166 SUN4I_BACKEND_LAYSIZE(state
->crtc_w
,
169 /* Set base coordinates */
170 DRM_DEBUG_DRIVER("Layer coordinates X: %d Y: %d\n",
171 state
->crtc_x
, state
->crtc_y
);
172 regmap_write(backend
->engine
.regs
, SUN4I_BACKEND_LAYCOOR_REG(layer
),
173 SUN4I_BACKEND_LAYCOOR(state
->crtc_x
,
179 int sun4i_backend_update_layer_formats(struct sun4i_backend
*backend
,
180 int layer
, struct drm_plane
*plane
)
182 struct drm_plane_state
*state
= plane
->state
;
183 struct drm_framebuffer
*fb
= state
->fb
;
184 bool interlaced
= false;
188 if (plane
->state
->crtc
)
189 interlaced
= plane
->state
->crtc
->state
->adjusted_mode
.flags
190 & DRM_MODE_FLAG_INTERLACE
;
192 regmap_update_bits(backend
->engine
.regs
, SUN4I_BACKEND_MODCTL_REG
,
193 SUN4I_BACKEND_MODCTL_ITLMOD_EN
,
194 interlaced
? SUN4I_BACKEND_MODCTL_ITLMOD_EN
: 0);
196 DRM_DEBUG_DRIVER("Switching display backend interlaced mode %s\n",
197 interlaced
? "on" : "off");
199 ret
= sun4i_backend_drm_format_to_layer(plane
, fb
->format
->format
,
202 DRM_DEBUG_DRIVER("Invalid format\n");
206 regmap_update_bits(backend
->engine
.regs
,
207 SUN4I_BACKEND_ATTCTL_REG1(layer
),
208 SUN4I_BACKEND_ATTCTL_REG1_LAY_FBFMT
, val
);
213 int sun4i_backend_update_layer_buffer(struct sun4i_backend
*backend
,
214 int layer
, struct drm_plane
*plane
)
216 struct drm_plane_state
*state
= plane
->state
;
217 struct drm_framebuffer
*fb
= state
->fb
;
218 u32 lo_paddr
, hi_paddr
;
221 /* Get the start of the displayed memory */
222 paddr
= drm_fb_cma_get_gem_addr(fb
, state
, 0);
223 DRM_DEBUG_DRIVER("Setting buffer address to %pad\n", &paddr
);
226 * backend DMA accesses DRAM directly, bypassing the system
227 * bus. As such, the address range is different and the buffer
228 * address needs to be corrected.
230 paddr
-= PHYS_OFFSET
;
232 /* Write the 32 lower bits of the address (in bits) */
233 lo_paddr
= paddr
<< 3;
234 DRM_DEBUG_DRIVER("Setting address lower bits to 0x%x\n", lo_paddr
);
235 regmap_write(backend
->engine
.regs
,
236 SUN4I_BACKEND_LAYFB_L32ADD_REG(layer
),
239 /* And the upper bits */
240 hi_paddr
= paddr
>> 29;
241 DRM_DEBUG_DRIVER("Setting address high bits to 0x%x\n", hi_paddr
);
242 regmap_update_bits(backend
->engine
.regs
, SUN4I_BACKEND_LAYFB_H4ADD_REG
,
243 SUN4I_BACKEND_LAYFB_H4ADD_MSK(layer
),
244 SUN4I_BACKEND_LAYFB_H4ADD(layer
, hi_paddr
));
249 static int sun4i_backend_init_sat(struct device
*dev
) {
250 struct sun4i_backend
*backend
= dev_get_drvdata(dev
);
253 backend
->sat_reset
= devm_reset_control_get(dev
, "sat");
254 if (IS_ERR(backend
->sat_reset
)) {
255 dev_err(dev
, "Couldn't get the SAT reset line\n");
256 return PTR_ERR(backend
->sat_reset
);
259 ret
= reset_control_deassert(backend
->sat_reset
);
261 dev_err(dev
, "Couldn't deassert the SAT reset line\n");
265 backend
->sat_clk
= devm_clk_get(dev
, "sat");
266 if (IS_ERR(backend
->sat_clk
)) {
267 dev_err(dev
, "Couldn't get our SAT clock\n");
268 ret
= PTR_ERR(backend
->sat_clk
);
269 goto err_assert_reset
;
272 ret
= clk_prepare_enable(backend
->sat_clk
);
274 dev_err(dev
, "Couldn't enable the SAT clock\n");
281 reset_control_assert(backend
->sat_reset
);
285 static int sun4i_backend_free_sat(struct device
*dev
) {
286 struct sun4i_backend
*backend
= dev_get_drvdata(dev
);
288 clk_disable_unprepare(backend
->sat_clk
);
289 reset_control_assert(backend
->sat_reset
);
295 * The display backend can take video output from the display frontend, or
296 * the display enhancement unit on the A80, as input for one it its layers.
297 * This relationship within the display pipeline is encoded in the device
298 * tree with of_graph, and we use it here to figure out which backend, if
299 * there are 2 or more, we are currently probing. The number would be in
300 * the "reg" property of the upstream output port endpoint.
302 static int sun4i_backend_of_get_id(struct device_node
*node
)
304 struct device_node
*port
, *ep
;
307 /* input is port 0 */
308 port
= of_graph_get_port_by_id(node
, 0);
312 /* try finding an upstream endpoint */
313 for_each_available_child_of_node(port
, ep
) {
314 struct device_node
*remote
;
317 remote
= of_graph_get_remote_endpoint(ep
);
321 ret
= of_property_read_u32(remote
, "reg", ®
);
333 static const struct sunxi_engine_ops sun4i_backend_engine_ops
= {
334 .commit
= sun4i_backend_commit
,
335 .layers_init
= sun4i_layers_init
,
336 .apply_color_correction
= sun4i_backend_apply_color_correction
,
337 .disable_color_correction
= sun4i_backend_disable_color_correction
,
340 static struct regmap_config sun4i_backend_regmap_config
= {
344 .max_register
= 0x5800,
347 static int sun4i_backend_bind(struct device
*dev
, struct device
*master
,
350 struct platform_device
*pdev
= to_platform_device(dev
);
351 struct drm_device
*drm
= data
;
352 struct sun4i_drv
*drv
= drm
->dev_private
;
353 struct sun4i_backend
*backend
;
354 const struct sun4i_backend_quirks
*quirks
;
355 struct resource
*res
;
359 backend
= devm_kzalloc(dev
, sizeof(*backend
), GFP_KERNEL
);
362 dev_set_drvdata(dev
, backend
);
364 backend
->engine
.node
= dev
->of_node
;
365 backend
->engine
.ops
= &sun4i_backend_engine_ops
;
366 backend
->engine
.id
= sun4i_backend_of_get_id(dev
->of_node
);
367 if (backend
->engine
.id
< 0)
368 return backend
->engine
.id
;
370 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
371 regs
= devm_ioremap_resource(dev
, res
);
373 return PTR_ERR(regs
);
375 backend
->reset
= devm_reset_control_get(dev
, NULL
);
376 if (IS_ERR(backend
->reset
)) {
377 dev_err(dev
, "Couldn't get our reset line\n");
378 return PTR_ERR(backend
->reset
);
381 ret
= reset_control_deassert(backend
->reset
);
383 dev_err(dev
, "Couldn't deassert our reset line\n");
387 backend
->bus_clk
= devm_clk_get(dev
, "ahb");
388 if (IS_ERR(backend
->bus_clk
)) {
389 dev_err(dev
, "Couldn't get the backend bus clock\n");
390 ret
= PTR_ERR(backend
->bus_clk
);
391 goto err_assert_reset
;
393 clk_prepare_enable(backend
->bus_clk
);
395 backend
->mod_clk
= devm_clk_get(dev
, "mod");
396 if (IS_ERR(backend
->mod_clk
)) {
397 dev_err(dev
, "Couldn't get the backend module clock\n");
398 ret
= PTR_ERR(backend
->mod_clk
);
399 goto err_disable_bus_clk
;
401 clk_prepare_enable(backend
->mod_clk
);
403 backend
->ram_clk
= devm_clk_get(dev
, "ram");
404 if (IS_ERR(backend
->ram_clk
)) {
405 dev_err(dev
, "Couldn't get the backend RAM clock\n");
406 ret
= PTR_ERR(backend
->ram_clk
);
407 goto err_disable_mod_clk
;
409 clk_prepare_enable(backend
->ram_clk
);
411 if (of_device_is_compatible(dev
->of_node
,
412 "allwinner,sun8i-a33-display-backend")) {
413 ret
= sun4i_backend_init_sat(dev
);
415 dev_err(dev
, "Couldn't init SAT resources\n");
416 goto err_disable_ram_clk
;
420 backend
->engine
.regs
= devm_regmap_init_mmio(dev
, regs
,
421 &sun4i_backend_regmap_config
);
422 if (IS_ERR(backend
->engine
.regs
)) {
423 dev_err(dev
, "Couldn't create the backend regmap\n");
424 return PTR_ERR(backend
->engine
.regs
);
427 list_add_tail(&backend
->engine
.list
, &drv
->engine_list
);
430 * Many of the backend's layer configuration registers have
431 * undefined default values. This poses a risk as we use
432 * regmap_update_bits in some places, and don't overwrite
433 * the whole register.
435 * Clear the registers here to have something predictable.
437 for (i
= 0x800; i
< 0x1000; i
+= 4)
438 regmap_write(backend
->engine
.regs
, i
, 0);
440 /* Disable registers autoloading */
441 regmap_write(backend
->engine
.regs
, SUN4I_BACKEND_REGBUFFCTL_REG
,
442 SUN4I_BACKEND_REGBUFFCTL_AUTOLOAD_DIS
);
444 /* Enable the backend */
445 regmap_write(backend
->engine
.regs
, SUN4I_BACKEND_MODCTL_REG
,
446 SUN4I_BACKEND_MODCTL_DEBE_EN
|
447 SUN4I_BACKEND_MODCTL_START_CTL
);
449 /* Set output selection if needed */
450 quirks
= of_device_get_match_data(dev
);
451 if (quirks
->needs_output_muxing
) {
453 * We assume there is no dynamic muxing of backends
454 * and TCONs, so we select the backend with same ID.
456 * While dynamic selection might be interesting, since
457 * the CRTC is tied to the TCON, while the layers are
458 * tied to the backends, this means, we will need to
459 * switch between groups of layers. There might not be
460 * a way to represent this constraint in DRM.
462 regmap_update_bits(backend
->engine
.regs
,
463 SUN4I_BACKEND_MODCTL_REG
,
464 SUN4I_BACKEND_MODCTL_OUT_SEL
,
466 ? SUN4I_BACKEND_MODCTL_OUT_LCD1
467 : SUN4I_BACKEND_MODCTL_OUT_LCD0
));
473 clk_disable_unprepare(backend
->ram_clk
);
475 clk_disable_unprepare(backend
->mod_clk
);
477 clk_disable_unprepare(backend
->bus_clk
);
479 reset_control_assert(backend
->reset
);
483 static void sun4i_backend_unbind(struct device
*dev
, struct device
*master
,
486 struct sun4i_backend
*backend
= dev_get_drvdata(dev
);
488 list_del(&backend
->engine
.list
);
490 if (of_device_is_compatible(dev
->of_node
,
491 "allwinner,sun8i-a33-display-backend"))
492 sun4i_backend_free_sat(dev
);
494 clk_disable_unprepare(backend
->ram_clk
);
495 clk_disable_unprepare(backend
->mod_clk
);
496 clk_disable_unprepare(backend
->bus_clk
);
497 reset_control_assert(backend
->reset
);
500 static const struct component_ops sun4i_backend_ops
= {
501 .bind
= sun4i_backend_bind
,
502 .unbind
= sun4i_backend_unbind
,
505 static int sun4i_backend_probe(struct platform_device
*pdev
)
507 return component_add(&pdev
->dev
, &sun4i_backend_ops
);
510 static int sun4i_backend_remove(struct platform_device
*pdev
)
512 component_del(&pdev
->dev
, &sun4i_backend_ops
);
517 static const struct sun4i_backend_quirks sun4i_backend_quirks
= {
518 .needs_output_muxing
= true,
521 static const struct sun4i_backend_quirks sun5i_backend_quirks
= {
524 static const struct sun4i_backend_quirks sun6i_backend_quirks
= {
527 static const struct sun4i_backend_quirks sun7i_backend_quirks
= {
528 .needs_output_muxing
= true,
531 static const struct sun4i_backend_quirks sun8i_a33_backend_quirks
= {
534 static const struct of_device_id sun4i_backend_of_table
[] = {
536 .compatible
= "allwinner,sun4i-a10-display-backend",
537 .data
= &sun4i_backend_quirks
,
540 .compatible
= "allwinner,sun5i-a13-display-backend",
541 .data
= &sun5i_backend_quirks
,
544 .compatible
= "allwinner,sun6i-a31-display-backend",
545 .data
= &sun6i_backend_quirks
,
548 .compatible
= "allwinner,sun7i-a20-display-backend",
549 .data
= &sun7i_backend_quirks
,
552 .compatible
= "allwinner,sun8i-a33-display-backend",
553 .data
= &sun8i_a33_backend_quirks
,
557 MODULE_DEVICE_TABLE(of
, sun4i_backend_of_table
);
559 static struct platform_driver sun4i_backend_platform_driver
= {
560 .probe
= sun4i_backend_probe
,
561 .remove
= sun4i_backend_remove
,
563 .name
= "sun4i-backend",
564 .of_match_table
= sun4i_backend_of_table
,
567 module_platform_driver(sun4i_backend_platform_driver
);
569 MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
570 MODULE_DESCRIPTION("Allwinner A10 Display Backend Driver");
571 MODULE_LICENSE("GPL");