Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Roman Byshko | 8d15400 | 2014-07-27 19:32:44 +0200 | [diff] [blame] | 2 | /* |
Hans de Goede | 7b79865 | 2015-04-27 14:54:47 +0200 | [diff] [blame] | 3 | * Sunxi ehci glue |
Roman Byshko | 8d15400 | 2014-07-27 19:32:44 +0200 | [diff] [blame] | 4 | * |
Hans de Goede | 7b79865 | 2015-04-27 14:54:47 +0200 | [diff] [blame] | 5 | * Copyright (C) 2015 Hans de Goede <hdegoede@redhat.com> |
| 6 | * Copyright (C) 2014 Roman Byshko <rbyshko@gmail.com> |
Roman Byshko | 8d15400 | 2014-07-27 19:32:44 +0200 | [diff] [blame] | 7 | * |
| 8 | * Based on code from |
| 9 | * Allwinner Technology Co., Ltd. <www.allwinnertech.com> |
Roman Byshko | 8d15400 | 2014-07-27 19:32:44 +0200 | [diff] [blame] | 10 | */ |
| 11 | |
Roman Byshko | 8d15400 | 2014-07-27 19:32:44 +0200 | [diff] [blame] | 12 | #include <common.h> |
Hans de Goede | 375de01 | 2015-04-27 11:44:22 +0200 | [diff] [blame] | 13 | #include <asm/arch/clock.h> |
Hans de Goede | 2aacc42 | 2015-04-27 15:05:10 +0200 | [diff] [blame] | 14 | #include <asm/arch/usb_phy.h> |
Hans de Goede | 375de01 | 2015-04-27 11:44:22 +0200 | [diff] [blame] | 15 | #include <asm/io.h> |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 16 | #include <dm.h> |
Roman Byshko | 8d15400 | 2014-07-27 19:32:44 +0200 | [diff] [blame] | 17 | #include "ehci.h" |
| 18 | |
Hans de Goede | 948603d | 2016-03-21 14:44:35 +0100 | [diff] [blame] | 19 | #ifdef CONFIG_SUNXI_GEN_SUN4I |
| 20 | #define BASE_DIST 0x8000 |
| 21 | #define AHB_CLK_DIST 2 |
| 22 | #else |
| 23 | #define BASE_DIST 0x1000 |
| 24 | #define AHB_CLK_DIST 1 |
| 25 | #endif |
| 26 | |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 27 | struct ehci_sunxi_priv { |
| 28 | struct ehci_ctrl ehci; |
| 29 | int ahb_gate_mask; /* Mask of ahb_gate0 clk gate bits for this hcd */ |
| 30 | int phy_index; /* Index of the usb-phy attached to this hcd */ |
| 31 | }; |
| 32 | |
| 33 | static int ehci_usb_probe(struct udevice *dev) |
Roman Byshko | 8d15400 | 2014-07-27 19:32:44 +0200 | [diff] [blame] | 34 | { |
Hans de Goede | 375de01 | 2015-04-27 11:44:22 +0200 | [diff] [blame] | 35 | struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 36 | struct usb_platdata *plat = dev_get_platdata(dev); |
| 37 | struct ehci_sunxi_priv *priv = dev_get_priv(dev); |
Simon Glass | a821c4a | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 38 | struct ehci_hccr *hccr = (struct ehci_hccr *)devfdt_get_addr(dev); |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 39 | struct ehci_hcor *hcor; |
Hans de Goede | fb3bfbb | 2016-04-09 15:00:52 +0200 | [diff] [blame] | 40 | int extra_ahb_gate_mask = 0; |
Hans de Goede | 115200c | 2014-11-07 16:09:00 +0100 | [diff] [blame] | 41 | |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 42 | /* |
| 43 | * This should go away once we've moved to the driver model for |
| 44 | * clocks resp. phys. |
| 45 | */ |
Jelle van der Waa | dc44fd8 | 2016-02-09 23:59:33 +0100 | [diff] [blame] | 46 | priv->ahb_gate_mask = 1 << AHB_GATE_OFFSET_USB_EHCI0; |
Andre Przywara | 7b82a22 | 2017-02-16 01:20:27 +0000 | [diff] [blame] | 47 | #if defined(CONFIG_MACH_SUNXI_H3_H5) || defined(CONFIG_MACH_SUN50I) |
Hans de Goede | fb3bfbb | 2016-04-09 15:00:52 +0200 | [diff] [blame] | 48 | extra_ahb_gate_mask = 1 << AHB_GATE_OFFSET_USB_OHCI0; |
Jelle van der Waa | dc44fd8 | 2016-02-09 23:59:33 +0100 | [diff] [blame] | 49 | #endif |
Amit Singh Tomar | 9d6c9d9 | 2016-10-21 02:24:30 +0100 | [diff] [blame] | 50 | priv->phy_index = ((uintptr_t)hccr - SUNXI_USB1_BASE) / BASE_DIST; |
Hans de Goede | 948603d | 2016-03-21 14:44:35 +0100 | [diff] [blame] | 51 | priv->ahb_gate_mask <<= priv->phy_index * AHB_CLK_DIST; |
Hans de Goede | fb3bfbb | 2016-04-09 15:00:52 +0200 | [diff] [blame] | 52 | extra_ahb_gate_mask <<= priv->phy_index * AHB_CLK_DIST; |
Hans de Goede | 948603d | 2016-03-21 14:44:35 +0100 | [diff] [blame] | 53 | priv->phy_index++; /* Non otg phys start at 1 */ |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 54 | |
Hans de Goede | fb3bfbb | 2016-04-09 15:00:52 +0200 | [diff] [blame] | 55 | setbits_le32(&ccm->ahb_gate0, |
| 56 | priv->ahb_gate_mask | extra_ahb_gate_mask); |
Hans de Goede | 375de01 | 2015-04-27 11:44:22 +0200 | [diff] [blame] | 57 | #ifdef CONFIG_SUNXI_GEN_SUN6I |
Hans de Goede | fb3bfbb | 2016-04-09 15:00:52 +0200 | [diff] [blame] | 58 | setbits_le32(&ccm->ahb_reset0_cfg, |
| 59 | priv->ahb_gate_mask | extra_ahb_gate_mask); |
Hans de Goede | 375de01 | 2015-04-27 11:44:22 +0200 | [diff] [blame] | 60 | #endif |
| 61 | |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 62 | sunxi_usb_phy_init(priv->phy_index); |
| 63 | sunxi_usb_phy_power_on(priv->phy_index); |
Roman Byshko | 8d15400 | 2014-07-27 19:32:44 +0200 | [diff] [blame] | 64 | |
Amit Singh Tomar | 9d6c9d9 | 2016-10-21 02:24:30 +0100 | [diff] [blame] | 65 | hcor = (struct ehci_hcor *)((uintptr_t)hccr + |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 66 | HC_LENGTH(ehci_readl(&hccr->cr_capbase))); |
Roman Byshko | 8d15400 | 2014-07-27 19:32:44 +0200 | [diff] [blame] | 67 | |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 68 | return ehci_register(dev, hccr, hcor, NULL, 0, plat->init_type); |
| 69 | } |
Roman Byshko | 8d15400 | 2014-07-27 19:32:44 +0200 | [diff] [blame] | 70 | |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 71 | static int ehci_usb_remove(struct udevice *dev) |
| 72 | { |
| 73 | struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
| 74 | struct ehci_sunxi_priv *priv = dev_get_priv(dev); |
| 75 | int ret; |
| 76 | |
| 77 | ret = ehci_deregister(dev); |
| 78 | if (ret) |
| 79 | return ret; |
| 80 | |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 81 | sunxi_usb_phy_exit(priv->phy_index); |
| 82 | |
| 83 | #ifdef CONFIG_SUNXI_GEN_SUN6I |
| 84 | clrbits_le32(&ccm->ahb_reset0_cfg, priv->ahb_gate_mask); |
| 85 | #endif |
| 86 | clrbits_le32(&ccm->ahb_gate0, priv->ahb_gate_mask); |
Roman Byshko | 8d15400 | 2014-07-27 19:32:44 +0200 | [diff] [blame] | 87 | |
Roman Byshko | 8d15400 | 2014-07-27 19:32:44 +0200 | [diff] [blame] | 88 | return 0; |
| 89 | } |
| 90 | |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 91 | static const struct udevice_id ehci_usb_ids[] = { |
| 92 | { .compatible = "allwinner,sun4i-a10-ehci", }, |
| 93 | { .compatible = "allwinner,sun5i-a13-ehci", }, |
| 94 | { .compatible = "allwinner,sun6i-a31-ehci", }, |
| 95 | { .compatible = "allwinner,sun7i-a20-ehci", }, |
| 96 | { .compatible = "allwinner,sun8i-a23-ehci", }, |
Chen-Yu Tsai | 3655f28 | 2016-03-30 00:26:53 +0800 | [diff] [blame] | 97 | { .compatible = "allwinner,sun8i-a83t-ehci", }, |
Jelle van der Waa | dc44fd8 | 2016-02-09 23:59:33 +0100 | [diff] [blame] | 98 | { .compatible = "allwinner,sun8i-h3-ehci", }, |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 99 | { .compatible = "allwinner,sun9i-a80-ehci", }, |
Amit Singh Tomar | 9d6c9d9 | 2016-10-21 02:24:30 +0100 | [diff] [blame] | 100 | { .compatible = "allwinner,sun50i-a64-ehci", }, |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 101 | { } |
| 102 | }; |
Hans de Goede | 375de01 | 2015-04-27 11:44:22 +0200 | [diff] [blame] | 103 | |
Marek Vasut | 40c9208 | 2015-11-30 18:15:33 +0100 | [diff] [blame] | 104 | U_BOOT_DRIVER(ehci_sunxi) = { |
Hans de Goede | 8d837a1 | 2015-05-10 14:10:26 +0200 | [diff] [blame] | 105 | .name = "ehci_sunxi", |
| 106 | .id = UCLASS_USB, |
| 107 | .of_match = ehci_usb_ids, |
| 108 | .probe = ehci_usb_probe, |
| 109 | .remove = ehci_usb_remove, |
| 110 | .ops = &ehci_usb_ops, |
| 111 | .platdata_auto_alloc_size = sizeof(struct usb_platdata), |
| 112 | .priv_auto_alloc_size = sizeof(struct ehci_sunxi_priv), |
| 113 | .flags = DM_FLAG_ALLOC_PRIV_DMA, |
| 114 | }; |