b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * Driver for EHCI HCD on SPEAr SOC |
| 4 | * |
| 5 | * Copyright (C) 2010 ST Micro Electronics, |
| 6 | * Deepak Sikri <deepak.sikri@st.com> |
| 7 | * |
| 8 | * Based on various ehci-*.c drivers |
| 9 | */ |
| 10 | |
| 11 | #include <linux/clk.h> |
| 12 | #include <linux/dma-mapping.h> |
| 13 | #include <linux/io.h> |
| 14 | #include <linux/jiffies.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/of.h> |
| 18 | #include <linux/platform_device.h> |
| 19 | #include <linux/pm.h> |
| 20 | #include <linux/usb.h> |
| 21 | #include <linux/usb/hcd.h> |
| 22 | |
| 23 | #include "ehci.h" |
| 24 | |
| 25 | #define DRIVER_DESC "EHCI SPEAr driver" |
| 26 | |
| 27 | static const char hcd_name[] = "SPEAr-ehci"; |
| 28 | |
| 29 | struct spear_ehci { |
| 30 | struct clk *clk; |
| 31 | }; |
| 32 | |
| 33 | #define to_spear_ehci(hcd) (struct spear_ehci *)(hcd_to_ehci(hcd)->priv) |
| 34 | |
| 35 | static struct hc_driver __read_mostly ehci_spear_hc_driver; |
| 36 | |
| 37 | #ifdef CONFIG_PM_SLEEP |
| 38 | static int ehci_spear_drv_suspend(struct device *dev) |
| 39 | { |
| 40 | struct usb_hcd *hcd = dev_get_drvdata(dev); |
| 41 | bool do_wakeup = device_may_wakeup(dev); |
| 42 | |
| 43 | return ehci_suspend(hcd, do_wakeup); |
| 44 | } |
| 45 | |
| 46 | static int ehci_spear_drv_resume(struct device *dev) |
| 47 | { |
| 48 | struct usb_hcd *hcd = dev_get_drvdata(dev); |
| 49 | |
| 50 | ehci_resume(hcd, false); |
| 51 | return 0; |
| 52 | } |
| 53 | #endif /* CONFIG_PM_SLEEP */ |
| 54 | |
| 55 | static SIMPLE_DEV_PM_OPS(ehci_spear_pm_ops, ehci_spear_drv_suspend, |
| 56 | ehci_spear_drv_resume); |
| 57 | |
| 58 | static int spear_ehci_hcd_drv_probe(struct platform_device *pdev) |
| 59 | { |
| 60 | struct usb_hcd *hcd ; |
| 61 | struct spear_ehci *sehci; |
| 62 | struct resource *res; |
| 63 | struct clk *usbh_clk; |
| 64 | const struct hc_driver *driver = &ehci_spear_hc_driver; |
| 65 | int irq, retval; |
| 66 | |
| 67 | if (usb_disabled()) |
| 68 | return -ENODEV; |
| 69 | |
| 70 | irq = platform_get_irq(pdev, 0); |
| 71 | if (irq < 0) { |
| 72 | retval = irq; |
| 73 | goto fail; |
| 74 | } |
| 75 | |
| 76 | /* |
| 77 | * Right now device-tree probed devices don't get dma_mask set. |
| 78 | * Since shared usb code relies on it, set it here for now. |
| 79 | * Once we have dma capability bindings this can go away. |
| 80 | */ |
| 81 | retval = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)); |
| 82 | if (retval) |
| 83 | goto fail; |
| 84 | |
| 85 | usbh_clk = devm_clk_get(&pdev->dev, NULL); |
| 86 | if (IS_ERR(usbh_clk)) { |
| 87 | dev_err(&pdev->dev, "Error getting interface clock\n"); |
| 88 | retval = PTR_ERR(usbh_clk); |
| 89 | goto fail; |
| 90 | } |
| 91 | |
| 92 | hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev)); |
| 93 | if (!hcd) { |
| 94 | retval = -ENOMEM; |
| 95 | goto fail; |
| 96 | } |
| 97 | |
| 98 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 99 | hcd->regs = devm_ioremap_resource(&pdev->dev, res); |
| 100 | if (IS_ERR(hcd->regs)) { |
| 101 | retval = PTR_ERR(hcd->regs); |
| 102 | goto err_put_hcd; |
| 103 | } |
| 104 | hcd->rsrc_start = res->start; |
| 105 | hcd->rsrc_len = resource_size(res); |
| 106 | |
| 107 | sehci = to_spear_ehci(hcd); |
| 108 | sehci->clk = usbh_clk; |
| 109 | |
| 110 | /* registers start at offset 0x0 */ |
| 111 | hcd_to_ehci(hcd)->caps = hcd->regs; |
| 112 | |
| 113 | retval = clk_prepare_enable(sehci->clk); |
| 114 | if (retval) |
| 115 | goto err_put_hcd; |
| 116 | retval = usb_add_hcd(hcd, irq, IRQF_SHARED); |
| 117 | if (retval) |
| 118 | goto err_stop_ehci; |
| 119 | |
| 120 | device_wakeup_enable(hcd->self.controller); |
| 121 | return retval; |
| 122 | |
| 123 | err_stop_ehci: |
| 124 | clk_disable_unprepare(sehci->clk); |
| 125 | err_put_hcd: |
| 126 | usb_put_hcd(hcd); |
| 127 | fail: |
| 128 | dev_err(&pdev->dev, "init fail, %d\n", retval); |
| 129 | |
| 130 | return retval ; |
| 131 | } |
| 132 | |
| 133 | static int spear_ehci_hcd_drv_remove(struct platform_device *pdev) |
| 134 | { |
| 135 | struct usb_hcd *hcd = platform_get_drvdata(pdev); |
| 136 | struct spear_ehci *sehci = to_spear_ehci(hcd); |
| 137 | |
| 138 | usb_remove_hcd(hcd); |
| 139 | |
| 140 | clk_disable_unprepare(sehci->clk); |
| 141 | usb_put_hcd(hcd); |
| 142 | |
| 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | static const struct of_device_id spear_ehci_id_table[] = { |
| 147 | { .compatible = "st,spear600-ehci", }, |
| 148 | { }, |
| 149 | }; |
| 150 | MODULE_DEVICE_TABLE(of, spear_ehci_id_table); |
| 151 | |
| 152 | static struct platform_driver spear_ehci_hcd_driver = { |
| 153 | .probe = spear_ehci_hcd_drv_probe, |
| 154 | .remove = spear_ehci_hcd_drv_remove, |
| 155 | .shutdown = usb_hcd_platform_shutdown, |
| 156 | .driver = { |
| 157 | .name = "spear-ehci", |
| 158 | .bus = &platform_bus_type, |
| 159 | .pm = &ehci_spear_pm_ops, |
| 160 | .of_match_table = spear_ehci_id_table, |
| 161 | } |
| 162 | }; |
| 163 | |
| 164 | static const struct ehci_driver_overrides spear_overrides __initconst = { |
| 165 | .extra_priv_size = sizeof(struct spear_ehci), |
| 166 | }; |
| 167 | |
| 168 | static int __init ehci_spear_init(void) |
| 169 | { |
| 170 | if (usb_disabled()) |
| 171 | return -ENODEV; |
| 172 | |
| 173 | pr_info("%s: " DRIVER_DESC "\n", hcd_name); |
| 174 | |
| 175 | ehci_init_driver(&ehci_spear_hc_driver, &spear_overrides); |
| 176 | return platform_driver_register(&spear_ehci_hcd_driver); |
| 177 | } |
| 178 | module_init(ehci_spear_init); |
| 179 | |
| 180 | static void __exit ehci_spear_cleanup(void) |
| 181 | { |
| 182 | platform_driver_unregister(&spear_ehci_hcd_driver); |
| 183 | } |
| 184 | module_exit(ehci_spear_cleanup); |
| 185 | |
| 186 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 187 | MODULE_ALIAS("platform:spear-ehci"); |
| 188 | MODULE_AUTHOR("Deepak Sikri"); |
| 189 | MODULE_LICENSE("GPL"); |