Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2009 |
| 4 | * Marvell Semiconductor <www.marvell.com> |
| 5 | * Written-by: Prafulla Wadaskar <prafulla@marvell.com> |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <asm/io.h> |
| 10 | #include <usb.h> |
| 11 | #include "ehci.h" |
Stefan Roese | fe11ae2 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 12 | #include <linux/mbus.h> |
Lei Wen | a7efd71 | 2011-10-18 20:11:42 +0530 | [diff] [blame] | 13 | #include <asm/arch/cpu.h> |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 14 | #include <dm.h> |
Albert ARIBAUD | 805ad7e | 2012-01-15 22:08:40 +0000 | [diff] [blame] | 15 | |
| 16 | #if defined(CONFIG_KIRKWOOD) |
Stefan Roese | 3dc23f7 | 2014-10-22 12:13:06 +0200 | [diff] [blame] | 17 | #include <asm/arch/soc.h> |
Albert ARIBAUD | 805ad7e | 2012-01-15 22:08:40 +0000 | [diff] [blame] | 18 | #elif defined(CONFIG_ORION5X) |
| 19 | #include <asm/arch/orion5x.h> |
| 20 | #endif |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 21 | |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 22 | DECLARE_GLOBAL_DATA_PTR; |
| 23 | |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 24 | #define USB_WINDOW_CTRL(i) (0x320 + ((i) << 4)) |
| 25 | #define USB_WINDOW_BASE(i) (0x324 + ((i) << 4)) |
| 26 | #define USB_TARGET_DRAM 0x0 |
| 27 | |
Stefan Roese | c6cfcc9 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 28 | #define USB2_SBUSCFG_OFF 0x90 |
| 29 | |
| 30 | #define USB_SBUSCFG_BAWR_OFF 0x6 |
| 31 | #define USB_SBUSCFG_BARD_OFF 0x3 |
| 32 | #define USB_SBUSCFG_AHBBRST_OFF 0x0 |
| 33 | |
| 34 | #define USB_SBUSCFG_BAWR_ALIGN_64B 0x4 |
| 35 | #define USB_SBUSCFG_BARD_ALIGN_64B 0x4 |
| 36 | #define USB_SBUSCFG_AHBBRST_INCR16 0x7 |
| 37 | |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 38 | /* |
| 39 | * USB 2.0 Bridge Address Decoding registers setup |
| 40 | */ |
Sven Schwermer | fd09c20 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 41 | #if CONFIG_IS_ENABLED(DM_USB) |
Stefan Roese | fe11ae2 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 42 | |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 43 | struct ehci_mvebu_priv { |
| 44 | struct ehci_ctrl ehci; |
| 45 | fdt_addr_t hcd_base; |
| 46 | }; |
Stefan Roese | fe11ae2 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 47 | |
| 48 | /* |
| 49 | * Once all the older Marvell SoC's (Orion, Kirkwood) are converted |
| 50 | * to the common mvebu archticture including the mbus setup, this |
| 51 | * will be the only function needed to configure the access windows |
| 52 | */ |
Stefan Roese | c6cfcc9 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 53 | static void usb_brg_adrdec_setup(void *base) |
Stefan Roese | fe11ae2 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 54 | { |
| 55 | const struct mbus_dram_target_info *dram; |
| 56 | int i; |
| 57 | |
| 58 | dram = mvebu_mbus_dram_info(); |
| 59 | |
| 60 | for (i = 0; i < 4; i++) { |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 61 | writel(0, base + USB_WINDOW_CTRL(i)); |
| 62 | writel(0, base + USB_WINDOW_BASE(i)); |
Stefan Roese | fe11ae2 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | for (i = 0; i < dram->num_cs; i++) { |
| 66 | const struct mbus_dram_window *cs = dram->cs + i; |
| 67 | |
| 68 | /* Write size, attributes and target id to control register */ |
Stefan Roese | 82b9143 | 2015-07-22 10:01:30 +0200 | [diff] [blame] | 69 | writel(((cs->size - 1) & 0xffff0000) | (cs->mbus_attr << 8) | |
| 70 | (dram->mbus_dram_target_id << 4) | 1, |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 71 | base + USB_WINDOW_CTRL(i)); |
Stefan Roese | fe11ae2 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 72 | |
| 73 | /* Write base address to base register */ |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 74 | writel(cs->base, base + USB_WINDOW_BASE(i)); |
Stefan Roese | fe11ae2 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 75 | } |
| 76 | } |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 77 | |
Stefan Roese | c6cfcc9 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 78 | static void marvell_ehci_powerup_fixup(struct ehci_ctrl *ctrl, |
| 79 | uint32_t *status_reg, uint32_t *reg) |
| 80 | { |
| 81 | struct ehci_mvebu_priv *priv = ctrl->priv; |
| 82 | |
| 83 | /* |
| 84 | * Set default value for reg SBUSCFG, which is Control for the AMBA |
| 85 | * system bus interface: |
| 86 | * BAWR = BARD = 4 : Align rd/wr bursts packets larger than 64 bytes |
| 87 | * AHBBRST = 7 : Align AHB burst for packets larger than 64 bytes |
| 88 | */ |
| 89 | writel((USB_SBUSCFG_BAWR_ALIGN_64B << USB_SBUSCFG_BAWR_OFF) | |
| 90 | (USB_SBUSCFG_BARD_ALIGN_64B << USB_SBUSCFG_BARD_OFF) | |
| 91 | (USB_SBUSCFG_AHBBRST_INCR16 << USB_SBUSCFG_AHBBRST_OFF), |
| 92 | priv->hcd_base + USB2_SBUSCFG_OFF); |
| 93 | |
| 94 | mdelay(50); |
| 95 | } |
| 96 | |
| 97 | static struct ehci_ops marvell_ehci_ops = { |
| 98 | .powerup_fixup = NULL, |
| 99 | }; |
| 100 | |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 101 | static int ehci_mvebu_probe(struct udevice *dev) |
| 102 | { |
| 103 | struct ehci_mvebu_priv *priv = dev_get_priv(dev); |
| 104 | struct ehci_hccr *hccr; |
| 105 | struct ehci_hcor *hcor; |
| 106 | |
| 107 | /* |
| 108 | * Get the base address for EHCI controller from the device node |
| 109 | */ |
Simon Glass | a821c4a | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 110 | priv->hcd_base = devfdt_get_addr(dev); |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 111 | if (priv->hcd_base == FDT_ADDR_T_NONE) { |
| 112 | debug("Can't get the EHCI register base address\n"); |
| 113 | return -ENXIO; |
| 114 | } |
| 115 | |
Stefan Roese | c6cfcc9 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 116 | /* |
| 117 | * For SoCs without hlock like Armada3700 we need to program the sbuscfg |
| 118 | * reg to guarantee AHB master's burst will not overrun or underrun |
| 119 | * the FIFO. Otherwise all USB2 write option will fail. |
| 120 | * Also, the address decoder doesn't need to get setup with this |
| 121 | * SoC, so don't call usb_brg_adrdec_setup(). |
| 122 | */ |
Simon Glass | 911f3ae | 2017-05-18 20:08:57 -0600 | [diff] [blame] | 123 | if (device_is_compatible(dev, "marvell,armada3700-ehci")) |
Stefan Roese | c6cfcc9 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 124 | marvell_ehci_ops.powerup_fixup = marvell_ehci_powerup_fixup; |
| 125 | else |
| 126 | usb_brg_adrdec_setup((void *)priv->hcd_base); |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 127 | |
| 128 | hccr = (struct ehci_hccr *)(priv->hcd_base + 0x100); |
| 129 | hcor = (struct ehci_hcor *) |
Stefan Roese | c6cfcc9 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 130 | ((uintptr_t)hccr + HC_LENGTH(ehci_readl(&hccr->cr_capbase))); |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 131 | |
Stefan Roese | c6cfcc9 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 132 | debug("ehci-marvell: init hccr %lx and hcor %lx hc_length %ld\n", |
| 133 | (uintptr_t)hccr, (uintptr_t)hcor, |
| 134 | (uintptr_t)HC_LENGTH(ehci_readl(&hccr->cr_capbase))); |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 135 | |
Stefan Roese | c6cfcc9 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 136 | return ehci_register(dev, hccr, hcor, &marvell_ehci_ops, 0, |
| 137 | USB_INIT_HOST); |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 138 | } |
| 139 | |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 140 | static const struct udevice_id ehci_usb_ids[] = { |
| 141 | { .compatible = "marvell,orion-ehci", }, |
Stefan Roese | c6cfcc9 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 142 | { .compatible = "marvell,armada3700-ehci", }, |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 143 | { } |
| 144 | }; |
| 145 | |
| 146 | U_BOOT_DRIVER(ehci_mvebu) = { |
| 147 | .name = "ehci_mvebu", |
| 148 | .id = UCLASS_USB, |
| 149 | .of_match = ehci_usb_ids, |
| 150 | .probe = ehci_mvebu_probe, |
Masahiro Yamada | 4052734 | 2016-09-06 22:17:34 +0900 | [diff] [blame] | 151 | .remove = ehci_deregister, |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 152 | .ops = &ehci_usb_ops, |
| 153 | .platdata_auto_alloc_size = sizeof(struct usb_platdata), |
| 154 | .priv_auto_alloc_size = sizeof(struct ehci_mvebu_priv), |
| 155 | .flags = DM_FLAG_ALLOC_PRIV_DMA, |
| 156 | }; |
| 157 | |
Stefan Roese | fe11ae2 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 158 | #else |
Anton Schubert | 8a33371 | 2015-07-23 15:02:09 +0200 | [diff] [blame] | 159 | #define MVUSB_BASE(port) MVUSB0_BASE |
| 160 | |
| 161 | static void usb_brg_adrdec_setup(int index) |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 162 | { |
| 163 | int i; |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 164 | u32 size, base, attrib; |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 165 | |
| 166 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 167 | |
| 168 | /* Enable DRAM bank */ |
| 169 | switch (i) { |
| 170 | case 0: |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 171 | attrib = MVUSB0_CPU_ATTR_DRAM_CS0; |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 172 | break; |
| 173 | case 1: |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 174 | attrib = MVUSB0_CPU_ATTR_DRAM_CS1; |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 175 | break; |
| 176 | case 2: |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 177 | attrib = MVUSB0_CPU_ATTR_DRAM_CS2; |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 178 | break; |
| 179 | case 3: |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 180 | attrib = MVUSB0_CPU_ATTR_DRAM_CS3; |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 181 | break; |
| 182 | default: |
| 183 | /* invalide bank, disable access */ |
| 184 | attrib = 0; |
| 185 | break; |
| 186 | } |
| 187 | |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 188 | size = gd->bd->bi_dram[i].size; |
| 189 | base = gd->bd->bi_dram[i].start; |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 190 | if ((size) && (attrib)) |
Stefan Roese | 82b9143 | 2015-07-22 10:01:30 +0200 | [diff] [blame] | 191 | writel(MVCPU_WIN_CTRL_DATA(size, USB_TARGET_DRAM, |
| 192 | attrib, MVCPU_WIN_ENABLE), |
| 193 | MVUSB0_BASE + USB_WINDOW_CTRL(i)); |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 194 | else |
Stefan Roese | 82b9143 | 2015-07-22 10:01:30 +0200 | [diff] [blame] | 195 | writel(MVCPU_WIN_DISABLE, |
| 196 | MVUSB0_BASE + USB_WINDOW_CTRL(i)); |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 197 | |
Stefan Roese | 82b9143 | 2015-07-22 10:01:30 +0200 | [diff] [blame] | 198 | writel(base, MVUSB0_BASE + USB_WINDOW_BASE(i)); |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 199 | } |
| 200 | } |
| 201 | |
| 202 | /* |
| 203 | * Create the appropriate control structures to manage |
| 204 | * a new EHCI host controller. |
| 205 | */ |
Troy Kisky | 127efc4 | 2013-10-10 15:27:57 -0700 | [diff] [blame] | 206 | int ehci_hcd_init(int index, enum usb_init_type init, |
| 207 | struct ehci_hccr **hccr, struct ehci_hcor **hcor) |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 208 | { |
Anton Schubert | 8a33371 | 2015-07-23 15:02:09 +0200 | [diff] [blame] | 209 | usb_brg_adrdec_setup(index); |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 210 | |
Anton Schubert | 8a33371 | 2015-07-23 15:02:09 +0200 | [diff] [blame] | 211 | *hccr = (struct ehci_hccr *)(MVUSB_BASE(index) + 0x100); |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 212 | *hcor = (struct ehci_hcor *)((uint32_t) *hccr |
| 213 | + HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase))); |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 214 | |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 215 | debug("ehci-marvell: init hccr %x and hcor %x hc_length %d\n", |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 216 | (uint32_t)*hccr, (uint32_t)*hcor, |
| 217 | (uint32_t)HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase))); |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 218 | |
| 219 | return 0; |
| 220 | } |
| 221 | |
| 222 | /* |
| 223 | * Destroy the appropriate control structures corresponding |
| 224 | * the the EHCI host controller. |
| 225 | */ |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 226 | int ehci_hcd_stop(int index) |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 227 | { |
| 228 | return 0; |
| 229 | } |
Stefan Roese | cd48225 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 230 | |
Sven Schwermer | fd09c20 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 231 | #endif /* CONFIG_IS_ENABLED(DM_USB) */ |