Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) COPYRIGHT 2016 ARM Limited. All rights reserved. |
| 3 | * Author: Liviu Dudau <Liviu.Dudau@arm.com> |
| 4 | * |
| 5 | * This program is free software and is provided to you under the terms of the |
| 6 | * GNU General Public License version 2 as published by the Free Software |
| 7 | * Foundation, and any use by you of this program is subject to the terms |
| 8 | * of such GNU licence. |
| 9 | * |
| 10 | * ARM Mali DP plane manipulation routines. |
| 11 | */ |
| 12 | |
| 13 | #include <drm/drmP.h> |
Liviu Dudau | b9c3315 | 2016-11-25 14:28:54 +0000 | [diff] [blame] | 14 | #include <drm/drm_atomic.h> |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 15 | #include <drm/drm_atomic_helper.h> |
| 16 | #include <drm/drm_fb_cma_helper.h> |
| 17 | #include <drm/drm_gem_cma_helper.h> |
| 18 | #include <drm/drm_plane_helper.h> |
| 19 | |
| 20 | #include "malidp_hw.h" |
| 21 | #include "malidp_drv.h" |
| 22 | |
| 23 | /* Layer specific register offsets */ |
| 24 | #define MALIDP_LAYER_FORMAT 0x000 |
| 25 | #define MALIDP_LAYER_CONTROL 0x004 |
| 26 | #define LAYER_ENABLE (1 << 0) |
| 27 | #define LAYER_ROT_OFFSET 8 |
| 28 | #define LAYER_H_FLIP (1 << 10) |
| 29 | #define LAYER_V_FLIP (1 << 11) |
| 30 | #define LAYER_ROT_MASK (0xf << 8) |
Brian Starkey | c57eb71 | 2016-10-11 15:26:08 +0100 | [diff] [blame] | 31 | #define LAYER_COMP_MASK (0x3 << 12) |
| 32 | #define LAYER_COMP_PIXEL (0x3 << 12) |
| 33 | #define LAYER_COMP_PLANE (0x2 << 12) |
| 34 | #define MALIDP_LAYER_COMPOSE 0x008 |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 35 | #define MALIDP_LAYER_SIZE 0x00c |
| 36 | #define LAYER_H_VAL(x) (((x) & 0x1fff) << 0) |
| 37 | #define LAYER_V_VAL(x) (((x) & 0x1fff) << 16) |
| 38 | #define MALIDP_LAYER_COMP_SIZE 0x010 |
| 39 | #define MALIDP_LAYER_OFFSET 0x014 |
| 40 | #define MALIDP_LAYER_STRIDE 0x018 |
| 41 | |
Brian Starkey | c57eb71 | 2016-10-11 15:26:08 +0100 | [diff] [blame] | 42 | /* |
| 43 | * This 4-entry look-up-table is used to determine the full 8-bit alpha value |
| 44 | * for formats with 1- or 2-bit alpha channels. |
| 45 | * We set it to give 100%/0% opacity for 1-bit formats and 100%/66%/33%/0% |
| 46 | * opacity for 2-bit formats. |
| 47 | */ |
| 48 | #define MALIDP_ALPHA_LUT 0xffaa5500 |
| 49 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 50 | static void malidp_de_plane_destroy(struct drm_plane *plane) |
| 51 | { |
| 52 | struct malidp_plane *mp = to_malidp_plane(plane); |
| 53 | |
| 54 | if (mp->base.fb) |
| 55 | drm_framebuffer_unreference(mp->base.fb); |
| 56 | |
| 57 | drm_plane_helper_disable(plane); |
| 58 | drm_plane_cleanup(plane); |
| 59 | devm_kfree(plane->dev->dev, mp); |
| 60 | } |
| 61 | |
Baoyou Xie | ed8b0c0 | 2016-10-22 17:13:01 +0800 | [diff] [blame] | 62 | static struct |
| 63 | drm_plane_state *malidp_duplicate_plane_state(struct drm_plane *plane) |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 64 | { |
| 65 | struct malidp_plane_state *state, *m_state; |
| 66 | |
| 67 | if (!plane->state) |
| 68 | return NULL; |
| 69 | |
| 70 | state = kmalloc(sizeof(*state), GFP_KERNEL); |
Shailendra Verma | 94d8b9b | 2016-11-11 13:35:00 +0000 | [diff] [blame] | 71 | if (!state) |
| 72 | return NULL; |
| 73 | |
| 74 | m_state = to_malidp_plane_state(plane->state); |
| 75 | __drm_atomic_helper_plane_duplicate_state(plane, &state->base); |
| 76 | state->rotmem_size = m_state->rotmem_size; |
| 77 | state->format = m_state->format; |
| 78 | state->n_planes = m_state->n_planes; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 79 | |
| 80 | return &state->base; |
| 81 | } |
| 82 | |
Baoyou Xie | ed8b0c0 | 2016-10-22 17:13:01 +0800 | [diff] [blame] | 83 | static void malidp_destroy_plane_state(struct drm_plane *plane, |
| 84 | struct drm_plane_state *state) |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 85 | { |
| 86 | struct malidp_plane_state *m_state = to_malidp_plane_state(state); |
| 87 | |
| 88 | __drm_atomic_helper_plane_destroy_state(state); |
| 89 | kfree(m_state); |
| 90 | } |
| 91 | |
| 92 | static const struct drm_plane_funcs malidp_de_plane_funcs = { |
| 93 | .update_plane = drm_atomic_helper_update_plane, |
| 94 | .disable_plane = drm_atomic_helper_disable_plane, |
Liviu Dudau | 2fe1f08 | 2016-10-24 18:35:09 +0100 | [diff] [blame] | 95 | .set_property = drm_atomic_helper_plane_set_property, |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 96 | .destroy = malidp_de_plane_destroy, |
| 97 | .reset = drm_atomic_helper_plane_reset, |
| 98 | .atomic_duplicate_state = malidp_duplicate_plane_state, |
| 99 | .atomic_destroy_state = malidp_destroy_plane_state, |
| 100 | }; |
| 101 | |
| 102 | static int malidp_de_plane_check(struct drm_plane *plane, |
| 103 | struct drm_plane_state *state) |
| 104 | { |
| 105 | struct malidp_plane *mp = to_malidp_plane(plane); |
| 106 | struct malidp_plane_state *ms = to_malidp_plane_state(state); |
Liviu Dudau | b9c3315 | 2016-11-25 14:28:54 +0000 | [diff] [blame] | 107 | struct drm_crtc_state *crtc_state; |
Brian Starkey | a46a096 | 2016-10-11 15:26:05 +0100 | [diff] [blame] | 108 | struct drm_framebuffer *fb; |
Liviu Dudau | b9c3315 | 2016-11-25 14:28:54 +0000 | [diff] [blame] | 109 | struct drm_rect clip = { 0 }; |
| 110 | int i, ret; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 111 | u32 src_w, src_h; |
| 112 | |
| 113 | if (!state->crtc || !state->fb) |
| 114 | return 0; |
| 115 | |
Brian Starkey | a46a096 | 2016-10-11 15:26:05 +0100 | [diff] [blame] | 116 | fb = state->fb; |
| 117 | |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 118 | ms->format = malidp_hw_get_format_id(&mp->hwdev->map, mp->layer->id, |
Ville Syrjälä | 438b74a | 2016-12-14 23:32:55 +0200 | [diff] [blame] | 119 | fb->format->format); |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 120 | if (ms->format == MALIDP_INVALID_FORMAT_ID) |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 121 | return -EINVAL; |
| 122 | |
Ville Syrjälä | bcb0b46 | 2016-12-14 23:30:22 +0200 | [diff] [blame] | 123 | ms->n_planes = fb->format->num_planes; |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 124 | for (i = 0; i < ms->n_planes; i++) { |
Brian Starkey | a46a096 | 2016-10-11 15:26:05 +0100 | [diff] [blame] | 125 | if (!malidp_hw_pitch_valid(mp->hwdev, fb->pitches[i])) { |
| 126 | DRM_DEBUG_KMS("Invalid pitch %u for plane %d\n", |
| 127 | fb->pitches[i], i); |
| 128 | return -EINVAL; |
| 129 | } |
| 130 | } |
| 131 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 132 | src_w = state->src_w >> 16; |
| 133 | src_h = state->src_h >> 16; |
| 134 | |
| 135 | if ((state->crtc_w > mp->hwdev->max_line_size) || |
| 136 | (state->crtc_h > mp->hwdev->max_line_size) || |
| 137 | (state->crtc_w < mp->hwdev->min_line_size) || |
Brian Starkey | b2a2ddb | 2016-12-07 13:14:51 +0000 | [diff] [blame] | 138 | (state->crtc_h < mp->hwdev->min_line_size)) |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 139 | return -EINVAL; |
| 140 | |
| 141 | /* packed RGB888 / BGR888 can't be rotated or flipped */ |
Joonas Lahtinen | 31ad61e | 2016-07-29 08:50:05 +0300 | [diff] [blame] | 142 | if (state->rotation != DRM_ROTATE_0 && |
Ville Syrjälä | 438b74a | 2016-12-14 23:32:55 +0200 | [diff] [blame] | 143 | (fb->format->format == DRM_FORMAT_RGB888 || |
| 144 | fb->format->format == DRM_FORMAT_BGR888)) |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 145 | return -EINVAL; |
| 146 | |
Liviu Dudau | b9c3315 | 2016-11-25 14:28:54 +0000 | [diff] [blame] | 147 | crtc_state = drm_atomic_get_existing_crtc_state(state->state, state->crtc); |
| 148 | clip.x2 = crtc_state->adjusted_mode.hdisplay; |
| 149 | clip.y2 = crtc_state->adjusted_mode.vdisplay; |
| 150 | ret = drm_plane_helper_check_state(state, &clip, |
| 151 | DRM_PLANE_HELPER_NO_SCALING, |
| 152 | DRM_PLANE_HELPER_NO_SCALING, |
| 153 | true, true); |
| 154 | if (ret) |
| 155 | return ret; |
| 156 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 157 | ms->rotmem_size = 0; |
| 158 | if (state->rotation & MALIDP_ROTATED_MASK) { |
| 159 | int val; |
| 160 | |
| 161 | val = mp->hwdev->rotmem_required(mp->hwdev, state->crtc_h, |
| 162 | state->crtc_w, |
Ville Syrjälä | 438b74a | 2016-12-14 23:32:55 +0200 | [diff] [blame] | 163 | fb->format->format); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 164 | if (val < 0) |
| 165 | return val; |
| 166 | |
| 167 | ms->rotmem_size = val; |
| 168 | } |
| 169 | |
| 170 | return 0; |
| 171 | } |
| 172 | |
| 173 | static void malidp_de_plane_update(struct drm_plane *plane, |
| 174 | struct drm_plane_state *old_state) |
| 175 | { |
| 176 | struct drm_gem_cma_object *obj; |
| 177 | struct malidp_plane *mp; |
| 178 | const struct malidp_hw_regmap *map; |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 179 | struct malidp_plane_state *ms = to_malidp_plane_state(plane->state); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 180 | u16 ptr; |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 181 | u32 src_w, src_h, dest_w, dest_h, val; |
| 182 | int i; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 183 | |
| 184 | mp = to_malidp_plane(plane); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 185 | map = &mp->hwdev->map; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 186 | |
| 187 | /* convert src values from Q16 fixed point to integer */ |
| 188 | src_w = plane->state->src_w >> 16; |
| 189 | src_h = plane->state->src_h >> 16; |
Brian Starkey | edabb3c | 2016-12-07 13:17:21 +0000 | [diff] [blame] | 190 | dest_w = plane->state->crtc_w; |
| 191 | dest_h = plane->state->crtc_h; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 192 | |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 193 | malidp_hw_write(mp->hwdev, ms->format, mp->layer->base); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 194 | |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 195 | for (i = 0; i < ms->n_planes; i++) { |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 196 | /* calculate the offset for the layer's plane registers */ |
| 197 | ptr = mp->layer->ptr + (i << 4); |
| 198 | |
| 199 | obj = drm_fb_cma_get_gem_obj(plane->state->fb, i); |
| 200 | malidp_hw_write(mp->hwdev, lower_32_bits(obj->paddr), ptr); |
| 201 | malidp_hw_write(mp->hwdev, upper_32_bits(obj->paddr), ptr + 4); |
| 202 | malidp_hw_write(mp->hwdev, plane->state->fb->pitches[i], |
| 203 | mp->layer->base + MALIDP_LAYER_STRIDE); |
| 204 | } |
| 205 | |
| 206 | malidp_hw_write(mp->hwdev, LAYER_H_VAL(src_w) | LAYER_V_VAL(src_h), |
| 207 | mp->layer->base + MALIDP_LAYER_SIZE); |
| 208 | |
| 209 | malidp_hw_write(mp->hwdev, LAYER_H_VAL(dest_w) | LAYER_V_VAL(dest_h), |
| 210 | mp->layer->base + MALIDP_LAYER_COMP_SIZE); |
| 211 | |
| 212 | malidp_hw_write(mp->hwdev, LAYER_H_VAL(plane->state->crtc_x) | |
| 213 | LAYER_V_VAL(plane->state->crtc_y), |
| 214 | mp->layer->base + MALIDP_LAYER_OFFSET); |
| 215 | |
Brian Starkey | c57eb71 | 2016-10-11 15:26:08 +0100 | [diff] [blame] | 216 | /* first clear the rotation bits */ |
| 217 | val = malidp_hw_read(mp->hwdev, mp->layer->base + MALIDP_LAYER_CONTROL); |
| 218 | val &= ~LAYER_ROT_MASK; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 219 | |
| 220 | /* setup the rotation and axis flip bits */ |
| 221 | if (plane->state->rotation & DRM_ROTATE_MASK) |
Mihail Atanassov | c7ffa59 | 2016-12-23 09:57:20 +0000 | [diff] [blame] | 222 | val |= ilog2(plane->state->rotation & DRM_ROTATE_MASK) << |
| 223 | LAYER_ROT_OFFSET; |
Joonas Lahtinen | 31ad61e | 2016-07-29 08:50:05 +0300 | [diff] [blame] | 224 | if (plane->state->rotation & DRM_REFLECT_X) |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 225 | val |= LAYER_H_FLIP; |
Brian Starkey | 7916efe | 2016-12-07 13:20:28 +0000 | [diff] [blame] | 226 | if (plane->state->rotation & DRM_REFLECT_Y) |
| 227 | val |= LAYER_V_FLIP; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 228 | |
Brian Starkey | c57eb71 | 2016-10-11 15:26:08 +0100 | [diff] [blame] | 229 | /* |
| 230 | * always enable pixel alpha blending until we have a way to change |
| 231 | * blend modes |
| 232 | */ |
| 233 | val &= ~LAYER_COMP_MASK; |
| 234 | val |= LAYER_COMP_PIXEL; |
| 235 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 236 | /* set the 'enable layer' bit */ |
| 237 | val |= LAYER_ENABLE; |
| 238 | |
Brian Starkey | c57eb71 | 2016-10-11 15:26:08 +0100 | [diff] [blame] | 239 | malidp_hw_write(mp->hwdev, val, |
| 240 | mp->layer->base + MALIDP_LAYER_CONTROL); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | static void malidp_de_plane_disable(struct drm_plane *plane, |
| 244 | struct drm_plane_state *state) |
| 245 | { |
| 246 | struct malidp_plane *mp = to_malidp_plane(plane); |
| 247 | |
| 248 | malidp_hw_clearbits(mp->hwdev, LAYER_ENABLE, |
| 249 | mp->layer->base + MALIDP_LAYER_CONTROL); |
| 250 | } |
| 251 | |
| 252 | static const struct drm_plane_helper_funcs malidp_de_plane_helper_funcs = { |
| 253 | .atomic_check = malidp_de_plane_check, |
| 254 | .atomic_update = malidp_de_plane_update, |
| 255 | .atomic_disable = malidp_de_plane_disable, |
| 256 | }; |
| 257 | |
| 258 | int malidp_de_planes_init(struct drm_device *drm) |
| 259 | { |
| 260 | struct malidp_drm *malidp = drm->dev_private; |
| 261 | const struct malidp_hw_regmap *map = &malidp->dev->map; |
| 262 | struct malidp_plane *plane = NULL; |
| 263 | enum drm_plane_type plane_type; |
| 264 | unsigned long crtcs = 1 << drm->mode_config.num_crtc; |
Brian Starkey | 1580778 | 2016-10-11 15:26:07 +0100 | [diff] [blame] | 265 | unsigned long flags = DRM_ROTATE_0 | DRM_ROTATE_90 | DRM_ROTATE_180 | |
| 266 | DRM_ROTATE_270 | DRM_REFLECT_X | DRM_REFLECT_Y; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 267 | u32 *formats; |
| 268 | int ret, i, j, n; |
| 269 | |
Brian Starkey | 6211b48 | 2016-10-03 15:08:12 +0100 | [diff] [blame^] | 270 | formats = kcalloc(map->n_pixel_formats, sizeof(*formats), GFP_KERNEL); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 271 | if (!formats) { |
| 272 | ret = -ENOMEM; |
| 273 | goto cleanup; |
| 274 | } |
| 275 | |
| 276 | for (i = 0; i < map->n_layers; i++) { |
| 277 | u8 id = map->layers[i].id; |
| 278 | |
| 279 | plane = kzalloc(sizeof(*plane), GFP_KERNEL); |
| 280 | if (!plane) { |
| 281 | ret = -ENOMEM; |
| 282 | goto cleanup; |
| 283 | } |
| 284 | |
| 285 | /* build the list of DRM supported formats based on the map */ |
Brian Starkey | 6211b48 | 2016-10-03 15:08:12 +0100 | [diff] [blame^] | 286 | for (n = 0, j = 0; j < map->n_pixel_formats; j++) { |
| 287 | if ((map->pixel_formats[j].layer & id) == id) |
| 288 | formats[n++] = map->pixel_formats[j].format; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | plane_type = (i == 0) ? DRM_PLANE_TYPE_PRIMARY : |
| 292 | DRM_PLANE_TYPE_OVERLAY; |
| 293 | ret = drm_universal_plane_init(drm, &plane->base, crtcs, |
| 294 | &malidp_de_plane_funcs, formats, |
| 295 | n, plane_type, NULL); |
| 296 | if (ret < 0) |
| 297 | goto cleanup; |
| 298 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 299 | drm_plane_helper_add(&plane->base, |
| 300 | &malidp_de_plane_helper_funcs); |
| 301 | plane->hwdev = malidp->dev; |
| 302 | plane->layer = &map->layers[i]; |
Brian Starkey | 1580778 | 2016-10-11 15:26:07 +0100 | [diff] [blame] | 303 | |
| 304 | /* Skip the features which the SMART layer doesn't have */ |
| 305 | if (id == DE_SMART) |
| 306 | continue; |
| 307 | |
| 308 | drm_plane_create_rotation_property(&plane->base, DRM_ROTATE_0, flags); |
Brian Starkey | c57eb71 | 2016-10-11 15:26:08 +0100 | [diff] [blame] | 309 | malidp_hw_write(malidp->dev, MALIDP_ALPHA_LUT, |
| 310 | plane->layer->base + MALIDP_LAYER_COMPOSE); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | kfree(formats); |
| 314 | |
| 315 | return 0; |
| 316 | |
| 317 | cleanup: |
| 318 | malidp_de_planes_destroy(drm); |
| 319 | kfree(formats); |
| 320 | |
| 321 | return ret; |
| 322 | } |
| 323 | |
| 324 | void malidp_de_planes_destroy(struct drm_device *drm) |
| 325 | { |
| 326 | struct drm_plane *p, *pt; |
| 327 | |
| 328 | list_for_each_entry_safe(p, pt, &drm->mode_config.plane_list, head) { |
| 329 | drm_plane_cleanup(p); |
| 330 | kfree(p); |
| 331 | } |
| 332 | } |