blob: 15a86bb4e61c5ab39aef5467ad2b0fdd8dc185bf [file] [log] [blame]
Sakari Ailus448de7e2011-02-12 18:05:06 -03001/*
2 * isp.c
3 *
4 * TI OMAP3 ISP - Core
5 *
6 * Copyright (C) 2006-2010 Nokia Corporation
7 * Copyright (C) 2007-2009 Texas Instruments, Inc.
8 *
9 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10 * Sakari Ailus <sakari.ailus@iki.fi>
11 *
12 * Contributors:
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>
39 *
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.
Sakari Ailus448de7e2011-02-12 18:05:06 -030043 */
44
45#include <asm/cacheflush.h>
46
47#include <linux/clk.h>
Laurent Pinchart9b28ee32012-10-22 10:43:00 -030048#include <linux/clkdev.h>
Sakari Ailus448de7e2011-02-12 18:05:06 -030049#include <linux/delay.h>
50#include <linux/device.h>
51#include <linux/dma-mapping.h>
52#include <linux/i2c.h>
53#include <linux/interrupt.h>
Sakari Ailus503596a2015-03-25 19:57:34 -030054#include <linux/mfd/syscon.h>
Sakari Ailus448de7e2011-02-12 18:05:06 -030055#include <linux/module.h>
Tony Lindgrenc8d35c82012-11-02 12:24:03 -070056#include <linux/omap-iommu.h>
Sakari Ailus448de7e2011-02-12 18:05:06 -030057#include <linux/platform_device.h>
58#include <linux/regulator/consumer.h>
59#include <linux/slab.h>
60#include <linux/sched.h>
61#include <linux/vmalloc.h>
62
Laurent Pinchart2a0a5472014-01-02 20:06:08 -030063#include <asm/dma-iommu.h>
64
Sakari Ailus448de7e2011-02-12 18:05:06 -030065#include <media/v4l2-common.h>
66#include <media/v4l2-device.h>
Sakari Ailus506a47e2016-02-21 13:25:10 -030067#include <media/v4l2-mc.h>
Sakari Ailusda7f3842015-03-25 19:57:38 -030068#include <media/v4l2-of.h>
Sakari Ailus448de7e2011-02-12 18:05:06 -030069
70#include "isp.h"
71#include "ispreg.h"
72#include "ispccdc.h"
73#include "isppreview.h"
74#include "ispresizer.h"
75#include "ispcsi2.h"
76#include "ispccp2.h"
77#include "isph3a.h"
78#include "isphist.h"
79
80static unsigned int autoidle;
81module_param(autoidle, int, 0444);
82MODULE_PARM_DESC(autoidle, "Enable OMAP3ISP AUTOIDLE support");
83
84static void isp_save_ctx(struct isp_device *isp);
85
86static void isp_restore_ctx(struct isp_device *isp);
87
88static const struct isp_res_mapping isp_res_maps[] = {
89 {
90 .isp_rev = ISP_REVISION_2_0,
Sakari Ailus8644cdf2015-03-25 19:57:35 -030091 .offset = {
92 /* first MMIO area */
93 0x0000, /* base, len 0x0070 */
94 0x0400, /* ccp2, len 0x01f0 */
95 0x0600, /* ccdc, len 0x00a8 */
96 0x0a00, /* hist, len 0x0048 */
97 0x0c00, /* h3a, len 0x0060 */
98 0x0e00, /* preview, len 0x00a0 */
99 0x1000, /* resizer, len 0x00ac */
100 0x1200, /* sbl, len 0x00fc */
101 /* second MMIO area */
102 0x0000, /* csi2a, len 0x0170 */
103 0x0170, /* csiphy2, len 0x000c */
104 },
Sakari Ailus503596a2015-03-25 19:57:34 -0300105 .phy_type = ISP_PHY_TYPE_3430,
Sakari Ailus448de7e2011-02-12 18:05:06 -0300106 },
107 {
108 .isp_rev = ISP_REVISION_15_0,
Sakari Ailus8644cdf2015-03-25 19:57:35 -0300109 .offset = {
110 /* first MMIO area */
111 0x0000, /* base, len 0x0070 */
112 0x0400, /* ccp2, len 0x01f0 */
113 0x0600, /* ccdc, len 0x00a8 */
114 0x0a00, /* hist, len 0x0048 */
115 0x0c00, /* h3a, len 0x0060 */
116 0x0e00, /* preview, len 0x00a0 */
117 0x1000, /* resizer, len 0x00ac */
118 0x1200, /* sbl, len 0x00fc */
119 /* second MMIO area */
120 0x0000, /* csi2a, len 0x0170 (1st area) */
121 0x0170, /* csiphy2, len 0x000c */
122 0x01c0, /* csi2a, len 0x0040 (2nd area) */
123 0x0400, /* csi2c, len 0x0170 (1st area) */
124 0x0570, /* csiphy1, len 0x000c */
125 0x05c0, /* csi2c, len 0x0040 (2nd area) */
126 },
Sakari Ailus503596a2015-03-25 19:57:34 -0300127 .phy_type = ISP_PHY_TYPE_3630,
Sakari Ailus448de7e2011-02-12 18:05:06 -0300128 },
129};
130
131/* Structure for saving/restoring ISP module registers */
132static struct isp_reg isp_reg_list[] = {
133 {OMAP3_ISP_IOMEM_MAIN, ISP_SYSCONFIG, 0},
134 {OMAP3_ISP_IOMEM_MAIN, ISP_CTRL, 0},
135 {OMAP3_ISP_IOMEM_MAIN, ISP_TCTRL_CTRL, 0},
136 {0, ISP_TOK_TERM, 0}
137};
138
139/*
140 * omap3isp_flush - Post pending L3 bus writes by doing a register readback
141 * @isp: OMAP3 ISP device
142 *
143 * In order to force posting of pending writes, we need to write and
144 * readback the same register, in this case the revision register.
145 *
146 * See this link for reference:
147 * http://www.mail-archive.com/linux-omap@vger.kernel.org/msg08149.html
148 */
149void omap3isp_flush(struct isp_device *isp)
150{
151 isp_reg_writel(isp, 0, OMAP3_ISP_IOMEM_MAIN, ISP_REVISION);
152 isp_reg_readl(isp, OMAP3_ISP_IOMEM_MAIN, ISP_REVISION);
153}
154
Laurent Pinchart9b28ee32012-10-22 10:43:00 -0300155/* -----------------------------------------------------------------------------
156 * XCLK
157 */
158
159#define to_isp_xclk(_hw) container_of(_hw, struct isp_xclk, hw)
160
161static void isp_xclk_update(struct isp_xclk *xclk, u32 divider)
162{
163 switch (xclk->id) {
164 case ISP_XCLK_A:
165 isp_reg_clr_set(xclk->isp, OMAP3_ISP_IOMEM_MAIN, ISP_TCTRL_CTRL,
166 ISPTCTRL_CTRL_DIVA_MASK,
167 divider << ISPTCTRL_CTRL_DIVA_SHIFT);
168 break;
169 case ISP_XCLK_B:
170 isp_reg_clr_set(xclk->isp, OMAP3_ISP_IOMEM_MAIN, ISP_TCTRL_CTRL,
171 ISPTCTRL_CTRL_DIVB_MASK,
172 divider << ISPTCTRL_CTRL_DIVB_SHIFT);
173 break;
174 }
175}
176
177static int isp_xclk_prepare(struct clk_hw *hw)
178{
179 struct isp_xclk *xclk = to_isp_xclk(hw);
180
181 omap3isp_get(xclk->isp);
182
183 return 0;
184}
185
186static void isp_xclk_unprepare(struct clk_hw *hw)
187{
188 struct isp_xclk *xclk = to_isp_xclk(hw);
189
190 omap3isp_put(xclk->isp);
191}
192
193static int isp_xclk_enable(struct clk_hw *hw)
194{
195 struct isp_xclk *xclk = to_isp_xclk(hw);
196 unsigned long flags;
197
198 spin_lock_irqsave(&xclk->lock, flags);
199 isp_xclk_update(xclk, xclk->divider);
200 xclk->enabled = true;
201 spin_unlock_irqrestore(&xclk->lock, flags);
202
203 return 0;
204}
205
206static void isp_xclk_disable(struct clk_hw *hw)
207{
208 struct isp_xclk *xclk = to_isp_xclk(hw);
209 unsigned long flags;
210
211 spin_lock_irqsave(&xclk->lock, flags);
212 isp_xclk_update(xclk, 0);
213 xclk->enabled = false;
214 spin_unlock_irqrestore(&xclk->lock, flags);
215}
216
217static unsigned long isp_xclk_recalc_rate(struct clk_hw *hw,
218 unsigned long parent_rate)
219{
220 struct isp_xclk *xclk = to_isp_xclk(hw);
221
222 return parent_rate / xclk->divider;
223}
224
225static u32 isp_xclk_calc_divider(unsigned long *rate, unsigned long parent_rate)
226{
227 u32 divider;
228
229 if (*rate >= parent_rate) {
230 *rate = parent_rate;
231 return ISPTCTRL_CTRL_DIV_BYPASS;
232 }
233
Laurent Pinchartaadec012014-09-25 09:22:00 -0300234 if (*rate == 0)
235 *rate = 1;
236
Laurent Pinchart9b28ee32012-10-22 10:43:00 -0300237 divider = DIV_ROUND_CLOSEST(parent_rate, *rate);
238 if (divider >= ISPTCTRL_CTRL_DIV_BYPASS)
239 divider = ISPTCTRL_CTRL_DIV_BYPASS - 1;
240
241 *rate = parent_rate / divider;
242 return divider;
243}
244
245static long isp_xclk_round_rate(struct clk_hw *hw, unsigned long rate,
246 unsigned long *parent_rate)
247{
248 isp_xclk_calc_divider(&rate, *parent_rate);
249 return rate;
250}
251
252static int isp_xclk_set_rate(struct clk_hw *hw, unsigned long rate,
253 unsigned long parent_rate)
254{
255 struct isp_xclk *xclk = to_isp_xclk(hw);
256 unsigned long flags;
257 u32 divider;
258
259 divider = isp_xclk_calc_divider(&rate, parent_rate);
260
261 spin_lock_irqsave(&xclk->lock, flags);
262
263 xclk->divider = divider;
264 if (xclk->enabled)
265 isp_xclk_update(xclk, divider);
266
267 spin_unlock_irqrestore(&xclk->lock, flags);
268
269 dev_dbg(xclk->isp->dev, "%s: cam_xclk%c set to %lu Hz (div %u)\n",
270 __func__, xclk->id == ISP_XCLK_A ? 'a' : 'b', rate, divider);
271 return 0;
272}
273
274static const struct clk_ops isp_xclk_ops = {
275 .prepare = isp_xclk_prepare,
276 .unprepare = isp_xclk_unprepare,
277 .enable = isp_xclk_enable,
278 .disable = isp_xclk_disable,
279 .recalc_rate = isp_xclk_recalc_rate,
280 .round_rate = isp_xclk_round_rate,
281 .set_rate = isp_xclk_set_rate,
282};
283
284static const char *isp_xclk_parent_name = "cam_mclk";
285
286static const struct clk_init_data isp_xclk_init_data = {
287 .name = "cam_xclk",
288 .ops = &isp_xclk_ops,
289 .parent_names = &isp_xclk_parent_name,
290 .num_parents = 1,
291};
292
Laurent Pinchart64904b52015-03-25 19:57:28 -0300293static struct clk *isp_xclk_src_get(struct of_phandle_args *clkspec, void *data)
294{
295 unsigned int idx = clkspec->args[0];
296 struct isp_device *isp = data;
297
298 if (idx >= ARRAY_SIZE(isp->xclks))
299 return ERR_PTR(-ENOENT);
300
301 return isp->xclks[idx].clk;
302}
303
Laurent Pinchart9b28ee32012-10-22 10:43:00 -0300304static int isp_xclk_init(struct isp_device *isp)
305{
Laurent Pinchart64904b52015-03-25 19:57:28 -0300306 struct device_node *np = isp->dev->of_node;
Laurent Pinchart9b28ee32012-10-22 10:43:00 -0300307 struct clk_init_data init;
308 unsigned int i;
309
Sylwester Nawrockif8e2ff22013-12-04 14:12:03 -0300310 for (i = 0; i < ARRAY_SIZE(isp->xclks); ++i)
311 isp->xclks[i].clk = ERR_PTR(-EINVAL);
312
Laurent Pinchart9b28ee32012-10-22 10:43:00 -0300313 for (i = 0; i < ARRAY_SIZE(isp->xclks); ++i) {
314 struct isp_xclk *xclk = &isp->xclks[i];
Laurent Pinchart9b28ee32012-10-22 10:43:00 -0300315
316 xclk->isp = isp;
317 xclk->id = i == 0 ? ISP_XCLK_A : ISP_XCLK_B;
318 xclk->divider = 1;
319 spin_lock_init(&xclk->lock);
320
321 init.name = i == 0 ? "cam_xclka" : "cam_xclkb";
322 init.ops = &isp_xclk_ops;
323 init.parent_names = &isp_xclk_parent_name;
324 init.num_parents = 1;
325
326 xclk->hw.init = &init;
Sylwester Nawrockif8e2ff22013-12-04 14:12:03 -0300327 /*
328 * The first argument is NULL in order to avoid circular
329 * reference, as this driver takes reference on the
330 * sensor subdevice modules and the sensors would take
331 * reference on this module through clk_get().
332 */
333 xclk->clk = clk_register(NULL, &xclk->hw);
334 if (IS_ERR(xclk->clk))
335 return PTR_ERR(xclk->clk);
Laurent Pinchart9b28ee32012-10-22 10:43:00 -0300336 }
337
Laurent Pinchart64904b52015-03-25 19:57:28 -0300338 if (np)
339 of_clk_add_provider(np, isp_xclk_src_get, isp);
340
Laurent Pinchart9b28ee32012-10-22 10:43:00 -0300341 return 0;
342}
343
344static void isp_xclk_cleanup(struct isp_device *isp)
345{
Laurent Pinchart64904b52015-03-25 19:57:28 -0300346 struct device_node *np = isp->dev->of_node;
Laurent Pinchart9b28ee32012-10-22 10:43:00 -0300347 unsigned int i;
348
Laurent Pinchart64904b52015-03-25 19:57:28 -0300349 if (np)
350 of_clk_del_provider(np);
351
Laurent Pinchart9b28ee32012-10-22 10:43:00 -0300352 for (i = 0; i < ARRAY_SIZE(isp->xclks); ++i) {
353 struct isp_xclk *xclk = &isp->xclks[i];
354
Sylwester Nawrockif8e2ff22013-12-04 14:12:03 -0300355 if (!IS_ERR(xclk->clk))
356 clk_unregister(xclk->clk);
Laurent Pinchart9b28ee32012-10-22 10:43:00 -0300357 }
358}
359
360/* -----------------------------------------------------------------------------
361 * Interrupts
362 */
363
Sakari Ailus448de7e2011-02-12 18:05:06 -0300364/*
365 * isp_enable_interrupts - Enable ISP interrupts.
366 * @isp: OMAP3 ISP device
367 */
368static void isp_enable_interrupts(struct isp_device *isp)
369{
370 static const u32 irq = IRQ0ENABLE_CSIA_IRQ
371 | IRQ0ENABLE_CSIB_IRQ
372 | IRQ0ENABLE_CCDC_LSC_PREF_ERR_IRQ
373 | IRQ0ENABLE_CCDC_LSC_DONE_IRQ
374 | IRQ0ENABLE_CCDC_VD0_IRQ
375 | IRQ0ENABLE_CCDC_VD1_IRQ
376 | IRQ0ENABLE_HS_VS_IRQ
377 | IRQ0ENABLE_HIST_DONE_IRQ
378 | IRQ0ENABLE_H3A_AWB_DONE_IRQ
379 | IRQ0ENABLE_H3A_AF_DONE_IRQ
380 | IRQ0ENABLE_PRV_DONE_IRQ
381 | IRQ0ENABLE_RSZ_DONE_IRQ;
382
383 isp_reg_writel(isp, irq, OMAP3_ISP_IOMEM_MAIN, ISP_IRQ0STATUS);
384 isp_reg_writel(isp, irq, OMAP3_ISP_IOMEM_MAIN, ISP_IRQ0ENABLE);
385}
386
387/*
388 * isp_disable_interrupts - Disable ISP interrupts.
389 * @isp: OMAP3 ISP device
390 */
391static void isp_disable_interrupts(struct isp_device *isp)
392{
393 isp_reg_writel(isp, 0, OMAP3_ISP_IOMEM_MAIN, ISP_IRQ0ENABLE);
394}
395
Sakari Ailus448de7e2011-02-12 18:05:06 -0300396/*
Laurent Pinchart96d62ae2012-05-25 09:33:00 -0300397 * isp_core_init - ISP core settings
Sakari Ailus448de7e2011-02-12 18:05:06 -0300398 * @isp: OMAP3 ISP device
399 * @idle: Consider idle state.
400 *
Lad, Prabhakar25aeb412014-02-21 09:07:21 -0300401 * Set the power settings for the ISP and SBL bus and configure the HS/VS
Laurent Pinchart96d62ae2012-05-25 09:33:00 -0300402 * interrupt source.
403 *
404 * We need to configure the HS/VS interrupt source before interrupts get
405 * enabled, as the sensor might be free-running and the ISP default setting
406 * (HS edge) would put an unnecessary burden on the CPU.
Sakari Ailus448de7e2011-02-12 18:05:06 -0300407 */
Laurent Pinchart96d62ae2012-05-25 09:33:00 -0300408static void isp_core_init(struct isp_device *isp, int idle)
Sakari Ailus448de7e2011-02-12 18:05:06 -0300409{
410 isp_reg_writel(isp,
411 ((idle ? ISP_SYSCONFIG_MIDLEMODE_SMARTSTANDBY :
412 ISP_SYSCONFIG_MIDLEMODE_FORCESTANDBY) <<
413 ISP_SYSCONFIG_MIDLEMODE_SHIFT) |
414 ((isp->revision == ISP_REVISION_15_0) ?
415 ISP_SYSCONFIG_AUTOIDLE : 0),
416 OMAP3_ISP_IOMEM_MAIN, ISP_SYSCONFIG);
417
Laurent Pinchart96d62ae2012-05-25 09:33:00 -0300418 isp_reg_writel(isp,
419 (isp->autoidle ? ISPCTRL_SBL_AUTOIDLE : 0) |
420 ISPCTRL_SYNC_DETECT_VSRISE,
421 OMAP3_ISP_IOMEM_MAIN, ISP_CTRL);
Sakari Ailus448de7e2011-02-12 18:05:06 -0300422}
423
424/*
425 * Configure the bridge and lane shifter. Valid inputs are
426 *
427 * CCDC_INPUT_PARALLEL: Parallel interface
428 * CCDC_INPUT_CSI2A: CSI2a receiver
429 * CCDC_INPUT_CCP2B: CCP2b receiver
430 * CCDC_INPUT_CSI2C: CSI2c receiver
431 *
432 * The bridge and lane shifter are configured according to the selected input
433 * and the ISP platform data.
434 */
435void omap3isp_configure_bridge(struct isp_device *isp,
436 enum ccdc_input_entity input,
Sakari Ailus689087472015-03-25 19:57:30 -0300437 const struct isp_parallel_cfg *parcfg,
Laurent Pinchartc51364c2011-08-31 11:03:53 -0300438 unsigned int shift, unsigned int bridge)
Sakari Ailus448de7e2011-02-12 18:05:06 -0300439{
440 u32 ispctrl_val;
441
442 ispctrl_val = isp_reg_readl(isp, OMAP3_ISP_IOMEM_MAIN, ISP_CTRL);
443 ispctrl_val &= ~ISPCTRL_SHIFT_MASK;
444 ispctrl_val &= ~ISPCTRL_PAR_CLK_POL_INV;
445 ispctrl_val &= ~ISPCTRL_PAR_SER_CLK_SEL_MASK;
446 ispctrl_val &= ~ISPCTRL_PAR_BRIDGE_MASK;
Laurent Pinchartc51364c2011-08-31 11:03:53 -0300447 ispctrl_val |= bridge;
Sakari Ailus448de7e2011-02-12 18:05:06 -0300448
449 switch (input) {
450 case CCDC_INPUT_PARALLEL:
451 ispctrl_val |= ISPCTRL_PAR_SER_CLK_SEL_PARALLEL;
Sakari Ailus689087472015-03-25 19:57:30 -0300452 ispctrl_val |= parcfg->clk_pol << ISPCTRL_PAR_CLK_POL_SHIFT;
Laurent Pinchart74d1e7c2015-12-29 12:03:19 -0200453 shift += parcfg->data_lane_shift;
Sakari Ailus448de7e2011-02-12 18:05:06 -0300454 break;
455
456 case CCDC_INPUT_CSI2A:
457 ispctrl_val |= ISPCTRL_PAR_SER_CLK_SEL_CSIA;
458 break;
459
460 case CCDC_INPUT_CCP2B:
461 ispctrl_val |= ISPCTRL_PAR_SER_CLK_SEL_CSIB;
462 break;
463
464 case CCDC_INPUT_CSI2C:
465 ispctrl_val |= ISPCTRL_PAR_SER_CLK_SEL_CSIC;
466 break;
467
468 default:
469 return;
470 }
471
Michael Jonesc09af042011-03-29 05:19:09 -0300472 ispctrl_val |= ((shift/2) << ISPCTRL_SHIFT_SHIFT) & ISPCTRL_SHIFT_MASK;
473
Sakari Ailus448de7e2011-02-12 18:05:06 -0300474 isp_reg_writel(isp, ispctrl_val, OMAP3_ISP_IOMEM_MAIN, ISP_CTRL);
475}
476
Sakari Ailus448de7e2011-02-12 18:05:06 -0300477void omap3isp_hist_dma_done(struct isp_device *isp)
478{
479 if (omap3isp_ccdc_busy(&isp->isp_ccdc) ||
480 omap3isp_stat_pcr_busy(&isp->isp_hist)) {
481 /* Histogram cannot be enabled in this frame anymore */
482 atomic_set(&isp->isp_hist.buf_err, 1);
483 dev_dbg(isp->dev, "hist: Out of synchronization with "
484 "CCDC. Ignoring next buffer.\n");
485 }
486}
487
488static inline void isp_isr_dbg(struct isp_device *isp, u32 irqstatus)
489{
490 static const char *name[] = {
491 "CSIA_IRQ",
492 "res1",
493 "res2",
494 "CSIB_LCM_IRQ",
495 "CSIB_IRQ",
496 "res5",
497 "res6",
498 "res7",
499 "CCDC_VD0_IRQ",
500 "CCDC_VD1_IRQ",
501 "CCDC_VD2_IRQ",
502 "CCDC_ERR_IRQ",
503 "H3A_AF_DONE_IRQ",
504 "H3A_AWB_DONE_IRQ",
505 "res14",
506 "res15",
507 "HIST_DONE_IRQ",
508 "CCDC_LSC_DONE",
509 "CCDC_LSC_PREFETCH_COMPLETED",
510 "CCDC_LSC_PREFETCH_ERROR",
511 "PRV_DONE_IRQ",
512 "CBUFF_IRQ",
513 "res22",
514 "res23",
515 "RSZ_DONE_IRQ",
516 "OVF_IRQ",
517 "res26",
518 "res27",
519 "MMU_ERR_IRQ",
520 "OCP_ERR_IRQ",
521 "SEC_ERR_IRQ",
522 "HS_VS_IRQ",
523 };
524 int i;
525
Sanjeev Premi6c20c6352011-05-18 13:06:51 -0300526 dev_dbg(isp->dev, "ISP IRQ: ");
Sakari Ailus448de7e2011-02-12 18:05:06 -0300527
528 for (i = 0; i < ARRAY_SIZE(name); i++) {
529 if ((1 << i) & irqstatus)
530 printk(KERN_CONT "%s ", name[i]);
531 }
532 printk(KERN_CONT "\n");
533}
534
535static void isp_isr_sbl(struct isp_device *isp)
536{
537 struct device *dev = isp->dev;
Laurent Pinchart875e2e32011-12-07 08:34:50 -0300538 struct isp_pipeline *pipe;
Sakari Ailus448de7e2011-02-12 18:05:06 -0300539 u32 sbl_pcr;
540
541 /*
542 * Handle shared buffer logic overflows for video buffers.
543 * ISPSBL_PCR_CCDCPRV_2_RSZ_OVF can be safely ignored.
544 */
545 sbl_pcr = isp_reg_readl(isp, OMAP3_ISP_IOMEM_SBL, ISPSBL_PCR);
546 isp_reg_writel(isp, sbl_pcr, OMAP3_ISP_IOMEM_SBL, ISPSBL_PCR);
547 sbl_pcr &= ~ISPSBL_PCR_CCDCPRV_2_RSZ_OVF;
548
549 if (sbl_pcr)
550 dev_dbg(dev, "SBL overflow (PCR = 0x%08x)\n", sbl_pcr);
551
Laurent Pinchart875e2e32011-12-07 08:34:50 -0300552 if (sbl_pcr & ISPSBL_PCR_CSIB_WBL_OVF) {
553 pipe = to_isp_pipeline(&isp->isp_ccp2.subdev.entity);
554 if (pipe != NULL)
555 pipe->error = true;
556 }
557
558 if (sbl_pcr & ISPSBL_PCR_CSIA_WBL_OVF) {
559 pipe = to_isp_pipeline(&isp->isp_csi2a.subdev.entity);
560 if (pipe != NULL)
561 pipe->error = true;
562 }
563
564 if (sbl_pcr & ISPSBL_PCR_CCDC_WBL_OVF) {
565 pipe = to_isp_pipeline(&isp->isp_ccdc.subdev.entity);
566 if (pipe != NULL)
567 pipe->error = true;
Sakari Ailus448de7e2011-02-12 18:05:06 -0300568 }
569
570 if (sbl_pcr & ISPSBL_PCR_PRV_WBL_OVF) {
Laurent Pinchart875e2e32011-12-07 08:34:50 -0300571 pipe = to_isp_pipeline(&isp->isp_prev.subdev.entity);
572 if (pipe != NULL)
573 pipe->error = true;
Sakari Ailus448de7e2011-02-12 18:05:06 -0300574 }
575
576 if (sbl_pcr & (ISPSBL_PCR_RSZ1_WBL_OVF
577 | ISPSBL_PCR_RSZ2_WBL_OVF
578 | ISPSBL_PCR_RSZ3_WBL_OVF
Laurent Pinchart875e2e32011-12-07 08:34:50 -0300579 | ISPSBL_PCR_RSZ4_WBL_OVF)) {
580 pipe = to_isp_pipeline(&isp->isp_res.subdev.entity);
581 if (pipe != NULL)
582 pipe->error = true;
583 }
Sakari Ailus448de7e2011-02-12 18:05:06 -0300584
585 if (sbl_pcr & ISPSBL_PCR_H3A_AF_WBL_OVF)
586 omap3isp_stat_sbl_overflow(&isp->isp_af);
587
588 if (sbl_pcr & ISPSBL_PCR_H3A_AEAWB_WBL_OVF)
589 omap3isp_stat_sbl_overflow(&isp->isp_aewb);
590}
591
592/*
593 * isp_isr - Interrupt Service Routine for Camera ISP module.
594 * @irq: Not used currently.
595 * @_isp: Pointer to the OMAP3 ISP device
596 *
597 * Handles the corresponding callback if plugged in.
Sakari Ailus448de7e2011-02-12 18:05:06 -0300598 */
599static irqreturn_t isp_isr(int irq, void *_isp)
600{
601 static const u32 ccdc_events = IRQ0STATUS_CCDC_LSC_PREF_ERR_IRQ |
602 IRQ0STATUS_CCDC_LSC_DONE_IRQ |
603 IRQ0STATUS_CCDC_VD0_IRQ |
604 IRQ0STATUS_CCDC_VD1_IRQ |
605 IRQ0STATUS_HS_VS_IRQ;
606 struct isp_device *isp = _isp;
607 u32 irqstatus;
Sakari Ailus448de7e2011-02-12 18:05:06 -0300608
609 irqstatus = isp_reg_readl(isp, OMAP3_ISP_IOMEM_MAIN, ISP_IRQ0STATUS);
610 isp_reg_writel(isp, irqstatus, OMAP3_ISP_IOMEM_MAIN, ISP_IRQ0STATUS);
611
612 isp_isr_sbl(isp);
613
Laurent Pinchart875e2e32011-12-07 08:34:50 -0300614 if (irqstatus & IRQ0STATUS_CSIA_IRQ)
615 omap3isp_csi2_isr(&isp->isp_csi2a);
Sakari Ailus448de7e2011-02-12 18:05:06 -0300616
Laurent Pinchart875e2e32011-12-07 08:34:50 -0300617 if (irqstatus & IRQ0STATUS_CSIB_IRQ)
618 omap3isp_ccp2_isr(&isp->isp_ccp2);
Sakari Ailus448de7e2011-02-12 18:05:06 -0300619
620 if (irqstatus & IRQ0STATUS_CCDC_VD0_IRQ) {
621 if (isp->isp_ccdc.output & CCDC_OUTPUT_PREVIEW)
622 omap3isp_preview_isr_frame_sync(&isp->isp_prev);
623 if (isp->isp_ccdc.output & CCDC_OUTPUT_RESIZER)
624 omap3isp_resizer_isr_frame_sync(&isp->isp_res);
625 omap3isp_stat_isr_frame_sync(&isp->isp_aewb);
626 omap3isp_stat_isr_frame_sync(&isp->isp_af);
627 omap3isp_stat_isr_frame_sync(&isp->isp_hist);
628 }
629
630 if (irqstatus & ccdc_events)
631 omap3isp_ccdc_isr(&isp->isp_ccdc, irqstatus & ccdc_events);
632
633 if (irqstatus & IRQ0STATUS_PRV_DONE_IRQ) {
634 if (isp->isp_prev.output & PREVIEW_OUTPUT_RESIZER)
635 omap3isp_resizer_isr_frame_sync(&isp->isp_res);
636 omap3isp_preview_isr(&isp->isp_prev);
637 }
638
639 if (irqstatus & IRQ0STATUS_RSZ_DONE_IRQ)
640 omap3isp_resizer_isr(&isp->isp_res);
641
642 if (irqstatus & IRQ0STATUS_H3A_AWB_DONE_IRQ)
643 omap3isp_stat_isr(&isp->isp_aewb);
644
645 if (irqstatus & IRQ0STATUS_H3A_AF_DONE_IRQ)
646 omap3isp_stat_isr(&isp->isp_af);
647
648 if (irqstatus & IRQ0STATUS_HIST_DONE_IRQ)
649 omap3isp_stat_isr(&isp->isp_hist);
650
651 omap3isp_flush(isp);
652
653#if defined(DEBUG) && defined(ISP_ISR_DEBUG)
654 isp_isr_dbg(isp, irqstatus);
655#endif
656
657 return IRQ_HANDLED;
658}
659
Laurent Pinchart68429f52015-11-03 00:27:51 -0200660static const struct media_device_ops isp_media_ops = {
661 .link_notify = v4l2_pipeline_link_notify,
662};
663
Sakari Ailus448de7e2011-02-12 18:05:06 -0300664/* -----------------------------------------------------------------------------
Sakari Ailus448de7e2011-02-12 18:05:06 -0300665 * Pipeline stream management
666 */
667
668/*
669 * isp_pipeline_enable - Enable streaming on a pipeline
670 * @pipe: ISP pipeline
671 * @mode: Stream mode (single shot or continuous)
672 *
673 * Walk the entities chain starting at the pipeline output video node and start
674 * all modules in the chain in the given mode.
675 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300676 * Return 0 if successful, or the return value of the failed video::s_stream
Sakari Ailus448de7e2011-02-12 18:05:06 -0300677 * operation otherwise.
678 */
679static int isp_pipeline_enable(struct isp_pipeline *pipe,
680 enum isp_pipeline_stream_state mode)
681{
682 struct isp_device *isp = pipe->output->isp;
683 struct media_entity *entity;
684 struct media_pad *pad;
685 struct v4l2_subdev *subdev;
686 unsigned long flags;
Laurent Pinchartc62e2a12011-08-13 13:09:11 -0300687 int ret;
Sakari Ailus448de7e2011-02-12 18:05:06 -0300688
Laurent Pinchart112eee02013-12-15 23:49:42 -0300689 /* Refuse to start streaming if an entity included in the pipeline has
690 * crashed. This check must be performed before the loop below to avoid
691 * starting entities if the pipeline won't start anyway (those entities
692 * would then likely fail to stop, making the problem worse).
Laurent Pinchart1567bb72011-11-18 11:28:24 -0300693 */
Sakari Ailus17d3d402015-12-16 11:32:30 -0200694 if (media_entity_enum_intersects(&pipe->ent_enum, &isp->crashed))
Laurent Pinchart1567bb72011-11-18 11:28:24 -0300695 return -EIO;
696
Sakari Ailus448de7e2011-02-12 18:05:06 -0300697 spin_lock_irqsave(&pipe->lock, flags);
698 pipe->state &= ~(ISP_PIPELINE_IDLE_INPUT | ISP_PIPELINE_IDLE_OUTPUT);
699 spin_unlock_irqrestore(&pipe->lock, flags);
700
701 pipe->do_propagation = false;
702
703 entity = &pipe->output->video.entity;
704 while (1) {
705 pad = &entity->pads[0];
706 if (!(pad->flags & MEDIA_PAD_FL_SINK))
707 break;
708
Andrzej Hajda1bddf1b2013-06-03 05:16:13 -0300709 pad = media_entity_remote_pad(pad);
Mauro Carvalho Chehab3efdf622015-05-07 22:12:32 -0300710 if (!pad || !is_media_entity_v4l2_subdev(pad->entity))
Sakari Ailus448de7e2011-02-12 18:05:06 -0300711 break;
712
713 entity = pad->entity;
714 subdev = media_entity_to_v4l2_subdev(entity);
715
716 ret = v4l2_subdev_call(subdev, video, s_stream, mode);
717 if (ret < 0 && ret != -ENOIOCTLCMD)
Laurent Pinchartc62e2a12011-08-13 13:09:11 -0300718 return ret;
Sakari Ailus448de7e2011-02-12 18:05:06 -0300719
720 if (subdev == &isp->isp_ccdc.subdev) {
721 v4l2_subdev_call(&isp->isp_aewb.subdev, video,
722 s_stream, mode);
723 v4l2_subdev_call(&isp->isp_af.subdev, video,
724 s_stream, mode);
725 v4l2_subdev_call(&isp->isp_hist.subdev, video,
726 s_stream, mode);
727 pipe->do_propagation = true;
728 }
729 }
730
Laurent Pinchartc62e2a12011-08-13 13:09:11 -0300731 return 0;
Sakari Ailus448de7e2011-02-12 18:05:06 -0300732}
733
734static int isp_pipeline_wait_resizer(struct isp_device *isp)
735{
736 return omap3isp_resizer_busy(&isp->isp_res);
737}
738
739static int isp_pipeline_wait_preview(struct isp_device *isp)
740{
741 return omap3isp_preview_busy(&isp->isp_prev);
742}
743
744static int isp_pipeline_wait_ccdc(struct isp_device *isp)
745{
746 return omap3isp_stat_busy(&isp->isp_af)
747 || omap3isp_stat_busy(&isp->isp_aewb)
748 || omap3isp_stat_busy(&isp->isp_hist)
749 || omap3isp_ccdc_busy(&isp->isp_ccdc);
750}
751
752#define ISP_STOP_TIMEOUT msecs_to_jiffies(1000)
753
754static int isp_pipeline_wait(struct isp_device *isp,
755 int(*busy)(struct isp_device *isp))
756{
757 unsigned long timeout = jiffies + ISP_STOP_TIMEOUT;
758
759 while (!time_after(jiffies, timeout)) {
760 if (!busy(isp))
761 return 0;
762 }
763
764 return 1;
765}
766
767/*
768 * isp_pipeline_disable - Disable streaming on a pipeline
769 * @pipe: ISP pipeline
770 *
771 * Walk the entities chain starting at the pipeline output video node and stop
772 * all modules in the chain. Wait synchronously for the modules to be stopped if
773 * necessary.
774 *
775 * Return 0 if all modules have been properly stopped, or -ETIMEDOUT if a module
776 * can't be stopped (in which case a software reset of the ISP is probably
777 * necessary).
778 */
779static int isp_pipeline_disable(struct isp_pipeline *pipe)
780{
781 struct isp_device *isp = pipe->output->isp;
782 struct media_entity *entity;
783 struct media_pad *pad;
784 struct v4l2_subdev *subdev;
785 int failure = 0;
786 int ret;
787
788 /*
789 * We need to stop all the modules after CCDC first or they'll
790 * never stop since they may not get a full frame from CCDC.
791 */
792 entity = &pipe->output->video.entity;
793 while (1) {
794 pad = &entity->pads[0];
795 if (!(pad->flags & MEDIA_PAD_FL_SINK))
796 break;
797
Andrzej Hajda1bddf1b2013-06-03 05:16:13 -0300798 pad = media_entity_remote_pad(pad);
Mauro Carvalho Chehab3efdf622015-05-07 22:12:32 -0300799 if (!pad || !is_media_entity_v4l2_subdev(pad->entity))
Sakari Ailus448de7e2011-02-12 18:05:06 -0300800 break;
801
802 entity = pad->entity;
803 subdev = media_entity_to_v4l2_subdev(entity);
804
805 if (subdev == &isp->isp_ccdc.subdev) {
806 v4l2_subdev_call(&isp->isp_aewb.subdev,
807 video, s_stream, 0);
808 v4l2_subdev_call(&isp->isp_af.subdev,
809 video, s_stream, 0);
810 v4l2_subdev_call(&isp->isp_hist.subdev,
811 video, s_stream, 0);
812 }
813
Laurent Pincharteb228e82014-05-20 18:21:13 -0300814 ret = v4l2_subdev_call(subdev, video, s_stream, 0);
Sakari Ailus448de7e2011-02-12 18:05:06 -0300815
816 if (subdev == &isp->isp_res.subdev)
Laurent Pincharteb228e82014-05-20 18:21:13 -0300817 ret |= isp_pipeline_wait(isp, isp_pipeline_wait_resizer);
Sakari Ailus448de7e2011-02-12 18:05:06 -0300818 else if (subdev == &isp->isp_prev.subdev)
Laurent Pincharteb228e82014-05-20 18:21:13 -0300819 ret |= isp_pipeline_wait(isp, isp_pipeline_wait_preview);
Sakari Ailus448de7e2011-02-12 18:05:06 -0300820 else if (subdev == &isp->isp_ccdc.subdev)
Laurent Pincharteb228e82014-05-20 18:21:13 -0300821 ret |= isp_pipeline_wait(isp, isp_pipeline_wait_ccdc);
Sakari Ailus448de7e2011-02-12 18:05:06 -0300822
Laurent Pinchart112eee02013-12-15 23:49:42 -0300823 /* Handle stop failures. An entity that fails to stop can
824 * usually just be restarted. Flag the stop failure nonetheless
825 * to trigger an ISP reset the next time the device is released,
826 * just in case.
827 *
828 * The preview engine is a special case. A failure to stop can
829 * mean a hardware crash. When that happens the preview engine
830 * won't respond to read/write operations on the L4 bus anymore,
831 * resulting in a bus fault and a kernel oops next time it gets
832 * accessed. Mark it as crashed to prevent pipelines including
833 * it from being started.
834 */
Sakari Ailus448de7e2011-02-12 18:05:06 -0300835 if (ret) {
836 dev_info(isp->dev, "Unable to stop %s\n", subdev->name);
Laurent Pinchart112eee02013-12-15 23:49:42 -0300837 isp->stop_failure = true;
Sakari Ailus17d3d402015-12-16 11:32:30 -0200838 if (subdev == &isp->isp_prev.subdev)
839 media_entity_enum_set(&isp->crashed,
840 &subdev->entity);
Sakari Ailus448de7e2011-02-12 18:05:06 -0300841 failure = -ETIMEDOUT;
842 }
843 }
844
845 return failure;
846}
847
848/*
849 * omap3isp_pipeline_set_stream - Enable/disable streaming on a pipeline
850 * @pipe: ISP pipeline
851 * @state: Stream state (stopped, single shot or continuous)
852 *
853 * Set the pipeline to the given stream state. Pipelines can be started in
854 * single-shot or continuous mode.
855 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300856 * Return 0 if successful, or the return value of the failed video::s_stream
Laurent Pinchart994d5372011-03-01 13:43:07 -0300857 * operation otherwise. The pipeline state is not updated when the operation
858 * fails, except when stopping the pipeline.
Sakari Ailus448de7e2011-02-12 18:05:06 -0300859 */
860int omap3isp_pipeline_set_stream(struct isp_pipeline *pipe,
861 enum isp_pipeline_stream_state state)
862{
863 int ret;
864
865 if (state == ISP_PIPELINE_STREAM_STOPPED)
866 ret = isp_pipeline_disable(pipe);
867 else
868 ret = isp_pipeline_enable(pipe, state);
Laurent Pinchart994d5372011-03-01 13:43:07 -0300869
870 if (ret == 0 || state == ISP_PIPELINE_STREAM_STOPPED)
871 pipe->stream_state = state;
Sakari Ailus448de7e2011-02-12 18:05:06 -0300872
873 return ret;
874}
875
876/*
Laurent Pinchart661112c2013-12-09 11:36:51 -0300877 * omap3isp_pipeline_cancel_stream - Cancel stream on a pipeline
878 * @pipe: ISP pipeline
879 *
880 * Cancelling a stream mark all buffers on all video nodes in the pipeline as
881 * erroneous and makes sure no new buffer can be queued. This function is called
882 * when a fatal error that prevents any further operation on the pipeline
883 * occurs.
884 */
885void omap3isp_pipeline_cancel_stream(struct isp_pipeline *pipe)
886{
887 if (pipe->input)
888 omap3isp_video_cancel_stream(pipe->input);
889 if (pipe->output)
890 omap3isp_video_cancel_stream(pipe->output);
891}
892
893/*
Sakari Ailus448de7e2011-02-12 18:05:06 -0300894 * isp_pipeline_resume - Resume streaming on a pipeline
895 * @pipe: ISP pipeline
896 *
897 * Resume video output and input and re-enable pipeline.
898 */
899static void isp_pipeline_resume(struct isp_pipeline *pipe)
900{
901 int singleshot = pipe->stream_state == ISP_PIPELINE_STREAM_SINGLESHOT;
902
903 omap3isp_video_resume(pipe->output, !singleshot);
904 if (singleshot)
905 omap3isp_video_resume(pipe->input, 0);
906 isp_pipeline_enable(pipe, pipe->stream_state);
907}
908
909/*
910 * isp_pipeline_suspend - Suspend streaming on a pipeline
911 * @pipe: ISP pipeline
912 *
913 * Suspend pipeline.
914 */
915static void isp_pipeline_suspend(struct isp_pipeline *pipe)
916{
917 isp_pipeline_disable(pipe);
918}
919
920/*
921 * isp_pipeline_is_last - Verify if entity has an enabled link to the output
922 * video node
923 * @me: ISP module's media entity
924 *
925 * Returns 1 if the entity has an enabled link to the output video node or 0
926 * otherwise. It's true only while pipeline can have no more than one output
927 * node.
928 */
929static int isp_pipeline_is_last(struct media_entity *me)
930{
931 struct isp_pipeline *pipe;
932 struct media_pad *pad;
933
934 if (!me->pipe)
935 return 0;
936 pipe = to_isp_pipeline(me);
937 if (pipe->stream_state == ISP_PIPELINE_STREAM_STOPPED)
938 return 0;
Andrzej Hajda1bddf1b2013-06-03 05:16:13 -0300939 pad = media_entity_remote_pad(&pipe->output->pad);
Sakari Ailus448de7e2011-02-12 18:05:06 -0300940 return pad->entity == me;
941}
942
943/*
944 * isp_suspend_module_pipeline - Suspend pipeline to which belongs the module
945 * @me: ISP module's media entity
946 *
947 * Suspend the whole pipeline if module's entity has an enabled link to the
948 * output video node. It works only while pipeline can have no more than one
949 * output node.
950 */
951static void isp_suspend_module_pipeline(struct media_entity *me)
952{
953 if (isp_pipeline_is_last(me))
954 isp_pipeline_suspend(to_isp_pipeline(me));
955}
956
957/*
958 * isp_resume_module_pipeline - Resume pipeline to which belongs the module
959 * @me: ISP module's media entity
960 *
961 * Resume the whole pipeline if module's entity has an enabled link to the
962 * output video node. It works only while pipeline can have no more than one
963 * output node.
964 */
965static void isp_resume_module_pipeline(struct media_entity *me)
966{
967 if (isp_pipeline_is_last(me))
968 isp_pipeline_resume(to_isp_pipeline(me));
969}
970
971/*
972 * isp_suspend_modules - Suspend ISP submodules.
973 * @isp: OMAP3 ISP device
974 *
975 * Returns 0 if suspend left in idle state all the submodules properly,
976 * or returns 1 if a general Reset is required to suspend the submodules.
977 */
978static int isp_suspend_modules(struct isp_device *isp)
979{
980 unsigned long timeout;
981
982 omap3isp_stat_suspend(&isp->isp_aewb);
983 omap3isp_stat_suspend(&isp->isp_af);
984 omap3isp_stat_suspend(&isp->isp_hist);
985 isp_suspend_module_pipeline(&isp->isp_res.subdev.entity);
986 isp_suspend_module_pipeline(&isp->isp_prev.subdev.entity);
987 isp_suspend_module_pipeline(&isp->isp_ccdc.subdev.entity);
988 isp_suspend_module_pipeline(&isp->isp_csi2a.subdev.entity);
989 isp_suspend_module_pipeline(&isp->isp_ccp2.subdev.entity);
990
991 timeout = jiffies + ISP_STOP_TIMEOUT;
992 while (omap3isp_stat_busy(&isp->isp_af)
993 || omap3isp_stat_busy(&isp->isp_aewb)
994 || omap3isp_stat_busy(&isp->isp_hist)
995 || omap3isp_preview_busy(&isp->isp_prev)
996 || omap3isp_resizer_busy(&isp->isp_res)
997 || omap3isp_ccdc_busy(&isp->isp_ccdc)) {
998 if (time_after(jiffies, timeout)) {
999 dev_info(isp->dev, "can't stop modules.\n");
1000 return 1;
1001 }
1002 msleep(1);
1003 }
1004
1005 return 0;
1006}
1007
1008/*
1009 * isp_resume_modules - Resume ISP submodules.
1010 * @isp: OMAP3 ISP device
1011 */
1012static void isp_resume_modules(struct isp_device *isp)
1013{
1014 omap3isp_stat_resume(&isp->isp_aewb);
1015 omap3isp_stat_resume(&isp->isp_af);
1016 omap3isp_stat_resume(&isp->isp_hist);
1017 isp_resume_module_pipeline(&isp->isp_res.subdev.entity);
1018 isp_resume_module_pipeline(&isp->isp_prev.subdev.entity);
1019 isp_resume_module_pipeline(&isp->isp_ccdc.subdev.entity);
1020 isp_resume_module_pipeline(&isp->isp_csi2a.subdev.entity);
1021 isp_resume_module_pipeline(&isp->isp_ccp2.subdev.entity);
1022}
1023
1024/*
1025 * isp_reset - Reset ISP with a timeout wait for idle.
1026 * @isp: OMAP3 ISP device
1027 */
1028static int isp_reset(struct isp_device *isp)
1029{
1030 unsigned long timeout = 0;
1031
1032 isp_reg_writel(isp,
1033 isp_reg_readl(isp, OMAP3_ISP_IOMEM_MAIN, ISP_SYSCONFIG)
1034 | ISP_SYSCONFIG_SOFTRESET,
1035 OMAP3_ISP_IOMEM_MAIN, ISP_SYSCONFIG);
1036 while (!(isp_reg_readl(isp, OMAP3_ISP_IOMEM_MAIN,
1037 ISP_SYSSTATUS) & 0x1)) {
1038 if (timeout++ > 10000) {
1039 dev_alert(isp->dev, "cannot reset ISP\n");
1040 return -ETIMEDOUT;
1041 }
1042 udelay(1);
1043 }
1044
Laurent Pinchart112eee02013-12-15 23:49:42 -03001045 isp->stop_failure = false;
Sakari Ailus17d3d402015-12-16 11:32:30 -02001046 media_entity_enum_zero(&isp->crashed);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001047 return 0;
1048}
1049
1050/*
1051 * isp_save_context - Saves the values of the ISP module registers.
1052 * @isp: OMAP3 ISP device
1053 * @reg_list: Structure containing pairs of register address and value to
1054 * modify on OMAP.
1055 */
1056static void
1057isp_save_context(struct isp_device *isp, struct isp_reg *reg_list)
1058{
1059 struct isp_reg *next = reg_list;
1060
1061 for (; next->reg != ISP_TOK_TERM; next++)
1062 next->val = isp_reg_readl(isp, next->mmio_range, next->reg);
1063}
1064
1065/*
1066 * isp_restore_context - Restores the values of the ISP module registers.
1067 * @isp: OMAP3 ISP device
1068 * @reg_list: Structure containing pairs of register address and value to
1069 * modify on OMAP.
1070 */
1071static void
1072isp_restore_context(struct isp_device *isp, struct isp_reg *reg_list)
1073{
1074 struct isp_reg *next = reg_list;
1075
1076 for (; next->reg != ISP_TOK_TERM; next++)
1077 isp_reg_writel(isp, next->val, next->mmio_range, next->reg);
1078}
1079
1080/*
1081 * isp_save_ctx - Saves ISP, CCDC, HIST, H3A, PREV, RESZ & MMU context.
1082 * @isp: OMAP3 ISP device
1083 *
1084 * Routine for saving the context of each module in the ISP.
1085 * CCDC, HIST, H3A, PREV, RESZ and MMU.
1086 */
1087static void isp_save_ctx(struct isp_device *isp)
1088{
1089 isp_save_context(isp, isp_reg_list);
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +02001090 omap_iommu_save_ctx(isp->dev);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001091}
1092
1093/*
1094 * isp_restore_ctx - Restores ISP, CCDC, HIST, H3A, PREV, RESZ & MMU context.
1095 * @isp: OMAP3 ISP device
1096 *
1097 * Routine for restoring the context of each module in the ISP.
1098 * CCDC, HIST, H3A, PREV, RESZ and MMU.
1099 */
1100static void isp_restore_ctx(struct isp_device *isp)
1101{
1102 isp_restore_context(isp, isp_reg_list);
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +02001103 omap_iommu_restore_ctx(isp->dev);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001104 omap3isp_ccdc_restore_context(isp);
1105 omap3isp_preview_restore_context(isp);
1106}
1107
1108/* -----------------------------------------------------------------------------
1109 * SBL resources management
1110 */
1111#define OMAP3_ISP_SBL_READ (OMAP3_ISP_SBL_CSI1_READ | \
1112 OMAP3_ISP_SBL_CCDC_LSC_READ | \
1113 OMAP3_ISP_SBL_PREVIEW_READ | \
1114 OMAP3_ISP_SBL_RESIZER_READ)
1115#define OMAP3_ISP_SBL_WRITE (OMAP3_ISP_SBL_CSI1_WRITE | \
1116 OMAP3_ISP_SBL_CSI2A_WRITE | \
1117 OMAP3_ISP_SBL_CSI2C_WRITE | \
1118 OMAP3_ISP_SBL_CCDC_WRITE | \
1119 OMAP3_ISP_SBL_PREVIEW_WRITE)
1120
1121void omap3isp_sbl_enable(struct isp_device *isp, enum isp_sbl_resource res)
1122{
1123 u32 sbl = 0;
1124
1125 isp->sbl_resources |= res;
1126
1127 if (isp->sbl_resources & OMAP3_ISP_SBL_CSI1_READ)
1128 sbl |= ISPCTRL_SBL_SHARED_RPORTA;
1129
1130 if (isp->sbl_resources & OMAP3_ISP_SBL_CCDC_LSC_READ)
1131 sbl |= ISPCTRL_SBL_SHARED_RPORTB;
1132
1133 if (isp->sbl_resources & OMAP3_ISP_SBL_CSI2C_WRITE)
1134 sbl |= ISPCTRL_SBL_SHARED_WPORTC;
1135
1136 if (isp->sbl_resources & OMAP3_ISP_SBL_RESIZER_WRITE)
1137 sbl |= ISPCTRL_SBL_WR0_RAM_EN;
1138
1139 if (isp->sbl_resources & OMAP3_ISP_SBL_WRITE)
1140 sbl |= ISPCTRL_SBL_WR1_RAM_EN;
1141
1142 if (isp->sbl_resources & OMAP3_ISP_SBL_READ)
1143 sbl |= ISPCTRL_SBL_RD_RAM_EN;
1144
1145 isp_reg_set(isp, OMAP3_ISP_IOMEM_MAIN, ISP_CTRL, sbl);
1146}
1147
1148void omap3isp_sbl_disable(struct isp_device *isp, enum isp_sbl_resource res)
1149{
1150 u32 sbl = 0;
1151
1152 isp->sbl_resources &= ~res;
1153
1154 if (!(isp->sbl_resources & OMAP3_ISP_SBL_CSI1_READ))
1155 sbl |= ISPCTRL_SBL_SHARED_RPORTA;
1156
1157 if (!(isp->sbl_resources & OMAP3_ISP_SBL_CCDC_LSC_READ))
1158 sbl |= ISPCTRL_SBL_SHARED_RPORTB;
1159
1160 if (!(isp->sbl_resources & OMAP3_ISP_SBL_CSI2C_WRITE))
1161 sbl |= ISPCTRL_SBL_SHARED_WPORTC;
1162
1163 if (!(isp->sbl_resources & OMAP3_ISP_SBL_RESIZER_WRITE))
1164 sbl |= ISPCTRL_SBL_WR0_RAM_EN;
1165
1166 if (!(isp->sbl_resources & OMAP3_ISP_SBL_WRITE))
1167 sbl |= ISPCTRL_SBL_WR1_RAM_EN;
1168
1169 if (!(isp->sbl_resources & OMAP3_ISP_SBL_READ))
1170 sbl |= ISPCTRL_SBL_RD_RAM_EN;
1171
1172 isp_reg_clr(isp, OMAP3_ISP_IOMEM_MAIN, ISP_CTRL, sbl);
1173}
1174
1175/*
1176 * isp_module_sync_idle - Helper to sync module with its idle state
1177 * @me: ISP submodule's media entity
1178 * @wait: ISP submodule's wait queue for streamoff/interrupt synchronization
1179 * @stopping: flag which tells module wants to stop
1180 *
1181 * This function checks if ISP submodule needs to wait for next interrupt. If
1182 * yes, makes the caller to sleep while waiting for such event.
1183 */
1184int omap3isp_module_sync_idle(struct media_entity *me, wait_queue_head_t *wait,
1185 atomic_t *stopping)
1186{
1187 struct isp_pipeline *pipe = to_isp_pipeline(me);
1188
1189 if (pipe->stream_state == ISP_PIPELINE_STREAM_STOPPED ||
1190 (pipe->stream_state == ISP_PIPELINE_STREAM_SINGLESHOT &&
1191 !isp_pipeline_ready(pipe)))
1192 return 0;
1193
1194 /*
1195 * atomic_set() doesn't include memory barrier on ARM platform for SMP
1196 * scenario. We'll call it here to avoid race conditions.
1197 */
1198 atomic_set(stopping, 1);
1199 smp_mb();
1200
1201 /*
1202 * If module is the last one, it's writing to memory. In this case,
1203 * it's necessary to check if the module is already paused due to
1204 * DMA queue underrun or if it has to wait for next interrupt to be
1205 * idle.
1206 * If it isn't the last one, the function won't sleep but *stopping
1207 * will still be set to warn next submodule caller's interrupt the
1208 * module wants to be idle.
1209 */
1210 if (isp_pipeline_is_last(me)) {
1211 struct isp_video *video = pipe->output;
1212 unsigned long flags;
Laurent Pincharte8feb872014-03-09 20:57:53 -03001213 spin_lock_irqsave(&video->irqlock, flags);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001214 if (video->dmaqueue_flags & ISP_VIDEO_DMAQUEUE_UNDERRUN) {
Laurent Pincharte8feb872014-03-09 20:57:53 -03001215 spin_unlock_irqrestore(&video->irqlock, flags);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001216 atomic_set(stopping, 0);
1217 smp_mb();
1218 return 0;
1219 }
Laurent Pincharte8feb872014-03-09 20:57:53 -03001220 spin_unlock_irqrestore(&video->irqlock, flags);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001221 if (!wait_event_timeout(*wait, !atomic_read(stopping),
1222 msecs_to_jiffies(1000))) {
1223 atomic_set(stopping, 0);
1224 smp_mb();
1225 return -ETIMEDOUT;
1226 }
1227 }
1228
1229 return 0;
1230}
1231
1232/*
Peter Meerwald1e9c4d42014-02-28 14:36:07 -03001233 * omap3isp_module_sync_is_stopping - Helper to verify if module was stopping
Sakari Ailus448de7e2011-02-12 18:05:06 -03001234 * @wait: ISP submodule's wait queue for streamoff/interrupt synchronization
1235 * @stopping: flag which tells module wants to stop
1236 *
1237 * This function checks if ISP submodule was stopping. In case of yes, it
1238 * notices the caller by setting stopping to 0 and waking up the wait queue.
1239 * Returns 1 if it was stopping or 0 otherwise.
1240 */
1241int omap3isp_module_sync_is_stopping(wait_queue_head_t *wait,
1242 atomic_t *stopping)
1243{
1244 if (atomic_cmpxchg(stopping, 1, 0)) {
1245 wake_up(wait);
1246 return 1;
1247 }
1248
1249 return 0;
1250}
1251
1252/* --------------------------------------------------------------------------
1253 * Clock management
1254 */
1255
1256#define ISPCTRL_CLKS_MASK (ISPCTRL_H3A_CLK_EN | \
1257 ISPCTRL_HIST_CLK_EN | \
1258 ISPCTRL_RSZ_CLK_EN | \
1259 (ISPCTRL_CCDC_CLK_EN | ISPCTRL_CCDC_RAM_EN) | \
1260 (ISPCTRL_PREV_CLK_EN | ISPCTRL_PREV_RAM_EN))
1261
1262static void __isp_subclk_update(struct isp_device *isp)
1263{
1264 u32 clk = 0;
1265
Laurent Pinchartbe9a1b92012-05-25 08:35:10 -03001266 /* AEWB and AF share the same clock. */
1267 if (isp->subclk_resources &
1268 (OMAP3_ISP_SUBCLK_AEWB | OMAP3_ISP_SUBCLK_AF))
Sakari Ailus448de7e2011-02-12 18:05:06 -03001269 clk |= ISPCTRL_H3A_CLK_EN;
1270
1271 if (isp->subclk_resources & OMAP3_ISP_SUBCLK_HIST)
1272 clk |= ISPCTRL_HIST_CLK_EN;
1273
1274 if (isp->subclk_resources & OMAP3_ISP_SUBCLK_RESIZER)
1275 clk |= ISPCTRL_RSZ_CLK_EN;
1276
1277 /* NOTE: For CCDC & Preview submodules, we need to affect internal
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001278 * RAM as well.
Sakari Ailus448de7e2011-02-12 18:05:06 -03001279 */
1280 if (isp->subclk_resources & OMAP3_ISP_SUBCLK_CCDC)
1281 clk |= ISPCTRL_CCDC_CLK_EN | ISPCTRL_CCDC_RAM_EN;
1282
1283 if (isp->subclk_resources & OMAP3_ISP_SUBCLK_PREVIEW)
1284 clk |= ISPCTRL_PREV_CLK_EN | ISPCTRL_PREV_RAM_EN;
1285
1286 isp_reg_clr_set(isp, OMAP3_ISP_IOMEM_MAIN, ISP_CTRL,
1287 ISPCTRL_CLKS_MASK, clk);
1288}
1289
1290void omap3isp_subclk_enable(struct isp_device *isp,
1291 enum isp_subclk_resource res)
1292{
1293 isp->subclk_resources |= res;
1294
1295 __isp_subclk_update(isp);
1296}
1297
1298void omap3isp_subclk_disable(struct isp_device *isp,
1299 enum isp_subclk_resource res)
1300{
1301 isp->subclk_resources &= ~res;
1302
1303 __isp_subclk_update(isp);
1304}
1305
1306/*
1307 * isp_enable_clocks - Enable ISP clocks
1308 * @isp: OMAP3 ISP device
1309 *
Laurent Pinchartb057c3c2012-10-25 06:29:24 -03001310 * Return 0 if successful, or clk_prepare_enable return value if any of them
1311 * fails.
Sakari Ailus448de7e2011-02-12 18:05:06 -03001312 */
1313static int isp_enable_clocks(struct isp_device *isp)
1314{
1315 int r;
1316 unsigned long rate;
Sakari Ailus448de7e2011-02-12 18:05:06 -03001317
Laurent Pinchartb057c3c2012-10-25 06:29:24 -03001318 r = clk_prepare_enable(isp->clock[ISP_CLK_CAM_ICK]);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001319 if (r) {
Laurent Pinchartb057c3c2012-10-25 06:29:24 -03001320 dev_err(isp->dev, "failed to enable cam_ick clock\n");
Sakari Ailus448de7e2011-02-12 18:05:06 -03001321 goto out_clk_enable_ick;
1322 }
Laurent Pinchart6d1aa022012-11-10 12:06:25 +01001323 r = clk_set_rate(isp->clock[ISP_CLK_CAM_MCLK], CM_CAM_MCLK_HZ);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001324 if (r) {
Laurent Pinchart6d1aa022012-11-10 12:06:25 +01001325 dev_err(isp->dev, "clk_set_rate for cam_mclk failed\n");
Sakari Ailus448de7e2011-02-12 18:05:06 -03001326 goto out_clk_enable_mclk;
1327 }
Laurent Pinchartb057c3c2012-10-25 06:29:24 -03001328 r = clk_prepare_enable(isp->clock[ISP_CLK_CAM_MCLK]);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001329 if (r) {
Laurent Pinchartb057c3c2012-10-25 06:29:24 -03001330 dev_err(isp->dev, "failed to enable cam_mclk clock\n");
Sakari Ailus448de7e2011-02-12 18:05:06 -03001331 goto out_clk_enable_mclk;
1332 }
1333 rate = clk_get_rate(isp->clock[ISP_CLK_CAM_MCLK]);
1334 if (rate != CM_CAM_MCLK_HZ)
1335 dev_warn(isp->dev, "unexpected cam_mclk rate:\n"
1336 " expected : %d\n"
1337 " actual : %ld\n", CM_CAM_MCLK_HZ, rate);
Laurent Pinchartb057c3c2012-10-25 06:29:24 -03001338 r = clk_prepare_enable(isp->clock[ISP_CLK_CSI2_FCK]);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001339 if (r) {
Laurent Pinchartb057c3c2012-10-25 06:29:24 -03001340 dev_err(isp->dev, "failed to enable csi2_fck clock\n");
Sakari Ailus448de7e2011-02-12 18:05:06 -03001341 goto out_clk_enable_csi2_fclk;
1342 }
1343 return 0;
1344
1345out_clk_enable_csi2_fclk:
Laurent Pinchartb057c3c2012-10-25 06:29:24 -03001346 clk_disable_unprepare(isp->clock[ISP_CLK_CAM_MCLK]);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001347out_clk_enable_mclk:
Laurent Pinchartb057c3c2012-10-25 06:29:24 -03001348 clk_disable_unprepare(isp->clock[ISP_CLK_CAM_ICK]);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001349out_clk_enable_ick:
1350 return r;
1351}
1352
1353/*
1354 * isp_disable_clocks - Disable ISP clocks
1355 * @isp: OMAP3 ISP device
1356 */
1357static void isp_disable_clocks(struct isp_device *isp)
1358{
Laurent Pinchartb057c3c2012-10-25 06:29:24 -03001359 clk_disable_unprepare(isp->clock[ISP_CLK_CAM_ICK]);
1360 clk_disable_unprepare(isp->clock[ISP_CLK_CAM_MCLK]);
1361 clk_disable_unprepare(isp->clock[ISP_CLK_CSI2_FCK]);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001362}
1363
1364static const char *isp_clocks[] = {
1365 "cam_ick",
1366 "cam_mclk",
Sakari Ailus448de7e2011-02-12 18:05:06 -03001367 "csi2_96m_fck",
1368 "l3_ick",
1369};
1370
Sakari Ailus448de7e2011-02-12 18:05:06 -03001371static int isp_get_clocks(struct isp_device *isp)
1372{
1373 struct clk *clk;
1374 unsigned int i;
1375
1376 for (i = 0; i < ARRAY_SIZE(isp_clocks); ++i) {
Laurent Pinchartcf2b4cf2012-12-25 17:27:31 -03001377 clk = devm_clk_get(isp->dev, isp_clocks[i]);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001378 if (IS_ERR(clk)) {
1379 dev_err(isp->dev, "clk_get %s failed\n", isp_clocks[i]);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001380 return PTR_ERR(clk);
1381 }
1382
1383 isp->clock[i] = clk;
1384 }
1385
1386 return 0;
1387}
1388
1389/*
1390 * omap3isp_get - Acquire the ISP resource.
1391 *
1392 * Initializes the clocks for the first acquire.
1393 *
1394 * Increment the reference count on the ISP. If the first reference is taken,
1395 * enable clocks and power-up all submodules.
1396 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001397 * Return a pointer to the ISP device structure, or NULL if an error occurred.
Sakari Ailus448de7e2011-02-12 18:05:06 -03001398 */
Laurent Pinchart96d62ae2012-05-25 09:33:00 -03001399static struct isp_device *__omap3isp_get(struct isp_device *isp, bool irq)
Sakari Ailus448de7e2011-02-12 18:05:06 -03001400{
1401 struct isp_device *__isp = isp;
1402
1403 if (isp == NULL)
1404 return NULL;
1405
1406 mutex_lock(&isp->isp_mutex);
1407 if (isp->ref_count > 0)
1408 goto out;
1409
1410 if (isp_enable_clocks(isp) < 0) {
1411 __isp = NULL;
1412 goto out;
1413 }
1414
1415 /* We don't want to restore context before saving it! */
1416 if (isp->has_context)
1417 isp_restore_ctx(isp);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001418
Laurent Pinchart96d62ae2012-05-25 09:33:00 -03001419 if (irq)
1420 isp_enable_interrupts(isp);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001421
1422out:
1423 if (__isp != NULL)
1424 isp->ref_count++;
1425 mutex_unlock(&isp->isp_mutex);
1426
1427 return __isp;
1428}
1429
Laurent Pinchart96d62ae2012-05-25 09:33:00 -03001430struct isp_device *omap3isp_get(struct isp_device *isp)
1431{
1432 return __omap3isp_get(isp, true);
1433}
1434
Sakari Ailus448de7e2011-02-12 18:05:06 -03001435/*
1436 * omap3isp_put - Release the ISP
1437 *
1438 * Decrement the reference count on the ISP. If the last reference is released,
1439 * power-down all submodules, disable clocks and free temporary buffers.
1440 */
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03001441static void __omap3isp_put(struct isp_device *isp, bool save_ctx)
Sakari Ailus448de7e2011-02-12 18:05:06 -03001442{
1443 if (isp == NULL)
1444 return;
1445
1446 mutex_lock(&isp->isp_mutex);
1447 BUG_ON(isp->ref_count == 0);
1448 if (--isp->ref_count == 0) {
1449 isp_disable_interrupts(isp);
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03001450 if (save_ctx) {
Sakari Ailusa32f2f92012-01-27 07:18:51 -03001451 isp_save_ctx(isp);
Laurent Pinchart96d62ae2012-05-25 09:33:00 -03001452 isp->has_context = 1;
1453 }
Laurent Pinchart1567bb72011-11-18 11:28:24 -03001454 /* Reset the ISP if an entity has failed to stop. This is the
1455 * only way to recover from such conditions.
1456 */
Sakari Ailus17d3d402015-12-16 11:32:30 -02001457 if (!media_entity_enum_empty(&isp->crashed) ||
1458 isp->stop_failure)
Laurent Pinchart994d5372011-03-01 13:43:07 -03001459 isp_reset(isp);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001460 isp_disable_clocks(isp);
1461 }
1462 mutex_unlock(&isp->isp_mutex);
1463}
1464
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03001465void omap3isp_put(struct isp_device *isp)
1466{
1467 __omap3isp_put(isp, true);
1468}
1469
Sakari Ailus448de7e2011-02-12 18:05:06 -03001470/* --------------------------------------------------------------------------
1471 * Platform device driver
1472 */
1473
1474/*
1475 * omap3isp_print_status - Prints the values of the ISP Control Module registers
1476 * @isp: OMAP3 ISP device
1477 */
1478#define ISP_PRINT_REGISTER(isp, name)\
1479 dev_dbg(isp->dev, "###ISP " #name "=0x%08x\n", \
1480 isp_reg_readl(isp, OMAP3_ISP_IOMEM_MAIN, ISP_##name))
1481#define SBL_PRINT_REGISTER(isp, name)\
1482 dev_dbg(isp->dev, "###SBL " #name "=0x%08x\n", \
1483 isp_reg_readl(isp, OMAP3_ISP_IOMEM_SBL, ISPSBL_##name))
1484
1485void omap3isp_print_status(struct isp_device *isp)
1486{
1487 dev_dbg(isp->dev, "-------------ISP Register dump--------------\n");
1488
1489 ISP_PRINT_REGISTER(isp, SYSCONFIG);
1490 ISP_PRINT_REGISTER(isp, SYSSTATUS);
1491 ISP_PRINT_REGISTER(isp, IRQ0ENABLE);
1492 ISP_PRINT_REGISTER(isp, IRQ0STATUS);
1493 ISP_PRINT_REGISTER(isp, TCTRL_GRESET_LENGTH);
1494 ISP_PRINT_REGISTER(isp, TCTRL_PSTRB_REPLAY);
1495 ISP_PRINT_REGISTER(isp, CTRL);
1496 ISP_PRINT_REGISTER(isp, TCTRL_CTRL);
1497 ISP_PRINT_REGISTER(isp, TCTRL_FRAME);
1498 ISP_PRINT_REGISTER(isp, TCTRL_PSTRB_DELAY);
1499 ISP_PRINT_REGISTER(isp, TCTRL_STRB_DELAY);
1500 ISP_PRINT_REGISTER(isp, TCTRL_SHUT_DELAY);
1501 ISP_PRINT_REGISTER(isp, TCTRL_PSTRB_LENGTH);
1502 ISP_PRINT_REGISTER(isp, TCTRL_STRB_LENGTH);
1503 ISP_PRINT_REGISTER(isp, TCTRL_SHUT_LENGTH);
1504
1505 SBL_PRINT_REGISTER(isp, PCR);
1506 SBL_PRINT_REGISTER(isp, SDR_REQ_EXP);
1507
1508 dev_dbg(isp->dev, "--------------------------------------------\n");
1509}
1510
1511#ifdef CONFIG_PM
1512
1513/*
1514 * Power management support.
1515 *
1516 * As the ISP can't properly handle an input video stream interruption on a non
1517 * frame boundary, the ISP pipelines need to be stopped before sensors get
1518 * suspended. However, as suspending the sensors can require a running clock,
1519 * which can be provided by the ISP, the ISP can't be completely suspended
1520 * before the sensor.
1521 *
1522 * To solve this problem power management support is split into prepare/complete
1523 * and suspend/resume operations. The pipelines are stopped in prepare() and the
1524 * ISP clocks get disabled in suspend(). Similarly, the clocks are reenabled in
1525 * resume(), and the the pipelines are restarted in complete().
1526 *
Jonathan McCrohan39c1cb22013-10-20 21:34:01 -03001527 * TODO: PM dependencies between the ISP and sensors are not modelled explicitly
Sakari Ailus448de7e2011-02-12 18:05:06 -03001528 * yet.
1529 */
1530static int isp_pm_prepare(struct device *dev)
1531{
1532 struct isp_device *isp = dev_get_drvdata(dev);
1533 int reset;
1534
1535 WARN_ON(mutex_is_locked(&isp->isp_mutex));
1536
1537 if (isp->ref_count == 0)
1538 return 0;
1539
1540 reset = isp_suspend_modules(isp);
1541 isp_disable_interrupts(isp);
1542 isp_save_ctx(isp);
1543 if (reset)
1544 isp_reset(isp);
1545
1546 return 0;
1547}
1548
1549static int isp_pm_suspend(struct device *dev)
1550{
1551 struct isp_device *isp = dev_get_drvdata(dev);
1552
1553 WARN_ON(mutex_is_locked(&isp->isp_mutex));
1554
1555 if (isp->ref_count)
1556 isp_disable_clocks(isp);
1557
1558 return 0;
1559}
1560
1561static int isp_pm_resume(struct device *dev)
1562{
1563 struct isp_device *isp = dev_get_drvdata(dev);
1564
1565 if (isp->ref_count == 0)
1566 return 0;
1567
1568 return isp_enable_clocks(isp);
1569}
1570
1571static void isp_pm_complete(struct device *dev)
1572{
1573 struct isp_device *isp = dev_get_drvdata(dev);
1574
1575 if (isp->ref_count == 0)
1576 return;
1577
1578 isp_restore_ctx(isp);
1579 isp_enable_interrupts(isp);
1580 isp_resume_modules(isp);
1581}
1582
1583#else
1584
1585#define isp_pm_prepare NULL
1586#define isp_pm_suspend NULL
1587#define isp_pm_resume NULL
1588#define isp_pm_complete NULL
1589
1590#endif /* CONFIG_PM */
1591
1592static void isp_unregister_entities(struct isp_device *isp)
1593{
1594 omap3isp_csi2_unregister_entities(&isp->isp_csi2a);
1595 omap3isp_ccp2_unregister_entities(&isp->isp_ccp2);
1596 omap3isp_ccdc_unregister_entities(&isp->isp_ccdc);
1597 omap3isp_preview_unregister_entities(&isp->isp_prev);
1598 omap3isp_resizer_unregister_entities(&isp->isp_res);
1599 omap3isp_stat_unregister_entities(&isp->isp_aewb);
1600 omap3isp_stat_unregister_entities(&isp->isp_af);
1601 omap3isp_stat_unregister_entities(&isp->isp_hist);
1602
1603 v4l2_device_unregister(&isp->v4l2_dev);
1604 media_device_unregister(&isp->media_dev);
Javier Martinez Canillas9832e152015-12-11 20:57:08 -02001605 media_device_cleanup(&isp->media_dev);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001606}
1607
Sakari Ailus703e6f62015-03-25 19:57:27 -03001608static int isp_link_entity(
1609 struct isp_device *isp, struct media_entity *entity,
1610 enum isp_interface_type interface)
1611{
1612 struct media_entity *input;
1613 unsigned int flags;
1614 unsigned int pad;
1615 unsigned int i;
1616
1617 /* Connect the sensor to the correct interface module.
1618 * Parallel sensors are connected directly to the CCDC, while
1619 * serial sensors are connected to the CSI2a, CCP2b or CSI2c
1620 * receiver through CSIPHY1 or CSIPHY2.
1621 */
1622 switch (interface) {
1623 case ISP_INTERFACE_PARALLEL:
1624 input = &isp->isp_ccdc.subdev.entity;
1625 pad = CCDC_PAD_SINK;
1626 flags = 0;
1627 break;
1628
1629 case ISP_INTERFACE_CSI2A_PHY2:
1630 input = &isp->isp_csi2a.subdev.entity;
1631 pad = CSI2_PAD_SINK;
1632 flags = MEDIA_LNK_FL_IMMUTABLE | MEDIA_LNK_FL_ENABLED;
1633 break;
1634
1635 case ISP_INTERFACE_CCP2B_PHY1:
1636 case ISP_INTERFACE_CCP2B_PHY2:
1637 input = &isp->isp_ccp2.subdev.entity;
1638 pad = CCP2_PAD_SINK;
1639 flags = 0;
1640 break;
1641
1642 case ISP_INTERFACE_CSI2C_PHY1:
1643 input = &isp->isp_csi2c.subdev.entity;
1644 pad = CSI2_PAD_SINK;
1645 flags = MEDIA_LNK_FL_IMMUTABLE | MEDIA_LNK_FL_ENABLED;
1646 break;
1647
1648 default:
1649 dev_err(isp->dev, "%s: invalid interface type %u\n", __func__,
1650 interface);
1651 return -EINVAL;
1652 }
1653
1654 /*
1655 * Not all interfaces are available on all revisions of the
1656 * ISP. The sub-devices of those interfaces aren't initialised
1657 * in such a case. Check this by ensuring the num_pads is
1658 * non-zero.
1659 */
1660 if (!input->num_pads) {
1661 dev_err(isp->dev, "%s: invalid input %u\n", entity->name,
1662 interface);
1663 return -EINVAL;
1664 }
1665
1666 for (i = 0; i < entity->num_pads; i++) {
1667 if (entity->pads[i].flags & MEDIA_PAD_FL_SOURCE)
1668 break;
1669 }
1670 if (i == entity->num_pads) {
1671 dev_err(isp->dev, "%s: no source pad in external entity\n",
1672 __func__);
1673 return -EINVAL;
1674 }
1675
Mauro Carvalho Chehab8df00a12015-08-07 08:14:38 -03001676 return media_create_pad_link(entity, i, input, pad, flags);
Sakari Ailus703e6f62015-03-25 19:57:27 -03001677}
1678
Sakari Ailus448de7e2011-02-12 18:05:06 -03001679static int isp_register_entities(struct isp_device *isp)
1680{
Sakari Ailus448de7e2011-02-12 18:05:06 -03001681 int ret;
1682
1683 isp->media_dev.dev = isp->dev;
1684 strlcpy(isp->media_dev.model, "TI OMAP3 ISP",
1685 sizeof(isp->media_dev.model));
Laurent Pinchart083eb072011-10-11 06:34:40 -03001686 isp->media_dev.hw_revision = isp->revision;
Laurent Pinchart68429f52015-11-03 00:27:51 -02001687 isp->media_dev.ops = &isp_media_ops;
Javier Martinez Canillas9832e152015-12-11 20:57:08 -02001688 media_device_init(&isp->media_dev);
Sakari Ailus448de7e2011-02-12 18:05:06 -03001689
1690 isp->v4l2_dev.mdev = &isp->media_dev;
1691 ret = v4l2_device_register(isp->dev, &isp->v4l2_dev);
1692 if (ret < 0) {
Laurent Pinchart4feca392012-10-22 08:28:51 -03001693 dev_err(isp->dev, "%s: V4L2 device registration failed (%d)\n",
Sakari Ailus448de7e2011-02-12 18:05:06 -03001694 __func__, ret);
1695 goto done;
1696 }
1697
1698 /* Register internal entities */
1699 ret = omap3isp_ccp2_register_entities(&isp->isp_ccp2, &isp->v4l2_dev);
1700 if (ret < 0)
1701 goto done;
1702
1703 ret = omap3isp_csi2_register_entities(&isp->isp_csi2a, &isp->v4l2_dev);
1704 if (ret < 0)
1705 goto done;
1706
1707 ret = omap3isp_ccdc_register_entities(&isp->isp_ccdc, &isp->v4l2_dev);
1708 if (ret < 0)
1709 goto done;
1710
1711 ret = omap3isp_preview_register_entities(&isp->isp_prev,
1712 &isp->v4l2_dev);
1713 if (ret < 0)
1714 goto done;
1715
1716 ret = omap3isp_resizer_register_entities(&isp->isp_res, &isp->v4l2_dev);
1717 if (ret < 0)
1718 goto done;
1719
1720 ret = omap3isp_stat_register_entities(&isp->isp_aewb, &isp->v4l2_dev);
1721 if (ret < 0)
1722 goto done;
1723
1724 ret = omap3isp_stat_register_entities(&isp->isp_af, &isp->v4l2_dev);
1725 if (ret < 0)
1726 goto done;
1727
1728 ret = omap3isp_stat_register_entities(&isp->isp_hist, &isp->v4l2_dev);
1729 if (ret < 0)
1730 goto done;
1731
Sakari Ailus448de7e2011-02-12 18:05:06 -03001732done:
Sakari Ailus5d479382015-05-19 20:08:05 -03001733 if (ret < 0)
Sakari Ailus448de7e2011-02-12 18:05:06 -03001734 isp_unregister_entities(isp);
1735
1736 return ret;
1737}
1738
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001739/*
Javier Martinez Canillasb285d5a2015-12-11 15:16:28 -02001740 * isp_create_links() - Create links for internal and external ISP entities
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001741 * @isp : Pointer to ISP device
Javier Martinez Canillasb285d5a2015-12-11 15:16:28 -02001742 *
1743 * This function creates all links between ISP internal and external entities.
1744 *
1745 * Return: A negative error code on failure or zero on success. Possible error
1746 * codes are those returned by media_create_pad_link().
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001747 */
Javier Martinez Canillasb285d5a2015-12-11 15:16:28 -02001748static int isp_create_links(struct isp_device *isp)
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001749{
1750 int ret;
1751
Javier Martinez Canillasb5f6df02015-12-11 15:16:27 -02001752 /* Create links between entities and video nodes. */
1753 ret = media_create_pad_link(
1754 &isp->isp_csi2a.subdev.entity, CSI2_PAD_SOURCE,
1755 &isp->isp_csi2a.video_out.video.entity, 0, 0);
1756 if (ret < 0)
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001757 return ret;
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001758
Javier Martinez Canillasb5f6df02015-12-11 15:16:27 -02001759 ret = media_create_pad_link(
1760 &isp->isp_ccp2.video_in.video.entity, 0,
1761 &isp->isp_ccp2.subdev.entity, CCP2_PAD_SINK, 0);
1762 if (ret < 0)
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001763 return ret;
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001764
Javier Martinez Canillasb5f6df02015-12-11 15:16:27 -02001765 ret = media_create_pad_link(
1766 &isp->isp_ccdc.subdev.entity, CCDC_PAD_SOURCE_OF,
1767 &isp->isp_ccdc.video_out.video.entity, 0, 0);
1768 if (ret < 0)
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001769 return ret;
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001770
Javier Martinez Canillasb5f6df02015-12-11 15:16:27 -02001771 ret = media_create_pad_link(
1772 &isp->isp_prev.video_in.video.entity, 0,
1773 &isp->isp_prev.subdev.entity, PREV_PAD_SINK, 0);
1774 if (ret < 0)
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001775 return ret;
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001776
Javier Martinez Canillasb5f6df02015-12-11 15:16:27 -02001777 ret = media_create_pad_link(
1778 &isp->isp_prev.subdev.entity, PREV_PAD_SOURCE,
1779 &isp->isp_prev.video_out.video.entity, 0, 0);
1780 if (ret < 0)
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001781 return ret;
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001782
Javier Martinez Canillasb5f6df02015-12-11 15:16:27 -02001783 ret = media_create_pad_link(
1784 &isp->isp_res.video_in.video.entity, 0,
1785 &isp->isp_res.subdev.entity, RESZ_PAD_SINK, 0);
1786 if (ret < 0)
1787 return ret;
1788
1789 ret = media_create_pad_link(
1790 &isp->isp_res.subdev.entity, RESZ_PAD_SOURCE,
1791 &isp->isp_res.video_out.video.entity, 0, 0);
1792
1793 if (ret < 0)
1794 return ret;
1795
1796 /* Create links between entities. */
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03001797 ret = media_create_pad_link(
1798 &isp->isp_csi2a.subdev.entity, CSI2_PAD_SOURCE,
1799 &isp->isp_ccdc.subdev.entity, CCDC_PAD_SINK, 0);
1800 if (ret < 0)
1801 return ret;
1802
1803 ret = media_create_pad_link(
1804 &isp->isp_ccp2.subdev.entity, CCP2_PAD_SOURCE,
1805 &isp->isp_ccdc.subdev.entity, CCDC_PAD_SINK, 0);
1806 if (ret < 0)
1807 return ret;
1808
1809 ret = media_create_pad_link(
1810 &isp->isp_ccdc.subdev.entity, CCDC_PAD_SOURCE_VP,
1811 &isp->isp_prev.subdev.entity, PREV_PAD_SINK, 0);
1812 if (ret < 0)
1813 return ret;
1814
1815 ret = media_create_pad_link(
1816 &isp->isp_ccdc.subdev.entity, CCDC_PAD_SOURCE_OF,
1817 &isp->isp_res.subdev.entity, RESZ_PAD_SINK, 0);
1818 if (ret < 0)
1819 return ret;
1820
1821 ret = media_create_pad_link(
1822 &isp->isp_prev.subdev.entity, PREV_PAD_SOURCE,
1823 &isp->isp_res.subdev.entity, RESZ_PAD_SINK, 0);
1824 if (ret < 0)
1825 return ret;
1826
1827 ret = media_create_pad_link(
1828 &isp->isp_ccdc.subdev.entity, CCDC_PAD_SOURCE_VP,
1829 &isp->isp_aewb.subdev.entity, 0,
1830 MEDIA_LNK_FL_ENABLED | MEDIA_LNK_FL_IMMUTABLE);
1831 if (ret < 0)
1832 return ret;
1833
1834 ret = media_create_pad_link(
1835 &isp->isp_ccdc.subdev.entity, CCDC_PAD_SOURCE_VP,
1836 &isp->isp_af.subdev.entity, 0,
1837 MEDIA_LNK_FL_ENABLED | MEDIA_LNK_FL_IMMUTABLE);
1838 if (ret < 0)
1839 return ret;
1840
1841 ret = media_create_pad_link(
1842 &isp->isp_ccdc.subdev.entity, CCDC_PAD_SOURCE_VP,
1843 &isp->isp_hist.subdev.entity, 0,
1844 MEDIA_LNK_FL_ENABLED | MEDIA_LNK_FL_IMMUTABLE);
1845 if (ret < 0)
1846 return ret;
1847
1848 return 0;
1849}
1850
Sakari Ailus448de7e2011-02-12 18:05:06 -03001851static void isp_cleanup_modules(struct isp_device *isp)
1852{
1853 omap3isp_h3a_aewb_cleanup(isp);
1854 omap3isp_h3a_af_cleanup(isp);
1855 omap3isp_hist_cleanup(isp);
1856 omap3isp_resizer_cleanup(isp);
1857 omap3isp_preview_cleanup(isp);
1858 omap3isp_ccdc_cleanup(isp);
1859 omap3isp_ccp2_cleanup(isp);
1860 omap3isp_csi2_cleanup(isp);
1861}
1862
1863static int isp_initialize_modules(struct isp_device *isp)
1864{
1865 int ret;
1866
1867 ret = omap3isp_csiphy_init(isp);
1868 if (ret < 0) {
1869 dev_err(isp->dev, "CSI PHY initialization failed\n");
1870 goto error_csiphy;
1871 }
1872
1873 ret = omap3isp_csi2_init(isp);
1874 if (ret < 0) {
1875 dev_err(isp->dev, "CSI2 initialization failed\n");
1876 goto error_csi2;
1877 }
1878
1879 ret = omap3isp_ccp2_init(isp);
1880 if (ret < 0) {
1881 dev_err(isp->dev, "CCP2 initialization failed\n");
1882 goto error_ccp2;
1883 }
1884
1885 ret = omap3isp_ccdc_init(isp);
1886 if (ret < 0) {
1887 dev_err(isp->dev, "CCDC initialization failed\n");
1888 goto error_ccdc;
1889 }
1890
1891 ret = omap3isp_preview_init(isp);
1892 if (ret < 0) {
1893 dev_err(isp->dev, "Preview initialization failed\n");
1894 goto error_preview;
1895 }
1896
1897 ret = omap3isp_resizer_init(isp);
1898 if (ret < 0) {
1899 dev_err(isp->dev, "Resizer initialization failed\n");
1900 goto error_resizer;
1901 }
1902
1903 ret = omap3isp_hist_init(isp);
1904 if (ret < 0) {
1905 dev_err(isp->dev, "Histogram initialization failed\n");
1906 goto error_hist;
1907 }
1908
1909 ret = omap3isp_h3a_aewb_init(isp);
1910 if (ret < 0) {
1911 dev_err(isp->dev, "H3A AEWB initialization failed\n");
1912 goto error_h3a_aewb;
1913 }
1914
1915 ret = omap3isp_h3a_af_init(isp);
1916 if (ret < 0) {
1917 dev_err(isp->dev, "H3A AF initialization failed\n");
1918 goto error_h3a_af;
1919 }
1920
Sakari Ailus448de7e2011-02-12 18:05:06 -03001921 return 0;
1922
Sakari Ailus448de7e2011-02-12 18:05:06 -03001923error_h3a_af:
1924 omap3isp_h3a_aewb_cleanup(isp);
1925error_h3a_aewb:
1926 omap3isp_hist_cleanup(isp);
1927error_hist:
1928 omap3isp_resizer_cleanup(isp);
1929error_resizer:
1930 omap3isp_preview_cleanup(isp);
1931error_preview:
1932 omap3isp_ccdc_cleanup(isp);
1933error_ccdc:
1934 omap3isp_ccp2_cleanup(isp);
1935error_ccp2:
1936 omap3isp_csi2_cleanup(isp);
1937error_csi2:
1938error_csiphy:
1939 return ret;
1940}
1941
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03001942static void isp_detach_iommu(struct isp_device *isp)
1943{
Suman Anna8fcb8b52018-03-14 11:41:36 -04001944 arm_iommu_detach_device(isp->dev);
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03001945 arm_iommu_release_mapping(isp->mapping);
1946 isp->mapping = NULL;
1947 iommu_group_remove_device(isp->dev);
1948}
1949
1950static int isp_attach_iommu(struct isp_device *isp)
1951{
1952 struct dma_iommu_mapping *mapping;
1953 struct iommu_group *group;
1954 int ret;
1955
1956 /* Create a device group and add the device to it. */
1957 group = iommu_group_alloc();
1958 if (IS_ERR(group)) {
1959 dev_err(isp->dev, "failed to allocate IOMMU group\n");
1960 return PTR_ERR(group);
1961 }
1962
1963 ret = iommu_group_add_device(group, isp->dev);
1964 iommu_group_put(group);
1965
1966 if (ret < 0) {
1967 dev_err(isp->dev, "failed to add device to IPMMU group\n");
1968 return ret;
1969 }
1970
1971 /*
1972 * Create the ARM mapping, used by the ARM DMA mapping core to allocate
1973 * VAs. This will allocate a corresponding IOMMU domain.
1974 */
1975 mapping = arm_iommu_create_mapping(&platform_bus_type, SZ_1G, SZ_2G);
1976 if (IS_ERR(mapping)) {
1977 dev_err(isp->dev, "failed to create ARM IOMMU mapping\n");
Suman Anna8fcb8b52018-03-14 11:41:36 -04001978 return PTR_ERR(mapping);
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03001979 }
1980
1981 isp->mapping = mapping;
1982
1983 /* Attach the ARM VA mapping to the device. */
1984 ret = arm_iommu_attach_device(isp->dev, mapping);
1985 if (ret < 0) {
1986 dev_err(isp->dev, "failed to attach device to VA mapping\n");
1987 goto error;
1988 }
1989
1990 return 0;
1991
1992error:
Suman Anna8fcb8b52018-03-14 11:41:36 -04001993 arm_iommu_release_mapping(isp->mapping);
1994 isp->mapping = NULL;
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03001995 return ret;
1996}
1997
Sakari Ailus448de7e2011-02-12 18:05:06 -03001998/*
1999 * isp_remove - Remove ISP platform device
2000 * @pdev: Pointer to ISP platform device
2001 *
2002 * Always returns 0.
2003 */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002004static int isp_remove(struct platform_device *pdev)
Sakari Ailus448de7e2011-02-12 18:05:06 -03002005{
2006 struct isp_device *isp = platform_get_drvdata(pdev);
Sakari Ailus448de7e2011-02-12 18:05:06 -03002007
Sakari Ailusda7f3842015-03-25 19:57:38 -03002008 v4l2_async_notifier_unregister(&isp->notifier);
Sakari Ailus448de7e2011-02-12 18:05:06 -03002009 isp_unregister_entities(isp);
2010 isp_cleanup_modules(isp);
Laurent Pinchart9b28ee32012-10-22 10:43:00 -03002011 isp_xclk_cleanup(isp);
Sakari Ailus448de7e2011-02-12 18:05:06 -03002012
Laurent Pinchart96d62ae2012-05-25 09:33:00 -03002013 __omap3isp_get(isp, false);
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03002014 isp_detach_iommu(isp);
2015 __omap3isp_put(isp, false);
Sakari Ailus448de7e2011-02-12 18:05:06 -03002016
Sakari Ailus17d3d402015-12-16 11:32:30 -02002017 media_entity_enum_cleanup(&isp->crashed);
2018
Sakari Ailus448de7e2011-02-12 18:05:06 -03002019 return 0;
2020}
2021
Sakari Ailusda7f3842015-03-25 19:57:38 -03002022enum isp_of_phy {
2023 ISP_OF_PHY_PARALLEL = 0,
2024 ISP_OF_PHY_CSIPHY1,
2025 ISP_OF_PHY_CSIPHY2,
2026};
2027
2028static int isp_of_parse_node(struct device *dev, struct device_node *node,
2029 struct isp_async_subdev *isd)
2030{
2031 struct isp_bus_cfg *buscfg = &isd->bus;
2032 struct v4l2_of_endpoint vep;
2033 unsigned int i;
Javier Martinez Canillasc517b352016-01-11 14:47:16 -02002034 int ret;
Sakari Ailusda7f3842015-03-25 19:57:38 -03002035
Javier Martinez Canillasc517b352016-01-11 14:47:16 -02002036 ret = v4l2_of_parse_endpoint(node, &vep);
2037 if (ret)
2038 return ret;
Sakari Ailusda7f3842015-03-25 19:57:38 -03002039
2040 dev_dbg(dev, "parsing endpoint %s, interface %u\n", node->full_name,
2041 vep.base.port);
2042
2043 switch (vep.base.port) {
2044 case ISP_OF_PHY_PARALLEL:
2045 buscfg->interface = ISP_INTERFACE_PARALLEL;
2046 buscfg->bus.parallel.data_lane_shift =
2047 vep.bus.parallel.data_shift;
2048 buscfg->bus.parallel.clk_pol =
2049 !!(vep.bus.parallel.flags
2050 & V4L2_MBUS_PCLK_SAMPLE_FALLING);
2051 buscfg->bus.parallel.hs_pol =
2052 !!(vep.bus.parallel.flags & V4L2_MBUS_VSYNC_ACTIVE_LOW);
2053 buscfg->bus.parallel.vs_pol =
2054 !!(vep.bus.parallel.flags & V4L2_MBUS_HSYNC_ACTIVE_LOW);
2055 buscfg->bus.parallel.fld_pol =
2056 !!(vep.bus.parallel.flags & V4L2_MBUS_FIELD_EVEN_LOW);
2057 buscfg->bus.parallel.data_pol =
2058 !!(vep.bus.parallel.flags & V4L2_MBUS_DATA_ACTIVE_LOW);
2059 break;
2060
2061 case ISP_OF_PHY_CSIPHY1:
2062 case ISP_OF_PHY_CSIPHY2:
2063 /* FIXME: always assume CSI-2 for now. */
2064 switch (vep.base.port) {
2065 case ISP_OF_PHY_CSIPHY1:
2066 buscfg->interface = ISP_INTERFACE_CSI2C_PHY1;
2067 break;
2068 case ISP_OF_PHY_CSIPHY2:
2069 buscfg->interface = ISP_INTERFACE_CSI2A_PHY2;
2070 break;
2071 }
2072 buscfg->bus.csi2.lanecfg.clk.pos = vep.bus.mipi_csi2.clock_lane;
2073 buscfg->bus.csi2.lanecfg.clk.pol =
2074 vep.bus.mipi_csi2.lane_polarities[0];
2075 dev_dbg(dev, "clock lane polarity %u, pos %u\n",
2076 buscfg->bus.csi2.lanecfg.clk.pol,
2077 buscfg->bus.csi2.lanecfg.clk.pos);
2078
2079 for (i = 0; i < ISP_CSIPHY2_NUM_DATA_LANES; i++) {
2080 buscfg->bus.csi2.lanecfg.data[i].pos =
2081 vep.bus.mipi_csi2.data_lanes[i];
2082 buscfg->bus.csi2.lanecfg.data[i].pol =
2083 vep.bus.mipi_csi2.lane_polarities[i + 1];
2084 dev_dbg(dev, "data lane %u polarity %u, pos %u\n", i,
2085 buscfg->bus.csi2.lanecfg.data[i].pol,
2086 buscfg->bus.csi2.lanecfg.data[i].pos);
2087 }
2088
2089 /*
2090 * FIXME: now we assume the CRC is always there.
2091 * Implement a way to obtain this information from the
2092 * sensor. Frame descriptors, perhaps?
2093 */
2094 buscfg->bus.csi2.crc = 1;
2095 break;
2096
2097 default:
2098 dev_warn(dev, "%s: invalid interface %u\n", node->full_name,
2099 vep.base.port);
2100 break;
2101 }
2102
2103 return 0;
2104}
2105
2106static int isp_of_parse_nodes(struct device *dev,
2107 struct v4l2_async_notifier *notifier)
2108{
2109 struct device_node *node = NULL;
2110
2111 notifier->subdevs = devm_kcalloc(
2112 dev, ISP_MAX_SUBDEVS, sizeof(*notifier->subdevs), GFP_KERNEL);
2113 if (!notifier->subdevs)
2114 return -ENOMEM;
2115
2116 while (notifier->num_subdevs < ISP_MAX_SUBDEVS &&
2117 (node = of_graph_get_next_endpoint(dev->of_node, node))) {
2118 struct isp_async_subdev *isd;
2119
2120 isd = devm_kzalloc(dev, sizeof(*isd), GFP_KERNEL);
2121 if (!isd) {
2122 of_node_put(node);
2123 return -ENOMEM;
2124 }
2125
2126 notifier->subdevs[notifier->num_subdevs] = &isd->asd;
2127
2128 if (isp_of_parse_node(dev, node, isd)) {
2129 of_node_put(node);
2130 return -EINVAL;
2131 }
2132
2133 isd->asd.match.of.node = of_graph_get_remote_port_parent(node);
2134 of_node_put(node);
2135 if (!isd->asd.match.of.node) {
2136 dev_warn(dev, "bad remote port parent\n");
2137 return -EINVAL;
2138 }
2139
2140 isd->asd.match_type = V4L2_ASYNC_MATCH_OF;
2141 notifier->num_subdevs++;
2142 }
2143
2144 return notifier->num_subdevs;
2145}
2146
2147static int isp_subdev_notifier_bound(struct v4l2_async_notifier *async,
2148 struct v4l2_subdev *subdev,
2149 struct v4l2_async_subdev *asd)
2150{
Sakari Ailusda7f3842015-03-25 19:57:38 -03002151 struct isp_async_subdev *isd =
2152 container_of(asd, struct isp_async_subdev, asd);
Sakari Ailusda7f3842015-03-25 19:57:38 -03002153
2154 isd->sd = subdev;
2155 isd->sd->host_priv = &isd->bus;
2156
Javier Martinez Canillas68a57fa2015-08-28 06:28:33 -03002157 return 0;
Sakari Ailusda7f3842015-03-25 19:57:38 -03002158}
2159
2160static int isp_subdev_notifier_complete(struct v4l2_async_notifier *async)
2161{
2162 struct isp_device *isp = container_of(async, struct isp_device,
2163 notifier);
Javier Martinez Canillas68a57fa2015-08-28 06:28:33 -03002164 struct v4l2_device *v4l2_dev = &isp->v4l2_dev;
2165 struct v4l2_subdev *sd;
2166 struct isp_bus_cfg *bus;
2167 int ret;
2168
Sakari Ailus17d3d402015-12-16 11:32:30 -02002169 ret = media_entity_enum_init(&isp->crashed, &isp->media_dev);
2170 if (ret)
2171 return ret;
2172
Javier Martinez Canillas68a57fa2015-08-28 06:28:33 -03002173 list_for_each_entry(sd, &v4l2_dev->subdevs, list) {
2174 /* Only try to link entities whose interface was set on bound */
2175 if (sd->host_priv) {
2176 bus = (struct isp_bus_cfg *)sd->host_priv;
2177 ret = isp_link_entity(isp, &sd->entity, bus->interface);
2178 if (ret < 0)
2179 return ret;
2180 }
2181 }
Sakari Ailusda7f3842015-03-25 19:57:38 -03002182
Javier Martinez Canillas9832e152015-12-11 20:57:08 -02002183 ret = v4l2_device_register_subdev_nodes(&isp->v4l2_dev);
2184 if (ret < 0)
2185 return ret;
2186
2187 return media_device_register(&isp->media_dev);
Sakari Ailusda7f3842015-03-25 19:57:38 -03002188}
2189
Sakari Ailus448de7e2011-02-12 18:05:06 -03002190/*
2191 * isp_probe - Probe ISP platform device
2192 * @pdev: Pointer to ISP platform device
2193 *
2194 * Returns 0 if successful,
2195 * -ENOMEM if no memory available,
2196 * -ENODEV if no platform device resources found
2197 * or no space for remapping registers,
2198 * -EINVAL if couldn't install ISR,
2199 * or clk_get return error value.
2200 */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002201static int isp_probe(struct platform_device *pdev)
Sakari Ailus448de7e2011-02-12 18:05:06 -03002202{
Sakari Ailus448de7e2011-02-12 18:05:06 -03002203 struct isp_device *isp;
Sakari Ailus8644cdf2015-03-25 19:57:35 -03002204 struct resource *mem;
Sakari Ailus448de7e2011-02-12 18:05:06 -03002205 int ret;
2206 int i, m;
2207
Laurent Pinchartcf2b4cf2012-12-25 17:27:31 -03002208 isp = devm_kzalloc(&pdev->dev, sizeof(*isp), GFP_KERNEL);
Sakari Ailus448de7e2011-02-12 18:05:06 -03002209 if (!isp) {
2210 dev_err(&pdev->dev, "could not allocate memory\n");
2211 return -ENOMEM;
2212 }
2213
Laurent Pinchart78c66fb2015-05-20 04:08:30 -03002214 ret = of_property_read_u32(pdev->dev.of_node, "ti,phy-type",
2215 &isp->phy_type);
2216 if (ret)
2217 return ret;
Sakari Ailusda7f3842015-03-25 19:57:38 -03002218
Laurent Pinchart78c66fb2015-05-20 04:08:30 -03002219 isp->syscon = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
2220 "syscon");
2221 if (IS_ERR(isp->syscon))
2222 return PTR_ERR(isp->syscon);
Sakari Ailusda7f3842015-03-25 19:57:38 -03002223
Laurent Pinchart78c66fb2015-05-20 04:08:30 -03002224 ret = of_property_read_u32_index(pdev->dev.of_node, "syscon", 1,
2225 &isp->syscon_offset);
2226 if (ret)
2227 return ret;
Sakari Ailusda7f3842015-03-25 19:57:38 -03002228
Laurent Pinchart78c66fb2015-05-20 04:08:30 -03002229 ret = isp_of_parse_nodes(&pdev->dev, &isp->notifier);
2230 if (ret < 0)
2231 return ret;
Sakari Ailusda7f3842015-03-25 19:57:38 -03002232
Sakari Ailus448de7e2011-02-12 18:05:06 -03002233 isp->autoidle = autoidle;
Sakari Ailus448de7e2011-02-12 18:05:06 -03002234
2235 mutex_init(&isp->isp_mutex);
2236 spin_lock_init(&isp->stat_lock);
2237
2238 isp->dev = &pdev->dev;
Sakari Ailus448de7e2011-02-12 18:05:06 -03002239 isp->ref_count = 0;
2240
Russell King224ddca2013-06-27 14:09:01 +01002241 ret = dma_coerce_mask_and_coherent(isp->dev, DMA_BIT_MASK(32));
2242 if (ret)
Sakari Ailus697cca22015-03-25 19:57:25 -03002243 goto error;
Sakari Ailus448de7e2011-02-12 18:05:06 -03002244
2245 platform_set_drvdata(pdev, isp);
2246
2247 /* Regulators */
Sakari Ailus3494bb02015-03-25 19:57:31 -03002248 isp->isp_csiphy1.vdd = devm_regulator_get(&pdev->dev, "vdd-csiphy1");
2249 isp->isp_csiphy2.vdd = devm_regulator_get(&pdev->dev, "vdd-csiphy2");
Sakari Ailus448de7e2011-02-12 18:05:06 -03002250
Laurent Pinchartd8658bc2012-09-27 10:38:18 -03002251 /* Clocks
2252 *
2253 * The ISP clock tree is revision-dependent. We thus need to enable ICLK
2254 * manually to read the revision before calling __omap3isp_get().
Sakari Ailus8644cdf2015-03-25 19:57:35 -03002255 *
2256 * Start by mapping the ISP MMIO area, which is in two pieces.
2257 * The ISP IOMMU is in between. Map both now, and fill in the
2258 * ISP revision specific portions a little later in the
2259 * function.
Laurent Pinchartd8658bc2012-09-27 10:38:18 -03002260 */
Sakari Ailus8644cdf2015-03-25 19:57:35 -03002261 for (i = 0; i < 2; i++) {
2262 unsigned int map_idx = i ? OMAP3_ISP_IOMEM_CSI2A_REGS1 : 0;
2263
2264 mem = platform_get_resource(pdev, IORESOURCE_MEM, i);
2265 isp->mmio_base[map_idx] =
2266 devm_ioremap_resource(isp->dev, mem);
2267 if (IS_ERR(isp->mmio_base[map_idx]))
2268 return PTR_ERR(isp->mmio_base[map_idx]);
2269 }
Sakari Ailus448de7e2011-02-12 18:05:06 -03002270
2271 ret = isp_get_clocks(isp);
2272 if (ret < 0)
2273 goto error;
2274
Laurent Pinchartd8658bc2012-09-27 10:38:18 -03002275 ret = clk_enable(isp->clock[ISP_CLK_CAM_ICK]);
2276 if (ret < 0)
2277 goto error;
2278
2279 isp->revision = isp_reg_readl(isp, OMAP3_ISP_IOMEM_MAIN, ISP_REVISION);
2280 dev_info(isp->dev, "Revision %d.%d found\n",
2281 (isp->revision & 0xf0) >> 4, isp->revision & 0x0f);
2282
2283 clk_disable(isp->clock[ISP_CLK_CAM_ICK]);
2284
Peter Senna Tschudin0bd0dbe2012-09-04 13:14:25 -03002285 if (__omap3isp_get(isp, false) == NULL) {
2286 ret = -ENODEV;
Sakari Ailus448de7e2011-02-12 18:05:06 -03002287 goto error;
Peter Senna Tschudin0bd0dbe2012-09-04 13:14:25 -03002288 }
Sakari Ailus448de7e2011-02-12 18:05:06 -03002289
2290 ret = isp_reset(isp);
2291 if (ret < 0)
2292 goto error_isp;
2293
Laurent Pinchart9b28ee32012-10-22 10:43:00 -03002294 ret = isp_xclk_init(isp);
2295 if (ret < 0)
2296 goto error_isp;
2297
Sakari Ailus448de7e2011-02-12 18:05:06 -03002298 /* Memory resources */
Sakari Ailus448de7e2011-02-12 18:05:06 -03002299 for (m = 0; m < ARRAY_SIZE(isp_res_maps); m++)
2300 if (isp->revision == isp_res_maps[m].isp_rev)
2301 break;
2302
2303 if (m == ARRAY_SIZE(isp_res_maps)) {
2304 dev_err(isp->dev, "No resource map found for ISP rev %d.%d\n",
2305 (isp->revision & 0xf0) >> 4, isp->revision & 0xf);
2306 ret = -ENODEV;
2307 goto error_isp;
2308 }
2309
Sakari Ailus8644cdf2015-03-25 19:57:35 -03002310 for (i = 1; i < OMAP3_ISP_IOMEM_CSI2A_REGS1; i++)
2311 isp->mmio_base[i] =
2312 isp->mmio_base[0] + isp_res_maps[m].offset[i];
2313
2314 for (i = OMAP3_ISP_IOMEM_CSIPHY2; i < OMAP3_ISP_IOMEM_LAST; i++)
2315 isp->mmio_base[i] =
2316 isp->mmio_base[OMAP3_ISP_IOMEM_CSI2A_REGS1]
2317 + isp_res_maps[m].offset[i];
2318
2319 isp->mmio_hist_base_phys =
2320 mem->start + isp_res_maps[m].offset[OMAP3_ISP_IOMEM_HIST];
Sakari Ailus448de7e2011-02-12 18:05:06 -03002321
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03002322 /* IOMMU */
2323 ret = isp_attach_iommu(isp);
2324 if (ret < 0) {
2325 dev_err(&pdev->dev, "unable to attach to IOMMU\n");
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03002326 goto error_isp;
2327 }
2328
Sakari Ailus448de7e2011-02-12 18:05:06 -03002329 /* Interrupt */
Andrzej Hajda514580f2015-09-24 11:00:12 -03002330 ret = platform_get_irq(pdev, 0);
2331 if (ret <= 0) {
Sakari Ailus448de7e2011-02-12 18:05:06 -03002332 dev_err(isp->dev, "No IRQ resource\n");
2333 ret = -ENODEV;
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03002334 goto error_iommu;
Sakari Ailus448de7e2011-02-12 18:05:06 -03002335 }
Andrzej Hajda514580f2015-09-24 11:00:12 -03002336 isp->irq_num = ret;
Sakari Ailus448de7e2011-02-12 18:05:06 -03002337
Laurent Pinchartcf2b4cf2012-12-25 17:27:31 -03002338 if (devm_request_irq(isp->dev, isp->irq_num, isp_isr, IRQF_SHARED,
2339 "OMAP3 ISP", isp)) {
Sakari Ailus448de7e2011-02-12 18:05:06 -03002340 dev_err(isp->dev, "Unable to request IRQ\n");
2341 ret = -EINVAL;
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03002342 goto error_iommu;
Sakari Ailus448de7e2011-02-12 18:05:06 -03002343 }
2344
2345 /* Entities */
2346 ret = isp_initialize_modules(isp);
2347 if (ret < 0)
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03002348 goto error_iommu;
Sakari Ailus448de7e2011-02-12 18:05:06 -03002349
2350 ret = isp_register_entities(isp);
2351 if (ret < 0)
2352 goto error_modules;
2353
Javier Martinez Canillasb285d5a2015-12-11 15:16:28 -02002354 ret = isp_create_links(isp);
Javier Martinez Canillasf2f6da02015-08-26 09:24:45 -03002355 if (ret < 0)
2356 goto error_register_entities;
2357
Laurent Pinchart78c66fb2015-05-20 04:08:30 -03002358 isp->notifier.bound = isp_subdev_notifier_bound;
2359 isp->notifier.complete = isp_subdev_notifier_complete;
Sakari Ailus5d479382015-05-19 20:08:05 -03002360
Laurent Pinchart78c66fb2015-05-20 04:08:30 -03002361 ret = v4l2_async_notifier_register(&isp->v4l2_dev, &isp->notifier);
2362 if (ret)
2363 goto error_register_entities;
Sakari Ailus5d479382015-05-19 20:08:05 -03002364
Laurent Pinchart96d62ae2012-05-25 09:33:00 -03002365 isp_core_init(isp, 1);
Sakari Ailus448de7e2011-02-12 18:05:06 -03002366 omap3isp_put(isp);
2367
2368 return 0;
2369
Sakari Ailus5d479382015-05-19 20:08:05 -03002370error_register_entities:
2371 isp_unregister_entities(isp);
Sakari Ailus448de7e2011-02-12 18:05:06 -03002372error_modules:
2373 isp_cleanup_modules(isp);
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03002374error_iommu:
2375 isp_detach_iommu(isp);
Sakari Ailus448de7e2011-02-12 18:05:06 -03002376error_isp:
Laurent Pinchart9b28ee32012-10-22 10:43:00 -03002377 isp_xclk_cleanup(isp);
Laurent Pinchart2a0a5472014-01-02 20:06:08 -03002378 __omap3isp_put(isp, false);
Sakari Ailus448de7e2011-02-12 18:05:06 -03002379error:
Laurent Pincharted33ac82011-09-22 17:09:26 -03002380 mutex_destroy(&isp->isp_mutex);
Sakari Ailus448de7e2011-02-12 18:05:06 -03002381
2382 return ret;
2383}
2384
2385static const struct dev_pm_ops omap3isp_pm_ops = {
2386 .prepare = isp_pm_prepare,
2387 .suspend = isp_pm_suspend,
2388 .resume = isp_pm_resume,
2389 .complete = isp_pm_complete,
2390};
2391
2392static struct platform_device_id omap3isp_id_table[] = {
2393 { "omap3isp", 0 },
2394 { },
2395};
2396MODULE_DEVICE_TABLE(platform, omap3isp_id_table);
2397
Sakari Ailusda7f3842015-03-25 19:57:38 -03002398static const struct of_device_id omap3isp_of_table[] = {
2399 { .compatible = "ti,omap3-isp" },
2400 { },
2401};
Javier Martinez Canillas8163ec22015-09-16 20:31:38 -03002402MODULE_DEVICE_TABLE(of, omap3isp_of_table);
Sakari Ailusda7f3842015-03-25 19:57:38 -03002403
Sakari Ailus448de7e2011-02-12 18:05:06 -03002404static struct platform_driver omap3isp_driver = {
2405 .probe = isp_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08002406 .remove = isp_remove,
Sakari Ailus448de7e2011-02-12 18:05:06 -03002407 .id_table = omap3isp_id_table,
2408 .driver = {
Sakari Ailus448de7e2011-02-12 18:05:06 -03002409 .name = "omap3isp",
2410 .pm = &omap3isp_pm_ops,
Sakari Ailusda7f3842015-03-25 19:57:38 -03002411 .of_match_table = omap3isp_of_table,
Sakari Ailus448de7e2011-02-12 18:05:06 -03002412 },
2413};
2414
Axel Lin1d6629b2012-01-10 03:21:49 -03002415module_platform_driver(omap3isp_driver);
Sakari Ailus448de7e2011-02-12 18:05:06 -03002416
2417MODULE_AUTHOR("Nokia Corporation");
2418MODULE_DESCRIPTION("TI OMAP3 ISP driver");
2419MODULE_LICENSE("GPL");
Mauro Carvalho Chehab64dc3c12011-06-25 11:28:37 -03002420MODULE_VERSION(ISP_VIDEO_DRIVER_VERSION);