Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Free Electrons |
| 4 | * Copyright (C) 2015 NextThing Co |
| 5 | * |
| 6 | * Maxime Ripard <maxime.ripard@free-electrons.com> |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 7 | */ |
| 8 | |
Sam Ravnborg | 9c25a29 | 2019-07-16 08:42:06 +0200 | [diff] [blame] | 9 | #include <linux/component.h> |
| 10 | #include <linux/list.h> |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/of_device.h> |
| 13 | #include <linux/of_graph.h> |
| 14 | #include <linux/platform_device.h> |
| 15 | #include <linux/reset.h> |
| 16 | |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 17 | #include <drm/drm_atomic.h> |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 18 | #include <drm/drm_atomic_helper.h> |
| 19 | #include <drm/drm_crtc.h> |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 20 | #include <drm/drm_fb_cma_helper.h> |
Sam Ravnborg | 9c25a29 | 2019-07-16 08:42:06 +0200 | [diff] [blame] | 21 | #include <drm/drm_fourcc.h> |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 22 | #include <drm/drm_gem_cma_helper.h> |
| 23 | #include <drm/drm_plane_helper.h> |
Daniel Vetter | fcd70cd | 2019-01-17 22:03:34 +0100 | [diff] [blame] | 24 | #include <drm/drm_probe_helper.h> |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 25 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 26 | #include "sun4i_backend.h" |
| 27 | #include "sun4i_drv.h" |
Maxime Ripard | ca07b21 | 2018-01-22 10:25:23 +0100 | [diff] [blame] | 28 | #include "sun4i_frontend.h" |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 29 | #include "sun4i_layer.h" |
| 30 | #include "sunxi_engine.h" |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 31 | |
Chen-Yu Tsai | f55c83d | 2017-10-17 20:17:58 +0800 | [diff] [blame] | 32 | struct sun4i_backend_quirks { |
| 33 | /* backend <-> TCON muxing selection done in backend */ |
| 34 | bool needs_output_muxing; |
Paul Kocialkowski | dcf496a | 2018-07-19 10:08:38 +0200 | [diff] [blame] | 35 | |
| 36 | /* alpha at the lowest z position is not always supported */ |
| 37 | bool supports_lowest_plane_alpha; |
Chen-Yu Tsai | f55c83d | 2017-10-17 20:17:58 +0800 | [diff] [blame] | 38 | }; |
| 39 | |
Chen-Yu Tsai | a6fbffb | 2017-02-23 16:05:33 +0800 | [diff] [blame] | 40 | static const u32 sunxi_rgb2yuv_coef[12] = { |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 41 | 0x00000107, 0x00000204, 0x00000064, 0x00000108, |
| 42 | 0x00003f69, 0x00003ed6, 0x000001c1, 0x00000808, |
| 43 | 0x000001c1, 0x00003e88, 0x00003fb8, 0x00000808 |
| 44 | }; |
| 45 | |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 46 | static void sun4i_backend_apply_color_correction(struct sunxi_engine *engine) |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 47 | { |
| 48 | int i; |
| 49 | |
| 50 | DRM_DEBUG_DRIVER("Applying RGB to YUV color correction\n"); |
| 51 | |
| 52 | /* Set color correction */ |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 53 | regmap_write(engine->regs, SUN4I_BACKEND_OCCTL_REG, |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 54 | SUN4I_BACKEND_OCCTL_ENABLE); |
| 55 | |
| 56 | for (i = 0; i < 12; i++) |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 57 | regmap_write(engine->regs, SUN4I_BACKEND_OCRCOEF_REG(i), |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 58 | sunxi_rgb2yuv_coef[i]); |
| 59 | } |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 60 | |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 61 | static void sun4i_backend_disable_color_correction(struct sunxi_engine *engine) |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 62 | { |
| 63 | DRM_DEBUG_DRIVER("Disabling color correction\n"); |
| 64 | |
| 65 | /* Disable color correction */ |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 66 | regmap_update_bits(engine->regs, SUN4I_BACKEND_OCCTL_REG, |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 67 | SUN4I_BACKEND_OCCTL_ENABLE, 0); |
| 68 | } |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 69 | |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 70 | static void sun4i_backend_commit(struct sunxi_engine *engine) |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 71 | { |
| 72 | DRM_DEBUG_DRIVER("Committing changes\n"); |
| 73 | |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 74 | regmap_write(engine->regs, SUN4I_BACKEND_REGBUFFCTL_REG, |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 75 | SUN4I_BACKEND_REGBUFFCTL_AUTOLOAD_DIS | |
| 76 | SUN4I_BACKEND_REGBUFFCTL_LOADCTL); |
| 77 | } |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 78 | |
| 79 | void sun4i_backend_layer_enable(struct sun4i_backend *backend, |
| 80 | int layer, bool enable) |
| 81 | { |
| 82 | u32 val; |
| 83 | |
Chen-Yu Tsai | cf80aee | 2017-04-25 23:25:05 +0800 | [diff] [blame] | 84 | DRM_DEBUG_DRIVER("%sabling layer %d\n", enable ? "En" : "Dis", |
| 85 | layer); |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 86 | |
| 87 | if (enable) |
| 88 | val = SUN4I_BACKEND_MODCTL_LAY_EN(layer); |
| 89 | else |
| 90 | val = 0; |
| 91 | |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 92 | regmap_update_bits(backend->engine.regs, SUN4I_BACKEND_MODCTL_REG, |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 93 | SUN4I_BACKEND_MODCTL_LAY_EN(layer), val); |
| 94 | } |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 95 | |
Maxime Ripard | 35152d1 | 2018-02-16 18:39:36 +0100 | [diff] [blame] | 96 | static int sun4i_backend_drm_format_to_layer(u32 format, u32 *mode) |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 97 | { |
| 98 | switch (format) { |
| 99 | case DRM_FORMAT_ARGB8888: |
| 100 | *mode = SUN4I_BACKEND_LAY_FBFMT_ARGB8888; |
| 101 | break; |
| 102 | |
Maxime Ripard | 47d7fbb | 2016-10-18 10:46:14 +0200 | [diff] [blame] | 103 | case DRM_FORMAT_ARGB4444: |
| 104 | *mode = SUN4I_BACKEND_LAY_FBFMT_ARGB4444; |
| 105 | break; |
| 106 | |
| 107 | case DRM_FORMAT_ARGB1555: |
| 108 | *mode = SUN4I_BACKEND_LAY_FBFMT_ARGB1555; |
| 109 | break; |
| 110 | |
| 111 | case DRM_FORMAT_RGBA5551: |
| 112 | *mode = SUN4I_BACKEND_LAY_FBFMT_RGBA5551; |
| 113 | break; |
| 114 | |
| 115 | case DRM_FORMAT_RGBA4444: |
| 116 | *mode = SUN4I_BACKEND_LAY_FBFMT_RGBA4444; |
| 117 | break; |
| 118 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 119 | case DRM_FORMAT_XRGB8888: |
| 120 | *mode = SUN4I_BACKEND_LAY_FBFMT_XRGB8888; |
| 121 | break; |
| 122 | |
| 123 | case DRM_FORMAT_RGB888: |
| 124 | *mode = SUN4I_BACKEND_LAY_FBFMT_RGB888; |
| 125 | break; |
| 126 | |
Maxime Ripard | 47d7fbb | 2016-10-18 10:46:14 +0200 | [diff] [blame] | 127 | case DRM_FORMAT_RGB565: |
| 128 | *mode = SUN4I_BACKEND_LAY_FBFMT_RGB565; |
| 129 | break; |
| 130 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 131 | default: |
| 132 | return -EINVAL; |
| 133 | } |
| 134 | |
| 135 | return 0; |
| 136 | } |
| 137 | |
Paul Kocialkowski | 3d4265f | 2018-11-23 10:24:36 +0100 | [diff] [blame] | 138 | static const uint32_t sun4i_backend_formats[] = { |
| 139 | DRM_FORMAT_ARGB1555, |
| 140 | DRM_FORMAT_ARGB4444, |
| 141 | DRM_FORMAT_ARGB8888, |
Paul Kocialkowski | 3d4265f | 2018-11-23 10:24:36 +0100 | [diff] [blame] | 142 | DRM_FORMAT_RGB565, |
| 143 | DRM_FORMAT_RGB888, |
| 144 | DRM_FORMAT_RGBA4444, |
| 145 | DRM_FORMAT_RGBA5551, |
| 146 | DRM_FORMAT_UYVY, |
| 147 | DRM_FORMAT_VYUY, |
| 148 | DRM_FORMAT_XRGB8888, |
| 149 | DRM_FORMAT_YUYV, |
| 150 | DRM_FORMAT_YVYU, |
| 151 | }; |
| 152 | |
Paul Kocialkowski | 02a3ce3 | 2018-11-23 10:25:04 +0100 | [diff] [blame] | 153 | bool sun4i_backend_format_is_supported(uint32_t fmt, uint64_t modifier) |
Paul Kocialkowski | 3d4265f | 2018-11-23 10:24:36 +0100 | [diff] [blame] | 154 | { |
| 155 | unsigned int i; |
| 156 | |
Paul Kocialkowski | 02a3ce3 | 2018-11-23 10:25:04 +0100 | [diff] [blame] | 157 | if (modifier != DRM_FORMAT_MOD_LINEAR) |
| 158 | return false; |
| 159 | |
Paul Kocialkowski | 3d4265f | 2018-11-23 10:24:36 +0100 | [diff] [blame] | 160 | for (i = 0; i < ARRAY_SIZE(sun4i_backend_formats); i++) |
| 161 | if (sun4i_backend_formats[i] == fmt) |
| 162 | return true; |
| 163 | |
| 164 | return false; |
| 165 | } |
| 166 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 167 | int sun4i_backend_update_layer_coord(struct sun4i_backend *backend, |
| 168 | int layer, struct drm_plane *plane) |
| 169 | { |
| 170 | struct drm_plane_state *state = plane->state; |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 171 | |
| 172 | DRM_DEBUG_DRIVER("Updating layer %d\n", layer); |
| 173 | |
| 174 | if (plane->type == DRM_PLANE_TYPE_PRIMARY) { |
| 175 | DRM_DEBUG_DRIVER("Primary layer, updating global size W: %u H: %u\n", |
| 176 | state->crtc_w, state->crtc_h); |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 177 | regmap_write(backend->engine.regs, SUN4I_BACKEND_DISSIZE_REG, |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 178 | SUN4I_BACKEND_DISSIZE(state->crtc_w, |
| 179 | state->crtc_h)); |
| 180 | } |
| 181 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 182 | /* Set height and width */ |
| 183 | DRM_DEBUG_DRIVER("Layer size W: %u H: %u\n", |
| 184 | state->crtc_w, state->crtc_h); |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 185 | regmap_write(backend->engine.regs, SUN4I_BACKEND_LAYSIZE_REG(layer), |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 186 | SUN4I_BACKEND_LAYSIZE(state->crtc_w, |
| 187 | state->crtc_h)); |
| 188 | |
| 189 | /* Set base coordinates */ |
| 190 | DRM_DEBUG_DRIVER("Layer coordinates X: %d Y: %d\n", |
| 191 | state->crtc_x, state->crtc_y); |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 192 | regmap_write(backend->engine.regs, SUN4I_BACKEND_LAYCOOR_REG(layer), |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 193 | SUN4I_BACKEND_LAYCOOR(state->crtc_x, |
| 194 | state->crtc_y)); |
| 195 | |
| 196 | return 0; |
| 197 | } |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 198 | |
Maxime Ripard | ddc389f | 2018-03-01 20:18:46 +0100 | [diff] [blame] | 199 | static int sun4i_backend_update_yuv_format(struct sun4i_backend *backend, |
| 200 | int layer, struct drm_plane *plane) |
| 201 | { |
| 202 | struct drm_plane_state *state = plane->state; |
| 203 | struct drm_framebuffer *fb = state->fb; |
Ayan Kumar Halder | 2aafafa | 2018-07-23 09:57:00 +0100 | [diff] [blame] | 204 | const struct drm_format_info *format = fb->format; |
| 205 | const uint32_t fmt = format->format; |
Maxime Ripard | ddc389f | 2018-03-01 20:18:46 +0100 | [diff] [blame] | 206 | u32 val = SUN4I_BACKEND_IYUVCTL_EN; |
| 207 | int i; |
| 208 | |
| 209 | for (i = 0; i < ARRAY_SIZE(sunxi_bt601_yuv2rgb_coef); i++) |
| 210 | regmap_write(backend->engine.regs, |
| 211 | SUN4I_BACKEND_YGCOEF_REG(i), |
| 212 | sunxi_bt601_yuv2rgb_coef[i]); |
| 213 | |
| 214 | /* |
| 215 | * We should do that only for a single plane, but the |
| 216 | * framebuffer's atomic_check has our back on this. |
| 217 | */ |
| 218 | regmap_update_bits(backend->engine.regs, SUN4I_BACKEND_ATTCTL_REG0(layer), |
| 219 | SUN4I_BACKEND_ATTCTL_REG0_LAY_YUVEN, |
| 220 | SUN4I_BACKEND_ATTCTL_REG0_LAY_YUVEN); |
| 221 | |
| 222 | /* TODO: Add support for the multi-planar YUV formats */ |
Paul Kocialkowski | 0fff724 | 2019-01-18 15:51:13 +0100 | [diff] [blame] | 223 | if (drm_format_info_is_yuv_packed(format) && |
| 224 | drm_format_info_is_yuv_sampling_422(format)) |
Maxime Ripard | ddc389f | 2018-03-01 20:18:46 +0100 | [diff] [blame] | 225 | val |= SUN4I_BACKEND_IYUVCTL_FBFMT_PACKED_YUV422; |
| 226 | else |
Ayan Kumar Halder | 2aafafa | 2018-07-23 09:57:00 +0100 | [diff] [blame] | 227 | DRM_DEBUG_DRIVER("Unsupported YUV format (0x%x)\n", fmt); |
Maxime Ripard | ddc389f | 2018-03-01 20:18:46 +0100 | [diff] [blame] | 228 | |
| 229 | /* |
| 230 | * Allwinner seems to list the pixel sequence from right to left, while |
| 231 | * DRM lists it from left to right. |
| 232 | */ |
Ayan Kumar Halder | 2aafafa | 2018-07-23 09:57:00 +0100 | [diff] [blame] | 233 | switch (fmt) { |
Maxime Ripard | ddc389f | 2018-03-01 20:18:46 +0100 | [diff] [blame] | 234 | case DRM_FORMAT_YUYV: |
| 235 | val |= SUN4I_BACKEND_IYUVCTL_FBPS_VYUY; |
| 236 | break; |
| 237 | case DRM_FORMAT_YVYU: |
| 238 | val |= SUN4I_BACKEND_IYUVCTL_FBPS_UYVY; |
| 239 | break; |
| 240 | case DRM_FORMAT_UYVY: |
| 241 | val |= SUN4I_BACKEND_IYUVCTL_FBPS_YVYU; |
| 242 | break; |
| 243 | case DRM_FORMAT_VYUY: |
| 244 | val |= SUN4I_BACKEND_IYUVCTL_FBPS_YUYV; |
| 245 | break; |
| 246 | default: |
| 247 | DRM_DEBUG_DRIVER("Unsupported YUV pixel sequence (0x%x)\n", |
Ayan Kumar Halder | 2aafafa | 2018-07-23 09:57:00 +0100 | [diff] [blame] | 248 | fmt); |
Maxime Ripard | ddc389f | 2018-03-01 20:18:46 +0100 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | regmap_write(backend->engine.regs, SUN4I_BACKEND_IYUVCTL_REG, val); |
| 252 | |
| 253 | return 0; |
| 254 | } |
| 255 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 256 | int sun4i_backend_update_layer_formats(struct sun4i_backend *backend, |
| 257 | int layer, struct drm_plane *plane) |
| 258 | { |
| 259 | struct drm_plane_state *state = plane->state; |
| 260 | struct drm_framebuffer *fb = state->fb; |
| 261 | bool interlaced = false; |
| 262 | u32 val; |
| 263 | int ret; |
| 264 | |
Maxime Ripard | ddc389f | 2018-03-01 20:18:46 +0100 | [diff] [blame] | 265 | /* Clear the YUV mode */ |
| 266 | regmap_update_bits(backend->engine.regs, SUN4I_BACKEND_ATTCTL_REG0(layer), |
| 267 | SUN4I_BACKEND_ATTCTL_REG0_LAY_YUVEN, 0); |
| 268 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 269 | if (plane->state->crtc) |
| 270 | interlaced = plane->state->crtc->state->adjusted_mode.flags |
| 271 | & DRM_MODE_FLAG_INTERLACE; |
| 272 | |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 273 | regmap_update_bits(backend->engine.regs, SUN4I_BACKEND_MODCTL_REG, |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 274 | SUN4I_BACKEND_MODCTL_ITLMOD_EN, |
| 275 | interlaced ? SUN4I_BACKEND_MODCTL_ITLMOD_EN : 0); |
| 276 | |
| 277 | DRM_DEBUG_DRIVER("Switching display backend interlaced mode %s\n", |
| 278 | interlaced ? "on" : "off"); |
| 279 | |
Maxime Ripard | d99008aa | 2018-04-11 09:39:28 +0200 | [diff] [blame] | 280 | val = SUN4I_BACKEND_ATTCTL_REG0_LAY_GLBALPHA(state->alpha >> 8); |
| 281 | if (state->alpha != DRM_BLEND_ALPHA_OPAQUE) |
| 282 | val |= SUN4I_BACKEND_ATTCTL_REG0_LAY_GLBALPHA_EN; |
| 283 | regmap_update_bits(backend->engine.regs, |
| 284 | SUN4I_BACKEND_ATTCTL_REG0(layer), |
| 285 | SUN4I_BACKEND_ATTCTL_REG0_LAY_GLBALPHA_MASK | |
| 286 | SUN4I_BACKEND_ATTCTL_REG0_LAY_GLBALPHA_EN, |
| 287 | val); |
| 288 | |
Ayan Kumar Halder | 979c11e | 2018-07-17 18:13:46 +0100 | [diff] [blame] | 289 | if (fb->format->is_yuv) |
Maxime Ripard | ddc389f | 2018-03-01 20:18:46 +0100 | [diff] [blame] | 290 | return sun4i_backend_update_yuv_format(backend, layer, plane); |
| 291 | |
Maxime Ripard | 35152d1 | 2018-02-16 18:39:36 +0100 | [diff] [blame] | 292 | ret = sun4i_backend_drm_format_to_layer(fb->format->format, &val); |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 293 | if (ret) { |
| 294 | DRM_DEBUG_DRIVER("Invalid format\n"); |
Christophe JAILLET | 0f0861e | 2016-11-18 19:18:47 +0100 | [diff] [blame] | 295 | return ret; |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 296 | } |
| 297 | |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 298 | regmap_update_bits(backend->engine.regs, |
| 299 | SUN4I_BACKEND_ATTCTL_REG1(layer), |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 300 | SUN4I_BACKEND_ATTCTL_REG1_LAY_FBFMT, val); |
| 301 | |
| 302 | return 0; |
| 303 | } |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 304 | |
Maxime Ripard | ca07b21 | 2018-01-22 10:25:23 +0100 | [diff] [blame] | 305 | int sun4i_backend_update_layer_frontend(struct sun4i_backend *backend, |
| 306 | int layer, uint32_t fmt) |
| 307 | { |
| 308 | u32 val; |
| 309 | int ret; |
| 310 | |
Maxime Ripard | 35152d1 | 2018-02-16 18:39:36 +0100 | [diff] [blame] | 311 | ret = sun4i_backend_drm_format_to_layer(fmt, &val); |
Maxime Ripard | ca07b21 | 2018-01-22 10:25:23 +0100 | [diff] [blame] | 312 | if (ret) { |
| 313 | DRM_DEBUG_DRIVER("Invalid format\n"); |
| 314 | return ret; |
| 315 | } |
| 316 | |
| 317 | regmap_update_bits(backend->engine.regs, |
| 318 | SUN4I_BACKEND_ATTCTL_REG0(layer), |
| 319 | SUN4I_BACKEND_ATTCTL_REG0_LAY_VDOEN, |
| 320 | SUN4I_BACKEND_ATTCTL_REG0_LAY_VDOEN); |
| 321 | |
| 322 | regmap_update_bits(backend->engine.regs, |
| 323 | SUN4I_BACKEND_ATTCTL_REG1(layer), |
| 324 | SUN4I_BACKEND_ATTCTL_REG1_LAY_FBFMT, val); |
| 325 | |
| 326 | return 0; |
| 327 | } |
| 328 | |
Maxime Ripard | ddc389f | 2018-03-01 20:18:46 +0100 | [diff] [blame] | 329 | static int sun4i_backend_update_yuv_buffer(struct sun4i_backend *backend, |
| 330 | struct drm_framebuffer *fb, |
| 331 | dma_addr_t paddr) |
| 332 | { |
| 333 | /* TODO: Add support for the multi-planar YUV formats */ |
| 334 | DRM_DEBUG_DRIVER("Setting packed YUV buffer address to %pad\n", &paddr); |
| 335 | regmap_write(backend->engine.regs, SUN4I_BACKEND_IYUVADD_REG(0), paddr); |
| 336 | |
| 337 | DRM_DEBUG_DRIVER("Layer line width: %d bits\n", fb->pitches[0] * 8); |
| 338 | regmap_write(backend->engine.regs, SUN4I_BACKEND_IYUVLINEWIDTH_REG(0), |
| 339 | fb->pitches[0] * 8); |
| 340 | |
| 341 | return 0; |
| 342 | } |
| 343 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 344 | int sun4i_backend_update_layer_buffer(struct sun4i_backend *backend, |
| 345 | int layer, struct drm_plane *plane) |
| 346 | { |
| 347 | struct drm_plane_state *state = plane->state; |
| 348 | struct drm_framebuffer *fb = state->fb; |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 349 | u32 lo_paddr, hi_paddr; |
| 350 | dma_addr_t paddr; |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 351 | |
Maxime Ripard | f587087 | 2018-01-22 10:25:15 +0100 | [diff] [blame] | 352 | /* Set the line width */ |
| 353 | DRM_DEBUG_DRIVER("Layer line width: %d bits\n", fb->pitches[0] * 8); |
| 354 | regmap_write(backend->engine.regs, |
| 355 | SUN4I_BACKEND_LAYLINEWIDTH_REG(layer), |
| 356 | fb->pitches[0] * 8); |
| 357 | |
Chen-Yu Tsai | cff2192 | 2017-10-14 12:02:48 +0800 | [diff] [blame] | 358 | /* Get the start of the displayed memory */ |
| 359 | paddr = drm_fb_cma_get_gem_addr(fb, state, 0); |
Arnd Bergmann | f1b78f0 | 2016-05-03 17:23:28 +0200 | [diff] [blame] | 360 | DRM_DEBUG_DRIVER("Setting buffer address to %pad\n", &paddr); |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 361 | |
Ayan Kumar Halder | 979c11e | 2018-07-17 18:13:46 +0100 | [diff] [blame] | 362 | if (fb->format->is_yuv) |
Maxime Ripard | ddc389f | 2018-03-01 20:18:46 +0100 | [diff] [blame] | 363 | return sun4i_backend_update_yuv_buffer(backend, fb, paddr); |
| 364 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 365 | /* Write the 32 lower bits of the address (in bits) */ |
| 366 | lo_paddr = paddr << 3; |
| 367 | DRM_DEBUG_DRIVER("Setting address lower bits to 0x%x\n", lo_paddr); |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 368 | regmap_write(backend->engine.regs, |
| 369 | SUN4I_BACKEND_LAYFB_L32ADD_REG(layer), |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 370 | lo_paddr); |
| 371 | |
| 372 | /* And the upper bits */ |
| 373 | hi_paddr = paddr >> 29; |
| 374 | DRM_DEBUG_DRIVER("Setting address high bits to 0x%x\n", hi_paddr); |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 375 | regmap_update_bits(backend->engine.regs, SUN4I_BACKEND_LAYFB_H4ADD_REG, |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 376 | SUN4I_BACKEND_LAYFB_H4ADD_MSK(layer), |
| 377 | SUN4I_BACKEND_LAYFB_H4ADD(layer, hi_paddr)); |
| 378 | |
| 379 | return 0; |
| 380 | } |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 381 | |
Maxime Ripard | 47a05f4 | 2017-05-01 10:52:32 +0200 | [diff] [blame] | 382 | int sun4i_backend_update_layer_zpos(struct sun4i_backend *backend, int layer, |
| 383 | struct drm_plane *plane) |
| 384 | { |
| 385 | struct drm_plane_state *state = plane->state; |
Maxime Ripard | 8f1f255 | 2018-02-16 18:39:32 +0100 | [diff] [blame] | 386 | struct sun4i_layer_state *p_state = state_to_sun4i_layer_state(state); |
Maxime Ripard | 47a05f4 | 2017-05-01 10:52:32 +0200 | [diff] [blame] | 387 | unsigned int priority = state->normalized_zpos; |
Maxime Ripard | 8f1f255 | 2018-02-16 18:39:32 +0100 | [diff] [blame] | 388 | unsigned int pipe = p_state->pipe; |
Maxime Ripard | 47a05f4 | 2017-05-01 10:52:32 +0200 | [diff] [blame] | 389 | |
Maxime Ripard | 8f1f255 | 2018-02-16 18:39:32 +0100 | [diff] [blame] | 390 | DRM_DEBUG_DRIVER("Setting layer %d's priority to %d and pipe %d\n", |
| 391 | layer, priority, pipe); |
Maxime Ripard | 47a05f4 | 2017-05-01 10:52:32 +0200 | [diff] [blame] | 392 | regmap_update_bits(backend->engine.regs, SUN4I_BACKEND_ATTCTL_REG0(layer), |
Maxime Ripard | 8f1f255 | 2018-02-16 18:39:32 +0100 | [diff] [blame] | 393 | SUN4I_BACKEND_ATTCTL_REG0_LAY_PIPESEL_MASK | |
Maxime Ripard | 47a05f4 | 2017-05-01 10:52:32 +0200 | [diff] [blame] | 394 | SUN4I_BACKEND_ATTCTL_REG0_LAY_PRISEL_MASK, |
Maxime Ripard | 8f1f255 | 2018-02-16 18:39:32 +0100 | [diff] [blame] | 395 | SUN4I_BACKEND_ATTCTL_REG0_LAY_PIPESEL(p_state->pipe) | |
Maxime Ripard | 47a05f4 | 2017-05-01 10:52:32 +0200 | [diff] [blame] | 396 | SUN4I_BACKEND_ATTCTL_REG0_LAY_PRISEL(priority)); |
| 397 | |
| 398 | return 0; |
| 399 | } |
| 400 | |
Paul Kocialkowski | 686d263 | 2018-11-23 10:24:33 +0100 | [diff] [blame] | 401 | void sun4i_backend_cleanup_layer(struct sun4i_backend *backend, |
| 402 | int layer) |
| 403 | { |
| 404 | regmap_update_bits(backend->engine.regs, |
| 405 | SUN4I_BACKEND_ATTCTL_REG0(layer), |
| 406 | SUN4I_BACKEND_ATTCTL_REG0_LAY_VDOEN | |
| 407 | SUN4I_BACKEND_ATTCTL_REG0_LAY_YUVEN, 0); |
| 408 | } |
| 409 | |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 410 | static bool sun4i_backend_plane_uses_scaler(struct drm_plane_state *state) |
| 411 | { |
| 412 | u16 src_h = state->src_h >> 16; |
| 413 | u16 src_w = state->src_w >> 16; |
| 414 | |
| 415 | DRM_DEBUG_DRIVER("Input size %dx%d, output size %dx%d\n", |
| 416 | src_w, src_h, state->crtc_w, state->crtc_h); |
| 417 | |
| 418 | if ((state->crtc_h != src_h) || (state->crtc_w != src_w)) |
| 419 | return true; |
| 420 | |
| 421 | return false; |
| 422 | } |
| 423 | |
| 424 | static bool sun4i_backend_plane_uses_frontend(struct drm_plane_state *state) |
| 425 | { |
| 426 | struct sun4i_layer *layer = plane_to_sun4i_layer(state->plane); |
| 427 | struct sun4i_backend *backend = layer->backend; |
Paul Kocialkowski | aaf3880 | 2018-11-23 10:24:38 +0100 | [diff] [blame] | 428 | uint32_t format = state->fb->format->format; |
Paul Kocialkowski | 02a3ce3 | 2018-11-23 10:25:04 +0100 | [diff] [blame] | 429 | uint64_t modifier = state->fb->modifier; |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 430 | |
| 431 | if (IS_ERR(backend->frontend)) |
| 432 | return false; |
| 433 | |
Paul Kocialkowski | 02a3ce3 | 2018-11-23 10:25:04 +0100 | [diff] [blame] | 434 | if (!sun4i_frontend_format_is_supported(format, modifier)) |
Paul Kocialkowski | aaf3880 | 2018-11-23 10:24:38 +0100 | [diff] [blame] | 435 | return false; |
| 436 | |
Paul Kocialkowski | 02a3ce3 | 2018-11-23 10:25:04 +0100 | [diff] [blame] | 437 | if (!sun4i_backend_format_is_supported(format, modifier)) |
Paul Kocialkowski | aaf3880 | 2018-11-23 10:24:38 +0100 | [diff] [blame] | 438 | return true; |
| 439 | |
Paul Kocialkowski | ad25d07 | 2018-11-23 10:24:35 +0100 | [diff] [blame] | 440 | /* |
| 441 | * TODO: The backend alone allows 2x and 4x integer scaling, including |
| 442 | * support for an alpha component (which the frontend doesn't support). |
Paul Kocialkowski | aaf3880 | 2018-11-23 10:24:38 +0100 | [diff] [blame] | 443 | * Use the backend directly instead of the frontend in this case, with |
| 444 | * another test to return false. |
Paul Kocialkowski | ad25d07 | 2018-11-23 10:24:35 +0100 | [diff] [blame] | 445 | */ |
Paul Kocialkowski | aaf3880 | 2018-11-23 10:24:38 +0100 | [diff] [blame] | 446 | |
| 447 | if (sun4i_backend_plane_uses_scaler(state)) |
| 448 | return true; |
| 449 | |
| 450 | /* |
| 451 | * Here the format is supported by both the frontend and the backend |
| 452 | * and no frontend scaling is required, so use the backend directly. |
| 453 | */ |
| 454 | return false; |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 455 | } |
| 456 | |
Paul Kocialkowski | ab69851 | 2018-11-23 10:24:39 +0100 | [diff] [blame] | 457 | static bool sun4i_backend_plane_is_supported(struct drm_plane_state *state, |
| 458 | bool *uses_frontend) |
| 459 | { |
| 460 | if (sun4i_backend_plane_uses_frontend(state)) { |
| 461 | *uses_frontend = true; |
| 462 | return true; |
| 463 | } |
| 464 | |
| 465 | *uses_frontend = false; |
| 466 | |
| 467 | /* Scaling is not supported without the frontend. */ |
| 468 | if (sun4i_backend_plane_uses_scaler(state)) |
| 469 | return false; |
| 470 | |
| 471 | return true; |
| 472 | } |
| 473 | |
Maxime Ripard | dd63250 | 2018-01-22 10:25:26 +0100 | [diff] [blame] | 474 | static void sun4i_backend_atomic_begin(struct sunxi_engine *engine, |
| 475 | struct drm_crtc_state *old_state) |
| 476 | { |
| 477 | u32 val; |
| 478 | |
| 479 | WARN_ON(regmap_read_poll_timeout(engine->regs, |
| 480 | SUN4I_BACKEND_REGBUFFCTL_REG, |
| 481 | val, !(val & SUN4I_BACKEND_REGBUFFCTL_LOADCTL), |
| 482 | 100, 50000)); |
| 483 | } |
| 484 | |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 485 | static int sun4i_backend_atomic_check(struct sunxi_engine *engine, |
| 486 | struct drm_crtc_state *crtc_state) |
| 487 | { |
Maxime Ripard | 8f1f255 | 2018-02-16 18:39:32 +0100 | [diff] [blame] | 488 | struct drm_plane_state *plane_states[SUN4I_BACKEND_NUM_LAYERS] = { 0 }; |
Paul Kocialkowski | dcf496a | 2018-07-19 10:08:38 +0200 | [diff] [blame] | 489 | struct sun4i_backend *backend = engine_to_sun4i_backend(engine); |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 490 | struct drm_atomic_state *state = crtc_state->state; |
| 491 | struct drm_device *drm = state->dev; |
| 492 | struct drm_plane *plane; |
Maxime Ripard | 65f7fa3 | 2017-06-26 22:51:15 +0200 | [diff] [blame] | 493 | unsigned int num_planes = 0; |
| 494 | unsigned int num_alpha_planes = 0; |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 495 | unsigned int num_frontend_planes = 0; |
Paul Kocialkowski | dcf496a | 2018-07-19 10:08:38 +0200 | [diff] [blame] | 496 | unsigned int num_alpha_planes_max = 1; |
Maxime Ripard | 3246355 | 2018-03-01 20:18:45 +0100 | [diff] [blame] | 497 | unsigned int num_yuv_planes = 0; |
Maxime Ripard | 8f1f255 | 2018-02-16 18:39:32 +0100 | [diff] [blame] | 498 | unsigned int current_pipe = 0; |
| 499 | unsigned int i; |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 500 | |
| 501 | DRM_DEBUG_DRIVER("Starting checking our planes\n"); |
| 502 | |
| 503 | if (!crtc_state->planes_changed) |
| 504 | return 0; |
| 505 | |
| 506 | drm_for_each_plane_mask(plane, drm, crtc_state->plane_mask) { |
| 507 | struct drm_plane_state *plane_state = |
| 508 | drm_atomic_get_plane_state(state, plane); |
| 509 | struct sun4i_layer_state *layer_state = |
| 510 | state_to_sun4i_layer_state(plane_state); |
Maxime Ripard | 65f7fa3 | 2017-06-26 22:51:15 +0200 | [diff] [blame] | 511 | struct drm_framebuffer *fb = plane_state->fb; |
| 512 | struct drm_format_name_buf format_name; |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 513 | |
Paul Kocialkowski | ab69851 | 2018-11-23 10:24:39 +0100 | [diff] [blame] | 514 | if (!sun4i_backend_plane_is_supported(plane_state, |
| 515 | &layer_state->uses_frontend)) |
| 516 | return -EINVAL; |
| 517 | |
| 518 | if (layer_state->uses_frontend) { |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 519 | DRM_DEBUG_DRIVER("Using the frontend for plane %d\n", |
| 520 | plane->index); |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 521 | num_frontend_planes++; |
Paul Kocialkowski | ae56bfb | 2018-11-23 10:24:46 +0100 | [diff] [blame] | 522 | } else { |
| 523 | if (fb->format->is_yuv) { |
| 524 | DRM_DEBUG_DRIVER("Plane FB format is YUV\n"); |
| 525 | num_yuv_planes++; |
| 526 | } |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 527 | } |
Maxime Ripard | 65f7fa3 | 2017-06-26 22:51:15 +0200 | [diff] [blame] | 528 | |
| 529 | DRM_DEBUG_DRIVER("Plane FB format is %s\n", |
| 530 | drm_get_format_name(fb->format->format, |
| 531 | &format_name)); |
Maxime Ripard | d99008aa | 2018-04-11 09:39:28 +0200 | [diff] [blame] | 532 | if (fb->format->has_alpha || (plane_state->alpha != DRM_BLEND_ALPHA_OPAQUE)) |
Maxime Ripard | 65f7fa3 | 2017-06-26 22:51:15 +0200 | [diff] [blame] | 533 | num_alpha_planes++; |
| 534 | |
Maxime Ripard | 8f1f255 | 2018-02-16 18:39:32 +0100 | [diff] [blame] | 535 | DRM_DEBUG_DRIVER("Plane zpos is %d\n", |
| 536 | plane_state->normalized_zpos); |
| 537 | |
| 538 | /* Sort our planes by Zpos */ |
| 539 | plane_states[plane_state->normalized_zpos] = plane_state; |
| 540 | |
Maxime Ripard | 65f7fa3 | 2017-06-26 22:51:15 +0200 | [diff] [blame] | 541 | num_planes++; |
| 542 | } |
| 543 | |
Maxime Ripard | 8f1f255 | 2018-02-16 18:39:32 +0100 | [diff] [blame] | 544 | /* All our planes were disabled, bail out */ |
| 545 | if (!num_planes) |
| 546 | return 0; |
| 547 | |
Maxime Ripard | 65f7fa3 | 2017-06-26 22:51:15 +0200 | [diff] [blame] | 548 | /* |
| 549 | * The hardware is a bit unusual here. |
| 550 | * |
| 551 | * Even though it supports 4 layers, it does the composition |
| 552 | * in two separate steps. |
| 553 | * |
| 554 | * The first one is assigning a layer to one of its two |
| 555 | * pipes. If more that 1 layer is assigned to the same pipe, |
| 556 | * and if pixels overlaps, the pipe will take the pixel from |
| 557 | * the layer with the highest priority. |
| 558 | * |
| 559 | * The second step is the actual alpha blending, that takes |
Paul Kocialkowski | dcf496a | 2018-07-19 10:08:38 +0200 | [diff] [blame] | 560 | * the two pipes as input, and uses the potential alpha |
Maxime Ripard | 65f7fa3 | 2017-06-26 22:51:15 +0200 | [diff] [blame] | 561 | * component to do the transparency between the two. |
| 562 | * |
Paul Kocialkowski | dcf496a | 2018-07-19 10:08:38 +0200 | [diff] [blame] | 563 | * This two-step scenario makes us unable to guarantee a |
Maxime Ripard | 65f7fa3 | 2017-06-26 22:51:15 +0200 | [diff] [blame] | 564 | * robust alpha blending between the 4 layers in all |
| 565 | * situations, since this means that we need to have one layer |
| 566 | * with alpha at the lowest position of our two pipes. |
| 567 | * |
Paul Kocialkowski | dcf496a | 2018-07-19 10:08:38 +0200 | [diff] [blame] | 568 | * However, we cannot even do that on every platform, since |
| 569 | * the hardware has a bug where the lowest plane of the lowest |
| 570 | * pipe (pipe 0, priority 0), if it has any alpha, will |
| 571 | * discard the pixel data entirely and just display the pixels |
| 572 | * in the background color (black by default). |
Maxime Ripard | 65f7fa3 | 2017-06-26 22:51:15 +0200 | [diff] [blame] | 573 | * |
Paul Kocialkowski | dcf496a | 2018-07-19 10:08:38 +0200 | [diff] [blame] | 574 | * This means that on the affected platforms, we effectively |
| 575 | * have only three valid configurations with alpha, all of |
| 576 | * them with the alpha being on pipe1 with the lowest |
| 577 | * position, which can be 1, 2 or 3 depending on the number of |
| 578 | * planes and their zpos. |
Maxime Ripard | 65f7fa3 | 2017-06-26 22:51:15 +0200 | [diff] [blame] | 579 | */ |
Paul Kocialkowski | dcf496a | 2018-07-19 10:08:38 +0200 | [diff] [blame] | 580 | |
| 581 | /* For platforms that are not affected by the issue described above. */ |
| 582 | if (backend->quirks->supports_lowest_plane_alpha) |
| 583 | num_alpha_planes_max++; |
| 584 | |
| 585 | if (num_alpha_planes > num_alpha_planes_max) { |
Maxime Ripard | 65f7fa3 | 2017-06-26 22:51:15 +0200 | [diff] [blame] | 586 | DRM_DEBUG_DRIVER("Too many planes with alpha, rejecting...\n"); |
| 587 | return -EINVAL; |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 588 | } |
| 589 | |
Maxime Ripard | 8f1f255 | 2018-02-16 18:39:32 +0100 | [diff] [blame] | 590 | /* We can't have an alpha plane at the lowest position */ |
Paul Kocialkowski | dcf496a | 2018-07-19 10:08:38 +0200 | [diff] [blame] | 591 | if (!backend->quirks->supports_lowest_plane_alpha && |
| 592 | (plane_states[0]->fb->format->has_alpha || |
| 593 | (plane_states[0]->alpha != DRM_BLEND_ALPHA_OPAQUE))) |
Maxime Ripard | 8f1f255 | 2018-02-16 18:39:32 +0100 | [diff] [blame] | 594 | return -EINVAL; |
| 595 | |
| 596 | for (i = 1; i < num_planes; i++) { |
| 597 | struct drm_plane_state *p_state = plane_states[i]; |
| 598 | struct drm_framebuffer *fb = p_state->fb; |
| 599 | struct sun4i_layer_state *s_state = state_to_sun4i_layer_state(p_state); |
| 600 | |
| 601 | /* |
| 602 | * The only alpha position is the lowest plane of the |
| 603 | * second pipe. |
| 604 | */ |
Maxime Ripard | d99008aa | 2018-04-11 09:39:28 +0200 | [diff] [blame] | 605 | if (fb->format->has_alpha || (p_state->alpha != DRM_BLEND_ALPHA_OPAQUE)) |
Maxime Ripard | 8f1f255 | 2018-02-16 18:39:32 +0100 | [diff] [blame] | 606 | current_pipe++; |
| 607 | |
| 608 | s_state->pipe = current_pipe; |
| 609 | } |
| 610 | |
Maxime Ripard | 3246355 | 2018-03-01 20:18:45 +0100 | [diff] [blame] | 611 | /* We can only have a single YUV plane at a time */ |
| 612 | if (num_yuv_planes > SUN4I_BACKEND_NUM_YUV_PLANES) { |
| 613 | DRM_DEBUG_DRIVER("Too many planes with YUV, rejecting...\n"); |
| 614 | return -EINVAL; |
| 615 | } |
| 616 | |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 617 | if (num_frontend_planes > SUN4I_BACKEND_NUM_FRONTEND_LAYERS) { |
| 618 | DRM_DEBUG_DRIVER("Too many planes going through the frontend, rejecting\n"); |
| 619 | return -EINVAL; |
| 620 | } |
| 621 | |
Maxime Ripard | 3246355 | 2018-03-01 20:18:45 +0100 | [diff] [blame] | 622 | DRM_DEBUG_DRIVER("State valid with %u planes, %u alpha, %u video, %u YUV\n", |
| 623 | num_planes, num_alpha_planes, num_frontend_planes, |
| 624 | num_yuv_planes); |
Maxime Ripard | 65f7fa3 | 2017-06-26 22:51:15 +0200 | [diff] [blame] | 625 | |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 626 | return 0; |
| 627 | } |
| 628 | |
Maxime Ripard | ca07b21 | 2018-01-22 10:25:23 +0100 | [diff] [blame] | 629 | static void sun4i_backend_vblank_quirk(struct sunxi_engine *engine) |
| 630 | { |
| 631 | struct sun4i_backend *backend = engine_to_sun4i_backend(engine); |
| 632 | struct sun4i_frontend *frontend = backend->frontend; |
| 633 | |
| 634 | if (!frontend) |
| 635 | return; |
| 636 | |
| 637 | /* |
| 638 | * In a teardown scenario with the frontend involved, we have |
| 639 | * to keep the frontend enabled until the next vblank, and |
| 640 | * only then disable it. |
| 641 | * |
| 642 | * This is due to the fact that the backend will not take into |
| 643 | * account the new configuration (with the plane that used to |
| 644 | * be fed by the frontend now disabled) until we write to the |
| 645 | * commit bit and the hardware fetches the new configuration |
| 646 | * during the next vblank. |
| 647 | * |
| 648 | * So we keep the frontend around in order to prevent any |
| 649 | * visual artifacts. |
| 650 | */ |
| 651 | spin_lock(&backend->frontend_lock); |
| 652 | if (backend->frontend_teardown) { |
| 653 | sun4i_frontend_exit(frontend); |
| 654 | backend->frontend_teardown = false; |
| 655 | } |
| 656 | spin_unlock(&backend->frontend_lock); |
| 657 | }; |
| 658 | |
Maxime Ripard | 440d2c7 | 2016-09-06 15:23:03 +0200 | [diff] [blame] | 659 | static int sun4i_backend_init_sat(struct device *dev) { |
| 660 | struct sun4i_backend *backend = dev_get_drvdata(dev); |
| 661 | int ret; |
| 662 | |
| 663 | backend->sat_reset = devm_reset_control_get(dev, "sat"); |
| 664 | if (IS_ERR(backend->sat_reset)) { |
| 665 | dev_err(dev, "Couldn't get the SAT reset line\n"); |
| 666 | return PTR_ERR(backend->sat_reset); |
| 667 | } |
| 668 | |
| 669 | ret = reset_control_deassert(backend->sat_reset); |
| 670 | if (ret) { |
| 671 | dev_err(dev, "Couldn't deassert the SAT reset line\n"); |
| 672 | return ret; |
| 673 | } |
| 674 | |
| 675 | backend->sat_clk = devm_clk_get(dev, "sat"); |
| 676 | if (IS_ERR(backend->sat_clk)) { |
| 677 | dev_err(dev, "Couldn't get our SAT clock\n"); |
| 678 | ret = PTR_ERR(backend->sat_clk); |
| 679 | goto err_assert_reset; |
| 680 | } |
| 681 | |
| 682 | ret = clk_prepare_enable(backend->sat_clk); |
| 683 | if (ret) { |
| 684 | dev_err(dev, "Couldn't enable the SAT clock\n"); |
| 685 | return ret; |
| 686 | } |
| 687 | |
| 688 | return 0; |
| 689 | |
| 690 | err_assert_reset: |
| 691 | reset_control_assert(backend->sat_reset); |
| 692 | return ret; |
| 693 | } |
| 694 | |
| 695 | static int sun4i_backend_free_sat(struct device *dev) { |
| 696 | struct sun4i_backend *backend = dev_get_drvdata(dev); |
| 697 | |
| 698 | clk_disable_unprepare(backend->sat_clk); |
| 699 | reset_control_assert(backend->sat_reset); |
| 700 | |
| 701 | return 0; |
| 702 | } |
| 703 | |
Chen-Yu Tsai | da3a1c3 | 2017-04-21 16:38:52 +0800 | [diff] [blame] | 704 | /* |
| 705 | * The display backend can take video output from the display frontend, or |
| 706 | * the display enhancement unit on the A80, as input for one it its layers. |
| 707 | * This relationship within the display pipeline is encoded in the device |
| 708 | * tree with of_graph, and we use it here to figure out which backend, if |
| 709 | * there are 2 or more, we are currently probing. The number would be in |
| 710 | * the "reg" property of the upstream output port endpoint. |
| 711 | */ |
| 712 | static int sun4i_backend_of_get_id(struct device_node *node) |
| 713 | { |
Maxime Ripard | eb40bae | 2019-03-14 21:16:22 +0100 | [diff] [blame] | 714 | struct device_node *ep, *remote; |
| 715 | struct of_endpoint of_ep; |
Chen-Yu Tsai | da3a1c3 | 2017-04-21 16:38:52 +0800 | [diff] [blame] | 716 | |
Maxime Ripard | eb40bae | 2019-03-14 21:16:22 +0100 | [diff] [blame] | 717 | /* Input port is 0, and we want the first endpoint. */ |
| 718 | ep = of_graph_get_endpoint_by_regs(node, 0, -1); |
| 719 | if (!ep) |
Chen-Yu Tsai | da3a1c3 | 2017-04-21 16:38:52 +0800 | [diff] [blame] | 720 | return -EINVAL; |
| 721 | |
Maxime Ripard | eb40bae | 2019-03-14 21:16:22 +0100 | [diff] [blame] | 722 | remote = of_graph_get_remote_endpoint(ep); |
| 723 | of_node_put(ep); |
| 724 | if (!remote) |
| 725 | return -EINVAL; |
Chen-Yu Tsai | da3a1c3 | 2017-04-21 16:38:52 +0800 | [diff] [blame] | 726 | |
Maxime Ripard | eb40bae | 2019-03-14 21:16:22 +0100 | [diff] [blame] | 727 | of_graph_parse_endpoint(remote, &of_ep); |
| 728 | of_node_put(remote); |
| 729 | return of_ep.id; |
Chen-Yu Tsai | da3a1c3 | 2017-04-21 16:38:52 +0800 | [diff] [blame] | 730 | } |
| 731 | |
Maxime Ripard | ca07b21 | 2018-01-22 10:25:23 +0100 | [diff] [blame] | 732 | /* TODO: This needs to take multiple pipelines into account */ |
| 733 | static struct sun4i_frontend *sun4i_backend_find_frontend(struct sun4i_drv *drv, |
| 734 | struct device_node *node) |
| 735 | { |
| 736 | struct device_node *port, *ep, *remote; |
| 737 | struct sun4i_frontend *frontend; |
| 738 | |
| 739 | port = of_graph_get_port_by_id(node, 0); |
| 740 | if (!port) |
| 741 | return ERR_PTR(-EINVAL); |
| 742 | |
| 743 | for_each_available_child_of_node(port, ep) { |
| 744 | remote = of_graph_get_remote_port_parent(ep); |
| 745 | if (!remote) |
| 746 | continue; |
Julia Lawall | 4bb0e6d | 2019-01-13 09:47:44 +0100 | [diff] [blame] | 747 | of_node_put(remote); |
Maxime Ripard | ca07b21 | 2018-01-22 10:25:23 +0100 | [diff] [blame] | 748 | |
| 749 | /* does this node match any registered engines? */ |
| 750 | list_for_each_entry(frontend, &drv->frontend_list, list) { |
| 751 | if (remote == frontend->node) { |
Maxime Ripard | ca07b21 | 2018-01-22 10:25:23 +0100 | [diff] [blame] | 752 | of_node_put(port); |
Julia Lawall | 4bb0e6d | 2019-01-13 09:47:44 +0100 | [diff] [blame] | 753 | of_node_put(ep); |
Maxime Ripard | ca07b21 | 2018-01-22 10:25:23 +0100 | [diff] [blame] | 754 | return frontend; |
| 755 | } |
| 756 | } |
| 757 | } |
Julia Lawall | 4bb0e6d | 2019-01-13 09:47:44 +0100 | [diff] [blame] | 758 | of_node_put(port); |
Maxime Ripard | ca07b21 | 2018-01-22 10:25:23 +0100 | [diff] [blame] | 759 | return ERR_PTR(-EINVAL); |
| 760 | } |
| 761 | |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 762 | static const struct sunxi_engine_ops sun4i_backend_engine_ops = { |
Maxime Ripard | dd63250 | 2018-01-22 10:25:26 +0100 | [diff] [blame] | 763 | .atomic_begin = sun4i_backend_atomic_begin, |
Maxime Ripard | 96180dd | 2018-01-22 10:25:24 +0100 | [diff] [blame] | 764 | .atomic_check = sun4i_backend_atomic_check, |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 765 | .commit = sun4i_backend_commit, |
| 766 | .layers_init = sun4i_layers_init, |
| 767 | .apply_color_correction = sun4i_backend_apply_color_correction, |
| 768 | .disable_color_correction = sun4i_backend_disable_color_correction, |
Maxime Ripard | ca07b21 | 2018-01-22 10:25:23 +0100 | [diff] [blame] | 769 | .vblank_quirk = sun4i_backend_vblank_quirk, |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 770 | }; |
| 771 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 772 | static struct regmap_config sun4i_backend_regmap_config = { |
| 773 | .reg_bits = 32, |
| 774 | .val_bits = 32, |
| 775 | .reg_stride = 4, |
| 776 | .max_register = 0x5800, |
| 777 | }; |
| 778 | |
| 779 | static int sun4i_backend_bind(struct device *dev, struct device *master, |
| 780 | void *data) |
| 781 | { |
| 782 | struct platform_device *pdev = to_platform_device(dev); |
| 783 | struct drm_device *drm = data; |
| 784 | struct sun4i_drv *drv = drm->dev_private; |
| 785 | struct sun4i_backend *backend; |
Chen-Yu Tsai | f55c83d | 2017-10-17 20:17:58 +0800 | [diff] [blame] | 786 | const struct sun4i_backend_quirks *quirks; |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 787 | struct resource *res; |
| 788 | void __iomem *regs; |
| 789 | int i, ret; |
| 790 | |
| 791 | backend = devm_kzalloc(dev, sizeof(*backend), GFP_KERNEL); |
| 792 | if (!backend) |
| 793 | return -ENOMEM; |
| 794 | dev_set_drvdata(dev, backend); |
Maxime Ripard | ca07b21 | 2018-01-22 10:25:23 +0100 | [diff] [blame] | 795 | spin_lock_init(&backend->frontend_lock); |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 796 | |
Maxime Ripard | 564d6fd | 2019-04-01 10:56:45 +0200 | [diff] [blame] | 797 | if (of_find_property(dev->of_node, "interconnects", NULL)) { |
| 798 | /* |
| 799 | * This assume we have the same DMA constraints for all our the |
| 800 | * devices in our pipeline (all the backends, but also the |
| 801 | * frontends). This sounds bad, but it has always been the case |
| 802 | * for us, and DRM doesn't do per-device allocation either, so |
| 803 | * we would need to fix DRM first... |
| 804 | */ |
| 805 | ret = of_dma_configure(drm->dev, dev->of_node, true); |
| 806 | if (ret) |
| 807 | return ret; |
| 808 | } else { |
| 809 | /* |
| 810 | * If we don't have the interconnect property, most likely |
| 811 | * because of an old DT, we need to set the DMA offset by hand |
| 812 | * on our device since the RAM mapping is at 0 for the DMA bus, |
| 813 | * unlike the CPU. |
| 814 | */ |
| 815 | drm->dev->dma_pfn_offset = PHYS_PFN_OFFSET; |
| 816 | } |
| 817 | |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 818 | backend->engine.node = dev->of_node; |
| 819 | backend->engine.ops = &sun4i_backend_engine_ops; |
| 820 | backend->engine.id = sun4i_backend_of_get_id(dev->of_node); |
| 821 | if (backend->engine.id < 0) |
| 822 | return backend->engine.id; |
Chen-Yu Tsai | da3a1c3 | 2017-04-21 16:38:52 +0800 | [diff] [blame] | 823 | |
Maxime Ripard | ca07b21 | 2018-01-22 10:25:23 +0100 | [diff] [blame] | 824 | backend->frontend = sun4i_backend_find_frontend(drv, dev->of_node); |
| 825 | if (IS_ERR(backend->frontend)) |
| 826 | dev_warn(dev, "Couldn't find matching frontend, frontend features disabled\n"); |
| 827 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 828 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 829 | regs = devm_ioremap_resource(dev, res); |
Wei Yongjun | 9a8aa93 | 2016-09-15 03:25:58 +0000 | [diff] [blame] | 830 | if (IS_ERR(regs)) |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 831 | return PTR_ERR(regs); |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 832 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 833 | backend->reset = devm_reset_control_get(dev, NULL); |
| 834 | if (IS_ERR(backend->reset)) { |
| 835 | dev_err(dev, "Couldn't get our reset line\n"); |
| 836 | return PTR_ERR(backend->reset); |
| 837 | } |
| 838 | |
| 839 | ret = reset_control_deassert(backend->reset); |
| 840 | if (ret) { |
| 841 | dev_err(dev, "Couldn't deassert our reset line\n"); |
| 842 | return ret; |
| 843 | } |
| 844 | |
| 845 | backend->bus_clk = devm_clk_get(dev, "ahb"); |
| 846 | if (IS_ERR(backend->bus_clk)) { |
| 847 | dev_err(dev, "Couldn't get the backend bus clock\n"); |
| 848 | ret = PTR_ERR(backend->bus_clk); |
| 849 | goto err_assert_reset; |
| 850 | } |
| 851 | clk_prepare_enable(backend->bus_clk); |
| 852 | |
| 853 | backend->mod_clk = devm_clk_get(dev, "mod"); |
| 854 | if (IS_ERR(backend->mod_clk)) { |
| 855 | dev_err(dev, "Couldn't get the backend module clock\n"); |
| 856 | ret = PTR_ERR(backend->mod_clk); |
| 857 | goto err_disable_bus_clk; |
| 858 | } |
Maxime Ripard | 451debe | 2020-01-07 17:59:56 +0100 | [diff] [blame] | 859 | |
| 860 | ret = clk_set_rate_exclusive(backend->mod_clk, 300000000); |
| 861 | if (ret) { |
| 862 | dev_err(dev, "Couldn't set the module clock frequency\n"); |
| 863 | goto err_disable_bus_clk; |
| 864 | } |
| 865 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 866 | clk_prepare_enable(backend->mod_clk); |
| 867 | |
| 868 | backend->ram_clk = devm_clk_get(dev, "ram"); |
| 869 | if (IS_ERR(backend->ram_clk)) { |
| 870 | dev_err(dev, "Couldn't get the backend RAM clock\n"); |
| 871 | ret = PTR_ERR(backend->ram_clk); |
| 872 | goto err_disable_mod_clk; |
| 873 | } |
| 874 | clk_prepare_enable(backend->ram_clk); |
| 875 | |
Maxime Ripard | 440d2c7 | 2016-09-06 15:23:03 +0200 | [diff] [blame] | 876 | if (of_device_is_compatible(dev->of_node, |
| 877 | "allwinner,sun8i-a33-display-backend")) { |
| 878 | ret = sun4i_backend_init_sat(dev); |
| 879 | if (ret) { |
| 880 | dev_err(dev, "Couldn't init SAT resources\n"); |
| 881 | goto err_disable_ram_clk; |
| 882 | } |
| 883 | } |
| 884 | |
Chen-Yu Tsai | 8270249 | 2017-10-14 12:02:47 +0800 | [diff] [blame] | 885 | backend->engine.regs = devm_regmap_init_mmio(dev, regs, |
| 886 | &sun4i_backend_regmap_config); |
| 887 | if (IS_ERR(backend->engine.regs)) { |
| 888 | dev_err(dev, "Couldn't create the backend regmap\n"); |
| 889 | return PTR_ERR(backend->engine.regs); |
| 890 | } |
| 891 | |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 892 | list_add_tail(&backend->engine.list, &drv->engine_list); |
Chen-Yu Tsai | 80a5824 | 2017-04-21 16:38:50 +0800 | [diff] [blame] | 893 | |
Chen-Yu Tsai | 936598d | 2017-10-14 12:02:49 +0800 | [diff] [blame] | 894 | /* |
| 895 | * Many of the backend's layer configuration registers have |
| 896 | * undefined default values. This poses a risk as we use |
| 897 | * regmap_update_bits in some places, and don't overwrite |
| 898 | * the whole register. |
| 899 | * |
| 900 | * Clear the registers here to have something predictable. |
| 901 | */ |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 902 | for (i = 0x800; i < 0x1000; i += 4) |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 903 | regmap_write(backend->engine.regs, i, 0); |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 904 | |
| 905 | /* Disable registers autoloading */ |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 906 | regmap_write(backend->engine.regs, SUN4I_BACKEND_REGBUFFCTL_REG, |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 907 | SUN4I_BACKEND_REGBUFFCTL_AUTOLOAD_DIS); |
| 908 | |
| 909 | /* Enable the backend */ |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 910 | regmap_write(backend->engine.regs, SUN4I_BACKEND_MODCTL_REG, |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 911 | SUN4I_BACKEND_MODCTL_DEBE_EN | |
| 912 | SUN4I_BACKEND_MODCTL_START_CTL); |
| 913 | |
Chen-Yu Tsai | f55c83d | 2017-10-17 20:17:58 +0800 | [diff] [blame] | 914 | /* Set output selection if needed */ |
| 915 | quirks = of_device_get_match_data(dev); |
| 916 | if (quirks->needs_output_muxing) { |
| 917 | /* |
| 918 | * We assume there is no dynamic muxing of backends |
| 919 | * and TCONs, so we select the backend with same ID. |
| 920 | * |
| 921 | * While dynamic selection might be interesting, since |
| 922 | * the CRTC is tied to the TCON, while the layers are |
| 923 | * tied to the backends, this means, we will need to |
| 924 | * switch between groups of layers. There might not be |
| 925 | * a way to represent this constraint in DRM. |
| 926 | */ |
| 927 | regmap_update_bits(backend->engine.regs, |
| 928 | SUN4I_BACKEND_MODCTL_REG, |
| 929 | SUN4I_BACKEND_MODCTL_OUT_SEL, |
| 930 | (backend->engine.id |
| 931 | ? SUN4I_BACKEND_MODCTL_OUT_LCD1 |
| 932 | : SUN4I_BACKEND_MODCTL_OUT_LCD0)); |
| 933 | } |
| 934 | |
Paul Kocialkowski | e527cd9 | 2018-07-19 10:08:37 +0200 | [diff] [blame] | 935 | backend->quirks = quirks; |
| 936 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 937 | return 0; |
| 938 | |
Maxime Ripard | 440d2c7 | 2016-09-06 15:23:03 +0200 | [diff] [blame] | 939 | err_disable_ram_clk: |
| 940 | clk_disable_unprepare(backend->ram_clk); |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 941 | err_disable_mod_clk: |
Maxime Ripard | 451debe | 2020-01-07 17:59:56 +0100 | [diff] [blame] | 942 | clk_rate_exclusive_put(backend->mod_clk); |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 943 | clk_disable_unprepare(backend->mod_clk); |
| 944 | err_disable_bus_clk: |
| 945 | clk_disable_unprepare(backend->bus_clk); |
| 946 | err_assert_reset: |
| 947 | reset_control_assert(backend->reset); |
| 948 | return ret; |
| 949 | } |
| 950 | |
| 951 | static void sun4i_backend_unbind(struct device *dev, struct device *master, |
| 952 | void *data) |
| 953 | { |
| 954 | struct sun4i_backend *backend = dev_get_drvdata(dev); |
| 955 | |
Icenowy Zheng | 8796933 | 2017-05-17 22:47:17 +0800 | [diff] [blame] | 956 | list_del(&backend->engine.list); |
Chen-Yu Tsai | 80a5824 | 2017-04-21 16:38:50 +0800 | [diff] [blame] | 957 | |
Maxime Ripard | 440d2c7 | 2016-09-06 15:23:03 +0200 | [diff] [blame] | 958 | if (of_device_is_compatible(dev->of_node, |
| 959 | "allwinner,sun8i-a33-display-backend")) |
| 960 | sun4i_backend_free_sat(dev); |
| 961 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 962 | clk_disable_unprepare(backend->ram_clk); |
Maxime Ripard | 451debe | 2020-01-07 17:59:56 +0100 | [diff] [blame] | 963 | clk_rate_exclusive_put(backend->mod_clk); |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 964 | clk_disable_unprepare(backend->mod_clk); |
| 965 | clk_disable_unprepare(backend->bus_clk); |
| 966 | reset_control_assert(backend->reset); |
| 967 | } |
| 968 | |
Julia Lawall | dfeb693 | 2016-11-12 18:19:58 +0100 | [diff] [blame] | 969 | static const struct component_ops sun4i_backend_ops = { |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 970 | .bind = sun4i_backend_bind, |
| 971 | .unbind = sun4i_backend_unbind, |
| 972 | }; |
| 973 | |
| 974 | static int sun4i_backend_probe(struct platform_device *pdev) |
| 975 | { |
| 976 | return component_add(&pdev->dev, &sun4i_backend_ops); |
| 977 | } |
| 978 | |
| 979 | static int sun4i_backend_remove(struct platform_device *pdev) |
| 980 | { |
| 981 | component_del(&pdev->dev, &sun4i_backend_ops); |
| 982 | |
| 983 | return 0; |
| 984 | } |
| 985 | |
Chen-Yu Tsai | 9a8187c | 2017-10-17 20:18:01 +0800 | [diff] [blame] | 986 | static const struct sun4i_backend_quirks sun4i_backend_quirks = { |
| 987 | .needs_output_muxing = true, |
| 988 | }; |
| 989 | |
Chen-Yu Tsai | f55c83d | 2017-10-17 20:17:58 +0800 | [diff] [blame] | 990 | static const struct sun4i_backend_quirks sun5i_backend_quirks = { |
| 991 | }; |
| 992 | |
| 993 | static const struct sun4i_backend_quirks sun6i_backend_quirks = { |
| 994 | }; |
| 995 | |
Jonathan Liu | aaddb6d | 2017-10-17 20:18:02 +0800 | [diff] [blame] | 996 | static const struct sun4i_backend_quirks sun7i_backend_quirks = { |
| 997 | .needs_output_muxing = true, |
Paul Kocialkowski | dcf496a | 2018-07-19 10:08:38 +0200 | [diff] [blame] | 998 | .supports_lowest_plane_alpha = true, |
Jonathan Liu | aaddb6d | 2017-10-17 20:18:02 +0800 | [diff] [blame] | 999 | }; |
| 1000 | |
Chen-Yu Tsai | f55c83d | 2017-10-17 20:17:58 +0800 | [diff] [blame] | 1001 | static const struct sun4i_backend_quirks sun8i_a33_backend_quirks = { |
Paul Kocialkowski | dcf496a | 2018-07-19 10:08:38 +0200 | [diff] [blame] | 1002 | .supports_lowest_plane_alpha = true, |
Chen-Yu Tsai | f55c83d | 2017-10-17 20:17:58 +0800 | [diff] [blame] | 1003 | }; |
| 1004 | |
Chen-Yu Tsai | 3347895 | 2018-03-15 19:41:33 +0800 | [diff] [blame] | 1005 | static const struct sun4i_backend_quirks sun9i_backend_quirks = { |
| 1006 | }; |
| 1007 | |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 1008 | static const struct of_device_id sun4i_backend_of_table[] = { |
Chen-Yu Tsai | f55c83d | 2017-10-17 20:17:58 +0800 | [diff] [blame] | 1009 | { |
Chen-Yu Tsai | 9a8187c | 2017-10-17 20:18:01 +0800 | [diff] [blame] | 1010 | .compatible = "allwinner,sun4i-a10-display-backend", |
| 1011 | .data = &sun4i_backend_quirks, |
| 1012 | }, |
| 1013 | { |
Chen-Yu Tsai | f55c83d | 2017-10-17 20:17:58 +0800 | [diff] [blame] | 1014 | .compatible = "allwinner,sun5i-a13-display-backend", |
| 1015 | .data = &sun5i_backend_quirks, |
| 1016 | }, |
| 1017 | { |
| 1018 | .compatible = "allwinner,sun6i-a31-display-backend", |
| 1019 | .data = &sun6i_backend_quirks, |
| 1020 | }, |
| 1021 | { |
Jonathan Liu | aaddb6d | 2017-10-17 20:18:02 +0800 | [diff] [blame] | 1022 | .compatible = "allwinner,sun7i-a20-display-backend", |
| 1023 | .data = &sun7i_backend_quirks, |
| 1024 | }, |
| 1025 | { |
Chen-Yu Tsai | d0ec0a3 | 2019-01-25 11:23:09 +0800 | [diff] [blame] | 1026 | .compatible = "allwinner,sun8i-a23-display-backend", |
| 1027 | .data = &sun8i_a33_backend_quirks, |
| 1028 | }, |
| 1029 | { |
Chen-Yu Tsai | f55c83d | 2017-10-17 20:17:58 +0800 | [diff] [blame] | 1030 | .compatible = "allwinner,sun8i-a33-display-backend", |
| 1031 | .data = &sun8i_a33_backend_quirks, |
| 1032 | }, |
Chen-Yu Tsai | 3347895 | 2018-03-15 19:41:33 +0800 | [diff] [blame] | 1033 | { |
| 1034 | .compatible = "allwinner,sun9i-a80-display-backend", |
| 1035 | .data = &sun9i_backend_quirks, |
| 1036 | }, |
Maxime Ripard | 9026e0d | 2015-10-29 09:36:23 +0100 | [diff] [blame] | 1037 | { } |
| 1038 | }; |
| 1039 | MODULE_DEVICE_TABLE(of, sun4i_backend_of_table); |
| 1040 | |
| 1041 | static struct platform_driver sun4i_backend_platform_driver = { |
| 1042 | .probe = sun4i_backend_probe, |
| 1043 | .remove = sun4i_backend_remove, |
| 1044 | .driver = { |
| 1045 | .name = "sun4i-backend", |
| 1046 | .of_match_table = sun4i_backend_of_table, |
| 1047 | }, |
| 1048 | }; |
| 1049 | module_platform_driver(sun4i_backend_platform_driver); |
| 1050 | |
| 1051 | MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>"); |
| 1052 | MODULE_DESCRIPTION("Allwinner A10 Display Backend Driver"); |
| 1053 | MODULE_LICENSE("GPL"); |