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 | d7ade20 | 2017-03-04 02:01:17 +0000 | [diff] [blame] | 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 |
Kieran Bingham | 8c71fff | 2017-03-03 06:31:48 -0300 | [diff] [blame] | 32 | */ |
| 33 | struct vsp1_du_lif_config { |
| 34 | unsigned int width; |
| 35 | unsigned int height; |
Kieran Bingham | d7ade20 | 2017-03-04 02:01:17 +0000 | [diff] [blame] | 36 | |
Kieran Bingham | 5e0594f | 2017-06-30 13:14:11 +0100 | [diff] [blame] | 37 | void (*callback)(void *, bool); |
Kieran Bingham | d7ade20 | 2017-03-04 02:01:17 +0000 | [diff] [blame] | 38 | void *callback_data; |
Kieran Bingham | 8c71fff | 2017-03-03 06:31:48 -0300 | [diff] [blame] | 39 | }; |
| 40 | |
Laurent Pinchart | cebd8c5 | 2017-05-25 22:14:24 +0300 | [diff] [blame] | 41 | int vsp1_du_setup_lif(struct device *dev, unsigned int pipe_index, |
| 42 | const struct vsp1_du_lif_config *cfg); |
Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 43 | |
Laurent Pinchart | c6b013a | 2016-04-23 19:08:59 -0300 | [diff] [blame] | 44 | struct vsp1_du_atomic_config { |
| 45 | u32 pixelformat; |
| 46 | unsigned int pitch; |
Laurent Pinchart | bffba47 | 2016-08-18 10:16:17 -0300 | [diff] [blame] | 47 | dma_addr_t mem[3]; |
Laurent Pinchart | c6b013a | 2016-04-23 19:08:59 -0300 | [diff] [blame] | 48 | struct v4l2_rect src; |
| 49 | struct v4l2_rect dst; |
| 50 | unsigned int alpha; |
| 51 | unsigned int zpos; |
| 52 | }; |
| 53 | |
Laurent Pinchart | cebd8c5 | 2017-05-25 22:14:24 +0300 | [diff] [blame] | 54 | void vsp1_du_atomic_begin(struct device *dev, unsigned int pipe_index); |
| 55 | int vsp1_du_atomic_update(struct device *dev, unsigned int pipe_index, |
| 56 | unsigned int rpf, |
Laurent Pinchart | c3f34a4 | 2016-04-23 20:11:59 -0300 | [diff] [blame] | 57 | const struct vsp1_du_atomic_config *cfg); |
Laurent Pinchart | cebd8c5 | 2017-05-25 22:14:24 +0300 | [diff] [blame] | 58 | void vsp1_du_atomic_flush(struct device *dev, unsigned int pipe_index); |
Laurent Pinchart | f5d0f9d | 2017-05-17 02:20:06 +0300 | [diff] [blame] | 59 | int vsp1_du_map_sg(struct device *dev, struct sg_table *sgt); |
| 60 | void vsp1_du_unmap_sg(struct device *dev, struct sg_table *sgt); |
Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 61 | |
Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 62 | #endif /* __MEDIA_VSP1_H__ */ |