Linux Audio

Check our new training course

Loading...
v4.6
 
  1/*
  2 * rcar_du_vsp.h  --  R-Car Display Unit VSP-Based Compositor
  3 *
  4 * Copyright (C) 2015 Renesas Electronics Corporation
  5 *
  6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
  7 *
  8 * This program is free software; you can redistribute it and/or modify
  9 * it under the terms of the GNU General Public License as published by
 10 * the Free Software Foundation; either version 2 of the License, or
 11 * (at your option) any later version.
 12 */
 13
 14#include <drm/drmP.h>
 15#include <drm/drm_atomic_helper.h>
 
 16#include <drm/drm_crtc.h>
 17#include <drm/drm_crtc_helper.h>
 18#include <drm/drm_fb_cma_helper.h>
 19#include <drm/drm_gem_cma_helper.h>
 20#include <drm/drm_plane_helper.h>
 
 
 
 21
 
 
 22#include <linux/of_platform.h>
 
 
 23#include <linux/videodev2.h>
 24
 25#include <media/vsp1.h>
 26
 27#include "rcar_du_drv.h"
 28#include "rcar_du_kms.h"
 29#include "rcar_du_vsp.h"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 30
 31void rcar_du_vsp_enable(struct rcar_du_crtc *crtc)
 32{
 33	const struct drm_display_mode *mode = &crtc->crtc.state->adjusted_mode;
 34	struct rcar_du_device *rcdu = crtc->group->dev;
 
 
 
 
 
 
 
 35	struct rcar_du_plane_state state = {
 36		.state = {
 
 37			.crtc = &crtc->crtc,
 38			.crtc_x = 0,
 39			.crtc_y = 0,
 40			.crtc_w = mode->hdisplay,
 41			.crtc_h = mode->vdisplay,
 42			.src_x = 0,
 43			.src_y = 0,
 44			.src_w = mode->hdisplay << 16,
 45			.src_h = mode->vdisplay << 16,
 
 46		},
 47		.format = rcar_du_format_info(DRM_FORMAT_ARGB8888),
 48		.source = RCAR_DU_PLANE_VSPD1,
 49		.alpha = 255,
 50		.colorkey = 0,
 51		.zpos = 0,
 52	};
 53
 54	if (rcdu->info->gen >= 3)
 55		state.hwindex = (crtc->index % 2) ? 2 : 0;
 56	else
 57		state.hwindex = crtc->index % 2;
 58
 59	__rcar_du_plane_setup(crtc->group, &state);
 60
 61	/* Ensure that the plane source configuration takes effect by requesting
 62	 * a restart of the group. See rcar_du_plane_atomic_update() for a more
 63	 * detailed explanation.
 64	 *
 65	 * TODO: Check whether this is still needed on Gen3.
 66	 */
 67	crtc->group->need_restart = true;
 68
 69	vsp1_du_setup_lif(crtc->vsp->vsp, mode->hdisplay, mode->vdisplay);
 70}
 71
 72void rcar_du_vsp_disable(struct rcar_du_crtc *crtc)
 73{
 74	vsp1_du_setup_lif(crtc->vsp->vsp, 0, 0);
 75}
 76
 77void rcar_du_vsp_atomic_begin(struct rcar_du_crtc *crtc)
 78{
 79	vsp1_du_atomic_begin(crtc->vsp->vsp);
 80}
 81
 82void rcar_du_vsp_atomic_flush(struct rcar_du_crtc *crtc)
 83{
 84	vsp1_du_atomic_flush(crtc->vsp->vsp);
 
 
 
 
 
 
 
 
 85}
 86
 87/* Keep the two tables in sync. */
 88static const u32 formats_kms[] = {
 89	DRM_FORMAT_RGB332,
 90	DRM_FORMAT_ARGB4444,
 91	DRM_FORMAT_XRGB4444,
 92	DRM_FORMAT_ARGB1555,
 93	DRM_FORMAT_XRGB1555,
 94	DRM_FORMAT_RGB565,
 95	DRM_FORMAT_BGR888,
 96	DRM_FORMAT_RGB888,
 97	DRM_FORMAT_BGRA8888,
 98	DRM_FORMAT_BGRX8888,
 99	DRM_FORMAT_ARGB8888,
100	DRM_FORMAT_XRGB8888,
101	DRM_FORMAT_UYVY,
102	DRM_FORMAT_VYUY,
103	DRM_FORMAT_YUYV,
104	DRM_FORMAT_YVYU,
105	DRM_FORMAT_NV12,
106	DRM_FORMAT_NV21,
107	DRM_FORMAT_NV16,
108	DRM_FORMAT_NV61,
109	DRM_FORMAT_YUV420,
110	DRM_FORMAT_YVU420,
111	DRM_FORMAT_YUV422,
112	DRM_FORMAT_YVU422,
113	DRM_FORMAT_YUV444,
114	DRM_FORMAT_YVU444,
115};
116
117static const u32 formats_v4l2[] = {
118	V4L2_PIX_FMT_RGB332,
119	V4L2_PIX_FMT_ARGB444,
120	V4L2_PIX_FMT_XRGB444,
121	V4L2_PIX_FMT_ARGB555,
122	V4L2_PIX_FMT_XRGB555,
123	V4L2_PIX_FMT_RGB565,
124	V4L2_PIX_FMT_RGB24,
125	V4L2_PIX_FMT_BGR24,
126	V4L2_PIX_FMT_ARGB32,
127	V4L2_PIX_FMT_XRGB32,
128	V4L2_PIX_FMT_ABGR32,
129	V4L2_PIX_FMT_XBGR32,
130	V4L2_PIX_FMT_UYVY,
131	V4L2_PIX_FMT_VYUY,
132	V4L2_PIX_FMT_YUYV,
133	V4L2_PIX_FMT_YVYU,
134	V4L2_PIX_FMT_NV12M,
135	V4L2_PIX_FMT_NV21M,
136	V4L2_PIX_FMT_NV16M,
137	V4L2_PIX_FMT_NV61M,
138	V4L2_PIX_FMT_YUV420M,
139	V4L2_PIX_FMT_YVU420M,
140	V4L2_PIX_FMT_YUV422M,
141	V4L2_PIX_FMT_YVU422M,
142	V4L2_PIX_FMT_YUV444M,
143	V4L2_PIX_FMT_YVU444M,
144};
145
146static void rcar_du_vsp_plane_setup(struct rcar_du_vsp_plane *plane)
147{
148	struct rcar_du_vsp_plane_state *state =
149		to_rcar_vsp_plane_state(plane->plane.state);
 
150	struct drm_framebuffer *fb = plane->plane.state->fb;
151	struct v4l2_rect src;
152	struct v4l2_rect dst;
153	dma_addr_t paddr[2] = { 0, };
154	u32 pixelformat = 0;
 
 
 
 
155	unsigned int i;
156
157	src.left = state->state.src_x >> 16;
158	src.top = state->state.src_y >> 16;
159	src.width = state->state.src_w >> 16;
160	src.height = state->state.src_h >> 16;
161
162	dst.left = state->state.crtc_x;
163	dst.top = state->state.crtc_y;
164	dst.width = state->state.crtc_w;
165	dst.height = state->state.crtc_h;
 
 
 
 
 
 
 
 
 
 
166
167	for (i = 0; i < state->format->planes; ++i) {
168		struct drm_gem_cma_object *gem;
 
169
170		gem = drm_fb_cma_get_gem_obj(fb, i);
171		paddr[i] = gem->paddr + fb->offsets[i];
 
 
172	}
173
174	for (i = 0; i < ARRAY_SIZE(formats_kms); ++i) {
175		if (formats_kms[i] == state->format->fourcc) {
176			pixelformat = formats_v4l2[i];
177			break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178		}
179	}
180
181	WARN_ON(!pixelformat);
 
 
 
 
182
183	vsp1_du_atomic_update(plane->vsp->vsp, plane->index, pixelformat,
184			      fb->pitches[0], paddr, &src, &dst);
 
 
 
185}
186
187static int rcar_du_vsp_plane_atomic_check(struct drm_plane *plane,
188					  struct drm_plane_state *state)
189{
190	struct rcar_du_vsp_plane_state *rstate = to_rcar_vsp_plane_state(state);
191	struct rcar_du_vsp_plane *rplane = to_rcar_vsp_plane(plane);
192	struct rcar_du_device *rcdu = rplane->vsp->dev;
193
194	if (!state->fb || !state->crtc) {
195		rstate->format = NULL;
 
 
 
196		return 0;
197	}
198
199	if (state->src_w >> 16 != state->crtc_w ||
200	    state->src_h >> 16 != state->crtc_h) {
201		dev_dbg(rcdu->dev, "%s: scaling not supported\n", __func__);
202		return -EINVAL;
203	}
 
 
 
 
 
 
204
205	rstate->format = rcar_du_format_info(state->fb->pixel_format);
206	if (rstate->format == NULL) {
207		dev_dbg(rcdu->dev, "%s: unsupported format %08x\n", __func__,
208			state->fb->pixel_format);
209		return -EINVAL;
210	}
 
211
212	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213}
214
215static void rcar_du_vsp_plane_atomic_update(struct drm_plane *plane,
216					struct drm_plane_state *old_state)
217{
 
 
218	struct rcar_du_vsp_plane *rplane = to_rcar_vsp_plane(plane);
 
219
220	if (plane->state->crtc)
221		rcar_du_vsp_plane_setup(rplane);
222	else
223		vsp1_du_atomic_update(rplane->vsp->vsp, rplane->index, 0, 0, 0,
224				      NULL, NULL);
225}
226
227static const struct drm_plane_helper_funcs rcar_du_vsp_plane_helper_funcs = {
 
 
228	.atomic_check = rcar_du_vsp_plane_atomic_check,
229	.atomic_update = rcar_du_vsp_plane_atomic_update,
230};
231
232static struct drm_plane_state *
233rcar_du_vsp_plane_atomic_duplicate_state(struct drm_plane *plane)
234{
235	struct rcar_du_vsp_plane_state *state;
236	struct rcar_du_vsp_plane_state *copy;
237
238	if (WARN_ON(!plane->state))
239		return NULL;
240
241	state = to_rcar_vsp_plane_state(plane->state);
242	copy = kmemdup(state, sizeof(*state), GFP_KERNEL);
243	if (copy == NULL)
244		return NULL;
245
246	__drm_atomic_helper_plane_duplicate_state(plane, &copy->state);
247
248	return &copy->state;
249}
250
251static void rcar_du_vsp_plane_atomic_destroy_state(struct drm_plane *plane,
252						   struct drm_plane_state *state)
253{
254	__drm_atomic_helper_plane_destroy_state(plane, state);
255	kfree(to_rcar_vsp_plane_state(state));
256}
257
258static void rcar_du_vsp_plane_reset(struct drm_plane *plane)
259{
260	struct rcar_du_vsp_plane_state *state;
261
262	if (plane->state) {
263		rcar_du_vsp_plane_atomic_destroy_state(plane, plane->state);
264		plane->state = NULL;
265	}
266
267	state = kzalloc(sizeof(*state), GFP_KERNEL);
268	if (state == NULL)
269		return;
270
271	state->alpha = 255;
272
273	plane->state = &state->state;
274	plane->state->plane = plane;
275}
276
277static int rcar_du_vsp_plane_atomic_set_property(struct drm_plane *plane,
278	struct drm_plane_state *state, struct drm_property *property,
279	uint64_t val)
280{
281	struct rcar_du_vsp_plane_state *rstate = to_rcar_vsp_plane_state(state);
282	struct rcar_du_device *rcdu = to_rcar_vsp_plane(plane)->vsp->dev;
283
284	if (property == rcdu->props.alpha)
285		rstate->alpha = val;
286	else
287		return -EINVAL;
288
289	return 0;
290}
291
292static int rcar_du_vsp_plane_atomic_get_property(struct drm_plane *plane,
293	const struct drm_plane_state *state, struct drm_property *property,
294	uint64_t *val)
295{
296	const struct rcar_du_vsp_plane_state *rstate =
297		container_of(state, const struct rcar_du_vsp_plane_state, state);
298	struct rcar_du_device *rcdu = to_rcar_vsp_plane(plane)->vsp->dev;
299
300	if (property == rcdu->props.alpha)
301		*val = rstate->alpha;
302	else
303		return -EINVAL;
304
305	return 0;
306}
307
308static const struct drm_plane_funcs rcar_du_vsp_plane_funcs = {
309	.update_plane = drm_atomic_helper_update_plane,
310	.disable_plane = drm_atomic_helper_disable_plane,
311	.reset = rcar_du_vsp_plane_reset,
312	.set_property = drm_atomic_helper_plane_set_property,
313	.destroy = drm_plane_cleanup,
314	.atomic_duplicate_state = rcar_du_vsp_plane_atomic_duplicate_state,
315	.atomic_destroy_state = rcar_du_vsp_plane_atomic_destroy_state,
316	.atomic_set_property = rcar_du_vsp_plane_atomic_set_property,
317	.atomic_get_property = rcar_du_vsp_plane_atomic_get_property,
318};
319
320int rcar_du_vsp_init(struct rcar_du_vsp *vsp)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321{
322	struct rcar_du_device *rcdu = vsp->dev;
323	struct platform_device *pdev;
324	struct device_node *np;
 
325	unsigned int i;
326	int ret;
327
328	/* Find the VSP device and initialize it. */
329	np = of_parse_phandle(rcdu->dev->of_node, "vsps", vsp->index);
330	if (!np) {
331		dev_err(rcdu->dev, "vsps node not found\n");
332		return -ENXIO;
333	}
334
335	pdev = of_find_device_by_node(np);
336	of_node_put(np);
337	if (!pdev)
338		return -ENXIO;
339
340	vsp->vsp = &pdev->dev;
341
 
 
 
 
342	ret = vsp1_du_init(vsp->vsp);
343	if (ret < 0)
344		return ret;
345
346	 /* The VSP2D (Gen3) has 5 RPFs, but the VSP1D (Gen2) is limited to
347	  * 4 RPFs.
348	  */
349	vsp->num_planes = rcdu->info->gen >= 3 ? 5 : 4;
350
351	vsp->planes = devm_kcalloc(rcdu->dev, vsp->num_planes,
352				   sizeof(*vsp->planes), GFP_KERNEL);
353	if (!vsp->planes)
354		return -ENOMEM;
355
356	for (i = 0; i < vsp->num_planes; ++i) {
357		enum drm_plane_type type = i ? DRM_PLANE_TYPE_OVERLAY
358					 : DRM_PLANE_TYPE_PRIMARY;
 
359		struct rcar_du_vsp_plane *plane = &vsp->planes[i];
360
361		plane->vsp = vsp;
362		plane->index = i;
363
364		ret = drm_universal_plane_init(rcdu->ddev, &plane->plane,
365					       1 << vsp->index,
366					       &rcar_du_vsp_plane_funcs,
367					       formats_kms,
368					       ARRAY_SIZE(formats_kms), type,
369					       NULL);
370		if (ret < 0)
371			return ret;
372
373		drm_plane_helper_add(&plane->plane,
374				     &rcar_du_vsp_plane_helper_funcs);
375
376		if (type == DRM_PLANE_TYPE_PRIMARY)
377			continue;
 
 
 
 
 
 
378
379		drm_object_attach_property(&plane->plane.base,
380					   rcdu->props.alpha, 255);
381	}
382
383	return 0;
384}
v6.2
  1// SPDX-License-Identifier: GPL-2.0+
  2/*
  3 * R-Car Display Unit VSP-Based Compositor
  4 *
  5 * Copyright (C) 2015 Renesas Electronics Corporation
  6 *
  7 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
 
 
 
 
 
  8 */
  9
 10#include <drm/drm_atomic.h>
 11#include <drm/drm_atomic_helper.h>
 12#include <drm/drm_blend.h>
 13#include <drm/drm_crtc.h>
 14#include <drm/drm_fb_dma_helper.h>
 15#include <drm/drm_fourcc.h>
 16#include <drm/drm_framebuffer.h>
 17#include <drm/drm_gem_atomic_helper.h>
 18#include <drm/drm_gem_dma_helper.h>
 19#include <drm/drm_managed.h>
 20#include <drm/drm_vblank.h>
 21
 22#include <linux/bitops.h>
 23#include <linux/dma-mapping.h>
 24#include <linux/of_platform.h>
 25#include <linux/scatterlist.h>
 26#include <linux/slab.h>
 27#include <linux/videodev2.h>
 28
 29#include <media/vsp1.h>
 30
 31#include "rcar_du_drv.h"
 32#include "rcar_du_kms.h"
 33#include "rcar_du_vsp.h"
 34#include "rcar_du_writeback.h"
 35
 36static void rcar_du_vsp_complete(void *private, unsigned int status, u32 crc)
 37{
 38	struct rcar_du_crtc *crtc = private;
 39
 40	if (crtc->vblank_enable)
 41		drm_crtc_handle_vblank(&crtc->crtc);
 42
 43	if (status & VSP1_DU_STATUS_COMPLETE)
 44		rcar_du_crtc_finish_page_flip(crtc);
 45	if (status & VSP1_DU_STATUS_WRITEBACK)
 46		rcar_du_writeback_complete(crtc);
 47
 48	drm_crtc_add_crc_entry(&crtc->crtc, false, 0, &crc);
 49}
 50
 51void rcar_du_vsp_enable(struct rcar_du_crtc *crtc)
 52{
 53	const struct drm_display_mode *mode = &crtc->crtc.state->adjusted_mode;
 54	struct rcar_du_device *rcdu = crtc->dev;
 55	struct vsp1_du_lif_config cfg = {
 56		.width = mode->hdisplay,
 57		.height = mode->vdisplay,
 58		.interlaced = mode->flags & DRM_MODE_FLAG_INTERLACE,
 59		.callback = rcar_du_vsp_complete,
 60		.callback_data = crtc,
 61	};
 62	struct rcar_du_plane_state state = {
 63		.state = {
 64			.alpha = DRM_BLEND_ALPHA_OPAQUE,
 65			.crtc = &crtc->crtc,
 66			.dst.x1 = 0,
 67			.dst.y1 = 0,
 68			.dst.x2 = mode->hdisplay,
 69			.dst.y2 = mode->vdisplay,
 70			.src.x1 = 0,
 71			.src.y1 = 0,
 72			.src.x2 = mode->hdisplay << 16,
 73			.src.y2 = mode->vdisplay << 16,
 74			.zpos = 0,
 75		},
 76		.format = rcar_du_format_info(DRM_FORMAT_ARGB8888),
 77		.source = RCAR_DU_PLANE_VSPD1,
 
 78		.colorkey = 0,
 
 79	};
 80
 81	if (rcdu->info->gen >= 3)
 82		state.hwindex = (crtc->index % 2) ? 2 : 0;
 83	else
 84		state.hwindex = crtc->index % 2;
 85
 86	__rcar_du_plane_setup(crtc->group, &state);
 87
 88	vsp1_du_setup_lif(crtc->vsp->vsp, crtc->vsp_pipe, &cfg);
 
 
 
 
 
 
 
 
 89}
 90
 91void rcar_du_vsp_disable(struct rcar_du_crtc *crtc)
 92{
 93	vsp1_du_setup_lif(crtc->vsp->vsp, crtc->vsp_pipe, NULL);
 94}
 95
 96void rcar_du_vsp_atomic_begin(struct rcar_du_crtc *crtc)
 97{
 98	vsp1_du_atomic_begin(crtc->vsp->vsp, crtc->vsp_pipe);
 99}
100
101void rcar_du_vsp_atomic_flush(struct rcar_du_crtc *crtc)
102{
103	struct vsp1_du_atomic_pipe_config cfg = { { 0, } };
104	struct rcar_du_crtc_state *state;
105
106	state = to_rcar_crtc_state(crtc->crtc.state);
107	cfg.crc = state->crc;
108
109	rcar_du_writeback_setup(crtc, &cfg.writeback);
110
111	vsp1_du_atomic_flush(crtc->vsp->vsp, crtc->vsp_pipe, &cfg);
112}
113
114static const u32 rcar_du_vsp_formats[] = {
 
115	DRM_FORMAT_RGB332,
116	DRM_FORMAT_ARGB4444,
117	DRM_FORMAT_XRGB4444,
118	DRM_FORMAT_ARGB1555,
119	DRM_FORMAT_XRGB1555,
120	DRM_FORMAT_RGB565,
121	DRM_FORMAT_BGR888,
122	DRM_FORMAT_RGB888,
123	DRM_FORMAT_BGRA8888,
124	DRM_FORMAT_BGRX8888,
125	DRM_FORMAT_ARGB8888,
126	DRM_FORMAT_XRGB8888,
127	DRM_FORMAT_UYVY,
 
128	DRM_FORMAT_YUYV,
129	DRM_FORMAT_YVYU,
130	DRM_FORMAT_NV12,
131	DRM_FORMAT_NV21,
132	DRM_FORMAT_NV16,
133	DRM_FORMAT_NV61,
134	DRM_FORMAT_YUV420,
135	DRM_FORMAT_YVU420,
136	DRM_FORMAT_YUV422,
137	DRM_FORMAT_YVU422,
138	DRM_FORMAT_YUV444,
139	DRM_FORMAT_YVU444,
140};
141
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142static void rcar_du_vsp_plane_setup(struct rcar_du_vsp_plane *plane)
143{
144	struct rcar_du_vsp_plane_state *state =
145		to_rcar_vsp_plane_state(plane->plane.state);
146	struct rcar_du_crtc *crtc = to_rcar_crtc(state->state.crtc);
147	struct drm_framebuffer *fb = plane->plane.state->fb;
148	const struct rcar_du_format_info *format;
149	struct vsp1_du_atomic_config cfg = {
150		.pixelformat = 0,
151		.pitch = fb->pitches[0],
152		.alpha = state->state.alpha >> 8,
153		.zpos = state->state.zpos,
154	};
155	u32 fourcc = state->format->fourcc;
156	unsigned int i;
157
158	cfg.src.left = state->state.src.x1 >> 16;
159	cfg.src.top = state->state.src.y1 >> 16;
160	cfg.src.width = drm_rect_width(&state->state.src) >> 16;
161	cfg.src.height = drm_rect_height(&state->state.src) >> 16;
162
163	cfg.dst.left = state->state.dst.x1;
164	cfg.dst.top = state->state.dst.y1;
165	cfg.dst.width = drm_rect_width(&state->state.dst);
166	cfg.dst.height = drm_rect_height(&state->state.dst);
167
168	for (i = 0; i < state->format->planes; ++i)
169		cfg.mem[i] = sg_dma_address(state->sg_tables[i].sgl)
170			   + fb->offsets[i];
171
172	if (state->state.pixel_blend_mode == DRM_MODE_BLEND_PIXEL_NONE) {
173		switch (fourcc) {
174		case DRM_FORMAT_ARGB1555:
175			fourcc = DRM_FORMAT_XRGB1555;
176			break;
177
178		case DRM_FORMAT_ARGB4444:
179			fourcc = DRM_FORMAT_XRGB4444;
180			break;
181
182		case DRM_FORMAT_ARGB8888:
183			fourcc = DRM_FORMAT_XRGB8888;
184			break;
185		}
186	}
187
188	format = rcar_du_format_info(fourcc);
189	cfg.pixelformat = format->v4l2;
190
191	cfg.premult = state->state.pixel_blend_mode == DRM_MODE_BLEND_PREMULTI;
192
193	vsp1_du_atomic_update(plane->vsp->vsp, crtc->vsp_pipe,
194			      plane->index, &cfg);
195}
196
197int rcar_du_vsp_map_fb(struct rcar_du_vsp *vsp, struct drm_framebuffer *fb,
198		       struct sg_table sg_tables[3])
199{
200	struct rcar_du_device *rcdu = vsp->dev;
201	unsigned int i, j;
202	int ret;
203
204	for (i = 0; i < fb->format->num_planes; ++i) {
205		struct drm_gem_dma_object *gem = drm_fb_dma_get_gem_obj(fb, i);
206		struct sg_table *sgt = &sg_tables[i];
207
208		if (gem->sgt) {
209			struct scatterlist *src;
210			struct scatterlist *dst;
211
212			/*
213			 * If the GEM buffer has a scatter gather table, it has
214			 * been imported from a dma-buf and has no physical
215			 * address as it might not be physically contiguous.
216			 * Copy the original scatter gather table to map it to
217			 * the VSP.
218			 */
219			ret = sg_alloc_table(sgt, gem->sgt->orig_nents,
220					     GFP_KERNEL);
221			if (ret)
222				goto fail;
223
224			src = gem->sgt->sgl;
225			dst = sgt->sgl;
226			for (j = 0; j < gem->sgt->orig_nents; ++j) {
227				sg_set_page(dst, sg_page(src), src->length,
228					    src->offset);
229				src = sg_next(src);
230				dst = sg_next(dst);
231			}
232		} else {
233			ret = dma_get_sgtable(rcdu->dev, sgt, gem->vaddr,
234					      gem->dma_addr, gem->base.size);
235			if (ret)
236				goto fail;
237		}
238
239		ret = vsp1_du_map_sg(vsp->vsp, sgt);
240		if (ret) {
241			sg_free_table(sgt);
242			goto fail;
243		}
244	}
245
246	return 0;
247
248fail:
249	while (i--) {
250		struct sg_table *sgt = &sg_tables[i];
251
252		vsp1_du_unmap_sg(vsp->vsp, sgt);
253		sg_free_table(sgt);
254	}
255
256	return ret;
257}
258
259static int rcar_du_vsp_plane_prepare_fb(struct drm_plane *plane,
260					struct drm_plane_state *state)
261{
262	struct rcar_du_vsp_plane_state *rstate = to_rcar_vsp_plane_state(state);
263	struct rcar_du_vsp *vsp = to_rcar_vsp_plane(plane)->vsp;
264	int ret;
265
266	/*
267	 * There's no need to prepare (and unprepare) the framebuffer when the
268	 * plane is not visible, as it will not be displayed.
269	 */
270	if (!state->visible)
271		return 0;
 
272
273	ret = rcar_du_vsp_map_fb(vsp, state->fb, rstate->sg_tables);
274	if (ret < 0)
275		return ret;
276
277	return drm_gem_plane_helper_prepare_fb(plane, state);
278}
279
280void rcar_du_vsp_unmap_fb(struct rcar_du_vsp *vsp, struct drm_framebuffer *fb,
281			  struct sg_table sg_tables[3])
282{
283	unsigned int i;
284
285	for (i = 0; i < fb->format->num_planes; ++i) {
286		struct sg_table *sgt = &sg_tables[i];
287
288		vsp1_du_unmap_sg(vsp->vsp, sgt);
289		sg_free_table(sgt);
290	}
291}
292
293static void rcar_du_vsp_plane_cleanup_fb(struct drm_plane *plane,
294					 struct drm_plane_state *state)
295{
296	struct rcar_du_vsp_plane_state *rstate = to_rcar_vsp_plane_state(state);
297	struct rcar_du_vsp *vsp = to_rcar_vsp_plane(plane)->vsp;
298
299	if (!state->visible)
300		return;
301
302	rcar_du_vsp_unmap_fb(vsp, state->fb, rstate->sg_tables);
303}
304
305static int rcar_du_vsp_plane_atomic_check(struct drm_plane *plane,
306					  struct drm_atomic_state *state)
307{
308	struct drm_plane_state *new_plane_state = drm_atomic_get_new_plane_state(state,
309										 plane);
310	struct rcar_du_vsp_plane_state *rstate = to_rcar_vsp_plane_state(new_plane_state);
311
312	return __rcar_du_plane_atomic_check(plane, new_plane_state,
313					    &rstate->format);
314}
315
316static void rcar_du_vsp_plane_atomic_update(struct drm_plane *plane,
317					struct drm_atomic_state *state)
318{
319	struct drm_plane_state *old_state = drm_atomic_get_old_plane_state(state, plane);
320	struct drm_plane_state *new_state = drm_atomic_get_new_plane_state(state, plane);
321	struct rcar_du_vsp_plane *rplane = to_rcar_vsp_plane(plane);
322	struct rcar_du_crtc *crtc = to_rcar_crtc(old_state->crtc);
323
324	if (new_state->visible)
325		rcar_du_vsp_plane_setup(rplane);
326	else if (old_state->crtc)
327		vsp1_du_atomic_update(rplane->vsp->vsp, crtc->vsp_pipe,
328				      rplane->index, NULL);
329}
330
331static const struct drm_plane_helper_funcs rcar_du_vsp_plane_helper_funcs = {
332	.prepare_fb = rcar_du_vsp_plane_prepare_fb,
333	.cleanup_fb = rcar_du_vsp_plane_cleanup_fb,
334	.atomic_check = rcar_du_vsp_plane_atomic_check,
335	.atomic_update = rcar_du_vsp_plane_atomic_update,
336};
337
338static struct drm_plane_state *
339rcar_du_vsp_plane_atomic_duplicate_state(struct drm_plane *plane)
340{
 
341	struct rcar_du_vsp_plane_state *copy;
342
343	if (WARN_ON(!plane->state))
344		return NULL;
345
346	copy = kzalloc(sizeof(*copy), GFP_KERNEL);
 
347	if (copy == NULL)
348		return NULL;
349
350	__drm_atomic_helper_plane_duplicate_state(plane, &copy->state);
351
352	return &copy->state;
353}
354
355static void rcar_du_vsp_plane_atomic_destroy_state(struct drm_plane *plane,
356						   struct drm_plane_state *state)
357{
358	__drm_atomic_helper_plane_destroy_state(state);
359	kfree(to_rcar_vsp_plane_state(state));
360}
361
362static void rcar_du_vsp_plane_reset(struct drm_plane *plane)
363{
364	struct rcar_du_vsp_plane_state *state;
365
366	if (plane->state) {
367		rcar_du_vsp_plane_atomic_destroy_state(plane, plane->state);
368		plane->state = NULL;
369	}
370
371	state = kzalloc(sizeof(*state), GFP_KERNEL);
372	if (state == NULL)
373		return;
374
375	__drm_atomic_helper_plane_reset(plane, &state->state);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
376}
377
378static const struct drm_plane_funcs rcar_du_vsp_plane_funcs = {
379	.update_plane = drm_atomic_helper_update_plane,
380	.disable_plane = drm_atomic_helper_disable_plane,
381	.reset = rcar_du_vsp_plane_reset,
 
382	.destroy = drm_plane_cleanup,
383	.atomic_duplicate_state = rcar_du_vsp_plane_atomic_duplicate_state,
384	.atomic_destroy_state = rcar_du_vsp_plane_atomic_destroy_state,
 
 
385};
386
387static void rcar_du_vsp_cleanup(struct drm_device *dev, void *res)
388{
389	struct rcar_du_vsp *vsp = res;
390	unsigned int i;
391
392	for (i = 0; i < vsp->num_planes; ++i) {
393		struct rcar_du_vsp_plane *plane = &vsp->planes[i];
394
395		drm_plane_cleanup(&plane->plane);
396	}
397
398	kfree(vsp->planes);
399
400	put_device(vsp->vsp);
401}
402
403int rcar_du_vsp_init(struct rcar_du_vsp *vsp, struct device_node *np,
404		     unsigned int crtcs)
405{
406	struct rcar_du_device *rcdu = vsp->dev;
407	struct platform_device *pdev;
408	unsigned int num_crtcs = hweight32(crtcs);
409	unsigned int num_planes;
410	unsigned int i;
411	int ret;
412
413	/* Find the VSP device and initialize it. */
 
 
 
 
 
 
414	pdev = of_find_device_by_node(np);
 
415	if (!pdev)
416		return -ENXIO;
417
418	vsp->vsp = &pdev->dev;
419
420	ret = drmm_add_action_or_reset(&rcdu->ddev, rcar_du_vsp_cleanup, vsp);
421	if (ret < 0)
422		return ret;
423
424	ret = vsp1_du_init(vsp->vsp);
425	if (ret < 0)
426		return ret;
427
428	num_planes = rcdu->info->num_rpf;
 
 
 
429
430	vsp->planes = kcalloc(num_planes, sizeof(*vsp->planes), GFP_KERNEL);
 
431	if (!vsp->planes)
432		return -ENOMEM;
433
434	for (i = 0; i < num_planes; ++i) {
435		enum drm_plane_type type = i < num_crtcs
436					 ? DRM_PLANE_TYPE_PRIMARY
437					 : DRM_PLANE_TYPE_OVERLAY;
438		struct rcar_du_vsp_plane *plane = &vsp->planes[i];
439
440		plane->vsp = vsp;
441		plane->index = i;
442
443		ret = drm_universal_plane_init(&rcdu->ddev, &plane->plane,
444					       crtcs, &rcar_du_vsp_plane_funcs,
445					       rcar_du_vsp_formats,
446					       ARRAY_SIZE(rcar_du_vsp_formats),
447					       NULL, type, NULL);
 
448		if (ret < 0)
449			return ret;
450
451		drm_plane_helper_add(&plane->plane,
452				     &rcar_du_vsp_plane_helper_funcs);
453
454		drm_plane_create_alpha_property(&plane->plane);
455		drm_plane_create_zpos_property(&plane->plane, i, 0,
456					       num_planes - 1);
457
458		drm_plane_create_blend_mode_property(&plane->plane,
459					BIT(DRM_MODE_BLEND_PIXEL_NONE) |
460					BIT(DRM_MODE_BLEND_PREMULTI) |
461					BIT(DRM_MODE_BLEND_COVERAGE));
462
463		vsp->num_planes++;
 
464	}
465
466	return 0;
467}