Lines Matching refs: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_sbl_enable(struct isp_device *isp, enum isp_sbl_resource res);
264 void omap3isp_sbl_disable(struct isp_device *isp, enum isp_sbl_resource res);
266 void omap3isp_subclk_enable(struct isp_device *isp,
268 void omap3isp_subclk_disable(struct isp_device *isp,
277 * @isp: Device pointer specific to the OMAP3 ISP.
284 u32 isp_reg_readl(struct isp_device *isp, enum isp_mem_resources isp_mmio_range,
287 return __raw_readl(isp->mmio_base[isp_mmio_range] + reg_offset);
292 * @isp: Device pointer specific to the OMAP3 ISP.
298 void isp_reg_writel(struct isp_device *isp, u32 reg_value,
301 __raw_writel(reg_value, isp->mmio_base[isp_mmio_range] + reg_offset);
306 * @isp: Device pointer specific to the OMAP3 ISP.
312 void isp_reg_clr(struct isp_device *isp, enum isp_mem_resources mmio_range,
315 u32 v = isp_reg_readl(isp, mmio_range, reg);
317 isp_reg_writel(isp, v & ~clr_bits, mmio_range, reg);
322 * @isp: Device pointer specific to the OMAP3 ISP.
328 void isp_reg_set(struct isp_device *isp, enum isp_mem_resources mmio_range,
331 u32 v = isp_reg_readl(isp, mmio_range, reg);
333 isp_reg_writel(isp, v | set_bits, mmio_range, reg);
338 * @isp: Device pointer specific to the OMAP3 ISP.
347 void isp_reg_clr_set(struct isp_device *isp, enum isp_mem_resources mmio_range,
350 u32 v = isp_reg_readl(isp, mmio_range, reg);
352 isp_reg_writel(isp, (v & ~clr_bits) | set_bits, mmio_range, reg);