blob: 6ecb7c4d128ee89d6c9416ec82678fa059a7c7a2 [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);
Simon Glassba1dea42017-05-17 17:18:05 -060039 struct ehci_hccr *hccr = (struct ehci_hccr *)devfdt_get_addr(dev);
Hans de Goede4dba1082015-05-10 14:10:26 +020040 struct ehci_hcor *hcor;
Hans de Goede52b5e5a2016-04-09 15:00:52 +020041 int extra_ahb_gate_mask = 0;
Hans de Goede4dba1082015-05-10 14:10:26 +020042
43 /*
44 * This should go away once we've moved to the driver model for
45 * clocks resp. phys.
46 */
Jelle van der Waaa1f5d112016-02-09 23:59:33 +010047 priv->ahb_gate_mask = 1 << AHB_GATE_OFFSET_USB_EHCI0;
Andre Przywara5fb97432017-02-16 01:20:27 +000048#if defined(CONFIG_MACH_SUNXI_H3_H5) || defined(CONFIG_MACH_SUN50I)
Hans de Goede52b5e5a2016-04-09 15:00:52 +020049 extra_ahb_gate_mask = 1 << AHB_GATE_OFFSET_USB_OHCI0;
Jelle van der Waaa1f5d112016-02-09 23:59:33 +010050#endif
Amit Singh Tomarbd732d02016-10-21 02:24:30 +010051 priv->phy_index = ((uintptr_t)hccr - SUNXI_USB1_BASE) / BASE_DIST;
Hans de Goede8b6ab7d2016-03-21 14:44:35 +010052 priv->ahb_gate_mask <<= priv->phy_index * AHB_CLK_DIST;
Hans de Goede52b5e5a2016-04-09 15:00:52 +020053 extra_ahb_gate_mask <<= priv->phy_index * AHB_CLK_DIST;
Hans de Goede8b6ab7d2016-03-21 14:44:35 +010054 priv->phy_index++; /* Non otg phys start at 1 */
Hans de Goedeaf4273b2014-11-07 16:09:00 +010055
Hans de Goede52b5e5a2016-04-09 15:00:52 +020056 setbits_le32(&ccm->ahb_gate0,
57 priv->ahb_gate_mask | extra_ahb_gate_mask);
Hans de Goede7e5aabd2015-04-27 11:44:22 +020058#ifdef CONFIG_SUNXI_GEN_SUN6I
Hans de Goede52b5e5a2016-04-09 15:00:52 +020059 setbits_le32(&ccm->ahb_reset0_cfg,
60 priv->ahb_gate_mask | extra_ahb_gate_mask);
Hans de Goede7e5aabd2015-04-27 11:44:22 +020061#endif
62
Hans de Goede4dba1082015-05-10 14:10:26 +020063 sunxi_usb_phy_init(priv->phy_index);
64 sunxi_usb_phy_power_on(priv->phy_index);
Roman Byshko637fbb62014-07-27 19:32:44 +020065
Amit Singh Tomarbd732d02016-10-21 02:24:30 +010066 hcor = (struct ehci_hcor *)((uintptr_t)hccr +
Hans de Goede4dba1082015-05-10 14:10:26 +020067 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
Roman Byshko637fbb62014-07-27 19:32:44 +020068
Hans de Goede4dba1082015-05-10 14:10:26 +020069 return ehci_register(dev, hccr, hcor, NULL, 0, plat->init_type);
Roman Byshko637fbb62014-07-27 19:32:44 +020070}
71
Hans de Goede4dba1082015-05-10 14:10:26 +020072static int ehci_usb_remove(struct udevice *dev)
Roman Byshko637fbb62014-07-27 19:32:44 +020073{
Hans de Goede7e5aabd2015-04-27 11:44:22 +020074 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede4dba1082015-05-10 14:10:26 +020075 struct ehci_sunxi_priv *priv = dev_get_priv(dev);
76 int ret;
77
78 ret = ehci_deregister(dev);
79 if (ret)
80 return ret;
Hans de Goede7e5aabd2015-04-27 11:44:22 +020081
Hans de Goede4dba1082015-05-10 14:10:26 +020082 sunxi_usb_phy_exit(priv->phy_index);
Hans de Goedeea7851d2014-10-31 17:04:52 +010083
Hans de Goede7e5aabd2015-04-27 11:44:22 +020084#ifdef CONFIG_SUNXI_GEN_SUN6I
Hans de Goede4dba1082015-05-10 14:10:26 +020085 clrbits_le32(&ccm->ahb_reset0_cfg, priv->ahb_gate_mask);
Hans de Goede7e5aabd2015-04-27 11:44:22 +020086#endif
Hans de Goede4dba1082015-05-10 14:10:26 +020087 clrbits_le32(&ccm->ahb_gate0, priv->ahb_gate_mask);
Hans de Goede7e5aabd2015-04-27 11:44:22 +020088
Hans de Goede1168e092015-04-27 16:50:04 +020089 return 0;
Roman Byshko637fbb62014-07-27 19:32:44 +020090}
Hans de Goede4dba1082015-05-10 14:10:26 +020091
92static const struct udevice_id ehci_usb_ids[] = {
93 { .compatible = "allwinner,sun4i-a10-ehci", },
94 { .compatible = "allwinner,sun5i-a13-ehci", },
95 { .compatible = "allwinner,sun6i-a31-ehci", },
96 { .compatible = "allwinner,sun7i-a20-ehci", },
97 { .compatible = "allwinner,sun8i-a23-ehci", },
Chen-Yu Tsaid0f38132016-03-30 00:26:53 +080098 { .compatible = "allwinner,sun8i-a83t-ehci", },
Jelle van der Waaa1f5d112016-02-09 23:59:33 +010099 { .compatible = "allwinner,sun8i-h3-ehci", },
Hans de Goede4dba1082015-05-10 14:10:26 +0200100 { .compatible = "allwinner,sun9i-a80-ehci", },
Amit Singh Tomarbd732d02016-10-21 02:24:30 +0100101 { .compatible = "allwinner,sun50i-a64-ehci", },
Hans de Goede4dba1082015-05-10 14:10:26 +0200102 { }
103};
104
Marek Vasutad693ce2015-11-30 18:15:33 +0100105U_BOOT_DRIVER(ehci_sunxi) = {
Hans de Goede4dba1082015-05-10 14:10:26 +0200106 .name = "ehci_sunxi",
107 .id = UCLASS_USB,
108 .of_match = ehci_usb_ids,
109 .probe = ehci_usb_probe,
110 .remove = ehci_usb_remove,
111 .ops = &ehci_usb_ops,
112 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
113 .priv_auto_alloc_size = sizeof(struct ehci_sunxi_priv),
114 .flags = DM_FLAG_ALLOC_PRIV_DMA,
115};