[media] v4l: vsp1: Move video device out of struct vsp1_rwpf
[deliverable/linux.git] / drivers / media / platform / vsp1 / vsp1_video.h
CommitLineData
26e0ca22
LP
1/*
2 * vsp1_video.h -- R-Car VSP1 Video Node
3 *
139c9286 4 * Copyright (C) 2013-2015 Renesas Electronics Corporation
26e0ca22
LP
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 __VSP1_VIDEO_H__
14#define __VSP1_VIDEO_H__
15
16#include <linux/list.h>
17#include <linux/spinlock.h>
18#include <linux/wait.h>
19
20#include <media/media-entity.h>
c139990e 21#include <media/videobuf2-v4l2.h>
26e0ca22 22
8b4a0563 23struct vsp1_rwpf;
26e0ca22
LP
24struct vsp1_video;
25
26/*
27 * struct vsp1_format_info - VSP1 video format description
28 * @mbus: media bus format code
29 * @fourcc: V4L2 pixel format FCC identifier
30 * @planes: number of planes
31 * @bpp: bits per pixel
32 * @hwfmt: VSP1 hardware format
33 * @swap_yc: the Y and C components are swapped (Y comes before C)
34 * @swap_uv: the U and V components are swapped (V comes before U)
35 * @hsub: horizontal subsampling factor
36 * @vsub: vertical subsampling factor
7a52b6de 37 * @alpha: has an alpha channel
26e0ca22
LP
38 */
39struct vsp1_format_info {
40 u32 fourcc;
41 unsigned int mbus;
42 unsigned int hwfmt;
43 unsigned int swap;
44 unsigned int planes;
45 unsigned int bpp[3];
46 bool swap_yc;
47 bool swap_uv;
48 unsigned int hsub;
49 unsigned int vsub;
7a52b6de 50 bool alpha;
26e0ca22
LP
51};
52
53enum vsp1_pipeline_state {
54 VSP1_PIPELINE_STOPPED,
55 VSP1_PIPELINE_RUNNING,
56 VSP1_PIPELINE_STOPPING,
57};
58
59/*
60 * struct vsp1_pipeline - A VSP1 hardware pipeline
61 * @media: the media pipeline
62 * @irqlock: protects the pipeline state
63 * @lock: protects the pipeline use count and stream count
64 */
65struct vsp1_pipeline {
66 struct media_pipeline pipe;
67
68 spinlock_t irqlock;
69 enum vsp1_pipeline_state state;
70 wait_queue_head_t wq;
71
72 struct mutex lock;
73 unsigned int use_count;
74 unsigned int stream_count;
75 unsigned int buffers_ready;
76
77 unsigned int num_video;
78 unsigned int num_inputs;
7005a817 79 struct vsp1_rwpf *inputs[VSP1_MAX_RPF];
26e0ca22 80 struct vsp1_rwpf *output;
629bb6d4 81 struct vsp1_entity *bru;
26e0ca22 82 struct vsp1_entity *lif;
bdc2df62
LP
83 struct vsp1_entity *uds;
84 struct vsp1_entity *uds_input;
26e0ca22
LP
85
86 struct list_head entities;
87};
88
89static inline struct vsp1_pipeline *to_vsp1_pipeline(struct media_entity *e)
90{
91 if (likely(e->pipe))
92 return container_of(e->pipe, struct vsp1_pipeline, pipe);
93 else
94 return NULL;
95}
96
f7ebf3ca 97struct vsp1_vb2_buffer {
2d700715 98 struct vb2_v4l2_buffer buf;
26e0ca22
LP
99 struct list_head queue;
100
101 dma_addr_t addr[3];
102 unsigned int length[3];
103};
104
f7ebf3ca
LP
105static inline struct vsp1_vb2_buffer *
106to_vsp1_vb2_buffer(struct vb2_v4l2_buffer *vbuf)
26e0ca22 107{
f7ebf3ca 108 return container_of(vbuf, struct vsp1_vb2_buffer, buf);
26e0ca22
LP
109}
110
26e0ca22 111struct vsp1_video {
9d40637a 112 struct list_head list;
26e0ca22 113 struct vsp1_device *vsp1;
8b4a0563 114 struct vsp1_rwpf *rwpf;
26e0ca22 115
26e0ca22
LP
116 struct video_device video;
117 enum v4l2_buf_type type;
118 struct media_pad pad;
119
120 struct mutex lock;
26e0ca22
LP
121
122 struct vsp1_pipeline pipe;
123 unsigned int pipe_index;
124
125 struct vb2_queue queue;
126 void *alloc_ctx;
127 spinlock_t irqlock;
128 struct list_head irqqueue;
129 unsigned int sequence;
130};
131
132static inline struct vsp1_video *to_vsp1_video(struct video_device *vdev)
133{
134 return container_of(vdev, struct vsp1_video, video);
135}
136
9d40637a
LP
137struct vsp1_video *vsp1_video_create(struct vsp1_device *vsp1,
138 struct vsp1_rwpf *rwpf);
26e0ca22
LP
139void vsp1_video_cleanup(struct vsp1_video *video);
140
141void vsp1_pipeline_frame_end(struct vsp1_pipeline *pipe);
142
bdc2df62
LP
143void vsp1_pipeline_propagate_alpha(struct vsp1_pipeline *pipe,
144 struct vsp1_entity *input,
145 unsigned int alpha);
146
139c9286
SF
147void vsp1_pipelines_suspend(struct vsp1_device *vsp1);
148void vsp1_pipelines_resume(struct vsp1_device *vsp1);
149
26e0ca22 150#endif /* __VSP1_VIDEO_H__ */
This page took 0.134339 seconds and 5 git commands to generate.