Lines Matching defs:stm32_dcmi
121 struct stm32_dcmi { struct
123 spinlock_t irqlock;
124 struct device *dev;
125 void __iomem *regs;
126 struct resource *res;
127 struct reset_control *rstc;
128 int sequence;
129 struct list_head buffers;
130 struct dcmi_buf *active;
132 struct v4l2_device v4l2_dev;
133 struct video_device *vdev;
134 struct v4l2_async_notifier notifier;
135 struct v4l2_subdev *source;
136 struct v4l2_format fmt;
137 struct v4l2_rect crop;
138 bool do_crop;
140 const struct dcmi_format **sd_formats;
141 unsigned int num_of_sd_formats;
142 const struct dcmi_format *sd_format;
143 struct dcmi_framesize *sd_framesizes;
144 unsigned int num_of_sd_framesizes;
145 struct dcmi_framesize sd_framesize;
146 struct v4l2_rect sd_bounds;
172 static inline struct stm32_dcmi *notifier_to_dcmi(struct v4l2_async_notifier *n) in notifier_to_dcmi() argument