Lines Matching defs:stm32_dcmi
120 struct stm32_dcmi { struct
122 spinlock_t irqlock;
123 struct device *dev;
124 void __iomem *regs;
125 struct resource *res;
126 struct reset_control *rstc;
127 int sequence;
128 struct list_head buffers;
129 struct dcmi_buf *active;
130 int irq;
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_subdev *s_subdev;
137 struct v4l2_format fmt;
138 struct v4l2_rect crop;
139 bool do_crop;
141 const struct dcmi_format **sd_formats;
142 unsigned int num_of_sd_formats;
143 const struct dcmi_format *sd_format;
144 struct dcmi_framesize *sd_framesizes;
145 unsigned int num_of_sd_framesizes;
146 struct dcmi_framesize sd_framesize;
147 struct v4l2_rect sd_bounds;
150 struct mutex lock;
174 static inline struct stm32_dcmi *notifier_to_dcmi(struct v4l2_async_notifier *n) in notifier_to_dcmi() argument