2 * Driver for Renesas R-Car VIN
4 * Copyright (C) 2016 Renesas Electronics Corp.
5 * Copyright (C) 2011-2013 Renesas Solutions Corp.
6 * Copyright (C) 2013 Cogent Embedded, Inc., <source@cogentembedded.com>
7 * Copyright (C) 2008 Magnus Damm
9 * Based on the soc-camera rcar_vin driver
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
20 #include <media/v4l2-async.h>
21 #include <media/v4l2-ctrls.h>
22 #include <media/v4l2-dev.h>
23 #include <media/v4l2-device.h>
24 #include <media/videobuf2-v4l2.h>
26 /* Number of HW buffers */
27 #define HW_BUFFER_NUM 3
29 /* Address alignment mask for HW buffers */
30 #define HW_BUFFER_MASK 0x7f
39 * STOPPED - No operation in progress
40 * RUNNING - Operation in progress have buffers
41 * STALLED - No operation in progress have no buffers
42 * STOPPING - Stopping operation
52 * struct rvin_source_fmt - Source information
53 * @width: Width from source
54 * @height: Height from source
56 struct rvin_source_fmt
{
62 * struct rvin_video_format - Data format stored in memory
63 * @fourcc: Pixelformat
64 * @bpp: Bytes per pixel
66 struct rvin_video_format
{
72 * struct rvin_graph_entity - Video endpoint from async framework
73 * @asd: sub-device descriptor for async framework
74 * @subdev: subdevice matched using async framework
75 * @code: Media bus format from source
76 * @mbus_cfg: Media bus format from DT
78 struct rvin_graph_entity
{
79 struct v4l2_async_subdev asd
;
80 struct v4l2_subdev
*subdev
;
83 struct v4l2_mbus_config mbus_cfg
;
87 * struct rvin_dev - Renesas VIN device structure
89 * @base: device I/O register space remapped to virtual memory
90 * @chip: type of VIN chip
92 * @vdev: V4L2 video device associated with VIN
93 * @v4l2_dev: V4L2 device
94 * @src_pad_idx: source pad index for media controller drivers
95 * @sink_pad_idx: sink pad index for media controller drivers
96 * @ctrl_handler: V4L2 control handler
97 * @notifier: V4L2 asynchronous subdevs notifier
98 * @digital: entity in the DT for local digital subdevice
100 * @lock: protects @queue
101 * @queue: vb2 buffers queue
103 * @qlock: protects @queue_buf, @buf_list, @continuous, @sequence
105 * @queue_buf: Keeps track of buffers given to HW slot
106 * @buf_list: list of queued buffers
107 * @continuous: tracks if active operation is continuous or single mode
108 * @sequence: V4L2 buffers sequence number
109 * @state: keeps track of operation state
111 * @source: active format from the video source
112 * @format: active V4L2 pixel format
114 * @crop: active cropping
115 * @compose: active composing
122 struct video_device vdev
;
123 struct v4l2_device v4l2_dev
;
126 struct v4l2_ctrl_handler ctrl_handler
;
127 struct v4l2_async_notifier notifier
;
128 struct rvin_graph_entity digital
;
131 struct vb2_queue queue
;
134 struct vb2_v4l2_buffer
*queue_buf
[HW_BUFFER_NUM
];
135 struct list_head buf_list
;
137 unsigned int sequence
;
138 enum rvin_dma_state state
;
140 struct rvin_source_fmt source
;
141 struct v4l2_pix_format format
;
143 struct v4l2_rect crop
;
144 struct v4l2_rect compose
;
147 #define vin_to_source(vin) vin->digital.subdev
150 #define vin_dbg(d, fmt, arg...) dev_dbg(d->dev, fmt, ##arg)
151 #define vin_info(d, fmt, arg...) dev_info(d->dev, fmt, ##arg)
152 #define vin_warn(d, fmt, arg...) dev_warn(d->dev, fmt, ##arg)
153 #define vin_err(d, fmt, arg...) dev_err(d->dev, fmt, ##arg)
155 int rvin_dma_probe(struct rvin_dev
*vin
, int irq
);
156 void rvin_dma_remove(struct rvin_dev
*vin
);
158 int rvin_v4l2_probe(struct rvin_dev
*vin
);
159 void rvin_v4l2_remove(struct rvin_dev
*vin
);
161 const struct rvin_video_format
*rvin_format_from_pixel(u32 pixelformat
);
163 /* Cropping, composing and scaling */
164 void rvin_scale_try(struct rvin_dev
*vin
, struct v4l2_pix_format
*pix
,
165 u32 width
, u32 height
);
166 void rvin_crop_scale_comp(struct rvin_dev
*vin
);