1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2017 NVIDIA CORPORATION. All rights reserved.
6 #include <linux/iommu.h>
8 #include <drm/drm_atomic.h>
9 #include <drm/drm_atomic_helper.h>
10 #include <drm/drm_fourcc.h>
11 #include <drm/drm_gem_framebuffer_helper.h>
12 #include <drm/drm_plane_helper.h>
17 static void tegra_plane_destroy(struct drm_plane *plane)
19 struct tegra_plane *p = to_tegra_plane(plane);
21 drm_plane_cleanup(plane);
25 static void tegra_plane_reset(struct drm_plane *plane)
27 struct tegra_plane *p = to_tegra_plane(plane);
28 struct tegra_plane_state *state;
32 __drm_atomic_helper_plane_destroy_state(plane->state);
37 state = kzalloc(sizeof(*state), GFP_KERNEL);
39 plane->state = &state->base;
40 plane->state->plane = plane;
41 plane->state->zpos = p->index;
42 plane->state->normalized_zpos = p->index;
44 for (i = 0; i < 3; i++)
45 state->iova[i] = DMA_MAPPING_ERROR;
49 static struct drm_plane_state *
50 tegra_plane_atomic_duplicate_state(struct drm_plane *plane)
52 struct tegra_plane_state *state = to_tegra_plane_state(plane->state);
53 struct tegra_plane_state *copy;
56 copy = kmalloc(sizeof(*copy), GFP_KERNEL);
60 __drm_atomic_helper_plane_duplicate_state(plane, ©->base);
61 copy->tiling = state->tiling;
62 copy->format = state->format;
63 copy->swap = state->swap;
64 copy->bottom_up = state->bottom_up;
65 copy->opaque = state->opaque;
67 for (i = 0; i < 2; i++)
68 copy->blending[i] = state->blending[i];
70 for (i = 0; i < 3; i++) {
71 copy->iova[i] = DMA_MAPPING_ERROR;
78 static void tegra_plane_atomic_destroy_state(struct drm_plane *plane,
79 struct drm_plane_state *state)
81 __drm_atomic_helper_plane_destroy_state(state);
85 static bool tegra_plane_format_mod_supported(struct drm_plane *plane,
89 const struct drm_format_info *info = drm_format_info(format);
91 if (modifier == DRM_FORMAT_MOD_LINEAR)
94 if (info->num_planes == 1)
100 const struct drm_plane_funcs tegra_plane_funcs = {
101 .update_plane = drm_atomic_helper_update_plane,
102 .disable_plane = drm_atomic_helper_disable_plane,
103 .destroy = tegra_plane_destroy,
104 .reset = tegra_plane_reset,
105 .atomic_duplicate_state = tegra_plane_atomic_duplicate_state,
106 .atomic_destroy_state = tegra_plane_atomic_destroy_state,
107 .format_mod_supported = tegra_plane_format_mod_supported,
110 static int tegra_dc_pin(struct tegra_dc *dc, struct tegra_plane_state *state)
112 struct iommu_domain *domain = iommu_get_domain_for_dev(dc->dev);
116 for (i = 0; i < state->base.fb->format->num_planes; i++) {
117 struct tegra_bo *bo = tegra_fb_get_plane(state->base.fb, i);
118 dma_addr_t phys_addr, *phys;
119 struct sg_table *sgt;
121 if (!domain || dc->client.group)
126 sgt = host1x_bo_pin(dc->dev, &bo->base, phys);
133 err = dma_map_sg(dc->dev, sgt->sgl, sgt->nents,
141 * The display controller needs contiguous memory, so
142 * fail if the buffer is discontiguous and we fail to
143 * map its SG table to a single contiguous chunk of
144 * I/O virtual memory.
151 state->iova[i] = sg_dma_address(sgt->sgl);
154 state->iova[i] = phys_addr;
161 dev_err(dc->dev, "failed to map plane %u: %d\n", i, err);
164 struct tegra_bo *bo = tegra_fb_get_plane(state->base.fb, i);
165 struct sg_table *sgt = state->sgt[i];
168 dma_unmap_sg(dc->dev, sgt->sgl, sgt->nents,
171 host1x_bo_unpin(dc->dev, &bo->base, sgt);
172 state->iova[i] = DMA_MAPPING_ERROR;
173 state->sgt[i] = NULL;
179 static void tegra_dc_unpin(struct tegra_dc *dc, struct tegra_plane_state *state)
183 for (i = 0; i < state->base.fb->format->num_planes; i++) {
184 struct tegra_bo *bo = tegra_fb_get_plane(state->base.fb, i);
185 struct sg_table *sgt = state->sgt[i];
188 dma_unmap_sg(dc->dev, sgt->sgl, sgt->nents,
191 host1x_bo_unpin(dc->dev, &bo->base, sgt);
192 state->iova[i] = DMA_MAPPING_ERROR;
193 state->sgt[i] = NULL;
197 int tegra_plane_prepare_fb(struct drm_plane *plane,
198 struct drm_plane_state *state)
200 struct tegra_dc *dc = to_tegra_dc(state->crtc);
205 drm_gem_fb_prepare_fb(plane, state);
207 return tegra_dc_pin(dc, to_tegra_plane_state(state));
210 void tegra_plane_cleanup_fb(struct drm_plane *plane,
211 struct drm_plane_state *state)
213 struct tegra_dc *dc = to_tegra_dc(state->crtc);
216 tegra_dc_unpin(dc, to_tegra_plane_state(state));
219 int tegra_plane_state_add(struct tegra_plane *plane,
220 struct drm_plane_state *state)
222 struct drm_crtc_state *crtc_state;
223 struct tegra_dc_state *tegra;
226 /* Propagate errors from allocation or locking failures. */
227 crtc_state = drm_atomic_get_crtc_state(state->state, state->crtc);
228 if (IS_ERR(crtc_state))
229 return PTR_ERR(crtc_state);
231 /* Check plane state for visibility and calculate clipping bounds */
232 err = drm_atomic_helper_check_plane_state(state, crtc_state,
233 0, INT_MAX, true, true);
237 tegra = to_dc_state(crtc_state);
239 tegra->planes |= WIN_A_ACT_REQ << plane->index;
244 int tegra_plane_format(u32 fourcc, u32 *format, u32 *swap)
246 /* assume no swapping of fetched data */
248 *swap = BYTE_SWAP_NOSWAP;
251 case DRM_FORMAT_ARGB4444:
252 *format = WIN_COLOR_DEPTH_B4G4R4A4;
255 case DRM_FORMAT_ARGB1555:
256 *format = WIN_COLOR_DEPTH_B5G5R5A1;
259 case DRM_FORMAT_RGB565:
260 *format = WIN_COLOR_DEPTH_B5G6R5;
263 case DRM_FORMAT_RGBA5551:
264 *format = WIN_COLOR_DEPTH_A1B5G5R5;
267 case DRM_FORMAT_ARGB8888:
268 *format = WIN_COLOR_DEPTH_B8G8R8A8;
271 case DRM_FORMAT_ABGR8888:
272 *format = WIN_COLOR_DEPTH_R8G8B8A8;
275 case DRM_FORMAT_ABGR4444:
276 *format = WIN_COLOR_DEPTH_R4G4B4A4;
279 case DRM_FORMAT_ABGR1555:
280 *format = WIN_COLOR_DEPTH_R5G5B5A;
283 case DRM_FORMAT_BGRA5551:
284 *format = WIN_COLOR_DEPTH_AR5G5B5;
287 case DRM_FORMAT_XRGB1555:
288 *format = WIN_COLOR_DEPTH_B5G5R5X1;
291 case DRM_FORMAT_RGBX5551:
292 *format = WIN_COLOR_DEPTH_X1B5G5R5;
295 case DRM_FORMAT_XBGR1555:
296 *format = WIN_COLOR_DEPTH_R5G5B5X1;
299 case DRM_FORMAT_BGRX5551:
300 *format = WIN_COLOR_DEPTH_X1R5G5B5;
303 case DRM_FORMAT_BGR565:
304 *format = WIN_COLOR_DEPTH_R5G6B5;
307 case DRM_FORMAT_BGRA8888:
308 *format = WIN_COLOR_DEPTH_A8R8G8B8;
311 case DRM_FORMAT_RGBA8888:
312 *format = WIN_COLOR_DEPTH_A8B8G8R8;
315 case DRM_FORMAT_XRGB8888:
316 *format = WIN_COLOR_DEPTH_B8G8R8X8;
319 case DRM_FORMAT_XBGR8888:
320 *format = WIN_COLOR_DEPTH_R8G8B8X8;
323 case DRM_FORMAT_UYVY:
324 *format = WIN_COLOR_DEPTH_YCbCr422;
327 case DRM_FORMAT_YUYV:
331 *format = WIN_COLOR_DEPTH_YCbCr422;
332 *swap = BYTE_SWAP_SWAP2;
335 case DRM_FORMAT_YUV420:
336 *format = WIN_COLOR_DEPTH_YCbCr420P;
339 case DRM_FORMAT_YUV422:
340 *format = WIN_COLOR_DEPTH_YCbCr422P;
350 bool tegra_plane_format_is_yuv(unsigned int format, bool *planar)
353 case WIN_COLOR_DEPTH_YCbCr422:
354 case WIN_COLOR_DEPTH_YUV422:
360 case WIN_COLOR_DEPTH_YCbCr420P:
361 case WIN_COLOR_DEPTH_YUV420P:
362 case WIN_COLOR_DEPTH_YCbCr422P:
363 case WIN_COLOR_DEPTH_YUV422P:
364 case WIN_COLOR_DEPTH_YCbCr422R:
365 case WIN_COLOR_DEPTH_YUV422R:
366 case WIN_COLOR_DEPTH_YCbCr422RA:
367 case WIN_COLOR_DEPTH_YUV422RA:
380 static bool __drm_format_has_alpha(u32 format)
383 case DRM_FORMAT_ARGB1555:
384 case DRM_FORMAT_RGBA5551:
385 case DRM_FORMAT_ABGR8888:
386 case DRM_FORMAT_ARGB8888:
393 static int tegra_plane_format_get_alpha(unsigned int opaque,
396 if (tegra_plane_format_is_yuv(opaque, NULL)) {
402 case WIN_COLOR_DEPTH_B5G5R5X1:
403 *alpha = WIN_COLOR_DEPTH_B5G5R5A1;
406 case WIN_COLOR_DEPTH_X1B5G5R5:
407 *alpha = WIN_COLOR_DEPTH_A1B5G5R5;
410 case WIN_COLOR_DEPTH_R8G8B8X8:
411 *alpha = WIN_COLOR_DEPTH_R8G8B8A8;
414 case WIN_COLOR_DEPTH_B8G8R8X8:
415 *alpha = WIN_COLOR_DEPTH_B8G8R8A8;
418 case WIN_COLOR_DEPTH_B5G6R5:
427 * This is applicable to Tegra20 and Tegra30 only where the opaque formats can
428 * be emulated using the alpha formats and alpha blending disabled.
430 static int tegra_plane_setup_opacity(struct tegra_plane *tegra,
431 struct tegra_plane_state *state)
436 switch (state->format) {
437 case WIN_COLOR_DEPTH_B5G5R5A1:
438 case WIN_COLOR_DEPTH_A1B5G5R5:
439 case WIN_COLOR_DEPTH_R8G8B8A8:
440 case WIN_COLOR_DEPTH_B8G8R8A8:
441 state->opaque = false;
445 err = tegra_plane_format_get_alpha(state->format, &format);
449 state->format = format;
450 state->opaque = true;
457 static int tegra_plane_check_transparency(struct tegra_plane *tegra,
458 struct tegra_plane_state *state)
460 struct drm_plane_state *old, *plane_state;
461 struct drm_plane *plane;
463 old = drm_atomic_get_old_plane_state(state->base.state, &tegra->base);
465 /* check if zpos / transparency changed */
466 if (old->normalized_zpos == state->base.normalized_zpos &&
467 to_tegra_plane_state(old)->opaque == state->opaque)
470 /* include all sibling planes into this commit */
471 drm_for_each_plane(plane, tegra->base.dev) {
472 struct tegra_plane *p = to_tegra_plane(plane);
474 /* skip this plane and planes on different CRTCs */
475 if (p == tegra || p->dc != tegra->dc)
478 plane_state = drm_atomic_get_plane_state(state->base.state,
480 if (IS_ERR(plane_state))
481 return PTR_ERR(plane_state);
487 static unsigned int tegra_plane_get_overlap_index(struct tegra_plane *plane,
488 struct tegra_plane *other)
490 unsigned int index = 0, i;
492 WARN_ON(plane == other);
494 for (i = 0; i < 3; i++) {
495 if (i == plane->index)
498 if (i == other->index)
507 static void tegra_plane_update_transparency(struct tegra_plane *tegra,
508 struct tegra_plane_state *state)
510 struct drm_plane_state *new;
511 struct drm_plane *plane;
514 for_each_new_plane_in_state(state->base.state, plane, new, i) {
515 struct tegra_plane *p = to_tegra_plane(plane);
518 /* skip this plane and planes on different CRTCs */
519 if (p == tegra || p->dc != tegra->dc)
522 index = tegra_plane_get_overlap_index(tegra, p);
524 if (new->fb && __drm_format_has_alpha(new->fb->format->format))
525 state->blending[index].alpha = true;
527 state->blending[index].alpha = false;
529 if (new->normalized_zpos > state->base.normalized_zpos)
530 state->blending[index].top = true;
532 state->blending[index].top = false;
535 * Missing framebuffer means that plane is disabled, in this
536 * case mark B / C window as top to be able to differentiate
537 * windows indices order in regards to zPos for the middle
538 * window X / Y registers programming.
541 state->blending[index].top = (index == 1);
545 static int tegra_plane_setup_transparency(struct tegra_plane *tegra,
546 struct tegra_plane_state *state)
548 struct tegra_plane_state *tegra_state;
549 struct drm_plane_state *new;
550 struct drm_plane *plane;
554 * If planes zpos / transparency changed, sibling planes blending
555 * state may require adjustment and in this case they will be included
556 * into this atom commit, otherwise blending state is unchanged.
558 err = tegra_plane_check_transparency(tegra, state);
563 * All planes are now in the atomic state, walk them up and update
564 * transparency state for each plane.
566 drm_for_each_plane(plane, tegra->base.dev) {
567 struct tegra_plane *p = to_tegra_plane(plane);
569 /* skip planes on different CRTCs */
570 if (p->dc != tegra->dc)
573 new = drm_atomic_get_new_plane_state(state->base.state, plane);
574 tegra_state = to_tegra_plane_state(new);
577 * There is no need to update blending state for the disabled
581 tegra_plane_update_transparency(p, tegra_state);
587 int tegra_plane_setup_legacy_state(struct tegra_plane *tegra,
588 struct tegra_plane_state *state)
592 err = tegra_plane_setup_opacity(tegra, state);
596 err = tegra_plane_setup_transparency(tegra, state);