2 * vsp1.h -- R-Car VSP1 API
4 * Copyright (C) 2015 Renesas Electronics Corporation
6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
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.
13 #ifndef __MEDIA_VSP1_H__
14 #define __MEDIA_VSP1_H__
16 #include <linux/types.h>
17 #include <linux/videodev2.h>
21 int vsp1_du_init(struct device
*dev
);
23 int vsp1_du_setup_lif(struct device
*dev
, unsigned int width
,
26 struct vsp1_du_atomic_config
{
36 void vsp1_du_atomic_begin(struct device
*dev
);
37 int vsp1_du_atomic_update(struct device
*dev
, unsigned int rpf
,
38 const struct vsp1_du_atomic_config
*cfg
);
39 void vsp1_du_atomic_flush(struct device
*dev
);
41 #endif /* __MEDIA_VSP1_H__ */