blob: 677a5d3b07f258491e312b23a2fb92bced42334a [file] [log] [blame]
Roman Byshko8d154002014-07-27 19:32:44 +02001/*
Hans de Goede7b798652015-04-27 14:54:47 +02002 * Sunxi ehci glue
Roman Byshko8d154002014-07-27 19:32:44 +02003 *
Hans de Goede7b798652015-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 Byshko8d154002014-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 Byshko8d154002014-07-27 19:32:44 +020013#include <common.h>
Hans de Goede375de012015-04-27 11:44:22 +020014#include <asm/arch/clock.h>
Hans de Goede2aacc422015-04-27 15:05:10 +020015#include <asm/arch/usb_phy.h>
Hans de Goede375de012015-04-27 11:44:22 +020016#include <asm/io.h>
Hans de Goede8d837a12015-05-10 14:10:26 +020017#include <dm.h>
Roman Byshko8d154002014-07-27 19:32:44 +020018#include "ehci.h"
19
Hans de Goede948603d2016-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 Goede8d837a12015-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 Byshko8d154002014-07-27 19:32:44 +020035{
Hans de Goede375de012015-04-27 11:44:22 +020036 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede8d837a12015-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;
Hans de Goede115200c2014-11-07 16:09:00 +010041
Hans de Goede8d837a12015-05-10 14:10:26 +020042 /*
43 * This should go away once we've moved to the driver model for
44 * clocks resp. phys.
45 */
Jelle van der Waadc44fd82016-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 Goede948603d2016-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 Goede8d837a12015-05-10 14:10:26 +020053
54 setbits_le32(&ccm->ahb_gate0, priv->ahb_gate_mask);
Hans de Goede375de012015-04-27 11:44:22 +020055#ifdef CONFIG_SUNXI_GEN_SUN6I
Hans de Goede8d837a12015-05-10 14:10:26 +020056 setbits_le32(&ccm->ahb_reset0_cfg, priv->ahb_gate_mask);
Hans de Goede375de012015-04-27 11:44:22 +020057#endif
58
Hans de Goede8d837a12015-05-10 14:10:26 +020059 sunxi_usb_phy_init(priv->phy_index);
60 sunxi_usb_phy_power_on(priv->phy_index);
Roman Byshko8d154002014-07-27 19:32:44 +020061
Hans de Goede8d837a12015-05-10 14:10:26 +020062 hcor = (struct ehci_hcor *)((uint32_t)hccr +
63 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
Roman Byshko8d154002014-07-27 19:32:44 +020064
Hans de Goede8d837a12015-05-10 14:10:26 +020065 return ehci_register(dev, hccr, hcor, NULL, 0, plat->init_type);
66}
Roman Byshko8d154002014-07-27 19:32:44 +020067
Hans de Goede8d837a12015-05-10 14:10:26 +020068static int ehci_usb_remove(struct udevice *dev)
69{
70 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
71 struct ehci_sunxi_priv *priv = dev_get_priv(dev);
72 int ret;
73
74 ret = ehci_deregister(dev);
75 if (ret)
76 return ret;
77
Hans de Goede8d837a12015-05-10 14:10:26 +020078 sunxi_usb_phy_exit(priv->phy_index);
79
80#ifdef CONFIG_SUNXI_GEN_SUN6I
81 clrbits_le32(&ccm->ahb_reset0_cfg, priv->ahb_gate_mask);
82#endif
83 clrbits_le32(&ccm->ahb_gate0, priv->ahb_gate_mask);
Roman Byshko8d154002014-07-27 19:32:44 +020084
Roman Byshko8d154002014-07-27 19:32:44 +020085 return 0;
86}
87
Hans de Goede8d837a12015-05-10 14:10:26 +020088static 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", },
Jelle van der Waadc44fd82016-02-09 23:59:33 +010094 { .compatible = "allwinner,sun8i-h3-ehci", },
Hans de Goede8d837a12015-05-10 14:10:26 +020095 { .compatible = "allwinner,sun9i-a80-ehci", },
96 { }
97};
Hans de Goede375de012015-04-27 11:44:22 +020098
Marek Vasut40c92082015-11-30 18:15:33 +010099U_BOOT_DRIVER(ehci_sunxi) = {
Hans de Goede8d837a12015-05-10 14:10:26 +0200100 .name = "ehci_sunxi",
101 .id = UCLASS_USB,
102 .of_match = ehci_usb_ids,
103 .probe = ehci_usb_probe,
104 .remove = ehci_usb_remove,
105 .ops = &ehci_usb_ops,
106 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
107 .priv_auto_alloc_size = sizeof(struct ehci_sunxi_priv),
108 .flags = DM_FLAG_ALLOC_PRIV_DMA,
109};