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> |
Mihail Atanassov | 88d4d90 | 2017-01-23 15:12:02 +0000 | [diff] [blame] | 19 | #include <drm/drm_print.h> |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 20 | |
| 21 | #include "malidp_hw.h" |
| 22 | #include "malidp_drv.h" |
| 23 | |
| 24 | /* Layer specific register offsets */ |
| 25 | #define MALIDP_LAYER_FORMAT 0x000 |
| 26 | #define MALIDP_LAYER_CONTROL 0x004 |
| 27 | #define LAYER_ENABLE (1 << 0) |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame^] | 28 | #define LAYER_FLOWCFG_MASK 7 |
| 29 | #define LAYER_FLOWCFG(x) (((x) & LAYER_FLOWCFG_MASK) << 1) |
| 30 | #define LAYER_FLOWCFG_SCALE_SE 3 |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 31 | #define LAYER_ROT_OFFSET 8 |
| 32 | #define LAYER_H_FLIP (1 << 10) |
| 33 | #define LAYER_V_FLIP (1 << 11) |
| 34 | #define LAYER_ROT_MASK (0xf << 8) |
Brian Starkey | c57eb71 | 2016-10-11 15:26:08 +0100 | [diff] [blame] | 35 | #define LAYER_COMP_MASK (0x3 << 12) |
| 36 | #define LAYER_COMP_PIXEL (0x3 << 12) |
| 37 | #define LAYER_COMP_PLANE (0x2 << 12) |
| 38 | #define MALIDP_LAYER_COMPOSE 0x008 |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 39 | #define MALIDP_LAYER_SIZE 0x00c |
| 40 | #define LAYER_H_VAL(x) (((x) & 0x1fff) << 0) |
| 41 | #define LAYER_V_VAL(x) (((x) & 0x1fff) << 16) |
| 42 | #define MALIDP_LAYER_COMP_SIZE 0x010 |
| 43 | #define MALIDP_LAYER_OFFSET 0x014 |
Mihail Atanassov | d1479f6 | 2017-02-09 11:32:00 +0000 | [diff] [blame] | 44 | #define MALIDP550_LS_ENABLE 0x01c |
| 45 | #define MALIDP550_LS_R1_IN_SIZE 0x020 |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 46 | |
Brian Starkey | c57eb71 | 2016-10-11 15:26:08 +0100 | [diff] [blame] | 47 | /* |
| 48 | * This 4-entry look-up-table is used to determine the full 8-bit alpha value |
| 49 | * for formats with 1- or 2-bit alpha channels. |
| 50 | * We set it to give 100%/0% opacity for 1-bit formats and 100%/66%/33%/0% |
| 51 | * opacity for 2-bit formats. |
| 52 | */ |
| 53 | #define MALIDP_ALPHA_LUT 0xffaa5500 |
| 54 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 55 | static void malidp_de_plane_destroy(struct drm_plane *plane) |
| 56 | { |
| 57 | struct malidp_plane *mp = to_malidp_plane(plane); |
| 58 | |
| 59 | if (mp->base.fb) |
| 60 | drm_framebuffer_unreference(mp->base.fb); |
| 61 | |
| 62 | drm_plane_helper_disable(plane); |
| 63 | drm_plane_cleanup(plane); |
| 64 | devm_kfree(plane->dev->dev, mp); |
| 65 | } |
| 66 | |
Mihail Atanassov | fe10cd6 | 2016-12-01 12:19:58 +0000 | [diff] [blame] | 67 | /* |
| 68 | * Replicate what the default ->reset hook does: free the state pointer and |
| 69 | * allocate a new empty object. We just need enough space to store |
| 70 | * a malidp_plane_state instead of a drm_plane_state. |
| 71 | */ |
| 72 | static void malidp_plane_reset(struct drm_plane *plane) |
| 73 | { |
| 74 | struct malidp_plane_state *state = to_malidp_plane_state(plane->state); |
| 75 | |
| 76 | if (state) |
| 77 | __drm_atomic_helper_plane_destroy_state(&state->base); |
| 78 | kfree(state); |
| 79 | plane->state = NULL; |
| 80 | state = kzalloc(sizeof(*state), GFP_KERNEL); |
| 81 | if (state) { |
| 82 | state->base.plane = plane; |
| 83 | state->base.rotation = DRM_ROTATE_0; |
| 84 | plane->state = &state->base; |
| 85 | } |
| 86 | } |
| 87 | |
Baoyou Xie | ed8b0c0 | 2016-10-22 17:13:01 +0800 | [diff] [blame] | 88 | static struct |
| 89 | drm_plane_state *malidp_duplicate_plane_state(struct drm_plane *plane) |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 90 | { |
| 91 | struct malidp_plane_state *state, *m_state; |
| 92 | |
| 93 | if (!plane->state) |
| 94 | return NULL; |
| 95 | |
| 96 | state = kmalloc(sizeof(*state), GFP_KERNEL); |
Shailendra Verma | 94d8b9b | 2016-11-11 13:35:00 +0000 | [diff] [blame] | 97 | if (!state) |
| 98 | return NULL; |
| 99 | |
| 100 | m_state = to_malidp_plane_state(plane->state); |
| 101 | __drm_atomic_helper_plane_duplicate_state(plane, &state->base); |
| 102 | state->rotmem_size = m_state->rotmem_size; |
| 103 | state->format = m_state->format; |
| 104 | state->n_planes = m_state->n_planes; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 105 | |
| 106 | return &state->base; |
| 107 | } |
| 108 | |
Baoyou Xie | ed8b0c0 | 2016-10-22 17:13:01 +0800 | [diff] [blame] | 109 | static void malidp_destroy_plane_state(struct drm_plane *plane, |
| 110 | struct drm_plane_state *state) |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 111 | { |
| 112 | struct malidp_plane_state *m_state = to_malidp_plane_state(state); |
| 113 | |
| 114 | __drm_atomic_helper_plane_destroy_state(state); |
| 115 | kfree(m_state); |
| 116 | } |
| 117 | |
Mihail Atanassov | 88d4d90 | 2017-01-23 15:12:02 +0000 | [diff] [blame] | 118 | static void malidp_plane_atomic_print_state(struct drm_printer *p, |
| 119 | const struct drm_plane_state *state) |
| 120 | { |
| 121 | struct malidp_plane_state *ms = to_malidp_plane_state(state); |
Mihail Atanassov | 88d4d90 | 2017-01-23 15:12:02 +0000 | [diff] [blame] | 122 | |
| 123 | drm_printf(p, "\trotmem_size=%u\n", ms->rotmem_size); |
| 124 | drm_printf(p, "\tformat_id=%u\n", ms->format); |
| 125 | drm_printf(p, "\tn_planes=%u\n", ms->n_planes); |
| 126 | } |
| 127 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 128 | static const struct drm_plane_funcs malidp_de_plane_funcs = { |
| 129 | .update_plane = drm_atomic_helper_update_plane, |
| 130 | .disable_plane = drm_atomic_helper_disable_plane, |
Liviu Dudau | 2fe1f08 | 2016-10-24 18:35:09 +0100 | [diff] [blame] | 131 | .set_property = drm_atomic_helper_plane_set_property, |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 132 | .destroy = malidp_de_plane_destroy, |
Mihail Atanassov | fe10cd6 | 2016-12-01 12:19:58 +0000 | [diff] [blame] | 133 | .reset = malidp_plane_reset, |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 134 | .atomic_duplicate_state = malidp_duplicate_plane_state, |
| 135 | .atomic_destroy_state = malidp_destroy_plane_state, |
Mihail Atanassov | 88d4d90 | 2017-01-23 15:12:02 +0000 | [diff] [blame] | 136 | .atomic_print_state = malidp_plane_atomic_print_state, |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 137 | }; |
| 138 | |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame^] | 139 | static int malidp_se_check_scaling(struct malidp_plane *mp, |
| 140 | struct drm_plane_state *state) |
| 141 | { |
| 142 | struct drm_crtc_state *crtc_state = |
| 143 | drm_atomic_get_existing_crtc_state(state->state, state->crtc); |
| 144 | struct malidp_crtc_state *mc; |
| 145 | struct drm_rect clip = { 0 }; |
| 146 | u32 src_w, src_h; |
| 147 | int ret; |
| 148 | |
| 149 | if (!crtc_state) |
| 150 | return -EINVAL; |
| 151 | |
| 152 | clip.x2 = crtc_state->adjusted_mode.hdisplay; |
| 153 | clip.y2 = crtc_state->adjusted_mode.vdisplay; |
| 154 | ret = drm_plane_helper_check_state(state, &clip, 0, INT_MAX, true, true); |
| 155 | if (ret) |
| 156 | return ret; |
| 157 | |
| 158 | src_w = state->src_w >> 16; |
| 159 | src_h = state->src_h >> 16; |
| 160 | if ((state->crtc_w == src_w) && (state->crtc_h == src_h)) { |
| 161 | /* Scaling not necessary for this plane. */ |
| 162 | mc->scaled_planes_mask &= ~(mp->layer->id); |
| 163 | return 0; |
| 164 | } |
| 165 | |
| 166 | if (mp->layer->id & (DE_SMART | DE_GRAPHICS2)) |
| 167 | return -EINVAL; |
| 168 | |
| 169 | mc = to_malidp_crtc_state(crtc_state); |
| 170 | |
| 171 | mc->scaled_planes_mask |= mp->layer->id; |
| 172 | /* Defer scaling requirements calculation to the crtc check. */ |
| 173 | return 0; |
| 174 | } |
| 175 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 176 | static int malidp_de_plane_check(struct drm_plane *plane, |
| 177 | struct drm_plane_state *state) |
| 178 | { |
| 179 | struct malidp_plane *mp = to_malidp_plane(plane); |
| 180 | struct malidp_plane_state *ms = to_malidp_plane_state(state); |
Brian Starkey | a46a096 | 2016-10-11 15:26:05 +0100 | [diff] [blame] | 181 | struct drm_framebuffer *fb; |
Liviu Dudau | b9c3315 | 2016-11-25 14:28:54 +0000 | [diff] [blame] | 182 | int i, ret; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 183 | |
| 184 | if (!state->crtc || !state->fb) |
| 185 | return 0; |
| 186 | |
Brian Starkey | a46a096 | 2016-10-11 15:26:05 +0100 | [diff] [blame] | 187 | fb = state->fb; |
| 188 | |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 189 | 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] | 190 | fb->format->format); |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 191 | if (ms->format == MALIDP_INVALID_FORMAT_ID) |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 192 | return -EINVAL; |
| 193 | |
Ville Syrjälä | bcb0b46 | 2016-12-14 23:30:22 +0200 | [diff] [blame] | 194 | ms->n_planes = fb->format->num_planes; |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 195 | for (i = 0; i < ms->n_planes; i++) { |
Brian Starkey | a46a096 | 2016-10-11 15:26:05 +0100 | [diff] [blame] | 196 | if (!malidp_hw_pitch_valid(mp->hwdev, fb->pitches[i])) { |
| 197 | DRM_DEBUG_KMS("Invalid pitch %u for plane %d\n", |
| 198 | fb->pitches[i], i); |
| 199 | return -EINVAL; |
| 200 | } |
| 201 | } |
| 202 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 203 | if ((state->crtc_w > mp->hwdev->max_line_size) || |
| 204 | (state->crtc_h > mp->hwdev->max_line_size) || |
| 205 | (state->crtc_w < mp->hwdev->min_line_size) || |
Brian Starkey | b2a2ddb | 2016-12-07 13:14:51 +0000 | [diff] [blame] | 206 | (state->crtc_h < mp->hwdev->min_line_size)) |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 207 | return -EINVAL; |
| 208 | |
Mihail Atanassov | 83d642e | 2017-01-23 15:24:35 +0000 | [diff] [blame] | 209 | /* |
| 210 | * DP550/650 video layers can accept 3 plane formats only if |
| 211 | * fb->pitches[1] == fb->pitches[2] since they don't have a |
| 212 | * third plane stride register. |
| 213 | */ |
| 214 | if (ms->n_planes == 3 && |
| 215 | !(mp->hwdev->features & MALIDP_DEVICE_LV_HAS_3_STRIDES) && |
| 216 | (state->fb->pitches[1] != state->fb->pitches[2])) |
| 217 | return -EINVAL; |
| 218 | |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame^] | 219 | ret = malidp_se_check_scaling(mp, state); |
| 220 | if (ret) |
| 221 | return ret; |
| 222 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 223 | /* packed RGB888 / BGR888 can't be rotated or flipped */ |
Joonas Lahtinen | 31ad61e | 2016-07-29 08:50:05 +0300 | [diff] [blame] | 224 | if (state->rotation != DRM_ROTATE_0 && |
Ville Syrjälä | 438b74a | 2016-12-14 23:32:55 +0200 | [diff] [blame] | 225 | (fb->format->format == DRM_FORMAT_RGB888 || |
| 226 | fb->format->format == DRM_FORMAT_BGR888)) |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 227 | return -EINVAL; |
| 228 | |
| 229 | ms->rotmem_size = 0; |
| 230 | if (state->rotation & MALIDP_ROTATED_MASK) { |
| 231 | int val; |
| 232 | |
| 233 | val = mp->hwdev->rotmem_required(mp->hwdev, state->crtc_h, |
| 234 | state->crtc_w, |
Ville Syrjälä | 438b74a | 2016-12-14 23:32:55 +0200 | [diff] [blame] | 235 | fb->format->format); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 236 | if (val < 0) |
| 237 | return val; |
| 238 | |
| 239 | ms->rotmem_size = val; |
| 240 | } |
| 241 | |
| 242 | return 0; |
| 243 | } |
| 244 | |
Mihail Atanassov | 83d642e | 2017-01-23 15:24:35 +0000 | [diff] [blame] | 245 | static void malidp_de_set_plane_pitches(struct malidp_plane *mp, |
| 246 | int num_planes, unsigned int pitches[3]) |
| 247 | { |
| 248 | int i; |
| 249 | int num_strides = num_planes; |
| 250 | |
| 251 | if (!mp->layer->stride_offset) |
| 252 | return; |
| 253 | |
| 254 | if (num_planes == 3) |
| 255 | num_strides = (mp->hwdev->features & |
| 256 | MALIDP_DEVICE_LV_HAS_3_STRIDES) ? 3 : 2; |
| 257 | |
| 258 | for (i = 0; i < num_strides; ++i) |
| 259 | malidp_hw_write(mp->hwdev, pitches[i], |
| 260 | mp->layer->base + |
| 261 | mp->layer->stride_offset + i * 4); |
| 262 | } |
| 263 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 264 | static void malidp_de_plane_update(struct drm_plane *plane, |
| 265 | struct drm_plane_state *old_state) |
| 266 | { |
| 267 | struct drm_gem_cma_object *obj; |
| 268 | struct malidp_plane *mp; |
| 269 | const struct malidp_hw_regmap *map; |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 270 | struct malidp_plane_state *ms = to_malidp_plane_state(plane->state); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 271 | u16 ptr; |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 272 | u32 src_w, src_h, dest_w, dest_h, val; |
| 273 | int i; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 274 | |
| 275 | mp = to_malidp_plane(plane); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 276 | map = &mp->hwdev->map; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 277 | |
| 278 | /* convert src values from Q16 fixed point to integer */ |
| 279 | src_w = plane->state->src_w >> 16; |
| 280 | src_h = plane->state->src_h >> 16; |
Brian Starkey | edabb3c | 2016-12-07 13:17:21 +0000 | [diff] [blame] | 281 | dest_w = plane->state->crtc_w; |
| 282 | dest_h = plane->state->crtc_h; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 283 | |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 284 | malidp_hw_write(mp->hwdev, ms->format, mp->layer->base); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 285 | |
Brian Starkey | 70c94a3 | 2016-10-11 15:26:09 +0100 | [diff] [blame] | 286 | for (i = 0; i < ms->n_planes; i++) { |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 287 | /* calculate the offset for the layer's plane registers */ |
| 288 | ptr = mp->layer->ptr + (i << 4); |
| 289 | |
| 290 | obj = drm_fb_cma_get_gem_obj(plane->state->fb, i); |
Liviu Dudau | b70b332 | 2017-01-25 17:40:02 +0000 | [diff] [blame] | 291 | obj->paddr += plane->state->fb->offsets[i]; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 292 | malidp_hw_write(mp->hwdev, lower_32_bits(obj->paddr), ptr); |
| 293 | malidp_hw_write(mp->hwdev, upper_32_bits(obj->paddr), ptr + 4); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 294 | } |
Mihail Atanassov | 83d642e | 2017-01-23 15:24:35 +0000 | [diff] [blame] | 295 | malidp_de_set_plane_pitches(mp, ms->n_planes, |
| 296 | plane->state->fb->pitches); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 297 | |
| 298 | malidp_hw_write(mp->hwdev, LAYER_H_VAL(src_w) | LAYER_V_VAL(src_h), |
| 299 | mp->layer->base + MALIDP_LAYER_SIZE); |
| 300 | |
| 301 | malidp_hw_write(mp->hwdev, LAYER_H_VAL(dest_w) | LAYER_V_VAL(dest_h), |
| 302 | mp->layer->base + MALIDP_LAYER_COMP_SIZE); |
| 303 | |
| 304 | malidp_hw_write(mp->hwdev, LAYER_H_VAL(plane->state->crtc_x) | |
| 305 | LAYER_V_VAL(plane->state->crtc_y), |
| 306 | mp->layer->base + MALIDP_LAYER_OFFSET); |
| 307 | |
Mihail Atanassov | d1479f6 | 2017-02-09 11:32:00 +0000 | [diff] [blame] | 308 | if (mp->layer->id == DE_SMART) |
| 309 | malidp_hw_write(mp->hwdev, |
| 310 | LAYER_H_VAL(src_w) | LAYER_V_VAL(src_h), |
| 311 | mp->layer->base + MALIDP550_LS_R1_IN_SIZE); |
| 312 | |
Brian Starkey | c57eb71 | 2016-10-11 15:26:08 +0100 | [diff] [blame] | 313 | /* first clear the rotation bits */ |
| 314 | val = malidp_hw_read(mp->hwdev, mp->layer->base + MALIDP_LAYER_CONTROL); |
| 315 | val &= ~LAYER_ROT_MASK; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 316 | |
| 317 | /* setup the rotation and axis flip bits */ |
| 318 | if (plane->state->rotation & DRM_ROTATE_MASK) |
Mihail Atanassov | c7ffa59 | 2016-12-23 09:57:20 +0000 | [diff] [blame] | 319 | val |= ilog2(plane->state->rotation & DRM_ROTATE_MASK) << |
| 320 | LAYER_ROT_OFFSET; |
Joonas Lahtinen | 31ad61e | 2016-07-29 08:50:05 +0300 | [diff] [blame] | 321 | if (plane->state->rotation & DRM_REFLECT_X) |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 322 | val |= LAYER_H_FLIP; |
Brian Starkey | 7916efe | 2016-12-07 13:20:28 +0000 | [diff] [blame] | 323 | if (plane->state->rotation & DRM_REFLECT_Y) |
| 324 | val |= LAYER_V_FLIP; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 325 | |
Brian Starkey | c57eb71 | 2016-10-11 15:26:08 +0100 | [diff] [blame] | 326 | /* |
| 327 | * always enable pixel alpha blending until we have a way to change |
| 328 | * blend modes |
| 329 | */ |
| 330 | val &= ~LAYER_COMP_MASK; |
| 331 | val |= LAYER_COMP_PIXEL; |
| 332 | |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame^] | 333 | val &= ~LAYER_FLOWCFG(LAYER_FLOWCFG_MASK); |
| 334 | if (plane->state->crtc) { |
| 335 | struct malidp_crtc_state *m = |
| 336 | to_malidp_crtc_state(plane->state->crtc->state); |
| 337 | |
| 338 | if (m->scaler_config.scale_enable && |
| 339 | m->scaler_config.plane_src_id == mp->layer->id) |
| 340 | val |= LAYER_FLOWCFG(LAYER_FLOWCFG_SCALE_SE); |
| 341 | } |
| 342 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 343 | /* set the 'enable layer' bit */ |
| 344 | val |= LAYER_ENABLE; |
| 345 | |
Brian Starkey | c57eb71 | 2016-10-11 15:26:08 +0100 | [diff] [blame] | 346 | malidp_hw_write(mp->hwdev, val, |
| 347 | mp->layer->base + MALIDP_LAYER_CONTROL); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | static void malidp_de_plane_disable(struct drm_plane *plane, |
| 351 | struct drm_plane_state *state) |
| 352 | { |
| 353 | struct malidp_plane *mp = to_malidp_plane(plane); |
| 354 | |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame^] | 355 | malidp_hw_clearbits(mp->hwdev, |
| 356 | LAYER_ENABLE | LAYER_FLOWCFG(LAYER_FLOWCFG_MASK), |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 357 | mp->layer->base + MALIDP_LAYER_CONTROL); |
| 358 | } |
| 359 | |
| 360 | static const struct drm_plane_helper_funcs malidp_de_plane_helper_funcs = { |
| 361 | .atomic_check = malidp_de_plane_check, |
| 362 | .atomic_update = malidp_de_plane_update, |
| 363 | .atomic_disable = malidp_de_plane_disable, |
| 364 | }; |
| 365 | |
| 366 | int malidp_de_planes_init(struct drm_device *drm) |
| 367 | { |
| 368 | struct malidp_drm *malidp = drm->dev_private; |
| 369 | const struct malidp_hw_regmap *map = &malidp->dev->map; |
| 370 | struct malidp_plane *plane = NULL; |
| 371 | enum drm_plane_type plane_type; |
| 372 | unsigned long crtcs = 1 << drm->mode_config.num_crtc; |
Brian Starkey | 1580778 | 2016-10-11 15:26:07 +0100 | [diff] [blame] | 373 | unsigned long flags = DRM_ROTATE_0 | DRM_ROTATE_90 | DRM_ROTATE_180 | |
| 374 | DRM_ROTATE_270 | DRM_REFLECT_X | DRM_REFLECT_Y; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 375 | u32 *formats; |
| 376 | int ret, i, j, n; |
| 377 | |
Brian Starkey | 6211b48 | 2016-10-03 15:08:12 +0100 | [diff] [blame] | 378 | formats = kcalloc(map->n_pixel_formats, sizeof(*formats), GFP_KERNEL); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 379 | if (!formats) { |
| 380 | ret = -ENOMEM; |
| 381 | goto cleanup; |
| 382 | } |
| 383 | |
| 384 | for (i = 0; i < map->n_layers; i++) { |
| 385 | u8 id = map->layers[i].id; |
| 386 | |
| 387 | plane = kzalloc(sizeof(*plane), GFP_KERNEL); |
| 388 | if (!plane) { |
| 389 | ret = -ENOMEM; |
| 390 | goto cleanup; |
| 391 | } |
| 392 | |
| 393 | /* build the list of DRM supported formats based on the map */ |
Brian Starkey | 6211b48 | 2016-10-03 15:08:12 +0100 | [diff] [blame] | 394 | for (n = 0, j = 0; j < map->n_pixel_formats; j++) { |
| 395 | if ((map->pixel_formats[j].layer & id) == id) |
| 396 | formats[n++] = map->pixel_formats[j].format; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | plane_type = (i == 0) ? DRM_PLANE_TYPE_PRIMARY : |
| 400 | DRM_PLANE_TYPE_OVERLAY; |
| 401 | ret = drm_universal_plane_init(drm, &plane->base, crtcs, |
| 402 | &malidp_de_plane_funcs, formats, |
| 403 | n, plane_type, NULL); |
| 404 | if (ret < 0) |
| 405 | goto cleanup; |
| 406 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 407 | drm_plane_helper_add(&plane->base, |
| 408 | &malidp_de_plane_helper_funcs); |
| 409 | plane->hwdev = malidp->dev; |
| 410 | plane->layer = &map->layers[i]; |
Brian Starkey | 1580778 | 2016-10-11 15:26:07 +0100 | [diff] [blame] | 411 | |
Mihail Atanassov | d1479f6 | 2017-02-09 11:32:00 +0000 | [diff] [blame] | 412 | if (id == DE_SMART) { |
| 413 | /* |
| 414 | * Enable the first rectangle in the SMART layer to be |
| 415 | * able to use it as a drm plane. |
| 416 | */ |
| 417 | malidp_hw_write(malidp->dev, 1, |
| 418 | plane->layer->base + MALIDP550_LS_ENABLE); |
| 419 | /* Skip the features which the SMART layer doesn't have. */ |
Brian Starkey | 1580778 | 2016-10-11 15:26:07 +0100 | [diff] [blame] | 420 | continue; |
Mihail Atanassov | d1479f6 | 2017-02-09 11:32:00 +0000 | [diff] [blame] | 421 | } |
Brian Starkey | 1580778 | 2016-10-11 15:26:07 +0100 | [diff] [blame] | 422 | |
| 423 | drm_plane_create_rotation_property(&plane->base, DRM_ROTATE_0, flags); |
Brian Starkey | c57eb71 | 2016-10-11 15:26:08 +0100 | [diff] [blame] | 424 | malidp_hw_write(malidp->dev, MALIDP_ALPHA_LUT, |
| 425 | plane->layer->base + MALIDP_LAYER_COMPOSE); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | kfree(formats); |
| 429 | |
| 430 | return 0; |
| 431 | |
| 432 | cleanup: |
| 433 | malidp_de_planes_destroy(drm); |
| 434 | kfree(formats); |
| 435 | |
| 436 | return ret; |
| 437 | } |
| 438 | |
| 439 | void malidp_de_planes_destroy(struct drm_device *drm) |
| 440 | { |
| 441 | struct drm_plane *p, *pt; |
| 442 | |
| 443 | list_for_each_entry_safe(p, pt, &drm->mode_config.plane_list, head) { |
| 444 | drm_plane_cleanup(p); |
| 445 | kfree(p); |
| 446 | } |
| 447 | } |