Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Alexey Brodkin <abrodkin@synopsys.com> |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Masahiro Yamada | 4feefdc | 2016-01-25 15:00:36 +0900 | [diff] [blame] | 7 | #include <clk.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 8 | #include <log.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 9 | #include <dm/device_compat.h> |
Simon Glass | 61b29b8 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 10 | #include <dm/devres.h> |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 11 | #include <dm/ofnode.h> |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 12 | #include <generic-phy.h> |
Masahiro Yamada | 8824cfc | 2016-09-21 11:29:02 +0900 | [diff] [blame] | 13 | #include <reset.h> |
Marek Vasut | 643cacb | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 14 | #include <asm/io.h> |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 15 | #include <dm.h> |
| 16 | #include "ehci.h" |
Patrice Chotard | 5c349e1 | 2018-09-04 11:37:25 +0200 | [diff] [blame] | 17 | #include <power/regulator.h> |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 18 | |
| 19 | /* |
| 20 | * Even though here we don't explicitly use "struct ehci_ctrl" |
| 21 | * ehci_register() expects it to be the first thing that resides in |
| 22 | * device's private data. |
| 23 | */ |
| 24 | struct generic_ehci { |
| 25 | struct ehci_ctrl ctrl; |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 26 | struct clk *clocks; |
| 27 | struct reset_ctl *resets; |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 28 | struct phy phy; |
Patrice Chotard | 5c349e1 | 2018-09-04 11:37:25 +0200 | [diff] [blame] | 29 | #ifdef CONFIG_DM_REGULATOR |
| 30 | struct udevice *vbus_supply; |
| 31 | #endif |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 32 | int clock_count; |
| 33 | int reset_count; |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 34 | }; |
| 35 | |
Patrice Chotard | 5c349e1 | 2018-09-04 11:37:25 +0200 | [diff] [blame] | 36 | #ifdef CONFIG_DM_REGULATOR |
| 37 | static int ehci_enable_vbus_supply(struct udevice *dev) |
| 38 | { |
| 39 | struct generic_ehci *priv = dev_get_priv(dev); |
| 40 | int ret; |
| 41 | |
| 42 | ret = device_get_supply_regulator(dev, "vbus-supply", |
| 43 | &priv->vbus_supply); |
| 44 | if (ret && ret != -ENOENT) |
| 45 | return ret; |
| 46 | |
| 47 | if (priv->vbus_supply) { |
| 48 | ret = regulator_set_enable(priv->vbus_supply, true); |
| 49 | if (ret) { |
| 50 | dev_err(dev, "Error enabling VBUS supply\n"); |
| 51 | return ret; |
| 52 | } |
| 53 | } else { |
| 54 | dev_dbg(dev, "No vbus supply\n"); |
| 55 | } |
| 56 | |
| 57 | return 0; |
| 58 | } |
| 59 | |
| 60 | static int ehci_disable_vbus_supply(struct generic_ehci *priv) |
| 61 | { |
| 62 | if (priv->vbus_supply) |
| 63 | return regulator_set_enable(priv->vbus_supply, false); |
| 64 | else |
| 65 | return 0; |
| 66 | } |
| 67 | #else |
| 68 | static int ehci_enable_vbus_supply(struct udevice *dev) |
| 69 | { |
| 70 | return 0; |
| 71 | } |
| 72 | |
| 73 | static int ehci_disable_vbus_supply(struct generic_ehci *priv) |
| 74 | { |
| 75 | return 0; |
| 76 | } |
| 77 | #endif |
| 78 | |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 79 | static int ehci_usb_probe(struct udevice *dev) |
| 80 | { |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 81 | struct generic_ehci *priv = dev_get_priv(dev); |
Marek Vasut | 643cacb | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 82 | struct ehci_hccr *hccr; |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 83 | struct ehci_hcor *hcor; |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 84 | int i, err, ret, clock_nb, reset_nb; |
Masahiro Yamada | 4feefdc | 2016-01-25 15:00:36 +0900 | [diff] [blame] | 85 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 86 | err = 0; |
| 87 | priv->clock_count = 0; |
| 88 | clock_nb = ofnode_count_phandle_with_args(dev_ofnode(dev), "clocks", |
| 89 | "#clock-cells"); |
| 90 | if (clock_nb > 0) { |
| 91 | priv->clocks = devm_kcalloc(dev, clock_nb, sizeof(struct clk), |
| 92 | GFP_KERNEL); |
| 93 | if (!priv->clocks) |
| 94 | return -ENOMEM; |
Masahiro Yamada | 4feefdc | 2016-01-25 15:00:36 +0900 | [diff] [blame] | 95 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 96 | for (i = 0; i < clock_nb; i++) { |
| 97 | err = clk_get_by_index(dev, i, &priv->clocks[i]); |
| 98 | |
| 99 | if (err < 0) |
| 100 | break; |
| 101 | err = clk_enable(&priv->clocks[i]); |
Kever Yang | 54a0c7b | 2019-08-28 16:23:46 +0800 | [diff] [blame] | 102 | if (err && err != -ENOSYS) { |
Patrice Chotard | df7777a | 2018-03-14 17:48:55 +0100 | [diff] [blame] | 103 | dev_err(dev, "failed to enable clock %d\n", i); |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 104 | clk_free(&priv->clocks[i]); |
| 105 | goto clk_err; |
| 106 | } |
| 107 | priv->clock_count++; |
| 108 | } |
| 109 | } else { |
| 110 | if (clock_nb != -ENOENT) { |
Patrice Chotard | df7777a | 2018-03-14 17:48:55 +0100 | [diff] [blame] | 111 | dev_err(dev, "failed to get clock phandle(%d)\n", |
| 112 | clock_nb); |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 113 | return clock_nb; |
| 114 | } |
Masahiro Yamada | 4feefdc | 2016-01-25 15:00:36 +0900 | [diff] [blame] | 115 | } |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 116 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 117 | priv->reset_count = 0; |
| 118 | reset_nb = ofnode_count_phandle_with_args(dev_ofnode(dev), "resets", |
| 119 | "#reset-cells"); |
| 120 | if (reset_nb > 0) { |
| 121 | priv->resets = devm_kcalloc(dev, reset_nb, |
| 122 | sizeof(struct reset_ctl), |
| 123 | GFP_KERNEL); |
| 124 | if (!priv->resets) |
| 125 | return -ENOMEM; |
Masahiro Yamada | 8824cfc | 2016-09-21 11:29:02 +0900 | [diff] [blame] | 126 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 127 | for (i = 0; i < reset_nb; i++) { |
| 128 | err = reset_get_by_index(dev, i, &priv->resets[i]); |
| 129 | if (err < 0) |
| 130 | break; |
| 131 | |
| 132 | if (reset_deassert(&priv->resets[i])) { |
Patrice Chotard | df7777a | 2018-03-14 17:48:55 +0100 | [diff] [blame] | 133 | dev_err(dev, "failed to deassert reset %d\n", |
| 134 | i); |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 135 | reset_free(&priv->resets[i]); |
| 136 | goto reset_err; |
| 137 | } |
| 138 | priv->reset_count++; |
| 139 | } |
| 140 | } else { |
| 141 | if (reset_nb != -ENOENT) { |
Patrice Chotard | df7777a | 2018-03-14 17:48:55 +0100 | [diff] [blame] | 142 | dev_err(dev, "failed to get reset phandle(%d)\n", |
| 143 | reset_nb); |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 144 | goto clk_err; |
| 145 | } |
Masahiro Yamada | 8824cfc | 2016-09-21 11:29:02 +0900 | [diff] [blame] | 146 | } |
| 147 | |
Patrice Chotard | 5c349e1 | 2018-09-04 11:37:25 +0200 | [diff] [blame] | 148 | err = ehci_enable_vbus_supply(dev); |
Patrice Chotard | 20f06a4 | 2018-03-14 17:48:54 +0100 | [diff] [blame] | 149 | if (err) |
Patrice Chotard | 20f06a4 | 2018-03-14 17:48:54 +0100 | [diff] [blame] | 150 | goto reset_err; |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 151 | |
Patrice Chotard | 5c349e1 | 2018-09-04 11:37:25 +0200 | [diff] [blame] | 152 | err = ehci_setup_phy(dev, &priv->phy, 0); |
| 153 | if (err) |
| 154 | goto regulator_err; |
| 155 | |
Philipp Tomsich | 6e652e3 | 2017-09-12 17:32:28 +0200 | [diff] [blame] | 156 | hccr = map_physmem(dev_read_addr(dev), 0x100, MAP_NOCACHE); |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 157 | hcor = (struct ehci_hcor *)((uintptr_t)hccr + |
| 158 | HC_LENGTH(ehci_readl(&hccr->cr_capbase))); |
| 159 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 160 | err = ehci_register(dev, hccr, hcor, NULL, 0, USB_INIT_HOST); |
| 161 | if (err) |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 162 | goto phy_err; |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 163 | |
| 164 | return 0; |
| 165 | |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 166 | phy_err: |
Marek Vasut | b43cdf9 | 2018-08-08 14:29:55 +0200 | [diff] [blame] | 167 | ret = ehci_shutdown_phy(dev, &priv->phy); |
Patrice Chotard | 20f06a4 | 2018-03-14 17:48:54 +0100 | [diff] [blame] | 168 | if (ret) |
| 169 | dev_err(dev, "failed to shutdown usb phy\n"); |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 170 | |
Patrice Chotard | 5c349e1 | 2018-09-04 11:37:25 +0200 | [diff] [blame] | 171 | regulator_err: |
| 172 | ret = ehci_disable_vbus_supply(priv); |
| 173 | if (ret) |
| 174 | dev_err(dev, "failed to disable VBUS supply\n"); |
| 175 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 176 | reset_err: |
| 177 | ret = reset_release_all(priv->resets, priv->reset_count); |
| 178 | if (ret) |
Patrice Chotard | df7777a | 2018-03-14 17:48:55 +0100 | [diff] [blame] | 179 | dev_err(dev, "failed to assert all resets\n"); |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 180 | clk_err: |
| 181 | ret = clk_release_all(priv->clocks, priv->clock_count); |
| 182 | if (ret) |
Patrice Chotard | df7777a | 2018-03-14 17:48:55 +0100 | [diff] [blame] | 183 | dev_err(dev, "failed to disable all clocks\n"); |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 184 | |
| 185 | return err; |
| 186 | } |
| 187 | |
| 188 | static int ehci_usb_remove(struct udevice *dev) |
| 189 | { |
| 190 | struct generic_ehci *priv = dev_get_priv(dev); |
| 191 | int ret; |
| 192 | |
| 193 | ret = ehci_deregister(dev); |
| 194 | if (ret) |
| 195 | return ret; |
| 196 | |
Marek Vasut | b43cdf9 | 2018-08-08 14:29:55 +0200 | [diff] [blame] | 197 | ret = ehci_shutdown_phy(dev, &priv->phy); |
Patrice Chotard | 20f06a4 | 2018-03-14 17:48:54 +0100 | [diff] [blame] | 198 | if (ret) |
| 199 | return ret; |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 200 | |
Patrice Chotard | 5c349e1 | 2018-09-04 11:37:25 +0200 | [diff] [blame] | 201 | ret = ehci_disable_vbus_supply(priv); |
| 202 | if (ret) |
| 203 | return ret; |
| 204 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 205 | ret = reset_release_all(priv->resets, priv->reset_count); |
| 206 | if (ret) |
| 207 | return ret; |
| 208 | |
| 209 | return clk_release_all(priv->clocks, priv->clock_count); |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 210 | } |
| 211 | |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 212 | static const struct udevice_id ehci_usb_ids[] = { |
| 213 | { .compatible = "generic-ehci" }, |
| 214 | { } |
| 215 | }; |
| 216 | |
| 217 | U_BOOT_DRIVER(ehci_generic) = { |
| 218 | .name = "ehci_generic", |
| 219 | .id = UCLASS_USB, |
| 220 | .of_match = ehci_usb_ids, |
| 221 | .probe = ehci_usb_probe, |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 222 | .remove = ehci_usb_remove, |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 223 | .ops = &ehci_usb_ops, |
| 224 | .priv_auto_alloc_size = sizeof(struct generic_ehci), |
| 225 | .flags = DM_FLAG_ALLOC_PRIV_DMA, |
| 226 | }; |