Lines Matching defs:isp_device
175 struct isp_device { struct
176 struct v4l2_device v4l2_dev;
177 struct v4l2_async_notifier notifier;
178 struct media_device media_dev;
179 struct device *dev;
180 u32 revision;
183 unsigned int irq_num;
185 void __iomem *mmio_base[OMAP3_ISP_IOMEM_LAST];
186 unsigned long mmio_hist_base_phys;
187 struct regmap *syscon;
188 u32 syscon_offset;
189 u32 phy_type;
191 struct dma_iommu_mapping *mapping;
194 spinlock_t stat_lock; /* common lock for statistic drivers */
195 struct mutex isp_mutex; /* For handling ref_count field */
196 bool stop_failure;
197 u32 crashed;
198 int has_context;
199 int ref_count;
200 unsigned int autoidle;
205 struct clk *clock[4];
206 struct isp_xclk xclks[2];
209 struct ispstat isp_af;
210 struct ispstat isp_aewb;
234 #define v4l2_dev_to_isp_device(dev) \ argument
235 container_of(dev, struct isp_device, v4l2_dev) argument