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