ehci-generic.c 3.8 KB
Newer Older
1 2 3 4 5 6 7
/*
 * Copyright (C) 2015 Alexey Brodkin <abrodkin@synopsys.com>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
8
#include <clk.h>
9
#include <dm/ofnode.h>
10
#include <generic-phy.h>
11
#include <reset.h>
12
#include <asm/io.h>
13 14 15 16 17 18 19 20 21 22
#include <dm.h>
#include "ehci.h"

/*
 * Even though here we don't explicitly use "struct ehci_ctrl"
 * ehci_register() expects it to be the first thing that resides in
 * device's private data.
 */
struct generic_ehci {
	struct ehci_ctrl ctrl;
23 24
	struct clk *clocks;
	struct reset_ctl *resets;
25
	struct phy phy;
26 27
	int clock_count;
	int reset_count;
28 29 30 31
};

static int ehci_usb_probe(struct udevice *dev)
{
32
	struct generic_ehci *priv = dev_get_priv(dev);
33
	struct ehci_hccr *hccr;
34
	struct ehci_hcor *hcor;
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
	int i, err, ret, clock_nb, reset_nb;

	err = 0;
	priv->clock_count = 0;
	clock_nb = ofnode_count_phandle_with_args(dev_ofnode(dev), "clocks",
						  "#clock-cells");
	if (clock_nb > 0) {
		priv->clocks = devm_kcalloc(dev, clock_nb, sizeof(struct clk),
					    GFP_KERNEL);
		if (!priv->clocks)
			return -ENOMEM;

		for (i = 0; i < clock_nb; i++) {
			err = clk_get_by_index(dev, i, &priv->clocks[i]);

			if (err < 0)
				break;
			err = clk_enable(&priv->clocks[i]);
			if (err) {
				error("failed to enable clock %d\n", i);
				clk_free(&priv->clocks[i]);
				goto clk_err;
			}
			priv->clock_count++;
		}
	} else {
		if (clock_nb != -ENOENT) {
			error("failed to get clock phandle(%d)\n", clock_nb);
			return clock_nb;
		}
65
	}
66

67 68 69 70 71 72 73 74 75 76 77 78 79 80
	priv->reset_count = 0;
	reset_nb = ofnode_count_phandle_with_args(dev_ofnode(dev), "resets",
						  "#reset-cells");
	if (reset_nb > 0) {
		priv->resets = devm_kcalloc(dev, reset_nb,
					    sizeof(struct reset_ctl),
					    GFP_KERNEL);
		if (!priv->resets)
			return -ENOMEM;

		for (i = 0; i < reset_nb; i++) {
			err = reset_get_by_index(dev, i, &priv->resets[i]);
			if (err < 0)
				break;
81

82 83 84 85 86 87 88 89 90 91 92 93
			if (reset_deassert(&priv->resets[i])) {
				error("failed to deassert reset %d\n", i);
				reset_free(&priv->resets[i]);
				goto reset_err;
			}
			priv->reset_count++;
		}
	} else {
		if (reset_nb != -ENOENT) {
			error("failed to get reset phandle(%d)\n", reset_nb);
			goto clk_err;
		}
94 95
	}

96 97 98 99 100 101
	err = generic_phy_get_by_index(dev, 0, &priv->phy);
	if (err) {
		if (err != -ENOENT) {
			error("failed to get usb phy\n");
			goto reset_err;
		}
102
	} else {
103

104 105 106 107 108
		err = generic_phy_init(&priv->phy);
		if (err) {
			error("failed to init usb phy\n");
			goto reset_err;
		}
109 110
	}

111
	hccr = map_physmem(dev_read_addr(dev), 0x100, MAP_NOCACHE);
112 113 114
	hcor = (struct ehci_hcor *)((uintptr_t)hccr +
				    HC_LENGTH(ehci_readl(&hccr->cr_capbase)));

115 116
	err = ehci_register(dev, hccr, hcor, NULL, 0, USB_INIT_HOST);
	if (err)
117
		goto phy_err;
118 119 120

	return 0;

121 122 123 124 125 126 127
phy_err:
	if (generic_phy_valid(&priv->phy)) {
		ret = generic_phy_exit(&priv->phy);
		if (ret)
			error("failed to release phy\n");
	}

128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
reset_err:
	ret = reset_release_all(priv->resets, priv->reset_count);
	if (ret)
		error("failed to assert all resets\n");
clk_err:
	ret = clk_release_all(priv->clocks, priv->clock_count);
	if (ret)
		error("failed to disable all clocks\n");

	return err;
}

static int ehci_usb_remove(struct udevice *dev)
{
	struct generic_ehci *priv = dev_get_priv(dev);
	int ret;

	ret = ehci_deregister(dev);
	if (ret)
		return ret;

149 150 151 152 153 154
	if (generic_phy_valid(&priv->phy)) {
		ret = generic_phy_exit(&priv->phy);
		if (ret)
			return ret;
	}

155 156 157 158 159
	ret =  reset_release_all(priv->resets, priv->reset_count);
	if (ret)
		return ret;

	return clk_release_all(priv->clocks, priv->clock_count);
160 161 162 163 164 165 166 167 168 169 170 171
}

static const struct udevice_id ehci_usb_ids[] = {
	{ .compatible = "generic-ehci" },
	{ }
};

U_BOOT_DRIVER(ehci_generic) = {
	.name	= "ehci_generic",
	.id	= UCLASS_USB,
	.of_match = ehci_usb_ids,
	.probe = ehci_usb_probe,
172
	.remove = ehci_usb_remove,
173 174 175 176
	.ops	= &ehci_usb_ops,
	.priv_auto_alloc_size = sizeof(struct generic_ehci),
	.flags	= DM_FLAG_ALLOC_PRIV_DMA,
};