1 // SPDX-License-Identifier: GPL-2.0+
3 * vsp1_drm.c -- R-Car VSP1 DRM/KMS Interface
5 * Copyright (C) 2015 Renesas Electronics Corporation
7 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
10 #include <linux/device.h>
11 #include <linux/dma-mapping.h>
12 #include <linux/slab.h>
14 #include <media/media-entity.h>
15 #include <media/v4l2-subdev.h>
16 #include <media/vsp1.h>
23 #include "vsp1_pipe.h"
24 #include "vsp1_rwpf.h"
27 #define BRX_NAME(e) (e)->type == VSP1_ENTITY_BRU ? "BRU" : "BRS"
29 /* -----------------------------------------------------------------------------
33 static void vsp1_du_pipeline_frame_end(struct vsp1_pipeline
*pipe
,
34 unsigned int completion
)
36 struct vsp1_drm_pipeline
*drm_pipe
= to_vsp1_drm_pipeline(pipe
);
37 bool complete
= completion
== VSP1_DL_FRAME_END_COMPLETED
;
39 if (drm_pipe
->du_complete
) {
40 struct vsp1_entity
*uif
= drm_pipe
->uif
;
43 crc
= uif
? vsp1_uif_get_crc(to_uif(&uif
->subdev
)) : 0;
44 drm_pipe
->du_complete(drm_pipe
->du_private
, complete
, crc
);
47 if (completion
& VSP1_DL_FRAME_END_INTERNAL
) {
48 drm_pipe
->force_brx_release
= false;
49 wake_up(&drm_pipe
->wait_queue
);
53 /* -----------------------------------------------------------------------------
54 * Pipeline Configuration
58 * Insert the UIF in the pipeline between the prev and next entities. If no UIF
59 * is available connect the two entities directly.
61 static int vsp1_du_insert_uif(struct vsp1_device
*vsp1
,
62 struct vsp1_pipeline
*pipe
,
63 struct vsp1_entity
*uif
,
64 struct vsp1_entity
*prev
, unsigned int prev_pad
,
65 struct vsp1_entity
*next
, unsigned int next_pad
)
67 struct v4l2_subdev_format format
;
72 * If there's no UIF to be inserted, connect the previous and
73 * next entities directly.
76 prev
->sink_pad
= next_pad
;
81 prev
->sink_pad
= UIF_PAD_SINK
;
83 memset(&format
, 0, sizeof(format
));
84 format
.which
= V4L2_SUBDEV_FORMAT_ACTIVE
;
85 format
.pad
= prev_pad
;
87 ret
= v4l2_subdev_call(&prev
->subdev
, pad
, get_fmt
, NULL
, &format
);
91 format
.pad
= UIF_PAD_SINK
;
93 ret
= v4l2_subdev_call(&uif
->subdev
, pad
, set_fmt
, NULL
, &format
);
97 dev_dbg(vsp1
->dev
, "%s: set format %ux%u (%x) on UIF sink\n",
98 __func__
, format
.format
.width
, format
.format
.height
,
102 * The UIF doesn't mangle the format between its sink and source pads,
103 * so there is no need to retrieve the format on its source pad.
107 uif
->sink_pad
= next_pad
;
112 /* Setup one RPF and the connected BRx sink pad. */
113 static int vsp1_du_pipeline_setup_rpf(struct vsp1_device
*vsp1
,
114 struct vsp1_pipeline
*pipe
,
115 struct vsp1_rwpf
*rpf
,
116 struct vsp1_entity
*uif
,
117 unsigned int brx_input
)
119 struct v4l2_subdev_selection sel
;
120 struct v4l2_subdev_format format
;
121 const struct v4l2_rect
*crop
;
125 * Configure the format on the RPF sink pad and propagate it up to the
128 crop
= &vsp1
->drm
->inputs
[rpf
->entity
.index
].crop
;
130 memset(&format
, 0, sizeof(format
));
131 format
.which
= V4L2_SUBDEV_FORMAT_ACTIVE
;
132 format
.pad
= RWPF_PAD_SINK
;
133 format
.format
.width
= crop
->width
+ crop
->left
;
134 format
.format
.height
= crop
->height
+ crop
->top
;
135 format
.format
.code
= rpf
->fmtinfo
->mbus
;
136 format
.format
.field
= V4L2_FIELD_NONE
;
138 ret
= v4l2_subdev_call(&rpf
->entity
.subdev
, pad
, set_fmt
, NULL
,
144 "%s: set format %ux%u (%x) on RPF%u sink\n",
145 __func__
, format
.format
.width
, format
.format
.height
,
146 format
.format
.code
, rpf
->entity
.index
);
148 memset(&sel
, 0, sizeof(sel
));
149 sel
.which
= V4L2_SUBDEV_FORMAT_ACTIVE
;
150 sel
.pad
= RWPF_PAD_SINK
;
151 sel
.target
= V4L2_SEL_TGT_CROP
;
154 ret
= v4l2_subdev_call(&rpf
->entity
.subdev
, pad
, set_selection
, NULL
,
160 "%s: set selection (%u,%u)/%ux%u on RPF%u sink\n",
161 __func__
, sel
.r
.left
, sel
.r
.top
, sel
.r
.width
, sel
.r
.height
,
165 * RPF source, hardcode the format to ARGB8888 to turn on format
166 * conversion if needed.
168 format
.pad
= RWPF_PAD_SOURCE
;
170 ret
= v4l2_subdev_call(&rpf
->entity
.subdev
, pad
, get_fmt
, NULL
,
176 "%s: got format %ux%u (%x) on RPF%u source\n",
177 __func__
, format
.format
.width
, format
.format
.height
,
178 format
.format
.code
, rpf
->entity
.index
);
180 format
.format
.code
= MEDIA_BUS_FMT_ARGB8888_1X32
;
182 ret
= v4l2_subdev_call(&rpf
->entity
.subdev
, pad
, set_fmt
, NULL
,
187 /* Insert and configure the UIF if available. */
188 ret
= vsp1_du_insert_uif(vsp1
, pipe
, uif
, &rpf
->entity
, RWPF_PAD_SOURCE
,
189 pipe
->brx
, brx_input
);
193 /* BRx sink, propagate the format from the RPF source. */
194 format
.pad
= brx_input
;
196 ret
= v4l2_subdev_call(&pipe
->brx
->subdev
, pad
, set_fmt
, NULL
,
201 dev_dbg(vsp1
->dev
, "%s: set format %ux%u (%x) on %s pad %u\n",
202 __func__
, format
.format
.width
, format
.format
.height
,
203 format
.format
.code
, BRX_NAME(pipe
->brx
), format
.pad
);
206 sel
.target
= V4L2_SEL_TGT_COMPOSE
;
207 sel
.r
= vsp1
->drm
->inputs
[rpf
->entity
.index
].compose
;
209 ret
= v4l2_subdev_call(&pipe
->brx
->subdev
, pad
, set_selection
, NULL
,
214 dev_dbg(vsp1
->dev
, "%s: set selection (%u,%u)/%ux%u on %s pad %u\n",
215 __func__
, sel
.r
.left
, sel
.r
.top
, sel
.r
.width
, sel
.r
.height
,
216 BRX_NAME(pipe
->brx
), sel
.pad
);
221 /* Setup the BRx source pad. */
222 static int vsp1_du_pipeline_setup_inputs(struct vsp1_device
*vsp1
,
223 struct vsp1_pipeline
*pipe
);
224 static void vsp1_du_pipeline_configure(struct vsp1_pipeline
*pipe
);
226 static int vsp1_du_pipeline_setup_brx(struct vsp1_device
*vsp1
,
227 struct vsp1_pipeline
*pipe
)
229 struct vsp1_drm_pipeline
*drm_pipe
= to_vsp1_drm_pipeline(pipe
);
230 struct v4l2_subdev_format format
= {
231 .which
= V4L2_SUBDEV_FORMAT_ACTIVE
,
233 struct vsp1_entity
*brx
;
238 * - If we need more than two inputs, use the BRU.
239 * - Otherwise, if we are not forced to release our BRx, keep it.
240 * - Else, use any free BRx (randomly starting with the BRU).
242 if (pipe
->num_inputs
> 2)
243 brx
= &vsp1
->bru
->entity
;
244 else if (pipe
->brx
&& !drm_pipe
->force_brx_release
)
246 else if (!vsp1
->bru
->entity
.pipe
)
247 brx
= &vsp1
->bru
->entity
;
249 brx
= &vsp1
->brs
->entity
;
251 /* Switch BRx if needed. */
252 if (brx
!= pipe
->brx
) {
253 struct vsp1_entity
*released_brx
= NULL
;
255 /* Release our BRx if we have one. */
257 dev_dbg(vsp1
->dev
, "%s: pipe %u: releasing %s\n",
258 __func__
, pipe
->lif
->index
,
259 BRX_NAME(pipe
->brx
));
262 * The BRx might be acquired by the other pipeline in
263 * the next step. We must thus remove it from the list
264 * of entities for this pipeline. The other pipeline's
265 * hardware configuration will reconfigure the BRx
268 * However, if the other pipeline doesn't acquire our
269 * BRx, we need to keep it in the list, otherwise the
270 * hardware configuration step won't disconnect it from
271 * the pipeline. To solve this, store the released BRx
272 * pointer to add it back to the list of entities later
273 * if it isn't acquired by the other pipeline.
275 released_brx
= pipe
->brx
;
277 list_del(&pipe
->brx
->list_pipe
);
278 pipe
->brx
->sink
= NULL
;
279 pipe
->brx
->pipe
= NULL
;
284 * If the BRx we need is in use, force the owner pipeline to
285 * switch to the other BRx and wait until the switch completes.
288 struct vsp1_drm_pipeline
*owner_pipe
;
290 dev_dbg(vsp1
->dev
, "%s: pipe %u: waiting for %s\n",
291 __func__
, pipe
->lif
->index
, BRX_NAME(brx
));
293 owner_pipe
= to_vsp1_drm_pipeline(brx
->pipe
);
294 owner_pipe
->force_brx_release
= true;
296 vsp1_du_pipeline_setup_inputs(vsp1
, &owner_pipe
->pipe
);
297 vsp1_du_pipeline_configure(&owner_pipe
->pipe
);
299 ret
= wait_event_timeout(owner_pipe
->wait_queue
,
300 !owner_pipe
->force_brx_release
,
301 msecs_to_jiffies(500));
304 "DRM pipeline %u reconfiguration timeout\n",
305 owner_pipe
->pipe
.lif
->index
);
309 * If the BRx we have released previously hasn't been acquired
310 * by the other pipeline, add it back to the entities list (with
311 * the pipe pointer NULL) to let vsp1_du_pipeline_configure()
312 * disconnect it from the hardware pipeline.
314 if (released_brx
&& !released_brx
->pipe
)
315 list_add_tail(&released_brx
->list_pipe
,
318 /* Add the BRx to the pipeline. */
319 dev_dbg(vsp1
->dev
, "%s: pipe %u: acquired %s\n",
320 __func__
, pipe
->lif
->index
, BRX_NAME(brx
));
323 pipe
->brx
->pipe
= pipe
;
324 pipe
->brx
->sink
= &pipe
->output
->entity
;
325 pipe
->brx
->sink_pad
= 0;
327 list_add_tail(&pipe
->brx
->list_pipe
, &pipe
->entities
);
331 * Configure the format on the BRx source and verify that it matches the
332 * requested format. We don't set the media bus code as it is configured
333 * on the BRx sink pad 0 and propagated inside the entity, not on the
336 format
.pad
= pipe
->brx
->source_pad
;
337 format
.format
.width
= drm_pipe
->width
;
338 format
.format
.height
= drm_pipe
->height
;
339 format
.format
.field
= V4L2_FIELD_NONE
;
341 ret
= v4l2_subdev_call(&pipe
->brx
->subdev
, pad
, set_fmt
, NULL
,
346 dev_dbg(vsp1
->dev
, "%s: set format %ux%u (%x) on %s pad %u\n",
347 __func__
, format
.format
.width
, format
.format
.height
,
348 format
.format
.code
, BRX_NAME(pipe
->brx
), pipe
->brx
->source_pad
);
350 if (format
.format
.width
!= drm_pipe
->width
||
351 format
.format
.height
!= drm_pipe
->height
) {
352 dev_dbg(vsp1
->dev
, "%s: format mismatch\n", __func__
);
359 static unsigned int rpf_zpos(struct vsp1_device
*vsp1
, struct vsp1_rwpf
*rpf
)
361 return vsp1
->drm
->inputs
[rpf
->entity
.index
].zpos
;
364 /* Setup the input side of the pipeline (RPFs and BRx). */
365 static int vsp1_du_pipeline_setup_inputs(struct vsp1_device
*vsp1
,
366 struct vsp1_pipeline
*pipe
)
368 struct vsp1_drm_pipeline
*drm_pipe
= to_vsp1_drm_pipeline(pipe
);
369 struct vsp1_rwpf
*inputs
[VSP1_MAX_RPF
] = { NULL
, };
370 struct vsp1_entity
*uif
;
371 bool use_uif
= false;
372 struct vsp1_brx
*brx
;
376 /* Count the number of enabled inputs and sort them by Z-order. */
377 pipe
->num_inputs
= 0;
379 for (i
= 0; i
< vsp1
->info
->rpf_count
; ++i
) {
380 struct vsp1_rwpf
*rpf
= vsp1
->rpf
[i
];
383 if (!pipe
->inputs
[i
])
386 /* Insert the RPF in the sorted RPFs array. */
387 for (j
= pipe
->num_inputs
++; j
> 0; --j
) {
388 if (rpf_zpos(vsp1
, inputs
[j
-1]) <= rpf_zpos(vsp1
, rpf
))
390 inputs
[j
] = inputs
[j
-1];
397 * Setup the BRx. This must be done before setting up the RPF input
398 * pipelines as the BRx sink compose rectangles depend on the BRx source
401 ret
= vsp1_du_pipeline_setup_brx(vsp1
, pipe
);
403 dev_err(vsp1
->dev
, "%s: failed to setup %s source\n", __func__
,
404 BRX_NAME(pipe
->brx
));
408 brx
= to_brx(&pipe
->brx
->subdev
);
410 /* Setup the RPF input pipeline for every enabled input. */
411 for (i
= 0; i
< pipe
->brx
->source_pad
; ++i
) {
412 struct vsp1_rwpf
*rpf
= inputs
[i
];
415 brx
->inputs
[i
].rpf
= NULL
;
419 if (!rpf
->entity
.pipe
) {
420 rpf
->entity
.pipe
= pipe
;
421 list_add_tail(&rpf
->entity
.list_pipe
, &pipe
->entities
);
424 brx
->inputs
[i
].rpf
= rpf
;
426 rpf
->entity
.sink
= pipe
->brx
;
427 rpf
->entity
.sink_pad
= i
;
429 dev_dbg(vsp1
->dev
, "%s: connecting RPF.%u to %s:%u\n",
430 __func__
, rpf
->entity
.index
, BRX_NAME(pipe
->brx
), i
);
432 uif
= drm_pipe
->crc
.source
== VSP1_DU_CRC_PLANE
&&
433 drm_pipe
->crc
.index
== i
? drm_pipe
->uif
: NULL
;
436 ret
= vsp1_du_pipeline_setup_rpf(vsp1
, pipe
, rpf
, uif
, i
);
439 "%s: failed to setup RPF.%u\n",
440 __func__
, rpf
->entity
.index
);
445 /* Insert and configure the UIF at the BRx output if available. */
446 uif
= drm_pipe
->crc
.source
== VSP1_DU_CRC_OUTPUT
? drm_pipe
->uif
: NULL
;
449 ret
= vsp1_du_insert_uif(vsp1
, pipe
, uif
,
450 pipe
->brx
, pipe
->brx
->source_pad
,
451 &pipe
->output
->entity
, 0);
453 dev_err(vsp1
->dev
, "%s: failed to setup UIF after %s\n",
454 __func__
, BRX_NAME(pipe
->brx
));
457 * If the UIF is not in use schedule it for removal by setting its pipe
458 * pointer to NULL, vsp1_du_pipeline_configure() will remove it from the
459 * hardware pipeline and from the pipeline's list of entities. Otherwise
460 * make sure it is present in the pipeline's list of entities if it
464 drm_pipe
->uif
->pipe
= NULL
;
465 } else if (!drm_pipe
->uif
->pipe
) {
466 drm_pipe
->uif
->pipe
= pipe
;
467 list_add_tail(&drm_pipe
->uif
->list_pipe
, &pipe
->entities
);
473 /* Setup the output side of the pipeline (WPF and LIF). */
474 static int vsp1_du_pipeline_setup_output(struct vsp1_device
*vsp1
,
475 struct vsp1_pipeline
*pipe
)
477 struct vsp1_drm_pipeline
*drm_pipe
= to_vsp1_drm_pipeline(pipe
);
478 struct v4l2_subdev_format format
= { 0, };
481 format
.which
= V4L2_SUBDEV_FORMAT_ACTIVE
;
482 format
.pad
= RWPF_PAD_SINK
;
483 format
.format
.width
= drm_pipe
->width
;
484 format
.format
.height
= drm_pipe
->height
;
485 format
.format
.code
= MEDIA_BUS_FMT_ARGB8888_1X32
;
486 format
.format
.field
= V4L2_FIELD_NONE
;
488 ret
= v4l2_subdev_call(&pipe
->output
->entity
.subdev
, pad
, set_fmt
, NULL
,
493 dev_dbg(vsp1
->dev
, "%s: set format %ux%u (%x) on WPF%u sink\n",
494 __func__
, format
.format
.width
, format
.format
.height
,
495 format
.format
.code
, pipe
->output
->entity
.index
);
497 format
.pad
= RWPF_PAD_SOURCE
;
498 ret
= v4l2_subdev_call(&pipe
->output
->entity
.subdev
, pad
, get_fmt
, NULL
,
503 dev_dbg(vsp1
->dev
, "%s: got format %ux%u (%x) on WPF%u source\n",
504 __func__
, format
.format
.width
, format
.format
.height
,
505 format
.format
.code
, pipe
->output
->entity
.index
);
507 format
.pad
= LIF_PAD_SINK
;
508 ret
= v4l2_subdev_call(&pipe
->lif
->subdev
, pad
, set_fmt
, NULL
,
513 dev_dbg(vsp1
->dev
, "%s: set format %ux%u (%x) on LIF%u sink\n",
514 __func__
, format
.format
.width
, format
.format
.height
,
515 format
.format
.code
, pipe
->lif
->index
);
518 * Verify that the format at the output of the pipeline matches the
519 * requested frame size and media bus code.
521 if (format
.format
.width
!= drm_pipe
->width
||
522 format
.format
.height
!= drm_pipe
->height
||
523 format
.format
.code
!= MEDIA_BUS_FMT_ARGB8888_1X32
) {
524 dev_dbg(vsp1
->dev
, "%s: format mismatch on LIF%u\n", __func__
,
532 /* Configure all entities in the pipeline. */
533 static void vsp1_du_pipeline_configure(struct vsp1_pipeline
*pipe
)
535 struct vsp1_drm_pipeline
*drm_pipe
= to_vsp1_drm_pipeline(pipe
);
536 struct vsp1_entity
*entity
;
537 struct vsp1_entity
*next
;
538 struct vsp1_dl_list
*dl
;
539 struct vsp1_dl_body
*dlb
;
541 dl
= vsp1_dl_list_get(pipe
->output
->dlm
);
542 dlb
= vsp1_dl_list_get_body0(dl
);
544 list_for_each_entry_safe(entity
, next
, &pipe
->entities
, list_pipe
) {
545 /* Disconnect unused entities from the pipeline. */
547 vsp1_dl_body_write(dlb
, entity
->route
->reg
,
548 VI6_DPR_NODE_UNUSED
);
551 list_del(&entity
->list_pipe
);
556 vsp1_entity_route_setup(entity
, pipe
, dlb
);
557 vsp1_entity_configure_stream(entity
, pipe
, dlb
);
558 vsp1_entity_configure_frame(entity
, pipe
, dl
, dlb
);
559 vsp1_entity_configure_partition(entity
, pipe
, dl
, dlb
);
562 vsp1_dl_list_commit(dl
, drm_pipe
->force_brx_release
);
565 /* -----------------------------------------------------------------------------
569 int vsp1_du_init(struct device
*dev
)
571 struct vsp1_device
*vsp1
= dev_get_drvdata(dev
);
574 return -EPROBE_DEFER
;
578 EXPORT_SYMBOL_GPL(vsp1_du_init
);
581 * vsp1_du_setup_lif - Setup the output part of the VSP pipeline
582 * @dev: the VSP device
583 * @pipe_index: the DRM pipeline index
584 * @cfg: the LIF configuration
586 * Configure the output part of VSP DRM pipeline for the given frame @cfg.width
587 * and @cfg.height. This sets up formats on the BRx source pad, the WPF sink and
588 * source pads, and the LIF sink pad.
590 * The @pipe_index argument selects which DRM pipeline to setup. The number of
591 * available pipelines depend on the VSP instance.
593 * As the media bus code on the blend unit source pad is conditioned by the
594 * configuration of its sink 0 pad, we also set up the formats on all blend unit
595 * sinks, even if the configuration will be overwritten later by
596 * vsp1_du_setup_rpf(). This ensures that the blend unit configuration is set to
597 * a well defined state.
599 * Return 0 on success or a negative error code on failure.
601 int vsp1_du_setup_lif(struct device
*dev
, unsigned int pipe_index
,
602 const struct vsp1_du_lif_config
*cfg
)
604 struct vsp1_device
*vsp1
= dev_get_drvdata(dev
);
605 struct vsp1_drm_pipeline
*drm_pipe
;
606 struct vsp1_pipeline
*pipe
;
611 if (pipe_index
>= vsp1
->info
->lif_count
)
614 drm_pipe
= &vsp1
->drm
->pipe
[pipe_index
];
615 pipe
= &drm_pipe
->pipe
;
618 struct vsp1_brx
*brx
;
620 mutex_lock(&vsp1
->drm
->lock
);
622 brx
= to_brx(&pipe
->brx
->subdev
);
625 * NULL configuration means the CRTC is being disabled, stop
626 * the pipeline and turn the light off.
628 ret
= vsp1_pipeline_stop(pipe
);
629 if (ret
== -ETIMEDOUT
)
630 dev_err(vsp1
->dev
, "DRM pipeline stop timeout\n");
632 for (i
= 0; i
< ARRAY_SIZE(pipe
->inputs
); ++i
) {
633 struct vsp1_rwpf
*rpf
= pipe
->inputs
[i
];
639 * Remove the RPF from the pipe and the list of BRx
642 WARN_ON(!rpf
->entity
.pipe
);
643 rpf
->entity
.pipe
= NULL
;
644 list_del(&rpf
->entity
.list_pipe
);
645 pipe
->inputs
[i
] = NULL
;
647 brx
->inputs
[rpf
->brx_input
].rpf
= NULL
;
650 drm_pipe
->du_complete
= NULL
;
651 pipe
->num_inputs
= 0;
653 dev_dbg(vsp1
->dev
, "%s: pipe %u: releasing %s\n",
654 __func__
, pipe
->lif
->index
,
655 BRX_NAME(pipe
->brx
));
657 list_del(&pipe
->brx
->list_pipe
);
658 pipe
->brx
->pipe
= NULL
;
661 mutex_unlock(&vsp1
->drm
->lock
);
663 vsp1_dlm_reset(pipe
->output
->dlm
);
664 vsp1_device_put(vsp1
);
666 dev_dbg(vsp1
->dev
, "%s: pipeline disabled\n", __func__
);
671 drm_pipe
->width
= cfg
->width
;
672 drm_pipe
->height
= cfg
->height
;
673 pipe
->interlaced
= cfg
->interlaced
;
675 dev_dbg(vsp1
->dev
, "%s: configuring LIF%u with format %ux%u%s\n",
676 __func__
, pipe_index
, cfg
->width
, cfg
->height
,
677 pipe
->interlaced
? "i" : "");
679 mutex_lock(&vsp1
->drm
->lock
);
681 /* Setup formats through the pipeline. */
682 ret
= vsp1_du_pipeline_setup_inputs(vsp1
, pipe
);
686 ret
= vsp1_du_pipeline_setup_output(vsp1
, pipe
);
690 /* Enable the VSP1. */
691 ret
= vsp1_device_get(vsp1
);
696 * Register a callback to allow us to notify the DRM driver of frame
699 drm_pipe
->du_complete
= cfg
->callback
;
700 drm_pipe
->du_private
= cfg
->callback_data
;
702 /* Disable the display interrupts. */
703 vsp1_write(vsp1
, VI6_DISP_IRQ_STA
, 0);
704 vsp1_write(vsp1
, VI6_DISP_IRQ_ENB
, 0);
706 /* Configure all entities in the pipeline. */
707 vsp1_du_pipeline_configure(pipe
);
710 mutex_unlock(&vsp1
->drm
->lock
);
715 /* Start the pipeline. */
716 spin_lock_irqsave(&pipe
->irqlock
, flags
);
717 vsp1_pipeline_run(pipe
);
718 spin_unlock_irqrestore(&pipe
->irqlock
, flags
);
720 dev_dbg(vsp1
->dev
, "%s: pipeline enabled\n", __func__
);
724 EXPORT_SYMBOL_GPL(vsp1_du_setup_lif
);
727 * vsp1_du_atomic_begin - Prepare for an atomic update
728 * @dev: the VSP device
729 * @pipe_index: the DRM pipeline index
731 void vsp1_du_atomic_begin(struct device
*dev
, unsigned int pipe_index
)
734 EXPORT_SYMBOL_GPL(vsp1_du_atomic_begin
);
737 * vsp1_du_atomic_update - Setup one RPF input of the VSP pipeline
738 * @dev: the VSP device
739 * @pipe_index: the DRM pipeline index
740 * @rpf_index: index of the RPF to setup (0-based)
741 * @cfg: the RPF configuration
743 * Configure the VSP to perform image composition through RPF @rpf_index as
744 * described by the @cfg configuration. The image to compose is referenced by
745 * @cfg.mem and composed using the @cfg.src crop rectangle and the @cfg.dst
746 * composition rectangle. The Z-order is configurable with higher @zpos values
749 * If the @cfg configuration is NULL, the RPF will be disabled. Calling the
750 * function on a disabled RPF is allowed.
752 * Image format as stored in memory is expressed as a V4L2 @cfg.pixelformat
753 * value. The memory pitch is configurable to allow for padding at end of lines,
754 * or simply for images that extend beyond the crop rectangle boundaries. The
755 * @cfg.pitch value is expressed in bytes and applies to all planes for
756 * multiplanar formats.
758 * The source memory buffer is referenced by the DMA address of its planes in
759 * the @cfg.mem array. Up to two planes are supported. The second plane DMA
760 * address is ignored for formats using a single plane.
762 * This function isn't reentrant, the caller needs to serialize calls.
764 * Return 0 on success or a negative error code on failure.
766 int vsp1_du_atomic_update(struct device
*dev
, unsigned int pipe_index
,
767 unsigned int rpf_index
,
768 const struct vsp1_du_atomic_config
*cfg
)
770 struct vsp1_device
*vsp1
= dev_get_drvdata(dev
);
771 struct vsp1_drm_pipeline
*drm_pipe
= &vsp1
->drm
->pipe
[pipe_index
];
772 const struct vsp1_format_info
*fmtinfo
;
773 unsigned int chroma_hsub
;
774 struct vsp1_rwpf
*rpf
;
776 if (rpf_index
>= vsp1
->info
->rpf_count
)
779 rpf
= vsp1
->rpf
[rpf_index
];
782 dev_dbg(vsp1
->dev
, "%s: RPF%u: disable requested\n", __func__
,
786 * Remove the RPF from the pipeline's inputs. Keep it in the
787 * pipeline's entity list to let vsp1_du_pipeline_configure()
788 * remove it from the hardware pipeline.
790 rpf
->entity
.pipe
= NULL
;
791 drm_pipe
->pipe
.inputs
[rpf_index
] = NULL
;
796 "%s: RPF%u: (%u,%u)/%ux%u -> (%u,%u)/%ux%u (%08x), pitch %u dma { %pad, %pad, %pad } zpos %u\n",
798 cfg
->src
.left
, cfg
->src
.top
, cfg
->src
.width
, cfg
->src
.height
,
799 cfg
->dst
.left
, cfg
->dst
.top
, cfg
->dst
.width
, cfg
->dst
.height
,
800 cfg
->pixelformat
, cfg
->pitch
, &cfg
->mem
[0], &cfg
->mem
[1],
801 &cfg
->mem
[2], cfg
->zpos
);
804 * Store the format, stride, memory buffer address, crop and compose
805 * rectangles and Z-order position and for the input.
807 fmtinfo
= vsp1_get_format_info(vsp1
, cfg
->pixelformat
);
809 dev_dbg(vsp1
->dev
, "Unsupported pixel format %08x for RPF\n",
815 * Only formats with three planes can affect the chroma planes pitch.
816 * All formats with two planes have a horizontal subsampling value of 2,
817 * but combine U and V in a single chroma plane, which thus results in
818 * the luma plane and chroma plane having the same pitch.
820 chroma_hsub
= (fmtinfo
->planes
== 3) ? fmtinfo
->hsub
: 1;
822 rpf
->fmtinfo
= fmtinfo
;
823 rpf
->format
.num_planes
= fmtinfo
->planes
;
824 rpf
->format
.plane_fmt
[0].bytesperline
= cfg
->pitch
;
825 rpf
->format
.plane_fmt
[1].bytesperline
= cfg
->pitch
/ chroma_hsub
;
826 rpf
->alpha
= cfg
->alpha
;
828 rpf
->mem
.addr
[0] = cfg
->mem
[0];
829 rpf
->mem
.addr
[1] = cfg
->mem
[1];
830 rpf
->mem
.addr
[2] = cfg
->mem
[2];
832 vsp1
->drm
->inputs
[rpf_index
].crop
= cfg
->src
;
833 vsp1
->drm
->inputs
[rpf_index
].compose
= cfg
->dst
;
834 vsp1
->drm
->inputs
[rpf_index
].zpos
= cfg
->zpos
;
836 drm_pipe
->pipe
.inputs
[rpf_index
] = rpf
;
840 EXPORT_SYMBOL_GPL(vsp1_du_atomic_update
);
843 * vsp1_du_atomic_flush - Commit an atomic update
844 * @dev: the VSP device
845 * @pipe_index: the DRM pipeline index
846 * @cfg: atomic pipe configuration
848 void vsp1_du_atomic_flush(struct device
*dev
, unsigned int pipe_index
,
849 const struct vsp1_du_atomic_pipe_config
*cfg
)
851 struct vsp1_device
*vsp1
= dev_get_drvdata(dev
);
852 struct vsp1_drm_pipeline
*drm_pipe
= &vsp1
->drm
->pipe
[pipe_index
];
853 struct vsp1_pipeline
*pipe
= &drm_pipe
->pipe
;
855 drm_pipe
->crc
= cfg
->crc
;
857 mutex_lock(&vsp1
->drm
->lock
);
858 vsp1_du_pipeline_setup_inputs(vsp1
, pipe
);
859 vsp1_du_pipeline_configure(pipe
);
860 mutex_unlock(&vsp1
->drm
->lock
);
862 EXPORT_SYMBOL_GPL(vsp1_du_atomic_flush
);
864 int vsp1_du_map_sg(struct device
*dev
, struct sg_table
*sgt
)
866 struct vsp1_device
*vsp1
= dev_get_drvdata(dev
);
869 * As all the buffers allocated by the DU driver are coherent, we can
870 * skip cache sync. This will need to be revisited when support for
871 * non-coherent buffers will be added to the DU driver.
873 return dma_map_sg_attrs(vsp1
->bus_master
, sgt
->sgl
, sgt
->nents
,
874 DMA_TO_DEVICE
, DMA_ATTR_SKIP_CPU_SYNC
);
876 EXPORT_SYMBOL_GPL(vsp1_du_map_sg
);
878 void vsp1_du_unmap_sg(struct device
*dev
, struct sg_table
*sgt
)
880 struct vsp1_device
*vsp1
= dev_get_drvdata(dev
);
882 dma_unmap_sg_attrs(vsp1
->bus_master
, sgt
->sgl
, sgt
->nents
,
883 DMA_TO_DEVICE
, DMA_ATTR_SKIP_CPU_SYNC
);
885 EXPORT_SYMBOL_GPL(vsp1_du_unmap_sg
);
887 /* -----------------------------------------------------------------------------
891 int vsp1_drm_init(struct vsp1_device
*vsp1
)
895 vsp1
->drm
= devm_kzalloc(vsp1
->dev
, sizeof(*vsp1
->drm
), GFP_KERNEL
);
899 mutex_init(&vsp1
->drm
->lock
);
901 /* Create one DRM pipeline per LIF. */
902 for (i
= 0; i
< vsp1
->info
->lif_count
; ++i
) {
903 struct vsp1_drm_pipeline
*drm_pipe
= &vsp1
->drm
->pipe
[i
];
904 struct vsp1_pipeline
*pipe
= &drm_pipe
->pipe
;
906 init_waitqueue_head(&drm_pipe
->wait_queue
);
908 vsp1_pipeline_init(pipe
);
910 pipe
->frame_end
= vsp1_du_pipeline_frame_end
;
913 * The output side of the DRM pipeline is static, add the
914 * corresponding entities manually.
916 pipe
->output
= vsp1
->wpf
[i
];
917 pipe
->lif
= &vsp1
->lif
[i
]->entity
;
919 pipe
->output
->entity
.pipe
= pipe
;
920 pipe
->output
->entity
.sink
= pipe
->lif
;
921 pipe
->output
->entity
.sink_pad
= 0;
922 list_add_tail(&pipe
->output
->entity
.list_pipe
, &pipe
->entities
);
924 pipe
->lif
->pipe
= pipe
;
925 list_add_tail(&pipe
->lif
->list_pipe
, &pipe
->entities
);
928 * CRC computation is initially disabled, don't add the UIF to
931 if (i
< vsp1
->info
->uif_count
)
932 drm_pipe
->uif
= &vsp1
->uif
[i
]->entity
;
935 /* Disable all RPFs initially. */
936 for (i
= 0; i
< vsp1
->info
->rpf_count
; ++i
) {
937 struct vsp1_rwpf
*input
= vsp1
->rpf
[i
];
939 INIT_LIST_HEAD(&input
->entity
.list_pipe
);
945 void vsp1_drm_cleanup(struct vsp1_device
*vsp1
)
947 mutex_destroy(&vsp1
->drm
->lock
);