Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 1 | /* |
| 2 | * vsp1.h -- R-Car VSP1 API |
| 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 | #ifndef __MEDIA_VSP1_H__ |
| 14 | #define __MEDIA_VSP1_H__ |
| 15 | |
Laurent Pinchart | f5d0f9d | 2017-05-17 02:20:06 +0300 | [diff] [blame] | 16 | #include <linux/scatterlist.h> |
Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 17 | #include <linux/types.h> |
Laurent Pinchart | c6b013a | 2016-04-23 19:08:59 -0300 | [diff] [blame] | 18 | #include <linux/videodev2.h> |
Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 19 | |
| 20 | struct device; |
Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 21 | |
| 22 | int vsp1_du_init(struct device *dev); |
| 23 | |
Kieran Bingham | 8c71fff | 2017-03-03 06:31:48 -0300 | [diff] [blame] | 24 | /** |
| 25 | * struct vsp1_du_lif_config - VSP LIF configuration |
| 26 | * @width: output frame width |
| 27 | * @height: output frame height |
Kieran Bingham | e90561d | 2018-08-03 07:37:29 -0400 | [diff] [blame^] | 28 | * @interlaced: true for interlaced pipelines |
Kieran Bingham | d7ade20 | 2017-03-04 02:01:17 +0000 | [diff] [blame] | 29 | * @callback: frame completion callback function (optional). When a callback |
| 30 | * is provided, the VSP driver guarantees that it will be called once |
| 31 | * and only once for each vsp1_du_atomic_flush() call. |
| 32 | * @callback_data: data to be passed to the frame completion callback |
Kieran Bingham | 8c71fff | 2017-03-03 06:31:48 -0300 | [diff] [blame] | 33 | */ |
| 34 | struct vsp1_du_lif_config { |
| 35 | unsigned int width; |
| 36 | unsigned int height; |
Kieran Bingham | e90561d | 2018-08-03 07:37:29 -0400 | [diff] [blame^] | 37 | bool interlaced; |
Kieran Bingham | d7ade20 | 2017-03-04 02:01:17 +0000 | [diff] [blame] | 38 | |
Laurent Pinchart | 6e274b4 | 2017-12-01 06:47:19 -0500 | [diff] [blame] | 39 | void (*callback)(void *data, bool completed, u32 crc); |
Kieran Bingham | d7ade20 | 2017-03-04 02:01:17 +0000 | [diff] [blame] | 40 | void *callback_data; |
Kieran Bingham | 8c71fff | 2017-03-03 06:31:48 -0300 | [diff] [blame] | 41 | }; |
| 42 | |
Laurent Pinchart | cebd8c5 | 2017-05-25 22:14:24 +0300 | [diff] [blame] | 43 | int vsp1_du_setup_lif(struct device *dev, unsigned int pipe_index, |
| 44 | const struct vsp1_du_lif_config *cfg); |
Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 45 | |
Laurent Pinchart | 0d93d5c | 2017-11-30 11:32:18 -0500 | [diff] [blame] | 46 | /** |
| 47 | * struct vsp1_du_atomic_config - VSP atomic configuration parameters |
| 48 | * @pixelformat: plane pixel format (V4L2 4CC) |
| 49 | * @pitch: line pitch in bytes, for all planes |
| 50 | * @mem: DMA memory address for each plane of the frame buffer |
| 51 | * @src: source rectangle in the frame buffer (integer coordinates) |
| 52 | * @dst: destination rectangle on the display (integer coordinates) |
| 53 | * @alpha: alpha value (0: fully transparent, 255: fully opaque) |
| 54 | * @zpos: Z position of the plane (from 0 to number of planes minus 1) |
| 55 | */ |
Laurent Pinchart | c6b013a | 2016-04-23 19:08:59 -0300 | [diff] [blame] | 56 | struct vsp1_du_atomic_config { |
| 57 | u32 pixelformat; |
| 58 | unsigned int pitch; |
Laurent Pinchart | bffba47 | 2016-08-18 10:16:17 -0300 | [diff] [blame] | 59 | dma_addr_t mem[3]; |
Laurent Pinchart | c6b013a | 2016-04-23 19:08:59 -0300 | [diff] [blame] | 60 | struct v4l2_rect src; |
| 61 | struct v4l2_rect dst; |
| 62 | unsigned int alpha; |
| 63 | unsigned int zpos; |
| 64 | }; |
| 65 | |
Laurent Pinchart | 6e274b4 | 2017-12-01 06:47:19 -0500 | [diff] [blame] | 66 | /** |
| 67 | * enum vsp1_du_crc_source - Source used for CRC calculation |
| 68 | * @VSP1_DU_CRC_NONE: CRC calculation disabled |
| 69 | * @VSP1_DU_CRC_PLANE: Perform CRC calculation on an input plane |
| 70 | * @VSP1_DU_CRC_OUTPUT: Perform CRC calculation on the composed output |
| 71 | */ |
| 72 | enum vsp1_du_crc_source { |
| 73 | VSP1_DU_CRC_NONE, |
| 74 | VSP1_DU_CRC_PLANE, |
| 75 | VSP1_DU_CRC_OUTPUT, |
| 76 | }; |
| 77 | |
| 78 | /** |
| 79 | * struct vsp1_du_crc_config - VSP CRC computation configuration parameters |
| 80 | * @source: source for CRC calculation |
| 81 | * @index: index of the CRC source plane (when source is set to plane) |
| 82 | */ |
| 83 | struct vsp1_du_crc_config { |
| 84 | enum vsp1_du_crc_source source; |
| 85 | unsigned int index; |
| 86 | }; |
| 87 | |
| 88 | /** |
| 89 | * struct vsp1_du_atomic_pipe_config - VSP atomic pipe configuration parameters |
| 90 | * @crc: CRC computation configuration |
| 91 | */ |
| 92 | struct vsp1_du_atomic_pipe_config { |
| 93 | struct vsp1_du_crc_config crc; |
| 94 | }; |
| 95 | |
Laurent Pinchart | cebd8c5 | 2017-05-25 22:14:24 +0300 | [diff] [blame] | 96 | void vsp1_du_atomic_begin(struct device *dev, unsigned int pipe_index); |
| 97 | int vsp1_du_atomic_update(struct device *dev, unsigned int pipe_index, |
| 98 | unsigned int rpf, |
Laurent Pinchart | c3f34a4 | 2016-04-23 20:11:59 -0300 | [diff] [blame] | 99 | const struct vsp1_du_atomic_config *cfg); |
Laurent Pinchart | 6e274b4 | 2017-12-01 06:47:19 -0500 | [diff] [blame] | 100 | void vsp1_du_atomic_flush(struct device *dev, unsigned int pipe_index, |
| 101 | const struct vsp1_du_atomic_pipe_config *cfg); |
Laurent Pinchart | f5d0f9d | 2017-05-17 02:20:06 +0300 | [diff] [blame] | 102 | int vsp1_du_map_sg(struct device *dev, struct sg_table *sgt); |
| 103 | void vsp1_du_unmap_sg(struct device *dev, struct sg_table *sgt); |
Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 104 | |
Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 105 | #endif /* __MEDIA_VSP1_H__ */ |