Lines Matching defs:isp

3  * isp.h
126 struct isp_device *isp;
242 void omap3isp_hist_dma_done(struct isp_device *isp);
244 void omap3isp_flush(struct isp_device *isp);
255 void omap3isp_configure_bridge(struct isp_device *isp,
260 struct isp_device *omap3isp_get(struct isp_device *isp);
261 void omap3isp_put(struct isp_device *isp);
263 void omap3isp_print_status(struct isp_device *isp);
265 void omap3isp_sbl_enable(struct isp_device *isp, enum isp_sbl_resource res);
266 void omap3isp_sbl_disable(struct isp_device *isp, enum isp_sbl_resource res);
268 void omap3isp_subclk_enable(struct isp_device *isp,
270 void omap3isp_subclk_disable(struct isp_device *isp,
279 * @isp: Device pointer specific to the OMAP3 ISP.
286 u32 isp_reg_readl(struct isp_device *isp, enum isp_mem_resources isp_mmio_range,
289 return __raw_readl(isp->mmio_base[isp_mmio_range] + reg_offset);
294 * @isp: Device pointer specific to the OMAP3 ISP.
300 void isp_reg_writel(struct isp_device *isp, u32 reg_value,
303 __raw_writel(reg_value, isp->mmio_base[isp_mmio_range] + reg_offset);
308 * @isp: Device pointer specific to the OMAP3 ISP.
314 void isp_reg_clr(struct isp_device *isp, enum isp_mem_resources mmio_range,
317 u32 v = isp_reg_readl(isp, mmio_range, reg);
319 isp_reg_writel(isp, v & ~clr_bits, mmio_range, reg);
324 * @isp: Device pointer specific to the OMAP3 ISP.
330 void isp_reg_set(struct isp_device *isp, enum isp_mem_resources mmio_range,
333 u32 v = isp_reg_readl(isp, mmio_range, reg);
335 isp_reg_writel(isp, v | set_bits, mmio_range, reg);
340 * @isp: Device pointer specific to the OMAP3 ISP.
349 void isp_reg_clr_set(struct isp_device *isp, enum isp_mem_resources mmio_range,
352 u32 v = isp_reg_readl(isp, mmio_range, reg);
354 isp_reg_writel(isp, (v & ~clr_bits) | set_bits, mmio_range, reg);