| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 Broadcom |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. |
| 7 | */ |
| 8 | |
| 9 | /** |
| 10 | * DOC: VC4 plane module |
| 11 | * |
| 12 | * Each DRM plane is a layer of pixels being scanned out by the HVS. |
| 13 | * |
| 14 | * At atomic modeset check time, we compute the HVS display element |
| 15 | * state that would be necessary for displaying the plane (giving us a |
| 16 | * chance to figure out if a plane configuration is invalid), then at |
| 17 | * atomic flush time the CRTC will ask us to write our element state |
| 18 | * into the region of the HVS that it has allocated for us. |
| 19 | */ |
| 20 | |
| Masahiro Yamada | b7e8e25 | 2017-05-18 13:29:38 +0900 | [diff] [blame] | 21 | #include <drm/drm_atomic.h> |
| 22 | #include <drm/drm_atomic_helper.h> |
| 23 | #include <drm/drm_fb_cma_helper.h> |
| 24 | #include <drm/drm_plane_helper.h> |
| Daniel Vetter | 72fdb40 | 2018-09-05 15:57:11 +0200 | [diff] [blame] | 25 | #include <drm/drm_atomic_uapi.h> |
| Masahiro Yamada | b7e8e25 | 2017-05-18 13:29:38 +0900 | [diff] [blame] | 26 | |
| Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 27 | #include "uapi/drm/vc4_drm.h" |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 28 | #include "vc4_drv.h" |
| 29 | #include "vc4_regs.h" |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 30 | |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 31 | static const struct hvs_format { |
| 32 | u32 drm; /* DRM_FORMAT_* */ |
| 33 | u32 hvs; /* HVS_FORMAT_* */ |
| 34 | u32 pixel_order; |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 35 | } hvs_formats[] = { |
| 36 | { |
| 37 | .drm = DRM_FORMAT_XRGB8888, .hvs = HVS_PIXEL_FORMAT_RGBA8888, |
| Maxime Ripard | 124e5da | 2017-12-22 15:31:27 +0100 | [diff] [blame] | 38 | .pixel_order = HVS_PIXEL_ORDER_ABGR, |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 39 | }, |
| 40 | { |
| 41 | .drm = DRM_FORMAT_ARGB8888, .hvs = HVS_PIXEL_FORMAT_RGBA8888, |
| Maxime Ripard | 124e5da | 2017-12-22 15:31:27 +0100 | [diff] [blame] | 42 | .pixel_order = HVS_PIXEL_ORDER_ABGR, |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 43 | }, |
| Eric Anholt | fe4cd84 | 2015-10-20 13:59:15 +0100 | [diff] [blame] | 44 | { |
| Rob Herring | 9397776 | 2016-06-09 16:19:25 -0500 | [diff] [blame] | 45 | .drm = DRM_FORMAT_ABGR8888, .hvs = HVS_PIXEL_FORMAT_RGBA8888, |
| Maxime Ripard | 124e5da | 2017-12-22 15:31:27 +0100 | [diff] [blame] | 46 | .pixel_order = HVS_PIXEL_ORDER_ARGB, |
| Rob Herring | 9397776 | 2016-06-09 16:19:25 -0500 | [diff] [blame] | 47 | }, |
| 48 | { |
| 49 | .drm = DRM_FORMAT_XBGR8888, .hvs = HVS_PIXEL_FORMAT_RGBA8888, |
| Maxime Ripard | 124e5da | 2017-12-22 15:31:27 +0100 | [diff] [blame] | 50 | .pixel_order = HVS_PIXEL_ORDER_ARGB, |
| Rob Herring | 9397776 | 2016-06-09 16:19:25 -0500 | [diff] [blame] | 51 | }, |
| 52 | { |
| Eric Anholt | fe4cd84 | 2015-10-20 13:59:15 +0100 | [diff] [blame] | 53 | .drm = DRM_FORMAT_RGB565, .hvs = HVS_PIXEL_FORMAT_RGB565, |
| Maxime Ripard | 124e5da | 2017-12-22 15:31:27 +0100 | [diff] [blame] | 54 | .pixel_order = HVS_PIXEL_ORDER_XRGB, |
| Eric Anholt | fe4cd84 | 2015-10-20 13:59:15 +0100 | [diff] [blame] | 55 | }, |
| 56 | { |
| 57 | .drm = DRM_FORMAT_BGR565, .hvs = HVS_PIXEL_FORMAT_RGB565, |
| Maxime Ripard | 124e5da | 2017-12-22 15:31:27 +0100 | [diff] [blame] | 58 | .pixel_order = HVS_PIXEL_ORDER_XBGR, |
| Eric Anholt | fe4cd84 | 2015-10-20 13:59:15 +0100 | [diff] [blame] | 59 | }, |
| 60 | { |
| 61 | .drm = DRM_FORMAT_ARGB1555, .hvs = HVS_PIXEL_FORMAT_RGBA5551, |
| Maxime Ripard | 124e5da | 2017-12-22 15:31:27 +0100 | [diff] [blame] | 62 | .pixel_order = HVS_PIXEL_ORDER_ABGR, |
| Eric Anholt | fe4cd84 | 2015-10-20 13:59:15 +0100 | [diff] [blame] | 63 | }, |
| 64 | { |
| 65 | .drm = DRM_FORMAT_XRGB1555, .hvs = HVS_PIXEL_FORMAT_RGBA5551, |
| Maxime Ripard | 124e5da | 2017-12-22 15:31:27 +0100 | [diff] [blame] | 66 | .pixel_order = HVS_PIXEL_ORDER_ABGR, |
| Eric Anholt | fe4cd84 | 2015-10-20 13:59:15 +0100 | [diff] [blame] | 67 | }, |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 68 | { |
| Dave Stevenson | 88f8156 | 2017-11-16 14:22:29 +0000 | [diff] [blame] | 69 | .drm = DRM_FORMAT_RGB888, .hvs = HVS_PIXEL_FORMAT_RGB888, |
| Maxime Ripard | 124e5da | 2017-12-22 15:31:27 +0100 | [diff] [blame] | 70 | .pixel_order = HVS_PIXEL_ORDER_XRGB, |
| Dave Stevenson | 88f8156 | 2017-11-16 14:22:29 +0000 | [diff] [blame] | 71 | }, |
| 72 | { |
| 73 | .drm = DRM_FORMAT_BGR888, .hvs = HVS_PIXEL_FORMAT_RGB888, |
| Maxime Ripard | 124e5da | 2017-12-22 15:31:27 +0100 | [diff] [blame] | 74 | .pixel_order = HVS_PIXEL_ORDER_XBGR, |
| Dave Stevenson | 88f8156 | 2017-11-16 14:22:29 +0000 | [diff] [blame] | 75 | }, |
| 76 | { |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 77 | .drm = DRM_FORMAT_YUV422, |
| 78 | .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV422_3PLANE, |
| Dave Stevenson | 090cb0c | 2017-11-16 14:22:30 +0000 | [diff] [blame] | 79 | .pixel_order = HVS_PIXEL_ORDER_XYCBCR, |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 80 | }, |
| 81 | { |
| 82 | .drm = DRM_FORMAT_YVU422, |
| 83 | .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV422_3PLANE, |
| Dave Stevenson | 090cb0c | 2017-11-16 14:22:30 +0000 | [diff] [blame] | 84 | .pixel_order = HVS_PIXEL_ORDER_XYCRCB, |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 85 | }, |
| 86 | { |
| 87 | .drm = DRM_FORMAT_YUV420, |
| 88 | .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV420_3PLANE, |
| Dave Stevenson | 090cb0c | 2017-11-16 14:22:30 +0000 | [diff] [blame] | 89 | .pixel_order = HVS_PIXEL_ORDER_XYCBCR, |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 90 | }, |
| 91 | { |
| 92 | .drm = DRM_FORMAT_YVU420, |
| 93 | .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV420_3PLANE, |
| Dave Stevenson | 090cb0c | 2017-11-16 14:22:30 +0000 | [diff] [blame] | 94 | .pixel_order = HVS_PIXEL_ORDER_XYCRCB, |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 95 | }, |
| 96 | { |
| 97 | .drm = DRM_FORMAT_NV12, |
| 98 | .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV420_2PLANE, |
| Dave Stevenson | 090cb0c | 2017-11-16 14:22:30 +0000 | [diff] [blame] | 99 | .pixel_order = HVS_PIXEL_ORDER_XYCBCR, |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 100 | }, |
| 101 | { |
| Dave Stevenson | cb20dd1 | 2017-11-16 14:22:31 +0000 | [diff] [blame] | 102 | .drm = DRM_FORMAT_NV21, |
| 103 | .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV420_2PLANE, |
| 104 | .pixel_order = HVS_PIXEL_ORDER_XYCRCB, |
| 105 | }, |
| 106 | { |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 107 | .drm = DRM_FORMAT_NV16, |
| 108 | .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV422_2PLANE, |
| Dave Stevenson | 090cb0c | 2017-11-16 14:22:30 +0000 | [diff] [blame] | 109 | .pixel_order = HVS_PIXEL_ORDER_XYCBCR, |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 110 | }, |
| Dave Stevenson | cb20dd1 | 2017-11-16 14:22:31 +0000 | [diff] [blame] | 111 | { |
| 112 | .drm = DRM_FORMAT_NV61, |
| 113 | .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV422_2PLANE, |
| 114 | .pixel_order = HVS_PIXEL_ORDER_XYCRCB, |
| 115 | }, |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 116 | }; |
| 117 | |
| 118 | static const struct hvs_format *vc4_get_hvs_format(u32 drm_format) |
| 119 | { |
| 120 | unsigned i; |
| 121 | |
| 122 | for (i = 0; i < ARRAY_SIZE(hvs_formats); i++) { |
| 123 | if (hvs_formats[i].drm == drm_format) |
| 124 | return &hvs_formats[i]; |
| 125 | } |
| 126 | |
| 127 | return NULL; |
| 128 | } |
| 129 | |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 130 | static enum vc4_scaling_mode vc4_get_scaling_mode(u32 src, u32 dst) |
| 131 | { |
| Boris Brezillon | eb8dd3a | 2018-11-09 11:26:33 +0100 | [diff] [blame] | 132 | if (dst == src) |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 133 | return VC4_SCALING_NONE; |
| Boris Brezillon | eb8dd3a | 2018-11-09 11:26:33 +0100 | [diff] [blame] | 134 | if (3 * dst >= 2 * src) |
| 135 | return VC4_SCALING_PPF; |
| 136 | else |
| 137 | return VC4_SCALING_TPZ; |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 138 | } |
| 139 | |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 140 | static bool plane_enabled(struct drm_plane_state *state) |
| 141 | { |
| 142 | return state->fb && state->crtc; |
| 143 | } |
| 144 | |
| kbuild test robot | 91276ae | 2015-10-22 11:12:26 +0800 | [diff] [blame] | 145 | static struct drm_plane_state *vc4_plane_duplicate_state(struct drm_plane *plane) |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 146 | { |
| 147 | struct vc4_plane_state *vc4_state; |
| 148 | |
| 149 | if (WARN_ON(!plane->state)) |
| 150 | return NULL; |
| 151 | |
| 152 | vc4_state = kmemdup(plane->state, sizeof(*vc4_state), GFP_KERNEL); |
| 153 | if (!vc4_state) |
| 154 | return NULL; |
| 155 | |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 156 | memset(&vc4_state->lbm, 0, sizeof(vc4_state->lbm)); |
| 157 | |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 158 | __drm_atomic_helper_plane_duplicate_state(plane, &vc4_state->base); |
| 159 | |
| 160 | if (vc4_state->dlist) { |
| 161 | vc4_state->dlist = kmemdup(vc4_state->dlist, |
| 162 | vc4_state->dlist_count * 4, |
| 163 | GFP_KERNEL); |
| 164 | if (!vc4_state->dlist) { |
| 165 | kfree(vc4_state); |
| 166 | return NULL; |
| 167 | } |
| 168 | vc4_state->dlist_size = vc4_state->dlist_count; |
| 169 | } |
| 170 | |
| 171 | return &vc4_state->base; |
| 172 | } |
| 173 | |
| kbuild test robot | 91276ae | 2015-10-22 11:12:26 +0800 | [diff] [blame] | 174 | static void vc4_plane_destroy_state(struct drm_plane *plane, |
| 175 | struct drm_plane_state *state) |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 176 | { |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 177 | struct vc4_dev *vc4 = to_vc4_dev(plane->dev); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 178 | struct vc4_plane_state *vc4_state = to_vc4_plane_state(state); |
| 179 | |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 180 | if (vc4_state->lbm.allocated) { |
| 181 | unsigned long irqflags; |
| 182 | |
| 183 | spin_lock_irqsave(&vc4->hvs->mm_lock, irqflags); |
| 184 | drm_mm_remove_node(&vc4_state->lbm); |
| 185 | spin_unlock_irqrestore(&vc4->hvs->mm_lock, irqflags); |
| 186 | } |
| 187 | |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 188 | kfree(vc4_state->dlist); |
| Daniel Vetter | 2f70169 | 2016-05-09 16:34:10 +0200 | [diff] [blame] | 189 | __drm_atomic_helper_plane_destroy_state(&vc4_state->base); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 190 | kfree(state); |
| 191 | } |
| 192 | |
| 193 | /* Called during init to allocate the plane's atomic state. */ |
| kbuild test robot | 91276ae | 2015-10-22 11:12:26 +0800 | [diff] [blame] | 194 | static void vc4_plane_reset(struct drm_plane *plane) |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 195 | { |
| 196 | struct vc4_plane_state *vc4_state; |
| 197 | |
| 198 | WARN_ON(plane->state); |
| 199 | |
| 200 | vc4_state = kzalloc(sizeof(*vc4_state), GFP_KERNEL); |
| 201 | if (!vc4_state) |
| 202 | return; |
| 203 | |
| Alexandru Gheorghe | 42da633 | 2018-08-04 17:15:29 +0100 | [diff] [blame] | 204 | __drm_atomic_helper_plane_reset(plane, &vc4_state->base); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | static void vc4_dlist_write(struct vc4_plane_state *vc4_state, u32 val) |
| 208 | { |
| 209 | if (vc4_state->dlist_count == vc4_state->dlist_size) { |
| 210 | u32 new_size = max(4u, vc4_state->dlist_count * 2); |
| Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 211 | u32 *new_dlist = kmalloc_array(new_size, 4, GFP_KERNEL); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 212 | |
| 213 | if (!new_dlist) |
| 214 | return; |
| 215 | memcpy(new_dlist, vc4_state->dlist, vc4_state->dlist_count * 4); |
| 216 | |
| 217 | kfree(vc4_state->dlist); |
| 218 | vc4_state->dlist = new_dlist; |
| 219 | vc4_state->dlist_size = new_size; |
| 220 | } |
| 221 | |
| 222 | vc4_state->dlist[vc4_state->dlist_count++] = val; |
| 223 | } |
| 224 | |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 225 | /* Returns the scl0/scl1 field based on whether the dimensions need to |
| 226 | * be up/down/non-scaled. |
| 227 | * |
| 228 | * This is a replication of a table from the spec. |
| 229 | */ |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 230 | static u32 vc4_get_scl_field(struct drm_plane_state *state, int plane) |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 231 | { |
| 232 | struct vc4_plane_state *vc4_state = to_vc4_plane_state(state); |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 233 | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 234 | switch (vc4_state->x_scaling[plane] << 2 | vc4_state->y_scaling[plane]) { |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 235 | case VC4_SCALING_PPF << 2 | VC4_SCALING_PPF: |
| 236 | return SCALER_CTL0_SCL_H_PPF_V_PPF; |
| 237 | case VC4_SCALING_TPZ << 2 | VC4_SCALING_PPF: |
| 238 | return SCALER_CTL0_SCL_H_TPZ_V_PPF; |
| 239 | case VC4_SCALING_PPF << 2 | VC4_SCALING_TPZ: |
| 240 | return SCALER_CTL0_SCL_H_PPF_V_TPZ; |
| 241 | case VC4_SCALING_TPZ << 2 | VC4_SCALING_TPZ: |
| 242 | return SCALER_CTL0_SCL_H_TPZ_V_TPZ; |
| 243 | case VC4_SCALING_PPF << 2 | VC4_SCALING_NONE: |
| 244 | return SCALER_CTL0_SCL_H_PPF_V_NONE; |
| 245 | case VC4_SCALING_NONE << 2 | VC4_SCALING_PPF: |
| 246 | return SCALER_CTL0_SCL_H_NONE_V_PPF; |
| 247 | case VC4_SCALING_NONE << 2 | VC4_SCALING_TPZ: |
| 248 | return SCALER_CTL0_SCL_H_NONE_V_TPZ; |
| 249 | case VC4_SCALING_TPZ << 2 | VC4_SCALING_NONE: |
| 250 | return SCALER_CTL0_SCL_H_TPZ_V_NONE; |
| 251 | default: |
| 252 | case VC4_SCALING_NONE << 2 | VC4_SCALING_NONE: |
| 253 | /* The unity case is independently handled by |
| 254 | * SCALER_CTL0_UNITY. |
| 255 | */ |
| 256 | return 0; |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | static int vc4_plane_setup_clipping_and_scaling(struct drm_plane_state *state) |
| 261 | { |
| 262 | struct drm_plane *plane = state->plane; |
| 263 | struct vc4_plane_state *vc4_state = to_vc4_plane_state(state); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 264 | struct drm_framebuffer *fb = state->fb; |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 265 | struct drm_gem_cma_object *bo = drm_fb_cma_get_gem_obj(fb, 0); |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 266 | u32 subpixel_src_mask = (1 << 16) - 1; |
| Ville Syrjälä | 438b74a | 2016-12-14 23:32:55 +0200 | [diff] [blame] | 267 | u32 format = fb->format->format; |
| Ville Syrjälä | bcb0b46 | 2016-12-14 23:30:22 +0200 | [diff] [blame] | 268 | int num_planes = fb->format->num_planes; |
| Boris Brezillon | 58a6a36 | 2018-08-03 11:22:29 +0200 | [diff] [blame] | 269 | int min_scale = 1, max_scale = INT_MAX; |
| 270 | struct drm_crtc_state *crtc_state; |
| 271 | u32 h_subsample, v_subsample; |
| 272 | int i, ret; |
| 273 | |
| 274 | crtc_state = drm_atomic_get_existing_crtc_state(state->state, |
| 275 | state->crtc); |
| 276 | if (!crtc_state) { |
| 277 | DRM_DEBUG_KMS("Invalid crtc state\n"); |
| 278 | return -EINVAL; |
| 279 | } |
| 280 | |
| 281 | /* No configuring scaling on the cursor plane, since it gets |
| 282 | * non-vblank-synced updates, and scaling requires LBM changes which |
| 283 | * have to be vblank-synced. |
| 284 | */ |
| 285 | if (plane->type == DRM_PLANE_TYPE_CURSOR) { |
| 286 | min_scale = DRM_PLANE_HELPER_NO_SCALING; |
| 287 | max_scale = DRM_PLANE_HELPER_NO_SCALING; |
| 288 | } else { |
| 289 | min_scale = 1; |
| 290 | max_scale = INT_MAX; |
| 291 | } |
| 292 | |
| 293 | ret = drm_atomic_helper_check_plane_state(state, crtc_state, |
| 294 | min_scale, max_scale, |
| 295 | true, true); |
| 296 | if (ret) |
| 297 | return ret; |
| 298 | |
| 299 | h_subsample = drm_format_horz_chroma_subsampling(format); |
| 300 | v_subsample = drm_format_vert_chroma_subsampling(format); |
| Eric Anholt | 5c67999 | 2015-12-28 14:34:44 -0800 | [diff] [blame] | 301 | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 302 | for (i = 0; i < num_planes; i++) |
| 303 | vc4_state->offsets[i] = bo->paddr + fb->offsets[i]; |
| Eric Anholt | 5c67999 | 2015-12-28 14:34:44 -0800 | [diff] [blame] | 304 | |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 305 | /* We don't support subpixel source positioning for scaling. */ |
| Boris Brezillon | 58a6a36 | 2018-08-03 11:22:29 +0200 | [diff] [blame] | 306 | if ((state->src.x1 & subpixel_src_mask) || |
| 307 | (state->src.x2 & subpixel_src_mask) || |
| 308 | (state->src.y1 & subpixel_src_mask) || |
| 309 | (state->src.y2 & subpixel_src_mask)) { |
| Eric Anholt | bf893ac | 2015-10-23 10:36:27 +0100 | [diff] [blame] | 310 | return -EINVAL; |
| 311 | } |
| 312 | |
| Boris Brezillon | 58a6a36 | 2018-08-03 11:22:29 +0200 | [diff] [blame] | 313 | vc4_state->src_x = state->src.x1 >> 16; |
| 314 | vc4_state->src_y = state->src.y1 >> 16; |
| 315 | vc4_state->src_w[0] = (state->src.x2 - state->src.x1) >> 16; |
| 316 | vc4_state->src_h[0] = (state->src.y2 - state->src.y1) >> 16; |
| Eric Anholt | f863e35 | 2015-12-28 14:45:25 -0800 | [diff] [blame] | 317 | |
| Boris Brezillon | 58a6a36 | 2018-08-03 11:22:29 +0200 | [diff] [blame] | 318 | vc4_state->crtc_x = state->dst.x1; |
| 319 | vc4_state->crtc_y = state->dst.y1; |
| 320 | vc4_state->crtc_w = state->dst.x2 - state->dst.x1; |
| 321 | vc4_state->crtc_h = state->dst.y2 - state->dst.y1; |
| Eric Anholt | f863e35 | 2015-12-28 14:45:25 -0800 | [diff] [blame] | 322 | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 323 | vc4_state->x_scaling[0] = vc4_get_scaling_mode(vc4_state->src_w[0], |
| 324 | vc4_state->crtc_w); |
| 325 | vc4_state->y_scaling[0] = vc4_get_scaling_mode(vc4_state->src_h[0], |
| 326 | vc4_state->crtc_h); |
| 327 | |
| Boris Brezillon | 658d8cb | 2018-07-25 14:29:07 +0200 | [diff] [blame] | 328 | vc4_state->is_unity = (vc4_state->x_scaling[0] == VC4_SCALING_NONE && |
| 329 | vc4_state->y_scaling[0] == VC4_SCALING_NONE); |
| 330 | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 331 | if (num_planes > 1) { |
| 332 | vc4_state->is_yuv = true; |
| 333 | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 334 | vc4_state->src_w[1] = vc4_state->src_w[0] / h_subsample; |
| 335 | vc4_state->src_h[1] = vc4_state->src_h[0] / v_subsample; |
| 336 | |
| 337 | vc4_state->x_scaling[1] = |
| 338 | vc4_get_scaling_mode(vc4_state->src_w[1], |
| 339 | vc4_state->crtc_w); |
| 340 | vc4_state->y_scaling[1] = |
| 341 | vc4_get_scaling_mode(vc4_state->src_h[1], |
| 342 | vc4_state->crtc_h); |
| 343 | |
| Boris Brezillon | 0560054 | 2018-11-09 11:26:32 +0100 | [diff] [blame] | 344 | /* YUV conversion requires that horizontal scaling be enabled |
| 345 | * on the UV plane even if vc4_get_scaling_mode() returned |
| 346 | * VC4_SCALING_NONE (which can happen when the down-scaling |
| 347 | * ratio is 0.5). Let's force it to VC4_SCALING_PPF in this |
| 348 | * case. |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 349 | */ |
| Boris Brezillon | 0560054 | 2018-11-09 11:26:32 +0100 | [diff] [blame] | 350 | if (vc4_state->x_scaling[1] == VC4_SCALING_NONE) |
| 351 | vc4_state->x_scaling[1] = VC4_SCALING_PPF; |
| Boris Brezillon | a6a0091 | 2018-07-24 15:36:01 +0200 | [diff] [blame] | 352 | } else { |
| Boris Brezillon | 2b02a05 | 2018-10-09 15:24:46 +0200 | [diff] [blame] | 353 | vc4_state->is_yuv = false; |
| Boris Brezillon | a6a0091 | 2018-07-24 15:36:01 +0200 | [diff] [blame] | 354 | vc4_state->x_scaling[1] = VC4_SCALING_NONE; |
| 355 | vc4_state->y_scaling[1] = VC4_SCALING_NONE; |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 356 | } |
| 357 | |
| Eric Anholt | 5c67999 | 2015-12-28 14:34:44 -0800 | [diff] [blame] | 358 | return 0; |
| 359 | } |
| 360 | |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 361 | static void vc4_write_tpz(struct vc4_plane_state *vc4_state, u32 src, u32 dst) |
| 362 | { |
| 363 | u32 scale, recip; |
| 364 | |
| 365 | scale = (1 << 16) * src / dst; |
| 366 | |
| 367 | /* The specs note that while the reciprocal would be defined |
| 368 | * as (1<<32)/scale, ~0 is close enough. |
| 369 | */ |
| 370 | recip = ~0 / scale; |
| 371 | |
| 372 | vc4_dlist_write(vc4_state, |
| 373 | VC4_SET_FIELD(scale, SCALER_TPZ0_SCALE) | |
| 374 | VC4_SET_FIELD(0, SCALER_TPZ0_IPHASE)); |
| 375 | vc4_dlist_write(vc4_state, |
| 376 | VC4_SET_FIELD(recip, SCALER_TPZ1_RECIP)); |
| 377 | } |
| 378 | |
| 379 | static void vc4_write_ppf(struct vc4_plane_state *vc4_state, u32 src, u32 dst) |
| 380 | { |
| 381 | u32 scale = (1 << 16) * src / dst; |
| 382 | |
| 383 | vc4_dlist_write(vc4_state, |
| 384 | SCALER_PPF_AGC | |
| 385 | VC4_SET_FIELD(scale, SCALER_PPF_SCALE) | |
| 386 | VC4_SET_FIELD(0, SCALER_PPF_IPHASE)); |
| 387 | } |
| 388 | |
| 389 | static u32 vc4_lbm_size(struct drm_plane_state *state) |
| 390 | { |
| 391 | struct vc4_plane_state *vc4_state = to_vc4_plane_state(state); |
| 392 | /* This is the worst case number. One of the two sizes will |
| 393 | * be used depending on the scaling configuration. |
| 394 | */ |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 395 | u32 pix_per_line = max(vc4_state->src_w[0], (u32)vc4_state->crtc_w); |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 396 | u32 lbm; |
| 397 | |
| Boris Brezillon | b2e554d | 2018-11-30 10:02:49 +0100 | [diff] [blame] | 398 | /* LBM is not needed when there's no vertical scaling. */ |
| 399 | if (vc4_state->y_scaling[0] == VC4_SCALING_NONE && |
| 400 | vc4_state->y_scaling[1] == VC4_SCALING_NONE) |
| 401 | return 0; |
| 402 | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 403 | if (!vc4_state->is_yuv) { |
| Boris Brezillon | b2e554d | 2018-11-30 10:02:49 +0100 | [diff] [blame] | 404 | if (vc4_state->y_scaling[0] == VC4_SCALING_TPZ) |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 405 | lbm = pix_per_line * 8; |
| 406 | else { |
| 407 | /* In special cases, this multiplier might be 12. */ |
| 408 | lbm = pix_per_line * 16; |
| 409 | } |
| 410 | } else { |
| 411 | /* There are cases for this going down to a multiplier |
| 412 | * of 2, but according to the firmware source, the |
| 413 | * table in the docs is somewhat wrong. |
| 414 | */ |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 415 | lbm = pix_per_line * 16; |
| 416 | } |
| 417 | |
| 418 | lbm = roundup(lbm, 32); |
| 419 | |
| 420 | return lbm; |
| 421 | } |
| 422 | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 423 | static void vc4_write_scaling_parameters(struct drm_plane_state *state, |
| 424 | int channel) |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 425 | { |
| 426 | struct vc4_plane_state *vc4_state = to_vc4_plane_state(state); |
| 427 | |
| 428 | /* Ch0 H-PPF Word 0: Scaling Parameters */ |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 429 | if (vc4_state->x_scaling[channel] == VC4_SCALING_PPF) { |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 430 | vc4_write_ppf(vc4_state, |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 431 | vc4_state->src_w[channel], vc4_state->crtc_w); |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | /* Ch0 V-PPF Words 0-1: Scaling Parameters, Context */ |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 435 | if (vc4_state->y_scaling[channel] == VC4_SCALING_PPF) { |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 436 | vc4_write_ppf(vc4_state, |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 437 | vc4_state->src_h[channel], vc4_state->crtc_h); |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 438 | vc4_dlist_write(vc4_state, 0xc0c0c0c0); |
| 439 | } |
| 440 | |
| 441 | /* Ch0 H-TPZ Words 0-1: Scaling Parameters, Recip */ |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 442 | if (vc4_state->x_scaling[channel] == VC4_SCALING_TPZ) { |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 443 | vc4_write_tpz(vc4_state, |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 444 | vc4_state->src_w[channel], vc4_state->crtc_w); |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | /* Ch0 V-TPZ Words 0-2: Scaling Parameters, Recip, Context */ |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 448 | if (vc4_state->y_scaling[channel] == VC4_SCALING_TPZ) { |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 449 | vc4_write_tpz(vc4_state, |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 450 | vc4_state->src_h[channel], vc4_state->crtc_h); |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 451 | vc4_dlist_write(vc4_state, 0xc0c0c0c0); |
| 452 | } |
| 453 | } |
| Eric Anholt | 5c67999 | 2015-12-28 14:34:44 -0800 | [diff] [blame] | 454 | |
| Boris Brezillon | 0a038c1 | 2018-11-30 10:02:50 +0100 | [diff] [blame^] | 455 | static int vc4_plane_allocate_lbm(struct drm_plane_state *state) |
| 456 | { |
| 457 | struct vc4_dev *vc4 = to_vc4_dev(state->plane->dev); |
| 458 | struct vc4_plane_state *vc4_state = to_vc4_plane_state(state); |
| 459 | unsigned long irqflags; |
| 460 | u32 lbm_size; |
| 461 | |
| 462 | lbm_size = vc4_lbm_size(state); |
| 463 | if (!lbm_size) |
| 464 | return 0; |
| 465 | |
| 466 | if (WARN_ON(!vc4_state->lbm_offset)) |
| 467 | return -EINVAL; |
| 468 | |
| 469 | /* Allocate the LBM memory that the HVS will use for temporary |
| 470 | * storage due to our scaling/format conversion. |
| 471 | */ |
| 472 | if (!vc4_state->lbm.allocated) { |
| 473 | int ret; |
| 474 | |
| 475 | spin_lock_irqsave(&vc4->hvs->mm_lock, irqflags); |
| 476 | ret = drm_mm_insert_node_generic(&vc4->hvs->lbm_mm, |
| 477 | &vc4_state->lbm, |
| 478 | lbm_size, 32, 0, 0); |
| 479 | spin_unlock_irqrestore(&vc4->hvs->mm_lock, irqflags); |
| 480 | |
| 481 | if (ret) |
| 482 | return ret; |
| 483 | } else { |
| 484 | WARN_ON_ONCE(lbm_size != vc4_state->lbm.size); |
| 485 | } |
| 486 | |
| 487 | vc4_state->dlist[vc4_state->lbm_offset] = vc4_state->lbm.start; |
| 488 | |
| 489 | return 0; |
| 490 | } |
| 491 | |
| Eric Anholt | 5c67999 | 2015-12-28 14:34:44 -0800 | [diff] [blame] | 492 | /* Writes out a full display list for an active plane to the plane's |
| 493 | * private dlist state. |
| 494 | */ |
| 495 | static int vc4_plane_mode_set(struct drm_plane *plane, |
| 496 | struct drm_plane_state *state) |
| 497 | { |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 498 | struct vc4_dev *vc4 = to_vc4_dev(plane->dev); |
| Eric Anholt | 5c67999 | 2015-12-28 14:34:44 -0800 | [diff] [blame] | 499 | struct vc4_plane_state *vc4_state = to_vc4_plane_state(state); |
| 500 | struct drm_framebuffer *fb = state->fb; |
| Eric Anholt | 5c67999 | 2015-12-28 14:34:44 -0800 | [diff] [blame] | 501 | u32 ctl0_offset = vc4_state->dlist_count; |
| Ville Syrjälä | 438b74a | 2016-12-14 23:32:55 +0200 | [diff] [blame] | 502 | const struct hvs_format *format = vc4_get_hvs_format(fb->format->format); |
| Dave Stevenson | e065a8d | 2018-03-16 15:04:35 -0700 | [diff] [blame] | 503 | u64 base_format_mod = fourcc_mod_broadcom_mod(fb->modifier); |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 504 | int num_planes = drm_format_num_planes(format->drm); |
| Boris Brezillon | a65511b1 | 2018-08-03 11:22:30 +0200 | [diff] [blame] | 505 | u32 h_subsample, v_subsample; |
| Stefan Schake | 22445f0 | 2018-04-20 17:09:54 -0700 | [diff] [blame] | 506 | bool mix_plane_alpha; |
| Stefan Schake | 3d67b68 | 2018-03-09 01:53:35 +0100 | [diff] [blame] | 507 | bool covers_screen; |
| Eric Anholt | 98830d91 | 2017-06-07 17:13:35 -0700 | [diff] [blame] | 508 | u32 scl0, scl1, pitch0; |
| Boris Brezillon | 0a038c1 | 2018-11-30 10:02:50 +0100 | [diff] [blame^] | 509 | u32 tiling; |
| Dave Stevenson | e065a8d | 2018-03-16 15:04:35 -0700 | [diff] [blame] | 510 | u32 hvs_format = format->hvs; |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 511 | int ret, i; |
| Eric Anholt | 5c67999 | 2015-12-28 14:34:44 -0800 | [diff] [blame] | 512 | |
| 513 | ret = vc4_plane_setup_clipping_and_scaling(state); |
| 514 | if (ret) |
| 515 | return ret; |
| 516 | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 517 | /* SCL1 is used for Cb/Cr scaling of planar formats. For RGB |
| 518 | * and 4:4:4, scl1 should be set to scl0 so both channels of |
| 519 | * the scaler do the same thing. For YUV, the Y plane needs |
| 520 | * to be put in channel 1 and Cb/Cr in channel 0, so we swap |
| 521 | * the scl fields here. |
| 522 | */ |
| 523 | if (num_planes == 1) { |
| Boris Brezillon | 9a0e980 | 2018-05-07 14:13:03 +0200 | [diff] [blame] | 524 | scl0 = vc4_get_scl_field(state, 0); |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 525 | scl1 = scl0; |
| 526 | } else { |
| 527 | scl0 = vc4_get_scl_field(state, 1); |
| 528 | scl1 = vc4_get_scl_field(state, 0); |
| 529 | } |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 530 | |
| Boris Brezillon | a65511b1 | 2018-08-03 11:22:30 +0200 | [diff] [blame] | 531 | h_subsample = drm_format_horz_chroma_subsampling(format->drm); |
| 532 | v_subsample = drm_format_vert_chroma_subsampling(format->drm); |
| 533 | |
| Dave Stevenson | e065a8d | 2018-03-16 15:04:35 -0700 | [diff] [blame] | 534 | switch (base_format_mod) { |
| Eric Anholt | 98830d91 | 2017-06-07 17:13:35 -0700 | [diff] [blame] | 535 | case DRM_FORMAT_MOD_LINEAR: |
| 536 | tiling = SCALER_CTL0_TILING_LINEAR; |
| 537 | pitch0 = VC4_SET_FIELD(fb->pitches[0], SCALER_SRC_PITCH); |
| Boris Brezillon | a65511b1 | 2018-08-03 11:22:30 +0200 | [diff] [blame] | 538 | |
| 539 | /* Adjust the base pointer to the first pixel to be scanned |
| 540 | * out. |
| 541 | */ |
| 542 | for (i = 0; i < num_planes; i++) { |
| 543 | vc4_state->offsets[i] += vc4_state->src_y / |
| 544 | (i ? v_subsample : 1) * |
| 545 | fb->pitches[i]; |
| 546 | vc4_state->offsets[i] += vc4_state->src_x / |
| 547 | (i ? h_subsample : 1) * |
| 548 | fb->format->cpp[i]; |
| 549 | } |
| Boris Brezillon | 3e40741 | 2018-08-03 11:22:31 +0200 | [diff] [blame] | 550 | |
| Eric Anholt | 98830d91 | 2017-06-07 17:13:35 -0700 | [diff] [blame] | 551 | break; |
| Eric Anholt | 652badb | 2017-09-27 12:32:09 -0700 | [diff] [blame] | 552 | |
| 553 | case DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED: { |
| Eric Anholt | 652badb | 2017-09-27 12:32:09 -0700 | [diff] [blame] | 554 | u32 tile_size_shift = 12; /* T tiles are 4kb */ |
| Boris Brezillon | 3e40741 | 2018-08-03 11:22:31 +0200 | [diff] [blame] | 555 | /* Whole-tile offsets, mostly for setting the pitch. */ |
| 556 | u32 tile_w_shift = fb->format->cpp[0] == 2 ? 6 : 5; |
| Eric Anholt | 652badb | 2017-09-27 12:32:09 -0700 | [diff] [blame] | 557 | u32 tile_h_shift = 5; /* 16 and 32bpp are 32 pixels high */ |
| Boris Brezillon | 3e40741 | 2018-08-03 11:22:31 +0200 | [diff] [blame] | 558 | u32 tile_w_mask = (1 << tile_w_shift) - 1; |
| 559 | /* The height mask on 32-bit-per-pixel tiles is 63, i.e. twice |
| 560 | * the height (in pixels) of a 4k tile. |
| 561 | */ |
| 562 | u32 tile_h_mask = (2 << tile_h_shift) - 1; |
| 563 | /* For T-tiled, the FB pitch is "how many bytes from one row to |
| 564 | * the next, such that |
| 565 | * |
| 566 | * pitch * tile_h == tile_size * tiles_per_row |
| 567 | */ |
| Eric Anholt | 652badb | 2017-09-27 12:32:09 -0700 | [diff] [blame] | 568 | u32 tiles_w = fb->pitches[0] >> (tile_size_shift - tile_h_shift); |
| Boris Brezillon | 3e40741 | 2018-08-03 11:22:31 +0200 | [diff] [blame] | 569 | u32 tiles_l = vc4_state->src_x >> tile_w_shift; |
| 570 | u32 tiles_r = tiles_w - tiles_l; |
| 571 | u32 tiles_t = vc4_state->src_y >> tile_h_shift; |
| 572 | /* Intra-tile offsets, which modify the base address (the |
| 573 | * SCALER_PITCH0_TILE_Y_OFFSET tells HVS how to walk from that |
| 574 | * base address). |
| 575 | */ |
| 576 | u32 tile_y = (vc4_state->src_y >> 4) & 1; |
| 577 | u32 subtile_y = (vc4_state->src_y >> 2) & 3; |
| 578 | u32 utile_y = vc4_state->src_y & 3; |
| 579 | u32 x_off = vc4_state->src_x & tile_w_mask; |
| 580 | u32 y_off = vc4_state->src_y & tile_h_mask; |
| Eric Anholt | 652badb | 2017-09-27 12:32:09 -0700 | [diff] [blame] | 581 | |
| Eric Anholt | 98830d91 | 2017-06-07 17:13:35 -0700 | [diff] [blame] | 582 | tiling = SCALER_CTL0_TILING_256B_OR_T; |
| Boris Brezillon | 3e40741 | 2018-08-03 11:22:31 +0200 | [diff] [blame] | 583 | pitch0 = (VC4_SET_FIELD(x_off, SCALER_PITCH0_SINK_PIX) | |
| 584 | VC4_SET_FIELD(y_off, SCALER_PITCH0_TILE_Y_OFFSET) | |
| 585 | VC4_SET_FIELD(tiles_l, SCALER_PITCH0_TILE_WIDTH_L) | |
| 586 | VC4_SET_FIELD(tiles_r, SCALER_PITCH0_TILE_WIDTH_R)); |
| 587 | vc4_state->offsets[0] += tiles_t * (tiles_w << tile_size_shift); |
| 588 | vc4_state->offsets[0] += subtile_y << 8; |
| 589 | vc4_state->offsets[0] += utile_y << 4; |
| Eric Anholt | 98830d91 | 2017-06-07 17:13:35 -0700 | [diff] [blame] | 590 | |
| Boris Brezillon | 3e40741 | 2018-08-03 11:22:31 +0200 | [diff] [blame] | 591 | /* Rows of tiles alternate left-to-right and right-to-left. */ |
| 592 | if (tiles_t & 1) { |
| 593 | pitch0 |= SCALER_PITCH0_TILE_INITIAL_LINE_DIR; |
| 594 | vc4_state->offsets[0] += (tiles_w - tiles_l) << |
| 595 | tile_size_shift; |
| 596 | vc4_state->offsets[0] -= (1 + !tile_y) << 10; |
| 597 | } else { |
| 598 | vc4_state->offsets[0] += tiles_l << tile_size_shift; |
| 599 | vc4_state->offsets[0] += tile_y << 10; |
| 600 | } |
| 601 | |
| Eric Anholt | 98830d91 | 2017-06-07 17:13:35 -0700 | [diff] [blame] | 602 | break; |
| Eric Anholt | 652badb | 2017-09-27 12:32:09 -0700 | [diff] [blame] | 603 | } |
| 604 | |
| Dave Stevenson | e065a8d | 2018-03-16 15:04:35 -0700 | [diff] [blame] | 605 | case DRM_FORMAT_MOD_BROADCOM_SAND64: |
| 606 | case DRM_FORMAT_MOD_BROADCOM_SAND128: |
| 607 | case DRM_FORMAT_MOD_BROADCOM_SAND256: { |
| 608 | uint32_t param = fourcc_mod_broadcom_param(fb->modifier); |
| 609 | |
| 610 | /* Column-based NV12 or RGBA. |
| 611 | */ |
| 612 | if (fb->format->num_planes > 1) { |
| 613 | if (hvs_format != HVS_PIXEL_FORMAT_YCBCR_YUV420_2PLANE) { |
| 614 | DRM_DEBUG_KMS("SAND format only valid for NV12/21"); |
| 615 | return -EINVAL; |
| 616 | } |
| 617 | hvs_format = HVS_PIXEL_FORMAT_H264; |
| 618 | } else { |
| 619 | if (base_format_mod == DRM_FORMAT_MOD_BROADCOM_SAND256) { |
| 620 | DRM_DEBUG_KMS("SAND256 format only valid for H.264"); |
| 621 | return -EINVAL; |
| 622 | } |
| 623 | } |
| 624 | |
| 625 | switch (base_format_mod) { |
| 626 | case DRM_FORMAT_MOD_BROADCOM_SAND64: |
| 627 | tiling = SCALER_CTL0_TILING_64B; |
| 628 | break; |
| 629 | case DRM_FORMAT_MOD_BROADCOM_SAND128: |
| 630 | tiling = SCALER_CTL0_TILING_128B; |
| 631 | break; |
| 632 | case DRM_FORMAT_MOD_BROADCOM_SAND256: |
| 633 | tiling = SCALER_CTL0_TILING_256B_OR_T; |
| 634 | break; |
| 635 | default: |
| 636 | break; |
| 637 | } |
| 638 | |
| 639 | if (param > SCALER_TILE_HEIGHT_MASK) { |
| 640 | DRM_DEBUG_KMS("SAND height too large (%d)\n", param); |
| 641 | return -EINVAL; |
| 642 | } |
| 643 | |
| 644 | pitch0 = VC4_SET_FIELD(param, SCALER_TILE_HEIGHT); |
| 645 | break; |
| 646 | } |
| 647 | |
| Eric Anholt | 98830d91 | 2017-06-07 17:13:35 -0700 | [diff] [blame] | 648 | default: |
| 649 | DRM_DEBUG_KMS("Unsupported FB tiling flag 0x%16llx", |
| 650 | (long long)fb->modifier); |
| 651 | return -EINVAL; |
| 652 | } |
| 653 | |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 654 | /* Control word */ |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 655 | vc4_dlist_write(vc4_state, |
| 656 | SCALER_CTL0_VALID | |
| Maxime Ripard | 3257ec7 | 2018-05-17 15:37:59 +0200 | [diff] [blame] | 657 | VC4_SET_FIELD(SCALER_CTL0_RGBA_EXPAND_ROUND, SCALER_CTL0_RGBA_EXPAND) | |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 658 | (format->pixel_order << SCALER_CTL0_ORDER_SHIFT) | |
| Dave Stevenson | e065a8d | 2018-03-16 15:04:35 -0700 | [diff] [blame] | 659 | (hvs_format << SCALER_CTL0_PIXEL_FORMAT_SHIFT) | |
| Eric Anholt | 98830d91 | 2017-06-07 17:13:35 -0700 | [diff] [blame] | 660 | VC4_SET_FIELD(tiling, SCALER_CTL0_TILING) | |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 661 | (vc4_state->is_unity ? SCALER_CTL0_UNITY : 0) | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 662 | VC4_SET_FIELD(scl0, SCALER_CTL0_SCL0) | |
| 663 | VC4_SET_FIELD(scl1, SCALER_CTL0_SCL1)); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 664 | |
| 665 | /* Position Word 0: Image Positions and Alpha Value */ |
| Eric Anholt | 6674a90 | 2015-12-30 11:50:22 -0800 | [diff] [blame] | 666 | vc4_state->pos0_offset = vc4_state->dlist_count; |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 667 | vc4_dlist_write(vc4_state, |
| Stefan Schake | 22445f0 | 2018-04-20 17:09:54 -0700 | [diff] [blame] | 668 | VC4_SET_FIELD(state->alpha >> 8, SCALER_POS0_FIXED_ALPHA) | |
| Eric Anholt | 5c67999 | 2015-12-28 14:34:44 -0800 | [diff] [blame] | 669 | VC4_SET_FIELD(vc4_state->crtc_x, SCALER_POS0_START_X) | |
| 670 | VC4_SET_FIELD(vc4_state->crtc_y, SCALER_POS0_START_Y)); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 671 | |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 672 | /* Position Word 1: Scaled Image Dimensions. */ |
| 673 | if (!vc4_state->is_unity) { |
| 674 | vc4_dlist_write(vc4_state, |
| 675 | VC4_SET_FIELD(vc4_state->crtc_w, |
| 676 | SCALER_POS1_SCL_WIDTH) | |
| 677 | VC4_SET_FIELD(vc4_state->crtc_h, |
| 678 | SCALER_POS1_SCL_HEIGHT)); |
| 679 | } |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 680 | |
| Stefan Schake | 22445f0 | 2018-04-20 17:09:54 -0700 | [diff] [blame] | 681 | /* Don't waste cycles mixing with plane alpha if the set alpha |
| 682 | * is opaque or there is no per-pixel alpha information. |
| 683 | * In any case we use the alpha property value as the fixed alpha. |
| 684 | */ |
| 685 | mix_plane_alpha = state->alpha != DRM_BLEND_ALPHA_OPAQUE && |
| 686 | fb->format->has_alpha; |
| 687 | |
| Stefan Schake | 05202c2 | 2018-03-09 01:53:34 +0100 | [diff] [blame] | 688 | /* Position Word 2: Source Image Size, Alpha */ |
| Eric Anholt | 6674a90 | 2015-12-30 11:50:22 -0800 | [diff] [blame] | 689 | vc4_state->pos2_offset = vc4_state->dlist_count; |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 690 | vc4_dlist_write(vc4_state, |
| Maxime Ripard | 124e5da | 2017-12-22 15:31:27 +0100 | [diff] [blame] | 691 | VC4_SET_FIELD(fb->format->has_alpha ? |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 692 | SCALER_POS2_ALPHA_MODE_PIPELINE : |
| 693 | SCALER_POS2_ALPHA_MODE_FIXED, |
| 694 | SCALER_POS2_ALPHA_MODE) | |
| Stefan Schake | 22445f0 | 2018-04-20 17:09:54 -0700 | [diff] [blame] | 695 | (mix_plane_alpha ? SCALER_POS2_ALPHA_MIX : 0) | |
| Stefan Schake | 05202c2 | 2018-03-09 01:53:34 +0100 | [diff] [blame] | 696 | (fb->format->has_alpha ? SCALER_POS2_ALPHA_PREMULT : 0) | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 697 | VC4_SET_FIELD(vc4_state->src_w[0], SCALER_POS2_WIDTH) | |
| 698 | VC4_SET_FIELD(vc4_state->src_h[0], SCALER_POS2_HEIGHT)); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 699 | |
| 700 | /* Position Word 3: Context. Written by the HVS. */ |
| 701 | vc4_dlist_write(vc4_state, 0xc0c0c0c0); |
| 702 | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 703 | |
| 704 | /* Pointer Word 0/1/2: RGB / Y / Cb / Cr Pointers |
| 705 | * |
| 706 | * The pointers may be any byte address. |
| 707 | */ |
| Eric Anholt | 6674a90 | 2015-12-30 11:50:22 -0800 | [diff] [blame] | 708 | vc4_state->ptr0_offset = vc4_state->dlist_count; |
| Dave Stevenson | 090cb0c | 2017-11-16 14:22:30 +0000 | [diff] [blame] | 709 | for (i = 0; i < num_planes; i++) |
| 710 | vc4_dlist_write(vc4_state, vc4_state->offsets[i]); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 711 | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 712 | /* Pointer Context Word 0/1/2: Written by the HVS */ |
| 713 | for (i = 0; i < num_planes; i++) |
| 714 | vc4_dlist_write(vc4_state, 0xc0c0c0c0); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 715 | |
| Eric Anholt | 98830d91 | 2017-06-07 17:13:35 -0700 | [diff] [blame] | 716 | /* Pitch word 0 */ |
| 717 | vc4_dlist_write(vc4_state, pitch0); |
| 718 | |
| 719 | /* Pitch word 1/2 */ |
| 720 | for (i = 1; i < num_planes; i++) { |
| Dave Stevenson | e065a8d | 2018-03-16 15:04:35 -0700 | [diff] [blame] | 721 | if (hvs_format != HVS_PIXEL_FORMAT_H264) { |
| 722 | vc4_dlist_write(vc4_state, |
| 723 | VC4_SET_FIELD(fb->pitches[i], |
| 724 | SCALER_SRC_PITCH)); |
| 725 | } else { |
| 726 | vc4_dlist_write(vc4_state, pitch0); |
| 727 | } |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 728 | } |
| 729 | |
| 730 | /* Colorspace conversion words */ |
| 731 | if (vc4_state->is_yuv) { |
| 732 | vc4_dlist_write(vc4_state, SCALER_CSC0_ITR_R_601_5); |
| 733 | vc4_dlist_write(vc4_state, SCALER_CSC1_ITR_R_601_5); |
| 734 | vc4_dlist_write(vc4_state, SCALER_CSC2_ITR_R_601_5); |
| 735 | } |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 736 | |
| Boris Brezillon | 0a038c1 | 2018-11-30 10:02:50 +0100 | [diff] [blame^] | 737 | vc4_state->lbm_offset = 0; |
| 738 | |
| Boris Brezillon | 658d8cb | 2018-07-25 14:29:07 +0200 | [diff] [blame] | 739 | if (vc4_state->x_scaling[0] != VC4_SCALING_NONE || |
| 740 | vc4_state->x_scaling[1] != VC4_SCALING_NONE || |
| 741 | vc4_state->y_scaling[0] != VC4_SCALING_NONE || |
| 742 | vc4_state->y_scaling[1] != VC4_SCALING_NONE) { |
| Boris Brezillon | 0a038c1 | 2018-11-30 10:02:50 +0100 | [diff] [blame^] | 743 | /* Reserve a slot for the LBM Base Address. The real value will |
| 744 | * be set when calling vc4_plane_allocate_lbm(). |
| 745 | */ |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 746 | if (vc4_state->y_scaling[0] != VC4_SCALING_NONE || |
| Boris Brezillon | 0a038c1 | 2018-11-30 10:02:50 +0100 | [diff] [blame^] | 747 | vc4_state->y_scaling[1] != VC4_SCALING_NONE) |
| 748 | vc4_state->lbm_offset = vc4_state->dlist_count++; |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 749 | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 750 | if (num_planes > 1) { |
| 751 | /* Emit Cb/Cr as channel 0 and Y as channel |
| 752 | * 1. This matches how we set up scl0/scl1 |
| 753 | * above. |
| 754 | */ |
| 755 | vc4_write_scaling_parameters(state, 1); |
| 756 | } |
| 757 | vc4_write_scaling_parameters(state, 0); |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 758 | |
| 759 | /* If any PPF setup was done, then all the kernel |
| 760 | * pointers get uploaded. |
| 761 | */ |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 762 | if (vc4_state->x_scaling[0] == VC4_SCALING_PPF || |
| 763 | vc4_state->y_scaling[0] == VC4_SCALING_PPF || |
| 764 | vc4_state->x_scaling[1] == VC4_SCALING_PPF || |
| 765 | vc4_state->y_scaling[1] == VC4_SCALING_PPF) { |
| Eric Anholt | 21af94c | 2015-10-20 16:06:57 +0100 | [diff] [blame] | 766 | u32 kernel = VC4_SET_FIELD(vc4->hvs->mitchell_netravali_filter.start, |
| 767 | SCALER_PPF_KERNEL_OFFSET); |
| 768 | |
| 769 | /* HPPF plane 0 */ |
| 770 | vc4_dlist_write(vc4_state, kernel); |
| 771 | /* VPPF plane 0 */ |
| 772 | vc4_dlist_write(vc4_state, kernel); |
| 773 | /* HPPF plane 1 */ |
| 774 | vc4_dlist_write(vc4_state, kernel); |
| 775 | /* VPPF plane 1 */ |
| 776 | vc4_dlist_write(vc4_state, kernel); |
| 777 | } |
| 778 | } |
| 779 | |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 780 | vc4_state->dlist[ctl0_offset] |= |
| 781 | VC4_SET_FIELD(vc4_state->dlist_count, SCALER_CTL0_SIZE); |
| 782 | |
| Stefan Schake | 3d67b68 | 2018-03-09 01:53:35 +0100 | [diff] [blame] | 783 | /* crtc_* are already clipped coordinates. */ |
| 784 | covers_screen = vc4_state->crtc_x == 0 && vc4_state->crtc_y == 0 && |
| 785 | vc4_state->crtc_w == state->crtc->mode.hdisplay && |
| 786 | vc4_state->crtc_h == state->crtc->mode.vdisplay; |
| 787 | /* Background fill might be necessary when the plane has per-pixel |
| Stefan Schake | 22445f0 | 2018-04-20 17:09:54 -0700 | [diff] [blame] | 788 | * alpha content or a non-opaque plane alpha and could blend from the |
| 789 | * background or does not cover the entire screen. |
| Stefan Schake | 3d67b68 | 2018-03-09 01:53:35 +0100 | [diff] [blame] | 790 | */ |
| Stefan Schake | 22445f0 | 2018-04-20 17:09:54 -0700 | [diff] [blame] | 791 | vc4_state->needs_bg_fill = fb->format->has_alpha || !covers_screen || |
| 792 | state->alpha != DRM_BLEND_ALPHA_OPAQUE; |
| Stefan Schake | 3d67b68 | 2018-03-09 01:53:35 +0100 | [diff] [blame] | 793 | |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 794 | return 0; |
| 795 | } |
| 796 | |
| 797 | /* If a modeset involves changing the setup of a plane, the atomic |
| 798 | * infrastructure will call this to validate a proposed plane setup. |
| 799 | * However, if a plane isn't getting updated, this (and the |
| 800 | * corresponding vc4_plane_atomic_update) won't get called. Thus, we |
| 801 | * compute the dlist here and have all active plane dlists get updated |
| 802 | * in the CRTC's flush. |
| 803 | */ |
| 804 | static int vc4_plane_atomic_check(struct drm_plane *plane, |
| 805 | struct drm_plane_state *state) |
| 806 | { |
| 807 | struct vc4_plane_state *vc4_state = to_vc4_plane_state(state); |
| Boris Brezillon | 0a038c1 | 2018-11-30 10:02:50 +0100 | [diff] [blame^] | 808 | int ret; |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 809 | |
| 810 | vc4_state->dlist_count = 0; |
| 811 | |
| Boris Brezillon | 0a038c1 | 2018-11-30 10:02:50 +0100 | [diff] [blame^] | 812 | if (!plane_enabled(state)) |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 813 | return 0; |
| Boris Brezillon | 0a038c1 | 2018-11-30 10:02:50 +0100 | [diff] [blame^] | 814 | |
| 815 | ret = vc4_plane_mode_set(plane, state); |
| 816 | if (ret) |
| 817 | return ret; |
| 818 | |
| 819 | return vc4_plane_allocate_lbm(state); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 820 | } |
| 821 | |
| 822 | static void vc4_plane_atomic_update(struct drm_plane *plane, |
| 823 | struct drm_plane_state *old_state) |
| 824 | { |
| 825 | /* No contents here. Since we don't know where in the CRTC's |
| 826 | * dlist we should be stored, our dlist is uploaded to the |
| 827 | * hardware with vc4_plane_write_dlist() at CRTC atomic_flush |
| 828 | * time. |
| 829 | */ |
| 830 | } |
| 831 | |
| 832 | u32 vc4_plane_write_dlist(struct drm_plane *plane, u32 __iomem *dlist) |
| 833 | { |
| 834 | struct vc4_plane_state *vc4_state = to_vc4_plane_state(plane->state); |
| 835 | int i; |
| 836 | |
| Eric Anholt | b501bac | 2015-11-30 12:34:01 -0800 | [diff] [blame] | 837 | vc4_state->hw_dlist = dlist; |
| 838 | |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 839 | /* Can't memcpy_toio() because it needs to be 32-bit writes. */ |
| 840 | for (i = 0; i < vc4_state->dlist_count; i++) |
| 841 | writel(vc4_state->dlist[i], &dlist[i]); |
| 842 | |
| 843 | return vc4_state->dlist_count; |
| 844 | } |
| 845 | |
| Daniel Vetter | 2f196b7 | 2016-06-02 16:21:44 +0200 | [diff] [blame] | 846 | u32 vc4_plane_dlist_size(const struct drm_plane_state *state) |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 847 | { |
| Daniel Vetter | 2f196b7 | 2016-06-02 16:21:44 +0200 | [diff] [blame] | 848 | const struct vc4_plane_state *vc4_state = |
| 849 | container_of(state, typeof(*vc4_state), base); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 850 | |
| 851 | return vc4_state->dlist_count; |
| 852 | } |
| 853 | |
| Eric Anholt | b501bac | 2015-11-30 12:34:01 -0800 | [diff] [blame] | 854 | /* Updates the plane to immediately (well, once the FIFO needs |
| 855 | * refilling) scan out from at a new framebuffer. |
| 856 | */ |
| 857 | void vc4_plane_async_set_fb(struct drm_plane *plane, struct drm_framebuffer *fb) |
| 858 | { |
| 859 | struct vc4_plane_state *vc4_state = to_vc4_plane_state(plane->state); |
| 860 | struct drm_gem_cma_object *bo = drm_fb_cma_get_gem_obj(fb, 0); |
| 861 | uint32_t addr; |
| 862 | |
| 863 | /* We're skipping the address adjustment for negative origin, |
| 864 | * because this is only called on the primary plane. |
| 865 | */ |
| 866 | WARN_ON_ONCE(plane->state->crtc_x < 0 || plane->state->crtc_y < 0); |
| 867 | addr = bo->paddr + fb->offsets[0]; |
| 868 | |
| 869 | /* Write the new address into the hardware immediately. The |
| 870 | * scanout will start from this address as soon as the FIFO |
| 871 | * needs to refill with pixels. |
| 872 | */ |
| Eric Anholt | 6674a90 | 2015-12-30 11:50:22 -0800 | [diff] [blame] | 873 | writel(addr, &vc4_state->hw_dlist[vc4_state->ptr0_offset]); |
| Eric Anholt | b501bac | 2015-11-30 12:34:01 -0800 | [diff] [blame] | 874 | |
| 875 | /* Also update the CPU-side dlist copy, so that any later |
| 876 | * atomic updates that don't do a new modeset on our plane |
| 877 | * also use our updated address. |
| 878 | */ |
| Eric Anholt | 6674a90 | 2015-12-30 11:50:22 -0800 | [diff] [blame] | 879 | vc4_state->dlist[vc4_state->ptr0_offset] = addr; |
| Eric Anholt | b501bac | 2015-11-30 12:34:01 -0800 | [diff] [blame] | 880 | } |
| 881 | |
| Gustavo Padovan | 539c320 | 2018-03-30 10:54:45 +0200 | [diff] [blame] | 882 | static void vc4_plane_atomic_async_update(struct drm_plane *plane, |
| 883 | struct drm_plane_state *state) |
| 884 | { |
| Boris Brezillon | 5a43911 | 2018-11-15 11:58:51 +0100 | [diff] [blame] | 885 | struct vc4_plane_state *vc4_state, *new_vc4_state; |
| Gustavo Padovan | 539c320 | 2018-03-30 10:54:45 +0200 | [diff] [blame] | 886 | |
| 887 | if (plane->state->fb != state->fb) { |
| 888 | vc4_plane_async_set_fb(plane, state->fb); |
| 889 | drm_atomic_set_fb_for_plane(plane->state, state->fb); |
| 890 | } |
| 891 | |
| 892 | /* Set the cursor's position on the screen. This is the |
| 893 | * expected change from the drm_mode_cursor_universal() |
| 894 | * helper. |
| 895 | */ |
| 896 | plane->state->crtc_x = state->crtc_x; |
| 897 | plane->state->crtc_y = state->crtc_y; |
| 898 | |
| 899 | /* Allow changing the start position within the cursor BO, if |
| 900 | * that matters. |
| 901 | */ |
| 902 | plane->state->src_x = state->src_x; |
| 903 | plane->state->src_y = state->src_y; |
| 904 | |
| 905 | /* Update the display list based on the new crtc_x/y. */ |
| Boris Brezillon | 5a43911 | 2018-11-15 11:58:51 +0100 | [diff] [blame] | 906 | vc4_plane_atomic_check(plane, state); |
| 907 | |
| 908 | new_vc4_state = to_vc4_plane_state(state); |
| 909 | vc4_state = to_vc4_plane_state(plane->state); |
| 910 | |
| 911 | /* Update the current vc4_state pos0, pos2 and ptr0 dlist entries. */ |
| 912 | vc4_state->dlist[vc4_state->pos0_offset] = |
| 913 | new_vc4_state->dlist[vc4_state->pos0_offset]; |
| 914 | vc4_state->dlist[vc4_state->pos2_offset] = |
| 915 | new_vc4_state->dlist[vc4_state->pos2_offset]; |
| 916 | vc4_state->dlist[vc4_state->ptr0_offset] = |
| 917 | new_vc4_state->dlist[vc4_state->ptr0_offset]; |
| Gustavo Padovan | 539c320 | 2018-03-30 10:54:45 +0200 | [diff] [blame] | 918 | |
| 919 | /* Note that we can't just call vc4_plane_write_dlist() |
| 920 | * because that would smash the context data that the HVS is |
| 921 | * currently using. |
| 922 | */ |
| 923 | writel(vc4_state->dlist[vc4_state->pos0_offset], |
| 924 | &vc4_state->hw_dlist[vc4_state->pos0_offset]); |
| 925 | writel(vc4_state->dlist[vc4_state->pos2_offset], |
| 926 | &vc4_state->hw_dlist[vc4_state->pos2_offset]); |
| 927 | writel(vc4_state->dlist[vc4_state->ptr0_offset], |
| 928 | &vc4_state->hw_dlist[vc4_state->ptr0_offset]); |
| 929 | } |
| 930 | |
| 931 | static int vc4_plane_atomic_async_check(struct drm_plane *plane, |
| 932 | struct drm_plane_state *state) |
| 933 | { |
| 934 | /* No configuring new scaling in the fast path. */ |
| 935 | if (plane->state->crtc_w != state->crtc_w || |
| 936 | plane->state->crtc_h != state->crtc_h || |
| 937 | plane->state->src_w != state->src_w || |
| 938 | plane->state->src_h != state->src_h) |
| 939 | return -EINVAL; |
| 940 | |
| 941 | return 0; |
| 942 | } |
| 943 | |
| Eric Anholt | 334dbd6 | 2017-06-21 11:49:59 -0700 | [diff] [blame] | 944 | static int vc4_prepare_fb(struct drm_plane *plane, |
| 945 | struct drm_plane_state *state) |
| 946 | { |
| 947 | struct vc4_bo *bo; |
| 948 | struct dma_fence *fence; |
| Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 949 | int ret; |
| Eric Anholt | 334dbd6 | 2017-06-21 11:49:59 -0700 | [diff] [blame] | 950 | |
| Daniel Vetter | 2227a7a | 2018-04-05 17:44:48 +0200 | [diff] [blame] | 951 | if (!state->fb) |
| Eric Anholt | 334dbd6 | 2017-06-21 11:49:59 -0700 | [diff] [blame] | 952 | return 0; |
| 953 | |
| 954 | bo = to_vc4_bo(&drm_fb_cma_get_gem_obj(state->fb, 0)->base); |
| Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 955 | |
| Daniel Vetter | 2227a7a | 2018-04-05 17:44:48 +0200 | [diff] [blame] | 956 | fence = reservation_object_get_excl_rcu(bo->resv); |
| 957 | drm_atomic_set_fence_for_plane(state, fence); |
| 958 | |
| 959 | if (plane->state->fb == state->fb) |
| 960 | return 0; |
| 961 | |
| Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 962 | ret = vc4_bo_inc_usecnt(bo); |
| 963 | if (ret) |
| 964 | return ret; |
| 965 | |
| Eric Anholt | 334dbd6 | 2017-06-21 11:49:59 -0700 | [diff] [blame] | 966 | return 0; |
| 967 | } |
| 968 | |
| Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 969 | static void vc4_cleanup_fb(struct drm_plane *plane, |
| 970 | struct drm_plane_state *state) |
| 971 | { |
| 972 | struct vc4_bo *bo; |
| 973 | |
| 974 | if (plane->state->fb == state->fb || !state->fb) |
| 975 | return; |
| 976 | |
| 977 | bo = to_vc4_bo(&drm_fb_cma_get_gem_obj(state->fb, 0)->base); |
| 978 | vc4_bo_dec_usecnt(bo); |
| 979 | } |
| 980 | |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 981 | static const struct drm_plane_helper_funcs vc4_plane_helper_funcs = { |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 982 | .atomic_check = vc4_plane_atomic_check, |
| 983 | .atomic_update = vc4_plane_atomic_update, |
| Eric Anholt | 334dbd6 | 2017-06-21 11:49:59 -0700 | [diff] [blame] | 984 | .prepare_fb = vc4_prepare_fb, |
| Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 985 | .cleanup_fb = vc4_cleanup_fb, |
| Gustavo Padovan | 539c320 | 2018-03-30 10:54:45 +0200 | [diff] [blame] | 986 | .atomic_async_check = vc4_plane_atomic_async_check, |
| 987 | .atomic_async_update = vc4_plane_atomic_async_update, |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 988 | }; |
| 989 | |
| 990 | static void vc4_plane_destroy(struct drm_plane *plane) |
| 991 | { |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 992 | drm_plane_cleanup(plane); |
| 993 | } |
| 994 | |
| Daniel Stone | 423ad7b | 2017-08-08 17:44:48 +0100 | [diff] [blame] | 995 | static bool vc4_format_mod_supported(struct drm_plane *plane, |
| 996 | uint32_t format, |
| 997 | uint64_t modifier) |
| 998 | { |
| 999 | /* Support T_TILING for RGB formats only. */ |
| 1000 | switch (format) { |
| 1001 | case DRM_FORMAT_XRGB8888: |
| 1002 | case DRM_FORMAT_ARGB8888: |
| 1003 | case DRM_FORMAT_ABGR8888: |
| 1004 | case DRM_FORMAT_XBGR8888: |
| 1005 | case DRM_FORMAT_RGB565: |
| 1006 | case DRM_FORMAT_BGR565: |
| 1007 | case DRM_FORMAT_ARGB1555: |
| 1008 | case DRM_FORMAT_XRGB1555: |
| Dave Stevenson | e065a8d | 2018-03-16 15:04:35 -0700 | [diff] [blame] | 1009 | switch (fourcc_mod_broadcom_mod(modifier)) { |
| 1010 | case DRM_FORMAT_MOD_LINEAR: |
| 1011 | case DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED: |
| 1012 | case DRM_FORMAT_MOD_BROADCOM_SAND64: |
| 1013 | case DRM_FORMAT_MOD_BROADCOM_SAND128: |
| 1014 | return true; |
| 1015 | default: |
| 1016 | return false; |
| 1017 | } |
| 1018 | case DRM_FORMAT_NV12: |
| 1019 | case DRM_FORMAT_NV21: |
| 1020 | switch (fourcc_mod_broadcom_mod(modifier)) { |
| 1021 | case DRM_FORMAT_MOD_LINEAR: |
| 1022 | case DRM_FORMAT_MOD_BROADCOM_SAND64: |
| 1023 | case DRM_FORMAT_MOD_BROADCOM_SAND128: |
| 1024 | case DRM_FORMAT_MOD_BROADCOM_SAND256: |
| 1025 | return true; |
| 1026 | default: |
| 1027 | return false; |
| 1028 | } |
| Daniel Stone | 423ad7b | 2017-08-08 17:44:48 +0100 | [diff] [blame] | 1029 | case DRM_FORMAT_YUV422: |
| 1030 | case DRM_FORMAT_YVU422: |
| 1031 | case DRM_FORMAT_YUV420: |
| 1032 | case DRM_FORMAT_YVU420: |
| Daniel Stone | 423ad7b | 2017-08-08 17:44:48 +0100 | [diff] [blame] | 1033 | case DRM_FORMAT_NV16: |
| Eric Anholt | 1e871d6 | 2018-03-16 15:04:34 -0700 | [diff] [blame] | 1034 | case DRM_FORMAT_NV61: |
| Daniel Stone | 423ad7b | 2017-08-08 17:44:48 +0100 | [diff] [blame] | 1035 | default: |
| 1036 | return (modifier == DRM_FORMAT_MOD_LINEAR); |
| 1037 | } |
| 1038 | } |
| 1039 | |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 1040 | static const struct drm_plane_funcs vc4_plane_funcs = { |
| Gustavo Padovan | 539c320 | 2018-03-30 10:54:45 +0200 | [diff] [blame] | 1041 | .update_plane = drm_atomic_helper_update_plane, |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 1042 | .disable_plane = drm_atomic_helper_disable_plane, |
| 1043 | .destroy = vc4_plane_destroy, |
| 1044 | .set_property = NULL, |
| 1045 | .reset = vc4_plane_reset, |
| 1046 | .atomic_duplicate_state = vc4_plane_duplicate_state, |
| 1047 | .atomic_destroy_state = vc4_plane_destroy_state, |
| Daniel Stone | 423ad7b | 2017-08-08 17:44:48 +0100 | [diff] [blame] | 1048 | .format_mod_supported = vc4_format_mod_supported, |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 1049 | }; |
| 1050 | |
| 1051 | struct drm_plane *vc4_plane_init(struct drm_device *dev, |
| 1052 | enum drm_plane_type type) |
| 1053 | { |
| 1054 | struct drm_plane *plane = NULL; |
| 1055 | struct vc4_plane *vc4_plane; |
| 1056 | u32 formats[ARRAY_SIZE(hvs_formats)]; |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 1057 | u32 num_formats = 0; |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 1058 | int ret = 0; |
| 1059 | unsigned i; |
| Daniel Stone | 423ad7b | 2017-08-08 17:44:48 +0100 | [diff] [blame] | 1060 | static const uint64_t modifiers[] = { |
| 1061 | DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED, |
| Dave Stevenson | e065a8d | 2018-03-16 15:04:35 -0700 | [diff] [blame] | 1062 | DRM_FORMAT_MOD_BROADCOM_SAND128, |
| 1063 | DRM_FORMAT_MOD_BROADCOM_SAND64, |
| 1064 | DRM_FORMAT_MOD_BROADCOM_SAND256, |
| Daniel Stone | 423ad7b | 2017-08-08 17:44:48 +0100 | [diff] [blame] | 1065 | DRM_FORMAT_MOD_LINEAR, |
| 1066 | DRM_FORMAT_MOD_INVALID |
| 1067 | }; |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 1068 | |
| 1069 | vc4_plane = devm_kzalloc(dev->dev, sizeof(*vc4_plane), |
| 1070 | GFP_KERNEL); |
| Colin Ian King | 7b34734 | 2017-03-16 18:54:18 +0000 | [diff] [blame] | 1071 | if (!vc4_plane) |
| 1072 | return ERR_PTR(-ENOMEM); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 1073 | |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 1074 | for (i = 0; i < ARRAY_SIZE(hvs_formats); i++) { |
| 1075 | /* Don't allow YUV in cursor planes, since that means |
| 1076 | * tuning on the scaler, which we don't allow for the |
| 1077 | * cursor. |
| 1078 | */ |
| 1079 | if (type != DRM_PLANE_TYPE_CURSOR || |
| 1080 | hvs_formats[i].hvs < HVS_PIXEL_FORMAT_YCBCR_YUV420_3PLANE) { |
| 1081 | formats[num_formats++] = hvs_formats[i].drm; |
| 1082 | } |
| 1083 | } |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 1084 | plane = &vc4_plane->base; |
| Andrzej Pietrasiewicz | 49d29a0 | 2017-02-01 10:35:08 +0100 | [diff] [blame] | 1085 | ret = drm_universal_plane_init(dev, plane, 0, |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 1086 | &vc4_plane_funcs, |
| Eric Anholt | fc04023 | 2015-12-30 12:25:44 -0800 | [diff] [blame] | 1087 | formats, num_formats, |
| Daniel Stone | 423ad7b | 2017-08-08 17:44:48 +0100 | [diff] [blame] | 1088 | modifiers, type, NULL); |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 1089 | |
| 1090 | drm_plane_helper_add(plane, &vc4_plane_helper_funcs); |
| 1091 | |
| Stefan Schake | 22445f0 | 2018-04-20 17:09:54 -0700 | [diff] [blame] | 1092 | drm_plane_create_alpha_property(plane); |
| 1093 | |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 1094 | return plane; |
| Eric Anholt | c8b75bc | 2015-03-02 13:01:12 -0800 | [diff] [blame] | 1095 | } |