Merge tag 'probes-fixes-v6.16-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.git] / include / media / vsp1.h
CommitLineData
5f628053 1/* SPDX-License-Identifier: GPL-2.0+ */
f3af9572
LP
2/*
3 * vsp1.h -- R-Car VSP1 API
4 *
5 * Copyright (C) 2015 Renesas Electronics Corporation
6 *
7 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
f3af9572
LP
8 */
9#ifndef __MEDIA_VSP1_H__
10#define __MEDIA_VSP1_H__
11
f5d0f9d6 12#include <linux/scatterlist.h>
f3af9572 13#include <linux/types.h>
c6b013ab 14#include <linux/videodev2.h>
f3af9572
LP
15
16struct device;
f3af9572
LP
17
18int vsp1_du_init(struct device *dev);
19
09e513e3 20#define VSP1_DU_STATUS_COMPLETE BIT(0)
a63722ae 21#define VSP1_DU_STATUS_WRITEBACK BIT(1)
09e513e3 22
8c71fff4
KB
23/**
24 * struct vsp1_du_lif_config - VSP LIF configuration
25 * @width: output frame width
26 * @height: output frame height
e90561d4 27 * @interlaced: true for interlaced pipelines
d7ade201
KB
28 * @callback: frame completion callback function (optional). When a callback
29 * is provided, the VSP driver guarantees that it will be called once
30 * and only once for each vsp1_du_atomic_flush() call.
31 * @callback_data: data to be passed to the frame completion callback
8c71fff4
KB
32 */
33struct vsp1_du_lif_config {
34 unsigned int width;
35 unsigned int height;
e90561d4 36 bool interlaced;
d7ade201 37
09e513e3 38 void (*callback)(void *data, unsigned int status, u32 crc);
d7ade201 39 void *callback_data;
8c71fff4
KB
40};
41
cebd8c53
LP
42int vsp1_du_setup_lif(struct device *dev, unsigned int pipe_index,
43 const struct vsp1_du_lif_config *cfg);
f3af9572 44
0d93d5c9
LP
45/**
46 * struct vsp1_du_atomic_config - VSP atomic configuration parameters
47 * @pixelformat: plane pixel format (V4L2 4CC)
9b2798d5 48 * @pitch: line pitch in bytes for the first plane
0d93d5c9
LP
49 * @mem: DMA memory address for each plane of the frame buffer
50 * @src: source rectangle in the frame buffer (integer coordinates)
51 * @dst: destination rectangle on the display (integer coordinates)
52 * @alpha: alpha value (0: fully transparent, 255: fully opaque)
53 * @zpos: Z position of the plane (from 0 to number of planes minus 1)
0efb6fd3 54 * @premult: true for premultiplied alpha
b64b1349
LP
55 * @color_encoding: color encoding (valid for YUV formats only)
56 * @color_range: color range (valid for YUV formats only)
0d93d5c9 57 */
c6b013ab
LP
58struct vsp1_du_atomic_config {
59 u32 pixelformat;
60 unsigned int pitch;
bffba473 61 dma_addr_t mem[3];
c6b013ab
LP
62 struct v4l2_rect src;
63 struct v4l2_rect dst;
64 unsigned int alpha;
65 unsigned int zpos;
0efb6fd3 66 bool premult;
b64b1349
LP
67 enum v4l2_ycbcr_encoding color_encoding;
68 enum v4l2_quantization color_range;
c6b013ab
LP
69};
70
6e274b43
LP
71/**
72 * enum vsp1_du_crc_source - Source used for CRC calculation
73 * @VSP1_DU_CRC_NONE: CRC calculation disabled
74 * @VSP1_DU_CRC_PLANE: Perform CRC calculation on an input plane
75 * @VSP1_DU_CRC_OUTPUT: Perform CRC calculation on the composed output
76 */
77enum vsp1_du_crc_source {
78 VSP1_DU_CRC_NONE,
79 VSP1_DU_CRC_PLANE,
80 VSP1_DU_CRC_OUTPUT,
81};
82
83/**
84 * struct vsp1_du_crc_config - VSP CRC computation configuration parameters
85 * @source: source for CRC calculation
86 * @index: index of the CRC source plane (when source is set to plane)
87 */
88struct vsp1_du_crc_config {
89 enum vsp1_du_crc_source source;
90 unsigned int index;
91};
92
a63722ae
LP
93/**
94 * struct vsp1_du_writeback_config - VSP writeback configuration parameters
95 * @pixelformat: plane pixel format (V4L2 4CC)
96 * @pitch: line pitch in bytes for the first plane
97 * @mem: DMA memory address for each plane of the frame buffer
98 */
99struct vsp1_du_writeback_config {
100 u32 pixelformat;
101 unsigned int pitch;
102 dma_addr_t mem[3];
103};
104
6e274b43
LP
105/**
106 * struct vsp1_du_atomic_pipe_config - VSP atomic pipe configuration parameters
107 * @crc: CRC computation configuration
a63722ae 108 * @writeback: writeback configuration
6e274b43
LP
109 */
110struct vsp1_du_atomic_pipe_config {
111 struct vsp1_du_crc_config crc;
a63722ae 112 struct vsp1_du_writeback_config writeback;
6e274b43
LP
113};
114
cebd8c53
LP
115void vsp1_du_atomic_begin(struct device *dev, unsigned int pipe_index);
116int vsp1_du_atomic_update(struct device *dev, unsigned int pipe_index,
117 unsigned int rpf,
c3f34a4b 118 const struct vsp1_du_atomic_config *cfg);
6e274b43
LP
119void vsp1_du_atomic_flush(struct device *dev, unsigned int pipe_index,
120 const struct vsp1_du_atomic_pipe_config *cfg);
f5d0f9d6
LP
121int vsp1_du_map_sg(struct device *dev, struct sg_table *sgt);
122void vsp1_du_unmap_sg(struct device *dev, struct sg_table *sgt);
f3af9572
LP
123
124#endif /* __MEDIA_VSP1_H__ */