Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 2 | /* |
| 3 | * PCIe driver for Marvell MVEBU SoCs |
| 4 | * |
| 5 | * Based on Barebox drivers/pci/pci-mvebu.c |
| 6 | * |
| 7 | * Ported to U-Boot by: |
| 8 | * Anton Schubert <anton.schubert@gmx.de> |
| 9 | * Stefan Roese <sr@denx.de> |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <common.h> |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 13 | #include <dm.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 14 | #include <log.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 15 | #include <malloc.h> |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 16 | #include <dm/device-internal.h> |
| 17 | #include <dm/lists.h> |
| 18 | #include <dm/of_access.h> |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 19 | #include <pci.h> |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 20 | #include <asm/io.h> |
| 21 | #include <asm/arch/cpu.h> |
| 22 | #include <asm/arch/soc.h> |
Simon Glass | 4dcacfc | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 23 | #include <linux/bitops.h> |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 24 | #include <linux/errno.h> |
| 25 | #include <linux/ioport.h> |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 26 | #include <linux/mbus.h> |
| 27 | |
| 28 | DECLARE_GLOBAL_DATA_PTR; |
| 29 | |
| 30 | /* PCIe unit register offsets */ |
| 31 | #define SELECT(x, n) ((x >> n) & 1UL) |
| 32 | |
| 33 | #define PCIE_DEV_ID_OFF 0x0000 |
| 34 | #define PCIE_CMD_OFF 0x0004 |
| 35 | #define PCIE_DEV_REV_OFF 0x0008 |
| 36 | #define PCIE_BAR_LO_OFF(n) (0x0010 + ((n) << 3)) |
| 37 | #define PCIE_BAR_HI_OFF(n) (0x0014 + ((n) << 3)) |
| 38 | #define PCIE_CAPAB_OFF 0x0060 |
| 39 | #define PCIE_CTRL_STAT_OFF 0x0068 |
| 40 | #define PCIE_HEADER_LOG_4_OFF 0x0128 |
| 41 | #define PCIE_BAR_CTRL_OFF(n) (0x1804 + (((n) - 1) * 4)) |
| 42 | #define PCIE_WIN04_CTRL_OFF(n) (0x1820 + ((n) << 4)) |
| 43 | #define PCIE_WIN04_BASE_OFF(n) (0x1824 + ((n) << 4)) |
| 44 | #define PCIE_WIN04_REMAP_OFF(n) (0x182c + ((n) << 4)) |
| 45 | #define PCIE_WIN5_CTRL_OFF 0x1880 |
| 46 | #define PCIE_WIN5_BASE_OFF 0x1884 |
| 47 | #define PCIE_WIN5_REMAP_OFF 0x188c |
| 48 | #define PCIE_CONF_ADDR_OFF 0x18f8 |
| 49 | #define PCIE_CONF_ADDR_EN BIT(31) |
| 50 | #define PCIE_CONF_REG(r) ((((r) & 0xf00) << 16) | ((r) & 0xfc)) |
| 51 | #define PCIE_CONF_BUS(b) (((b) & 0xff) << 16) |
| 52 | #define PCIE_CONF_DEV(d) (((d) & 0x1f) << 11) |
| 53 | #define PCIE_CONF_FUNC(f) (((f) & 0x7) << 8) |
| 54 | #define PCIE_CONF_ADDR(dev, reg) \ |
| 55 | (PCIE_CONF_BUS(PCI_BUS(dev)) | PCIE_CONF_DEV(PCI_DEV(dev)) | \ |
| 56 | PCIE_CONF_FUNC(PCI_FUNC(dev)) | PCIE_CONF_REG(reg) | \ |
| 57 | PCIE_CONF_ADDR_EN) |
| 58 | #define PCIE_CONF_DATA_OFF 0x18fc |
| 59 | #define PCIE_MASK_OFF 0x1910 |
| 60 | #define PCIE_MASK_ENABLE_INTS (0xf << 24) |
| 61 | #define PCIE_CTRL_OFF 0x1a00 |
| 62 | #define PCIE_CTRL_X1_MODE BIT(0) |
| 63 | #define PCIE_STAT_OFF 0x1a04 |
| 64 | #define PCIE_STAT_BUS (0xff << 8) |
| 65 | #define PCIE_STAT_DEV (0x1f << 16) |
| 66 | #define PCIE_STAT_LINK_DOWN BIT(0) |
| 67 | #define PCIE_DEBUG_CTRL 0x1a60 |
| 68 | #define PCIE_DEBUG_SOFT_RESET BIT(20) |
| 69 | |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 70 | struct mvebu_pcie { |
| 71 | struct pci_controller hose; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 72 | void __iomem *base; |
| 73 | void __iomem *membase; |
| 74 | struct resource mem; |
| 75 | void __iomem *iobase; |
Phil Sutter | 09577aa | 2021-01-03 23:06:46 +0100 | [diff] [blame^] | 76 | struct resource io; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 77 | u32 port; |
| 78 | u32 lane; |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 79 | int devfn; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 80 | u32 lane_mask; |
| 81 | pci_dev_t dev; |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 82 | char name[16]; |
| 83 | unsigned int mem_target; |
| 84 | unsigned int mem_attr; |
Phil Sutter | 09577aa | 2021-01-03 23:06:46 +0100 | [diff] [blame^] | 85 | unsigned int io_target; |
| 86 | unsigned int io_attr; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 87 | }; |
| 88 | |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 89 | /* |
| 90 | * MVEBU PCIe controller needs MEMORY and I/O BARs to be mapped |
VlaoMao | 9b9606d | 2017-09-22 18:49:02 +0300 | [diff] [blame] | 91 | * into SoCs address space. Each controller will map 128M of MEM |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 92 | * and 64K of I/O space when registered. |
| 93 | */ |
| 94 | static void __iomem *mvebu_pcie_membase = (void __iomem *)MBUS_PCI_MEM_BASE; |
VlaoMao | 9b9606d | 2017-09-22 18:49:02 +0300 | [diff] [blame] | 95 | #define PCIE_MEM_SIZE (128 << 20) |
Phil Sutter | 09577aa | 2021-01-03 23:06:46 +0100 | [diff] [blame^] | 96 | static void __iomem *mvebu_pcie_iobase = (void __iomem *)MBUS_PCI_IO_BASE; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 97 | |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 98 | static inline bool mvebu_pcie_link_up(struct mvebu_pcie *pcie) |
| 99 | { |
| 100 | u32 val; |
| 101 | val = readl(pcie->base + PCIE_STAT_OFF); |
| 102 | return !(val & PCIE_STAT_LINK_DOWN); |
| 103 | } |
| 104 | |
| 105 | static void mvebu_pcie_set_local_bus_nr(struct mvebu_pcie *pcie, int busno) |
| 106 | { |
| 107 | u32 stat; |
| 108 | |
| 109 | stat = readl(pcie->base + PCIE_STAT_OFF); |
| 110 | stat &= ~PCIE_STAT_BUS; |
| 111 | stat |= busno << 8; |
| 112 | writel(stat, pcie->base + PCIE_STAT_OFF); |
| 113 | } |
| 114 | |
| 115 | static void mvebu_pcie_set_local_dev_nr(struct mvebu_pcie *pcie, int devno) |
| 116 | { |
| 117 | u32 stat; |
| 118 | |
| 119 | stat = readl(pcie->base + PCIE_STAT_OFF); |
| 120 | stat &= ~PCIE_STAT_DEV; |
| 121 | stat |= devno << 16; |
| 122 | writel(stat, pcie->base + PCIE_STAT_OFF); |
| 123 | } |
| 124 | |
| 125 | static int mvebu_pcie_get_local_bus_nr(struct mvebu_pcie *pcie) |
| 126 | { |
| 127 | u32 stat; |
| 128 | |
| 129 | stat = readl(pcie->base + PCIE_STAT_OFF); |
| 130 | return (stat & PCIE_STAT_BUS) >> 8; |
| 131 | } |
| 132 | |
| 133 | static int mvebu_pcie_get_local_dev_nr(struct mvebu_pcie *pcie) |
| 134 | { |
| 135 | u32 stat; |
| 136 | |
| 137 | stat = readl(pcie->base + PCIE_STAT_OFF); |
| 138 | return (stat & PCIE_STAT_DEV) >> 16; |
| 139 | } |
| 140 | |
| 141 | static inline struct mvebu_pcie *hose_to_pcie(struct pci_controller *hose) |
| 142 | { |
| 143 | return container_of(hose, struct mvebu_pcie, hose); |
| 144 | } |
| 145 | |
Simon Glass | 2a311e8 | 2020-01-27 08:49:37 -0700 | [diff] [blame] | 146 | static int mvebu_pcie_read_config(const struct udevice *bus, pci_dev_t bdf, |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 147 | uint offset, ulong *valuep, |
| 148 | enum pci_size_t size) |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 149 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 150 | struct mvebu_pcie *pcie = dev_get_plat(bus); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 151 | int local_bus = PCI_BUS(pcie->dev); |
| 152 | int local_dev = PCI_DEV(pcie->dev); |
| 153 | u32 reg; |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 154 | u32 data; |
| 155 | |
| 156 | debug("PCIE CFG read: (b,d,f)=(%2d,%2d,%2d) ", |
| 157 | PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf)); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 158 | |
| 159 | /* Only allow one other device besides the local one on the local bus */ |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 160 | if (PCI_BUS(bdf) == local_bus && PCI_DEV(bdf) != local_dev) { |
| 161 | if (local_dev == 0 && PCI_DEV(bdf) != 1) { |
| 162 | debug("- out of range\n"); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 163 | /* |
| 164 | * If local dev is 0, the first other dev can |
| 165 | * only be 1 |
| 166 | */ |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 167 | *valuep = pci_get_ff(size); |
| 168 | return 0; |
| 169 | } else if (local_dev != 0 && PCI_DEV(bdf) != 0) { |
| 170 | debug("- out of range\n"); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 171 | /* |
| 172 | * If local dev is not 0, the first other dev can |
| 173 | * only be 0 |
| 174 | */ |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 175 | *valuep = pci_get_ff(size); |
| 176 | return 0; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 177 | } |
| 178 | } |
| 179 | |
| 180 | /* write address */ |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 181 | reg = PCIE_CONF_ADDR(bdf, offset); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 182 | writel(reg, pcie->base + PCIE_CONF_ADDR_OFF); |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 183 | data = readl(pcie->base + PCIE_CONF_DATA_OFF); |
| 184 | debug("(addr,val)=(0x%04x, 0x%08x)\n", offset, data); |
| 185 | *valuep = pci_conv_32_to_size(data, offset, size); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 186 | |
| 187 | return 0; |
| 188 | } |
| 189 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 190 | static int mvebu_pcie_write_config(struct udevice *bus, pci_dev_t bdf, |
| 191 | uint offset, ulong value, |
| 192 | enum pci_size_t size) |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 193 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 194 | struct mvebu_pcie *pcie = dev_get_plat(bus); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 195 | int local_bus = PCI_BUS(pcie->dev); |
| 196 | int local_dev = PCI_DEV(pcie->dev); |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 197 | u32 data; |
| 198 | |
| 199 | debug("PCIE CFG write: (b,d,f)=(%2d,%2d,%2d) ", |
| 200 | PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf)); |
| 201 | debug("(addr,val)=(0x%04x, 0x%08lx)\n", offset, value); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 202 | |
| 203 | /* Only allow one other device besides the local one on the local bus */ |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 204 | if (PCI_BUS(bdf) == local_bus && PCI_DEV(bdf) != local_dev) { |
| 205 | if (local_dev == 0 && PCI_DEV(bdf) != 1) { |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 206 | /* |
| 207 | * If local dev is 0, the first other dev can |
| 208 | * only be 1 |
| 209 | */ |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 210 | return 0; |
| 211 | } else if (local_dev != 0 && PCI_DEV(bdf) != 0) { |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 212 | /* |
| 213 | * If local dev is not 0, the first other dev can |
| 214 | * only be 0 |
| 215 | */ |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 216 | return 0; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 217 | } |
| 218 | } |
| 219 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 220 | writel(PCIE_CONF_ADDR(bdf, offset), pcie->base + PCIE_CONF_ADDR_OFF); |
| 221 | data = pci_conv_size_to_32(0, value, offset, size); |
| 222 | writel(data, pcie->base + PCIE_CONF_DATA_OFF); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 223 | |
| 224 | return 0; |
| 225 | } |
| 226 | |
| 227 | /* |
| 228 | * Setup PCIE BARs and Address Decode Wins: |
| 229 | * BAR[0,2] -> disabled, BAR[1] -> covers all DRAM banks |
| 230 | * WIN[0-3] -> DRAM bank[0-3] |
| 231 | */ |
| 232 | static void mvebu_pcie_setup_wins(struct mvebu_pcie *pcie) |
| 233 | { |
| 234 | const struct mbus_dram_target_info *dram = mvebu_mbus_dram_info(); |
| 235 | u32 size; |
| 236 | int i; |
| 237 | |
| 238 | /* First, disable and clear BARs and windows. */ |
| 239 | for (i = 1; i < 3; i++) { |
| 240 | writel(0, pcie->base + PCIE_BAR_CTRL_OFF(i)); |
| 241 | writel(0, pcie->base + PCIE_BAR_LO_OFF(i)); |
| 242 | writel(0, pcie->base + PCIE_BAR_HI_OFF(i)); |
| 243 | } |
| 244 | |
| 245 | for (i = 0; i < 5; i++) { |
| 246 | writel(0, pcie->base + PCIE_WIN04_CTRL_OFF(i)); |
| 247 | writel(0, pcie->base + PCIE_WIN04_BASE_OFF(i)); |
| 248 | writel(0, pcie->base + PCIE_WIN04_REMAP_OFF(i)); |
| 249 | } |
| 250 | |
| 251 | writel(0, pcie->base + PCIE_WIN5_CTRL_OFF); |
| 252 | writel(0, pcie->base + PCIE_WIN5_BASE_OFF); |
| 253 | writel(0, pcie->base + PCIE_WIN5_REMAP_OFF); |
| 254 | |
| 255 | /* Setup windows for DDR banks. Count total DDR size on the fly. */ |
| 256 | size = 0; |
| 257 | for (i = 0; i < dram->num_cs; i++) { |
| 258 | const struct mbus_dram_window *cs = dram->cs + i; |
| 259 | |
| 260 | writel(cs->base & 0xffff0000, |
| 261 | pcie->base + PCIE_WIN04_BASE_OFF(i)); |
| 262 | writel(0, pcie->base + PCIE_WIN04_REMAP_OFF(i)); |
| 263 | writel(((cs->size - 1) & 0xffff0000) | |
| 264 | (cs->mbus_attr << 8) | |
| 265 | (dram->mbus_dram_target_id << 4) | 1, |
| 266 | pcie->base + PCIE_WIN04_CTRL_OFF(i)); |
| 267 | |
| 268 | size += cs->size; |
| 269 | } |
| 270 | |
| 271 | /* Round up 'size' to the nearest power of two. */ |
| 272 | if ((size & (size - 1)) != 0) |
| 273 | size = 1 << fls(size); |
| 274 | |
| 275 | /* Setup BAR[1] to all DRAM banks. */ |
| 276 | writel(dram->cs[0].base | 0xc, pcie->base + PCIE_BAR_LO_OFF(1)); |
| 277 | writel(0, pcie->base + PCIE_BAR_HI_OFF(1)); |
| 278 | writel(((size - 1) & 0xffff0000) | 0x1, |
| 279 | pcie->base + PCIE_BAR_CTRL_OFF(1)); |
| 280 | } |
| 281 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 282 | static int mvebu_pcie_probe(struct udevice *dev) |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 283 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 284 | struct mvebu_pcie *pcie = dev_get_plat(dev); |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 285 | struct udevice *ctlr = pci_get_controller(dev); |
| 286 | struct pci_controller *hose = dev_get_uclass_priv(ctlr); |
| 287 | static int bus; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 288 | u32 reg; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 289 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 290 | debug("%s: PCIe %d.%d - up, base %08x\n", __func__, |
| 291 | pcie->port, pcie->lane, (u32)pcie->base); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 292 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 293 | /* Read Id info and local bus/dev */ |
| 294 | debug("direct conf read %08x, local bus %d, local dev %d\n", |
| 295 | readl(pcie->base), mvebu_pcie_get_local_bus_nr(pcie), |
| 296 | mvebu_pcie_get_local_dev_nr(pcie)); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 297 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 298 | mvebu_pcie_set_local_bus_nr(pcie, bus); |
| 299 | mvebu_pcie_set_local_dev_nr(pcie, 0); |
| 300 | pcie->dev = PCI_BDF(bus, 0, 0); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 301 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 302 | pcie->mem.start = (u32)mvebu_pcie_membase; |
| 303 | pcie->mem.end = pcie->mem.start + PCIE_MEM_SIZE - 1; |
| 304 | mvebu_pcie_membase += PCIE_MEM_SIZE; |
| 305 | |
| 306 | if (mvebu_mbus_add_window_by_id(pcie->mem_target, pcie->mem_attr, |
| 307 | (phys_addr_t)pcie->mem.start, |
| 308 | PCIE_MEM_SIZE)) { |
| 309 | printf("PCIe unable to add mbus window for mem at %08x+%08x\n", |
| 310 | (u32)pcie->mem.start, PCIE_MEM_SIZE); |
| 311 | } |
| 312 | |
Phil Sutter | 09577aa | 2021-01-03 23:06:46 +0100 | [diff] [blame^] | 313 | pcie->io.start = (u32)mvebu_pcie_iobase; |
| 314 | pcie->io.end = pcie->io.start + MBUS_PCI_IO_SIZE - 1; |
| 315 | mvebu_pcie_iobase += MBUS_PCI_IO_SIZE; |
| 316 | |
| 317 | if (mvebu_mbus_add_window_by_id(pcie->io_target, pcie->io_attr, |
| 318 | (phys_addr_t)pcie->io.start, |
| 319 | MBUS_PCI_IO_SIZE)) { |
| 320 | printf("PCIe unable to add mbus window for IO at %08x+%08x\n", |
| 321 | (u32)pcie->io.start, MBUS_PCI_IO_SIZE); |
| 322 | } |
| 323 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 324 | /* Setup windows and configure host bridge */ |
| 325 | mvebu_pcie_setup_wins(pcie); |
| 326 | |
| 327 | /* Master + slave enable. */ |
| 328 | reg = readl(pcie->base + PCIE_CMD_OFF); |
| 329 | reg |= PCI_COMMAND_MEMORY; |
Phil Sutter | 09577aa | 2021-01-03 23:06:46 +0100 | [diff] [blame^] | 330 | reg |= PCI_COMMAND_IO; |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 331 | reg |= PCI_COMMAND_MASTER; |
| 332 | reg |= BIT(10); /* disable interrupts */ |
| 333 | writel(reg, pcie->base + PCIE_CMD_OFF); |
| 334 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 335 | /* PCI memory space */ |
| 336 | pci_set_region(hose->regions + 0, pcie->mem.start, |
| 337 | pcie->mem.start, PCIE_MEM_SIZE, PCI_REGION_MEM); |
| 338 | pci_set_region(hose->regions + 1, |
| 339 | 0, 0, |
| 340 | gd->ram_size, |
| 341 | PCI_REGION_MEM | PCI_REGION_SYS_MEMORY); |
Phil Sutter | 09577aa | 2021-01-03 23:06:46 +0100 | [diff] [blame^] | 342 | pci_set_region(hose->regions + 2, pcie->io.start, |
| 343 | pcie->io.start, MBUS_PCI_IO_SIZE, PCI_REGION_IO); |
| 344 | hose->region_count = 3; |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 345 | |
Marek Behún | 587816d | 2019-08-07 15:01:56 +0200 | [diff] [blame] | 346 | /* Set BAR0 to internal registers */ |
| 347 | writel(SOC_REGS_PHY_BASE, pcie->base + PCIE_BAR_LO_OFF(0)); |
| 348 | writel(0, pcie->base + PCIE_BAR_HI_OFF(0)); |
| 349 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 350 | bus++; |
| 351 | |
| 352 | return 0; |
| 353 | } |
| 354 | |
| 355 | static int mvebu_pcie_port_parse_dt(ofnode node, struct mvebu_pcie *pcie) |
| 356 | { |
| 357 | const u32 *addr; |
| 358 | int len; |
| 359 | |
| 360 | addr = ofnode_get_property(node, "assigned-addresses", &len); |
| 361 | if (!addr) { |
| 362 | pr_err("property \"assigned-addresses\" not found"); |
| 363 | return -FDT_ERR_NOTFOUND; |
| 364 | } |
| 365 | |
| 366 | pcie->base = (void *)(fdt32_to_cpu(addr[2]) + SOC_REGS_PHY_BASE); |
| 367 | |
| 368 | return 0; |
| 369 | } |
| 370 | |
| 371 | #define DT_FLAGS_TO_TYPE(flags) (((flags) >> 24) & 0x03) |
| 372 | #define DT_TYPE_IO 0x1 |
| 373 | #define DT_TYPE_MEM32 0x2 |
| 374 | #define DT_CPUADDR_TO_TARGET(cpuaddr) (((cpuaddr) >> 56) & 0xFF) |
| 375 | #define DT_CPUADDR_TO_ATTR(cpuaddr) (((cpuaddr) >> 48) & 0xFF) |
| 376 | |
| 377 | static int mvebu_get_tgt_attr(ofnode node, int devfn, |
| 378 | unsigned long type, |
| 379 | unsigned int *tgt, |
| 380 | unsigned int *attr) |
| 381 | { |
| 382 | const int na = 3, ns = 2; |
| 383 | const __be32 *range; |
| 384 | int rlen, nranges, rangesz, pna, i; |
| 385 | |
| 386 | *tgt = -1; |
| 387 | *attr = -1; |
| 388 | |
| 389 | range = ofnode_get_property(node, "ranges", &rlen); |
| 390 | if (!range) |
| 391 | return -EINVAL; |
| 392 | |
Stefan Roese | 24e23bd | 2019-02-11 07:53:34 +0100 | [diff] [blame] | 393 | /* |
| 394 | * Linux uses of_n_addr_cells() to get the number of address cells |
| 395 | * here. Currently this function is only available in U-Boot when |
| 396 | * CONFIG_OF_LIVE is enabled. Until this is enabled for MVEBU in |
| 397 | * general, lets't hardcode the "pna" value in the U-Boot code. |
| 398 | */ |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 399 | pna = 2; /* hardcoded for now because of lack of of_n_addr_cells() */ |
| 400 | rangesz = pna + na + ns; |
| 401 | nranges = rlen / sizeof(__be32) / rangesz; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 402 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 403 | for (i = 0; i < nranges; i++, range += rangesz) { |
| 404 | u32 flags = of_read_number(range, 1); |
| 405 | u32 slot = of_read_number(range + 1, 1); |
| 406 | u64 cpuaddr = of_read_number(range + na, pna); |
| 407 | unsigned long rtype; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 408 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 409 | if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_IO) |
| 410 | rtype = IORESOURCE_IO; |
| 411 | else if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_MEM32) |
| 412 | rtype = IORESOURCE_MEM; |
| 413 | else |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 414 | continue; |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 415 | |
| 416 | /* |
| 417 | * The Linux code used PCI_SLOT() here, which expects devfn |
| 418 | * in bits 7..0. PCI_DEV() in U-Boot is similar to PCI_SLOT(), |
| 419 | * only expects devfn in 15..8, where its saved in this driver. |
| 420 | */ |
| 421 | if (slot == PCI_DEV(devfn) && type == rtype) { |
| 422 | *tgt = DT_CPUADDR_TO_TARGET(cpuaddr); |
| 423 | *attr = DT_CPUADDR_TO_ATTR(cpuaddr); |
| 424 | return 0; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 425 | } |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 426 | } |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 427 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 428 | return -ENOENT; |
| 429 | } |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 430 | |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 431 | static int mvebu_pcie_of_to_plat(struct udevice *dev) |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 432 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 433 | struct mvebu_pcie *pcie = dev_get_plat(dev); |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 434 | int ret = 0; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 435 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 436 | /* Get port number, lane number and memory target / attr */ |
| 437 | if (ofnode_read_u32(dev_ofnode(dev), "marvell,pcie-port", |
| 438 | &pcie->port)) { |
| 439 | ret = -ENODEV; |
| 440 | goto err; |
| 441 | } |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 442 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 443 | if (ofnode_read_u32(dev_ofnode(dev), "marvell,pcie-lane", &pcie->lane)) |
| 444 | pcie->lane = 0; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 445 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 446 | sprintf(pcie->name, "pcie%d.%d", pcie->port, pcie->lane); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 447 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 448 | /* pci_get_devfn() returns devfn in bits 15..8, see PCI_DEV usage */ |
| 449 | pcie->devfn = pci_get_devfn(dev); |
| 450 | if (pcie->devfn < 0) { |
| 451 | ret = -ENODEV; |
| 452 | goto err; |
| 453 | } |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 454 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 455 | ret = mvebu_get_tgt_attr(dev_ofnode(dev->parent), pcie->devfn, |
| 456 | IORESOURCE_MEM, |
| 457 | &pcie->mem_target, &pcie->mem_attr); |
| 458 | if (ret < 0) { |
| 459 | printf("%s: cannot get tgt/attr for mem window\n", pcie->name); |
| 460 | goto err; |
| 461 | } |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 462 | |
Phil Sutter | 09577aa | 2021-01-03 23:06:46 +0100 | [diff] [blame^] | 463 | ret = mvebu_get_tgt_attr(dev_ofnode(dev->parent), pcie->devfn, |
| 464 | IORESOURCE_IO, |
| 465 | &pcie->io_target, &pcie->io_attr); |
| 466 | if (ret < 0) { |
| 467 | printf("%s: cannot get tgt/attr for IO window\n", pcie->name); |
| 468 | goto err; |
| 469 | } |
| 470 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 471 | /* Parse PCIe controller register base from DT */ |
| 472 | ret = mvebu_pcie_port_parse_dt(dev_ofnode(dev), pcie); |
| 473 | if (ret < 0) |
| 474 | goto err; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 475 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 476 | /* Check link and skip ports that have no link */ |
| 477 | if (!mvebu_pcie_link_up(pcie)) { |
| 478 | debug("%s: %s - down\n", __func__, pcie->name); |
| 479 | ret = -ENODEV; |
| 480 | goto err; |
| 481 | } |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 482 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 483 | return 0; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 484 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 485 | err: |
| 486 | return ret; |
| 487 | } |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 488 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 489 | static const struct dm_pci_ops mvebu_pcie_ops = { |
| 490 | .read_config = mvebu_pcie_read_config, |
| 491 | .write_config = mvebu_pcie_write_config, |
| 492 | }; |
Phil Sutter | 68010aa | 2015-12-25 14:41:20 +0100 | [diff] [blame] | 493 | |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 494 | static struct driver pcie_mvebu_drv = { |
| 495 | .name = "pcie_mvebu", |
| 496 | .id = UCLASS_PCI, |
| 497 | .ops = &mvebu_pcie_ops, |
| 498 | .probe = mvebu_pcie_probe, |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 499 | .of_to_plat = mvebu_pcie_of_to_plat, |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 500 | .plat_auto = sizeof(struct mvebu_pcie), |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 501 | }; |
| 502 | |
| 503 | /* |
| 504 | * Use a MISC device to bind the n instances (child nodes) of the |
| 505 | * PCIe base controller in UCLASS_PCI. |
| 506 | */ |
| 507 | static int mvebu_pcie_bind(struct udevice *parent) |
| 508 | { |
| 509 | struct mvebu_pcie *pcie; |
| 510 | struct uclass_driver *drv; |
| 511 | struct udevice *dev; |
| 512 | ofnode subnode; |
| 513 | |
| 514 | /* Lookup eth driver */ |
| 515 | drv = lists_uclass_lookup(UCLASS_PCI); |
| 516 | if (!drv) { |
| 517 | puts("Cannot find PCI driver\n"); |
| 518 | return -ENOENT; |
| 519 | } |
| 520 | |
| 521 | ofnode_for_each_subnode(subnode, dev_ofnode(parent)) { |
| 522 | if (!ofnode_is_available(subnode)) |
| 523 | continue; |
| 524 | |
| 525 | pcie = calloc(1, sizeof(*pcie)); |
| 526 | if (!pcie) |
| 527 | return -ENOMEM; |
| 528 | |
| 529 | /* Create child device UCLASS_PCI and bind it */ |
Simon Glass | 884870f | 2020-11-28 17:50:01 -0700 | [diff] [blame] | 530 | device_bind(parent, &pcie_mvebu_drv, pcie->name, pcie, subnode, |
| 531 | &dev); |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 532 | } |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 533 | |
| 534 | return 0; |
Anton Schubert | 98530e9 | 2015-08-11 11:54:01 +0200 | [diff] [blame] | 535 | } |
Stefan Roese | 3179ec6 | 2019-01-25 11:52:43 +0100 | [diff] [blame] | 536 | |
| 537 | static const struct udevice_id mvebu_pcie_ids[] = { |
| 538 | { .compatible = "marvell,armada-xp-pcie" }, |
| 539 | { .compatible = "marvell,armada-370-pcie" }, |
| 540 | { } |
| 541 | }; |
| 542 | |
| 543 | U_BOOT_DRIVER(pcie_mvebu_base) = { |
| 544 | .name = "pcie_mvebu_base", |
| 545 | .id = UCLASS_MISC, |
| 546 | .of_match = mvebu_pcie_ids, |
| 547 | .bind = mvebu_pcie_bind, |
| 548 | }; |