Lines Matching defs:isp_device
179 struct isp_device { struct
180 struct v4l2_device v4l2_dev;
181 struct v4l2_async_notifier notifier;
182 struct media_device media_dev;
183 struct device *dev;
184 u32 revision;
187 struct isp_platform_data *pdata;
188 unsigned int irq_num;
190 void __iomem *mmio_base[OMAP3_ISP_IOMEM_LAST];
191 unsigned long mmio_hist_base_phys;
192 struct regmap *syscon;
193 u32 syscon_offset;
194 u32 phy_type;
196 struct dma_iommu_mapping *mapping;
199 spinlock_t stat_lock; /* common lock for statistic drivers */
200 struct mutex isp_mutex; /* For handling ref_count field */
201 bool stop_failure;
202 u32 crashed;
203 int has_context;
204 int ref_count;
205 unsigned int autoidle;
210 struct clk *clock[4];
211 struct isp_xclk xclks[2];
214 struct ispstat isp_af;
215 struct ispstat isp_aewb;
239 #define v4l2_dev_to_isp_device(dev) \ argument
240 container_of(dev, struct isp_device, v4l2_dev) argument