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.
17 #include <linux/delay.h>
18 #include <linux/device.h>
19 #include <linux/regmap.h>
20 #include <linux/regulator/consumer.h>
24 #include "ispcsiphy.h"
26 static void csiphy_routing_cfg_3630(struct isp_csiphy
*phy
,
27 enum isp_interface_type iface
,
33 regmap_read(phy
->isp
->syscon
, phy
->isp
->syscon_offset
, ®
);
37 /* Should not happen in practice, but let's keep the compiler happy. */
38 case ISP_INTERFACE_CCP2B_PHY1
:
39 reg
&= ~OMAP3630_CONTROL_CAMERA_PHY_CTRL_CSI1_RX_SEL_PHY2
;
40 shift
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_PHY1_SHIFT
;
42 case ISP_INTERFACE_CSI2C_PHY1
:
43 shift
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_PHY1_SHIFT
;
44 mode
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_DPHY
;
46 case ISP_INTERFACE_CCP2B_PHY2
:
47 reg
|= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CSI1_RX_SEL_PHY2
;
48 shift
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_PHY2_SHIFT
;
50 case ISP_INTERFACE_CSI2A_PHY2
:
51 shift
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_PHY2_SHIFT
;
52 mode
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_DPHY
;
56 /* Select data/clock or data/strobe mode for CCP2 */
57 if (iface
== ISP_INTERFACE_CCP2B_PHY1
||
58 iface
== ISP_INTERFACE_CCP2B_PHY2
) {
60 mode
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_CCP2_DATA_STROBE
;
62 mode
= OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_CCP2_DATA_CLOCK
;
65 reg
&= ~(OMAP3630_CONTROL_CAMERA_PHY_CTRL_CAMMODE_MASK
<< shift
);
68 regmap_write(phy
->isp
->syscon
, phy
->isp
->syscon_offset
, reg
);
71 static void csiphy_routing_cfg_3430(struct isp_csiphy
*phy
, u32 iface
, bool on
,
74 u32 csirxfe
= OMAP343X_CONTROL_CSIRXFE_PWRDNZ
75 | OMAP343X_CONTROL_CSIRXFE_RESET
;
77 /* Only the CCP2B on PHY1 is configurable. */
78 if (iface
!= ISP_INTERFACE_CCP2B_PHY1
)
82 regmap_write(phy
->isp
->syscon
, phy
->isp
->syscon_offset
, 0);
87 csirxfe
|= OMAP343X_CONTROL_CSIRXFE_SELFORM
;
89 regmap_write(phy
->isp
->syscon
, phy
->isp
->syscon_offset
, csirxfe
);
93 * Configure OMAP 3 CSI PHY routing.
94 * @phy: relevant phy device
95 * @iface: ISP_INTERFACE_*
96 * @on: power on or off
97 * @ccp2_strobe: false: data/clock, true: data/strobe
99 * Note that the underlying routing configuration registers are part of the
100 * control (SCM) register space and part of the CORE power domain on both 3430
101 * and 3630, so they will not hold their contents in off-mode. This isn't an
102 * issue since the MPU power domain is forced on whilst the ISP is in use.
104 static void csiphy_routing_cfg(struct isp_csiphy
*phy
,
105 enum isp_interface_type iface
, bool on
,
108 if (phy
->isp
->phy_type
== ISP_PHY_TYPE_3630
&& on
)
109 return csiphy_routing_cfg_3630(phy
, iface
, ccp2_strobe
);
110 if (phy
->isp
->phy_type
== ISP_PHY_TYPE_3430
)
111 return csiphy_routing_cfg_3430(phy
, iface
, on
, ccp2_strobe
);
115 * csiphy_power_autoswitch_enable
116 * @enable: Sets or clears the autoswitch function enable flag.
118 static void csiphy_power_autoswitch_enable(struct isp_csiphy
*phy
, bool enable
)
120 isp_reg_clr_set(phy
->isp
, phy
->cfg_regs
, ISPCSI2_PHY_CFG
,
121 ISPCSI2_PHY_CFG_PWR_AUTO
,
122 enable
? ISPCSI2_PHY_CFG_PWR_AUTO
: 0);
127 * @power: Power state to be set.
129 * Returns 0 if successful, or -EBUSY if the retry count is exceeded.
131 static int csiphy_set_power(struct isp_csiphy
*phy
, u32 power
)
136 isp_reg_clr_set(phy
->isp
, phy
->cfg_regs
, ISPCSI2_PHY_CFG
,
137 ISPCSI2_PHY_CFG_PWR_CMD_MASK
, power
);
142 reg
= isp_reg_readl(phy
->isp
, phy
->cfg_regs
, ISPCSI2_PHY_CFG
) &
143 ISPCSI2_PHY_CFG_PWR_STATUS_MASK
;
145 if (reg
!= power
>> 2)
148 } while ((reg
!= power
>> 2) && (retry_count
< 100));
150 if (retry_count
== 100) {
151 dev_err(phy
->isp
->dev
, "CSI2 CIO set power failed!\n");
159 * TCLK values are OK at their reset values
163 #define TCLK_SETTLE 14
165 static int omap3isp_csiphy_config(struct isp_csiphy
*phy
)
167 struct isp_pipeline
*pipe
= to_isp_pipeline(phy
->entity
);
168 struct isp_bus_cfg
*buscfg
= v4l2_subdev_to_bus_cfg(pipe
->external
);
169 struct isp_csiphy_lanes_cfg
*lanes
;
171 unsigned int num_data_lanes
, used_lanes
= 0;
175 if (buscfg
->interface
== ISP_INTERFACE_CCP2B_PHY1
176 || buscfg
->interface
== ISP_INTERFACE_CCP2B_PHY2
) {
177 lanes
= &buscfg
->bus
.ccp2
.lanecfg
;
180 lanes
= &buscfg
->bus
.csi2
.lanecfg
;
181 num_data_lanes
= buscfg
->bus
.csi2
.num_data_lanes
;
184 if (num_data_lanes
> phy
->num_data_lanes
)
187 /* Clock and data lanes verification */
188 for (i
= 0; i
< num_data_lanes
; i
++) {
189 if (lanes
->data
[i
].pol
> 1 || lanes
->data
[i
].pos
> 3)
192 if (used_lanes
& (1 << lanes
->data
[i
].pos
))
195 used_lanes
|= 1 << lanes
->data
[i
].pos
;
198 if (lanes
->clk
.pol
> 1 || lanes
->clk
.pos
> 3)
201 if (lanes
->clk
.pos
== 0 || used_lanes
& (1 << lanes
->clk
.pos
))
205 * The PHY configuration is lost in off mode, that's not an
206 * issue since the MPU power domain is forced on whilst the
209 csiphy_routing_cfg(phy
, buscfg
->interface
, true,
210 buscfg
->bus
.ccp2
.phy_layer
);
212 /* DPHY timing configuration */
213 /* CSI-2 is DDR and we only count used lanes. */
214 csi2_ddrclk_khz
= pipe
->external_rate
/ 1000
215 / (2 * hweight32(used_lanes
)) * pipe
->external_width
;
217 reg
= isp_reg_readl(phy
->isp
, phy
->phy_regs
, ISPCSIPHY_REG0
);
219 reg
&= ~(ISPCSIPHY_REG0_THS_TERM_MASK
|
220 ISPCSIPHY_REG0_THS_SETTLE_MASK
);
221 /* THS_TERM: Programmed value = ceil(12.5 ns/DDRClk period) - 1. */
222 reg
|= (DIV_ROUND_UP(25 * csi2_ddrclk_khz
, 2000000) - 1)
223 << ISPCSIPHY_REG0_THS_TERM_SHIFT
;
224 /* THS_SETTLE: Programmed value = ceil(90 ns/DDRClk period) + 3. */
225 reg
|= (DIV_ROUND_UP(90 * csi2_ddrclk_khz
, 1000000) + 3)
226 << ISPCSIPHY_REG0_THS_SETTLE_SHIFT
;
228 isp_reg_writel(phy
->isp
, reg
, phy
->phy_regs
, ISPCSIPHY_REG0
);
230 reg
= isp_reg_readl(phy
->isp
, phy
->phy_regs
, ISPCSIPHY_REG1
);
232 reg
&= ~(ISPCSIPHY_REG1_TCLK_TERM_MASK
|
233 ISPCSIPHY_REG1_TCLK_MISS_MASK
|
234 ISPCSIPHY_REG1_TCLK_SETTLE_MASK
);
235 reg
|= TCLK_TERM
<< ISPCSIPHY_REG1_TCLK_TERM_SHIFT
;
236 reg
|= TCLK_MISS
<< ISPCSIPHY_REG1_TCLK_MISS_SHIFT
;
237 reg
|= TCLK_SETTLE
<< ISPCSIPHY_REG1_TCLK_SETTLE_SHIFT
;
239 isp_reg_writel(phy
->isp
, reg
, phy
->phy_regs
, ISPCSIPHY_REG1
);
241 /* DPHY lane configuration */
242 reg
= isp_reg_readl(phy
->isp
, phy
->cfg_regs
, ISPCSI2_PHY_CFG
);
244 for (i
= 0; i
< num_data_lanes
; i
++) {
245 reg
&= ~(ISPCSI2_PHY_CFG_DATA_POL_MASK(i
+ 1) |
246 ISPCSI2_PHY_CFG_DATA_POSITION_MASK(i
+ 1));
247 reg
|= (lanes
->data
[i
].pol
<<
248 ISPCSI2_PHY_CFG_DATA_POL_SHIFT(i
+ 1));
249 reg
|= (lanes
->data
[i
].pos
<<
250 ISPCSI2_PHY_CFG_DATA_POSITION_SHIFT(i
+ 1));
253 reg
&= ~(ISPCSI2_PHY_CFG_CLOCK_POL_MASK
|
254 ISPCSI2_PHY_CFG_CLOCK_POSITION_MASK
);
255 reg
|= lanes
->clk
.pol
<< ISPCSI2_PHY_CFG_CLOCK_POL_SHIFT
;
256 reg
|= lanes
->clk
.pos
<< ISPCSI2_PHY_CFG_CLOCK_POSITION_SHIFT
;
258 isp_reg_writel(phy
->isp
, reg
, phy
->cfg_regs
, ISPCSI2_PHY_CFG
);
263 int omap3isp_csiphy_acquire(struct isp_csiphy
*phy
, struct media_entity
*entity
)
267 if (phy
->vdd
== NULL
) {
268 dev_err(phy
->isp
->dev
,
269 "Power regulator for CSI PHY not available\n");
273 mutex_lock(&phy
->mutex
);
275 rval
= regulator_enable(phy
->vdd
);
279 rval
= omap3isp_csi2_reset(phy
->csi2
);
283 phy
->entity
= entity
;
285 rval
= omap3isp_csiphy_config(phy
);
289 if (phy
->isp
->revision
== ISP_REVISION_15_0
) {
290 rval
= csiphy_set_power(phy
, ISPCSI2_PHY_CFG_PWR_CMD_ON
);
292 regulator_disable(phy
->vdd
);
296 csiphy_power_autoswitch_enable(phy
, true);
302 mutex_unlock(&phy
->mutex
);
306 void omap3isp_csiphy_release(struct isp_csiphy
*phy
)
308 mutex_lock(&phy
->mutex
);
310 struct isp_pipeline
*pipe
= to_isp_pipeline(phy
->entity
);
311 struct isp_bus_cfg
*buscfg
=
312 v4l2_subdev_to_bus_cfg(pipe
->external
);
314 csiphy_routing_cfg(phy
, buscfg
->interface
, false,
315 buscfg
->bus
.ccp2
.phy_layer
);
316 if (phy
->isp
->revision
== ISP_REVISION_15_0
) {
317 csiphy_power_autoswitch_enable(phy
, false);
318 csiphy_set_power(phy
, ISPCSI2_PHY_CFG_PWR_CMD_OFF
);
320 regulator_disable(phy
->vdd
);
323 mutex_unlock(&phy
->mutex
);
327 * omap3isp_csiphy_init - Initialize the CSI PHY frontends
329 int omap3isp_csiphy_init(struct isp_device
*isp
)
331 struct isp_csiphy
*phy1
= &isp
->isp_csiphy1
;
332 struct isp_csiphy
*phy2
= &isp
->isp_csiphy2
;
335 phy2
->csi2
= &isp
->isp_csi2a
;
336 phy2
->num_data_lanes
= ISP_CSIPHY2_NUM_DATA_LANES
;
337 phy2
->cfg_regs
= OMAP3_ISP_IOMEM_CSI2A_REGS1
;
338 phy2
->phy_regs
= OMAP3_ISP_IOMEM_CSIPHY2
;
339 mutex_init(&phy2
->mutex
);
342 mutex_init(&phy1
->mutex
);
344 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
;
354 void omap3isp_csiphy_cleanup(struct isp_device
*isp
)
356 mutex_destroy(&isp
->isp_csiphy1
.mutex
);
357 mutex_destroy(&isp
->isp_csiphy2
.mutex
);