Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 Alexey Brodkin <abrodkin@synopsys.com> |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Masahiro Yamada | 4feefdc | 2016-01-25 15:00:36 +0900 | [diff] [blame] | 8 | #include <clk.h> |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 9 | #include <dm/ofnode.h> |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 10 | #include <generic-phy.h> |
Masahiro Yamada | 8824cfc | 2016-09-21 11:29:02 +0900 | [diff] [blame] | 11 | #include <reset.h> |
Marek Vasut | 643cacb | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 12 | #include <asm/io.h> |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 13 | #include <dm.h> |
| 14 | #include "ehci.h" |
| 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 | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 26 | int clock_count; |
| 27 | int reset_count; |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | static int ehci_usb_probe(struct udevice *dev) |
| 31 | { |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 32 | struct generic_ehci *priv = dev_get_priv(dev); |
Marek Vasut | 643cacb | 2016-01-23 21:04:46 +0100 | [diff] [blame] | 33 | struct ehci_hccr *hccr; |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 34 | struct ehci_hcor *hcor; |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 35 | int i, err, ret, clock_nb, reset_nb; |
Masahiro Yamada | 4feefdc | 2016-01-25 15:00:36 +0900 | [diff] [blame] | 36 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 37 | err = 0; |
| 38 | priv->clock_count = 0; |
| 39 | clock_nb = ofnode_count_phandle_with_args(dev_ofnode(dev), "clocks", |
| 40 | "#clock-cells"); |
| 41 | if (clock_nb > 0) { |
| 42 | priv->clocks = devm_kcalloc(dev, clock_nb, sizeof(struct clk), |
| 43 | GFP_KERNEL); |
| 44 | if (!priv->clocks) |
| 45 | return -ENOMEM; |
Masahiro Yamada | 4feefdc | 2016-01-25 15:00:36 +0900 | [diff] [blame] | 46 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 47 | for (i = 0; i < clock_nb; i++) { |
| 48 | err = clk_get_by_index(dev, i, &priv->clocks[i]); |
| 49 | |
| 50 | if (err < 0) |
| 51 | break; |
| 52 | err = clk_enable(&priv->clocks[i]); |
| 53 | if (err) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 54 | pr_err("failed to enable clock %d\n", i); |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 55 | clk_free(&priv->clocks[i]); |
| 56 | goto clk_err; |
| 57 | } |
| 58 | priv->clock_count++; |
| 59 | } |
| 60 | } else { |
| 61 | if (clock_nb != -ENOENT) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 62 | pr_err("failed to get clock phandle(%d)\n", clock_nb); |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 63 | return clock_nb; |
| 64 | } |
Masahiro Yamada | 4feefdc | 2016-01-25 15:00:36 +0900 | [diff] [blame] | 65 | } |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 66 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 67 | priv->reset_count = 0; |
| 68 | reset_nb = ofnode_count_phandle_with_args(dev_ofnode(dev), "resets", |
| 69 | "#reset-cells"); |
| 70 | if (reset_nb > 0) { |
| 71 | priv->resets = devm_kcalloc(dev, reset_nb, |
| 72 | sizeof(struct reset_ctl), |
| 73 | GFP_KERNEL); |
| 74 | if (!priv->resets) |
| 75 | return -ENOMEM; |
Masahiro Yamada | 8824cfc | 2016-09-21 11:29:02 +0900 | [diff] [blame] | 76 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 77 | for (i = 0; i < reset_nb; i++) { |
| 78 | err = reset_get_by_index(dev, i, &priv->resets[i]); |
| 79 | if (err < 0) |
| 80 | break; |
| 81 | |
| 82 | if (reset_deassert(&priv->resets[i])) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 83 | pr_err("failed to deassert reset %d\n", i); |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 84 | reset_free(&priv->resets[i]); |
| 85 | goto reset_err; |
| 86 | } |
| 87 | priv->reset_count++; |
| 88 | } |
| 89 | } else { |
| 90 | if (reset_nb != -ENOENT) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 91 | pr_err("failed to get reset phandle(%d)\n", reset_nb); |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 92 | goto clk_err; |
| 93 | } |
Masahiro Yamada | 8824cfc | 2016-09-21 11:29:02 +0900 | [diff] [blame] | 94 | } |
| 95 | |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 96 | err = generic_phy_get_by_index(dev, 0, &priv->phy); |
| 97 | if (err) { |
| 98 | if (err != -ENOENT) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 99 | pr_err("failed to get usb phy\n"); |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 100 | goto reset_err; |
| 101 | } |
Patrice Chotard | 4b3928a | 2017-07-24 17:07:04 +0200 | [diff] [blame] | 102 | } else { |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 103 | |
Patrice Chotard | 4b3928a | 2017-07-24 17:07:04 +0200 | [diff] [blame] | 104 | err = generic_phy_init(&priv->phy); |
| 105 | if (err) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 106 | pr_err("failed to init usb phy\n"); |
Patrice Chotard | 4b3928a | 2017-07-24 17:07:04 +0200 | [diff] [blame] | 107 | goto reset_err; |
| 108 | } |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 109 | } |
| 110 | |
Philipp Tomsich | 6e652e3 | 2017-09-12 17:32:28 +0200 | [diff] [blame] | 111 | hccr = map_physmem(dev_read_addr(dev), 0x100, MAP_NOCACHE); |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 112 | hcor = (struct ehci_hcor *)((uintptr_t)hccr + |
| 113 | HC_LENGTH(ehci_readl(&hccr->cr_capbase))); |
| 114 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 115 | err = ehci_register(dev, hccr, hcor, NULL, 0, USB_INIT_HOST); |
| 116 | if (err) |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 117 | goto phy_err; |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 118 | |
| 119 | return 0; |
| 120 | |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 121 | phy_err: |
| 122 | if (generic_phy_valid(&priv->phy)) { |
| 123 | ret = generic_phy_exit(&priv->phy); |
| 124 | if (ret) |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 125 | pr_err("failed to release phy\n"); |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 126 | } |
| 127 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 128 | reset_err: |
| 129 | ret = reset_release_all(priv->resets, priv->reset_count); |
| 130 | if (ret) |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 131 | pr_err("failed to assert all resets\n"); |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 132 | clk_err: |
| 133 | ret = clk_release_all(priv->clocks, priv->clock_count); |
| 134 | if (ret) |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 135 | pr_err("failed to disable all clocks\n"); |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 136 | |
| 137 | return err; |
| 138 | } |
| 139 | |
| 140 | static int ehci_usb_remove(struct udevice *dev) |
| 141 | { |
| 142 | struct generic_ehci *priv = dev_get_priv(dev); |
| 143 | int ret; |
| 144 | |
| 145 | ret = ehci_deregister(dev); |
| 146 | if (ret) |
| 147 | return ret; |
| 148 | |
Patrice Chotard | 0d0ba1a | 2017-07-18 11:57:11 +0200 | [diff] [blame] | 149 | if (generic_phy_valid(&priv->phy)) { |
| 150 | ret = generic_phy_exit(&priv->phy); |
| 151 | if (ret) |
| 152 | return ret; |
| 153 | } |
| 154 | |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 155 | ret = reset_release_all(priv->resets, priv->reset_count); |
| 156 | if (ret) |
| 157 | return ret; |
| 158 | |
| 159 | return clk_release_all(priv->clocks, priv->clock_count); |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 160 | } |
| 161 | |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 162 | static const struct udevice_id ehci_usb_ids[] = { |
| 163 | { .compatible = "generic-ehci" }, |
| 164 | { } |
| 165 | }; |
| 166 | |
| 167 | U_BOOT_DRIVER(ehci_generic) = { |
| 168 | .name = "ehci_generic", |
| 169 | .id = UCLASS_USB, |
| 170 | .of_match = ehci_usb_ids, |
| 171 | .probe = ehci_usb_probe, |
Patrice Chotard | a1cee8e | 2017-07-18 11:57:10 +0200 | [diff] [blame] | 172 | .remove = ehci_usb_remove, |
Alexey Brodkin | 90fbb28 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 173 | .ops = &ehci_usb_ops, |
| 174 | .priv_auto_alloc_size = sizeof(struct generic_ehci), |
| 175 | .flags = DM_FLAG_ALLOC_PRIV_DMA, |
| 176 | }; |