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;
131 int irq;
133 struct v4l2_device v4l2_dev;
134 struct video_device *vdev;
135 struct v4l2_async_notifier notifier;
136 struct v4l2_subdev *source;
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