]> Git Repo - linux.git/blame - include/media/vsp1.h
[media] v4l: vsp1: Disconnect unused RPFs from the DRM pipeline
[linux.git] / include / media / vsp1.h
CommitLineData
f3af9572
LP
1/*
2 * vsp1.h -- R-Car VSP1 API
3 *
4 * Copyright (C) 2015 Renesas Electronics Corporation
5 *
6 * Contact: Laurent Pinchart ([email protected])
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>
17
18struct device;
19struct v4l2_rect;
20
21int vsp1_du_init(struct device *dev);
22
23int vsp1_du_setup_lif(struct device *dev, unsigned int width,
24 unsigned int height);
25
26int vsp1_du_setup_rpf(struct device *dev, unsigned int rpf, u32 pixelformat,
27 unsigned int pitch, dma_addr_t mem[2],
28 const struct v4l2_rect *src, const struct v4l2_rect *dst);
29
30#endif /* __MEDIA_VSP1_H__ */
This page took 0.027268 seconds and 4 git commands to generate.