6 * Copyright (C) 2006-2010 Nokia Corporation
7 * Copyright (C) 2007-2009 Texas Instruments, Inc.
9 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10 * Sakari Ailus <sakari.ailus@iki.fi>
13 * Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14 * Sakari Ailus <sakari.ailus@iki.fi>
15 * David Cohen <dacohen@gmail.com>
16 * Stanimir Varbanov <svarbanov@mm-sol.com>
17 * Vimarsh Zutshi <vimarsh.zutshi@gmail.com>
18 * Tuukka Toivonen <tuukkat76@gmail.com>
19 * Sergio Aguirre <saaguirre@ti.com>
20 * Antti Koskipaa <akoskipa@gmail.com>
21 * Ivan T. Ivanov <iivanov@mm-sol.com>
22 * RaniSuneela <r-m@ti.com>
23 * Atanas Filipov <afilipov@mm-sol.com>
24 * Gjorgji Rosikopulos <grosikopulos@mm-sol.com>
25 * Hiroshi DOYU <hiroshi.doyu@nokia.com>
26 * Nayden Kanchev <nkanchev@mm-sol.com>
27 * Phil Carmody <ext-phil.2.carmody@nokia.com>
28 * Artem Bityutskiy <artem.bityutskiy@nokia.com>
29 * Dominic Curran <dcurran@ti.com>
30 * Ilkka Myllyperkio <ilkka.myllyperkio@sofica.fi>
31 * Pallavi Kulkarni <p-kulkarni@ti.com>
32 * Vaibhav Hiremath <hvaibhav@ti.com>
33 * Mohit Jalori <mjalori@ti.com>
34 * Sameer Venkatraman <sameerv@ti.com>
35 * Senthilvadivu Guruswamy <svadivu@ti.com>
36 * Thara Gopinath <thara@ti.com>
37 * Toni Leinonen <toni.leinonen@nokia.com>
38 * Troy Laramy <t-laramy@ti.com>
40 * This program is free software; you can redistribute it and/or modify
41 * it under the terms of the GNU General Public License version 2 as
42 * published by the Free Software Foundation.
44 * This program is distributed in the hope that it will be useful, but
45 * WITHOUT ANY WARRANTY; without even the implied warranty of
46 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
47 * General Public License for more details.
49 * You should have received a copy of the GNU General Public License
50 * along with this program; if not, write to the Free Software
51 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
55 #include <asm/cacheflush.h>
57 #include <linux/clk.h>
58 #include <linux/delay.h>
59 #include <linux/device.h>
60 #include <linux/dma-mapping.h>
61 #include <linux/i2c.h>
62 #include <linux/interrupt.h>
63 #include <linux/module.h>
64 #include <linux/platform_device.h>
65 #include <linux/regulator/consumer.h>
66 #include <linux/slab.h>
67 #include <linux/sched.h>
68 #include <linux/vmalloc.h>
70 #include <media/v4l2-common.h>
71 #include <media/v4l2-device.h>
76 #include "isppreview.h"
77 #include "ispresizer.h"
83 static unsigned int autoidle
;
84 module_param(autoidle
, int, 0444);
85 MODULE_PARM_DESC(autoidle
, "Enable OMAP3ISP AUTOIDLE support");
87 static void isp_save_ctx(struct isp_device
*isp
);
89 static void isp_restore_ctx(struct isp_device
*isp
);
91 static const struct isp_res_mapping isp_res_maps
[] = {
93 .isp_rev
= ISP_REVISION_2_0
,
94 .map
= 1 << OMAP3_ISP_IOMEM_MAIN
|
95 1 << OMAP3_ISP_IOMEM_CCP2
|
96 1 << OMAP3_ISP_IOMEM_CCDC
|
97 1 << OMAP3_ISP_IOMEM_HIST
|
98 1 << OMAP3_ISP_IOMEM_H3A
|
99 1 << OMAP3_ISP_IOMEM_PREV
|
100 1 << OMAP3_ISP_IOMEM_RESZ
|
101 1 << OMAP3_ISP_IOMEM_SBL
|
102 1 << OMAP3_ISP_IOMEM_CSI2A_REGS1
|
103 1 << OMAP3_ISP_IOMEM_CSIPHY2
,
106 .isp_rev
= ISP_REVISION_15_0
,
107 .map
= 1 << OMAP3_ISP_IOMEM_MAIN
|
108 1 << OMAP3_ISP_IOMEM_CCP2
|
109 1 << OMAP3_ISP_IOMEM_CCDC
|
110 1 << OMAP3_ISP_IOMEM_HIST
|
111 1 << OMAP3_ISP_IOMEM_H3A
|
112 1 << OMAP3_ISP_IOMEM_PREV
|
113 1 << OMAP3_ISP_IOMEM_RESZ
|
114 1 << OMAP3_ISP_IOMEM_SBL
|
115 1 << OMAP3_ISP_IOMEM_CSI2A_REGS1
|
116 1 << OMAP3_ISP_IOMEM_CSIPHY2
|
117 1 << OMAP3_ISP_IOMEM_CSI2A_REGS2
|
118 1 << OMAP3_ISP_IOMEM_CSI2C_REGS1
|
119 1 << OMAP3_ISP_IOMEM_CSIPHY1
|
120 1 << OMAP3_ISP_IOMEM_CSI2C_REGS2
,
124 /* Structure for saving/restoring ISP module registers */
125 static struct isp_reg isp_reg_list
[] = {
126 {OMAP3_ISP_IOMEM_MAIN
, ISP_SYSCONFIG
, 0},
127 {OMAP3_ISP_IOMEM_MAIN
, ISP_CTRL
, 0},
128 {OMAP3_ISP_IOMEM_MAIN
, ISP_TCTRL_CTRL
, 0},
133 * omap3isp_flush - Post pending L3 bus writes by doing a register readback
134 * @isp: OMAP3 ISP device
136 * In order to force posting of pending writes, we need to write and
137 * readback the same register, in this case the revision register.
139 * See this link for reference:
140 * http://www.mail-archive.com/linux-omap@vger.kernel.org/msg08149.html
142 void omap3isp_flush(struct isp_device
*isp
)
144 isp_reg_writel(isp
, 0, OMAP3_ISP_IOMEM_MAIN
, ISP_REVISION
);
145 isp_reg_readl(isp
, OMAP3_ISP_IOMEM_MAIN
, ISP_REVISION
);
149 * isp_enable_interrupts - Enable ISP interrupts.
150 * @isp: OMAP3 ISP device
152 static void isp_enable_interrupts(struct isp_device
*isp
)
154 static const u32 irq
= IRQ0ENABLE_CSIA_IRQ
155 | IRQ0ENABLE_CSIB_IRQ
156 | IRQ0ENABLE_CCDC_LSC_PREF_ERR_IRQ
157 | IRQ0ENABLE_CCDC_LSC_DONE_IRQ
158 | IRQ0ENABLE_CCDC_VD0_IRQ
159 | IRQ0ENABLE_CCDC_VD1_IRQ
160 | IRQ0ENABLE_HS_VS_IRQ
161 | IRQ0ENABLE_HIST_DONE_IRQ
162 | IRQ0ENABLE_H3A_AWB_DONE_IRQ
163 | IRQ0ENABLE_H3A_AF_DONE_IRQ
164 | IRQ0ENABLE_PRV_DONE_IRQ
165 | IRQ0ENABLE_RSZ_DONE_IRQ
;
167 isp_reg_writel(isp
, irq
, OMAP3_ISP_IOMEM_MAIN
, ISP_IRQ0STATUS
);
168 isp_reg_writel(isp
, irq
, OMAP3_ISP_IOMEM_MAIN
, ISP_IRQ0ENABLE
);
172 * isp_disable_interrupts - Disable ISP interrupts.
173 * @isp: OMAP3 ISP device
175 static void isp_disable_interrupts(struct isp_device
*isp
)
177 isp_reg_writel(isp
, 0, OMAP3_ISP_IOMEM_MAIN
, ISP_IRQ0ENABLE
);
181 * isp_set_xclk - Configures the specified cam_xclk to the desired frequency.
182 * @isp: OMAP3 ISP device
183 * @xclk: Desired frequency of the clock in Hz. 0 = stable low, 1 is stable high
184 * @xclksel: XCLK to configure (0 = A, 1 = B).
186 * Configures the specified MCLK divisor in the ISP timing control register
187 * (TCTRL_CTRL) to generate the desired xclk clock value.
189 * Divisor = cam_mclk_hz / xclk
191 * Returns the final frequency that is actually being generated
193 static u32
isp_set_xclk(struct isp_device
*isp
, u32 xclk
, u8 xclksel
)
197 unsigned long mclk_hz
;
199 if (!omap3isp_get(isp
))
202 mclk_hz
= clk_get_rate(isp
->clock
[ISP_CLK_CAM_MCLK
]);
204 if (xclk
>= mclk_hz
) {
205 divisor
= ISPTCTRL_CTRL_DIV_BYPASS
;
206 currentxclk
= mclk_hz
;
207 } else if (xclk
>= 2) {
208 divisor
= mclk_hz
/ xclk
;
209 if (divisor
>= ISPTCTRL_CTRL_DIV_BYPASS
)
210 divisor
= ISPTCTRL_CTRL_DIV_BYPASS
- 1;
211 currentxclk
= mclk_hz
/ divisor
;
219 isp_reg_clr_set(isp
, OMAP3_ISP_IOMEM_MAIN
, ISP_TCTRL_CTRL
,
220 ISPTCTRL_CTRL_DIVA_MASK
,
221 divisor
<< ISPTCTRL_CTRL_DIVA_SHIFT
);
222 dev_dbg(isp
->dev
, "isp_set_xclk(): cam_xclka set to %d Hz\n",
226 isp_reg_clr_set(isp
, OMAP3_ISP_IOMEM_MAIN
, ISP_TCTRL_CTRL
,
227 ISPTCTRL_CTRL_DIVB_MASK
,
228 divisor
<< ISPTCTRL_CTRL_DIVB_SHIFT
);
229 dev_dbg(isp
->dev
, "isp_set_xclk(): cam_xclkb set to %d Hz\n",
234 dev_dbg(isp
->dev
, "ISP_ERR: isp_set_xclk(): Invalid requested "
235 "xclk. Must be 0 (A) or 1 (B).\n");
239 /* Do we go from stable whatever to clock? */
240 if (divisor
>= 2 && isp
->xclk_divisor
[xclksel
] < 2)
242 /* Stopping the clock. */
243 else if (divisor
< 2 && isp
->xclk_divisor
[xclksel
] >= 2)
246 isp
->xclk_divisor
[xclksel
] = divisor
;
254 * isp_power_settings - Sysconfig settings, for Power Management.
255 * @isp: OMAP3 ISP device
256 * @idle: Consider idle state.
258 * Sets the power settings for the ISP, and SBL bus.
260 static void isp_power_settings(struct isp_device
*isp
, int idle
)
263 ((idle
? ISP_SYSCONFIG_MIDLEMODE_SMARTSTANDBY
:
264 ISP_SYSCONFIG_MIDLEMODE_FORCESTANDBY
) <<
265 ISP_SYSCONFIG_MIDLEMODE_SHIFT
) |
266 ((isp
->revision
== ISP_REVISION_15_0
) ?
267 ISP_SYSCONFIG_AUTOIDLE
: 0),
268 OMAP3_ISP_IOMEM_MAIN
, ISP_SYSCONFIG
);
271 isp_reg_writel(isp
, ISPCTRL_SBL_AUTOIDLE
, OMAP3_ISP_IOMEM_MAIN
,
276 * Configure the bridge and lane shifter. Valid inputs are
278 * CCDC_INPUT_PARALLEL: Parallel interface
279 * CCDC_INPUT_CSI2A: CSI2a receiver
280 * CCDC_INPUT_CCP2B: CCP2b receiver
281 * CCDC_INPUT_CSI2C: CSI2c receiver
283 * The bridge and lane shifter are configured according to the selected input
284 * and the ISP platform data.
286 void omap3isp_configure_bridge(struct isp_device
*isp
,
287 enum ccdc_input_entity input
,
288 const struct isp_parallel_platform_data
*pdata
)
292 ispctrl_val
= isp_reg_readl(isp
, OMAP3_ISP_IOMEM_MAIN
, ISP_CTRL
);
293 ispctrl_val
&= ~ISPCTRL_SHIFT_MASK
;
294 ispctrl_val
&= ~ISPCTRL_PAR_CLK_POL_INV
;
295 ispctrl_val
&= ~ISPCTRL_PAR_SER_CLK_SEL_MASK
;
296 ispctrl_val
&= ~ISPCTRL_PAR_BRIDGE_MASK
;
299 case CCDC_INPUT_PARALLEL
:
300 ispctrl_val
|= ISPCTRL_PAR_SER_CLK_SEL_PARALLEL
;
301 ispctrl_val
|= pdata
->data_lane_shift
<< ISPCTRL_SHIFT_SHIFT
;
302 ispctrl_val
|= pdata
->clk_pol
<< ISPCTRL_PAR_CLK_POL_SHIFT
;
303 ispctrl_val
|= pdata
->bridge
<< ISPCTRL_PAR_BRIDGE_SHIFT
;
306 case CCDC_INPUT_CSI2A
:
307 ispctrl_val
|= ISPCTRL_PAR_SER_CLK_SEL_CSIA
;
310 case CCDC_INPUT_CCP2B
:
311 ispctrl_val
|= ISPCTRL_PAR_SER_CLK_SEL_CSIB
;
314 case CCDC_INPUT_CSI2C
:
315 ispctrl_val
|= ISPCTRL_PAR_SER_CLK_SEL_CSIC
;
322 ispctrl_val
&= ~ISPCTRL_SYNC_DETECT_MASK
;
323 ispctrl_val
|= ISPCTRL_SYNC_DETECT_VSRISE
;
325 isp_reg_writel(isp
, ispctrl_val
, OMAP3_ISP_IOMEM_MAIN
, ISP_CTRL
);
329 * isp_set_pixel_clock - Configures the ISP pixel clock
330 * @isp: OMAP3 ISP device
331 * @pixelclk: Average pixel clock in Hz
333 * Set the average pixel clock required by the sensor. The ISP will use the
334 * lowest possible memory bandwidth settings compatible with the clock.
336 static void isp_set_pixel_clock(struct isp_device
*isp
, unsigned int pixelclk
)
338 isp
->isp_ccdc
.vpcfg
.pixelclk
= pixelclk
;
341 void omap3isp_hist_dma_done(struct isp_device
*isp
)
343 if (omap3isp_ccdc_busy(&isp
->isp_ccdc
) ||
344 omap3isp_stat_pcr_busy(&isp
->isp_hist
)) {
345 /* Histogram cannot be enabled in this frame anymore */
346 atomic_set(&isp
->isp_hist
.buf_err
, 1);
347 dev_dbg(isp
->dev
, "hist: Out of synchronization with "
348 "CCDC. Ignoring next buffer.\n");
352 static inline void isp_isr_dbg(struct isp_device
*isp
, u32 irqstatus
)
354 static const char *name
[] = {
373 "CCDC_LSC_PREFETCH_COMPLETED",
374 "CCDC_LSC_PREFETCH_ERROR",
390 dev_dbg(isp
->dev
, "");
392 for (i
= 0; i
< ARRAY_SIZE(name
); i
++) {
393 if ((1 << i
) & irqstatus
)
394 printk(KERN_CONT
"%s ", name
[i
]);
396 printk(KERN_CONT
"\n");
399 static void isp_isr_sbl(struct isp_device
*isp
)
401 struct device
*dev
= isp
->dev
;
405 * Handle shared buffer logic overflows for video buffers.
406 * ISPSBL_PCR_CCDCPRV_2_RSZ_OVF can be safely ignored.
408 sbl_pcr
= isp_reg_readl(isp
, OMAP3_ISP_IOMEM_SBL
, ISPSBL_PCR
);
409 isp_reg_writel(isp
, sbl_pcr
, OMAP3_ISP_IOMEM_SBL
, ISPSBL_PCR
);
410 sbl_pcr
&= ~ISPSBL_PCR_CCDCPRV_2_RSZ_OVF
;
413 dev_dbg(dev
, "SBL overflow (PCR = 0x%08x)\n", sbl_pcr
);
415 if (sbl_pcr
& (ISPSBL_PCR_CCDC_WBL_OVF
| ISPSBL_PCR_CSIA_WBL_OVF
416 | ISPSBL_PCR_CSIB_WBL_OVF
)) {
417 isp
->isp_ccdc
.error
= 1;
418 if (isp
->isp_ccdc
.output
& CCDC_OUTPUT_PREVIEW
)
419 isp
->isp_prev
.error
= 1;
420 if (isp
->isp_ccdc
.output
& CCDC_OUTPUT_RESIZER
)
421 isp
->isp_res
.error
= 1;
424 if (sbl_pcr
& ISPSBL_PCR_PRV_WBL_OVF
) {
425 isp
->isp_prev
.error
= 1;
426 if (isp
->isp_res
.input
== RESIZER_INPUT_VP
&&
427 !(isp
->isp_ccdc
.output
& CCDC_OUTPUT_RESIZER
))
428 isp
->isp_res
.error
= 1;
431 if (sbl_pcr
& (ISPSBL_PCR_RSZ1_WBL_OVF
432 | ISPSBL_PCR_RSZ2_WBL_OVF
433 | ISPSBL_PCR_RSZ3_WBL_OVF
434 | ISPSBL_PCR_RSZ4_WBL_OVF
))
435 isp
->isp_res
.error
= 1;
437 if (sbl_pcr
& ISPSBL_PCR_H3A_AF_WBL_OVF
)
438 omap3isp_stat_sbl_overflow(&isp
->isp_af
);
440 if (sbl_pcr
& ISPSBL_PCR_H3A_AEAWB_WBL_OVF
)
441 omap3isp_stat_sbl_overflow(&isp
->isp_aewb
);
445 * isp_isr - Interrupt Service Routine for Camera ISP module.
446 * @irq: Not used currently.
447 * @_isp: Pointer to the OMAP3 ISP device
449 * Handles the corresponding callback if plugged in.
451 * Returns IRQ_HANDLED when IRQ was correctly handled, or IRQ_NONE when the
452 * IRQ wasn't handled.
454 static irqreturn_t
isp_isr(int irq
, void *_isp
)
456 static const u32 ccdc_events
= IRQ0STATUS_CCDC_LSC_PREF_ERR_IRQ
|
457 IRQ0STATUS_CCDC_LSC_DONE_IRQ
|
458 IRQ0STATUS_CCDC_VD0_IRQ
|
459 IRQ0STATUS_CCDC_VD1_IRQ
|
460 IRQ0STATUS_HS_VS_IRQ
;
461 struct isp_device
*isp
= _isp
;
465 irqstatus
= isp_reg_readl(isp
, OMAP3_ISP_IOMEM_MAIN
, ISP_IRQ0STATUS
);
466 isp_reg_writel(isp
, irqstatus
, OMAP3_ISP_IOMEM_MAIN
, ISP_IRQ0STATUS
);
470 if (irqstatus
& IRQ0STATUS_CSIA_IRQ
) {
471 ret
= omap3isp_csi2_isr(&isp
->isp_csi2a
);
473 isp
->isp_ccdc
.error
= 1;
476 if (irqstatus
& IRQ0STATUS_CSIB_IRQ
) {
477 ret
= omap3isp_ccp2_isr(&isp
->isp_ccp2
);
479 isp
->isp_ccdc
.error
= 1;
482 if (irqstatus
& IRQ0STATUS_CCDC_VD0_IRQ
) {
483 if (isp
->isp_ccdc
.output
& CCDC_OUTPUT_PREVIEW
)
484 omap3isp_preview_isr_frame_sync(&isp
->isp_prev
);
485 if (isp
->isp_ccdc
.output
& CCDC_OUTPUT_RESIZER
)
486 omap3isp_resizer_isr_frame_sync(&isp
->isp_res
);
487 omap3isp_stat_isr_frame_sync(&isp
->isp_aewb
);
488 omap3isp_stat_isr_frame_sync(&isp
->isp_af
);
489 omap3isp_stat_isr_frame_sync(&isp
->isp_hist
);
492 if (irqstatus
& ccdc_events
)
493 omap3isp_ccdc_isr(&isp
->isp_ccdc
, irqstatus
& ccdc_events
);
495 if (irqstatus
& IRQ0STATUS_PRV_DONE_IRQ
) {
496 if (isp
->isp_prev
.output
& PREVIEW_OUTPUT_RESIZER
)
497 omap3isp_resizer_isr_frame_sync(&isp
->isp_res
);
498 omap3isp_preview_isr(&isp
->isp_prev
);
501 if (irqstatus
& IRQ0STATUS_RSZ_DONE_IRQ
)
502 omap3isp_resizer_isr(&isp
->isp_res
);
504 if (irqstatus
& IRQ0STATUS_H3A_AWB_DONE_IRQ
)
505 omap3isp_stat_isr(&isp
->isp_aewb
);
507 if (irqstatus
& IRQ0STATUS_H3A_AF_DONE_IRQ
)
508 omap3isp_stat_isr(&isp
->isp_af
);
510 if (irqstatus
& IRQ0STATUS_HIST_DONE_IRQ
)
511 omap3isp_stat_isr(&isp
->isp_hist
);
515 #if defined(DEBUG) && defined(ISP_ISR_DEBUG)
516 isp_isr_dbg(isp
, irqstatus
);
522 /* -----------------------------------------------------------------------------
523 * Pipeline power management
525 * Entities must be powered up when part of a pipeline that contains at least
526 * one open video device node.
528 * To achieve this use the entity use_count field to track the number of users.
529 * For entities corresponding to video device nodes the use_count field stores
530 * the users count of the node. For entities corresponding to subdevs the
531 * use_count field stores the total number of users of all video device nodes
534 * The omap3isp_pipeline_pm_use() function must be called in the open() and
535 * close() handlers of video device nodes. It increments or decrements the use
536 * count of all subdev entities in the pipeline.
538 * To react to link management on powered pipelines, the link setup notification
539 * callback updates the use count of all entities in the source and sink sides
544 * isp_pipeline_pm_use_count - Count the number of users of a pipeline
545 * @entity: The entity
547 * Return the total number of users of all video device nodes in the pipeline.
549 static int isp_pipeline_pm_use_count(struct media_entity
*entity
)
551 struct media_entity_graph graph
;
554 media_entity_graph_walk_start(&graph
, entity
);
556 while ((entity
= media_entity_graph_walk_next(&graph
))) {
557 if (media_entity_type(entity
) == MEDIA_ENT_T_DEVNODE
)
558 use
+= entity
->use_count
;
565 * isp_pipeline_pm_power_one - Apply power change to an entity
566 * @entity: The entity
567 * @change: Use count change
569 * Change the entity use count by @change. If the entity is a subdev update its
570 * power state by calling the core::s_power operation when the use count goes
571 * from 0 to != 0 or from != 0 to 0.
573 * Return 0 on success or a negative error code on failure.
575 static int isp_pipeline_pm_power_one(struct media_entity
*entity
, int change
)
577 struct v4l2_subdev
*subdev
;
580 subdev
= media_entity_type(entity
) == MEDIA_ENT_T_V4L2_SUBDEV
581 ? media_entity_to_v4l2_subdev(entity
) : NULL
;
583 if (entity
->use_count
== 0 && change
> 0 && subdev
!= NULL
) {
584 ret
= v4l2_subdev_call(subdev
, core
, s_power
, 1);
585 if (ret
< 0 && ret
!= -ENOIOCTLCMD
)
589 entity
->use_count
+= change
;
590 WARN_ON(entity
->use_count
< 0);
592 if (entity
->use_count
== 0 && change
< 0 && subdev
!= NULL
)
593 v4l2_subdev_call(subdev
, core
, s_power
, 0);
599 * isp_pipeline_pm_power - Apply power change to all entities in a pipeline
600 * @entity: The entity
601 * @change: Use count change
603 * Walk the pipeline to update the use count and the power state of all non-node
606 * Return 0 on success or a negative error code on failure.
608 static int isp_pipeline_pm_power(struct media_entity
*entity
, int change
)
610 struct media_entity_graph graph
;
611 struct media_entity
*first
= entity
;
617 media_entity_graph_walk_start(&graph
, entity
);
619 while (!ret
&& (entity
= media_entity_graph_walk_next(&graph
)))
620 if (media_entity_type(entity
) != MEDIA_ENT_T_DEVNODE
)
621 ret
= isp_pipeline_pm_power_one(entity
, change
);
626 media_entity_graph_walk_start(&graph
, first
);
628 while ((first
= media_entity_graph_walk_next(&graph
))
630 if (media_entity_type(first
) != MEDIA_ENT_T_DEVNODE
)
631 isp_pipeline_pm_power_one(first
, -change
);
637 * omap3isp_pipeline_pm_use - Update the use count of an entity
638 * @entity: The entity
639 * @use: Use (1) or stop using (0) the entity
641 * Update the use count of all entities in the pipeline and power entities on or
644 * Return 0 on success or a negative error code on failure. Powering entities
645 * off is assumed to never fail. No failure can occur when the use parameter is
648 int omap3isp_pipeline_pm_use(struct media_entity
*entity
, int use
)
650 int change
= use
? 1 : -1;
653 mutex_lock(&entity
->parent
->graph_mutex
);
655 /* Apply use count to node. */
656 entity
->use_count
+= change
;
657 WARN_ON(entity
->use_count
< 0);
659 /* Apply power change to connected non-nodes. */
660 ret
= isp_pipeline_pm_power(entity
, change
);
662 mutex_unlock(&entity
->parent
->graph_mutex
);
668 * isp_pipeline_link_notify - Link management notification callback
669 * @source: Pad at the start of the link
670 * @sink: Pad at the end of the link
671 * @flags: New link flags that will be applied
673 * React to link management on powered pipelines by updating the use count of
674 * all entities in the source and sink sides of the link. Entities are powered
675 * on or off accordingly.
677 * Return 0 on success or a negative error code on failure. Powering entities
678 * off is assumed to never fail. This function will not fail for disconnection
681 static int isp_pipeline_link_notify(struct media_pad
*source
,
682 struct media_pad
*sink
, u32 flags
)
684 int source_use
= isp_pipeline_pm_use_count(source
->entity
);
685 int sink_use
= isp_pipeline_pm_use_count(sink
->entity
);
688 if (!(flags
& MEDIA_LNK_FL_ENABLED
)) {
689 /* Powering off entities is assumed to never fail. */
690 isp_pipeline_pm_power(source
->entity
, -sink_use
);
691 isp_pipeline_pm_power(sink
->entity
, -source_use
);
695 ret
= isp_pipeline_pm_power(source
->entity
, sink_use
);
699 ret
= isp_pipeline_pm_power(sink
->entity
, source_use
);
701 isp_pipeline_pm_power(source
->entity
, -sink_use
);
706 /* -----------------------------------------------------------------------------
707 * Pipeline stream management
711 * isp_pipeline_enable - Enable streaming on a pipeline
712 * @pipe: ISP pipeline
713 * @mode: Stream mode (single shot or continuous)
715 * Walk the entities chain starting at the pipeline output video node and start
716 * all modules in the chain in the given mode.
718 * Return 0 if successfull, or the return value of the failed video::s_stream
719 * operation otherwise.
721 static int isp_pipeline_enable(struct isp_pipeline
*pipe
,
722 enum isp_pipeline_stream_state mode
)
724 struct isp_device
*isp
= pipe
->output
->isp
;
725 struct media_entity
*entity
;
726 struct media_pad
*pad
;
727 struct v4l2_subdev
*subdev
;
731 spin_lock_irqsave(&pipe
->lock
, flags
);
732 pipe
->state
&= ~(ISP_PIPELINE_IDLE_INPUT
| ISP_PIPELINE_IDLE_OUTPUT
);
733 spin_unlock_irqrestore(&pipe
->lock
, flags
);
735 pipe
->do_propagation
= false;
737 entity
= &pipe
->output
->video
.entity
;
739 pad
= &entity
->pads
[0];
740 if (!(pad
->flags
& MEDIA_PAD_FL_SINK
))
743 pad
= media_entity_remote_source(pad
);
745 media_entity_type(pad
->entity
) != MEDIA_ENT_T_V4L2_SUBDEV
)
748 entity
= pad
->entity
;
749 subdev
= media_entity_to_v4l2_subdev(entity
);
751 ret
= v4l2_subdev_call(subdev
, video
, s_stream
, mode
);
752 if (ret
< 0 && ret
!= -ENOIOCTLCMD
)
755 if (subdev
== &isp
->isp_ccdc
.subdev
) {
756 v4l2_subdev_call(&isp
->isp_aewb
.subdev
, video
,
758 v4l2_subdev_call(&isp
->isp_af
.subdev
, video
,
760 v4l2_subdev_call(&isp
->isp_hist
.subdev
, video
,
762 pipe
->do_propagation
= true;
766 /* Frame number propagation. In continuous streaming mode the number
767 * is incremented in the frame start ISR. In mem-to-mem mode
768 * singleshot is used and frame start IRQs are not available.
769 * Thus we have to increment the number here.
771 if (pipe
->do_propagation
&& mode
== ISP_PIPELINE_STREAM_SINGLESHOT
)
772 atomic_inc(&pipe
->frame_number
);
777 static int isp_pipeline_wait_resizer(struct isp_device
*isp
)
779 return omap3isp_resizer_busy(&isp
->isp_res
);
782 static int isp_pipeline_wait_preview(struct isp_device
*isp
)
784 return omap3isp_preview_busy(&isp
->isp_prev
);
787 static int isp_pipeline_wait_ccdc(struct isp_device
*isp
)
789 return omap3isp_stat_busy(&isp
->isp_af
)
790 || omap3isp_stat_busy(&isp
->isp_aewb
)
791 || omap3isp_stat_busy(&isp
->isp_hist
)
792 || omap3isp_ccdc_busy(&isp
->isp_ccdc
);
795 #define ISP_STOP_TIMEOUT msecs_to_jiffies(1000)
797 static int isp_pipeline_wait(struct isp_device
*isp
,
798 int(*busy
)(struct isp_device
*isp
))
800 unsigned long timeout
= jiffies
+ ISP_STOP_TIMEOUT
;
802 while (!time_after(jiffies
, timeout
)) {
811 * isp_pipeline_disable - Disable streaming on a pipeline
812 * @pipe: ISP pipeline
814 * Walk the entities chain starting at the pipeline output video node and stop
815 * all modules in the chain. Wait synchronously for the modules to be stopped if
818 * Return 0 if all modules have been properly stopped, or -ETIMEDOUT if a module
819 * can't be stopped (in which case a software reset of the ISP is probably
822 static int isp_pipeline_disable(struct isp_pipeline
*pipe
)
824 struct isp_device
*isp
= pipe
->output
->isp
;
825 struct media_entity
*entity
;
826 struct media_pad
*pad
;
827 struct v4l2_subdev
*subdev
;
832 * We need to stop all the modules after CCDC first or they'll
833 * never stop since they may not get a full frame from CCDC.
835 entity
= &pipe
->output
->video
.entity
;
837 pad
= &entity
->pads
[0];
838 if (!(pad
->flags
& MEDIA_PAD_FL_SINK
))
841 pad
= media_entity_remote_source(pad
);
843 media_entity_type(pad
->entity
) != MEDIA_ENT_T_V4L2_SUBDEV
)
846 entity
= pad
->entity
;
847 subdev
= media_entity_to_v4l2_subdev(entity
);
849 if (subdev
== &isp
->isp_ccdc
.subdev
) {
850 v4l2_subdev_call(&isp
->isp_aewb
.subdev
,
852 v4l2_subdev_call(&isp
->isp_af
.subdev
,
854 v4l2_subdev_call(&isp
->isp_hist
.subdev
,
858 v4l2_subdev_call(subdev
, video
, s_stream
, 0);
860 if (subdev
== &isp
->isp_res
.subdev
)
861 ret
= isp_pipeline_wait(isp
, isp_pipeline_wait_resizer
);
862 else if (subdev
== &isp
->isp_prev
.subdev
)
863 ret
= isp_pipeline_wait(isp
, isp_pipeline_wait_preview
);
864 else if (subdev
== &isp
->isp_ccdc
.subdev
)
865 ret
= isp_pipeline_wait(isp
, isp_pipeline_wait_ccdc
);
870 dev_info(isp
->dev
, "Unable to stop %s\n", subdev
->name
);
871 failure
= -ETIMEDOUT
;
879 * omap3isp_pipeline_set_stream - Enable/disable streaming on a pipeline
880 * @pipe: ISP pipeline
881 * @state: Stream state (stopped, single shot or continuous)
883 * Set the pipeline to the given stream state. Pipelines can be started in
884 * single-shot or continuous mode.
886 * Return 0 if successfull, or the return value of the failed video::s_stream
887 * operation otherwise.
889 int omap3isp_pipeline_set_stream(struct isp_pipeline
*pipe
,
890 enum isp_pipeline_stream_state state
)
894 if (state
== ISP_PIPELINE_STREAM_STOPPED
)
895 ret
= isp_pipeline_disable(pipe
);
897 ret
= isp_pipeline_enable(pipe
, state
);
898 pipe
->stream_state
= state
;
904 * isp_pipeline_resume - Resume streaming on a pipeline
905 * @pipe: ISP pipeline
907 * Resume video output and input and re-enable pipeline.
909 static void isp_pipeline_resume(struct isp_pipeline
*pipe
)
911 int singleshot
= pipe
->stream_state
== ISP_PIPELINE_STREAM_SINGLESHOT
;
913 omap3isp_video_resume(pipe
->output
, !singleshot
);
915 omap3isp_video_resume(pipe
->input
, 0);
916 isp_pipeline_enable(pipe
, pipe
->stream_state
);
920 * isp_pipeline_suspend - Suspend streaming on a pipeline
921 * @pipe: ISP pipeline
925 static void isp_pipeline_suspend(struct isp_pipeline
*pipe
)
927 isp_pipeline_disable(pipe
);
931 * isp_pipeline_is_last - Verify if entity has an enabled link to the output
933 * @me: ISP module's media entity
935 * Returns 1 if the entity has an enabled link to the output video node or 0
936 * otherwise. It's true only while pipeline can have no more than one output
939 static int isp_pipeline_is_last(struct media_entity
*me
)
941 struct isp_pipeline
*pipe
;
942 struct media_pad
*pad
;
946 pipe
= to_isp_pipeline(me
);
947 if (pipe
->stream_state
== ISP_PIPELINE_STREAM_STOPPED
)
949 pad
= media_entity_remote_source(&pipe
->output
->pad
);
950 return pad
->entity
== me
;
954 * isp_suspend_module_pipeline - Suspend pipeline to which belongs the module
955 * @me: ISP module's media entity
957 * Suspend the whole pipeline if module's entity has an enabled link to the
958 * output video node. It works only while pipeline can have no more than one
961 static void isp_suspend_module_pipeline(struct media_entity
*me
)
963 if (isp_pipeline_is_last(me
))
964 isp_pipeline_suspend(to_isp_pipeline(me
));
968 * isp_resume_module_pipeline - Resume pipeline to which belongs the module
969 * @me: ISP module's media entity
971 * Resume the whole pipeline if module's entity has an enabled link to the
972 * output video node. It works only while pipeline can have no more than one
975 static void isp_resume_module_pipeline(struct media_entity
*me
)
977 if (isp_pipeline_is_last(me
))
978 isp_pipeline_resume(to_isp_pipeline(me
));
982 * isp_suspend_modules - Suspend ISP submodules.
983 * @isp: OMAP3 ISP device
985 * Returns 0 if suspend left in idle state all the submodules properly,
986 * or returns 1 if a general Reset is required to suspend the submodules.
988 static int isp_suspend_modules(struct isp_device
*isp
)
990 unsigned long timeout
;
992 omap3isp_stat_suspend(&isp
->isp_aewb
);
993 omap3isp_stat_suspend(&isp
->isp_af
);
994 omap3isp_stat_suspend(&isp
->isp_hist
);
995 isp_suspend_module_pipeline(&isp
->isp_res
.subdev
.entity
);
996 isp_suspend_module_pipeline(&isp
->isp_prev
.subdev
.entity
);
997 isp_suspend_module_pipeline(&isp
->isp_ccdc
.subdev
.entity
);
998 isp_suspend_module_pipeline(&isp
->isp_csi2a
.subdev
.entity
);
999 isp_suspend_module_pipeline(&isp
->isp_ccp2
.subdev
.entity
);
1001 timeout
= jiffies
+ ISP_STOP_TIMEOUT
;
1002 while (omap3isp_stat_busy(&isp
->isp_af
)
1003 || omap3isp_stat_busy(&isp
->isp_aewb
)
1004 || omap3isp_stat_busy(&isp
->isp_hist
)
1005 || omap3isp_preview_busy(&isp
->isp_prev
)
1006 || omap3isp_resizer_busy(&isp
->isp_res
)
1007 || omap3isp_ccdc_busy(&isp
->isp_ccdc
)) {
1008 if (time_after(jiffies
, timeout
)) {
1009 dev_info(isp
->dev
, "can't stop modules.\n");
1019 * isp_resume_modules - Resume ISP submodules.
1020 * @isp: OMAP3 ISP device
1022 static void isp_resume_modules(struct isp_device
*isp
)
1024 omap3isp_stat_resume(&isp
->isp_aewb
);
1025 omap3isp_stat_resume(&isp
->isp_af
);
1026 omap3isp_stat_resume(&isp
->isp_hist
);
1027 isp_resume_module_pipeline(&isp
->isp_res
.subdev
.entity
);
1028 isp_resume_module_pipeline(&isp
->isp_prev
.subdev
.entity
);
1029 isp_resume_module_pipeline(&isp
->isp_ccdc
.subdev
.entity
);
1030 isp_resume_module_pipeline(&isp
->isp_csi2a
.subdev
.entity
);
1031 isp_resume_module_pipeline(&isp
->isp_ccp2
.subdev
.entity
);
1035 * isp_reset - Reset ISP with a timeout wait for idle.
1036 * @isp: OMAP3 ISP device
1038 static int isp_reset(struct isp_device
*isp
)
1040 unsigned long timeout
= 0;
1043 isp_reg_readl(isp
, OMAP3_ISP_IOMEM_MAIN
, ISP_SYSCONFIG
)
1044 | ISP_SYSCONFIG_SOFTRESET
,
1045 OMAP3_ISP_IOMEM_MAIN
, ISP_SYSCONFIG
);
1046 while (!(isp_reg_readl(isp
, OMAP3_ISP_IOMEM_MAIN
,
1047 ISP_SYSSTATUS
) & 0x1)) {
1048 if (timeout
++ > 10000) {
1049 dev_alert(isp
->dev
, "cannot reset ISP\n");
1059 * isp_save_context - Saves the values of the ISP module registers.
1060 * @isp: OMAP3 ISP device
1061 * @reg_list: Structure containing pairs of register address and value to
1065 isp_save_context(struct isp_device
*isp
, struct isp_reg
*reg_list
)
1067 struct isp_reg
*next
= reg_list
;
1069 for (; next
->reg
!= ISP_TOK_TERM
; next
++)
1070 next
->val
= isp_reg_readl(isp
, next
->mmio_range
, next
->reg
);
1074 * isp_restore_context - Restores the values of the ISP module registers.
1075 * @isp: OMAP3 ISP device
1076 * @reg_list: Structure containing pairs of register address and value to
1080 isp_restore_context(struct isp_device
*isp
, struct isp_reg
*reg_list
)
1082 struct isp_reg
*next
= reg_list
;
1084 for (; next
->reg
!= ISP_TOK_TERM
; next
++)
1085 isp_reg_writel(isp
, next
->val
, next
->mmio_range
, next
->reg
);
1089 * isp_save_ctx - Saves ISP, CCDC, HIST, H3A, PREV, RESZ & MMU context.
1090 * @isp: OMAP3 ISP device
1092 * Routine for saving the context of each module in the ISP.
1093 * CCDC, HIST, H3A, PREV, RESZ and MMU.
1095 static void isp_save_ctx(struct isp_device
*isp
)
1097 isp_save_context(isp
, isp_reg_list
);
1099 iommu_save_ctx(isp
->iommu
);
1103 * isp_restore_ctx - Restores ISP, CCDC, HIST, H3A, PREV, RESZ & MMU context.
1104 * @isp: OMAP3 ISP device
1106 * Routine for restoring the context of each module in the ISP.
1107 * CCDC, HIST, H3A, PREV, RESZ and MMU.
1109 static void isp_restore_ctx(struct isp_device
*isp
)
1111 isp_restore_context(isp
, isp_reg_list
);
1113 iommu_restore_ctx(isp
->iommu
);
1114 omap3isp_ccdc_restore_context(isp
);
1115 omap3isp_preview_restore_context(isp
);
1118 /* -----------------------------------------------------------------------------
1119 * SBL resources management
1121 #define OMAP3_ISP_SBL_READ (OMAP3_ISP_SBL_CSI1_READ | \
1122 OMAP3_ISP_SBL_CCDC_LSC_READ | \
1123 OMAP3_ISP_SBL_PREVIEW_READ | \
1124 OMAP3_ISP_SBL_RESIZER_READ)
1125 #define OMAP3_ISP_SBL_WRITE (OMAP3_ISP_SBL_CSI1_WRITE | \
1126 OMAP3_ISP_SBL_CSI2A_WRITE | \
1127 OMAP3_ISP_SBL_CSI2C_WRITE | \
1128 OMAP3_ISP_SBL_CCDC_WRITE | \
1129 OMAP3_ISP_SBL_PREVIEW_WRITE)
1131 void omap3isp_sbl_enable(struct isp_device
*isp
, enum isp_sbl_resource res
)
1135 isp
->sbl_resources
|= res
;
1137 if (isp
->sbl_resources
& OMAP3_ISP_SBL_CSI1_READ
)
1138 sbl
|= ISPCTRL_SBL_SHARED_RPORTA
;
1140 if (isp
->sbl_resources
& OMAP3_ISP_SBL_CCDC_LSC_READ
)
1141 sbl
|= ISPCTRL_SBL_SHARED_RPORTB
;
1143 if (isp
->sbl_resources
& OMAP3_ISP_SBL_CSI2C_WRITE
)
1144 sbl
|= ISPCTRL_SBL_SHARED_WPORTC
;
1146 if (isp
->sbl_resources
& OMAP3_ISP_SBL_RESIZER_WRITE
)
1147 sbl
|= ISPCTRL_SBL_WR0_RAM_EN
;
1149 if (isp
->sbl_resources
& OMAP3_ISP_SBL_WRITE
)
1150 sbl
|= ISPCTRL_SBL_WR1_RAM_EN
;
1152 if (isp
->sbl_resources
& OMAP3_ISP_SBL_READ
)
1153 sbl
|= ISPCTRL_SBL_RD_RAM_EN
;
1155 isp_reg_set(isp
, OMAP3_ISP_IOMEM_MAIN
, ISP_CTRL
, sbl
);
1158 void omap3isp_sbl_disable(struct isp_device
*isp
, enum isp_sbl_resource res
)
1162 isp
->sbl_resources
&= ~res
;
1164 if (!(isp
->sbl_resources
& OMAP3_ISP_SBL_CSI1_READ
))
1165 sbl
|= ISPCTRL_SBL_SHARED_RPORTA
;
1167 if (!(isp
->sbl_resources
& OMAP3_ISP_SBL_CCDC_LSC_READ
))
1168 sbl
|= ISPCTRL_SBL_SHARED_RPORTB
;
1170 if (!(isp
->sbl_resources
& OMAP3_ISP_SBL_CSI2C_WRITE
))
1171 sbl
|= ISPCTRL_SBL_SHARED_WPORTC
;
1173 if (!(isp
->sbl_resources
& OMAP3_ISP_SBL_RESIZER_WRITE
))
1174 sbl
|= ISPCTRL_SBL_WR0_RAM_EN
;
1176 if (!(isp
->sbl_resources
& OMAP3_ISP_SBL_WRITE
))
1177 sbl
|= ISPCTRL_SBL_WR1_RAM_EN
;
1179 if (!(isp
->sbl_resources
& OMAP3_ISP_SBL_READ
))
1180 sbl
|= ISPCTRL_SBL_RD_RAM_EN
;
1182 isp_reg_clr(isp
, OMAP3_ISP_IOMEM_MAIN
, ISP_CTRL
, sbl
);
1186 * isp_module_sync_idle - Helper to sync module with its idle state
1187 * @me: ISP submodule's media entity
1188 * @wait: ISP submodule's wait queue for streamoff/interrupt synchronization
1189 * @stopping: flag which tells module wants to stop
1191 * This function checks if ISP submodule needs to wait for next interrupt. If
1192 * yes, makes the caller to sleep while waiting for such event.
1194 int omap3isp_module_sync_idle(struct media_entity
*me
, wait_queue_head_t
*wait
,
1197 struct isp_pipeline
*pipe
= to_isp_pipeline(me
);
1199 if (pipe
->stream_state
== ISP_PIPELINE_STREAM_STOPPED
||
1200 (pipe
->stream_state
== ISP_PIPELINE_STREAM_SINGLESHOT
&&
1201 !isp_pipeline_ready(pipe
)))
1205 * atomic_set() doesn't include memory barrier on ARM platform for SMP
1206 * scenario. We'll call it here to avoid race conditions.
1208 atomic_set(stopping
, 1);
1212 * If module is the last one, it's writing to memory. In this case,
1213 * it's necessary to check if the module is already paused due to
1214 * DMA queue underrun or if it has to wait for next interrupt to be
1216 * If it isn't the last one, the function won't sleep but *stopping
1217 * will still be set to warn next submodule caller's interrupt the
1218 * module wants to be idle.
1220 if (isp_pipeline_is_last(me
)) {
1221 struct isp_video
*video
= pipe
->output
;
1222 unsigned long flags
;
1223 spin_lock_irqsave(&video
->queue
->irqlock
, flags
);
1224 if (video
->dmaqueue_flags
& ISP_VIDEO_DMAQUEUE_UNDERRUN
) {
1225 spin_unlock_irqrestore(&video
->queue
->irqlock
, flags
);
1226 atomic_set(stopping
, 0);
1230 spin_unlock_irqrestore(&video
->queue
->irqlock
, flags
);
1231 if (!wait_event_timeout(*wait
, !atomic_read(stopping
),
1232 msecs_to_jiffies(1000))) {
1233 atomic_set(stopping
, 0);
1243 * omap3isp_module_sync_is_stopped - Helper to verify if module was stopping
1244 * @wait: ISP submodule's wait queue for streamoff/interrupt synchronization
1245 * @stopping: flag which tells module wants to stop
1247 * This function checks if ISP submodule was stopping. In case of yes, it
1248 * notices the caller by setting stopping to 0 and waking up the wait queue.
1249 * Returns 1 if it was stopping or 0 otherwise.
1251 int omap3isp_module_sync_is_stopping(wait_queue_head_t
*wait
,
1254 if (atomic_cmpxchg(stopping
, 1, 0)) {
1262 /* --------------------------------------------------------------------------
1266 #define ISPCTRL_CLKS_MASK (ISPCTRL_H3A_CLK_EN | \
1267 ISPCTRL_HIST_CLK_EN | \
1268 ISPCTRL_RSZ_CLK_EN | \
1269 (ISPCTRL_CCDC_CLK_EN | ISPCTRL_CCDC_RAM_EN) | \
1270 (ISPCTRL_PREV_CLK_EN | ISPCTRL_PREV_RAM_EN))
1272 static void __isp_subclk_update(struct isp_device
*isp
)
1276 if (isp
->subclk_resources
& OMAP3_ISP_SUBCLK_H3A
)
1277 clk
|= ISPCTRL_H3A_CLK_EN
;
1279 if (isp
->subclk_resources
& OMAP3_ISP_SUBCLK_HIST
)
1280 clk
|= ISPCTRL_HIST_CLK_EN
;
1282 if (isp
->subclk_resources
& OMAP3_ISP_SUBCLK_RESIZER
)
1283 clk
|= ISPCTRL_RSZ_CLK_EN
;
1285 /* NOTE: For CCDC & Preview submodules, we need to affect internal
1288 if (isp
->subclk_resources
& OMAP3_ISP_SUBCLK_CCDC
)
1289 clk
|= ISPCTRL_CCDC_CLK_EN
| ISPCTRL_CCDC_RAM_EN
;
1291 if (isp
->subclk_resources
& OMAP3_ISP_SUBCLK_PREVIEW
)
1292 clk
|= ISPCTRL_PREV_CLK_EN
| ISPCTRL_PREV_RAM_EN
;
1294 isp_reg_clr_set(isp
, OMAP3_ISP_IOMEM_MAIN
, ISP_CTRL
,
1295 ISPCTRL_CLKS_MASK
, clk
);
1298 void omap3isp_subclk_enable(struct isp_device
*isp
,
1299 enum isp_subclk_resource res
)
1301 isp
->subclk_resources
|= res
;
1303 __isp_subclk_update(isp
);
1306 void omap3isp_subclk_disable(struct isp_device
*isp
,
1307 enum isp_subclk_resource res
)
1309 isp
->subclk_resources
&= ~res
;
1311 __isp_subclk_update(isp
);
1315 * isp_enable_clocks - Enable ISP clocks
1316 * @isp: OMAP3 ISP device
1318 * Return 0 if successful, or clk_enable return value if any of tthem fails.
1320 static int isp_enable_clocks(struct isp_device
*isp
)
1327 * cam_mclk clock chain:
1328 * dpll4 -> dpll4_m5 -> dpll4_m5x2 -> cam_mclk
1330 * In OMAP3630 dpll4_m5x2 != 2 x dpll4_m5 but both are
1331 * set to the same value. Hence the rate set for dpll4_m5
1332 * has to be twice of what is set on OMAP3430 to get
1333 * the required value for cam_mclk
1335 if (cpu_is_omap3630())
1340 r
= clk_enable(isp
->clock
[ISP_CLK_CAM_ICK
]);
1342 dev_err(isp
->dev
, "clk_enable cam_ick failed\n");
1343 goto out_clk_enable_ick
;
1345 r
= clk_set_rate(isp
->clock
[ISP_CLK_DPLL4_M5_CK
],
1346 CM_CAM_MCLK_HZ
/divisor
);
1348 dev_err(isp
->dev
, "clk_set_rate for dpll4_m5_ck failed\n");
1349 goto out_clk_enable_mclk
;
1351 r
= clk_enable(isp
->clock
[ISP_CLK_CAM_MCLK
]);
1353 dev_err(isp
->dev
, "clk_enable cam_mclk failed\n");
1354 goto out_clk_enable_mclk
;
1356 rate
= clk_get_rate(isp
->clock
[ISP_CLK_CAM_MCLK
]);
1357 if (rate
!= CM_CAM_MCLK_HZ
)
1358 dev_warn(isp
->dev
, "unexpected cam_mclk rate:\n"
1360 " actual : %ld\n", CM_CAM_MCLK_HZ
, rate
);
1361 r
= clk_enable(isp
->clock
[ISP_CLK_CSI2_FCK
]);
1363 dev_err(isp
->dev
, "clk_enable csi2_fck failed\n");
1364 goto out_clk_enable_csi2_fclk
;
1368 out_clk_enable_csi2_fclk
:
1369 clk_disable(isp
->clock
[ISP_CLK_CAM_MCLK
]);
1370 out_clk_enable_mclk
:
1371 clk_disable(isp
->clock
[ISP_CLK_CAM_ICK
]);
1377 * isp_disable_clocks - Disable ISP clocks
1378 * @isp: OMAP3 ISP device
1380 static void isp_disable_clocks(struct isp_device
*isp
)
1382 clk_disable(isp
->clock
[ISP_CLK_CAM_ICK
]);
1383 clk_disable(isp
->clock
[ISP_CLK_CAM_MCLK
]);
1384 clk_disable(isp
->clock
[ISP_CLK_CSI2_FCK
]);
1387 static const char *isp_clocks
[] = {
1395 static void isp_put_clocks(struct isp_device
*isp
)
1399 for (i
= 0; i
< ARRAY_SIZE(isp_clocks
); ++i
) {
1400 if (isp
->clock
[i
]) {
1401 clk_put(isp
->clock
[i
]);
1402 isp
->clock
[i
] = NULL
;
1407 static int isp_get_clocks(struct isp_device
*isp
)
1412 for (i
= 0; i
< ARRAY_SIZE(isp_clocks
); ++i
) {
1413 clk
= clk_get(isp
->dev
, isp_clocks
[i
]);
1415 dev_err(isp
->dev
, "clk_get %s failed\n", isp_clocks
[i
]);
1416 isp_put_clocks(isp
);
1417 return PTR_ERR(clk
);
1420 isp
->clock
[i
] = clk
;
1427 * omap3isp_get - Acquire the ISP resource.
1429 * Initializes the clocks for the first acquire.
1431 * Increment the reference count on the ISP. If the first reference is taken,
1432 * enable clocks and power-up all submodules.
1434 * Return a pointer to the ISP device structure, or NULL if an error occured.
1436 struct isp_device
*omap3isp_get(struct isp_device
*isp
)
1438 struct isp_device
*__isp
= isp
;
1443 mutex_lock(&isp
->isp_mutex
);
1444 if (isp
->ref_count
> 0)
1447 if (isp_enable_clocks(isp
) < 0) {
1452 /* We don't want to restore context before saving it! */
1453 if (isp
->has_context
)
1454 isp_restore_ctx(isp
);
1456 isp
->has_context
= 1;
1458 isp_enable_interrupts(isp
);
1463 mutex_unlock(&isp
->isp_mutex
);
1469 * omap3isp_put - Release the ISP
1471 * Decrement the reference count on the ISP. If the last reference is released,
1472 * power-down all submodules, disable clocks and free temporary buffers.
1474 void omap3isp_put(struct isp_device
*isp
)
1479 mutex_lock(&isp
->isp_mutex
);
1480 BUG_ON(isp
->ref_count
== 0);
1481 if (--isp
->ref_count
== 0) {
1482 isp_disable_interrupts(isp
);
1484 isp_disable_clocks(isp
);
1486 mutex_unlock(&isp
->isp_mutex
);
1489 /* --------------------------------------------------------------------------
1490 * Platform device driver
1494 * omap3isp_print_status - Prints the values of the ISP Control Module registers
1495 * @isp: OMAP3 ISP device
1497 #define ISP_PRINT_REGISTER(isp, name)\
1498 dev_dbg(isp->dev, "###ISP " #name "=0x%08x\n", \
1499 isp_reg_readl(isp, OMAP3_ISP_IOMEM_MAIN, ISP_##name))
1500 #define SBL_PRINT_REGISTER(isp, name)\
1501 dev_dbg(isp->dev, "###SBL " #name "=0x%08x\n", \
1502 isp_reg_readl(isp, OMAP3_ISP_IOMEM_SBL, ISPSBL_##name))
1504 void omap3isp_print_status(struct isp_device
*isp
)
1506 dev_dbg(isp
->dev
, "-------------ISP Register dump--------------\n");
1508 ISP_PRINT_REGISTER(isp
, SYSCONFIG
);
1509 ISP_PRINT_REGISTER(isp
, SYSSTATUS
);
1510 ISP_PRINT_REGISTER(isp
, IRQ0ENABLE
);
1511 ISP_PRINT_REGISTER(isp
, IRQ0STATUS
);
1512 ISP_PRINT_REGISTER(isp
, TCTRL_GRESET_LENGTH
);
1513 ISP_PRINT_REGISTER(isp
, TCTRL_PSTRB_REPLAY
);
1514 ISP_PRINT_REGISTER(isp
, CTRL
);
1515 ISP_PRINT_REGISTER(isp
, TCTRL_CTRL
);
1516 ISP_PRINT_REGISTER(isp
, TCTRL_FRAME
);
1517 ISP_PRINT_REGISTER(isp
, TCTRL_PSTRB_DELAY
);
1518 ISP_PRINT_REGISTER(isp
, TCTRL_STRB_DELAY
);
1519 ISP_PRINT_REGISTER(isp
, TCTRL_SHUT_DELAY
);
1520 ISP_PRINT_REGISTER(isp
, TCTRL_PSTRB_LENGTH
);
1521 ISP_PRINT_REGISTER(isp
, TCTRL_STRB_LENGTH
);
1522 ISP_PRINT_REGISTER(isp
, TCTRL_SHUT_LENGTH
);
1524 SBL_PRINT_REGISTER(isp
, PCR
);
1525 SBL_PRINT_REGISTER(isp
, SDR_REQ_EXP
);
1527 dev_dbg(isp
->dev
, "--------------------------------------------\n");
1533 * Power management support.
1535 * As the ISP can't properly handle an input video stream interruption on a non
1536 * frame boundary, the ISP pipelines need to be stopped before sensors get
1537 * suspended. However, as suspending the sensors can require a running clock,
1538 * which can be provided by the ISP, the ISP can't be completely suspended
1539 * before the sensor.
1541 * To solve this problem power management support is split into prepare/complete
1542 * and suspend/resume operations. The pipelines are stopped in prepare() and the
1543 * ISP clocks get disabled in suspend(). Similarly, the clocks are reenabled in
1544 * resume(), and the the pipelines are restarted in complete().
1546 * TODO: PM dependencies between the ISP and sensors are not modeled explicitly
1549 static int isp_pm_prepare(struct device
*dev
)
1551 struct isp_device
*isp
= dev_get_drvdata(dev
);
1554 WARN_ON(mutex_is_locked(&isp
->isp_mutex
));
1556 if (isp
->ref_count
== 0)
1559 reset
= isp_suspend_modules(isp
);
1560 isp_disable_interrupts(isp
);
1568 static int isp_pm_suspend(struct device
*dev
)
1570 struct isp_device
*isp
= dev_get_drvdata(dev
);
1572 WARN_ON(mutex_is_locked(&isp
->isp_mutex
));
1575 isp_disable_clocks(isp
);
1580 static int isp_pm_resume(struct device
*dev
)
1582 struct isp_device
*isp
= dev_get_drvdata(dev
);
1584 if (isp
->ref_count
== 0)
1587 return isp_enable_clocks(isp
);
1590 static void isp_pm_complete(struct device
*dev
)
1592 struct isp_device
*isp
= dev_get_drvdata(dev
);
1594 if (isp
->ref_count
== 0)
1597 isp_restore_ctx(isp
);
1598 isp_enable_interrupts(isp
);
1599 isp_resume_modules(isp
);
1604 #define isp_pm_prepare NULL
1605 #define isp_pm_suspend NULL
1606 #define isp_pm_resume NULL
1607 #define isp_pm_complete NULL
1609 #endif /* CONFIG_PM */
1611 static void isp_unregister_entities(struct isp_device
*isp
)
1613 omap3isp_csi2_unregister_entities(&isp
->isp_csi2a
);
1614 omap3isp_ccp2_unregister_entities(&isp
->isp_ccp2
);
1615 omap3isp_ccdc_unregister_entities(&isp
->isp_ccdc
);
1616 omap3isp_preview_unregister_entities(&isp
->isp_prev
);
1617 omap3isp_resizer_unregister_entities(&isp
->isp_res
);
1618 omap3isp_stat_unregister_entities(&isp
->isp_aewb
);
1619 omap3isp_stat_unregister_entities(&isp
->isp_af
);
1620 omap3isp_stat_unregister_entities(&isp
->isp_hist
);
1622 v4l2_device_unregister(&isp
->v4l2_dev
);
1623 media_device_unregister(&isp
->media_dev
);
1627 * isp_register_subdev_group - Register a group of subdevices
1628 * @isp: OMAP3 ISP device
1629 * @board_info: I2C subdevs board information array
1631 * Register all I2C subdevices in the board_info array. The array must be
1632 * terminated by a NULL entry, and the first entry must be the sensor.
1634 * Return a pointer to the sensor media entity if it has been successfully
1635 * registered, or NULL otherwise.
1637 static struct v4l2_subdev
*
1638 isp_register_subdev_group(struct isp_device
*isp
,
1639 struct isp_subdev_i2c_board_info
*board_info
)
1641 struct v4l2_subdev
*sensor
= NULL
;
1644 if (board_info
->board_info
== NULL
)
1647 for (first
= 1; board_info
->board_info
; ++board_info
, first
= 0) {
1648 struct v4l2_subdev
*subdev
;
1649 struct i2c_adapter
*adapter
;
1651 adapter
= i2c_get_adapter(board_info
->i2c_adapter_id
);
1652 if (adapter
== NULL
) {
1653 printk(KERN_ERR
"%s: Unable to get I2C adapter %d for "
1654 "device %s\n", __func__
,
1655 board_info
->i2c_adapter_id
,
1656 board_info
->board_info
->type
);
1660 subdev
= v4l2_i2c_new_subdev_board(&isp
->v4l2_dev
, adapter
,
1661 board_info
->board_info
, NULL
);
1662 if (subdev
== NULL
) {
1663 printk(KERN_ERR
"%s: Unable to register subdev %s\n",
1664 __func__
, board_info
->board_info
->type
);
1675 static int isp_register_entities(struct isp_device
*isp
)
1677 struct isp_platform_data
*pdata
= isp
->pdata
;
1678 struct isp_v4l2_subdevs_group
*subdevs
;
1681 isp
->media_dev
.dev
= isp
->dev
;
1682 strlcpy(isp
->media_dev
.model
, "TI OMAP3 ISP",
1683 sizeof(isp
->media_dev
.model
));
1684 isp
->media_dev
.link_notify
= isp_pipeline_link_notify
;
1685 ret
= media_device_register(&isp
->media_dev
);
1687 printk(KERN_ERR
"%s: Media device registration failed (%d)\n",
1692 isp
->v4l2_dev
.mdev
= &isp
->media_dev
;
1693 ret
= v4l2_device_register(isp
->dev
, &isp
->v4l2_dev
);
1695 printk(KERN_ERR
"%s: V4L2 device registration failed (%d)\n",
1700 /* Register internal entities */
1701 ret
= omap3isp_ccp2_register_entities(&isp
->isp_ccp2
, &isp
->v4l2_dev
);
1705 ret
= omap3isp_csi2_register_entities(&isp
->isp_csi2a
, &isp
->v4l2_dev
);
1709 ret
= omap3isp_ccdc_register_entities(&isp
->isp_ccdc
, &isp
->v4l2_dev
);
1713 ret
= omap3isp_preview_register_entities(&isp
->isp_prev
,
1718 ret
= omap3isp_resizer_register_entities(&isp
->isp_res
, &isp
->v4l2_dev
);
1722 ret
= omap3isp_stat_register_entities(&isp
->isp_aewb
, &isp
->v4l2_dev
);
1726 ret
= omap3isp_stat_register_entities(&isp
->isp_af
, &isp
->v4l2_dev
);
1730 ret
= omap3isp_stat_register_entities(&isp
->isp_hist
, &isp
->v4l2_dev
);
1734 /* Register external entities */
1735 for (subdevs
= pdata
->subdevs
; subdevs
->subdevs
; ++subdevs
) {
1736 struct v4l2_subdev
*sensor
;
1737 struct media_entity
*input
;
1741 sensor
= isp_register_subdev_group(isp
, subdevs
->subdevs
);
1745 sensor
->host_priv
= subdevs
;
1747 /* Connect the sensor to the correct interface module. Parallel
1748 * sensors are connected directly to the CCDC, while serial
1749 * sensors are connected to the CSI2a, CCP2b or CSI2c receiver
1750 * through CSIPHY1 or CSIPHY2.
1752 switch (subdevs
->interface
) {
1753 case ISP_INTERFACE_PARALLEL
:
1754 input
= &isp
->isp_ccdc
.subdev
.entity
;
1755 pad
= CCDC_PAD_SINK
;
1759 case ISP_INTERFACE_CSI2A_PHY2
:
1760 input
= &isp
->isp_csi2a
.subdev
.entity
;
1761 pad
= CSI2_PAD_SINK
;
1762 flags
= MEDIA_LNK_FL_IMMUTABLE
1763 | MEDIA_LNK_FL_ENABLED
;
1766 case ISP_INTERFACE_CCP2B_PHY1
:
1767 case ISP_INTERFACE_CCP2B_PHY2
:
1768 input
= &isp
->isp_ccp2
.subdev
.entity
;
1769 pad
= CCP2_PAD_SINK
;
1773 case ISP_INTERFACE_CSI2C_PHY1
:
1774 input
= &isp
->isp_csi2c
.subdev
.entity
;
1775 pad
= CSI2_PAD_SINK
;
1776 flags
= MEDIA_LNK_FL_IMMUTABLE
1777 | MEDIA_LNK_FL_ENABLED
;
1781 printk(KERN_ERR
"%s: invalid interface type %u\n",
1782 __func__
, subdevs
->interface
);
1787 ret
= media_entity_create_link(&sensor
->entity
, 0, input
, pad
,
1793 ret
= v4l2_device_register_subdev_nodes(&isp
->v4l2_dev
);
1797 isp_unregister_entities(isp
);
1802 static void isp_cleanup_modules(struct isp_device
*isp
)
1804 omap3isp_h3a_aewb_cleanup(isp
);
1805 omap3isp_h3a_af_cleanup(isp
);
1806 omap3isp_hist_cleanup(isp
);
1807 omap3isp_resizer_cleanup(isp
);
1808 omap3isp_preview_cleanup(isp
);
1809 omap3isp_ccdc_cleanup(isp
);
1810 omap3isp_ccp2_cleanup(isp
);
1811 omap3isp_csi2_cleanup(isp
);
1814 static int isp_initialize_modules(struct isp_device
*isp
)
1818 ret
= omap3isp_csiphy_init(isp
);
1820 dev_err(isp
->dev
, "CSI PHY initialization failed\n");
1824 ret
= omap3isp_csi2_init(isp
);
1826 dev_err(isp
->dev
, "CSI2 initialization failed\n");
1830 ret
= omap3isp_ccp2_init(isp
);
1832 dev_err(isp
->dev
, "CCP2 initialization failed\n");
1836 ret
= omap3isp_ccdc_init(isp
);
1838 dev_err(isp
->dev
, "CCDC initialization failed\n");
1842 ret
= omap3isp_preview_init(isp
);
1844 dev_err(isp
->dev
, "Preview initialization failed\n");
1848 ret
= omap3isp_resizer_init(isp
);
1850 dev_err(isp
->dev
, "Resizer initialization failed\n");
1854 ret
= omap3isp_hist_init(isp
);
1856 dev_err(isp
->dev
, "Histogram initialization failed\n");
1860 ret
= omap3isp_h3a_aewb_init(isp
);
1862 dev_err(isp
->dev
, "H3A AEWB initialization failed\n");
1863 goto error_h3a_aewb
;
1866 ret
= omap3isp_h3a_af_init(isp
);
1868 dev_err(isp
->dev
, "H3A AF initialization failed\n");
1872 /* Connect the submodules. */
1873 ret
= media_entity_create_link(
1874 &isp
->isp_csi2a
.subdev
.entity
, CSI2_PAD_SOURCE
,
1875 &isp
->isp_ccdc
.subdev
.entity
, CCDC_PAD_SINK
, 0);
1879 ret
= media_entity_create_link(
1880 &isp
->isp_ccp2
.subdev
.entity
, CCP2_PAD_SOURCE
,
1881 &isp
->isp_ccdc
.subdev
.entity
, CCDC_PAD_SINK
, 0);
1885 ret
= media_entity_create_link(
1886 &isp
->isp_ccdc
.subdev
.entity
, CCDC_PAD_SOURCE_VP
,
1887 &isp
->isp_prev
.subdev
.entity
, PREV_PAD_SINK
, 0);
1891 ret
= media_entity_create_link(
1892 &isp
->isp_ccdc
.subdev
.entity
, CCDC_PAD_SOURCE_OF
,
1893 &isp
->isp_res
.subdev
.entity
, RESZ_PAD_SINK
, 0);
1897 ret
= media_entity_create_link(
1898 &isp
->isp_prev
.subdev
.entity
, PREV_PAD_SOURCE
,
1899 &isp
->isp_res
.subdev
.entity
, RESZ_PAD_SINK
, 0);
1903 ret
= media_entity_create_link(
1904 &isp
->isp_ccdc
.subdev
.entity
, CCDC_PAD_SOURCE_VP
,
1905 &isp
->isp_aewb
.subdev
.entity
, 0,
1906 MEDIA_LNK_FL_ENABLED
| MEDIA_LNK_FL_IMMUTABLE
);
1910 ret
= media_entity_create_link(
1911 &isp
->isp_ccdc
.subdev
.entity
, CCDC_PAD_SOURCE_VP
,
1912 &isp
->isp_af
.subdev
.entity
, 0,
1913 MEDIA_LNK_FL_ENABLED
| MEDIA_LNK_FL_IMMUTABLE
);
1917 ret
= media_entity_create_link(
1918 &isp
->isp_ccdc
.subdev
.entity
, CCDC_PAD_SOURCE_VP
,
1919 &isp
->isp_hist
.subdev
.entity
, 0,
1920 MEDIA_LNK_FL_ENABLED
| MEDIA_LNK_FL_IMMUTABLE
);
1927 omap3isp_h3a_af_cleanup(isp
);
1929 omap3isp_h3a_aewb_cleanup(isp
);
1931 omap3isp_hist_cleanup(isp
);
1933 omap3isp_resizer_cleanup(isp
);
1935 omap3isp_preview_cleanup(isp
);
1937 omap3isp_ccdc_cleanup(isp
);
1939 omap3isp_ccp2_cleanup(isp
);
1941 omap3isp_csi2_cleanup(isp
);
1948 * isp_remove - Remove ISP platform device
1949 * @pdev: Pointer to ISP platform device
1953 static int isp_remove(struct platform_device
*pdev
)
1955 struct isp_device
*isp
= platform_get_drvdata(pdev
);
1958 isp_unregister_entities(isp
);
1959 isp_cleanup_modules(isp
);
1962 iommu_put(isp
->iommu
);
1965 free_irq(isp
->irq_num
, isp
);
1966 isp_put_clocks(isp
);
1968 for (i
= 0; i
< OMAP3_ISP_IOMEM_LAST
; i
++) {
1969 if (isp
->mmio_base
[i
]) {
1970 iounmap(isp
->mmio_base
[i
]);
1971 isp
->mmio_base
[i
] = NULL
;
1974 if (isp
->mmio_base_phys
[i
]) {
1975 release_mem_region(isp
->mmio_base_phys
[i
],
1977 isp
->mmio_base_phys
[i
] = 0;
1981 regulator_put(isp
->isp_csiphy1
.vdd
);
1982 regulator_put(isp
->isp_csiphy2
.vdd
);
1988 static int isp_map_mem_resource(struct platform_device
*pdev
,
1989 struct isp_device
*isp
,
1990 enum isp_mem_resources res
)
1992 struct resource
*mem
;
1994 /* request the mem region for the camera registers */
1996 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, res
);
1998 dev_err(isp
->dev
, "no mem resource?\n");
2002 if (!request_mem_region(mem
->start
, resource_size(mem
), pdev
->name
)) {
2004 "cannot reserve camera register I/O region\n");
2007 isp
->mmio_base_phys
[res
] = mem
->start
;
2008 isp
->mmio_size
[res
] = resource_size(mem
);
2010 /* map the region */
2011 isp
->mmio_base
[res
] = ioremap_nocache(isp
->mmio_base_phys
[res
],
2012 isp
->mmio_size
[res
]);
2013 if (!isp
->mmio_base
[res
]) {
2014 dev_err(isp
->dev
, "cannot map camera register I/O region\n");
2022 * isp_probe - Probe ISP platform device
2023 * @pdev: Pointer to ISP platform device
2025 * Returns 0 if successful,
2026 * -ENOMEM if no memory available,
2027 * -ENODEV if no platform device resources found
2028 * or no space for remapping registers,
2029 * -EINVAL if couldn't install ISR,
2030 * or clk_get return error value.
2032 static int isp_probe(struct platform_device
*pdev
)
2034 struct isp_platform_data
*pdata
= pdev
->dev
.platform_data
;
2035 struct isp_device
*isp
;
2042 isp
= kzalloc(sizeof(*isp
), GFP_KERNEL
);
2044 dev_err(&pdev
->dev
, "could not allocate memory\n");
2048 isp
->autoidle
= autoidle
;
2049 isp
->platform_cb
.set_xclk
= isp_set_xclk
;
2050 isp
->platform_cb
.set_pixel_clock
= isp_set_pixel_clock
;
2052 mutex_init(&isp
->isp_mutex
);
2053 spin_lock_init(&isp
->stat_lock
);
2055 isp
->dev
= &pdev
->dev
;
2059 isp
->raw_dmamask
= DMA_BIT_MASK(32);
2060 isp
->dev
->dma_mask
= &isp
->raw_dmamask
;
2061 isp
->dev
->coherent_dma_mask
= DMA_BIT_MASK(32);
2063 platform_set_drvdata(pdev
, isp
);
2066 isp
->isp_csiphy1
.vdd
= regulator_get(&pdev
->dev
, "VDD_CSIPHY1");
2067 isp
->isp_csiphy2
.vdd
= regulator_get(&pdev
->dev
, "VDD_CSIPHY2");
2070 ret
= isp_map_mem_resource(pdev
, isp
, OMAP3_ISP_IOMEM_MAIN
);
2074 ret
= isp_get_clocks(isp
);
2078 if (omap3isp_get(isp
) == NULL
)
2081 ret
= isp_reset(isp
);
2085 /* Memory resources */
2086 isp
->revision
= isp_reg_readl(isp
, OMAP3_ISP_IOMEM_MAIN
, ISP_REVISION
);
2087 dev_info(isp
->dev
, "Revision %d.%d found\n",
2088 (isp
->revision
& 0xf0) >> 4, isp
->revision
& 0x0f);
2090 for (m
= 0; m
< ARRAY_SIZE(isp_res_maps
); m
++)
2091 if (isp
->revision
== isp_res_maps
[m
].isp_rev
)
2094 if (m
== ARRAY_SIZE(isp_res_maps
)) {
2095 dev_err(isp
->dev
, "No resource map found for ISP rev %d.%d\n",
2096 (isp
->revision
& 0xf0) >> 4, isp
->revision
& 0xf);
2101 for (i
= 1; i
< OMAP3_ISP_IOMEM_LAST
; i
++) {
2102 if (isp_res_maps
[m
].map
& 1 << i
) {
2103 ret
= isp_map_mem_resource(pdev
, isp
, i
);
2110 isp
->iommu
= iommu_get("isp");
2111 if (IS_ERR_OR_NULL(isp
->iommu
)) {
2118 isp
->irq_num
= platform_get_irq(pdev
, 0);
2119 if (isp
->irq_num
<= 0) {
2120 dev_err(isp
->dev
, "No IRQ resource\n");
2125 if (request_irq(isp
->irq_num
, isp_isr
, IRQF_SHARED
, "OMAP3 ISP", isp
)) {
2126 dev_err(isp
->dev
, "Unable to request IRQ\n");
2132 ret
= isp_initialize_modules(isp
);
2136 ret
= isp_register_entities(isp
);
2140 isp_power_settings(isp
, 1);
2146 isp_cleanup_modules(isp
);
2148 free_irq(isp
->irq_num
, isp
);
2150 iommu_put(isp
->iommu
);
2153 isp_put_clocks(isp
);
2155 for (i
= 0; i
< OMAP3_ISP_IOMEM_LAST
; i
++) {
2156 if (isp
->mmio_base
[i
]) {
2157 iounmap(isp
->mmio_base
[i
]);
2158 isp
->mmio_base
[i
] = NULL
;
2161 if (isp
->mmio_base_phys
[i
]) {
2162 release_mem_region(isp
->mmio_base_phys
[i
],
2164 isp
->mmio_base_phys
[i
] = 0;
2167 regulator_put(isp
->isp_csiphy2
.vdd
);
2168 regulator_put(isp
->isp_csiphy1
.vdd
);
2169 platform_set_drvdata(pdev
, NULL
);
2175 static const struct dev_pm_ops omap3isp_pm_ops
= {
2176 .prepare
= isp_pm_prepare
,
2177 .suspend
= isp_pm_suspend
,
2178 .resume
= isp_pm_resume
,
2179 .complete
= isp_pm_complete
,
2182 static struct platform_device_id omap3isp_id_table
[] = {
2186 MODULE_DEVICE_TABLE(platform
, omap3isp_id_table
);
2188 static struct platform_driver omap3isp_driver
= {
2190 .remove
= isp_remove
,
2191 .id_table
= omap3isp_id_table
,
2193 .owner
= THIS_MODULE
,
2195 .pm
= &omap3isp_pm_ops
,
2200 * isp_init - ISP module initialization.
2202 static int __init
isp_init(void)
2204 return platform_driver_register(&omap3isp_driver
);
2208 * isp_cleanup - ISP module cleanup.
2210 static void __exit
isp_cleanup(void)
2212 platform_driver_unregister(&omap3isp_driver
);
2215 module_init(isp_init
);
2216 module_exit(isp_cleanup
);
2218 MODULE_AUTHOR("Nokia Corporation");
2219 MODULE_DESCRIPTION("TI OMAP3 ISP driver");
2220 MODULE_LICENSE("GPL");