1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2011 Marvell International Ltd. All rights reserved.
4 * Author: Chao Xie <chao.xie@marvell.com>
5 * Neil Zhang <zhangwm@marvell.com>
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/platform_device.h>
11 #include <linux/clk.h>
12 #include <linux/err.h>
13 #include <linux/usb/otg.h>
14 #include <linux/usb/of.h>
15 #include <linux/platform_data/mv_usb.h>
18 #include <linux/usb/hcd.h>
23 #define U2x_CAPREGS_OFFSET 0x100
25 #define CAPLENGTH_MASK (0xff)
27 #define hcd_to_ehci_hcd_mv(h) ((struct ehci_hcd_mv *)hcd_to_ehci(h)->priv)
30 /* Which mode does this ehci running OTG/Host ? */
34 void __iomem *cap_regs;
35 void __iomem *op_regs;
42 int (*set_vbus)(unsigned int vbus);
45 static int mv_ehci_enable(struct ehci_hcd_mv *ehci_mv)
49 retval = clk_prepare_enable(ehci_mv->clk);
53 retval = phy_init(ehci_mv->phy);
55 clk_disable_unprepare(ehci_mv->clk);
60 static void mv_ehci_disable(struct ehci_hcd_mv *ehci_mv)
62 phy_exit(ehci_mv->phy);
63 clk_disable_unprepare(ehci_mv->clk);
66 static int mv_ehci_reset(struct usb_hcd *hcd)
68 struct device *dev = hcd->self.controller;
69 struct ehci_hcd_mv *ehci_mv = hcd_to_ehci_hcd_mv(hcd);
70 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
74 if (ehci_mv == NULL) {
75 dev_err(dev, "Can not find private ehci data\n");
81 retval = ehci_setup(hcd);
83 dev_err(dev, "ehci_setup failed %d\n", retval);
85 if (of_usb_get_phy_mode(dev->of_node) == USBPHY_INTERFACE_MODE_HSIC) {
86 status = ehci_readl(ehci, &ehci->regs->port_status[0]);
87 status |= PORT_TEST_FORCE;
88 ehci_writel(ehci, status, &ehci->regs->port_status[0]);
89 status &= ~PORT_TEST_FORCE;
90 ehci_writel(ehci, status, &ehci->regs->port_status[0]);
96 static struct hc_driver __read_mostly ehci_platform_hc_driver;
98 static const struct ehci_driver_overrides platform_overrides __initconst = {
99 .reset = mv_ehci_reset,
100 .extra_priv_size = sizeof(struct ehci_hcd_mv),
103 static int mv_ehci_probe(struct platform_device *pdev)
105 struct mv_usb_platform_data *pdata = dev_get_platdata(&pdev->dev);
107 struct ehci_hcd *ehci;
108 struct ehci_hcd_mv *ehci_mv;
117 hcd = usb_create_hcd(&ehci_platform_hc_driver, &pdev->dev, dev_name(&pdev->dev));
121 platform_set_drvdata(pdev, hcd);
122 ehci_mv = hcd_to_ehci_hcd_mv(hcd);
124 ehci_mv->mode = MV_USB_MODE_HOST;
126 ehci_mv->mode = pdata->mode;
127 ehci_mv->set_vbus = pdata->set_vbus;
130 ehci_mv->phy = devm_phy_optional_get(&pdev->dev, "usb");
131 if (IS_ERR(ehci_mv->phy)) {
132 retval = PTR_ERR(ehci_mv->phy);
133 if (retval != -EPROBE_DEFER)
134 dev_err(&pdev->dev, "Failed to get phy.\n");
138 ehci_mv->clk = devm_clk_get(&pdev->dev, NULL);
139 if (IS_ERR(ehci_mv->clk)) {
140 dev_err(&pdev->dev, "error getting clock\n");
141 retval = PTR_ERR(ehci_mv->clk);
145 ehci_mv->base = devm_platform_get_and_ioremap_resource(pdev, 0, &r);
146 if (IS_ERR(ehci_mv->base)) {
147 retval = PTR_ERR(ehci_mv->base);
151 retval = mv_ehci_enable(ehci_mv);
153 dev_err(&pdev->dev, "init phy error %d\n", retval);
158 (void __iomem *) ((unsigned long) ehci_mv->base + U2x_CAPREGS_OFFSET);
159 offset = readl(ehci_mv->cap_regs) & CAPLENGTH_MASK;
161 (void __iomem *) ((unsigned long) ehci_mv->cap_regs + offset);
163 hcd->rsrc_start = r->start;
164 hcd->rsrc_len = resource_size(r);
165 hcd->regs = ehci_mv->op_regs;
167 retval = platform_get_irq(pdev, 0);
169 goto err_disable_clk;
172 ehci = hcd_to_ehci(hcd);
173 ehci->caps = (struct ehci_caps __iomem *) ehci_mv->cap_regs;
175 if (ehci_mv->mode == MV_USB_MODE_OTG) {
176 ehci_mv->otg = devm_usb_get_phy(&pdev->dev, USB_PHY_TYPE_USB2);
177 if (IS_ERR(ehci_mv->otg)) {
178 retval = PTR_ERR(ehci_mv->otg);
180 if (retval == -ENXIO)
181 dev_info(&pdev->dev, "MV_USB_MODE_OTG "
182 "must have CONFIG_USB_PHY enabled\n");
185 "unable to find transceiver\n");
186 goto err_disable_clk;
189 retval = otg_set_host(ehci_mv->otg->otg, &hcd->self);
192 "unable to register with transceiver\n");
194 goto err_disable_clk;
196 /* otg will enable clock before use as host */
197 mv_ehci_disable(ehci_mv);
199 if (ehci_mv->set_vbus)
200 ehci_mv->set_vbus(1);
202 retval = usb_add_hcd(hcd, hcd->irq, IRQF_SHARED);
205 "failed to add hcd with err %d\n", retval);
208 device_wakeup_enable(hcd->self.controller);
211 if (of_usb_get_phy_mode(pdev->dev.of_node) == USBPHY_INTERFACE_MODE_HSIC) {
212 status = ehci_readl(ehci, &ehci->regs->port_status[0]);
213 /* These "reserved" bits actually enable HSIC mode. */
215 status &= ~GENMASK(31, 30);
216 ehci_writel(ehci, status, &ehci->regs->port_status[0]);
220 "successful find EHCI device with regs 0x%p irq %d"
221 " working in %s mode\n", hcd->regs, hcd->irq,
222 ehci_mv->mode == MV_USB_MODE_OTG ? "OTG" : "Host");
227 if (ehci_mv->set_vbus)
228 ehci_mv->set_vbus(0);
230 mv_ehci_disable(ehci_mv);
237 static void mv_ehci_remove(struct platform_device *pdev)
239 struct usb_hcd *hcd = platform_get_drvdata(pdev);
240 struct ehci_hcd_mv *ehci_mv = hcd_to_ehci_hcd_mv(hcd);
242 if (hcd->rh_registered)
245 if (!IS_ERR_OR_NULL(ehci_mv->otg))
246 otg_set_host(ehci_mv->otg->otg, NULL);
248 if (ehci_mv->mode == MV_USB_MODE_HOST) {
249 if (ehci_mv->set_vbus)
250 ehci_mv->set_vbus(0);
252 mv_ehci_disable(ehci_mv);
258 static const struct platform_device_id ehci_id_table[] = {
264 static void mv_ehci_shutdown(struct platform_device *pdev)
266 struct usb_hcd *hcd = platform_get_drvdata(pdev);
268 if (!hcd->rh_registered)
271 if (hcd->driver->shutdown)
272 hcd->driver->shutdown(hcd);
275 static const struct of_device_id ehci_mv_dt_ids[] = {
276 { .compatible = "marvell,pxau2o-ehci", },
280 static struct platform_driver ehci_mv_driver = {
281 .probe = mv_ehci_probe,
282 .remove_new = mv_ehci_remove,
283 .shutdown = mv_ehci_shutdown,
286 .bus = &platform_bus_type,
287 .of_match_table = ehci_mv_dt_ids,
289 .id_table = ehci_id_table,
292 static int __init ehci_platform_init(void)
297 ehci_init_driver(&ehci_platform_hc_driver, &platform_overrides);
298 return platform_driver_register(&ehci_mv_driver);
300 module_init(ehci_platform_init);
302 static void __exit ehci_platform_cleanup(void)
304 platform_driver_unregister(&ehci_mv_driver);
306 module_exit(ehci_platform_cleanup);
308 MODULE_DESCRIPTION("Marvell EHCI driver");
309 MODULE_AUTHOR("Chao Xie <chao.xie@marvell.com>");
310 MODULE_AUTHOR("Neil Zhang <zhangwm@marvell.com>");
311 MODULE_ALIAS("mv-ehci");
312 MODULE_LICENSE("GPL");
313 MODULE_DEVICE_TABLE(of, ehci_mv_dt_ids);