Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Generic platform ehci driver |
| 3 | * |
| 4 | * Copyright 2007 Steven Brown <sbrown@cortland.com> |
| 5 | * Copyright 2010-2012 Hauke Mehrtens <hauke@hauke-m.de> |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 6 | * Copyright 2014 Hans de Goede <hdegoede@redhat.com> |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 7 | * |
| 8 | * Derived from the ohci-ssb driver |
| 9 | * Copyright 2007 Michael Buesch <m@bues.ch> |
| 10 | * |
| 11 | * Derived from the EHCI-PCI driver |
| 12 | * Copyright (c) 2000-2004 by David Brownell |
| 13 | * |
| 14 | * Derived from the ohci-pci driver |
| 15 | * Copyright 1999 Roman Weissgaerber |
| 16 | * Copyright 2000-2002 David Brownell |
| 17 | * Copyright 1999 Linus Torvalds |
| 18 | * Copyright 1999 Gregory P. Smith |
| 19 | * |
| 20 | * Licensed under the GNU/GPL. See COPYING for details. |
| 21 | */ |
Jeremy Linton | 776c15d | 2015-08-19 16:36:32 -0500 | [diff] [blame] | 22 | #include <linux/acpi.h> |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 23 | #include <linux/clk.h> |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 24 | #include <linux/dma-mapping.h> |
Thierry Reding | 148e113 | 2013-01-21 11:09:22 +0100 | [diff] [blame] | 25 | #include <linux/err.h> |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 26 | #include <linux/kernel.h> |
Alan Stern | d1bb67a | 2012-11-02 10:13:24 -0400 | [diff] [blame] | 27 | #include <linux/hrtimer.h> |
| 28 | #include <linux/io.h> |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 29 | #include <linux/module.h> |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 30 | #include <linux/of.h> |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 31 | #include <linux/phy/phy.h> |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 32 | #include <linux/platform_device.h> |
Boris BREZILLON | 2d87bbd | 2014-05-13 17:44:19 +0200 | [diff] [blame] | 33 | #include <linux/reset.h> |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 34 | #include <linux/usb.h> |
| 35 | #include <linux/usb/hcd.h> |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 36 | #include <linux/usb/ehci_pdriver.h> |
| 37 | |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 38 | #include "ehci.h" |
| 39 | |
| 40 | #define DRIVER_DESC "EHCI generic platform driver" |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 41 | #define EHCI_MAX_CLKS 3 |
Jiancheng Xue | d0e08b0 | 2016-05-12 09:41:37 +0800 | [diff] [blame^] | 42 | #define EHCI_MAX_RSTS 3 |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 43 | #define hcd_to_ehci_priv(h) ((struct ehci_platform_priv *)hcd_to_ehci(h)->priv) |
| 44 | |
| 45 | struct ehci_platform_priv { |
| 46 | struct clk *clks[EHCI_MAX_CLKS]; |
Jiancheng Xue | d0e08b0 | 2016-05-12 09:41:37 +0800 | [diff] [blame^] | 47 | struct reset_control *rsts[EHCI_MAX_RSTS]; |
Arun Ramamurthy | 7e7a0e6 | 2015-01-19 16:05:29 -0800 | [diff] [blame] | 48 | struct phy **phys; |
| 49 | int num_phys; |
Alban Bedel | b4629a7 | 2015-08-04 10:59:17 +0200 | [diff] [blame] | 50 | bool reset_on_resume; |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 51 | }; |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 52 | |
| 53 | static const char hcd_name[] = "ehci-platform"; |
| 54 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 55 | static int ehci_platform_reset(struct usb_hcd *hcd) |
| 56 | { |
| 57 | struct platform_device *pdev = to_platform_device(hcd->self.controller); |
Jingoo Han | d4f09e2 | 2013-07-30 19:59:40 +0900 | [diff] [blame] | 58 | struct usb_ehci_pdata *pdata = dev_get_platdata(&pdev->dev); |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 59 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); |
| 60 | int retval; |
| 61 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 62 | ehci->has_synopsys_hc_bug = pdata->has_synopsys_hc_bug; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 63 | |
Sergei Shtylyov | 743fcce | 2013-06-02 01:33:56 +0400 | [diff] [blame] | 64 | if (pdata->pre_setup) { |
| 65 | retval = pdata->pre_setup(hcd); |
| 66 | if (retval < 0) |
| 67 | return retval; |
| 68 | } |
| 69 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 70 | ehci->caps = hcd->regs + pdata->caps_offset; |
| 71 | retval = ehci_setup(hcd); |
| 72 | if (retval) |
| 73 | return retval; |
| 74 | |
Florian Fainelli | 4534874 | 2012-10-08 15:11:21 +0200 | [diff] [blame] | 75 | if (pdata->no_io_watchdog) |
| 76 | ehci->need_io_watchdog = 0; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 77 | return 0; |
| 78 | } |
| 79 | |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 80 | static int ehci_platform_power_on(struct platform_device *dev) |
| 81 | { |
| 82 | struct usb_hcd *hcd = platform_get_drvdata(dev); |
| 83 | struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd); |
Arun Ramamurthy | 7e7a0e6 | 2015-01-19 16:05:29 -0800 | [diff] [blame] | 84 | int clk, ret, phy_num; |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 85 | |
| 86 | for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++) { |
| 87 | ret = clk_prepare_enable(priv->clks[clk]); |
| 88 | if (ret) |
| 89 | goto err_disable_clks; |
| 90 | } |
| 91 | |
Arun Ramamurthy | 7e7a0e6 | 2015-01-19 16:05:29 -0800 | [diff] [blame] | 92 | for (phy_num = 0; phy_num < priv->num_phys; phy_num++) { |
Arun Ramamurthy | 216e299 | 2015-04-22 16:04:12 -0700 | [diff] [blame] | 93 | ret = phy_init(priv->phys[phy_num]); |
| 94 | if (ret) |
| 95 | goto err_exit_phy; |
| 96 | ret = phy_power_on(priv->phys[phy_num]); |
| 97 | if (ret) { |
| 98 | phy_exit(priv->phys[phy_num]); |
| 99 | goto err_exit_phy; |
Arun Ramamurthy | 7e7a0e6 | 2015-01-19 16:05:29 -0800 | [diff] [blame] | 100 | } |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | return 0; |
| 104 | |
| 105 | err_exit_phy: |
Arun Ramamurthy | 7e7a0e6 | 2015-01-19 16:05:29 -0800 | [diff] [blame] | 106 | while (--phy_num >= 0) { |
Arun Ramamurthy | 216e299 | 2015-04-22 16:04:12 -0700 | [diff] [blame] | 107 | phy_power_off(priv->phys[phy_num]); |
| 108 | phy_exit(priv->phys[phy_num]); |
Arun Ramamurthy | 7e7a0e6 | 2015-01-19 16:05:29 -0800 | [diff] [blame] | 109 | } |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 110 | err_disable_clks: |
| 111 | while (--clk >= 0) |
| 112 | clk_disable_unprepare(priv->clks[clk]); |
| 113 | |
| 114 | return ret; |
| 115 | } |
| 116 | |
| 117 | static void ehci_platform_power_off(struct platform_device *dev) |
| 118 | { |
| 119 | struct usb_hcd *hcd = platform_get_drvdata(dev); |
| 120 | struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd); |
Arun Ramamurthy | 7e7a0e6 | 2015-01-19 16:05:29 -0800 | [diff] [blame] | 121 | int clk, phy_num; |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 122 | |
Arun Ramamurthy | 7e7a0e6 | 2015-01-19 16:05:29 -0800 | [diff] [blame] | 123 | for (phy_num = 0; phy_num < priv->num_phys; phy_num++) { |
Arun Ramamurthy | 216e299 | 2015-04-22 16:04:12 -0700 | [diff] [blame] | 124 | phy_power_off(priv->phys[phy_num]); |
| 125 | phy_exit(priv->phys[phy_num]); |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | for (clk = EHCI_MAX_CLKS - 1; clk >= 0; clk--) |
| 129 | if (priv->clks[clk]) |
| 130 | clk_disable_unprepare(priv->clks[clk]); |
| 131 | } |
| 132 | |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 133 | static struct hc_driver __read_mostly ehci_platform_hc_driver; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 134 | |
Andi Kleen | 62d08a1 | 2013-04-22 09:44:56 -0700 | [diff] [blame] | 135 | static const struct ehci_driver_overrides platform_overrides __initconst = { |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 136 | .reset = ehci_platform_reset, |
| 137 | .extra_priv_size = sizeof(struct ehci_platform_priv), |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 138 | }; |
| 139 | |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 140 | static struct usb_ehci_pdata ehci_platform_defaults = { |
| 141 | .power_on = ehci_platform_power_on, |
| 142 | .power_suspend = ehci_platform_power_off, |
| 143 | .power_off = ehci_platform_power_off, |
| 144 | }; |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 145 | |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 146 | static int ehci_platform_probe(struct platform_device *dev) |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 147 | { |
| 148 | struct usb_hcd *hcd; |
| 149 | struct resource *res_mem; |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 150 | struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev); |
| 151 | struct ehci_platform_priv *priv; |
Hans de Goede | ad3db5d | 2014-02-07 16:36:43 +0100 | [diff] [blame] | 152 | struct ehci_hcd *ehci; |
Jiancheng Xue | d0e08b0 | 2016-05-12 09:41:37 +0800 | [diff] [blame^] | 153 | int err, irq, phy_num, clk = 0, rst; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 154 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 155 | if (usb_disabled()) |
| 156 | return -ENODEV; |
| 157 | |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 158 | /* |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 159 | * Use reasonable defaults so platforms don't have to provide these |
| 160 | * with DT probing on ARM. |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 161 | */ |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 162 | if (!pdata) |
| 163 | pdata = &ehci_platform_defaults; |
Russell King | e1fd734 | 2013-06-27 12:36:37 +0100 | [diff] [blame] | 164 | |
Andreas Herrmann | c99e76c | 2015-01-12 16:05:52 +0100 | [diff] [blame] | 165 | err = dma_coerce_mask_and_coherent(&dev->dev, |
| 166 | pdata->dma_mask_64 ? DMA_BIT_MASK(64) : DMA_BIT_MASK(32)); |
Jeremy Linton | 17f69b5 | 2015-08-19 16:36:31 -0500 | [diff] [blame] | 167 | if (err) { |
| 168 | dev_err(&dev->dev, "Error: DMA mask configuration failed\n"); |
Russell King | 22d9d8e | 2013-06-10 16:28:49 +0100 | [diff] [blame] | 169 | return err; |
Jeremy Linton | 17f69b5 | 2015-08-19 16:36:31 -0500 | [diff] [blame] | 170 | } |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 171 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 172 | irq = platform_get_irq(dev, 0); |
| 173 | if (irq < 0) { |
Florian Fainelli | 2350cb0 | 2012-10-08 15:11:41 +0200 | [diff] [blame] | 174 | dev_err(&dev->dev, "no irq provided"); |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 175 | return irq; |
| 176 | } |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 177 | |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 178 | hcd = usb_create_hcd(&ehci_platform_hc_driver, &dev->dev, |
| 179 | dev_name(&dev->dev)); |
| 180 | if (!hcd) |
| 181 | return -ENOMEM; |
| 182 | |
| 183 | platform_set_drvdata(dev, hcd); |
| 184 | dev->dev.platform_data = pdata; |
| 185 | priv = hcd_to_ehci_priv(hcd); |
Hans de Goede | ad3db5d | 2014-02-07 16:36:43 +0100 | [diff] [blame] | 186 | ehci = hcd_to_ehci(hcd); |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 187 | |
| 188 | if (pdata == &ehci_platform_defaults && dev->dev.of_node) { |
Hans de Goede | ad3db5d | 2014-02-07 16:36:43 +0100 | [diff] [blame] | 189 | if (of_property_read_bool(dev->dev.of_node, "big-endian-regs")) |
| 190 | ehci->big_endian_mmio = 1; |
| 191 | |
| 192 | if (of_property_read_bool(dev->dev.of_node, "big-endian-desc")) |
| 193 | ehci->big_endian_desc = 1; |
| 194 | |
| 195 | if (of_property_read_bool(dev->dev.of_node, "big-endian")) |
| 196 | ehci->big_endian_mmio = ehci->big_endian_desc = 1; |
| 197 | |
Wu Liang feng | 314b41b | 2014-12-24 18:22:19 +0800 | [diff] [blame] | 198 | if (of_property_read_bool(dev->dev.of_node, |
| 199 | "needs-reset-on-resume")) |
Alban Bedel | b4629a7 | 2015-08-04 10:59:17 +0200 | [diff] [blame] | 200 | priv->reset_on_resume = true; |
Wu Liang feng | 314b41b | 2014-12-24 18:22:19 +0800 | [diff] [blame] | 201 | |
Joachim Eastwood | 40f2f2a | 2015-05-16 17:17:40 +0200 | [diff] [blame] | 202 | if (of_property_read_bool(dev->dev.of_node, |
| 203 | "has-transaction-translator")) |
Alban Bedel | b4629a7 | 2015-08-04 10:59:17 +0200 | [diff] [blame] | 204 | hcd->has_tt = 1; |
Joachim Eastwood | 40f2f2a | 2015-05-16 17:17:40 +0200 | [diff] [blame] | 205 | |
Arun Ramamurthy | 7e7a0e6 | 2015-01-19 16:05:29 -0800 | [diff] [blame] | 206 | priv->num_phys = of_count_phandle_with_args(dev->dev.of_node, |
| 207 | "phys", "#phy-cells"); |
Arun Ramamurthy | 7e7a0e6 | 2015-01-19 16:05:29 -0800 | [diff] [blame] | 208 | |
Arun Ramamurthy | 216e299 | 2015-04-22 16:04:12 -0700 | [diff] [blame] | 209 | if (priv->num_phys > 0) { |
| 210 | priv->phys = devm_kcalloc(&dev->dev, priv->num_phys, |
| 211 | sizeof(struct phy *), GFP_KERNEL); |
| 212 | if (!priv->phys) |
| 213 | return -ENOMEM; |
| 214 | } else |
| 215 | priv->num_phys = 0; |
Arun Ramamurthy | 7e7a0e6 | 2015-01-19 16:05:29 -0800 | [diff] [blame] | 216 | |
| 217 | for (phy_num = 0; phy_num < priv->num_phys; phy_num++) { |
Arun Ramamurthy | 216e299 | 2015-04-22 16:04:12 -0700 | [diff] [blame] | 218 | priv->phys[phy_num] = devm_of_phy_get_by_index( |
| 219 | &dev->dev, dev->dev.of_node, phy_num); |
| 220 | if (IS_ERR(priv->phys[phy_num])) { |
| 221 | err = PTR_ERR(priv->phys[phy_num]); |
| 222 | goto err_put_hcd; |
| 223 | } |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | for (clk = 0; clk < EHCI_MAX_CLKS; clk++) { |
| 227 | priv->clks[clk] = of_clk_get(dev->dev.of_node, clk); |
| 228 | if (IS_ERR(priv->clks[clk])) { |
| 229 | err = PTR_ERR(priv->clks[clk]); |
| 230 | if (err == -EPROBE_DEFER) |
| 231 | goto err_put_clks; |
| 232 | priv->clks[clk] = NULL; |
| 233 | break; |
| 234 | } |
| 235 | } |
| 236 | } |
| 237 | |
Jiancheng Xue | d0e08b0 | 2016-05-12 09:41:37 +0800 | [diff] [blame^] | 238 | for (rst = 0; rst < EHCI_MAX_RSTS; rst++) { |
| 239 | priv->rsts[rst] = of_reset_control_get_by_index( |
| 240 | dev->dev.of_node, rst); |
| 241 | if (IS_ERR(priv->rsts[rst])) { |
| 242 | err = PTR_ERR(priv->rsts[rst]); |
| 243 | if (err == -EPROBE_DEFER) |
| 244 | goto err_reset; |
| 245 | priv->rsts[rst] = NULL; |
| 246 | break; |
| 247 | } |
| 248 | |
| 249 | err = reset_control_deassert(priv->rsts[rst]); |
| 250 | if (err) { |
| 251 | reset_control_put(priv->rsts[rst]); |
| 252 | goto err_reset; |
| 253 | } |
Boris BREZILLON | 2d87bbd | 2014-05-13 17:44:19 +0200 | [diff] [blame] | 254 | } |
| 255 | |
Alan Stern | 843d5e0 | 2014-02-11 11:26:10 -0500 | [diff] [blame] | 256 | if (pdata->big_endian_desc) |
| 257 | ehci->big_endian_desc = 1; |
| 258 | if (pdata->big_endian_mmio) |
| 259 | ehci->big_endian_mmio = 1; |
Alban Bedel | b4629a7 | 2015-08-04 10:59:17 +0200 | [diff] [blame] | 260 | if (pdata->has_tt) |
| 261 | hcd->has_tt = 1; |
| 262 | if (pdata->reset_on_resume) |
| 263 | priv->reset_on_resume = true; |
Alan Stern | 843d5e0 | 2014-02-11 11:26:10 -0500 | [diff] [blame] | 264 | |
| 265 | #ifndef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO |
| 266 | if (ehci->big_endian_mmio) { |
| 267 | dev_err(&dev->dev, |
| 268 | "Error: CONFIG_USB_EHCI_BIG_ENDIAN_MMIO not set\n"); |
| 269 | err = -EINVAL; |
Boris BREZILLON | 2d87bbd | 2014-05-13 17:44:19 +0200 | [diff] [blame] | 270 | goto err_reset; |
Alan Stern | 843d5e0 | 2014-02-11 11:26:10 -0500 | [diff] [blame] | 271 | } |
| 272 | #endif |
| 273 | #ifndef CONFIG_USB_EHCI_BIG_ENDIAN_DESC |
| 274 | if (ehci->big_endian_desc) { |
| 275 | dev_err(&dev->dev, |
| 276 | "Error: CONFIG_USB_EHCI_BIG_ENDIAN_DESC not set\n"); |
| 277 | err = -EINVAL; |
Boris BREZILLON | 2d87bbd | 2014-05-13 17:44:19 +0200 | [diff] [blame] | 278 | goto err_reset; |
Alan Stern | 843d5e0 | 2014-02-11 11:26:10 -0500 | [diff] [blame] | 279 | } |
| 280 | #endif |
| 281 | |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 282 | if (pdata->power_on) { |
| 283 | err = pdata->power_on(dev); |
| 284 | if (err < 0) |
Boris BREZILLON | 2d87bbd | 2014-05-13 17:44:19 +0200 | [diff] [blame] | 285 | goto err_reset; |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 286 | } |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 287 | |
Varka Bhadram | 2062ff4 | 2014-11-04 07:51:25 +0530 | [diff] [blame] | 288 | res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0); |
Thierry Reding | 148e113 | 2013-01-21 11:09:22 +0100 | [diff] [blame] | 289 | hcd->regs = devm_ioremap_resource(&dev->dev, res_mem); |
| 290 | if (IS_ERR(hcd->regs)) { |
| 291 | err = PTR_ERR(hcd->regs); |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 292 | goto err_power; |
Julia Lawall | ec03ad8 | 2012-08-14 08:47:38 +0200 | [diff] [blame] | 293 | } |
Varka Bhadram | 2062ff4 | 2014-11-04 07:51:25 +0530 | [diff] [blame] | 294 | hcd->rsrc_start = res_mem->start; |
| 295 | hcd->rsrc_len = resource_size(res_mem); |
| 296 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 297 | err = usb_add_hcd(hcd, irq, IRQF_SHARED); |
| 298 | if (err) |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 299 | goto err_power; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 300 | |
Peter Chen | 3c9740a | 2013-11-05 10:46:02 +0800 | [diff] [blame] | 301 | device_wakeup_enable(hcd->self.controller); |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 302 | platform_set_drvdata(dev, hcd); |
| 303 | |
| 304 | return err; |
| 305 | |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 306 | err_power: |
| 307 | if (pdata->power_off) |
| 308 | pdata->power_off(dev); |
Boris BREZILLON | 2d87bbd | 2014-05-13 17:44:19 +0200 | [diff] [blame] | 309 | err_reset: |
Jiancheng Xue | d0e08b0 | 2016-05-12 09:41:37 +0800 | [diff] [blame^] | 310 | while (--rst >= 0) { |
| 311 | reset_control_assert(priv->rsts[rst]); |
| 312 | reset_control_put(priv->rsts[rst]); |
| 313 | } |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 314 | err_put_clks: |
| 315 | while (--clk >= 0) |
| 316 | clk_put(priv->clks[clk]); |
| 317 | err_put_hcd: |
| 318 | if (pdata == &ehci_platform_defaults) |
| 319 | dev->dev.platform_data = NULL; |
| 320 | |
| 321 | usb_put_hcd(hcd); |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 322 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 323 | return err; |
| 324 | } |
| 325 | |
Bill Pemberton | fb4e98a | 2012-11-19 13:26:20 -0500 | [diff] [blame] | 326 | static int ehci_platform_remove(struct platform_device *dev) |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 327 | { |
| 328 | struct usb_hcd *hcd = platform_get_drvdata(dev); |
Jingoo Han | d4f09e2 | 2013-07-30 19:59:40 +0900 | [diff] [blame] | 329 | struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev); |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 330 | struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd); |
Jiancheng Xue | d0e08b0 | 2016-05-12 09:41:37 +0800 | [diff] [blame^] | 331 | int clk, rst; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 332 | |
| 333 | usb_remove_hcd(hcd); |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 334 | |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 335 | if (pdata->power_off) |
| 336 | pdata->power_off(dev); |
| 337 | |
Jiancheng Xue | d0e08b0 | 2016-05-12 09:41:37 +0800 | [diff] [blame^] | 338 | for (rst = 0; rst < EHCI_MAX_RSTS && priv->rsts[rst]; rst++) { |
| 339 | reset_control_assert(priv->rsts[rst]); |
| 340 | reset_control_put(priv->rsts[rst]); |
| 341 | } |
Boris BREZILLON | 2d87bbd | 2014-05-13 17:44:19 +0200 | [diff] [blame] | 342 | |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 343 | for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++) |
| 344 | clk_put(priv->clks[clk]); |
| 345 | |
| 346 | usb_put_hcd(hcd); |
| 347 | |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 348 | if (pdata == &ehci_platform_defaults) |
| 349 | dev->dev.platform_data = NULL; |
| 350 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 351 | return 0; |
| 352 | } |
| 353 | |
Wonhong Kwon | 5e4ccd9 | 2014-10-24 13:45:47 +0900 | [diff] [blame] | 354 | #ifdef CONFIG_PM_SLEEP |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 355 | static int ehci_platform_suspend(struct device *dev) |
| 356 | { |
| 357 | struct usb_hcd *hcd = dev_get_drvdata(dev); |
Jingoo Han | d4f09e2 | 2013-07-30 19:59:40 +0900 | [diff] [blame] | 358 | struct usb_ehci_pdata *pdata = dev_get_platdata(dev); |
Geliang Tang | 20db551 | 2015-12-23 21:26:52 +0800 | [diff] [blame] | 359 | struct platform_device *pdev = to_platform_device(dev); |
Alan Stern | c5cf921 | 2012-06-28 11:19:02 -0400 | [diff] [blame] | 360 | bool do_wakeup = device_may_wakeup(dev); |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 361 | int ret; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 362 | |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 363 | ret = ehci_suspend(hcd, do_wakeup); |
Vivek Gautam | e155b5b | 2014-04-10 15:58:02 +0530 | [diff] [blame] | 364 | if (ret) |
| 365 | return ret; |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 366 | |
| 367 | if (pdata->power_suspend) |
| 368 | pdata->power_suspend(pdev); |
| 369 | |
| 370 | return ret; |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 371 | } |
| 372 | |
| 373 | static int ehci_platform_resume(struct device *dev) |
| 374 | { |
| 375 | struct usb_hcd *hcd = dev_get_drvdata(dev); |
Jingoo Han | d4f09e2 | 2013-07-30 19:59:40 +0900 | [diff] [blame] | 376 | struct usb_ehci_pdata *pdata = dev_get_platdata(dev); |
Geliang Tang | 20db551 | 2015-12-23 21:26:52 +0800 | [diff] [blame] | 377 | struct platform_device *pdev = to_platform_device(dev); |
Alban Bedel | b4629a7 | 2015-08-04 10:59:17 +0200 | [diff] [blame] | 378 | struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd); |
Kuninori Morimoto | 04216be | 2012-08-06 18:08:39 -0700 | [diff] [blame] | 379 | |
| 380 | if (pdata->power_on) { |
| 381 | int err = pdata->power_on(pdev); |
| 382 | if (err < 0) |
| 383 | return err; |
| 384 | } |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 385 | |
Alban Bedel | b4629a7 | 2015-08-04 10:59:17 +0200 | [diff] [blame] | 386 | ehci_resume(hcd, priv->reset_on_resume); |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 387 | return 0; |
| 388 | } |
Wonhong Kwon | 5e4ccd9 | 2014-10-24 13:45:47 +0900 | [diff] [blame] | 389 | #endif /* CONFIG_PM_SLEEP */ |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 390 | |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 391 | static const struct of_device_id vt8500_ehci_ids[] = { |
| 392 | { .compatible = "via,vt8500-ehci", }, |
| 393 | { .compatible = "wm,prizm-ehci", }, |
Hans de Goede | 915974c | 2014-02-11 17:35:29 +0100 | [diff] [blame] | 394 | { .compatible = "generic-ehci", }, |
Andreas Herrmann | a95cfa6 | 2015-01-06 13:48:56 +0100 | [diff] [blame] | 395 | { .compatible = "cavium,octeon-6335-ehci", }, |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 396 | {} |
| 397 | }; |
Hans de Goede | a4aeb21 | 2014-02-07 16:36:41 +0100 | [diff] [blame] | 398 | MODULE_DEVICE_TABLE(of, vt8500_ehci_ids); |
Arnd Bergmann | f3bc64d | 2013-03-27 21:44:22 +0000 | [diff] [blame] | 399 | |
Jeremy Linton | 776c15d | 2015-08-19 16:36:32 -0500 | [diff] [blame] | 400 | static const struct acpi_device_id ehci_acpi_match[] = { |
| 401 | { "PNP0D20", 0 }, /* EHCI controller without debug */ |
| 402 | { } |
| 403 | }; |
| 404 | MODULE_DEVICE_TABLE(acpi, ehci_acpi_match); |
| 405 | |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 406 | static const struct platform_device_id ehci_platform_table[] = { |
| 407 | { "ehci-platform", 0 }, |
| 408 | { } |
| 409 | }; |
| 410 | MODULE_DEVICE_TABLE(platform, ehci_platform_table); |
| 411 | |
Wonhong Kwon | 5e4ccd9 | 2014-10-24 13:45:47 +0900 | [diff] [blame] | 412 | static SIMPLE_DEV_PM_OPS(ehci_platform_pm_ops, ehci_platform_suspend, |
| 413 | ehci_platform_resume); |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 414 | |
| 415 | static struct platform_driver ehci_platform_driver = { |
| 416 | .id_table = ehci_platform_table, |
| 417 | .probe = ehci_platform_probe, |
Bill Pemberton | 7690417 | 2012-11-19 13:21:08 -0500 | [diff] [blame] | 418 | .remove = ehci_platform_remove, |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 419 | .shutdown = usb_hcd_platform_shutdown, |
| 420 | .driver = { |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 421 | .name = "ehci-platform", |
| 422 | .pm = &ehci_platform_pm_ops, |
Sachin Kamat | ae5e5f7 | 2013-05-21 17:17:16 +0530 | [diff] [blame] | 423 | .of_match_table = vt8500_ehci_ids, |
Jeremy Linton | 776c15d | 2015-08-19 16:36:32 -0500 | [diff] [blame] | 424 | .acpi_match_table = ACPI_PTR(ehci_acpi_match), |
Hauke Mehrtens | 7a7a4a59 | 2012-03-13 01:04:48 +0100 | [diff] [blame] | 425 | } |
| 426 | }; |
Alan Stern | 99f9193 | 2012-11-01 11:13:08 -0400 | [diff] [blame] | 427 | |
| 428 | static int __init ehci_platform_init(void) |
| 429 | { |
| 430 | if (usb_disabled()) |
| 431 | return -ENODEV; |
| 432 | |
| 433 | pr_info("%s: " DRIVER_DESC "\n", hcd_name); |
| 434 | |
| 435 | ehci_init_driver(&ehci_platform_hc_driver, &platform_overrides); |
| 436 | return platform_driver_register(&ehci_platform_driver); |
| 437 | } |
| 438 | module_init(ehci_platform_init); |
| 439 | |
| 440 | static void __exit ehci_platform_cleanup(void) |
| 441 | { |
| 442 | platform_driver_unregister(&ehci_platform_driver); |
| 443 | } |
| 444 | module_exit(ehci_platform_cleanup); |
| 445 | |
| 446 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 447 | MODULE_AUTHOR("Hauke Mehrtens"); |
| 448 | MODULE_AUTHOR("Alan Stern"); |
| 449 | MODULE_LICENSE("GPL"); |