blob: d5eb492169672b6cfd88261edf830c92f0d1f998 [file] [log] [blame]
Roman Byshko637fbb62014-07-27 19:32:44 +02001/*
Hans de Goede86979092015-04-27 14:54:47 +02002 * Sunxi ehci glue
Roman Byshko637fbb62014-07-27 19:32:44 +02003 *
Hans de Goede86979092015-04-27 14:54:47 +02004 * Copyright (C) 2015 Hans de Goede <hdegoede@redhat.com>
5 * Copyright (C) 2014 Roman Byshko <rbyshko@gmail.com>
Roman Byshko637fbb62014-07-27 19:32:44 +02006 *
7 * Based on code from
8 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
9 *
10 * SPDX-License-Identifier: GPL-2.0+
11 */
12
Roman Byshko637fbb62014-07-27 19:32:44 +020013#include <common.h>
Hans de Goede7e5aabd2015-04-27 11:44:22 +020014#include <asm/arch/clock.h>
Hans de Goede26a90052015-04-27 15:05:10 +020015#include <asm/arch/usb_phy.h>
Hans de Goede7e5aabd2015-04-27 11:44:22 +020016#include <asm/io.h>
Hans de Goede4dba1082015-05-10 14:10:26 +020017#include <dm.h>
Roman Byshko637fbb62014-07-27 19:32:44 +020018#include "ehci.h"
19
Hans de Goede8b6ab7d2016-03-21 14:44:35 +010020#ifdef CONFIG_SUNXI_GEN_SUN4I
21#define BASE_DIST 0x8000
22#define AHB_CLK_DIST 2
23#else
24#define BASE_DIST 0x1000
25#define AHB_CLK_DIST 1
26#endif
27
Hans de Goede4dba1082015-05-10 14:10:26 +020028struct ehci_sunxi_priv {
29 struct ehci_ctrl ehci;
30 int ahb_gate_mask; /* Mask of ahb_gate0 clk gate bits for this hcd */
31 int phy_index; /* Index of the usb-phy attached to this hcd */
32};
33
34static int ehci_usb_probe(struct udevice *dev)
Roman Byshko637fbb62014-07-27 19:32:44 +020035{
Hans de Goede7e5aabd2015-04-27 11:44:22 +020036 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede4dba1082015-05-10 14:10:26 +020037 struct usb_platdata *plat = dev_get_platdata(dev);
38 struct ehci_sunxi_priv *priv = dev_get_priv(dev);
39 struct ehci_hccr *hccr = (struct ehci_hccr *)dev_get_addr(dev);
40 struct ehci_hcor *hcor;
41
42 /*
43 * This should go away once we've moved to the driver model for
44 * clocks resp. phys.
45 */
Jelle van der Waaa1f5d112016-02-09 23:59:33 +010046 priv->ahb_gate_mask = 1 << AHB_GATE_OFFSET_USB_EHCI0;
47#ifdef CONFIG_MACH_SUN8I_H3
48 priv->ahb_gate_mask |= 1 << AHB_GATE_OFFSET_USB_OHCI0;
49#endif
Hans de Goede8b6ab7d2016-03-21 14:44:35 +010050 priv->phy_index = ((u32)hccr - SUNXI_USB1_BASE) / BASE_DIST;
51 priv->ahb_gate_mask <<= priv->phy_index * AHB_CLK_DIST;
52 priv->phy_index++; /* Non otg phys start at 1 */
Hans de Goedeaf4273b2014-11-07 16:09:00 +010053
Hans de Goede4dba1082015-05-10 14:10:26 +020054 setbits_le32(&ccm->ahb_gate0, priv->ahb_gate_mask);
Hans de Goede7e5aabd2015-04-27 11:44:22 +020055#ifdef CONFIG_SUNXI_GEN_SUN6I
Hans de Goede4dba1082015-05-10 14:10:26 +020056 setbits_le32(&ccm->ahb_reset0_cfg, priv->ahb_gate_mask);
Hans de Goede7e5aabd2015-04-27 11:44:22 +020057#endif
58
Hans de Goede4dba1082015-05-10 14:10:26 +020059 sunxi_usb_phy_init(priv->phy_index);
60 sunxi_usb_phy_power_on(priv->phy_index);
Roman Byshko637fbb62014-07-27 19:32:44 +020061
Hans de Goede4dba1082015-05-10 14:10:26 +020062 hcor = (struct ehci_hcor *)((uint32_t)hccr +
63 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
Roman Byshko637fbb62014-07-27 19:32:44 +020064
Hans de Goede4dba1082015-05-10 14:10:26 +020065 return ehci_register(dev, hccr, hcor, NULL, 0, plat->init_type);
Roman Byshko637fbb62014-07-27 19:32:44 +020066}
67
Hans de Goede4dba1082015-05-10 14:10:26 +020068static int ehci_usb_remove(struct udevice *dev)
Roman Byshko637fbb62014-07-27 19:32:44 +020069{
Hans de Goede7e5aabd2015-04-27 11:44:22 +020070 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede4dba1082015-05-10 14:10:26 +020071 struct ehci_sunxi_priv *priv = dev_get_priv(dev);
72 int ret;
73
74 ret = ehci_deregister(dev);
75 if (ret)
76 return ret;
Hans de Goede7e5aabd2015-04-27 11:44:22 +020077
Hans de Goede4dba1082015-05-10 14:10:26 +020078 sunxi_usb_phy_exit(priv->phy_index);
Hans de Goedeea7851d2014-10-31 17:04:52 +010079
Hans de Goede7e5aabd2015-04-27 11:44:22 +020080#ifdef CONFIG_SUNXI_GEN_SUN6I
Hans de Goede4dba1082015-05-10 14:10:26 +020081 clrbits_le32(&ccm->ahb_reset0_cfg, priv->ahb_gate_mask);
Hans de Goede7e5aabd2015-04-27 11:44:22 +020082#endif
Hans de Goede4dba1082015-05-10 14:10:26 +020083 clrbits_le32(&ccm->ahb_gate0, priv->ahb_gate_mask);
Hans de Goede7e5aabd2015-04-27 11:44:22 +020084
Hans de Goede1168e092015-04-27 16:50:04 +020085 return 0;
Roman Byshko637fbb62014-07-27 19:32:44 +020086}
Hans de Goede4dba1082015-05-10 14:10:26 +020087
88static const struct udevice_id ehci_usb_ids[] = {
89 { .compatible = "allwinner,sun4i-a10-ehci", },
90 { .compatible = "allwinner,sun5i-a13-ehci", },
91 { .compatible = "allwinner,sun6i-a31-ehci", },
92 { .compatible = "allwinner,sun7i-a20-ehci", },
93 { .compatible = "allwinner,sun8i-a23-ehci", },
Chen-Yu Tsaid0f38132016-03-30 00:26:53 +080094 { .compatible = "allwinner,sun8i-a83t-ehci", },
Jelle van der Waaa1f5d112016-02-09 23:59:33 +010095 { .compatible = "allwinner,sun8i-h3-ehci", },
Hans de Goede4dba1082015-05-10 14:10:26 +020096 { .compatible = "allwinner,sun9i-a80-ehci", },
97 { }
98};
99
Marek Vasutad693ce2015-11-30 18:15:33 +0100100U_BOOT_DRIVER(ehci_sunxi) = {
Hans de Goede4dba1082015-05-10 14:10:26 +0200101 .name = "ehci_sunxi",
102 .id = UCLASS_USB,
103 .of_match = ehci_usb_ids,
104 .probe = ehci_usb_probe,
105 .remove = ehci_usb_remove,
106 .ops = &ehci_usb_ops,
107 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
108 .priv_auto_alloc_size = sizeof(struct ehci_sunxi_priv),
109 .flags = DM_FLAG_ALLOC_PRIV_DMA,
110};