blob: 2d8d38ce9a40e22872e5c64ddad11afe19ffc114 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Alexey Brodkinfee331f2015-12-14 17:18:50 +03002/*
3 * Copyright (C) 2015 Alexey Brodkin <abrodkin@synopsys.com>
Alexey Brodkinfee331f2015-12-14 17:18:50 +03004 */
5
6#include <common.h>
Patrice Chotard155d9f62017-07-18 11:57:12 +02007#include <clk.h>
Alexey Brodkinfee331f2015-12-14 17:18:50 +03008#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070010#include <dm/device_compat.h>
Simon Glass61b29b82020-02-03 07:36:15 -070011#include <dm/devres.h>
Patrice Chotard155d9f62017-07-18 11:57:12 +020012#include <dm/ofnode.h>
Patrice Chotard28df1cf2017-07-18 11:57:14 +020013#include <generic-phy.h>
Patrice Chotard8a51b4b2017-07-18 11:57:13 +020014#include <reset.h>
Alexey Brodkinfee331f2015-12-14 17:18:50 +030015#include "ohci.h"
16
Alexey Brodkinfee331f2015-12-14 17:18:50 +030017struct generic_ohci {
18 ohci_t ohci;
Patrice Chotard155d9f62017-07-18 11:57:12 +020019 struct clk *clocks; /* clock list */
Patrice Chotard8a51b4b2017-07-18 11:57:13 +020020 struct reset_ctl *resets; /* reset list */
Patrice Chotard28df1cf2017-07-18 11:57:14 +020021 struct phy phy;
Patrice Chotard155d9f62017-07-18 11:57:12 +020022 int clock_count; /* number of clock in clock list */
Patrice Chotard8a51b4b2017-07-18 11:57:13 +020023 int reset_count; /* number of reset in reset list */
Alexey Brodkinfee331f2015-12-14 17:18:50 +030024};
25
26static int ohci_usb_probe(struct udevice *dev)
27{
Masahiro Yamada8613c8d2020-07-17 14:36:46 +090028 struct ohci_regs *regs = dev_read_addr_ptr(dev);
Patrice Chotard155d9f62017-07-18 11:57:12 +020029 struct generic_ohci *priv = dev_get_priv(dev);
Patrice Chotard8a51b4b2017-07-18 11:57:13 +020030 int i, err, ret, clock_nb, reset_nb;
Alexey Brodkinfee331f2015-12-14 17:18:50 +030031
Patrice Chotard155d9f62017-07-18 11:57:12 +020032 err = 0;
33 priv->clock_count = 0;
Patrick Delaunay89f68302020-09-25 09:41:14 +020034 clock_nb = dev_count_phandle_with_args(dev, "clocks", "#clock-cells",
35 0);
Patrice Chotard155d9f62017-07-18 11:57:12 +020036 if (clock_nb > 0) {
37 priv->clocks = devm_kcalloc(dev, clock_nb, sizeof(struct clk),
38 GFP_KERNEL);
39 if (!priv->clocks)
40 return -ENOMEM;
41
42 for (i = 0; i < clock_nb; i++) {
43 err = clk_get_by_index(dev, i, &priv->clocks[i]);
44 if (err < 0)
45 break;
46
47 err = clk_enable(&priv->clocks[i]);
Kever Yang6578db82019-08-28 16:23:47 +080048 if (err && err != -ENOSYS) {
Patrice Chotard6048d422018-03-14 17:48:58 +010049 dev_err(dev, "failed to enable clock %d\n", i);
Patrice Chotard155d9f62017-07-18 11:57:12 +020050 clk_free(&priv->clocks[i]);
51 goto clk_err;
52 }
53 priv->clock_count++;
54 }
55 } else if (clock_nb != -ENOENT) {
Patrice Chotard6048d422018-03-14 17:48:58 +010056 dev_err(dev, "failed to get clock phandle(%d)\n", clock_nb);
Patrice Chotard155d9f62017-07-18 11:57:12 +020057 return clock_nb;
58 }
59
Patrice Chotard8a51b4b2017-07-18 11:57:13 +020060 priv->reset_count = 0;
Patrick Delaunay89f68302020-09-25 09:41:14 +020061 reset_nb = dev_count_phandle_with_args(dev, "resets", "#reset-cells",
62 0);
Patrice Chotard8a51b4b2017-07-18 11:57:13 +020063 if (reset_nb > 0) {
64 priv->resets = devm_kcalloc(dev, reset_nb,
65 sizeof(struct reset_ctl),
66 GFP_KERNEL);
67 if (!priv->resets)
68 return -ENOMEM;
69
70 for (i = 0; i < reset_nb; i++) {
71 err = reset_get_by_index(dev, i, &priv->resets[i]);
72 if (err < 0)
73 break;
74
75 err = reset_deassert(&priv->resets[i]);
76 if (err) {
Patrice Chotard6048d422018-03-14 17:48:58 +010077 dev_err(dev, "failed to deassert reset %d\n", i);
Patrice Chotard8a51b4b2017-07-18 11:57:13 +020078 reset_free(&priv->resets[i]);
79 goto reset_err;
80 }
81 priv->reset_count++;
82 }
83 } else if (reset_nb != -ENOENT) {
Patrice Chotard6048d422018-03-14 17:48:58 +010084 dev_err(dev, "failed to get reset phandle(%d)\n", reset_nb);
Patrice Chotard8a51b4b2017-07-18 11:57:13 +020085 goto clk_err;
86 }
87
Patrice Chotard10005002022-09-06 08:15:27 +020088 err = generic_setup_phy(dev, &priv->phy, 0);
Patrice Chotardcab4d482018-03-14 17:48:57 +010089 if (err)
Patrice Chotardcab4d482018-03-14 17:48:57 +010090 goto reset_err;
Patrice Chotard28df1cf2017-07-18 11:57:14 +020091
Patrice Chotard155d9f62017-07-18 11:57:12 +020092 err = ohci_register(dev, regs);
93 if (err)
Patrice Chotard28df1cf2017-07-18 11:57:14 +020094 goto phy_err;
Patrice Chotard155d9f62017-07-18 11:57:12 +020095
96 return 0;
97
Patrice Chotard28df1cf2017-07-18 11:57:14 +020098phy_err:
Patrice Chotard10005002022-09-06 08:15:27 +020099 ret = generic_shutdown_phy(&priv->phy);
Patrice Chotardcab4d482018-03-14 17:48:57 +0100100 if (ret)
101 dev_err(dev, "failed to shutdown usb phy\n");
Patrice Chotard28df1cf2017-07-18 11:57:14 +0200102
Patrice Chotard8a51b4b2017-07-18 11:57:13 +0200103reset_err:
104 ret = reset_release_all(priv->resets, priv->reset_count);
105 if (ret)
Patrice Chotard6048d422018-03-14 17:48:58 +0100106 dev_err(dev, "failed to assert all resets\n");
Patrice Chotard155d9f62017-07-18 11:57:12 +0200107clk_err:
108 ret = clk_release_all(priv->clocks, priv->clock_count);
109 if (ret)
Patrice Chotard6048d422018-03-14 17:48:58 +0100110 dev_err(dev, "failed to disable all clocks\n");
Patrice Chotard155d9f62017-07-18 11:57:12 +0200111
112 return err;
Alexey Brodkinfee331f2015-12-14 17:18:50 +0300113}
114
115static int ohci_usb_remove(struct udevice *dev)
116{
Patrice Chotard155d9f62017-07-18 11:57:12 +0200117 struct generic_ohci *priv = dev_get_priv(dev);
118 int ret;
119
120 ret = ohci_deregister(dev);
121 if (ret)
122 return ret;
123
Patrice Chotard10005002022-09-06 08:15:27 +0200124 ret = generic_shutdown_phy(&priv->phy);
Patrice Chotardcab4d482018-03-14 17:48:57 +0100125 if (ret)
126 return ret;
Patrice Chotard28df1cf2017-07-18 11:57:14 +0200127
Patrice Chotard8a51b4b2017-07-18 11:57:13 +0200128 ret = reset_release_all(priv->resets, priv->reset_count);
129 if (ret)
130 return ret;
131
Patrice Chotard155d9f62017-07-18 11:57:12 +0200132 return clk_release_all(priv->clocks, priv->clock_count);
Alexey Brodkinfee331f2015-12-14 17:18:50 +0300133}
134
135static const struct udevice_id ohci_usb_ids[] = {
136 { .compatible = "generic-ohci" },
137 { }
138};
139
140U_BOOT_DRIVER(ohci_generic) = {
141 .name = "ohci_generic",
142 .id = UCLASS_USB,
143 .of_match = ohci_usb_ids,
144 .probe = ohci_usb_probe,
145 .remove = ohci_usb_remove,
146 .ops = &ohci_usb_ops,
Simon Glass41575d82020-12-03 16:55:17 -0700147 .priv_auto = sizeof(struct generic_ohci),
Alexey Brodkinfee331f2015-12-14 17:18:50 +0300148 .flags = DM_FLAG_ALLOC_PRIV_DMA,
149};