2 * omap-usb2.c - USB PHY, talking to musb controller in OMAP.
4 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * Author: Kishon Vijay Abraham I <kishon@ti.com>
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <linux/slab.h>
24 #include <linux/phy/omap_usb.h>
25 #include <linux/usb/phy_companion.h>
26 #include <linux/clk.h>
27 #include <linux/err.h>
28 #include <linux/pm_runtime.h>
29 #include <linux/delay.h>
30 #include <linux/phy/omap_control_phy.h>
31 #include <linux/phy/phy.h>
32 #include <linux/mfd/syscon.h>
33 #include <linux/regmap.h>
34 #include <linux/of_platform.h>
36 #define USB2PHY_DISCON_BYP_LATCH (1 << 31)
37 #define USB2PHY_ANA_CONFIG1 0x4c
40 * omap_usb2_set_comparator - links the comparator present in the sytem with
42 * @comparator - the companion phy(comparator) for this phy
44 * The phy companion driver should call this API passing the phy_companion
45 * filled with set_vbus and start_srp to be used by usb phy.
47 * For use by phy companion driver
49 int omap_usb2_set_comparator(struct phy_companion
*comparator
)
52 struct usb_phy
*x
= usb_get_phy(USB_PHY_TYPE_USB2
);
57 phy
= phy_to_omapusb(x
);
58 phy
->comparator
= comparator
;
61 EXPORT_SYMBOL_GPL(omap_usb2_set_comparator
);
63 static int omap_usb_set_vbus(struct usb_otg
*otg
, bool enabled
)
65 struct omap_usb
*phy
= phy_to_omapusb(otg
->usb_phy
);
70 return phy
->comparator
->set_vbus(phy
->comparator
, enabled
);
73 static int omap_usb_start_srp(struct usb_otg
*otg
)
75 struct omap_usb
*phy
= phy_to_omapusb(otg
->usb_phy
);
80 return phy
->comparator
->start_srp(phy
->comparator
);
83 static int omap_usb_set_host(struct usb_otg
*otg
, struct usb_bus
*host
)
87 otg
->state
= OTG_STATE_UNDEFINED
;
92 static int omap_usb_set_peripheral(struct usb_otg
*otg
,
93 struct usb_gadget
*gadget
)
97 otg
->state
= OTG_STATE_UNDEFINED
;
102 static int omap_usb_phy_power(struct omap_usb
*phy
, int on
)
107 if (!phy
->syscon_phy_power
) {
108 omap_control_phy_power(phy
->control_dev
, on
);
115 val
= phy
->power_off
;
117 ret
= regmap_update_bits(phy
->syscon_phy_power
, phy
->power_reg
,
122 static int omap_usb_power_off(struct phy
*x
)
124 struct omap_usb
*phy
= phy_get_drvdata(x
);
126 return omap_usb_phy_power(phy
, false);
129 static int omap_usb_power_on(struct phy
*x
)
131 struct omap_usb
*phy
= phy_get_drvdata(x
);
133 return omap_usb_phy_power(phy
, true);
136 static int omap_usb2_disable_clocks(struct omap_usb
*phy
)
138 clk_disable(phy
->wkupclk
);
139 if (!IS_ERR(phy
->optclk
))
140 clk_disable(phy
->optclk
);
145 static int omap_usb2_enable_clocks(struct omap_usb
*phy
)
149 ret
= clk_enable(phy
->wkupclk
);
151 dev_err(phy
->dev
, "Failed to enable wkupclk %d\n", ret
);
155 if (!IS_ERR(phy
->optclk
)) {
156 ret
= clk_enable(phy
->optclk
);
158 dev_err(phy
->dev
, "Failed to enable optclk %d\n", ret
);
166 clk_disable(phy
->wkupclk
);
172 static int omap_usb_init(struct phy
*x
)
174 struct omap_usb
*phy
= phy_get_drvdata(x
);
177 omap_usb2_enable_clocks(phy
);
179 if (phy
->flags
& OMAP_USB2_CALIBRATE_FALSE_DISCONNECT
) {
182 * Reduce the sensitivity of internal PHY by enabling the
183 * DISCON_BYP_LATCH of the USB2PHY_ANA_CONFIG1 register. This
184 * resolves issues with certain devices which can otherwise
185 * be prone to false disconnects.
188 val
= omap_usb_readl(phy
->phy_base
, USB2PHY_ANA_CONFIG1
);
189 val
|= USB2PHY_DISCON_BYP_LATCH
;
190 omap_usb_writel(phy
->phy_base
, USB2PHY_ANA_CONFIG1
, val
);
196 static int omap_usb_exit(struct phy
*x
)
198 struct omap_usb
*phy
= phy_get_drvdata(x
);
200 return omap_usb2_disable_clocks(phy
);
203 static const struct phy_ops ops
= {
204 .init
= omap_usb_init
,
205 .exit
= omap_usb_exit
,
206 .power_on
= omap_usb_power_on
,
207 .power_off
= omap_usb_power_off
,
208 .owner
= THIS_MODULE
,
211 static const struct usb_phy_data omap_usb2_data
= {
212 .label
= "omap_usb2",
213 .flags
= OMAP_USB2_HAS_START_SRP
| OMAP_USB2_HAS_SET_VBUS
,
214 .mask
= OMAP_DEV_PHY_PD
,
215 .power_off
= OMAP_DEV_PHY_PD
,
218 static const struct usb_phy_data omap5_usb2_data
= {
219 .label
= "omap5_usb2",
221 .mask
= OMAP_DEV_PHY_PD
,
222 .power_off
= OMAP_DEV_PHY_PD
,
225 static const struct usb_phy_data dra7x_usb2_data
= {
226 .label
= "dra7x_usb2",
227 .flags
= OMAP_USB2_CALIBRATE_FALSE_DISCONNECT
,
228 .mask
= OMAP_DEV_PHY_PD
,
229 .power_off
= OMAP_DEV_PHY_PD
,
232 static const struct usb_phy_data dra7x_usb2_phy2_data
= {
233 .label
= "dra7x_usb2_phy2",
234 .flags
= OMAP_USB2_CALIBRATE_FALSE_DISCONNECT
,
235 .mask
= OMAP_USB2_PHY_PD
,
236 .power_off
= OMAP_USB2_PHY_PD
,
239 static const struct usb_phy_data am437x_usb2_data
= {
240 .label
= "am437x_usb2",
242 .mask
= AM437X_USB2_PHY_PD
| AM437X_USB2_OTG_PD
|
243 AM437X_USB2_OTGVDET_EN
| AM437X_USB2_OTGSESSEND_EN
,
244 .power_on
= AM437X_USB2_OTGVDET_EN
| AM437X_USB2_OTGSESSEND_EN
,
245 .power_off
= AM437X_USB2_PHY_PD
| AM437X_USB2_OTG_PD
,
248 static const struct of_device_id omap_usb2_id_table
[] = {
250 .compatible
= "ti,omap-usb2",
251 .data
= &omap_usb2_data
,
254 .compatible
= "ti,omap5-usb2",
255 .data
= &omap5_usb2_data
,
258 .compatible
= "ti,dra7x-usb2",
259 .data
= &dra7x_usb2_data
,
262 .compatible
= "ti,dra7x-usb2-phy2",
263 .data
= &dra7x_usb2_phy2_data
,
266 .compatible
= "ti,am437x-usb2",
267 .data
= &am437x_usb2_data
,
271 MODULE_DEVICE_TABLE(of
, omap_usb2_id_table
);
273 static int omap_usb2_probe(struct platform_device
*pdev
)
275 struct omap_usb
*phy
;
276 struct phy
*generic_phy
;
277 struct resource
*res
;
278 struct phy_provider
*phy_provider
;
280 struct device_node
*node
= pdev
->dev
.of_node
;
281 struct device_node
*control_node
;
282 struct platform_device
*control_pdev
;
283 const struct of_device_id
*of_id
;
284 struct usb_phy_data
*phy_data
;
286 of_id
= of_match_device(omap_usb2_id_table
, &pdev
->dev
);
291 phy_data
= (struct usb_phy_data
*)of_id
->data
;
293 phy
= devm_kzalloc(&pdev
->dev
, sizeof(*phy
), GFP_KERNEL
);
297 otg
= devm_kzalloc(&pdev
->dev
, sizeof(*otg
), GFP_KERNEL
);
301 phy
->dev
= &pdev
->dev
;
303 phy
->phy
.dev
= phy
->dev
;
304 phy
->phy
.label
= phy_data
->label
;
306 phy
->phy
.type
= USB_PHY_TYPE_USB2
;
307 phy
->mask
= phy_data
->mask
;
308 phy
->power_on
= phy_data
->power_on
;
309 phy
->power_off
= phy_data
->power_off
;
311 if (phy_data
->flags
& OMAP_USB2_CALIBRATE_FALSE_DISCONNECT
) {
312 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
313 phy
->phy_base
= devm_ioremap_resource(&pdev
->dev
, res
);
314 if (IS_ERR(phy
->phy_base
))
315 return PTR_ERR(phy
->phy_base
);
316 phy
->flags
|= OMAP_USB2_CALIBRATE_FALSE_DISCONNECT
;
319 phy
->syscon_phy_power
= syscon_regmap_lookup_by_phandle(node
,
321 if (IS_ERR(phy
->syscon_phy_power
)) {
323 "can't get syscon-phy-power, using control device\n");
324 phy
->syscon_phy_power
= NULL
;
326 control_node
= of_parse_phandle(node
, "ctrl-module", 0);
329 "Failed to get control device phandle\n");
333 control_pdev
= of_find_device_by_node(control_node
);
335 dev_err(&pdev
->dev
, "Failed to get control device\n");
338 phy
->control_dev
= &control_pdev
->dev
;
340 if (of_property_read_u32_index(node
,
341 "syscon-phy-power", 1,
344 "couldn't get power reg. offset\n");
349 otg
->set_host
= omap_usb_set_host
;
350 otg
->set_peripheral
= omap_usb_set_peripheral
;
351 if (phy_data
->flags
& OMAP_USB2_HAS_SET_VBUS
)
352 otg
->set_vbus
= omap_usb_set_vbus
;
353 if (phy_data
->flags
& OMAP_USB2_HAS_START_SRP
)
354 otg
->start_srp
= omap_usb_start_srp
;
355 otg
->usb_phy
= &phy
->phy
;
357 platform_set_drvdata(pdev
, phy
);
358 pm_runtime_enable(phy
->dev
);
360 generic_phy
= devm_phy_create(phy
->dev
, NULL
, &ops
);
361 if (IS_ERR(generic_phy
)) {
362 pm_runtime_disable(phy
->dev
);
363 return PTR_ERR(generic_phy
);
366 phy_set_drvdata(generic_phy
, phy
);
367 omap_usb_power_off(generic_phy
);
369 phy_provider
= devm_of_phy_provider_register(phy
->dev
,
370 of_phy_simple_xlate
);
371 if (IS_ERR(phy_provider
)) {
372 pm_runtime_disable(phy
->dev
);
373 return PTR_ERR(phy_provider
);
376 phy
->wkupclk
= devm_clk_get(phy
->dev
, "wkupclk");
377 if (IS_ERR(phy
->wkupclk
)) {
378 dev_warn(&pdev
->dev
, "unable to get wkupclk, trying old name\n");
379 phy
->wkupclk
= devm_clk_get(phy
->dev
, "usb_phy_cm_clk32k");
380 if (IS_ERR(phy
->wkupclk
)) {
381 dev_err(&pdev
->dev
, "unable to get usb_phy_cm_clk32k\n");
382 pm_runtime_disable(phy
->dev
);
383 return PTR_ERR(phy
->wkupclk
);
386 "found usb_phy_cm_clk32k, please fix DTS\n");
389 clk_prepare(phy
->wkupclk
);
391 phy
->optclk
= devm_clk_get(phy
->dev
, "refclk");
392 if (IS_ERR(phy
->optclk
)) {
393 dev_dbg(&pdev
->dev
, "unable to get refclk, trying old name\n");
394 phy
->optclk
= devm_clk_get(phy
->dev
, "usb_otg_ss_refclk960m");
395 if (IS_ERR(phy
->optclk
)) {
397 "unable to get usb_otg_ss_refclk960m\n");
400 "found usb_otg_ss_refclk960m, please fix DTS\n");
404 if (!IS_ERR(phy
->optclk
))
405 clk_prepare(phy
->optclk
);
407 usb_add_phy_dev(&phy
->phy
);
412 static int omap_usb2_remove(struct platform_device
*pdev
)
414 struct omap_usb
*phy
= platform_get_drvdata(pdev
);
416 clk_unprepare(phy
->wkupclk
);
417 if (!IS_ERR(phy
->optclk
))
418 clk_unprepare(phy
->optclk
);
419 usb_remove_phy(&phy
->phy
);
420 pm_runtime_disable(phy
->dev
);
425 static struct platform_driver omap_usb2_driver
= {
426 .probe
= omap_usb2_probe
,
427 .remove
= omap_usb2_remove
,
430 .of_match_table
= omap_usb2_id_table
,
434 module_platform_driver(omap_usb2_driver
);
436 MODULE_ALIAS("platform:omap_usb2");
437 MODULE_AUTHOR("Texas Instruments Inc.");
438 MODULE_DESCRIPTION("OMAP USB2 phy driver");
439 MODULE_LICENSE("GPL v2");