blob: 8845647d5befaa1de2159ba124ee2fb332b52f70 [file] [log] [blame]
Liviu Dudauad49f862016-03-07 10:00:53 +00001/*
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 Dudaub9c33152016-11-25 14:28:54 +000014#include <drm/drm_atomic.h>
Liviu Dudauad49f862016-03-07 10:00:53 +000015#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 Starkeyc57eb712016-10-11 15:26:08 +010031#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 Dudauad49f862016-03-07 10:00:53 +000035#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 Starkeyc57eb712016-10-11 15:26:08 +010042/*
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 Dudauad49f862016-03-07 10:00:53 +000050static 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 Xieed8b0c02016-10-22 17:13:01 +080062static struct
63drm_plane_state *malidp_duplicate_plane_state(struct drm_plane *plane)
Liviu Dudauad49f862016-03-07 10:00:53 +000064{
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 Verma94d8b9b2016-11-11 13:35:00 +000071 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 Dudauad49f862016-03-07 10:00:53 +000079
80 return &state->base;
81}
82
Baoyou Xieed8b0c02016-10-22 17:13:01 +080083static void malidp_destroy_plane_state(struct drm_plane *plane,
84 struct drm_plane_state *state)
Liviu Dudauad49f862016-03-07 10:00:53 +000085{
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
92static 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 Dudau2fe1f082016-10-24 18:35:09 +010095 .set_property = drm_atomic_helper_plane_set_property,
Liviu Dudauad49f862016-03-07 10:00:53 +000096 .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
102static 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 Dudaub9c33152016-11-25 14:28:54 +0000107 struct drm_crtc_state *crtc_state;
Brian Starkeya46a0962016-10-11 15:26:05 +0100108 struct drm_framebuffer *fb;
Liviu Dudaub9c33152016-11-25 14:28:54 +0000109 struct drm_rect clip = { 0 };
110 int i, ret;
Liviu Dudauad49f862016-03-07 10:00:53 +0000111 u32 src_w, src_h;
112
113 if (!state->crtc || !state->fb)
114 return 0;
115
Brian Starkeya46a0962016-10-11 15:26:05 +0100116 fb = state->fb;
117
Brian Starkey70c94a32016-10-11 15:26:09 +0100118 ms->format = malidp_hw_get_format_id(&mp->hwdev->map, mp->layer->id,
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200119 fb->format->format);
Brian Starkey70c94a32016-10-11 15:26:09 +0100120 if (ms->format == MALIDP_INVALID_FORMAT_ID)
Liviu Dudauad49f862016-03-07 10:00:53 +0000121 return -EINVAL;
122
Ville Syrjäläbcb0b462016-12-14 23:30:22 +0200123 ms->n_planes = fb->format->num_planes;
Brian Starkey70c94a32016-10-11 15:26:09 +0100124 for (i = 0; i < ms->n_planes; i++) {
Brian Starkeya46a0962016-10-11 15:26:05 +0100125 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 Dudauad49f862016-03-07 10:00:53 +0000132 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 Starkeyb2a2ddb2016-12-07 13:14:51 +0000138 (state->crtc_h < mp->hwdev->min_line_size))
Liviu Dudauad49f862016-03-07 10:00:53 +0000139 return -EINVAL;
140
141 /* packed RGB888 / BGR888 can't be rotated or flipped */
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +0300142 if (state->rotation != DRM_ROTATE_0 &&
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200143 (fb->format->format == DRM_FORMAT_RGB888 ||
144 fb->format->format == DRM_FORMAT_BGR888))
Liviu Dudauad49f862016-03-07 10:00:53 +0000145 return -EINVAL;
146
Liviu Dudaub9c33152016-11-25 14:28:54 +0000147 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 Dudauad49f862016-03-07 10:00:53 +0000157 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ä438b74a2016-12-14 23:32:55 +0200163 fb->format->format);
Liviu Dudauad49f862016-03-07 10:00:53 +0000164 if (val < 0)
165 return val;
166
167 ms->rotmem_size = val;
168 }
169
170 return 0;
171}
172
173static 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 Starkey70c94a32016-10-11 15:26:09 +0100179 struct malidp_plane_state *ms = to_malidp_plane_state(plane->state);
Liviu Dudauad49f862016-03-07 10:00:53 +0000180 u16 ptr;
Brian Starkey70c94a32016-10-11 15:26:09 +0100181 u32 src_w, src_h, dest_w, dest_h, val;
182 int i;
Liviu Dudauad49f862016-03-07 10:00:53 +0000183
184 mp = to_malidp_plane(plane);
Liviu Dudauad49f862016-03-07 10:00:53 +0000185 map = &mp->hwdev->map;
Liviu Dudauad49f862016-03-07 10:00:53 +0000186
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 Starkeyedabb3c2016-12-07 13:17:21 +0000190 dest_w = plane->state->crtc_w;
191 dest_h = plane->state->crtc_h;
Liviu Dudauad49f862016-03-07 10:00:53 +0000192
Brian Starkey70c94a32016-10-11 15:26:09 +0100193 malidp_hw_write(mp->hwdev, ms->format, mp->layer->base);
Liviu Dudauad49f862016-03-07 10:00:53 +0000194
Brian Starkey70c94a32016-10-11 15:26:09 +0100195 for (i = 0; i < ms->n_planes; i++) {
Liviu Dudauad49f862016-03-07 10:00:53 +0000196 /* 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 Starkeyc57eb712016-10-11 15:26:08 +0100216 /* first clear the rotation bits */
217 val = malidp_hw_read(mp->hwdev, mp->layer->base + MALIDP_LAYER_CONTROL);
218 val &= ~LAYER_ROT_MASK;
Liviu Dudauad49f862016-03-07 10:00:53 +0000219
220 /* setup the rotation and axis flip bits */
221 if (plane->state->rotation & DRM_ROTATE_MASK)
Mihail Atanassovc7ffa592016-12-23 09:57:20 +0000222 val |= ilog2(plane->state->rotation & DRM_ROTATE_MASK) <<
223 LAYER_ROT_OFFSET;
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +0300224 if (plane->state->rotation & DRM_REFLECT_X)
Liviu Dudauad49f862016-03-07 10:00:53 +0000225 val |= LAYER_H_FLIP;
Brian Starkey7916efe2016-12-07 13:20:28 +0000226 if (plane->state->rotation & DRM_REFLECT_Y)
227 val |= LAYER_V_FLIP;
Liviu Dudauad49f862016-03-07 10:00:53 +0000228
Brian Starkeyc57eb712016-10-11 15:26:08 +0100229 /*
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 Dudauad49f862016-03-07 10:00:53 +0000236 /* set the 'enable layer' bit */
237 val |= LAYER_ENABLE;
238
Brian Starkeyc57eb712016-10-11 15:26:08 +0100239 malidp_hw_write(mp->hwdev, val,
240 mp->layer->base + MALIDP_LAYER_CONTROL);
Liviu Dudauad49f862016-03-07 10:00:53 +0000241}
242
243static 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
252static 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
258int 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 Starkey15807782016-10-11 15:26:07 +0100265 unsigned long flags = DRM_ROTATE_0 | DRM_ROTATE_90 | DRM_ROTATE_180 |
266 DRM_ROTATE_270 | DRM_REFLECT_X | DRM_REFLECT_Y;
Liviu Dudauad49f862016-03-07 10:00:53 +0000267 u32 *formats;
268 int ret, i, j, n;
269
Brian Starkey6211b482016-10-03 15:08:12 +0100270 formats = kcalloc(map->n_pixel_formats, sizeof(*formats), GFP_KERNEL);
Liviu Dudauad49f862016-03-07 10:00:53 +0000271 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 Starkey6211b482016-10-03 15:08:12 +0100286 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 Dudauad49f862016-03-07 10:00:53 +0000289 }
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 Dudauad49f862016-03-07 10:00:53 +0000299 drm_plane_helper_add(&plane->base,
300 &malidp_de_plane_helper_funcs);
301 plane->hwdev = malidp->dev;
302 plane->layer = &map->layers[i];
Brian Starkey15807782016-10-11 15:26:07 +0100303
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 Starkeyc57eb712016-10-11 15:26:08 +0100309 malidp_hw_write(malidp->dev, MALIDP_ALPHA_LUT,
310 plane->layer->base + MALIDP_LAYER_COMPOSE);
Liviu Dudauad49f862016-03-07 10:00:53 +0000311 }
312
313 kfree(formats);
314
315 return 0;
316
317cleanup:
318 malidp_de_planes_destroy(drm);
319 kfree(formats);
320
321 return ret;
322}
323
324void 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}