blob: 3f751f1ecdcae838768305aad63db297a9e61e61 [file] [log] [blame]
Alexey Brodkin90fbb282015-12-02 12:32:02 +03001/*
2 * Copyright (C) 2015 Alexey Brodkin <abrodkin@synopsys.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
Masahiro Yamada4feefdc2016-01-25 15:00:36 +09008#include <clk.h>
Patrice Chotarda1cee8e2017-07-18 11:57:10 +02009#include <dm/ofnode.h>
Patrice Chotard0d0ba1a2017-07-18 11:57:11 +020010#include <generic-phy.h>
Masahiro Yamada8824cfc2016-09-21 11:29:02 +090011#include <reset.h>
Marek Vasut643cacb2016-01-23 21:04:46 +010012#include <asm/io.h>
Alexey Brodkin90fbb282015-12-02 12:32:02 +030013#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 */
21struct generic_ehci {
22 struct ehci_ctrl ctrl;
Patrice Chotarda1cee8e2017-07-18 11:57:10 +020023 struct clk *clocks;
24 struct reset_ctl *resets;
Patrice Chotard0d0ba1a2017-07-18 11:57:11 +020025 struct phy phy;
Patrice Chotarda1cee8e2017-07-18 11:57:10 +020026 int clock_count;
27 int reset_count;
Alexey Brodkin90fbb282015-12-02 12:32:02 +030028};
29
30static int ehci_usb_probe(struct udevice *dev)
31{
Patrice Chotarda1cee8e2017-07-18 11:57:10 +020032 struct generic_ehci *priv = dev_get_priv(dev);
Marek Vasut643cacb2016-01-23 21:04:46 +010033 struct ehci_hccr *hccr;
Alexey Brodkin90fbb282015-12-02 12:32:02 +030034 struct ehci_hcor *hcor;
Patrice Chotarda1cee8e2017-07-18 11:57:10 +020035 int i, err, ret, clock_nb, reset_nb;
Masahiro Yamada4feefdc2016-01-25 15:00:36 +090036
Patrice Chotarda1cee8e2017-07-18 11:57:10 +020037 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 Yamada4feefdc2016-01-25 15:00:36 +090046
Patrice Chotarda1cee8e2017-07-18 11:57:10 +020047 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) {
54 error("failed to enable clock %d\n", i);
55 clk_free(&priv->clocks[i]);
56 goto clk_err;
57 }
58 priv->clock_count++;
59 }
60 } else {
61 if (clock_nb != -ENOENT) {
62 error("failed to get clock phandle(%d)\n", clock_nb);
63 return clock_nb;
64 }
Masahiro Yamada4feefdc2016-01-25 15:00:36 +090065 }
Alexey Brodkin90fbb282015-12-02 12:32:02 +030066
Patrice Chotarda1cee8e2017-07-18 11:57:10 +020067 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 Yamada8824cfc2016-09-21 11:29:02 +090076
Patrice Chotarda1cee8e2017-07-18 11:57:10 +020077 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])) {
83 error("failed to deassert reset %d\n", i);
84 reset_free(&priv->resets[i]);
85 goto reset_err;
86 }
87 priv->reset_count++;
88 }
89 } else {
90 if (reset_nb != -ENOENT) {
91 error("failed to get reset phandle(%d)\n", reset_nb);
92 goto clk_err;
93 }
Masahiro Yamada8824cfc2016-09-21 11:29:02 +090094 }
95
Patrice Chotard0d0ba1a2017-07-18 11:57:11 +020096 err = generic_phy_get_by_index(dev, 0, &priv->phy);
97 if (err) {
98 if (err != -ENOENT) {
99 error("failed to get usb phy\n");
100 goto reset_err;
101 }
102 }
103
104 err = generic_phy_init(&priv->phy);
105 if (err) {
106 error("failed to init usb phy\n");
107 goto reset_err;
108 }
109
Simon Glassa821c4a2017-05-17 17:18:05 -0600110 hccr = map_physmem(devfdt_get_addr(dev), 0x100, MAP_NOCACHE);
Alexey Brodkin90fbb282015-12-02 12:32:02 +0300111 hcor = (struct ehci_hcor *)((uintptr_t)hccr +
112 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
113
Patrice Chotarda1cee8e2017-07-18 11:57:10 +0200114 err = ehci_register(dev, hccr, hcor, NULL, 0, USB_INIT_HOST);
115 if (err)
Patrice Chotard0d0ba1a2017-07-18 11:57:11 +0200116 goto phy_err;
Patrice Chotarda1cee8e2017-07-18 11:57:10 +0200117
118 return 0;
119
Patrice Chotard0d0ba1a2017-07-18 11:57:11 +0200120phy_err:
121 if (generic_phy_valid(&priv->phy)) {
122 ret = generic_phy_exit(&priv->phy);
123 if (ret)
124 error("failed to release phy\n");
125 }
126
Patrice Chotarda1cee8e2017-07-18 11:57:10 +0200127reset_err:
128 ret = reset_release_all(priv->resets, priv->reset_count);
129 if (ret)
130 error("failed to assert all resets\n");
131clk_err:
132 ret = clk_release_all(priv->clocks, priv->clock_count);
133 if (ret)
134 error("failed to disable all clocks\n");
135
136 return err;
137}
138
139static int ehci_usb_remove(struct udevice *dev)
140{
141 struct generic_ehci *priv = dev_get_priv(dev);
142 int ret;
143
144 ret = ehci_deregister(dev);
145 if (ret)
146 return ret;
147
Patrice Chotard0d0ba1a2017-07-18 11:57:11 +0200148 if (generic_phy_valid(&priv->phy)) {
149 ret = generic_phy_exit(&priv->phy);
150 if (ret)
151 return ret;
152 }
153
Patrice Chotarda1cee8e2017-07-18 11:57:10 +0200154 ret = reset_release_all(priv->resets, priv->reset_count);
155 if (ret)
156 return ret;
157
158 return clk_release_all(priv->clocks, priv->clock_count);
Alexey Brodkin90fbb282015-12-02 12:32:02 +0300159}
160
Alexey Brodkin90fbb282015-12-02 12:32:02 +0300161static const struct udevice_id ehci_usb_ids[] = {
162 { .compatible = "generic-ehci" },
163 { }
164};
165
166U_BOOT_DRIVER(ehci_generic) = {
167 .name = "ehci_generic",
168 .id = UCLASS_USB,
169 .of_match = ehci_usb_ids,
170 .probe = ehci_usb_probe,
Patrice Chotarda1cee8e2017-07-18 11:57:10 +0200171 .remove = ehci_usb_remove,
Alexey Brodkin90fbb282015-12-02 12:32:02 +0300172 .ops = &ehci_usb_ops,
173 .priv_auto_alloc_size = sizeof(struct generic_ehci),
174 .flags = DM_FLAG_ALLOC_PRIV_DMA,
175};