Lines Matching full:vin

3  * Driver for Renesas R-Car VIN
31 /* Max number on VIN instances that can be in a system */
130 * CSI-2 receiver to a VIN
132 * @master: VIN group master ID.
134 * @chsel: CHSEL register values that connects VIN group to CSI-2.
137 * Each R-Car CSI-2 receiver has four output channels facing the VIN
141 * on which channel, the VIN devices only care about output channels.
150 * struct rvin_info - Information about the particular VIN implementation
151 * @model: VIN model
153 * @use_isp: the VIN is connected to the ISP and not to the CSI-2
156 * @max_width: max input width the VIN supports
157 * @max_height: max input height the VIN supports
172 void (*scaler)(struct rvin_dev *vin);
176 * struct rvin_dev - Renesas VIN device structure
179 * @info: info about VIN instance
181 * @vdev: V4L2 video device associated with VIN
189 * @id: Gen3 group id for this VIN
203 * @is_csi: flag to mark the VIN as using a CSI-2 subdevice
255 void (*scaler)(struct rvin_dev *vin);
261 #define vin_to_source(vin) ((vin)->parallel.subdev) argument
270 * struct rvin_group - VIN CSI2 group information
271 * @refcount: number of VIN instances using the group
275 * @lock: protects the count, notifier, vin and csi members
276 * @count: number of enabled VIN instances found in DT
278 * @vin: VIN instances which are part of the group
291 struct rvin_dev *vin[RCAR_VIN_NUM]; member
293 int (*link_setup)(struct rvin_dev *vin);
301 int rvin_dma_register(struct rvin_dev *vin, int irq);
302 void rvin_dma_unregister(struct rvin_dev *vin);
304 int rvin_v4l2_register(struct rvin_dev *vin);
305 void rvin_v4l2_unregister(struct rvin_dev *vin);
307 const struct rvin_video_format *rvin_format_from_pixel(struct rvin_dev *vin,
312 void rvin_scaler_gen2(struct rvin_dev *vin);
313 void rvin_scaler_gen3(struct rvin_dev *vin);
314 void rvin_crop_scale_comp(struct rvin_dev *vin);
316 int rvin_set_channel_routing(struct rvin_dev *vin, u8 chsel);
317 void rvin_set_alpha(struct rvin_dev *vin, unsigned int alpha);
319 int rvin_start_streaming(struct rvin_dev *vin);
320 void rvin_stop_streaming(struct rvin_dev *vin);