blob: 1cf8683607010dd76db3f6ba8aa61b7e3cc3e0f7 [file] [log] [blame]
Kuninori Morimoto5f628052018-08-05 23:16:40 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Laurent Pinchartf3af9572015-08-02 18:37:01 -03002/*
3 * vsp1.h -- R-Car VSP1 API
4 *
5 * Copyright (C) 2015 Renesas Electronics Corporation
6 *
7 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
Laurent Pinchartf3af9572015-08-02 18:37:01 -03008 */
9#ifndef __MEDIA_VSP1_H__
10#define __MEDIA_VSP1_H__
11
Laurent Pinchartf5d0f9d2017-05-17 02:20:06 +030012#include <linux/scatterlist.h>
Laurent Pinchartf3af9572015-08-02 18:37:01 -030013#include <linux/types.h>
Laurent Pinchartc6b013a2016-04-23 19:08:59 -030014#include <linux/videodev2.h>
Laurent Pinchartf3af9572015-08-02 18:37:01 -030015
16struct device;
Laurent Pinchartf3af9572015-08-02 18:37:01 -030017
18int vsp1_du_init(struct device *dev);
19
Kieran Bingham8c71fff2017-03-03 06:31:48 -030020/**
21 * struct vsp1_du_lif_config - VSP LIF configuration
22 * @width: output frame width
23 * @height: output frame height
Kieran Binghame90561d2018-08-03 07:37:29 -040024 * @interlaced: true for interlaced pipelines
Kieran Binghamd7ade202017-03-04 02:01:17 +000025 * @callback: frame completion callback function (optional). When a callback
26 * is provided, the VSP driver guarantees that it will be called once
27 * and only once for each vsp1_du_atomic_flush() call.
28 * @callback_data: data to be passed to the frame completion callback
Kieran Bingham8c71fff2017-03-03 06:31:48 -030029 */
30struct vsp1_du_lif_config {
31 unsigned int width;
32 unsigned int height;
Kieran Binghame90561d2018-08-03 07:37:29 -040033 bool interlaced;
Kieran Binghamd7ade202017-03-04 02:01:17 +000034
Laurent Pinchart6e274b42017-12-01 06:47:19 -050035 void (*callback)(void *data, bool completed, u32 crc);
Kieran Binghamd7ade202017-03-04 02:01:17 +000036 void *callback_data;
Kieran Bingham8c71fff2017-03-03 06:31:48 -030037};
38
Laurent Pinchartcebd8c52017-05-25 22:14:24 +030039int vsp1_du_setup_lif(struct device *dev, unsigned int pipe_index,
40 const struct vsp1_du_lif_config *cfg);
Laurent Pinchartf3af9572015-08-02 18:37:01 -030041
Laurent Pinchart0d93d5c2017-11-30 11:32:18 -050042/**
43 * struct vsp1_du_atomic_config - VSP atomic configuration parameters
44 * @pixelformat: plane pixel format (V4L2 4CC)
Koji Matsuoka9b2798d2017-10-26 02:27:51 -040045 * @pitch: line pitch in bytes for the first plane
Laurent Pinchart0d93d5c2017-11-30 11:32:18 -050046 * @mem: DMA memory address for each plane of the frame buffer
47 * @src: source rectangle in the frame buffer (integer coordinates)
48 * @dst: destination rectangle on the display (integer coordinates)
49 * @alpha: alpha value (0: fully transparent, 255: fully opaque)
50 * @zpos: Z position of the plane (from 0 to number of planes minus 1)
51 */
Laurent Pinchartc6b013a2016-04-23 19:08:59 -030052struct vsp1_du_atomic_config {
53 u32 pixelformat;
54 unsigned int pitch;
Laurent Pinchartbffba472016-08-18 10:16:17 -030055 dma_addr_t mem[3];
Laurent Pinchartc6b013a2016-04-23 19:08:59 -030056 struct v4l2_rect src;
57 struct v4l2_rect dst;
58 unsigned int alpha;
59 unsigned int zpos;
60};
61
Laurent Pinchart6e274b42017-12-01 06:47:19 -050062/**
63 * enum vsp1_du_crc_source - Source used for CRC calculation
64 * @VSP1_DU_CRC_NONE: CRC calculation disabled
65 * @VSP1_DU_CRC_PLANE: Perform CRC calculation on an input plane
66 * @VSP1_DU_CRC_OUTPUT: Perform CRC calculation on the composed output
67 */
68enum vsp1_du_crc_source {
69 VSP1_DU_CRC_NONE,
70 VSP1_DU_CRC_PLANE,
71 VSP1_DU_CRC_OUTPUT,
72};
73
74/**
75 * struct vsp1_du_crc_config - VSP CRC computation configuration parameters
76 * @source: source for CRC calculation
77 * @index: index of the CRC source plane (when source is set to plane)
78 */
79struct vsp1_du_crc_config {
80 enum vsp1_du_crc_source source;
81 unsigned int index;
82};
83
84/**
85 * struct vsp1_du_atomic_pipe_config - VSP atomic pipe configuration parameters
86 * @crc: CRC computation configuration
87 */
88struct vsp1_du_atomic_pipe_config {
89 struct vsp1_du_crc_config crc;
90};
91
Laurent Pinchartcebd8c52017-05-25 22:14:24 +030092void vsp1_du_atomic_begin(struct device *dev, unsigned int pipe_index);
93int vsp1_du_atomic_update(struct device *dev, unsigned int pipe_index,
94 unsigned int rpf,
Laurent Pinchartc3f34a42016-04-23 20:11:59 -030095 const struct vsp1_du_atomic_config *cfg);
Laurent Pinchart6e274b42017-12-01 06:47:19 -050096void vsp1_du_atomic_flush(struct device *dev, unsigned int pipe_index,
97 const struct vsp1_du_atomic_pipe_config *cfg);
Laurent Pinchartf5d0f9d2017-05-17 02:20:06 +030098int vsp1_du_map_sg(struct device *dev, struct sg_table *sgt);
99void vsp1_du_unmap_sg(struct device *dev, struct sg_table *sgt);
Laurent Pinchartf3af9572015-08-02 18:37:01 -0300100
Laurent Pinchartf3af9572015-08-02 18:37:01 -0300101#endif /* __MEDIA_VSP1_H__ */