4 * TI OMAP3 ISP - CSI PHY module
6 * Copyright (C) 2010 Nokia Corporation
7 * Copyright (C) 2009 Texas Instruments, Inc.
9 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10 * Sakari Ailus <sakari.ailus@iki.fi>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
27 #include <linux/delay.h>
28 #include <linux/device.h>
29 #include <linux/regulator/consumer.h>
33 #include "ispcsiphy.h"
35 static void csiphy_routing_cfg_3630(struct isp_csiphy
*phy
,
36 enum isp_interface_type iface
,
39 u32 reg
= isp_reg_readl(
40 phy
->isp
, OMAP3_ISP_IOMEM_3630_CONTROL_CAMERA_PHY_CTRL
, 0);
45 /* Should not happen in practice, but let's keep the compiler happy. */
46 case ISP_INTERFACE_CCP2B_PHY1
:
47 reg
&= ~OMAP3630_CONTROL_CAMERA_PHY_CTRL_CSI1_RX_SEL_PHY2
;
48 shift
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_PHY1_SHIFT
;
50 case ISP_INTERFACE_CSI2C_PHY1
:
51 shift
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_PHY1_SHIFT
;
52 mode
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_DPHY
;
54 case ISP_INTERFACE_CCP2B_PHY2
:
55 reg
|= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CSI1_RX_SEL_PHY2
;
56 shift
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_PHY2_SHIFT
;
58 case ISP_INTERFACE_CSI2A_PHY2
:
59 shift
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_PHY2_SHIFT
;
60 mode
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_DPHY
;
64 /* Select data/clock or data/strobe mode for CCP2 */
65 if (iface
== ISP_INTERFACE_CCP2B_PHY1
||
66 iface
== ISP_INTERFACE_CCP2B_PHY2
) {
68 mode
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_CCP2_DATA_STROBE
;
70 mode
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_CCP2_DATA_CLOCK
;
73 reg
&= ~(OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_MASK
<< shift
);
76 isp_reg_writel(phy
->isp
, reg
,
77 OMAP3_ISP_IOMEM_3630_CONTROL_CAMERA_PHY_CTRL
, 0);
80 static void csiphy_routing_cfg_3430(struct isp_csiphy
*phy
, u32 iface
, bool on
,
83 u32 csirxfe
= OMAP343X_CONTROL_CSIRXFE_PWRDNZ
84 | OMAP343X_CONTROL_CSIRXFE_RESET
;
86 /* Only the CCP2B on PHY1 is configurable. */
87 if (iface
!= ISP_INTERFACE_CCP2B_PHY1
)
91 isp_reg_writel(phy
->isp
, 0,
92 OMAP3_ISP_IOMEM_343X_CONTROL_CSIRXFE
, 0);
97 csirxfe
|= OMAP343X_CONTROL_CSIRXFE_SELFORM
;
99 isp_reg_writel(phy
->isp
, csirxfe
,
100 OMAP3_ISP_IOMEM_343X_CONTROL_CSIRXFE
, 0);
104 * Configure OMAP 3 CSI PHY routing.
105 * @phy: relevant phy device
106 * @iface: ISP_INTERFACE_*
107 * @on: power on or off
108 * @ccp2_strobe: false: data/clock, true: data/strobe
110 * Note that the underlying routing configuration registers are part of the
111 * control (SCM) register space and part of the CORE power domain on both 3430
112 * and 3630, so they will not hold their contents in off-mode. This isn't an
113 * issue since the MPU power domain is forced on whilst the ISP is in use.
115 static void csiphy_routing_cfg(struct isp_csiphy
*phy
,
116 enum isp_interface_type iface
, bool on
,
119 if (phy
->isp
->mmio_base
[OMAP3_ISP_IOMEM_3630_CONTROL_CAMERA_PHY_CTRL
]
121 return csiphy_routing_cfg_3630(phy
, iface
, ccp2_strobe
);
122 if (phy
->isp
->mmio_base
[OMAP3_ISP_IOMEM_343X_CONTROL_CSIRXFE
])
123 return csiphy_routing_cfg_3430(phy
, iface
, on
, ccp2_strobe
);
127 * csiphy_power_autoswitch_enable
128 * @enable: Sets or clears the autoswitch function enable flag.
130 static void csiphy_power_autoswitch_enable(struct isp_csiphy
*phy
, bool enable
)
132 isp_reg_clr_set(phy
->isp
, phy
->cfg_regs
, ISPCSI2_PHY_CFG
,
133 ISPCSI2_PHY_CFG_PWR_AUTO
,
134 enable
? ISPCSI2_PHY_CFG_PWR_AUTO
: 0);
139 * @power: Power state to be set.
141 * Returns 0 if successful, or -EBUSY if the retry count is exceeded.
143 static int csiphy_set_power(struct isp_csiphy
*phy
, u32 power
)
148 isp_reg_clr_set(phy
->isp
, phy
->cfg_regs
, ISPCSI2_PHY_CFG
,
149 ISPCSI2_PHY_CFG_PWR_CMD_MASK
, power
);
154 reg
= isp_reg_readl(phy
->isp
, phy
->cfg_regs
, ISPCSI2_PHY_CFG
) &
155 ISPCSI2_PHY_CFG_PWR_STATUS_MASK
;
157 if (reg
!= power
>> 2)
160 } while ((reg
!= power
>> 2) && (retry_count
< 100));
162 if (retry_count
== 100) {
163 dev_err(phy
->isp
->dev
, "CSI2 CIO set power failed!\n");
171 * TCLK values are OK at their reset values
175 #define TCLK_SETTLE 14
177 static int omap3isp_csiphy_config(struct isp_csiphy
*phy
)
179 struct isp_csi2_device
*csi2
= phy
->csi2
;
180 struct isp_pipeline
*pipe
= to_isp_pipeline(&csi2
->subdev
.entity
);
181 struct isp_v4l2_subdevs_group
*subdevs
= pipe
->external
->host_priv
;
182 struct isp_csiphy_lanes_cfg
*lanes
;
184 unsigned int used_lanes
= 0;
188 if (subdevs
->interface
== ISP_INTERFACE_CCP2B_PHY1
189 || subdevs
->interface
== ISP_INTERFACE_CCP2B_PHY2
)
190 lanes
= &subdevs
->bus
.ccp2
.lanecfg
;
192 lanes
= &subdevs
->bus
.csi2
.lanecfg
;
194 /* Clock and data lanes verification */
195 for (i
= 0; i
< phy
->num_data_lanes
; i
++) {
196 if (lanes
->data
[i
].pol
> 1 || lanes
->data
[i
].pos
> 3)
199 if (used_lanes
& (1 << lanes
->data
[i
].pos
))
202 used_lanes
|= 1 << lanes
->data
[i
].pos
;
205 if (lanes
->clk
.pol
> 1 || lanes
->clk
.pos
> 3)
208 if (lanes
->clk
.pos
== 0 || used_lanes
& (1 << lanes
->clk
.pos
))
212 * The PHY configuration is lost in off mode, that's not an
213 * issue since the MPU power domain is forced on whilst the
216 csiphy_routing_cfg(phy
, subdevs
->interface
, true,
217 subdevs
->bus
.ccp2
.phy_layer
);
219 /* DPHY timing configuration */
220 /* CSI-2 is DDR and we only count used lanes. */
221 csi2_ddrclk_khz
= pipe
->external_rate
/ 1000
222 / (2 * hweight32(used_lanes
)) * pipe
->external_width
;
224 reg
= isp_reg_readl(csi2
->isp
, phy
->phy_regs
, ISPCSIPHY_REG0
);
226 reg
&= ~(ISPCSIPHY_REG0_THS_TERM_MASK
|
227 ISPCSIPHY_REG0_THS_SETTLE_MASK
);
228 /* THS_TERM: Programmed value = ceil(12.5 ns/DDRClk period) - 1. */
229 reg
|= (DIV_ROUND_UP(25 * csi2_ddrclk_khz
, 2000000) - 1)
230 << ISPCSIPHY_REG0_THS_TERM_SHIFT
;
231 /* THS_SETTLE: Programmed value = ceil(90 ns/DDRClk period) + 3. */
232 reg
|= (DIV_ROUND_UP(90 * csi2_ddrclk_khz
, 1000000) + 3)
233 << ISPCSIPHY_REG0_THS_SETTLE_SHIFT
;
235 isp_reg_writel(csi2
->isp
, reg
, phy
->phy_regs
, ISPCSIPHY_REG0
);
237 reg
= isp_reg_readl(csi2
->isp
, phy
->phy_regs
, ISPCSIPHY_REG1
);
239 reg
&= ~(ISPCSIPHY_REG1_TCLK_TERM_MASK
|
240 ISPCSIPHY_REG1_TCLK_MISS_MASK
|
241 ISPCSIPHY_REG1_TCLK_SETTLE_MASK
);
242 reg
|= TCLK_TERM
<< ISPCSIPHY_REG1_TCLK_TERM_SHIFT
;
243 reg
|= TCLK_MISS
<< ISPCSIPHY_REG1_TCLK_MISS_SHIFT
;
244 reg
|= TCLK_SETTLE
<< ISPCSIPHY_REG1_TCLK_SETTLE_SHIFT
;
246 isp_reg_writel(csi2
->isp
, reg
, phy
->phy_regs
, ISPCSIPHY_REG1
);
248 /* DPHY lane configuration */
249 reg
= isp_reg_readl(csi2
->isp
, phy
->cfg_regs
, ISPCSI2_PHY_CFG
);
251 for (i
= 0; i
< phy
->num_data_lanes
; i
++) {
252 reg
&= ~(ISPCSI2_PHY_CFG_DATA_POL_MASK(i
+ 1) |
253 ISPCSI2_PHY_CFG_DATA_POSITION_MASK(i
+ 1));
254 reg
|= (lanes
->data
[i
].pol
<<
255 ISPCSI2_PHY_CFG_DATA_POL_SHIFT(i
+ 1));
256 reg
|= (lanes
->data
[i
].pos
<<
257 ISPCSI2_PHY_CFG_DATA_POSITION_SHIFT(i
+ 1));
260 reg
&= ~(ISPCSI2_PHY_CFG_CLOCK_POL_MASK
|
261 ISPCSI2_PHY_CFG_CLOCK_POSITION_MASK
);
262 reg
|= lanes
->clk
.pol
<< ISPCSI2_PHY_CFG_CLOCK_POL_SHIFT
;
263 reg
|= lanes
->clk
.pos
<< ISPCSI2_PHY_CFG_CLOCK_POSITION_SHIFT
;
265 isp_reg_writel(csi2
->isp
, reg
, phy
->cfg_regs
, ISPCSI2_PHY_CFG
);
270 int omap3isp_csiphy_acquire(struct isp_csiphy
*phy
)
274 if (phy
->vdd
== NULL
) {
275 dev_err(phy
->isp
->dev
, "Power regulator for CSI PHY not "
280 mutex_lock(&phy
->mutex
);
282 rval
= regulator_enable(phy
->vdd
);
286 rval
= omap3isp_csi2_reset(phy
->csi2
);
290 rval
= omap3isp_csiphy_config(phy
);
294 rval
= csiphy_set_power(phy
, ISPCSI2_PHY_CFG_PWR_CMD_ON
);
296 regulator_disable(phy
->vdd
);
300 csiphy_power_autoswitch_enable(phy
, true);
304 mutex_unlock(&phy
->mutex
);
308 void omap3isp_csiphy_release(struct isp_csiphy
*phy
)
310 mutex_lock(&phy
->mutex
);
311 if (phy
->phy_in_use
) {
312 struct isp_csi2_device
*csi2
= phy
->csi2
;
313 struct isp_pipeline
*pipe
=
314 to_isp_pipeline(&csi2
->subdev
.entity
);
315 struct isp_v4l2_subdevs_group
*subdevs
=
316 pipe
->external
->host_priv
;
318 csiphy_routing_cfg(phy
, subdevs
->interface
, false,
319 subdevs
->bus
.ccp2
.phy_layer
);
320 csiphy_power_autoswitch_enable(phy
, false);
321 csiphy_set_power(phy
, ISPCSI2_PHY_CFG_PWR_CMD_OFF
);
322 regulator_disable(phy
->vdd
);
325 mutex_unlock(&phy
->mutex
);
329 * omap3isp_csiphy_init - Initialize the CSI PHY frontends
331 int omap3isp_csiphy_init(struct isp_device
*isp
)
333 struct isp_csiphy
*phy1
= &isp
->isp_csiphy1
;
334 struct isp_csiphy
*phy2
= &isp
->isp_csiphy2
;
337 phy2
->csi2
= &isp
->isp_csi2a
;
338 phy2
->num_data_lanes
= ISP_CSIPHY2_NUM_DATA_LANES
;
339 phy2
->cfg_regs
= OMAP3_ISP_IOMEM_CSI2A_REGS1
;
340 phy2
->phy_regs
= OMAP3_ISP_IOMEM_CSIPHY2
;
341 mutex_init(&phy2
->mutex
);
343 if (isp
->revision
== ISP_REVISION_15_0
) {
345 phy1
->csi2
= &isp
->isp_csi2c
;
346 phy1
->num_data_lanes
= ISP_CSIPHY1_NUM_DATA_LANES
;
347 phy1
->cfg_regs
= OMAP3_ISP_IOMEM_CSI2C_REGS1
;
348 phy1
->phy_regs
= OMAP3_ISP_IOMEM_CSIPHY1
;
349 mutex_init(&phy1
->mutex
);