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 | |
| 16 | #include <linux/types.h> |
Laurent Pinchart | c6b013a | 2016-04-23 19:08:59 -0300 | [diff] [blame^] | 17 | #include <linux/videodev2.h> |
Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 18 | |
| 19 | struct device; |
Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 20 | |
| 21 | int vsp1_du_init(struct device *dev); |
| 22 | |
| 23 | int vsp1_du_setup_lif(struct device *dev, unsigned int width, |
| 24 | unsigned int height); |
| 25 | |
Laurent Pinchart | c6b013a | 2016-04-23 19:08:59 -0300 | [diff] [blame^] | 26 | struct vsp1_du_atomic_config { |
| 27 | u32 pixelformat; |
| 28 | unsigned int pitch; |
| 29 | dma_addr_t mem[2]; |
| 30 | struct v4l2_rect src; |
| 31 | struct v4l2_rect dst; |
| 32 | unsigned int alpha; |
| 33 | unsigned int zpos; |
| 34 | }; |
| 35 | |
Laurent Pinchart | fa369c9 | 2016-02-19 23:12:26 -0200 | [diff] [blame] | 36 | void vsp1_du_atomic_begin(struct device *dev); |
Laurent Pinchart | c6b013a | 2016-04-23 19:08:59 -0300 | [diff] [blame^] | 37 | int __vsp1_du_atomic_update(struct device *dev, unsigned int rpf, |
| 38 | const struct vsp1_du_atomic_config *cfg); |
Laurent Pinchart | fa369c9 | 2016-02-19 23:12:26 -0200 | [diff] [blame] | 39 | void vsp1_du_atomic_flush(struct device *dev); |
Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 40 | |
Laurent Pinchart | c6b013a | 2016-04-23 19:08:59 -0300 | [diff] [blame^] | 41 | static inline int vsp1_du_atomic_update_old(struct device *dev, |
| 42 | unsigned int rpf, u32 pixelformat, unsigned int pitch, |
| 43 | dma_addr_t mem[2], const struct v4l2_rect *src, |
| 44 | const struct v4l2_rect *dst) |
Laurent Pinchart | f5e04e7 | 2016-03-24 05:15:59 -0300 | [diff] [blame] | 45 | { |
Laurent Pinchart | c6b013a | 2016-04-23 19:08:59 -0300 | [diff] [blame^] | 46 | struct vsp1_du_atomic_config cfg = { |
| 47 | .pixelformat = pixelformat, |
| 48 | .pitch = pitch, |
| 49 | .mem[0] = mem[0], |
| 50 | .mem[1] = mem[1], |
| 51 | .src = *src, |
| 52 | .dst = *dst, |
| 53 | .alpha = 255, |
| 54 | .zpos = 0, |
| 55 | }; |
| 56 | |
| 57 | return __vsp1_du_atomic_update(dev, rpf, &cfg); |
Laurent Pinchart | f5e04e7 | 2016-03-24 05:15:59 -0300 | [diff] [blame] | 58 | } |
| 59 | |
Laurent Pinchart | c6b013a | 2016-04-23 19:08:59 -0300 | [diff] [blame^] | 60 | #define _vsp1_du_atomic_update(_1, _2, _3, _4, _5, _6, _7, f, ...) f |
| 61 | #define vsp1_du_atomic_update(...) \ |
| 62 | _vsp1_du_atomic_update(__VA_ARGS__, vsp1_du_atomic_update_old, 0, 0, \ |
| 63 | 0, __vsp1_du_atomic_update)(__VA_ARGS__) |
| 64 | |
Laurent Pinchart | f3af957 | 2015-08-02 18:37:01 -0300 | [diff] [blame] | 65 | #endif /* __MEDIA_VSP1_H__ */ |