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
155 * @max_width: max input width the VIN supports
156 * @max_height: max input height the VIN supports
170 void (*scaler)(struct rvin_dev *vin);
174 * struct rvin_dev - Renesas VIN device structure
177 * @info: info about VIN instance
179 * @vdev: V4L2 video device associated with VIN
187 * @id: Gen3 group id for this VIN
201 * @is_csi: flag to mark the VIN as using a CSI-2 subdevice
253 void (*scaler)(struct rvin_dev *vin);
259 #define vin_to_source(vin) ((vin)->parallel.subdev) argument
268 * struct rvin_group - VIN CSI2 group information
269 * @refcount: number of VIN instances using the group
273 * @lock: protects the count, notifier, vin and csi members
274 * @count: number of enabled VIN instances found in DT
276 * @vin: VIN instances which are part of the group
289 struct rvin_dev *vin[RCAR_VIN_NUM]; member
291 int (*link_setup)(struct rvin_dev *vin);
299 int rvin_dma_register(struct rvin_dev *vin, int irq);
300 void rvin_dma_unregister(struct rvin_dev *vin);
302 int rvin_v4l2_register(struct rvin_dev *vin);
303 void rvin_v4l2_unregister(struct rvin_dev *vin);
305 const struct rvin_video_format *rvin_format_from_pixel(struct rvin_dev *vin,
310 void rvin_scaler_gen2(struct rvin_dev *vin);
311 void rvin_scaler_gen3(struct rvin_dev *vin);
312 void rvin_crop_scale_comp(struct rvin_dev *vin);
314 int rvin_set_channel_routing(struct rvin_dev *vin, u8 chsel);
315 void rvin_set_alpha(struct rvin_dev *vin, unsigned int alpha);
317 int rvin_start_streaming(struct rvin_dev *vin);
318 void rvin_stop_streaming(struct rvin_dev *vin);