Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 1 | /* |
| 2 | * rcar_du_plane.c -- R-Car Display Unit Planes |
| 3 | * |
Laurent Pinchart | 36d5046 | 2014-02-06 18:13:52 +0100 | [diff] [blame] | 4 | * Copyright (C) 2013-2014 Renesas Electronics Corporation |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 5 | * |
| 6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | */ |
| 13 | |
| 14 | #include <drm/drmP.h> |
Laurent Pinchart | 3e8da87 | 2015-02-20 11:30:59 +0200 | [diff] [blame^] | 15 | #include <drm/drm_atomic_helper.h> |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 16 | #include <drm/drm_crtc.h> |
| 17 | #include <drm/drm_crtc_helper.h> |
| 18 | #include <drm/drm_fb_cma_helper.h> |
| 19 | #include <drm/drm_gem_cma_helper.h> |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 20 | #include <drm/drm_plane_helper.h> |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 21 | |
| 22 | #include "rcar_du_drv.h" |
| 23 | #include "rcar_du_kms.h" |
| 24 | #include "rcar_du_plane.h" |
| 25 | #include "rcar_du_regs.h" |
| 26 | |
| 27 | #define RCAR_DU_COLORKEY_NONE (0 << 24) |
| 28 | #define RCAR_DU_COLORKEY_SOURCE (1 << 24) |
| 29 | #define RCAR_DU_COLORKEY_MASK (1 << 24) |
| 30 | |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 31 | static inline struct rcar_du_plane *to_rcar_plane(struct drm_plane *plane) |
| 32 | { |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 33 | return container_of(plane, struct rcar_du_plane, plane); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 34 | } |
| 35 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 36 | static u32 rcar_du_plane_read(struct rcar_du_group *rgrp, |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 37 | unsigned int index, u32 reg) |
| 38 | { |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 39 | return rcar_du_read(rgrp->dev, |
| 40 | rgrp->mmio_offset + index * PLANE_OFF + reg); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 41 | } |
| 42 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 43 | static void rcar_du_plane_write(struct rcar_du_group *rgrp, |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 44 | unsigned int index, u32 reg, u32 data) |
| 45 | { |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 46 | rcar_du_write(rgrp->dev, rgrp->mmio_offset + index * PLANE_OFF + reg, |
| 47 | data); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 48 | } |
| 49 | |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 50 | static int rcar_du_plane_reserve_check(struct rcar_du_plane *plane, |
| 51 | const struct rcar_du_format_info *format) |
| 52 | { |
| 53 | struct rcar_du_group *rgrp = plane->group; |
| 54 | unsigned int free; |
| 55 | unsigned int i; |
| 56 | int ret; |
| 57 | |
| 58 | mutex_lock(&rgrp->planes.lock); |
| 59 | |
| 60 | free = rgrp->planes.free; |
| 61 | |
| 62 | if (plane->hwindex != -1) { |
| 63 | free |= 1 << plane->hwindex; |
| 64 | if (plane->format->planes == 2) |
| 65 | free |= 1 << ((plane->hwindex + 1) % 8); |
| 66 | } |
| 67 | |
| 68 | for (i = 0; i < ARRAY_SIZE(rgrp->planes.planes); ++i) { |
| 69 | if (!(free & (1 << i))) |
| 70 | continue; |
| 71 | |
| 72 | if (format->planes == 1 || free & (1 << ((i + 1) % 8))) |
| 73 | break; |
| 74 | } |
| 75 | |
| 76 | ret = i == ARRAY_SIZE(rgrp->planes.planes) ? -EBUSY : 0; |
| 77 | |
| 78 | mutex_unlock(&rgrp->planes.lock); |
| 79 | return ret; |
| 80 | } |
| 81 | |
Laurent Pinchart | 845f463 | 2015-02-18 15:47:27 +0200 | [diff] [blame] | 82 | static int rcar_du_plane_reserve(struct rcar_du_plane *plane, |
| 83 | const struct rcar_du_format_info *format) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 84 | { |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 85 | struct rcar_du_group *rgrp = plane->group; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 86 | unsigned int i; |
| 87 | int ret = -EBUSY; |
| 88 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 89 | mutex_lock(&rgrp->planes.lock); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 90 | |
Laurent Pinchart | 3053460 | 2015-02-25 18:38:25 +0200 | [diff] [blame] | 91 | for (i = 0; i < RCAR_DU_NUM_HW_PLANES; ++i) { |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 92 | if (!(rgrp->planes.free & (1 << i))) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 93 | continue; |
| 94 | |
| 95 | if (format->planes == 1 || |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 96 | rgrp->planes.free & (1 << ((i + 1) % 8))) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 97 | break; |
| 98 | } |
| 99 | |
Laurent Pinchart | 3053460 | 2015-02-25 18:38:25 +0200 | [diff] [blame] | 100 | if (i == RCAR_DU_NUM_HW_PLANES) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 101 | goto done; |
| 102 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 103 | rgrp->planes.free &= ~(1 << i); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 104 | if (format->planes == 2) |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 105 | rgrp->planes.free &= ~(1 << ((i + 1) % 8)); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 106 | |
| 107 | plane->hwindex = i; |
| 108 | |
| 109 | ret = 0; |
| 110 | |
| 111 | done: |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 112 | mutex_unlock(&rgrp->planes.lock); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 113 | return ret; |
| 114 | } |
| 115 | |
Laurent Pinchart | 845f463 | 2015-02-18 15:47:27 +0200 | [diff] [blame] | 116 | static void rcar_du_plane_release(struct rcar_du_plane *plane) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 117 | { |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 118 | struct rcar_du_group *rgrp = plane->group; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 119 | |
| 120 | if (plane->hwindex == -1) |
| 121 | return; |
| 122 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 123 | mutex_lock(&rgrp->planes.lock); |
| 124 | rgrp->planes.free |= 1 << plane->hwindex; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 125 | if (plane->format->planes == 2) |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 126 | rgrp->planes.free |= 1 << ((plane->hwindex + 1) % 8); |
| 127 | mutex_unlock(&rgrp->planes.lock); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 128 | |
| 129 | plane->hwindex = -1; |
| 130 | } |
| 131 | |
| 132 | void rcar_du_plane_update_base(struct rcar_du_plane *plane) |
| 133 | { |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 134 | struct rcar_du_group *rgrp = plane->group; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 135 | unsigned int index = plane->hwindex; |
Laurent Pinchart | 906eff7 | 2014-12-09 19:11:18 +0200 | [diff] [blame] | 136 | bool interlaced; |
Laurent Pinchart | eb86301 | 2013-11-13 14:26:01 +0100 | [diff] [blame] | 137 | u32 mwr; |
| 138 | |
Laurent Pinchart | 906eff7 | 2014-12-09 19:11:18 +0200 | [diff] [blame] | 139 | interlaced = plane->crtc->mode.flags & DRM_MODE_FLAG_INTERLACE; |
| 140 | |
| 141 | /* Memory pitch (expressed in pixels). Must be doubled for interlaced |
| 142 | * operation with 32bpp formats. |
| 143 | */ |
Laurent Pinchart | eb86301 | 2013-11-13 14:26:01 +0100 | [diff] [blame] | 144 | if (plane->format->planes == 2) |
| 145 | mwr = plane->pitch; |
| 146 | else |
| 147 | mwr = plane->pitch * 8 / plane->format->bpp; |
| 148 | |
Laurent Pinchart | 906eff7 | 2014-12-09 19:11:18 +0200 | [diff] [blame] | 149 | if (interlaced && plane->format->bpp == 32) |
| 150 | mwr *= 2; |
| 151 | |
Laurent Pinchart | eb86301 | 2013-11-13 14:26:01 +0100 | [diff] [blame] | 152 | rcar_du_plane_write(rgrp, index, PnMWR, mwr); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 153 | |
Laurent Pinchart | 9e7db06 | 2013-06-14 20:54:16 +0200 | [diff] [blame] | 154 | /* The Y position is expressed in raster line units and must be doubled |
| 155 | * for 32bpp formats, according to the R8A7790 datasheet. No mention of |
| 156 | * doubling the Y position is found in the R8A7779 datasheet, but the |
| 157 | * rule seems to apply there as well. |
| 158 | * |
Laurent Pinchart | 906eff7 | 2014-12-09 19:11:18 +0200 | [diff] [blame] | 159 | * Despite not being documented, doubling seem not to be needed when |
| 160 | * operating in interlaced mode. |
| 161 | * |
Laurent Pinchart | 9e7db06 | 2013-06-14 20:54:16 +0200 | [diff] [blame] | 162 | * Similarly, for the second plane, NV12 and NV21 formats seem to |
Laurent Pinchart | 906eff7 | 2014-12-09 19:11:18 +0200 | [diff] [blame] | 163 | * require a halved Y position value, in both progressive and interlaced |
| 164 | * modes. |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 165 | */ |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 166 | rcar_du_plane_write(rgrp, index, PnSPXR, plane->src_x); |
| 167 | rcar_du_plane_write(rgrp, index, PnSPYR, plane->src_y * |
Laurent Pinchart | 906eff7 | 2014-12-09 19:11:18 +0200 | [diff] [blame] | 168 | (!interlaced && plane->format->bpp == 32 ? 2 : 1)); |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 169 | rcar_du_plane_write(rgrp, index, PnDSA0R, plane->dma[0]); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 170 | |
| 171 | if (plane->format->planes == 2) { |
| 172 | index = (index + 1) % 8; |
| 173 | |
Laurent Pinchart | 49785e2 | 2014-12-09 22:45:11 +0200 | [diff] [blame] | 174 | rcar_du_plane_write(rgrp, index, PnMWR, plane->pitch); |
| 175 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 176 | rcar_du_plane_write(rgrp, index, PnSPXR, plane->src_x); |
| 177 | rcar_du_plane_write(rgrp, index, PnSPYR, plane->src_y * |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 178 | (plane->format->bpp == 16 ? 2 : 1) / 2); |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 179 | rcar_du_plane_write(rgrp, index, PnDSA0R, plane->dma[1]); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 180 | } |
| 181 | } |
| 182 | |
| 183 | void rcar_du_plane_compute_base(struct rcar_du_plane *plane, |
| 184 | struct drm_framebuffer *fb) |
| 185 | { |
| 186 | struct drm_gem_cma_object *gem; |
| 187 | |
Laurent Pinchart | eb86301 | 2013-11-13 14:26:01 +0100 | [diff] [blame] | 188 | plane->pitch = fb->pitches[0]; |
| 189 | |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 190 | gem = drm_fb_cma_get_gem_obj(fb, 0); |
| 191 | plane->dma[0] = gem->paddr + fb->offsets[0]; |
| 192 | |
| 193 | if (plane->format->planes == 2) { |
| 194 | gem = drm_fb_cma_get_gem_obj(fb, 1); |
| 195 | plane->dma[1] = gem->paddr + fb->offsets[1]; |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | static void rcar_du_plane_setup_mode(struct rcar_du_plane *plane, |
| 200 | unsigned int index) |
| 201 | { |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 202 | struct rcar_du_group *rgrp = plane->group; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 203 | u32 colorkey; |
| 204 | u32 pnmr; |
| 205 | |
| 206 | /* The PnALPHAR register controls alpha-blending in 16bpp formats |
| 207 | * (ARGB1555 and XRGB1555). |
| 208 | * |
| 209 | * For ARGB, set the alpha value to 0, and enable alpha-blending when |
| 210 | * the A bit is 0. This maps A=0 to alpha=0 and A=1 to alpha=255. |
| 211 | * |
| 212 | * For XRGB, set the alpha value to the plane-wide alpha value and |
| 213 | * enable alpha-blending regardless of the X bit value. |
| 214 | */ |
| 215 | if (plane->format->fourcc != DRM_FORMAT_XRGB1555) |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 216 | rcar_du_plane_write(rgrp, index, PnALPHAR, PnALPHAR_ABIT_0); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 217 | else |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 218 | rcar_du_plane_write(rgrp, index, PnALPHAR, |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 219 | PnALPHAR_ABIT_X | plane->alpha); |
| 220 | |
| 221 | pnmr = PnMR_BM_MD | plane->format->pnmr; |
| 222 | |
| 223 | /* Disable color keying when requested. YUV formats have the |
| 224 | * PnMR_SPIM_TP_OFF bit set in their pnmr field, disabling color keying |
| 225 | * automatically. |
| 226 | */ |
| 227 | if ((plane->colorkey & RCAR_DU_COLORKEY_MASK) == RCAR_DU_COLORKEY_NONE) |
| 228 | pnmr |= PnMR_SPIM_TP_OFF; |
| 229 | |
| 230 | /* For packed YUV formats we need to select the U/V order. */ |
| 231 | if (plane->format->fourcc == DRM_FORMAT_YUYV) |
| 232 | pnmr |= PnMR_YCDF_YUYV; |
| 233 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 234 | rcar_du_plane_write(rgrp, index, PnMR, pnmr); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 235 | |
| 236 | switch (plane->format->fourcc) { |
| 237 | case DRM_FORMAT_RGB565: |
| 238 | colorkey = ((plane->colorkey & 0xf80000) >> 8) |
| 239 | | ((plane->colorkey & 0x00fc00) >> 5) |
| 240 | | ((plane->colorkey & 0x0000f8) >> 3); |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 241 | rcar_du_plane_write(rgrp, index, PnTC2R, colorkey); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 242 | break; |
| 243 | |
| 244 | case DRM_FORMAT_ARGB1555: |
| 245 | case DRM_FORMAT_XRGB1555: |
| 246 | colorkey = ((plane->colorkey & 0xf80000) >> 9) |
| 247 | | ((plane->colorkey & 0x00f800) >> 6) |
| 248 | | ((plane->colorkey & 0x0000f8) >> 3); |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 249 | rcar_du_plane_write(rgrp, index, PnTC2R, colorkey); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 250 | break; |
| 251 | |
| 252 | case DRM_FORMAT_XRGB8888: |
| 253 | case DRM_FORMAT_ARGB8888: |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 254 | rcar_du_plane_write(rgrp, index, PnTC3R, |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 255 | PnTC3R_CODE | (plane->colorkey & 0xffffff)); |
| 256 | break; |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | static void __rcar_du_plane_setup(struct rcar_du_plane *plane, |
| 261 | unsigned int index) |
| 262 | { |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 263 | struct rcar_du_group *rgrp = plane->group; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 264 | u32 ddcr2 = PnDDCR2_CODE; |
| 265 | u32 ddcr4; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 266 | |
| 267 | /* Data format |
| 268 | * |
| 269 | * The data format is selected by the DDDF field in PnMR and the EDF |
| 270 | * field in DDCR4. |
| 271 | */ |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 272 | ddcr4 = rcar_du_plane_read(rgrp, index, PnDDCR4); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 273 | ddcr4 &= ~PnDDCR4_EDF_MASK; |
| 274 | ddcr4 |= plane->format->edf | PnDDCR4_CODE; |
| 275 | |
| 276 | rcar_du_plane_setup_mode(plane, index); |
| 277 | |
| 278 | if (plane->format->planes == 2) { |
| 279 | if (plane->hwindex != index) { |
| 280 | if (plane->format->fourcc == DRM_FORMAT_NV12 || |
| 281 | plane->format->fourcc == DRM_FORMAT_NV21) |
| 282 | ddcr2 |= PnDDCR2_Y420; |
| 283 | |
| 284 | if (plane->format->fourcc == DRM_FORMAT_NV21) |
| 285 | ddcr2 |= PnDDCR2_NV21; |
| 286 | |
| 287 | ddcr2 |= PnDDCR2_DIVU; |
| 288 | } else { |
| 289 | ddcr2 |= PnDDCR2_DIVY; |
| 290 | } |
| 291 | } |
| 292 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 293 | rcar_du_plane_write(rgrp, index, PnDDCR2, ddcr2); |
| 294 | rcar_du_plane_write(rgrp, index, PnDDCR4, ddcr4); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 295 | |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 296 | /* Destination position and size */ |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 297 | rcar_du_plane_write(rgrp, index, PnDSXR, plane->width); |
| 298 | rcar_du_plane_write(rgrp, index, PnDSYR, plane->height); |
| 299 | rcar_du_plane_write(rgrp, index, PnDPXR, plane->dst_x); |
| 300 | rcar_du_plane_write(rgrp, index, PnDPYR, plane->dst_y); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 301 | |
| 302 | /* Wrap-around and blinking, disabled */ |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 303 | rcar_du_plane_write(rgrp, index, PnWASPR, 0); |
| 304 | rcar_du_plane_write(rgrp, index, PnWAMWR, 4095); |
| 305 | rcar_du_plane_write(rgrp, index, PnBTR, 0); |
| 306 | rcar_du_plane_write(rgrp, index, PnMLR, 0); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | void rcar_du_plane_setup(struct rcar_du_plane *plane) |
| 310 | { |
| 311 | __rcar_du_plane_setup(plane, plane->hwindex); |
| 312 | if (plane->format->planes == 2) |
| 313 | __rcar_du_plane_setup(plane, (plane->hwindex + 1) % 8); |
| 314 | |
| 315 | rcar_du_plane_update_base(plane); |
| 316 | } |
| 317 | |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 318 | static int rcar_du_plane_atomic_check(struct drm_plane *plane, |
| 319 | struct drm_plane_state *state) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 320 | { |
| 321 | struct rcar_du_plane *rplane = to_rcar_plane(plane); |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 322 | struct rcar_du_device *rcdu = rplane->group->dev; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 323 | const struct rcar_du_format_info *format; |
| 324 | unsigned int nplanes; |
| 325 | int ret; |
| 326 | |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 327 | if (!state->fb || !state->crtc) |
| 328 | return 0; |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 329 | |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 330 | if (state->src_w >> 16 != state->crtc_w || |
| 331 | state->src_h >> 16 != state->crtc_h) { |
| 332 | dev_dbg(rcdu->dev, "%s: scaling not supported\n", __func__); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 333 | return -EINVAL; |
| 334 | } |
| 335 | |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 336 | format = rcar_du_format_info(state->fb->pixel_format); |
| 337 | if (format == NULL) { |
| 338 | dev_dbg(rcdu->dev, "%s: unsupported format %08x\n", __func__, |
| 339 | state->fb->pixel_format); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 340 | return -EINVAL; |
| 341 | } |
| 342 | |
| 343 | nplanes = rplane->format ? rplane->format->planes : 0; |
| 344 | |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 345 | /* If the number of required planes has changed we will need to |
| 346 | * reallocate hardware planes. Ensure free planes are available. |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 347 | */ |
| 348 | if (format->planes != nplanes) { |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 349 | ret = rcar_du_plane_reserve_check(rplane, format); |
| 350 | if (ret < 0) { |
| 351 | dev_dbg(rcdu->dev, "%s: no available hardware plane\n", |
| 352 | __func__); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 353 | return ret; |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 354 | } |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 355 | } |
| 356 | |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 357 | return 0; |
| 358 | } |
| 359 | |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 360 | static void rcar_du_plane_disable(struct rcar_du_plane *rplane) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 361 | { |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 362 | if (!rplane->enabled) |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 363 | return; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 364 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 365 | mutex_lock(&rplane->group->planes.lock); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 366 | rplane->enabled = false; |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 367 | mutex_unlock(&rplane->group->planes.lock); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 368 | |
| 369 | rcar_du_plane_release(rplane); |
| 370 | |
| 371 | rplane->crtc = NULL; |
| 372 | rplane->format = NULL; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 373 | } |
| 374 | |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 375 | static void rcar_du_plane_atomic_update(struct drm_plane *plane, |
| 376 | struct drm_plane_state *old_state) |
| 377 | { |
| 378 | struct rcar_du_plane *rplane = to_rcar_plane(plane); |
| 379 | struct drm_plane_state *state = plane->state; |
| 380 | const struct rcar_du_format_info *format; |
| 381 | unsigned int nplanes; |
| 382 | |
| 383 | if (!state->crtc) { |
| 384 | rcar_du_plane_disable(rplane); |
| 385 | return; |
| 386 | } |
| 387 | |
| 388 | format = rcar_du_format_info(state->fb->pixel_format); |
| 389 | nplanes = rplane->format ? rplane->format->planes : 0; |
| 390 | |
| 391 | /* Reallocate hardware planes if the number of required planes has |
| 392 | * changed. |
| 393 | */ |
| 394 | if (format->planes != nplanes) { |
| 395 | rcar_du_plane_release(rplane); |
| 396 | rcar_du_plane_reserve(rplane, format); |
| 397 | } |
| 398 | |
| 399 | rplane->crtc = state->crtc; |
| 400 | rplane->format = format; |
| 401 | |
| 402 | rplane->src_x = state->src_x >> 16; |
| 403 | rplane->src_y = state->src_y >> 16; |
| 404 | rplane->dst_x = state->crtc_x; |
| 405 | rplane->dst_y = state->crtc_y; |
| 406 | rplane->width = state->crtc_w; |
| 407 | rplane->height = state->crtc_h; |
| 408 | |
| 409 | rcar_du_plane_compute_base(rplane, state->fb); |
| 410 | rcar_du_plane_setup(rplane); |
| 411 | |
| 412 | mutex_lock(&rplane->group->planes.lock); |
| 413 | rplane->enabled = true; |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 414 | mutex_unlock(&rplane->group->planes.lock); |
| 415 | } |
| 416 | |
| 417 | static const struct drm_plane_helper_funcs rcar_du_plane_helper_funcs = { |
| 418 | .atomic_check = rcar_du_plane_atomic_check, |
| 419 | .atomic_update = rcar_du_plane_atomic_update, |
| 420 | }; |
| 421 | |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 422 | /* Both the .set_property and the .update_plane operations are called with the |
| 423 | * mode_config lock held. There is this no need to explicitly protect access to |
| 424 | * the alpha and colorkey fields and the mode register. |
| 425 | */ |
| 426 | static void rcar_du_plane_set_alpha(struct rcar_du_plane *plane, u32 alpha) |
| 427 | { |
| 428 | if (plane->alpha == alpha) |
| 429 | return; |
| 430 | |
| 431 | plane->alpha = alpha; |
| 432 | if (!plane->enabled || plane->format->fourcc != DRM_FORMAT_XRGB1555) |
| 433 | return; |
| 434 | |
| 435 | rcar_du_plane_setup_mode(plane, plane->hwindex); |
| 436 | } |
| 437 | |
| 438 | static void rcar_du_plane_set_colorkey(struct rcar_du_plane *plane, |
| 439 | u32 colorkey) |
| 440 | { |
| 441 | if (plane->colorkey == colorkey) |
| 442 | return; |
| 443 | |
| 444 | plane->colorkey = colorkey; |
| 445 | if (!plane->enabled) |
| 446 | return; |
| 447 | |
| 448 | rcar_du_plane_setup_mode(plane, plane->hwindex); |
| 449 | } |
| 450 | |
| 451 | static void rcar_du_plane_set_zpos(struct rcar_du_plane *plane, |
| 452 | unsigned int zpos) |
| 453 | { |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 454 | mutex_lock(&plane->group->planes.lock); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 455 | if (plane->zpos == zpos) |
| 456 | goto done; |
| 457 | |
| 458 | plane->zpos = zpos; |
| 459 | if (!plane->enabled) |
| 460 | goto done; |
| 461 | |
| 462 | rcar_du_crtc_update_planes(plane->crtc); |
| 463 | |
| 464 | done: |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 465 | mutex_unlock(&plane->group->planes.lock); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | static int rcar_du_plane_set_property(struct drm_plane *plane, |
| 469 | struct drm_property *property, |
| 470 | uint64_t value) |
| 471 | { |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 472 | struct rcar_du_plane *rplane = to_rcar_plane(plane); |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 473 | struct rcar_du_group *rgrp = rplane->group; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 474 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 475 | if (property == rgrp->planes.alpha) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 476 | rcar_du_plane_set_alpha(rplane, value); |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 477 | else if (property == rgrp->planes.colorkey) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 478 | rcar_du_plane_set_colorkey(rplane, value); |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 479 | else if (property == rgrp->planes.zpos) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 480 | rcar_du_plane_set_zpos(rplane, value); |
| 481 | else |
| 482 | return -EINVAL; |
| 483 | |
| 484 | return 0; |
| 485 | } |
| 486 | |
| 487 | static const struct drm_plane_funcs rcar_du_plane_funcs = { |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 488 | .update_plane = drm_plane_helper_update, |
| 489 | .disable_plane = drm_plane_helper_disable, |
Laurent Pinchart | 3e8da87 | 2015-02-20 11:30:59 +0200 | [diff] [blame^] | 490 | .reset = drm_atomic_helper_plane_reset, |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 491 | .set_property = rcar_du_plane_set_property, |
| 492 | .destroy = drm_plane_cleanup, |
Laurent Pinchart | 3e8da87 | 2015-02-20 11:30:59 +0200 | [diff] [blame^] | 493 | .atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state, |
| 494 | .atomic_destroy_state = drm_atomic_helper_plane_destroy_state, |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 495 | }; |
| 496 | |
| 497 | static const uint32_t formats[] = { |
| 498 | DRM_FORMAT_RGB565, |
| 499 | DRM_FORMAT_ARGB1555, |
| 500 | DRM_FORMAT_XRGB1555, |
| 501 | DRM_FORMAT_XRGB8888, |
| 502 | DRM_FORMAT_ARGB8888, |
| 503 | DRM_FORMAT_UYVY, |
| 504 | DRM_FORMAT_YUYV, |
| 505 | DRM_FORMAT_NV12, |
| 506 | DRM_FORMAT_NV21, |
| 507 | DRM_FORMAT_NV16, |
| 508 | }; |
| 509 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 510 | int rcar_du_planes_init(struct rcar_du_group *rgrp) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 511 | { |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 512 | struct rcar_du_planes *planes = &rgrp->planes; |
| 513 | struct rcar_du_device *rcdu = rgrp->dev; |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 514 | unsigned int num_planes; |
| 515 | unsigned int num_crtcs; |
| 516 | unsigned int crtcs; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 517 | unsigned int i; |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 518 | int ret; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 519 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 520 | mutex_init(&planes->lock); |
| 521 | planes->free = 0xff; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 522 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 523 | planes->alpha = |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 524 | drm_property_create_range(rcdu->ddev, 0, "alpha", 0, 255); |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 525 | if (planes->alpha == NULL) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 526 | return -ENOMEM; |
| 527 | |
| 528 | /* The color key is expressed as an RGB888 triplet stored in a 32-bit |
| 529 | * integer in XRGB8888 format. Bit 24 is used as a flag to disable (0) |
| 530 | * or enable source color keying (1). |
| 531 | */ |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 532 | planes->colorkey = |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 533 | drm_property_create_range(rcdu->ddev, 0, "colorkey", |
| 534 | 0, 0x01ffffff); |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 535 | if (planes->colorkey == NULL) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 536 | return -ENOMEM; |
| 537 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 538 | planes->zpos = |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 539 | drm_property_create_range(rcdu->ddev, 0, "zpos", 1, 7); |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 540 | if (planes->zpos == NULL) |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 541 | return -ENOMEM; |
| 542 | |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 543 | /* Create one primary plane per in this group CRTC and seven overlay |
| 544 | * planes. |
| 545 | */ |
| 546 | num_crtcs = min(rcdu->num_crtcs - 2 * rgrp->index, 2U); |
| 547 | num_planes = num_crtcs + 7; |
| 548 | |
| 549 | crtcs = ((1 << rcdu->num_crtcs) - 1) & (3 << (2 * rgrp->index)); |
| 550 | |
| 551 | for (i = 0; i < num_planes; ++i) { |
| 552 | enum drm_plane_type type = i < num_crtcs |
| 553 | ? DRM_PLANE_TYPE_PRIMARY |
| 554 | : DRM_PLANE_TYPE_OVERLAY; |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 555 | struct rcar_du_plane *plane = &planes->planes[i]; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 556 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 557 | plane->group = rgrp; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 558 | plane->hwindex = -1; |
| 559 | plane->alpha = 255; |
| 560 | plane->colorkey = RCAR_DU_COLORKEY_NONE; |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 561 | plane->zpos = type == DRM_PLANE_TYPE_PRIMARY ? 0 : 1; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 562 | |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 563 | ret = drm_universal_plane_init(rcdu->ddev, &plane->plane, crtcs, |
| 564 | &rcar_du_plane_funcs, formats, |
| 565 | ARRAY_SIZE(formats), type); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 566 | if (ret < 0) |
| 567 | return ret; |
| 568 | |
Laurent Pinchart | 920888a | 2015-02-18 12:18:05 +0200 | [diff] [blame] | 569 | drm_plane_helper_add(&plane->plane, |
| 570 | &rcar_du_plane_helper_funcs); |
| 571 | |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 572 | if (type == DRM_PLANE_TYPE_PRIMARY) |
| 573 | continue; |
| 574 | |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 575 | drm_object_attach_property(&plane->plane.base, |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 576 | planes->alpha, 255); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 577 | drm_object_attach_property(&plane->plane.base, |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 578 | planes->colorkey, |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 579 | RCAR_DU_COLORKEY_NONE); |
| 580 | drm_object_attach_property(&plane->plane.base, |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 581 | planes->zpos, 1); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 582 | } |
| 583 | |
| 584 | return 0; |
| 585 | } |