1 /* SPDX-License-Identifier: GPL-2.0-only */
7 * Copyright (C) 2009-2010 Nokia Corporation
8 * Copyright (C) 2009 Texas Instruments, Inc.
10 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11 * Sakari Ailus <sakari.ailus@iki.fi>
14 #ifndef OMAP3_ISP_CORE_H
15 #define OMAP3_ISP_CORE_H
17 #include <media/media-entity.h>
18 #include <media/v4l2-async.h>
19 #include <media/v4l2-device.h>
20 #include <linux/clk-provider.h>
21 #include <linux/device.h>
23 #include <linux/platform_device.h>
24 #include <linux/wait.h>
30 #include "ispresizer.h"
31 #include "isppreview.h"
32 #include "ispcsiphy.h"
36 #define ISP_TOK_TERM 0xFFFFFFFF /*
37 * terminating token for ISP
40 #define to_isp_device(ptr_module) \
41 container_of(ptr_module, struct isp_device, isp_##ptr_module)
42 #define to_device(ptr_module) \
43 (to_isp_device(ptr_module)->dev)
45 enum isp_mem_resources
{
54 OMAP3_ISP_IOMEM_CSI2A_REGS1
,
55 OMAP3_ISP_IOMEM_CSIPHY2
,
56 OMAP3_ISP_IOMEM_CSI2A_REGS2
,
57 OMAP3_ISP_IOMEM_CSI2C_REGS1
,
58 OMAP3_ISP_IOMEM_CSIPHY1
,
59 OMAP3_ISP_IOMEM_CSI2C_REGS2
,
63 enum isp_sbl_resource
{
64 OMAP3_ISP_SBL_CSI1_READ
= 0x1,
65 OMAP3_ISP_SBL_CSI1_WRITE
= 0x2,
66 OMAP3_ISP_SBL_CSI2A_WRITE
= 0x4,
67 OMAP3_ISP_SBL_CSI2C_WRITE
= 0x8,
68 OMAP3_ISP_SBL_CCDC_LSC_READ
= 0x10,
69 OMAP3_ISP_SBL_CCDC_WRITE
= 0x20,
70 OMAP3_ISP_SBL_PREVIEW_READ
= 0x40,
71 OMAP3_ISP_SBL_PREVIEW_WRITE
= 0x80,
72 OMAP3_ISP_SBL_RESIZER_READ
= 0x100,
73 OMAP3_ISP_SBL_RESIZER_WRITE
= 0x200,
76 enum isp_subclk_resource
{
77 OMAP3_ISP_SUBCLK_CCDC
= (1 << 0),
78 OMAP3_ISP_SUBCLK_AEWB
= (1 << 1),
79 OMAP3_ISP_SUBCLK_AF
= (1 << 2),
80 OMAP3_ISP_SUBCLK_HIST
= (1 << 3),
81 OMAP3_ISP_SUBCLK_PREVIEW
= (1 << 4),
82 OMAP3_ISP_SUBCLK_RESIZER
= (1 << 5),
85 /* ISP: OMAP 34xx ES 1.0 */
86 #define ISP_REVISION_1_0 0x10
87 /* ISP2: OMAP 34xx ES 2.0, 2.1 and 3.0 */
88 #define ISP_REVISION_2_0 0x20
89 /* ISP2P: OMAP 36xx */
90 #define ISP_REVISION_15_0 0xF0
92 #define ISP_PHY_TYPE_3430 0
93 #define ISP_PHY_TYPE_3630 1
98 * struct isp_res_mapping - Map ISP io resources to ISP revision.
99 * @isp_rev: ISP_REVISION_x_x
100 * @offset: register offsets of various ISP sub-blocks
101 * @phy_type: ISP_PHY_TYPE_{3430,3630}
103 struct isp_res_mapping
{
105 u32 offset
[OMAP3_ISP_IOMEM_LAST
];
110 * struct isp_reg - Structure for ISP register values.
111 * @reg: 32-bit Register address.
112 * @val: 32-bit Register value.
115 enum isp_mem_resources mmio_range
;
126 struct isp_device
*isp
;
131 spinlock_t lock
; /* Protects enabled and divider */
133 unsigned int divider
;
137 * struct isp_device - ISP device structure.
138 * @dev: Device pointer specific to the OMAP3 ISP.
139 * @revision: Stores current ISP module revision.
140 * @irq_num: Currently used IRQ number.
141 * @mmio_base: Array with kernel base addresses for ioremapped ISP register
143 * @mmio_hist_base_phys: Physical L4 bus address for ISP hist block register
145 * @syscon: Regmap for the syscon register space
146 * @syscon_offset: Offset of the CSIPHY control register in syscon
147 * @phy_type: ISP_PHY_TYPE_{3430,3630}
148 * @mapping: IOMMU mapping
149 * @stat_lock: Spinlock for handling statistics
150 * @isp_mutex: Mutex for serializing requests to ISP.
151 * @stop_failure: Indicates that an entity failed to stop.
152 * @crashed: Crashed ent_enum
153 * @has_context: Context has been saved at least once and can be restored.
154 * @ref_count: Reference count for handling multiple ISP requests.
155 * @cam_ick: Pointer to camera interface clock structure.
156 * @cam_mclk: Pointer to camera functional clock structure.
157 * @csi2_fck: Pointer to camera CSI2 complexIO clock structure.
158 * @l3_ick: Pointer to OMAP3 L3 bus interface clock.
159 * @xclks: External clocks provided by the ISP
160 * @irq: Currently attached ISP ISR callbacks information structure.
161 * @isp_af: Pointer to current settings for ISP AutoFocus SCM.
162 * @isp_hist: Pointer to current settings for ISP Histogram SCM.
163 * @isp_h3a: Pointer to current settings for ISP Auto Exposure and
165 * @isp_res: Pointer to current settings for ISP Resizer.
166 * @isp_prev: Pointer to current settings for ISP Preview.
167 * @isp_ccdc: Pointer to current settings for ISP CCDC.
168 * @platform_cb: ISP driver callback function pointers for platform code
170 * This structure is used to store the OMAP ISP Information.
173 struct v4l2_device v4l2_dev
;
174 struct v4l2_async_notifier notifier
;
175 struct media_device media_dev
;
179 /* platform HW resources */
180 unsigned int irq_num
;
182 void __iomem
*mmio_base
[OMAP3_ISP_IOMEM_LAST
];
183 unsigned long mmio_hist_base_phys
;
184 struct regmap
*syscon
;
188 struct dma_iommu_mapping
*mapping
;
191 spinlock_t stat_lock
; /* common lock for statistic drivers */
192 struct mutex isp_mutex
; /* For handling ref_count field */
194 struct media_entity_enum crashed
;
197 unsigned int autoidle
;
198 #define ISP_CLK_CAM_ICK 0
199 #define ISP_CLK_CAM_MCLK 1
200 #define ISP_CLK_CSI2_FCK 2
201 #define ISP_CLK_L3_ICK 3
202 struct clk
*clock
[4];
203 struct isp_xclk xclks
[2];
206 struct ispstat isp_af
;
207 struct ispstat isp_aewb
;
208 struct ispstat isp_hist
;
209 struct isp_res_device isp_res
;
210 struct isp_prev_device isp_prev
;
211 struct isp_ccdc_device isp_ccdc
;
212 struct isp_csi2_device isp_csi2a
;
213 struct isp_csi2_device isp_csi2c
;
214 struct isp_ccp2_device isp_ccp2
;
215 struct isp_csiphy isp_csiphy1
;
216 struct isp_csiphy isp_csiphy2
;
218 unsigned int sbl_resources
;
219 unsigned int subclk_resources
;
222 struct isp_async_subdev
{
223 struct v4l2_async_subdev asd
;
224 struct isp_bus_cfg bus
;
227 #define v4l2_subdev_to_bus_cfg(sd) \
228 (&container_of((sd)->asd, struct isp_async_subdev, asd)->bus)
230 #define v4l2_dev_to_isp_device(dev) \
231 container_of(dev, struct isp_device, v4l2_dev)
233 void omap3isp_hist_dma_done(struct isp_device
*isp
);
235 void omap3isp_flush(struct isp_device
*isp
);
237 int omap3isp_module_sync_idle(struct media_entity
*me
, wait_queue_head_t
*wait
,
240 int omap3isp_module_sync_is_stopping(wait_queue_head_t
*wait
,
243 int omap3isp_pipeline_set_stream(struct isp_pipeline
*pipe
,
244 enum isp_pipeline_stream_state state
);
245 void omap3isp_pipeline_cancel_stream(struct isp_pipeline
*pipe
);
246 void omap3isp_configure_bridge(struct isp_device
*isp
,
247 enum ccdc_input_entity input
,
248 const struct isp_parallel_cfg
*buscfg
,
249 unsigned int shift
, unsigned int bridge
);
251 struct isp_device
*omap3isp_get(struct isp_device
*isp
);
252 void omap3isp_put(struct isp_device
*isp
);
254 void omap3isp_print_status(struct isp_device
*isp
);
256 void omap3isp_sbl_enable(struct isp_device
*isp
, enum isp_sbl_resource res
);
257 void omap3isp_sbl_disable(struct isp_device
*isp
, enum isp_sbl_resource res
);
259 void omap3isp_subclk_enable(struct isp_device
*isp
,
260 enum isp_subclk_resource res
);
261 void omap3isp_subclk_disable(struct isp_device
*isp
,
262 enum isp_subclk_resource res
);
264 int omap3isp_register_entities(struct platform_device
*pdev
,
265 struct v4l2_device
*v4l2_dev
);
266 void omap3isp_unregister_entities(struct platform_device
*pdev
);
269 * isp_reg_readl - Read value of an OMAP3 ISP register
270 * @isp: Device pointer specific to the OMAP3 ISP.
271 * @isp_mmio_range: Range to which the register offset refers to.
272 * @reg_offset: Register offset to read from.
274 * Returns an unsigned 32 bit value with the required register contents.
277 u32
isp_reg_readl(struct isp_device
*isp
, enum isp_mem_resources isp_mmio_range
,
280 return __raw_readl(isp
->mmio_base
[isp_mmio_range
] + reg_offset
);
284 * isp_reg_writel - Write value to an OMAP3 ISP register
285 * @isp: Device pointer specific to the OMAP3 ISP.
286 * @reg_value: 32 bit value to write to the register.
287 * @isp_mmio_range: Range to which the register offset refers to.
288 * @reg_offset: Register offset to write into.
291 void isp_reg_writel(struct isp_device
*isp
, u32 reg_value
,
292 enum isp_mem_resources isp_mmio_range
, u32 reg_offset
)
294 __raw_writel(reg_value
, isp
->mmio_base
[isp_mmio_range
] + reg_offset
);
298 * isp_reg_clr - Clear individual bits in an OMAP3 ISP register
299 * @isp: Device pointer specific to the OMAP3 ISP.
300 * @mmio_range: Range to which the register offset refers to.
301 * @reg: Register offset to work on.
302 * @clr_bits: 32 bit value which would be cleared in the register.
305 void isp_reg_clr(struct isp_device
*isp
, enum isp_mem_resources mmio_range
,
306 u32 reg
, u32 clr_bits
)
308 u32 v
= isp_reg_readl(isp
, mmio_range
, reg
);
310 isp_reg_writel(isp
, v
& ~clr_bits
, mmio_range
, reg
);
314 * isp_reg_set - Set individual bits in an OMAP3 ISP register
315 * @isp: Device pointer specific to the OMAP3 ISP.
316 * @mmio_range: Range to which the register offset refers to.
317 * @reg: Register offset to work on.
318 * @set_bits: 32 bit value which would be set in the register.
321 void isp_reg_set(struct isp_device
*isp
, enum isp_mem_resources mmio_range
,
322 u32 reg
, u32 set_bits
)
324 u32 v
= isp_reg_readl(isp
, mmio_range
, reg
);
326 isp_reg_writel(isp
, v
| set_bits
, mmio_range
, reg
);
330 * isp_reg_clr_set - Clear and set invidial bits in an OMAP3 ISP register
331 * @isp: Device pointer specific to the OMAP3 ISP.
332 * @mmio_range: Range to which the register offset refers to.
333 * @reg: Register offset to work on.
334 * @clr_bits: 32 bit value which would be cleared in the register.
335 * @set_bits: 32 bit value which would be set in the register.
337 * The clear operation is done first, and then the set operation.
340 void isp_reg_clr_set(struct isp_device
*isp
, enum isp_mem_resources mmio_range
,
341 u32 reg
, u32 clr_bits
, u32 set_bits
)
343 u32 v
= isp_reg_readl(isp
, mmio_range
, reg
);
345 isp_reg_writel(isp
, (v
& ~clr_bits
) | set_bits
, mmio_range
, reg
);
348 static inline enum v4l2_buf_type
349 isp_pad_buffer_type(const struct v4l2_subdev
*subdev
, int pad
)
351 if (pad
>= subdev
->entity
.num_pads
)
354 if (subdev
->entity
.pads
[pad
].flags
& MEDIA_PAD_FL_SINK
)
355 return V4L2_BUF_TYPE_VIDEO_OUTPUT
;
357 return V4L2_BUF_TYPE_VIDEO_CAPTURE
;
360 #endif /* OMAP3_ISP_CORE_H */