blob: c135c47b46410454dbaddb26fd89f14f7fea9074 [file] [log] [blame]
Laurent Pinchartf3af9572015-08-02 18:37:01 -03001/*
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 Pinchartc6b013a2016-04-23 19:08:59 -030017#include <linux/videodev2.h>
Laurent Pinchartf3af9572015-08-02 18:37:01 -030018
19struct device;
Laurent Pinchartf3af9572015-08-02 18:37:01 -030020
21int vsp1_du_init(struct device *dev);
22
Kieran Bingham8c71fff2017-03-03 06:31:48 -030023/**
24 * struct vsp1_du_lif_config - VSP LIF configuration
25 * @width: output frame width
26 * @height: output frame height
Kieran Binghamd7ade202017-03-04 02:01:17 +000027 * @callback: frame completion callback function (optional). When a callback
28 * is provided, the VSP driver guarantees that it will be called once
29 * and only once for each vsp1_du_atomic_flush() call.
30 * @callback_data: data to be passed to the frame completion callback
Kieran Bingham8c71fff2017-03-03 06:31:48 -030031 */
32struct vsp1_du_lif_config {
33 unsigned int width;
34 unsigned int height;
Kieran Binghamd7ade202017-03-04 02:01:17 +000035
36 void (*callback)(void *);
37 void *callback_data;
Kieran Bingham8c71fff2017-03-03 06:31:48 -030038};
39
40int vsp1_du_setup_lif(struct device *dev, const struct vsp1_du_lif_config *cfg);
Laurent Pinchartf3af9572015-08-02 18:37:01 -030041
Laurent Pinchartc6b013a2016-04-23 19:08:59 -030042struct vsp1_du_atomic_config {
43 u32 pixelformat;
44 unsigned int pitch;
Laurent Pinchartbffba472016-08-18 10:16:17 -030045 dma_addr_t mem[3];
Laurent Pinchartc6b013a2016-04-23 19:08:59 -030046 struct v4l2_rect src;
47 struct v4l2_rect dst;
48 unsigned int alpha;
49 unsigned int zpos;
50};
51
Laurent Pinchartfa369c92016-02-19 23:12:26 -020052void vsp1_du_atomic_begin(struct device *dev);
Laurent Pinchartc3f34a42016-04-23 20:11:59 -030053int vsp1_du_atomic_update(struct device *dev, unsigned int rpf,
54 const struct vsp1_du_atomic_config *cfg);
Laurent Pinchartfa369c92016-02-19 23:12:26 -020055void vsp1_du_atomic_flush(struct device *dev);
Laurent Pinchartf3af9572015-08-02 18:37:01 -030056
Laurent Pinchartf3af9572015-08-02 18:37:01 -030057#endif /* __MEDIA_VSP1_H__ */