blob: 5bdd7995b9051f789b25267b273f6d816945312c [file] [log] [blame]
Alexey Brodkinfee331f2015-12-14 17:18:50 +03001/*
2 * Copyright (C) 2015 Alexey Brodkin <abrodkin@synopsys.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
Patrice Chotard155d9f62017-07-18 11:57:12 +02008#include <clk.h>
Alexey Brodkinfee331f2015-12-14 17:18:50 +03009#include <dm.h>
Patrice Chotard155d9f62017-07-18 11:57:12 +020010#include <dm/ofnode.h>
Patrice Chotard28df1cf2017-07-18 11:57:14 +020011#include <generic-phy.h>
Patrice Chotard8a51b4b2017-07-18 11:57:13 +020012#include <reset.h>
Alexey Brodkinfee331f2015-12-14 17:18:50 +030013#include "ohci.h"
14
15#if !defined(CONFIG_USB_OHCI_NEW)
16# error "Generic OHCI driver requires CONFIG_USB_OHCI_NEW"
17#endif
18
19struct generic_ohci {
20 ohci_t ohci;
Patrice Chotard155d9f62017-07-18 11:57:12 +020021 struct clk *clocks; /* clock list */
Patrice Chotard8a51b4b2017-07-18 11:57:13 +020022 struct reset_ctl *resets; /* reset list */
Patrice Chotard28df1cf2017-07-18 11:57:14 +020023 struct phy phy;
Patrice Chotard155d9f62017-07-18 11:57:12 +020024 int clock_count; /* number of clock in clock list */
Patrice Chotard8a51b4b2017-07-18 11:57:13 +020025 int reset_count; /* number of reset in reset list */
Alexey Brodkinfee331f2015-12-14 17:18:50 +030026};
27
Patrice Chotardcab4d482018-03-14 17:48:57 +010028static int ohci_setup_phy(struct udevice *dev, int index)
29{
30 struct generic_ohci *priv = dev_get_priv(dev);
31 int ret;
32
33 ret = generic_phy_get_by_index(dev, index, &priv->phy);
34 if (ret) {
35 if (ret != -ENOENT) {
36 dev_err(dev, "failed to get usb phy\n");
37 return ret;
38 }
39 } else {
40 ret = generic_phy_init(&priv->phy);
41 if (ret) {
42 dev_err(dev, "failed to init usb phy\n");
43 return ret;
44 }
45
46 ret = generic_phy_power_on(&priv->phy);
47 if (ret) {
48 dev_err(dev, "failed to power on usb phy\n");
49 return generic_phy_exit(&priv->phy);
50 }
51 }
52
53 return 0;
54}
55
56static int ohci_shutdown_phy(struct udevice *dev)
57{
58 struct generic_ohci *priv = dev_get_priv(dev);
59 int ret = 0;
60
61 if (generic_phy_valid(&priv->phy)) {
62 ret = generic_phy_power_off(&priv->phy);
63 if (ret) {
64 dev_err(dev, "failed to power off usb phy\n");
65 return ret;
66 }
67
68 ret = generic_phy_exit(&priv->phy);
69 if (ret) {
70 dev_err(dev, "failed to power off usb phy\n");
71 return ret;
72 }
73 }
74
75 return 0;
76}
77
Alexey Brodkinfee331f2015-12-14 17:18:50 +030078static int ohci_usb_probe(struct udevice *dev)
79{
Simon Glassa821c4a2017-05-17 17:18:05 -060080 struct ohci_regs *regs = (struct ohci_regs *)devfdt_get_addr(dev);
Patrice Chotard155d9f62017-07-18 11:57:12 +020081 struct generic_ohci *priv = dev_get_priv(dev);
Patrice Chotard8a51b4b2017-07-18 11:57:13 +020082 int i, err, ret, clock_nb, reset_nb;
Alexey Brodkinfee331f2015-12-14 17:18:50 +030083
Patrice Chotard155d9f62017-07-18 11:57:12 +020084 err = 0;
85 priv->clock_count = 0;
86 clock_nb = dev_count_phandle_with_args(dev, "clocks", "#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;
92
93 for (i = 0; i < clock_nb; i++) {
94 err = clk_get_by_index(dev, i, &priv->clocks[i]);
95 if (err < 0)
96 break;
97
98 err = clk_enable(&priv->clocks[i]);
99 if (err) {
Patrice Chotard6048d422018-03-14 17:48:58 +0100100 dev_err(dev, "failed to enable clock %d\n", i);
Patrice Chotard155d9f62017-07-18 11:57:12 +0200101 clk_free(&priv->clocks[i]);
102 goto clk_err;
103 }
104 priv->clock_count++;
105 }
106 } else if (clock_nb != -ENOENT) {
Patrice Chotard6048d422018-03-14 17:48:58 +0100107 dev_err(dev, "failed to get clock phandle(%d)\n", clock_nb);
Patrice Chotard155d9f62017-07-18 11:57:12 +0200108 return clock_nb;
109 }
110
Patrice Chotard8a51b4b2017-07-18 11:57:13 +0200111 priv->reset_count = 0;
112 reset_nb = dev_count_phandle_with_args(dev, "resets", "#reset-cells");
113 if (reset_nb > 0) {
114 priv->resets = devm_kcalloc(dev, reset_nb,
115 sizeof(struct reset_ctl),
116 GFP_KERNEL);
117 if (!priv->resets)
118 return -ENOMEM;
119
120 for (i = 0; i < reset_nb; i++) {
121 err = reset_get_by_index(dev, i, &priv->resets[i]);
122 if (err < 0)
123 break;
124
125 err = reset_deassert(&priv->resets[i]);
126 if (err) {
Patrice Chotard6048d422018-03-14 17:48:58 +0100127 dev_err(dev, "failed to deassert reset %d\n", i);
Patrice Chotard8a51b4b2017-07-18 11:57:13 +0200128 reset_free(&priv->resets[i]);
129 goto reset_err;
130 }
131 priv->reset_count++;
132 }
133 } else if (reset_nb != -ENOENT) {
Patrice Chotard6048d422018-03-14 17:48:58 +0100134 dev_err(dev, "failed to get reset phandle(%d)\n", reset_nb);
Patrice Chotard8a51b4b2017-07-18 11:57:13 +0200135 goto clk_err;
136 }
137
Patrice Chotardcab4d482018-03-14 17:48:57 +0100138 err = ohci_setup_phy(dev, 0);
139 if (err)
Patrice Chotardcab4d482018-03-14 17:48:57 +0100140 goto reset_err;
Patrice Chotard28df1cf2017-07-18 11:57:14 +0200141
Patrice Chotard155d9f62017-07-18 11:57:12 +0200142 err = ohci_register(dev, regs);
143 if (err)
Patrice Chotard28df1cf2017-07-18 11:57:14 +0200144 goto phy_err;
Patrice Chotard155d9f62017-07-18 11:57:12 +0200145
146 return 0;
147
Patrice Chotard28df1cf2017-07-18 11:57:14 +0200148phy_err:
Patrice Chotardcab4d482018-03-14 17:48:57 +0100149 ret = ohci_shutdown_phy(dev);
150 if (ret)
151 dev_err(dev, "failed to shutdown usb phy\n");
Patrice Chotard28df1cf2017-07-18 11:57:14 +0200152
Patrice Chotard8a51b4b2017-07-18 11:57:13 +0200153reset_err:
154 ret = reset_release_all(priv->resets, priv->reset_count);
155 if (ret)
Patrice Chotard6048d422018-03-14 17:48:58 +0100156 dev_err(dev, "failed to assert all resets\n");
Patrice Chotard155d9f62017-07-18 11:57:12 +0200157clk_err:
158 ret = clk_release_all(priv->clocks, priv->clock_count);
159 if (ret)
Patrice Chotard6048d422018-03-14 17:48:58 +0100160 dev_err(dev, "failed to disable all clocks\n");
Patrice Chotard155d9f62017-07-18 11:57:12 +0200161
162 return err;
Alexey Brodkinfee331f2015-12-14 17:18:50 +0300163}
164
165static int ohci_usb_remove(struct udevice *dev)
166{
Patrice Chotard155d9f62017-07-18 11:57:12 +0200167 struct generic_ohci *priv = dev_get_priv(dev);
168 int ret;
169
170 ret = ohci_deregister(dev);
171 if (ret)
172 return ret;
173
Patrice Chotardcab4d482018-03-14 17:48:57 +0100174 ret = ohci_shutdown_phy(dev);
175 if (ret)
176 return ret;
Patrice Chotard28df1cf2017-07-18 11:57:14 +0200177
Patrice Chotard8a51b4b2017-07-18 11:57:13 +0200178 ret = reset_release_all(priv->resets, priv->reset_count);
179 if (ret)
180 return ret;
181
Patrice Chotard155d9f62017-07-18 11:57:12 +0200182 return clk_release_all(priv->clocks, priv->clock_count);
Alexey Brodkinfee331f2015-12-14 17:18:50 +0300183}
184
185static const struct udevice_id ohci_usb_ids[] = {
186 { .compatible = "generic-ohci" },
187 { }
188};
189
190U_BOOT_DRIVER(ohci_generic) = {
191 .name = "ohci_generic",
192 .id = UCLASS_USB,
193 .of_match = ohci_usb_ids,
194 .probe = ohci_usb_probe,
195 .remove = ohci_usb_remove,
196 .ops = &ohci_usb_ops,
197 .priv_auto_alloc_size = sizeof(struct generic_ohci),
198 .flags = DM_FLAG_ALLOC_PRIV_DMA,
199};