blob: cf3dcc43274fb26957712c092ac12e635d7aed5d [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 Goede8d837a12015-05-10 14:10:26 +020020struct ehci_sunxi_priv {
21 struct ehci_ctrl ehci;
22 int ahb_gate_mask; /* Mask of ahb_gate0 clk gate bits for this hcd */
23 int phy_index; /* Index of the usb-phy attached to this hcd */
24};
25
26static int ehci_usb_probe(struct udevice *dev)
Roman Byshko8d154002014-07-27 19:32:44 +020027{
Hans de Goede375de012015-04-27 11:44:22 +020028 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede8d837a12015-05-10 14:10:26 +020029 struct usb_platdata *plat = dev_get_platdata(dev);
30 struct ehci_sunxi_priv *priv = dev_get_priv(dev);
31 struct ehci_hccr *hccr = (struct ehci_hccr *)dev_get_addr(dev);
32 struct ehci_hcor *hcor;
Hans de Goede115200c2014-11-07 16:09:00 +010033
Hans de Goede8d837a12015-05-10 14:10:26 +020034 /*
35 * This should go away once we've moved to the driver model for
36 * clocks resp. phys.
37 */
Jelle van der Waadc44fd82016-02-09 23:59:33 +010038 priv->ahb_gate_mask = 1 << AHB_GATE_OFFSET_USB_EHCI0;
39#ifdef CONFIG_MACH_SUN8I_H3
40 priv->ahb_gate_mask |= 1 << AHB_GATE_OFFSET_USB_OHCI0;
41#endif
42 priv->phy_index = ((u32)hccr - SUNXI_USB1_BASE) / 0x1000 + 1;
43 priv->ahb_gate_mask <<= priv->phy_index - 1;
Hans de Goede8d837a12015-05-10 14:10:26 +020044
45 setbits_le32(&ccm->ahb_gate0, priv->ahb_gate_mask);
Hans de Goede375de012015-04-27 11:44:22 +020046#ifdef CONFIG_SUNXI_GEN_SUN6I
Hans de Goede8d837a12015-05-10 14:10:26 +020047 setbits_le32(&ccm->ahb_reset0_cfg, priv->ahb_gate_mask);
Hans de Goede375de012015-04-27 11:44:22 +020048#endif
49
Hans de Goede8d837a12015-05-10 14:10:26 +020050 sunxi_usb_phy_init(priv->phy_index);
51 sunxi_usb_phy_power_on(priv->phy_index);
Roman Byshko8d154002014-07-27 19:32:44 +020052
Hans de Goede8d837a12015-05-10 14:10:26 +020053 hcor = (struct ehci_hcor *)((uint32_t)hccr +
54 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
Roman Byshko8d154002014-07-27 19:32:44 +020055
Hans de Goede8d837a12015-05-10 14:10:26 +020056 return ehci_register(dev, hccr, hcor, NULL, 0, plat->init_type);
57}
Roman Byshko8d154002014-07-27 19:32:44 +020058
Hans de Goede8d837a12015-05-10 14:10:26 +020059static int ehci_usb_remove(struct udevice *dev)
60{
61 struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
62 struct ehci_sunxi_priv *priv = dev_get_priv(dev);
63 int ret;
64
65 ret = ehci_deregister(dev);
66 if (ret)
67 return ret;
68
Hans de Goede8d837a12015-05-10 14:10:26 +020069 sunxi_usb_phy_exit(priv->phy_index);
70
71#ifdef CONFIG_SUNXI_GEN_SUN6I
72 clrbits_le32(&ccm->ahb_reset0_cfg, priv->ahb_gate_mask);
73#endif
74 clrbits_le32(&ccm->ahb_gate0, priv->ahb_gate_mask);
Roman Byshko8d154002014-07-27 19:32:44 +020075
Roman Byshko8d154002014-07-27 19:32:44 +020076 return 0;
77}
78
Hans de Goede8d837a12015-05-10 14:10:26 +020079static const struct udevice_id ehci_usb_ids[] = {
80 { .compatible = "allwinner,sun4i-a10-ehci", },
81 { .compatible = "allwinner,sun5i-a13-ehci", },
82 { .compatible = "allwinner,sun6i-a31-ehci", },
83 { .compatible = "allwinner,sun7i-a20-ehci", },
84 { .compatible = "allwinner,sun8i-a23-ehci", },
Jelle van der Waadc44fd82016-02-09 23:59:33 +010085 { .compatible = "allwinner,sun8i-h3-ehci", },
Hans de Goede8d837a12015-05-10 14:10:26 +020086 { .compatible = "allwinner,sun9i-a80-ehci", },
87 { }
88};
Hans de Goede375de012015-04-27 11:44:22 +020089
Marek Vasut40c92082015-11-30 18:15:33 +010090U_BOOT_DRIVER(ehci_sunxi) = {
Hans de Goede8d837a12015-05-10 14:10:26 +020091 .name = "ehci_sunxi",
92 .id = UCLASS_USB,
93 .of_match = ehci_usb_ids,
94 .probe = ehci_usb_probe,
95 .remove = ehci_usb_remove,
96 .ops = &ehci_usb_ops,
97 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
98 .priv_auto_alloc_size = sizeof(struct ehci_sunxi_priv),
99 .flags = DM_FLAG_ALLOC_PRIV_DMA,
100};