Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Prafulla Wadaskar | 46c54fd | 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 | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 9 | #include <log.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 10 | #include <asm/global_data.h> |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 11 | #include <asm/io.h> |
| 12 | #include <usb.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 13 | #include <linux/delay.h> |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 14 | #include "ehci.h" |
Stefan Roese | 9aa3197 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 15 | #include <linux/mbus.h> |
Lei Wen | 298ae91 | 2011-10-18 20:11:42 +0530 | [diff] [blame] | 16 | #include <asm/arch/cpu.h> |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 17 | #include <dm.h> |
Albert ARIBAUD | 994bca2 | 2012-01-15 22:08:40 +0000 | [diff] [blame] | 18 | |
Trevor Woerner | bb7ab07 | 2020-05-06 08:02:40 -0400 | [diff] [blame] | 19 | #if defined(CONFIG_ARCH_KIRKWOOD) |
Stefan Roese | c243784 | 2014-10-22 12:13:06 +0200 | [diff] [blame] | 20 | #include <asm/arch/soc.h> |
Trevor Woerner | f995375 | 2020-05-06 08:02:38 -0400 | [diff] [blame] | 21 | #elif defined(CONFIG_ARCH_ORION5X) |
Albert ARIBAUD | 994bca2 | 2012-01-15 22:08:40 +0000 | [diff] [blame] | 22 | #include <asm/arch/orion5x.h> |
| 23 | #endif |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 24 | |
Albert ARIBAUD | c3c7645 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 27 | #define USB_WINDOW_CTRL(i) (0x320 + ((i) << 4)) |
| 28 | #define USB_WINDOW_BASE(i) (0x324 + ((i) << 4)) |
| 29 | #define USB_TARGET_DRAM 0x0 |
| 30 | |
Stefan Roese | 46b9db5 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 31 | #define USB2_SBUSCFG_OFF 0x90 |
| 32 | |
| 33 | #define USB_SBUSCFG_BAWR_OFF 0x6 |
| 34 | #define USB_SBUSCFG_BARD_OFF 0x3 |
| 35 | #define USB_SBUSCFG_AHBBRST_OFF 0x0 |
| 36 | |
| 37 | #define USB_SBUSCFG_BAWR_ALIGN_64B 0x4 |
| 38 | #define USB_SBUSCFG_BARD_ALIGN_64B 0x4 |
| 39 | #define USB_SBUSCFG_AHBBRST_INCR16 0x7 |
| 40 | |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 41 | /* |
| 42 | * USB 2.0 Bridge Address Decoding registers setup |
| 43 | */ |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 44 | #if CONFIG_IS_ENABLED(DM_USB) |
Stefan Roese | 9aa3197 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 45 | |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 46 | struct ehci_mvebu_priv { |
| 47 | struct ehci_ctrl ehci; |
| 48 | fdt_addr_t hcd_base; |
| 49 | }; |
Stefan Roese | 9aa3197 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 50 | |
Chris Packham | 927671e | 2022-11-05 17:23:57 +1300 | [diff] [blame] | 51 | #define USB_TO_DRAM_TARGET_ID 0x2 |
| 52 | #define USB_TO_DRAM_ATTR_ID 0x0 |
| 53 | #define USB_DRAM_BASE 0x00000000 |
| 54 | #define USB_DRAM_SIZE 0xfff /* don't overrun u-boot source (was 0xffff) */ |
| 55 | |
Stefan Roese | 9aa3197 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 56 | /* |
| 57 | * Once all the older Marvell SoC's (Orion, Kirkwood) are converted |
| 58 | * to the common mvebu archticture including the mbus setup, this |
| 59 | * will be the only function needed to configure the access windows |
| 60 | */ |
Chris Packham | 927671e | 2022-11-05 17:23:57 +1300 | [diff] [blame] | 61 | static void usb_brg_adrdec_setup(struct udevice *dev, void *base) |
Stefan Roese | 9aa3197 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 62 | { |
| 63 | const struct mbus_dram_target_info *dram; |
| 64 | int i; |
| 65 | |
| 66 | dram = mvebu_mbus_dram_info(); |
| 67 | |
| 68 | for (i = 0; i < 4; i++) { |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 69 | writel(0, base + USB_WINDOW_CTRL(i)); |
| 70 | writel(0, base + USB_WINDOW_BASE(i)); |
Stefan Roese | 9aa3197 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 71 | } |
| 72 | |
Chris Packham | 927671e | 2022-11-05 17:23:57 +1300 | [diff] [blame] | 73 | if (device_is_compatible(dev, "marvell,ac5-ehci")) { |
| 74 | /* |
| 75 | * use decoding window to map dram address seen by usb to 0x0 |
| 76 | */ |
Stefan Roese | 9aa3197 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 77 | |
| 78 | /* Write size, attributes and target id to control register */ |
Chris Packham | 927671e | 2022-11-05 17:23:57 +1300 | [diff] [blame] | 79 | writel((USB_DRAM_SIZE << 16) | (USB_TO_DRAM_ATTR_ID << 8) | |
| 80 | (USB_TO_DRAM_TARGET_ID << 4) | 1, |
| 81 | base + USB_WINDOW_CTRL(0)); |
Stefan Roese | 9aa3197 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 82 | |
| 83 | /* Write base address to base register */ |
Chris Packham | 927671e | 2022-11-05 17:23:57 +1300 | [diff] [blame] | 84 | writel(USB_DRAM_BASE, base + USB_WINDOW_BASE(0)); |
| 85 | |
| 86 | debug("## AC5 decoding windows, ctrl[%p]=0x%x, base[%p]=0x%x\n", |
| 87 | base + USB_WINDOW_CTRL(0), readl(base + USB_WINDOW_CTRL(0)), |
| 88 | base + USB_WINDOW_BASE(0), readl(base + USB_WINDOW_BASE(0))); |
| 89 | } else { |
| 90 | for (i = 0; i < dram->num_cs; i++) { |
| 91 | const struct mbus_dram_window *cs = dram->cs + i; |
| 92 | |
| 93 | /* Write size, attributes and target id to control register */ |
| 94 | writel(((cs->size - 1) & 0xffff0000) | (cs->mbus_attr << 8) | |
| 95 | (dram->mbus_dram_target_id << 4) | 1, |
| 96 | base + USB_WINDOW_CTRL(i)); |
| 97 | |
| 98 | /* Write base address to base register */ |
| 99 | writel(cs->base, base + USB_WINDOW_BASE(i)); |
| 100 | } |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 101 | } |
| 102 | } |
| 103 | |
Stefan Roese | 46b9db5 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 104 | static void marvell_ehci_powerup_fixup(struct ehci_ctrl *ctrl, |
| 105 | uint32_t *status_reg, uint32_t *reg) |
| 106 | { |
| 107 | struct ehci_mvebu_priv *priv = ctrl->priv; |
| 108 | |
| 109 | /* |
| 110 | * Set default value for reg SBUSCFG, which is Control for the AMBA |
| 111 | * system bus interface: |
| 112 | * BAWR = BARD = 4 : Align rd/wr bursts packets larger than 64 bytes |
| 113 | * AHBBRST = 7 : Align AHB burst for packets larger than 64 bytes |
| 114 | */ |
| 115 | writel((USB_SBUSCFG_BAWR_ALIGN_64B << USB_SBUSCFG_BAWR_OFF) | |
| 116 | (USB_SBUSCFG_BARD_ALIGN_64B << USB_SBUSCFG_BARD_OFF) | |
| 117 | (USB_SBUSCFG_AHBBRST_INCR16 << USB_SBUSCFG_AHBBRST_OFF), |
| 118 | priv->hcd_base + USB2_SBUSCFG_OFF); |
| 119 | |
| 120 | mdelay(50); |
| 121 | } |
| 122 | |
| 123 | static struct ehci_ops marvell_ehci_ops = { |
| 124 | .powerup_fixup = NULL, |
| 125 | }; |
| 126 | |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 127 | static int ehci_mvebu_probe(struct udevice *dev) |
| 128 | { |
| 129 | struct ehci_mvebu_priv *priv = dev_get_priv(dev); |
| 130 | struct ehci_hccr *hccr; |
| 131 | struct ehci_hcor *hcor; |
| 132 | |
| 133 | /* |
| 134 | * Get the base address for EHCI controller from the device node |
| 135 | */ |
Masahiro Yamada | a89b4de | 2020-07-17 14:36:48 +0900 | [diff] [blame] | 136 | priv->hcd_base = dev_read_addr(dev); |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 137 | if (priv->hcd_base == FDT_ADDR_T_NONE) { |
| 138 | debug("Can't get the EHCI register base address\n"); |
| 139 | return -ENXIO; |
Stefan Roese | 9aa3197 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 140 | } |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 141 | |
Stefan Roese | 46b9db5 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 142 | /* |
| 143 | * For SoCs without hlock like Armada3700 we need to program the sbuscfg |
| 144 | * reg to guarantee AHB master's burst will not overrun or underrun |
| 145 | * the FIFO. Otherwise all USB2 write option will fail. |
| 146 | * Also, the address decoder doesn't need to get setup with this |
| 147 | * SoC, so don't call usb_brg_adrdec_setup(). |
| 148 | */ |
Pali Rohár | ecdc7bf | 2022-02-14 11:34:24 +0100 | [diff] [blame] | 149 | if (device_is_compatible(dev, "marvell,armada-3700-ehci")) |
Stefan Roese | 46b9db5 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 150 | marvell_ehci_ops.powerup_fixup = marvell_ehci_powerup_fixup; |
| 151 | else |
Chris Packham | 927671e | 2022-11-05 17:23:57 +1300 | [diff] [blame] | 152 | usb_brg_adrdec_setup(dev, (void *)priv->hcd_base); |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 153 | |
| 154 | hccr = (struct ehci_hccr *)(priv->hcd_base + 0x100); |
| 155 | hcor = (struct ehci_hcor *) |
Stefan Roese | 46b9db5 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 156 | ((uintptr_t)hccr + HC_LENGTH(ehci_readl(&hccr->cr_capbase))); |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 157 | |
Stefan Roese | 46b9db5 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 158 | debug("ehci-marvell: init hccr %lx and hcor %lx hc_length %ld\n", |
| 159 | (uintptr_t)hccr, (uintptr_t)hcor, |
| 160 | (uintptr_t)HC_LENGTH(ehci_readl(&hccr->cr_capbase))); |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 161 | |
Chris Packham | 927671e | 2022-11-05 17:23:57 +1300 | [diff] [blame] | 162 | #define PHY_CALIB_OFFSET 0x808 |
| 163 | /* |
| 164 | * Trigger calibration during each usb start/reset: |
| 165 | * BIT 13 to 0, and then to 1 |
| 166 | */ |
| 167 | if (device_is_compatible(dev, "marvell,ac5-ehci")) { |
| 168 | void *phy_calib_reg = (void *)(priv->hcd_base + PHY_CALIB_OFFSET); |
| 169 | u32 val = readl(phy_calib_reg) & (~BIT(13)); |
| 170 | |
| 171 | writel(val, phy_calib_reg); |
| 172 | writel(val | BIT(13), phy_calib_reg); |
| 173 | } |
| 174 | |
Stefan Roese | 46b9db5 | 2016-07-18 17:24:56 +0200 | [diff] [blame] | 175 | return ehci_register(dev, hccr, hcor, &marvell_ehci_ops, 0, |
| 176 | USB_INIT_HOST); |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 177 | } |
| 178 | |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 179 | static const struct udevice_id ehci_usb_ids[] = { |
| 180 | { .compatible = "marvell,orion-ehci", }, |
Pali Rohár | ecdc7bf | 2022-02-14 11:34:24 +0100 | [diff] [blame] | 181 | { .compatible = "marvell,armada-3700-ehci", }, |
Chris Packham | 927671e | 2022-11-05 17:23:57 +1300 | [diff] [blame] | 182 | { .compatible = "marvell,ac5-ehci", }, |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 183 | { } |
| 184 | }; |
| 185 | |
| 186 | U_BOOT_DRIVER(ehci_mvebu) = { |
| 187 | .name = "ehci_mvebu", |
| 188 | .id = UCLASS_USB, |
| 189 | .of_match = ehci_usb_ids, |
| 190 | .probe = ehci_mvebu_probe, |
Masahiro Yamada | d41919b | 2016-09-06 22:17:34 +0900 | [diff] [blame] | 191 | .remove = ehci_deregister, |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 192 | .ops = &ehci_usb_ops, |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 193 | .plat_auto = sizeof(struct usb_plat), |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 194 | .priv_auto = sizeof(struct ehci_mvebu_priv), |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 195 | .flags = DM_FLAG_ALLOC_PRIV_DMA, |
| 196 | }; |
| 197 | |
Stefan Roese | 9aa3197 | 2015-06-29 14:58:15 +0200 | [diff] [blame] | 198 | #else |
Anton Schubert | 11b8ebf | 2015-07-23 15:02:09 +0200 | [diff] [blame] | 199 | #define MVUSB_BASE(port) MVUSB0_BASE |
| 200 | |
| 201 | static void usb_brg_adrdec_setup(int index) |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 202 | { |
| 203 | int i; |
Albert ARIBAUD | c3c7645 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 204 | u32 size, base, attrib; |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 205 | |
| 206 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 207 | |
| 208 | /* Enable DRAM bank */ |
| 209 | switch (i) { |
| 210 | case 0: |
Albert ARIBAUD | c3c7645 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 211 | attrib = MVUSB0_CPU_ATTR_DRAM_CS0; |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 212 | break; |
| 213 | case 1: |
Albert ARIBAUD | c3c7645 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 214 | attrib = MVUSB0_CPU_ATTR_DRAM_CS1; |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 215 | break; |
| 216 | case 2: |
Albert ARIBAUD | c3c7645 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 217 | attrib = MVUSB0_CPU_ATTR_DRAM_CS2; |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 218 | break; |
| 219 | case 3: |
Albert ARIBAUD | c3c7645 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 220 | attrib = MVUSB0_CPU_ATTR_DRAM_CS3; |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 221 | break; |
| 222 | default: |
| 223 | /* invalide bank, disable access */ |
| 224 | attrib = 0; |
| 225 | break; |
| 226 | } |
| 227 | |
Albert ARIBAUD | c3c7645 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 228 | size = gd->bd->bi_dram[i].size; |
| 229 | base = gd->bd->bi_dram[i].start; |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 230 | if ((size) && (attrib)) |
Stefan Roese | 44123cf | 2015-07-22 10:01:30 +0200 | [diff] [blame] | 231 | writel(MVCPU_WIN_CTRL_DATA(size, USB_TARGET_DRAM, |
| 232 | attrib, MVCPU_WIN_ENABLE), |
| 233 | MVUSB0_BASE + USB_WINDOW_CTRL(i)); |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 234 | else |
Stefan Roese | 44123cf | 2015-07-22 10:01:30 +0200 | [diff] [blame] | 235 | writel(MVCPU_WIN_DISABLE, |
| 236 | MVUSB0_BASE + USB_WINDOW_CTRL(i)); |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 237 | |
Stefan Roese | 44123cf | 2015-07-22 10:01:30 +0200 | [diff] [blame] | 238 | writel(base, MVUSB0_BASE + USB_WINDOW_BASE(i)); |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 239 | } |
| 240 | } |
| 241 | |
| 242 | /* |
| 243 | * Create the appropriate control structures to manage |
| 244 | * a new EHCI host controller. |
| 245 | */ |
Troy Kisky | 7d6bbb9 | 2013-10-10 15:27:57 -0700 | [diff] [blame] | 246 | int ehci_hcd_init(int index, enum usb_init_type init, |
| 247 | struct ehci_hccr **hccr, struct ehci_hcor **hcor) |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 248 | { |
Anton Schubert | 11b8ebf | 2015-07-23 15:02:09 +0200 | [diff] [blame] | 249 | usb_brg_adrdec_setup(index); |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 250 | |
Anton Schubert | 11b8ebf | 2015-07-23 15:02:09 +0200 | [diff] [blame] | 251 | *hccr = (struct ehci_hccr *)(MVUSB_BASE(index) + 0x100); |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 252 | *hcor = (struct ehci_hcor *)((uint32_t) *hccr |
| 253 | + HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase))); |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 254 | |
Albert ARIBAUD | c3c7645 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 255 | debug("ehci-marvell: init hccr %x and hcor %x hc_length %d\n", |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 256 | (uint32_t)*hccr, (uint32_t)*hcor, |
| 257 | (uint32_t)HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase))); |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 258 | |
| 259 | return 0; |
| 260 | } |
| 261 | |
| 262 | /* |
| 263 | * Destroy the appropriate control structures corresponding |
| 264 | * the the EHCI host controller. |
| 265 | */ |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 266 | int ehci_hcd_stop(int index) |
Prafulla Wadaskar | 46c54fd | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 267 | { |
| 268 | return 0; |
| 269 | } |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 270 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 271 | #endif /* CONFIG_IS_ENABLED(DM_USB) */ |