Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014 Google, Inc |
| 4 | * Written by Simon Glass <sjg@chromium.org> |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
Patrick Delaunay | b953ec2 | 2021-04-27 11:02:19 +0200 | [diff] [blame] | 7 | #define LOG_CATEGORY UCLASS_PCI |
| 8 | |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 9 | #include <common.h> |
| 10 | #include <dm.h> |
| 11 | #include <errno.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 12 | #include <init.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 13 | #include <log.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 14 | #include <malloc.h> |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 15 | #include <pci.h> |
Simon Glass | db3820a | 2023-07-15 21:38:55 -0600 | [diff] [blame] | 16 | #include <spl.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 17 | #include <asm/global_data.h> |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 18 | #include <asm/io.h> |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 19 | #include <dm/device-internal.h> |
Simon Glass | bf50159 | 2017-05-18 20:09:51 -0600 | [diff] [blame] | 20 | #include <dm/lists.h> |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 21 | #include <dm/uclass-internal.h> |
Bin Meng | 348b744 | 2015-08-20 06:40:23 -0700 | [diff] [blame] | 22 | #if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP) |
Simon Glass | 07f2f58 | 2019-08-24 14:19:05 -0600 | [diff] [blame] | 23 | #include <asm/fsp/fsp_support.h> |
Bin Meng | 348b744 | 2015-08-20 06:40:23 -0700 | [diff] [blame] | 24 | #endif |
Simon Glass | f5cbb5c | 2021-06-27 17:50:57 -0600 | [diff] [blame] | 25 | #include <dt-bindings/pci/pci.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 26 | #include <linux/delay.h> |
Simon Glass | 1e94b46 | 2023-09-14 18:21:46 -0600 | [diff] [blame] | 27 | #include <linux/printk.h> |
Simon Glass | 5e23b8b | 2015-11-29 13:17:49 -0700 | [diff] [blame] | 28 | #include "pci_internal.h" |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 29 | |
| 30 | DECLARE_GLOBAL_DATA_PTR; |
| 31 | |
Simon Glass | a6eb93b | 2016-01-18 20:19:14 -0700 | [diff] [blame] | 32 | int pci_get_bus(int busnum, struct udevice **busp) |
Simon Glass | 983c6ba2 | 2015-08-31 18:55:35 -0600 | [diff] [blame] | 33 | { |
| 34 | int ret; |
| 35 | |
| 36 | ret = uclass_get_device_by_seq(UCLASS_PCI, busnum, busp); |
| 37 | |
| 38 | /* Since buses may not be numbered yet try a little harder with bus 0 */ |
| 39 | if (ret == -ENODEV) { |
Simon Glass | 3f603cb | 2016-02-11 13:23:26 -0700 | [diff] [blame] | 40 | ret = uclass_first_device_err(UCLASS_PCI, busp); |
Simon Glass | 983c6ba2 | 2015-08-31 18:55:35 -0600 | [diff] [blame] | 41 | if (ret) |
| 42 | return ret; |
Simon Glass | 983c6ba2 | 2015-08-31 18:55:35 -0600 | [diff] [blame] | 43 | ret = uclass_get_device_by_seq(UCLASS_PCI, busnum, busp); |
| 44 | } |
| 45 | |
| 46 | return ret; |
| 47 | } |
| 48 | |
Simon Glass | 9f60fb0 | 2015-11-19 20:27:00 -0700 | [diff] [blame] | 49 | struct udevice *pci_get_controller(struct udevice *dev) |
| 50 | { |
| 51 | while (device_is_on_pci_bus(dev)) |
| 52 | dev = dev->parent; |
| 53 | |
| 54 | return dev; |
| 55 | } |
| 56 | |
Simon Glass | 194fca9 | 2020-01-27 08:49:38 -0700 | [diff] [blame] | 57 | pci_dev_t dm_pci_get_bdf(const struct udevice *dev) |
Simon Glass | 4b515e4 | 2015-07-06 16:47:46 -0600 | [diff] [blame] | 58 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 59 | struct pci_child_plat *pplat = dev_get_parent_plat(dev); |
Simon Glass | 4b515e4 | 2015-07-06 16:47:46 -0600 | [diff] [blame] | 60 | struct udevice *bus = dev->parent; |
| 61 | |
Simon Glass | 4886287 | 2019-12-29 21:19:14 -0700 | [diff] [blame] | 62 | /* |
| 63 | * This error indicates that @dev is a device on an unprobed PCI bus. |
| 64 | * The bus likely has bus=seq == -1, so the PCI_ADD_BUS() macro below |
| 65 | * will produce a bad BDF> |
| 66 | * |
| 67 | * A common cause of this problem is that this function is called in the |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 68 | * of_to_plat() method of @dev. Accessing the PCI bus in that |
Simon Glass | 4886287 | 2019-12-29 21:19:14 -0700 | [diff] [blame] | 69 | * method is not allowed, since it has not yet been probed. To fix this, |
| 70 | * move that access to the probe() method of @dev instead. |
| 71 | */ |
| 72 | if (!device_active(bus)) |
| 73 | log_err("PCI: Device '%s' on unprobed bus '%s'\n", dev->name, |
| 74 | bus->name); |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 75 | return PCI_ADD_BUS(dev_seq(bus), pplat->devfn); |
Simon Glass | 4b515e4 | 2015-07-06 16:47:46 -0600 | [diff] [blame] | 76 | } |
| 77 | |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 78 | /** |
| 79 | * pci_get_bus_max() - returns the bus number of the last active bus |
| 80 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 81 | * Return: last bus number, or -1 if no active buses |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 82 | */ |
| 83 | static int pci_get_bus_max(void) |
| 84 | { |
| 85 | struct udevice *bus; |
| 86 | struct uclass *uc; |
| 87 | int ret = -1; |
| 88 | |
| 89 | ret = uclass_get(UCLASS_PCI, &uc); |
| 90 | uclass_foreach_dev(bus, uc) { |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 91 | if (dev_seq(bus) > ret) |
| 92 | ret = dev_seq(bus); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | debug("%s: ret=%d\n", __func__, ret); |
| 96 | |
| 97 | return ret; |
| 98 | } |
| 99 | |
| 100 | int pci_last_busno(void) |
| 101 | { |
Bin Meng | 069155c | 2015-10-01 00:36:01 -0700 | [diff] [blame] | 102 | return pci_get_bus_max(); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | int pci_get_ff(enum pci_size_t size) |
| 106 | { |
| 107 | switch (size) { |
| 108 | case PCI_SIZE_8: |
| 109 | return 0xff; |
| 110 | case PCI_SIZE_16: |
| 111 | return 0xffff; |
| 112 | default: |
| 113 | return 0xffffffff; |
| 114 | } |
| 115 | } |
| 116 | |
Marek Vasut | 02e4d38 | 2018-10-10 21:27:06 +0200 | [diff] [blame] | 117 | static void pci_dev_find_ofnode(struct udevice *bus, phys_addr_t bdf, |
| 118 | ofnode *rnode) |
| 119 | { |
| 120 | struct fdt_pci_addr addr; |
| 121 | ofnode node; |
| 122 | int ret; |
| 123 | |
| 124 | dev_for_each_subnode(node, bus) { |
| 125 | ret = ofnode_read_pci_addr(node, FDT_PCI_SPACE_CONFIG, "reg", |
Simon Glass | f69d3d6 | 2023-09-26 08:14:58 -0600 | [diff] [blame] | 126 | &addr, NULL); |
Marek Vasut | 02e4d38 | 2018-10-10 21:27:06 +0200 | [diff] [blame] | 127 | if (ret) |
| 128 | continue; |
| 129 | |
| 130 | if (PCI_MASK_BUS(addr.phys_hi) != PCI_MASK_BUS(bdf)) |
| 131 | continue; |
| 132 | |
| 133 | *rnode = node; |
| 134 | break; |
| 135 | } |
| 136 | }; |
| 137 | |
Simon Glass | c4e72c4 | 2020-01-27 08:49:37 -0700 | [diff] [blame] | 138 | int pci_bus_find_devfn(const struct udevice *bus, pci_dev_t find_devfn, |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 139 | struct udevice **devp) |
| 140 | { |
| 141 | struct udevice *dev; |
| 142 | |
| 143 | for (device_find_first_child(bus, &dev); |
| 144 | dev; |
| 145 | device_find_next_child(&dev)) { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 146 | struct pci_child_plat *pplat; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 147 | |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 148 | pplat = dev_get_parent_plat(dev); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 149 | if (pplat && pplat->devfn == find_devfn) { |
| 150 | *devp = dev; |
| 151 | return 0; |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | return -ENODEV; |
| 156 | } |
| 157 | |
Simon Glass | f3f1fae | 2015-11-29 13:17:48 -0700 | [diff] [blame] | 158 | int dm_pci_bus_find_bdf(pci_dev_t bdf, struct udevice **devp) |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 159 | { |
| 160 | struct udevice *bus; |
| 161 | int ret; |
| 162 | |
Simon Glass | 983c6ba2 | 2015-08-31 18:55:35 -0600 | [diff] [blame] | 163 | ret = pci_get_bus(PCI_BUS(bdf), &bus); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 164 | if (ret) |
| 165 | return ret; |
| 166 | return pci_bus_find_devfn(bus, PCI_MASK_BUS(bdf), devp); |
| 167 | } |
| 168 | |
| 169 | static int pci_device_matches_ids(struct udevice *dev, |
Simon Glass | e58f3a7 | 2021-06-27 17:50:56 -0600 | [diff] [blame] | 170 | const struct pci_device_id *ids) |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 171 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 172 | struct pci_child_plat *pplat; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 173 | int i; |
| 174 | |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 175 | pplat = dev_get_parent_plat(dev); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 176 | if (!pplat) |
| 177 | return -EINVAL; |
| 178 | for (i = 0; ids[i].vendor != 0; i++) { |
| 179 | if (pplat->vendor == ids[i].vendor && |
| 180 | pplat->device == ids[i].device) |
| 181 | return i; |
| 182 | } |
| 183 | |
| 184 | return -EINVAL; |
| 185 | } |
| 186 | |
Simon Glass | e58f3a7 | 2021-06-27 17:50:56 -0600 | [diff] [blame] | 187 | int pci_bus_find_devices(struct udevice *bus, const struct pci_device_id *ids, |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 188 | int *indexp, struct udevice **devp) |
| 189 | { |
| 190 | struct udevice *dev; |
| 191 | |
| 192 | /* Scan all devices on this bus */ |
| 193 | for (device_find_first_child(bus, &dev); |
| 194 | dev; |
| 195 | device_find_next_child(&dev)) { |
| 196 | if (pci_device_matches_ids(dev, ids) >= 0) { |
| 197 | if ((*indexp)-- <= 0) { |
| 198 | *devp = dev; |
| 199 | return 0; |
| 200 | } |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | return -ENODEV; |
| 205 | } |
| 206 | |
Simon Glass | e58f3a7 | 2021-06-27 17:50:56 -0600 | [diff] [blame] | 207 | int pci_find_device_id(const struct pci_device_id *ids, int index, |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 208 | struct udevice **devp) |
| 209 | { |
| 210 | struct udevice *bus; |
| 211 | |
| 212 | /* Scan all known buses */ |
| 213 | for (uclass_first_device(UCLASS_PCI, &bus); |
| 214 | bus; |
| 215 | uclass_next_device(&bus)) { |
| 216 | if (!pci_bus_find_devices(bus, ids, &index, devp)) |
| 217 | return 0; |
| 218 | } |
| 219 | *devp = NULL; |
| 220 | |
| 221 | return -ENODEV; |
| 222 | } |
| 223 | |
Simon Glass | 5c0bf64 | 2015-11-29 13:17:50 -0700 | [diff] [blame] | 224 | static int dm_pci_bus_find_device(struct udevice *bus, unsigned int vendor, |
| 225 | unsigned int device, int *indexp, |
| 226 | struct udevice **devp) |
| 227 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 228 | struct pci_child_plat *pplat; |
Simon Glass | 5c0bf64 | 2015-11-29 13:17:50 -0700 | [diff] [blame] | 229 | struct udevice *dev; |
| 230 | |
| 231 | for (device_find_first_child(bus, &dev); |
| 232 | dev; |
| 233 | device_find_next_child(&dev)) { |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 234 | pplat = dev_get_parent_plat(dev); |
Simon Glass | 5c0bf64 | 2015-11-29 13:17:50 -0700 | [diff] [blame] | 235 | if (pplat->vendor == vendor && pplat->device == device) { |
| 236 | if (!(*indexp)--) { |
| 237 | *devp = dev; |
| 238 | return 0; |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | return -ENODEV; |
| 244 | } |
| 245 | |
| 246 | int dm_pci_find_device(unsigned int vendor, unsigned int device, int index, |
| 247 | struct udevice **devp) |
| 248 | { |
| 249 | struct udevice *bus; |
| 250 | |
| 251 | /* Scan all known buses */ |
| 252 | for (uclass_first_device(UCLASS_PCI, &bus); |
| 253 | bus; |
| 254 | uclass_next_device(&bus)) { |
| 255 | if (!dm_pci_bus_find_device(bus, vendor, device, &index, devp)) |
| 256 | return device_probe(*devp); |
| 257 | } |
| 258 | *devp = NULL; |
| 259 | |
| 260 | return -ENODEV; |
| 261 | } |
| 262 | |
Simon Glass | a0eb835 | 2015-11-29 13:17:52 -0700 | [diff] [blame] | 263 | int dm_pci_find_class(uint find_class, int index, struct udevice **devp) |
| 264 | { |
| 265 | struct udevice *dev; |
| 266 | |
| 267 | /* Scan all known buses */ |
| 268 | for (pci_find_first_device(&dev); |
| 269 | dev; |
| 270 | pci_find_next_device(&dev)) { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 271 | struct pci_child_plat *pplat = dev_get_parent_plat(dev); |
Simon Glass | a0eb835 | 2015-11-29 13:17:52 -0700 | [diff] [blame] | 272 | |
| 273 | if (pplat->class == find_class && !index--) { |
| 274 | *devp = dev; |
| 275 | return device_probe(*devp); |
| 276 | } |
| 277 | } |
| 278 | *devp = NULL; |
| 279 | |
| 280 | return -ENODEV; |
| 281 | } |
| 282 | |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 283 | int pci_bus_write_config(struct udevice *bus, pci_dev_t bdf, int offset, |
| 284 | unsigned long value, enum pci_size_t size) |
| 285 | { |
| 286 | struct dm_pci_ops *ops; |
| 287 | |
| 288 | ops = pci_get_ops(bus); |
| 289 | if (!ops->write_config) |
| 290 | return -ENOSYS; |
Pali RohĂĄr | d9f554b | 2022-07-03 12:48:06 +0200 | [diff] [blame] | 291 | if (offset < 0 || offset >= 4096) |
| 292 | return -EINVAL; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 293 | return ops->write_config(bus, bdf, offset, value, size); |
| 294 | } |
| 295 | |
Simon Glass | 319dba1 | 2016-03-06 19:27:52 -0700 | [diff] [blame] | 296 | int pci_bus_clrset_config32(struct udevice *bus, pci_dev_t bdf, int offset, |
| 297 | u32 clr, u32 set) |
| 298 | { |
| 299 | ulong val; |
| 300 | int ret; |
| 301 | |
| 302 | ret = pci_bus_read_config(bus, bdf, offset, &val, PCI_SIZE_32); |
| 303 | if (ret) |
| 304 | return ret; |
| 305 | val &= ~clr; |
| 306 | val |= set; |
| 307 | |
| 308 | return pci_bus_write_config(bus, bdf, offset, val, PCI_SIZE_32); |
| 309 | } |
| 310 | |
Vladimir Oltean | f98aa78 | 2021-09-17 15:11:25 +0300 | [diff] [blame] | 311 | static int pci_write_config(pci_dev_t bdf, int offset, unsigned long value, |
| 312 | enum pci_size_t size) |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 313 | { |
| 314 | struct udevice *bus; |
| 315 | int ret; |
| 316 | |
Simon Glass | 983c6ba2 | 2015-08-31 18:55:35 -0600 | [diff] [blame] | 317 | ret = pci_get_bus(PCI_BUS(bdf), &bus); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 318 | if (ret) |
| 319 | return ret; |
| 320 | |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 321 | return pci_bus_write_config(bus, bdf, offset, value, size); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Simon Glass | 66afb4e | 2015-08-10 07:05:03 -0600 | [diff] [blame] | 324 | int dm_pci_write_config(struct udevice *dev, int offset, unsigned long value, |
| 325 | enum pci_size_t size) |
| 326 | { |
| 327 | struct udevice *bus; |
| 328 | |
Bin Meng | 1e0f226 | 2015-09-11 03:24:34 -0700 | [diff] [blame] | 329 | for (bus = dev; device_is_on_pci_bus(bus);) |
Simon Glass | 66afb4e | 2015-08-10 07:05:03 -0600 | [diff] [blame] | 330 | bus = bus->parent; |
Simon Glass | 21ccce1 | 2015-11-29 13:17:47 -0700 | [diff] [blame] | 331 | return pci_bus_write_config(bus, dm_pci_get_bdf(dev), offset, value, |
| 332 | size); |
Simon Glass | 66afb4e | 2015-08-10 07:05:03 -0600 | [diff] [blame] | 333 | } |
| 334 | |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 335 | int pci_write_config32(pci_dev_t bdf, int offset, u32 value) |
| 336 | { |
| 337 | return pci_write_config(bdf, offset, value, PCI_SIZE_32); |
| 338 | } |
| 339 | |
| 340 | int pci_write_config16(pci_dev_t bdf, int offset, u16 value) |
| 341 | { |
| 342 | return pci_write_config(bdf, offset, value, PCI_SIZE_16); |
| 343 | } |
| 344 | |
| 345 | int pci_write_config8(pci_dev_t bdf, int offset, u8 value) |
| 346 | { |
| 347 | return pci_write_config(bdf, offset, value, PCI_SIZE_8); |
| 348 | } |
| 349 | |
Simon Glass | 66afb4e | 2015-08-10 07:05:03 -0600 | [diff] [blame] | 350 | int dm_pci_write_config8(struct udevice *dev, int offset, u8 value) |
| 351 | { |
| 352 | return dm_pci_write_config(dev, offset, value, PCI_SIZE_8); |
| 353 | } |
| 354 | |
| 355 | int dm_pci_write_config16(struct udevice *dev, int offset, u16 value) |
| 356 | { |
| 357 | return dm_pci_write_config(dev, offset, value, PCI_SIZE_16); |
| 358 | } |
| 359 | |
| 360 | int dm_pci_write_config32(struct udevice *dev, int offset, u32 value) |
| 361 | { |
| 362 | return dm_pci_write_config(dev, offset, value, PCI_SIZE_32); |
| 363 | } |
| 364 | |
Simon Glass | 194fca9 | 2020-01-27 08:49:38 -0700 | [diff] [blame] | 365 | int pci_bus_read_config(const struct udevice *bus, pci_dev_t bdf, int offset, |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 366 | unsigned long *valuep, enum pci_size_t size) |
| 367 | { |
| 368 | struct dm_pci_ops *ops; |
| 369 | |
| 370 | ops = pci_get_ops(bus); |
Pali RohĂĄr | d9f554b | 2022-07-03 12:48:06 +0200 | [diff] [blame] | 371 | if (!ops->read_config) { |
| 372 | *valuep = pci_conv_32_to_size(~0, offset, size); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 373 | return -ENOSYS; |
Pali RohĂĄr | d9f554b | 2022-07-03 12:48:06 +0200 | [diff] [blame] | 374 | } |
| 375 | if (offset < 0 || offset >= 4096) { |
| 376 | *valuep = pci_conv_32_to_size(0, offset, size); |
| 377 | return -EINVAL; |
| 378 | } |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 379 | return ops->read_config(bus, bdf, offset, valuep, size); |
| 380 | } |
| 381 | |
Vladimir Oltean | 1512ac1 | 2021-09-17 15:11:26 +0300 | [diff] [blame] | 382 | static int pci_read_config(pci_dev_t bdf, int offset, unsigned long *valuep, |
| 383 | enum pci_size_t size) |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 384 | { |
| 385 | struct udevice *bus; |
| 386 | int ret; |
| 387 | |
Simon Glass | 983c6ba2 | 2015-08-31 18:55:35 -0600 | [diff] [blame] | 388 | ret = pci_get_bus(PCI_BUS(bdf), &bus); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 389 | if (ret) |
| 390 | return ret; |
| 391 | |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 392 | return pci_bus_read_config(bus, bdf, offset, valuep, size); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 393 | } |
| 394 | |
Simon Glass | 194fca9 | 2020-01-27 08:49:38 -0700 | [diff] [blame] | 395 | int dm_pci_read_config(const struct udevice *dev, int offset, |
| 396 | unsigned long *valuep, enum pci_size_t size) |
Simon Glass | 66afb4e | 2015-08-10 07:05:03 -0600 | [diff] [blame] | 397 | { |
Simon Glass | 194fca9 | 2020-01-27 08:49:38 -0700 | [diff] [blame] | 398 | const struct udevice *bus; |
Simon Glass | 66afb4e | 2015-08-10 07:05:03 -0600 | [diff] [blame] | 399 | |
Bin Meng | 1e0f226 | 2015-09-11 03:24:34 -0700 | [diff] [blame] | 400 | for (bus = dev; device_is_on_pci_bus(bus);) |
Simon Glass | 66afb4e | 2015-08-10 07:05:03 -0600 | [diff] [blame] | 401 | bus = bus->parent; |
Simon Glass | 21ccce1 | 2015-11-29 13:17:47 -0700 | [diff] [blame] | 402 | return pci_bus_read_config(bus, dm_pci_get_bdf(dev), offset, valuep, |
Simon Glass | 66afb4e | 2015-08-10 07:05:03 -0600 | [diff] [blame] | 403 | size); |
| 404 | } |
| 405 | |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 406 | int pci_read_config32(pci_dev_t bdf, int offset, u32 *valuep) |
| 407 | { |
| 408 | unsigned long value; |
| 409 | int ret; |
| 410 | |
| 411 | ret = pci_read_config(bdf, offset, &value, PCI_SIZE_32); |
| 412 | if (ret) |
| 413 | return ret; |
| 414 | *valuep = value; |
| 415 | |
| 416 | return 0; |
| 417 | } |
| 418 | |
| 419 | int pci_read_config16(pci_dev_t bdf, int offset, u16 *valuep) |
| 420 | { |
| 421 | unsigned long value; |
| 422 | int ret; |
| 423 | |
| 424 | ret = pci_read_config(bdf, offset, &value, PCI_SIZE_16); |
| 425 | if (ret) |
| 426 | return ret; |
| 427 | *valuep = value; |
| 428 | |
| 429 | return 0; |
| 430 | } |
| 431 | |
| 432 | int pci_read_config8(pci_dev_t bdf, int offset, u8 *valuep) |
| 433 | { |
| 434 | unsigned long value; |
| 435 | int ret; |
| 436 | |
| 437 | ret = pci_read_config(bdf, offset, &value, PCI_SIZE_8); |
| 438 | if (ret) |
| 439 | return ret; |
| 440 | *valuep = value; |
| 441 | |
| 442 | return 0; |
| 443 | } |
| 444 | |
Simon Glass | 194fca9 | 2020-01-27 08:49:38 -0700 | [diff] [blame] | 445 | int dm_pci_read_config8(const struct udevice *dev, int offset, u8 *valuep) |
Simon Glass | 66afb4e | 2015-08-10 07:05:03 -0600 | [diff] [blame] | 446 | { |
| 447 | unsigned long value; |
| 448 | int ret; |
| 449 | |
| 450 | ret = dm_pci_read_config(dev, offset, &value, PCI_SIZE_8); |
| 451 | if (ret) |
| 452 | return ret; |
| 453 | *valuep = value; |
| 454 | |
| 455 | return 0; |
| 456 | } |
| 457 | |
Simon Glass | 194fca9 | 2020-01-27 08:49:38 -0700 | [diff] [blame] | 458 | int dm_pci_read_config16(const struct udevice *dev, int offset, u16 *valuep) |
Simon Glass | 66afb4e | 2015-08-10 07:05:03 -0600 | [diff] [blame] | 459 | { |
| 460 | unsigned long value; |
| 461 | int ret; |
| 462 | |
| 463 | ret = dm_pci_read_config(dev, offset, &value, PCI_SIZE_16); |
| 464 | if (ret) |
| 465 | return ret; |
| 466 | *valuep = value; |
| 467 | |
| 468 | return 0; |
| 469 | } |
| 470 | |
Simon Glass | 194fca9 | 2020-01-27 08:49:38 -0700 | [diff] [blame] | 471 | int dm_pci_read_config32(const struct udevice *dev, int offset, u32 *valuep) |
Simon Glass | 66afb4e | 2015-08-10 07:05:03 -0600 | [diff] [blame] | 472 | { |
| 473 | unsigned long value; |
| 474 | int ret; |
| 475 | |
| 476 | ret = dm_pci_read_config(dev, offset, &value, PCI_SIZE_32); |
| 477 | if (ret) |
| 478 | return ret; |
| 479 | *valuep = value; |
| 480 | |
| 481 | return 0; |
| 482 | } |
| 483 | |
Simon Glass | 319dba1 | 2016-03-06 19:27:52 -0700 | [diff] [blame] | 484 | int dm_pci_clrset_config8(struct udevice *dev, int offset, u32 clr, u32 set) |
| 485 | { |
| 486 | u8 val; |
| 487 | int ret; |
| 488 | |
| 489 | ret = dm_pci_read_config8(dev, offset, &val); |
| 490 | if (ret) |
| 491 | return ret; |
| 492 | val &= ~clr; |
| 493 | val |= set; |
| 494 | |
| 495 | return dm_pci_write_config8(dev, offset, val); |
| 496 | } |
| 497 | |
| 498 | int dm_pci_clrset_config16(struct udevice *dev, int offset, u32 clr, u32 set) |
| 499 | { |
| 500 | u16 val; |
| 501 | int ret; |
| 502 | |
| 503 | ret = dm_pci_read_config16(dev, offset, &val); |
| 504 | if (ret) |
| 505 | return ret; |
| 506 | val &= ~clr; |
| 507 | val |= set; |
| 508 | |
| 509 | return dm_pci_write_config16(dev, offset, val); |
| 510 | } |
| 511 | |
| 512 | int dm_pci_clrset_config32(struct udevice *dev, int offset, u32 clr, u32 set) |
| 513 | { |
| 514 | u32 val; |
| 515 | int ret; |
| 516 | |
| 517 | ret = dm_pci_read_config32(dev, offset, &val); |
| 518 | if (ret) |
| 519 | return ret; |
| 520 | val &= ~clr; |
| 521 | val |= set; |
| 522 | |
| 523 | return dm_pci_write_config32(dev, offset, val); |
| 524 | } |
| 525 | |
Bin Meng | bbbcb52 | 2015-10-01 00:36:02 -0700 | [diff] [blame] | 526 | static void set_vga_bridge_bits(struct udevice *dev) |
| 527 | { |
| 528 | struct udevice *parent = dev->parent; |
| 529 | u16 bc; |
| 530 | |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 531 | while (dev_seq(parent) != 0) { |
Bin Meng | bbbcb52 | 2015-10-01 00:36:02 -0700 | [diff] [blame] | 532 | dm_pci_read_config16(parent, PCI_BRIDGE_CONTROL, &bc); |
| 533 | bc |= PCI_BRIDGE_CTL_VGA; |
| 534 | dm_pci_write_config16(parent, PCI_BRIDGE_CONTROL, bc); |
| 535 | parent = parent->parent; |
| 536 | } |
| 537 | } |
| 538 | |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 539 | int pci_auto_config_devices(struct udevice *bus) |
| 540 | { |
Simon Glass | 0fd3d91 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 541 | struct pci_controller *hose = dev_get_uclass_priv(bus); |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 542 | struct pci_child_plat *pplat; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 543 | unsigned int sub_bus; |
| 544 | struct udevice *dev; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 545 | |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 546 | sub_bus = dev_seq(bus); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 547 | debug("%s: start\n", __func__); |
| 548 | pciauto_config_init(hose); |
Marek Vasut | 8ee830d | 2023-07-16 17:53:24 +0200 | [diff] [blame] | 549 | for (device_find_first_child(bus, &dev); |
| 550 | dev; |
| 551 | device_find_next_child(&dev)) { |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 552 | unsigned int max_bus; |
Simon Glass | 4d21455 | 2015-09-08 17:52:47 -0600 | [diff] [blame] | 553 | int ret; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 554 | |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 555 | debug("%s: device %s\n", __func__, dev->name); |
Simon Glass | 7d14ee4 | 2020-12-19 10:40:13 -0700 | [diff] [blame] | 556 | if (dev_has_ofnode(dev) && |
Suneel Garapati | f0c3692 | 2020-05-04 21:25:25 -0700 | [diff] [blame] | 557 | dev_read_bool(dev, "pci,no-autoconfig")) |
Simon Glass | d8c7fb5 | 2020-04-08 16:57:26 -0600 | [diff] [blame] | 558 | continue; |
Simon Glass | 5e23b8b | 2015-11-29 13:17:49 -0700 | [diff] [blame] | 559 | ret = dm_pciauto_config_device(dev); |
Simon Glass | 4d21455 | 2015-09-08 17:52:47 -0600 | [diff] [blame] | 560 | if (ret < 0) |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 561 | return log_msg_ret("auto", ret); |
Simon Glass | 4d21455 | 2015-09-08 17:52:47 -0600 | [diff] [blame] | 562 | max_bus = ret; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 563 | sub_bus = max(sub_bus, max_bus); |
Bin Meng | bbbcb52 | 2015-10-01 00:36:02 -0700 | [diff] [blame] | 564 | |
Masami Hiramatsu | 2f7dddc | 2021-06-04 18:43:34 +0900 | [diff] [blame] | 565 | if (dev_get_parent(dev) == bus) |
| 566 | continue; |
| 567 | |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 568 | pplat = dev_get_parent_plat(dev); |
Bin Meng | bbbcb52 | 2015-10-01 00:36:02 -0700 | [diff] [blame] | 569 | if (pplat->class == (PCI_CLASS_DISPLAY_VGA << 8)) |
| 570 | set_vga_bridge_bits(dev); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 571 | } |
Pali RohĂĄr | 8c303bc | 2022-01-17 16:38:37 +0100 | [diff] [blame] | 572 | if (hose->last_busno < sub_bus) |
| 573 | hose->last_busno = sub_bus; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 574 | debug("%s: done\n", __func__); |
| 575 | |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 576 | return log_msg_ret("sub", sub_bus); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 577 | } |
| 578 | |
Tuomas Tynkkynen | badb992 | 2017-09-19 23:18:03 +0300 | [diff] [blame] | 579 | int pci_generic_mmap_write_config( |
Simon Glass | c4e72c4 | 2020-01-27 08:49:37 -0700 | [diff] [blame] | 580 | const struct udevice *bus, |
| 581 | int (*addr_f)(const struct udevice *bus, pci_dev_t bdf, uint offset, |
| 582 | void **addrp), |
Tuomas Tynkkynen | badb992 | 2017-09-19 23:18:03 +0300 | [diff] [blame] | 583 | pci_dev_t bdf, |
| 584 | uint offset, |
| 585 | ulong value, |
| 586 | enum pci_size_t size) |
| 587 | { |
| 588 | void *address; |
| 589 | |
| 590 | if (addr_f(bus, bdf, offset, &address) < 0) |
| 591 | return 0; |
| 592 | |
| 593 | switch (size) { |
| 594 | case PCI_SIZE_8: |
| 595 | writeb(value, address); |
| 596 | return 0; |
| 597 | case PCI_SIZE_16: |
| 598 | writew(value, address); |
| 599 | return 0; |
| 600 | case PCI_SIZE_32: |
| 601 | writel(value, address); |
| 602 | return 0; |
| 603 | default: |
| 604 | return -EINVAL; |
| 605 | } |
| 606 | } |
| 607 | |
| 608 | int pci_generic_mmap_read_config( |
Simon Glass | c4e72c4 | 2020-01-27 08:49:37 -0700 | [diff] [blame] | 609 | const struct udevice *bus, |
| 610 | int (*addr_f)(const struct udevice *bus, pci_dev_t bdf, uint offset, |
| 611 | void **addrp), |
Tuomas Tynkkynen | badb992 | 2017-09-19 23:18:03 +0300 | [diff] [blame] | 612 | pci_dev_t bdf, |
| 613 | uint offset, |
| 614 | ulong *valuep, |
| 615 | enum pci_size_t size) |
| 616 | { |
| 617 | void *address; |
| 618 | |
| 619 | if (addr_f(bus, bdf, offset, &address) < 0) { |
| 620 | *valuep = pci_get_ff(size); |
| 621 | return 0; |
| 622 | } |
| 623 | |
| 624 | switch (size) { |
| 625 | case PCI_SIZE_8: |
| 626 | *valuep = readb(address); |
| 627 | return 0; |
| 628 | case PCI_SIZE_16: |
| 629 | *valuep = readw(address); |
| 630 | return 0; |
| 631 | case PCI_SIZE_32: |
| 632 | *valuep = readl(address); |
| 633 | return 0; |
| 634 | default: |
| 635 | return -EINVAL; |
| 636 | } |
| 637 | } |
| 638 | |
Simon Glass | 5e23b8b | 2015-11-29 13:17:49 -0700 | [diff] [blame] | 639 | int dm_pci_hose_probe_bus(struct udevice *bus) |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 640 | { |
Pali RohĂĄr | 63ae80d | 2021-10-07 14:50:58 +0200 | [diff] [blame] | 641 | u8 header_type; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 642 | int sub_bus; |
| 643 | int ret; |
Suneel Garapati | 636cc17 | 2019-10-19 15:52:32 -0700 | [diff] [blame] | 644 | int ea_pos; |
| 645 | u8 reg; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 646 | |
| 647 | debug("%s\n", __func__); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 648 | |
Pali RohĂĄr | 63ae80d | 2021-10-07 14:50:58 +0200 | [diff] [blame] | 649 | dm_pci_read_config8(bus, PCI_HEADER_TYPE, &header_type); |
| 650 | header_type &= 0x7f; |
| 651 | if (header_type != PCI_HEADER_TYPE_BRIDGE) { |
| 652 | debug("%s: Skipping PCI device %d with Non-Bridge Header Type 0x%x\n", |
| 653 | __func__, PCI_DEV(dm_pci_get_bdf(bus)), header_type); |
| 654 | return log_msg_ret("probe", -EINVAL); |
| 655 | } |
| 656 | |
Andrew Scull | 3b92018 | 2022-04-21 16:11:16 +0000 | [diff] [blame] | 657 | if (IS_ENABLED(CONFIG_PCI_ENHANCED_ALLOCATION)) |
| 658 | ea_pos = dm_pci_find_capability(bus, PCI_CAP_ID_EA); |
| 659 | else |
| 660 | ea_pos = 0; |
| 661 | |
Suneel Garapati | 636cc17 | 2019-10-19 15:52:32 -0700 | [diff] [blame] | 662 | if (ea_pos) { |
| 663 | dm_pci_read_config8(bus, ea_pos + sizeof(u32) + sizeof(u8), |
| 664 | ®); |
| 665 | sub_bus = reg; |
| 666 | } else { |
| 667 | sub_bus = pci_get_bus_max() + 1; |
| 668 | } |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 669 | debug("%s: bus = %d/%s\n", __func__, sub_bus, bus->name); |
Simon Glass | 5e23b8b | 2015-11-29 13:17:49 -0700 | [diff] [blame] | 670 | dm_pciauto_prescan_setup_bridge(bus, sub_bus); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 671 | |
| 672 | ret = device_probe(bus); |
| 673 | if (ret) { |
Simon Glass | 3129ace | 2015-09-08 17:52:48 -0600 | [diff] [blame] | 674 | debug("%s: Cannot probe bus %s: %d\n", __func__, bus->name, |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 675 | ret); |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 676 | return log_msg_ret("probe", ret); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 677 | } |
Suneel Garapati | 636cc17 | 2019-10-19 15:52:32 -0700 | [diff] [blame] | 678 | |
Masami Hiramatsu | 19e1b8d | 2021-04-16 14:53:46 -0700 | [diff] [blame] | 679 | if (!ea_pos) |
| 680 | sub_bus = pci_get_bus_max(); |
| 681 | |
Simon Glass | 5e23b8b | 2015-11-29 13:17:49 -0700 | [diff] [blame] | 682 | dm_pciauto_postscan_setup_bridge(bus, sub_bus); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 683 | |
| 684 | return sub_bus; |
| 685 | } |
| 686 | |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 687 | /** |
| 688 | * pci_match_one_device - Tell if a PCI device structure has a matching |
| 689 | * PCI device id structure |
| 690 | * @id: single PCI device id structure to match |
Hou Zhiqiang | 0367bd4 | 2017-03-22 16:07:24 +0800 | [diff] [blame] | 691 | * @find: the PCI device id structure to match against |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 692 | * |
Hou Zhiqiang | 0367bd4 | 2017-03-22 16:07:24 +0800 | [diff] [blame] | 693 | * Returns true if the finding pci_device_id structure matched or false if |
| 694 | * there is no match. |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 695 | */ |
| 696 | static bool pci_match_one_id(const struct pci_device_id *id, |
| 697 | const struct pci_device_id *find) |
| 698 | { |
| 699 | if ((id->vendor == PCI_ANY_ID || id->vendor == find->vendor) && |
| 700 | (id->device == PCI_ANY_ID || id->device == find->device) && |
| 701 | (id->subvendor == PCI_ANY_ID || id->subvendor == find->subvendor) && |
| 702 | (id->subdevice == PCI_ANY_ID || id->subdevice == find->subdevice) && |
| 703 | !((id->class ^ find->class) & id->class_mask)) |
| 704 | return true; |
| 705 | |
| 706 | return false; |
| 707 | } |
| 708 | |
| 709 | /** |
Simon Glass | f5cbb5c | 2021-06-27 17:50:57 -0600 | [diff] [blame] | 710 | * pci_need_device_pre_reloc() - Check if a device should be bound |
| 711 | * |
| 712 | * This checks a list of vendor/device-ID values indicating devices that should |
| 713 | * be bound before relocation. |
| 714 | * |
| 715 | * @bus: Bus to check |
| 716 | * @vendor: Vendor ID to check |
| 717 | * @device: Device ID to check |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 718 | * Return: true if the vendor/device is in the list, false if not |
Simon Glass | f5cbb5c | 2021-06-27 17:50:57 -0600 | [diff] [blame] | 719 | */ |
| 720 | static bool pci_need_device_pre_reloc(struct udevice *bus, uint vendor, |
| 721 | uint device) |
| 722 | { |
| 723 | u32 vendev; |
| 724 | int index; |
| 725 | |
Simon Glass | db3820a | 2023-07-15 21:38:55 -0600 | [diff] [blame] | 726 | if (spl_phase() == PHASE_SPL && CONFIG_IS_ENABLED(PCI_PNP)) |
| 727 | return true; |
| 728 | |
Simon Glass | f5cbb5c | 2021-06-27 17:50:57 -0600 | [diff] [blame] | 729 | for (index = 0; |
| 730 | !dev_read_u32_index(bus, "u-boot,pci-pre-reloc", index, |
| 731 | &vendev); |
| 732 | index++) { |
| 733 | if (vendev == PCI_VENDEV(vendor, device)) |
| 734 | return true; |
| 735 | } |
| 736 | |
| 737 | return false; |
| 738 | } |
| 739 | |
| 740 | /** |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 741 | * pci_find_and_bind_driver() - Find and bind the right PCI driver |
| 742 | * |
| 743 | * This only looks at certain fields in the descriptor. |
Simon Glass | 5dbcf3a | 2015-09-08 17:52:49 -0600 | [diff] [blame] | 744 | * |
| 745 | * @parent: Parent bus |
| 746 | * @find_id: Specification of the driver to find |
| 747 | * @bdf: Bus/device/function addreess - see PCI_BDF() |
| 748 | * @devp: Returns a pointer to the device created |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 749 | * Return: 0 if OK, -EPERM if the device is not needed before relocation and |
Simon Glass | 5dbcf3a | 2015-09-08 17:52:49 -0600 | [diff] [blame] | 750 | * therefore was not created, other -ve value on error |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 751 | */ |
| 752 | static int pci_find_and_bind_driver(struct udevice *parent, |
Simon Glass | 5dbcf3a | 2015-09-08 17:52:49 -0600 | [diff] [blame] | 753 | struct pci_device_id *find_id, |
| 754 | pci_dev_t bdf, struct udevice **devp) |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 755 | { |
| 756 | struct pci_driver_entry *start, *entry; |
Marek Vasut | 02e4d38 | 2018-10-10 21:27:06 +0200 | [diff] [blame] | 757 | ofnode node = ofnode_null(); |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 758 | const char *drv; |
| 759 | int n_ents; |
| 760 | int ret; |
| 761 | char name[30], *str; |
Bin Meng | 08fc7b8 | 2015-08-20 06:40:17 -0700 | [diff] [blame] | 762 | bool bridge; |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 763 | |
| 764 | *devp = NULL; |
| 765 | |
| 766 | debug("%s: Searching for driver: vendor=%x, device=%x\n", __func__, |
| 767 | find_id->vendor, find_id->device); |
Marek Vasut | 02e4d38 | 2018-10-10 21:27:06 +0200 | [diff] [blame] | 768 | |
| 769 | /* Determine optional OF node */ |
Suneel Garapati | bc30140 | 2019-10-19 16:02:48 -0700 | [diff] [blame] | 770 | if (ofnode_valid(dev_ofnode(parent))) |
| 771 | pci_dev_find_ofnode(parent, bdf, &node); |
Marek Vasut | 02e4d38 | 2018-10-10 21:27:06 +0200 | [diff] [blame] | 772 | |
Simon Glass | 8909066 | 2022-09-06 20:27:17 -0600 | [diff] [blame] | 773 | if (ofnode_valid(node) && !ofnode_is_enabled(node)) { |
Michael Walle | a6cd597 | 2019-12-01 17:45:18 +0100 | [diff] [blame] | 774 | debug("%s: Ignoring disabled device\n", __func__); |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 775 | return log_msg_ret("dis", -EPERM); |
Michael Walle | a6cd597 | 2019-12-01 17:45:18 +0100 | [diff] [blame] | 776 | } |
| 777 | |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 778 | start = ll_entry_start(struct pci_driver_entry, pci_driver_entry); |
| 779 | n_ents = ll_entry_count(struct pci_driver_entry, pci_driver_entry); |
| 780 | for (entry = start; entry != start + n_ents; entry++) { |
| 781 | const struct pci_device_id *id; |
| 782 | struct udevice *dev; |
| 783 | const struct driver *drv; |
| 784 | |
| 785 | for (id = entry->match; |
| 786 | id->vendor || id->subvendor || id->class_mask; |
| 787 | id++) { |
| 788 | if (!pci_match_one_id(id, find_id)) |
| 789 | continue; |
| 790 | |
| 791 | drv = entry->driver; |
Bin Meng | 08fc7b8 | 2015-08-20 06:40:17 -0700 | [diff] [blame] | 792 | |
| 793 | /* |
| 794 | * In the pre-relocation phase, we only bind devices |
| 795 | * whose driver has the DM_FLAG_PRE_RELOC set, to save |
| 796 | * precious memory space as on some platforms as that |
| 797 | * space is pretty limited (ie: using Cache As RAM). |
| 798 | */ |
| 799 | if (!(gd->flags & GD_FLG_RELOC) && |
Simon Glass | db3820a | 2023-07-15 21:38:55 -0600 | [diff] [blame] | 800 | !(drv->flags & DM_FLAG_PRE_RELOC) && |
| 801 | (!CONFIG_IS_ENABLED(PCI_PNP) || |
| 802 | spl_phase() != PHASE_SPL)) |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 803 | return log_msg_ret("pre", -EPERM); |
Bin Meng | 08fc7b8 | 2015-08-20 06:40:17 -0700 | [diff] [blame] | 804 | |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 805 | /* |
| 806 | * We could pass the descriptor to the driver as |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 807 | * plat (instead of NULL) and allow its bind() |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 808 | * method to return -ENOENT if it doesn't support this |
| 809 | * device. That way we could continue the search to |
| 810 | * find another driver. For now this doesn't seem |
| 811 | * necesssary, so just bind the first match. |
| 812 | */ |
Simon Glass | 734206d | 2020-11-28 17:50:01 -0700 | [diff] [blame] | 813 | ret = device_bind(parent, drv, drv->name, NULL, node, |
| 814 | &dev); |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 815 | if (ret) |
| 816 | goto error; |
| 817 | debug("%s: Match found: %s\n", __func__, drv->name); |
Bin Meng | ed698aa | 2018-08-03 01:14:44 -0700 | [diff] [blame] | 818 | dev->driver_data = id->driver_data; |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 819 | *devp = dev; |
| 820 | return 0; |
| 821 | } |
| 822 | } |
| 823 | |
Bin Meng | 08fc7b8 | 2015-08-20 06:40:17 -0700 | [diff] [blame] | 824 | bridge = (find_id->class >> 8) == PCI_CLASS_BRIDGE_PCI; |
| 825 | /* |
| 826 | * In the pre-relocation phase, we only bind bridge devices to save |
| 827 | * precious memory space as on some platforms as that space is pretty |
| 828 | * limited (ie: using Cache As RAM). |
| 829 | */ |
Simon Glass | f5cbb5c | 2021-06-27 17:50:57 -0600 | [diff] [blame] | 830 | if (!(gd->flags & GD_FLG_RELOC) && !bridge && |
| 831 | !pci_need_device_pre_reloc(parent, find_id->vendor, |
| 832 | find_id->device)) |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 833 | return log_msg_ret("notbr", -EPERM); |
Bin Meng | 08fc7b8 | 2015-08-20 06:40:17 -0700 | [diff] [blame] | 834 | |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 835 | /* Bind a generic driver so that the device can be used */ |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 836 | sprintf(name, "pci_%x:%x.%x", dev_seq(parent), PCI_DEV(bdf), |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 837 | PCI_FUNC(bdf)); |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 838 | str = strdup(name); |
| 839 | if (!str) |
| 840 | return -ENOMEM; |
Bin Meng | 08fc7b8 | 2015-08-20 06:40:17 -0700 | [diff] [blame] | 841 | drv = bridge ? "pci_bridge_drv" : "pci_generic_drv"; |
| 842 | |
Marek Vasut | 02e4d38 | 2018-10-10 21:27:06 +0200 | [diff] [blame] | 843 | ret = device_bind_driver_to_node(parent, drv, str, node, devp); |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 844 | if (ret) { |
Simon Glass | 3129ace | 2015-09-08 17:52:48 -0600 | [diff] [blame] | 845 | debug("%s: Failed to bind generic driver: %d\n", __func__, ret); |
xypron.glpk@gmx.de | c42640c | 2017-05-08 20:40:16 +0200 | [diff] [blame] | 846 | free(str); |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 847 | return ret; |
| 848 | } |
| 849 | debug("%s: No match found: bound generic driver instead\n", __func__); |
| 850 | |
| 851 | return 0; |
| 852 | |
| 853 | error: |
| 854 | debug("%s: No match found: error %d\n", __func__, ret); |
| 855 | return ret; |
| 856 | } |
| 857 | |
Tim Harvey | cecd013 | 2021-04-16 14:53:47 -0700 | [diff] [blame] | 858 | __weak extern void board_pci_fixup_dev(struct udevice *bus, struct udevice *dev) |
| 859 | { |
| 860 | } |
| 861 | |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 862 | int pci_bind_bus_devices(struct udevice *bus) |
| 863 | { |
| 864 | ulong vendor, device; |
| 865 | ulong header_type; |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 866 | pci_dev_t bdf, end; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 867 | bool found_multi; |
Suneel Garapati | a3fac3f | 2019-10-23 18:40:36 -0700 | [diff] [blame] | 868 | int ari_off; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 869 | int ret; |
| 870 | |
| 871 | found_multi = false; |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 872 | end = PCI_BDF(dev_seq(bus), PCI_MAX_PCI_DEVICES - 1, |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 873 | PCI_MAX_PCI_FUNCTIONS - 1); |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 874 | for (bdf = PCI_BDF(dev_seq(bus), 0, 0); bdf <= end; |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 875 | bdf += PCI_BDF(0, 0, 1)) { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 876 | struct pci_child_plat *pplat; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 877 | struct udevice *dev; |
| 878 | ulong class; |
| 879 | |
Bin Meng | 64e45f7 | 2018-08-03 01:14:37 -0700 | [diff] [blame] | 880 | if (!PCI_FUNC(bdf)) |
| 881 | found_multi = false; |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 882 | if (PCI_FUNC(bdf) && !found_multi) |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 883 | continue; |
Hou Zhiqiang | 2a87f7f | 2018-10-08 16:35:47 +0800 | [diff] [blame] | 884 | |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 885 | /* Check only the first access, we don't expect problems */ |
Hou Zhiqiang | 2a87f7f | 2018-10-08 16:35:47 +0800 | [diff] [blame] | 886 | ret = pci_bus_read_config(bus, bdf, PCI_VENDOR_ID, &vendor, |
| 887 | PCI_SIZE_16); |
Pali RohĂĄr | 2348e72 | 2021-09-07 18:07:08 +0200 | [diff] [blame] | 888 | if (ret || vendor == 0xffff || vendor == 0x0000) |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 889 | continue; |
| 890 | |
Hou Zhiqiang | 2a87f7f | 2018-10-08 16:35:47 +0800 | [diff] [blame] | 891 | pci_bus_read_config(bus, bdf, PCI_HEADER_TYPE, |
| 892 | &header_type, PCI_SIZE_8); |
| 893 | |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 894 | if (!PCI_FUNC(bdf)) |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 895 | found_multi = header_type & 0x80; |
| 896 | |
Simon Glass | 0911569 | 2019-09-25 08:56:12 -0600 | [diff] [blame] | 897 | debug("%s: bus %d/%s: found device %x, function %d", __func__, |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 898 | dev_seq(bus), bus->name, PCI_DEV(bdf), PCI_FUNC(bdf)); |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 899 | pci_bus_read_config(bus, bdf, PCI_DEVICE_ID, &device, |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 900 | PCI_SIZE_16); |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 901 | pci_bus_read_config(bus, bdf, PCI_CLASS_REVISION, &class, |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 902 | PCI_SIZE_32); |
| 903 | class >>= 8; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 904 | |
| 905 | /* Find this device in the device tree */ |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 906 | ret = pci_bus_find_devfn(bus, PCI_MASK_BUS(bdf), &dev); |
Simon Glass | 0911569 | 2019-09-25 08:56:12 -0600 | [diff] [blame] | 907 | debug(": find ret=%d\n", ret); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 908 | |
Simon Glass | 8bd4252 | 2015-11-29 13:18:09 -0700 | [diff] [blame] | 909 | /* If nothing in the device tree, bind a device */ |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 910 | if (ret == -ENODEV) { |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 911 | struct pci_device_id find_id; |
| 912 | ulong val; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 913 | |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 914 | memset(&find_id, '\0', sizeof(find_id)); |
| 915 | find_id.vendor = vendor; |
| 916 | find_id.device = device; |
| 917 | find_id.class = class; |
| 918 | if ((header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL) { |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 919 | pci_bus_read_config(bus, bdf, |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 920 | PCI_SUBSYSTEM_VENDOR_ID, |
| 921 | &val, PCI_SIZE_32); |
| 922 | find_id.subvendor = val & 0xffff; |
| 923 | find_id.subdevice = val >> 16; |
| 924 | } |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 925 | ret = pci_find_and_bind_driver(bus, &find_id, bdf, |
Simon Glass | aba9296 | 2015-07-06 16:47:44 -0600 | [diff] [blame] | 926 | &dev); |
Simon Glass | db3820a | 2023-07-15 21:38:55 -0600 | [diff] [blame] | 927 | } else { |
| 928 | debug("device: %s\n", dev->name); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 929 | } |
Simon Glass | 5dbcf3a | 2015-09-08 17:52:49 -0600 | [diff] [blame] | 930 | if (ret == -EPERM) |
| 931 | continue; |
| 932 | else if (ret) |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 933 | return ret; |
| 934 | |
| 935 | /* Update the platform data */ |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 936 | pplat = dev_get_parent_plat(dev); |
Simon Glass | 5dbcf3a | 2015-09-08 17:52:49 -0600 | [diff] [blame] | 937 | pplat->devfn = PCI_MASK_BUS(bdf); |
| 938 | pplat->vendor = vendor; |
| 939 | pplat->device = device; |
| 940 | pplat->class = class; |
Suneel Garapati | a3fac3f | 2019-10-23 18:40:36 -0700 | [diff] [blame] | 941 | |
| 942 | if (IS_ENABLED(CONFIG_PCI_ARID)) { |
| 943 | ari_off = dm_pci_find_ext_capability(dev, |
| 944 | PCI_EXT_CAP_ID_ARI); |
| 945 | if (ari_off) { |
| 946 | u16 ari_cap; |
| 947 | |
| 948 | /* |
| 949 | * Read Next Function number in ARI Cap |
| 950 | * Register |
| 951 | */ |
| 952 | dm_pci_read_config16(dev, ari_off + 4, |
| 953 | &ari_cap); |
| 954 | /* |
| 955 | * Update next scan on this function number, |
| 956 | * subtract 1 in BDF to satisfy loop increment. |
| 957 | */ |
| 958 | if (ari_cap & 0xff00) { |
| 959 | bdf = PCI_BDF(PCI_BUS(bdf), |
| 960 | PCI_DEV(ari_cap), |
| 961 | PCI_FUNC(ari_cap)); |
| 962 | bdf = bdf - 0x100; |
| 963 | } |
| 964 | } |
| 965 | } |
Tim Harvey | cecd013 | 2021-04-16 14:53:47 -0700 | [diff] [blame] | 966 | |
| 967 | board_pci_fixup_dev(bus, dev); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 968 | } |
| 969 | |
| 970 | return 0; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 971 | } |
| 972 | |
Pierre-Clément Tosi | f2ebaaa | 2022-05-19 17:48:30 +0100 | [diff] [blame] | 973 | static int decode_regions(struct pci_controller *hose, ofnode parent_node, |
Christian Gmeiner | f2825f6 | 2018-06-10 06:25:05 -0700 | [diff] [blame] | 974 | ofnode node) |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 975 | { |
| 976 | int pci_addr_cells, addr_cells, size_cells; |
| 977 | int cells_per_record; |
Stefan Roese | dfaf6a5 | 2020-08-12 11:55:46 +0200 | [diff] [blame] | 978 | struct bd_info *bd; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 979 | const u32 *prop; |
Stefan Roese | e002474 | 2020-07-23 16:34:10 +0200 | [diff] [blame] | 980 | int max_regions; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 981 | int len; |
| 982 | int i; |
| 983 | |
Simon Glass | dd0f7bc | 2023-05-04 16:55:01 -0600 | [diff] [blame] | 984 | /* handle booting from coreboot, etc. */ |
| 985 | if (!ll_boot_init()) |
| 986 | return 0; |
| 987 | |
Masahiro Yamada | 61e51ba | 2017-06-22 16:54:05 +0900 | [diff] [blame] | 988 | prop = ofnode_get_property(node, "ranges", &len); |
Christian Gmeiner | f2825f6 | 2018-06-10 06:25:05 -0700 | [diff] [blame] | 989 | if (!prop) { |
| 990 | debug("%s: Cannot decode regions\n", __func__); |
Pierre-Clément Tosi | f2ebaaa | 2022-05-19 17:48:30 +0100 | [diff] [blame] | 991 | return -EINVAL; |
Christian Gmeiner | f2825f6 | 2018-06-10 06:25:05 -0700 | [diff] [blame] | 992 | } |
| 993 | |
Simon Glass | 878d68c | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 994 | pci_addr_cells = ofnode_read_simple_addr_cells(node); |
| 995 | addr_cells = ofnode_read_simple_addr_cells(parent_node); |
| 996 | size_cells = ofnode_read_simple_size_cells(node); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 997 | |
| 998 | /* PCI addresses are always 3-cells */ |
| 999 | len /= sizeof(u32); |
| 1000 | cells_per_record = pci_addr_cells + addr_cells + size_cells; |
| 1001 | hose->region_count = 0; |
| 1002 | debug("%s: len=%d, cells_per_record=%d\n", __func__, len, |
| 1003 | cells_per_record); |
Stefan Roese | e002474 | 2020-07-23 16:34:10 +0200 | [diff] [blame] | 1004 | |
| 1005 | /* Dynamically allocate the regions array */ |
| 1006 | max_regions = len / cells_per_record + CONFIG_NR_DRAM_BANKS; |
| 1007 | hose->regions = (struct pci_region *) |
| 1008 | calloc(1, max_regions * sizeof(struct pci_region)); |
Pierre-Clément Tosi | f2ebaaa | 2022-05-19 17:48:30 +0100 | [diff] [blame] | 1009 | if (!hose->regions) |
| 1010 | return -ENOMEM; |
Stefan Roese | e002474 | 2020-07-23 16:34:10 +0200 | [diff] [blame] | 1011 | |
| 1012 | for (i = 0; i < max_regions; i++, len -= cells_per_record) { |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1013 | u64 pci_addr, addr, size; |
| 1014 | int space_code; |
| 1015 | u32 flags; |
| 1016 | int type; |
Simon Glass | 9526d83 | 2015-11-19 20:26:58 -0700 | [diff] [blame] | 1017 | int pos; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1018 | |
| 1019 | if (len < cells_per_record) |
| 1020 | break; |
| 1021 | flags = fdt32_to_cpu(prop[0]); |
| 1022 | space_code = (flags >> 24) & 3; |
| 1023 | pci_addr = fdtdec_get_number(prop + 1, 2); |
| 1024 | prop += pci_addr_cells; |
| 1025 | addr = fdtdec_get_number(prop, addr_cells); |
| 1026 | prop += addr_cells; |
| 1027 | size = fdtdec_get_number(prop, size_cells); |
| 1028 | prop += size_cells; |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 1029 | debug("%s: region %d, pci_addr=%llx, addr=%llx, size=%llx, space_code=%d\n", |
| 1030 | __func__, hose->region_count, pci_addr, addr, size, space_code); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1031 | if (space_code & 2) { |
| 1032 | type = flags & (1U << 30) ? PCI_REGION_PREFETCH : |
| 1033 | PCI_REGION_MEM; |
| 1034 | } else if (space_code & 1) { |
| 1035 | type = PCI_REGION_IO; |
| 1036 | } else { |
| 1037 | continue; |
| 1038 | } |
Tuomas Tynkkynen | 52ba907 | 2018-05-14 18:47:50 +0300 | [diff] [blame] | 1039 | |
| 1040 | if (!IS_ENABLED(CONFIG_SYS_PCI_64BIT) && |
| 1041 | type == PCI_REGION_MEM && upper_32_bits(pci_addr)) { |
Andrew Scull | ec8eba8 | 2022-04-21 16:11:07 +0000 | [diff] [blame] | 1042 | debug(" - pci_addr beyond the 32-bit boundary, ignoring\n"); |
| 1043 | continue; |
| 1044 | } |
| 1045 | |
| 1046 | if (!IS_ENABLED(CONFIG_PHYS_64BIT) && upper_32_bits(addr)) { |
| 1047 | debug(" - addr beyond the 32-bit boundary, ignoring\n"); |
| 1048 | continue; |
| 1049 | } |
| 1050 | |
| 1051 | if (~((pci_addr_t)0) - pci_addr < size) { |
| 1052 | debug(" - PCI range exceeds max address, ignoring\n"); |
| 1053 | continue; |
| 1054 | } |
| 1055 | |
| 1056 | if (~((phys_addr_t)0) - addr < size) { |
| 1057 | debug(" - phys range exceeds max address, ignoring\n"); |
Tuomas Tynkkynen | 52ba907 | 2018-05-14 18:47:50 +0300 | [diff] [blame] | 1058 | continue; |
| 1059 | } |
| 1060 | |
Simon Glass | 9526d83 | 2015-11-19 20:26:58 -0700 | [diff] [blame] | 1061 | pos = -1; |
Suneel Garapati | 4cf56ec | 2019-10-19 17:10:20 -0700 | [diff] [blame] | 1062 | if (!IS_ENABLED(CONFIG_PCI_REGION_MULTI_ENTRY)) { |
| 1063 | for (i = 0; i < hose->region_count; i++) { |
| 1064 | if (hose->regions[i].flags == type) |
| 1065 | pos = i; |
| 1066 | } |
Simon Glass | 9526d83 | 2015-11-19 20:26:58 -0700 | [diff] [blame] | 1067 | } |
Suneel Garapati | 4cf56ec | 2019-10-19 17:10:20 -0700 | [diff] [blame] | 1068 | |
Simon Glass | 9526d83 | 2015-11-19 20:26:58 -0700 | [diff] [blame] | 1069 | if (pos == -1) |
| 1070 | pos = hose->region_count++; |
| 1071 | debug(" - type=%d, pos=%d\n", type, pos); |
| 1072 | pci_set_region(hose->regions + pos, pci_addr, addr, size, type); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1073 | } |
| 1074 | |
| 1075 | /* Add a region for our local memory */ |
Stefan Roese | dfaf6a5 | 2020-08-12 11:55:46 +0200 | [diff] [blame] | 1076 | bd = gd->bd; |
Bin Meng | 1eaf780 | 2018-03-27 00:46:05 -0700 | [diff] [blame] | 1077 | if (!bd) |
Pierre-Clément Tosi | f2ebaaa | 2022-05-19 17:48:30 +0100 | [diff] [blame] | 1078 | return 0; |
Bin Meng | 1eaf780 | 2018-03-27 00:46:05 -0700 | [diff] [blame] | 1079 | |
Bernhard Messerklinger | 664758c | 2018-02-15 08:59:53 +0100 | [diff] [blame] | 1080 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) { |
| 1081 | if (bd->bi_dram[i].size) { |
Daniel Schwierzeck | a45343a | 2021-07-15 20:53:56 +0200 | [diff] [blame] | 1082 | phys_addr_t start = bd->bi_dram[i].start; |
| 1083 | |
| 1084 | if (IS_ENABLED(CONFIG_PCI_MAP_SYSTEM_MEMORY)) |
| 1085 | start = virt_to_phys((void *)(uintptr_t)bd->bi_dram[i].start); |
| 1086 | |
Bernhard Messerklinger | 664758c | 2018-02-15 08:59:53 +0100 | [diff] [blame] | 1087 | pci_set_region(hose->regions + hose->region_count++, |
Daniel Schwierzeck | a45343a | 2021-07-15 20:53:56 +0200 | [diff] [blame] | 1088 | start, start, bd->bi_dram[i].size, |
Bernhard Messerklinger | 664758c | 2018-02-15 08:59:53 +0100 | [diff] [blame] | 1089 | PCI_REGION_MEM | PCI_REGION_SYS_MEMORY); |
| 1090 | } |
| 1091 | } |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1092 | |
Pierre-Clément Tosi | f2ebaaa | 2022-05-19 17:48:30 +0100 | [diff] [blame] | 1093 | return 0; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1094 | } |
| 1095 | |
| 1096 | static int pci_uclass_pre_probe(struct udevice *bus) |
| 1097 | { |
| 1098 | struct pci_controller *hose; |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 1099 | struct uclass *uc; |
| 1100 | int ret; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1101 | |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 1102 | debug("%s, bus=%d/%s, parent=%s\n", __func__, dev_seq(bus), bus->name, |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1103 | bus->parent->name); |
Simon Glass | 0fd3d91 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 1104 | hose = dev_get_uclass_priv(bus); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1105 | |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 1106 | /* |
| 1107 | * Set the sequence number, if device_bind() doesn't. We want control |
| 1108 | * of this so that numbers are allocated as devices are probed. That |
| 1109 | * ensures that sub-bus numbered is correct (sub-buses must get numbers |
| 1110 | * higher than their parents) |
| 1111 | */ |
| 1112 | if (dev_seq(bus) == -1) { |
| 1113 | ret = uclass_get(UCLASS_PCI, &uc); |
| 1114 | if (ret) |
| 1115 | return ret; |
Simon Glass | 2462139 | 2020-12-19 10:40:09 -0700 | [diff] [blame] | 1116 | bus->seq_ = uclass_find_next_free_seq(uc); |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 1117 | } |
| 1118 | |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1119 | /* For bridges, use the top-level PCI controller */ |
Paul Burton | 65f62b1 | 2016-09-08 07:47:32 +0100 | [diff] [blame] | 1120 | if (!device_is_on_pci_bus(bus)) { |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1121 | hose->ctlr = bus; |
Pierre-Clément Tosi | f2ebaaa | 2022-05-19 17:48:30 +0100 | [diff] [blame] | 1122 | ret = decode_regions(hose, dev_ofnode(bus->parent), |
| 1123 | dev_ofnode(bus)); |
| 1124 | if (ret) |
| 1125 | return ret; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1126 | } else { |
| 1127 | struct pci_controller *parent_hose; |
| 1128 | |
| 1129 | parent_hose = dev_get_uclass_priv(bus->parent); |
| 1130 | hose->ctlr = parent_hose->bus; |
| 1131 | } |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 1132 | |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1133 | hose->bus = bus; |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 1134 | hose->first_busno = dev_seq(bus); |
| 1135 | hose->last_busno = dev_seq(bus); |
Simon Glass | 7d14ee4 | 2020-12-19 10:40:13 -0700 | [diff] [blame] | 1136 | if (dev_has_ofnode(bus)) { |
Suneel Garapati | f0c3692 | 2020-05-04 21:25:25 -0700 | [diff] [blame] | 1137 | hose->skip_auto_config_until_reloc = |
| 1138 | dev_read_bool(bus, |
| 1139 | "u-boot,skip-auto-config-until-reloc"); |
| 1140 | } |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1141 | |
| 1142 | return 0; |
| 1143 | } |
| 1144 | |
| 1145 | static int pci_uclass_post_probe(struct udevice *bus) |
| 1146 | { |
Simon Glass | 2206ac2 | 2019-12-06 21:41:37 -0700 | [diff] [blame] | 1147 | struct pci_controller *hose = dev_get_uclass_priv(bus); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1148 | int ret; |
| 1149 | |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 1150 | debug("%s: probing bus %d\n", __func__, dev_seq(bus)); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1151 | ret = pci_bind_bus_devices(bus); |
| 1152 | if (ret) |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 1153 | return log_msg_ret("bind", ret); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1154 | |
Simon Glass | f1f4438 | 2020-04-26 09:12:56 -0600 | [diff] [blame] | 1155 | if (CONFIG_IS_ENABLED(PCI_PNP) && ll_boot_init() && |
Simon Glass | 2206ac2 | 2019-12-06 21:41:37 -0700 | [diff] [blame] | 1156 | (!hose->skip_auto_config_until_reloc || |
| 1157 | (gd->flags & GD_FLG_RELOC))) { |
| 1158 | ret = pci_auto_config_devices(bus); |
| 1159 | if (ret < 0) |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 1160 | return log_msg_ret("cfg", ret); |
Simon Glass | 2206ac2 | 2019-12-06 21:41:37 -0700 | [diff] [blame] | 1161 | } |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1162 | |
Bin Meng | 348b744 | 2015-08-20 06:40:23 -0700 | [diff] [blame] | 1163 | #if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP) |
| 1164 | /* |
| 1165 | * Per Intel FSP specification, we should call FSP notify API to |
| 1166 | * inform FSP that PCI enumeration has been done so that FSP will |
| 1167 | * do any necessary initialization as required by the chipset's |
| 1168 | * BIOS Writer's Guide (BWG). |
| 1169 | * |
| 1170 | * Unfortunately we have to put this call here as with driver model, |
| 1171 | * the enumeration is all done on a lazy basis as needed, so until |
| 1172 | * something is touched on PCI it won't happen. |
| 1173 | * |
| 1174 | * Note we only call this 1) after U-Boot is relocated, and 2) |
| 1175 | * root bus has finished probing. |
| 1176 | */ |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 1177 | if ((gd->flags & GD_FLG_RELOC) && dev_seq(bus) == 0 && ll_boot_init()) { |
Bin Meng | 348b744 | 2015-08-20 06:40:23 -0700 | [diff] [blame] | 1178 | ret = fsp_init_phase_pci(); |
Simon Glass | 4d21455 | 2015-09-08 17:52:47 -0600 | [diff] [blame] | 1179 | if (ret) |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 1180 | return log_msg_ret("fsp", ret); |
Simon Glass | 4d21455 | 2015-09-08 17:52:47 -0600 | [diff] [blame] | 1181 | } |
Bin Meng | 348b744 | 2015-08-20 06:40:23 -0700 | [diff] [blame] | 1182 | #endif |
| 1183 | |
Simon Glass | 4d21455 | 2015-09-08 17:52:47 -0600 | [diff] [blame] | 1184 | return 0; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1185 | } |
| 1186 | |
| 1187 | static int pci_uclass_child_post_bind(struct udevice *dev) |
| 1188 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 1189 | struct pci_child_plat *pplat; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1190 | |
Simon Glass | 7d14ee4 | 2020-12-19 10:40:13 -0700 | [diff] [blame] | 1191 | if (!dev_has_ofnode(dev)) |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1192 | return 0; |
| 1193 | |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 1194 | pplat = dev_get_parent_plat(dev); |
Bin Meng | 1f6b08b | 2018-08-03 01:14:36 -0700 | [diff] [blame] | 1195 | |
| 1196 | /* Extract vendor id and device id if available */ |
| 1197 | ofnode_read_pci_vendev(dev_ofnode(dev), &pplat->vendor, &pplat->device); |
| 1198 | |
| 1199 | /* Extract the devfn from fdt_pci_addr */ |
Stefan Roese | b521420 | 2019-01-25 11:52:42 +0100 | [diff] [blame] | 1200 | pplat->devfn = pci_get_devfn(dev); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1201 | |
| 1202 | return 0; |
| 1203 | } |
| 1204 | |
Simon Glass | c4e72c4 | 2020-01-27 08:49:37 -0700 | [diff] [blame] | 1205 | static int pci_bridge_read_config(const struct udevice *bus, pci_dev_t bdf, |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 1206 | uint offset, ulong *valuep, |
| 1207 | enum pci_size_t size) |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1208 | { |
Simon Glass | 0fd3d91 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 1209 | struct pci_controller *hose = dev_get_uclass_priv(bus); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1210 | |
| 1211 | return pci_bus_read_config(hose->ctlr, bdf, offset, valuep, size); |
| 1212 | } |
| 1213 | |
Bin Meng | 4d8615c | 2015-07-19 00:20:04 +0800 | [diff] [blame] | 1214 | static int pci_bridge_write_config(struct udevice *bus, pci_dev_t bdf, |
| 1215 | uint offset, ulong value, |
| 1216 | enum pci_size_t size) |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1217 | { |
Simon Glass | 0fd3d91 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 1218 | struct pci_controller *hose = dev_get_uclass_priv(bus); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1219 | |
| 1220 | return pci_bus_write_config(hose->ctlr, bdf, offset, value, size); |
| 1221 | } |
| 1222 | |
Simon Glass | 76c3fbc | 2015-08-10 07:05:04 -0600 | [diff] [blame] | 1223 | static int skip_to_next_device(struct udevice *bus, struct udevice **devp) |
| 1224 | { |
| 1225 | struct udevice *dev; |
Simon Glass | 76c3fbc | 2015-08-10 07:05:04 -0600 | [diff] [blame] | 1226 | |
| 1227 | /* |
| 1228 | * Scan through all the PCI controllers. On x86 there will only be one |
| 1229 | * but that is not necessarily true on other hardware. |
| 1230 | */ |
Michal Suchanek | 5afe93a | 2022-10-12 21:57:52 +0200 | [diff] [blame] | 1231 | while (bus) { |
Simon Glass | 76c3fbc | 2015-08-10 07:05:04 -0600 | [diff] [blame] | 1232 | device_find_first_child(bus, &dev); |
| 1233 | if (dev) { |
| 1234 | *devp = dev; |
| 1235 | return 0; |
| 1236 | } |
Michal Suchanek | 4954937 | 2022-10-12 21:58:08 +0200 | [diff] [blame] | 1237 | uclass_next_device(&bus); |
Michal Suchanek | 5afe93a | 2022-10-12 21:57:52 +0200 | [diff] [blame] | 1238 | } |
Simon Glass | 76c3fbc | 2015-08-10 07:05:04 -0600 | [diff] [blame] | 1239 | |
| 1240 | return 0; |
| 1241 | } |
| 1242 | |
| 1243 | int pci_find_next_device(struct udevice **devp) |
| 1244 | { |
| 1245 | struct udevice *child = *devp; |
| 1246 | struct udevice *bus = child->parent; |
Simon Glass | 76c3fbc | 2015-08-10 07:05:04 -0600 | [diff] [blame] | 1247 | |
| 1248 | /* First try all the siblings */ |
| 1249 | *devp = NULL; |
| 1250 | while (child) { |
| 1251 | device_find_next_child(&child); |
| 1252 | if (child) { |
| 1253 | *devp = child; |
| 1254 | return 0; |
| 1255 | } |
| 1256 | } |
| 1257 | |
| 1258 | /* We ran out of siblings. Try the next bus */ |
Michal Suchanek | 4954937 | 2022-10-12 21:58:08 +0200 | [diff] [blame] | 1259 | uclass_next_device(&bus); |
Simon Glass | 76c3fbc | 2015-08-10 07:05:04 -0600 | [diff] [blame] | 1260 | |
| 1261 | return bus ? skip_to_next_device(bus, devp) : 0; |
| 1262 | } |
| 1263 | |
| 1264 | int pci_find_first_device(struct udevice **devp) |
| 1265 | { |
| 1266 | struct udevice *bus; |
Simon Glass | 76c3fbc | 2015-08-10 07:05:04 -0600 | [diff] [blame] | 1267 | |
| 1268 | *devp = NULL; |
Michal Suchanek | 4954937 | 2022-10-12 21:58:08 +0200 | [diff] [blame] | 1269 | uclass_first_device(UCLASS_PCI, &bus); |
Simon Glass | 76c3fbc | 2015-08-10 07:05:04 -0600 | [diff] [blame] | 1270 | |
| 1271 | return skip_to_next_device(bus, devp); |
| 1272 | } |
| 1273 | |
Simon Glass | 9289db6 | 2015-11-19 20:26:59 -0700 | [diff] [blame] | 1274 | ulong pci_conv_32_to_size(ulong value, uint offset, enum pci_size_t size) |
| 1275 | { |
| 1276 | switch (size) { |
| 1277 | case PCI_SIZE_8: |
| 1278 | return (value >> ((offset & 3) * 8)) & 0xff; |
| 1279 | case PCI_SIZE_16: |
| 1280 | return (value >> ((offset & 2) * 8)) & 0xffff; |
| 1281 | default: |
| 1282 | return value; |
| 1283 | } |
| 1284 | } |
| 1285 | |
| 1286 | ulong pci_conv_size_to_32(ulong old, ulong value, uint offset, |
| 1287 | enum pci_size_t size) |
| 1288 | { |
| 1289 | uint off_mask; |
| 1290 | uint val_mask, shift; |
| 1291 | ulong ldata, mask; |
| 1292 | |
| 1293 | switch (size) { |
| 1294 | case PCI_SIZE_8: |
| 1295 | off_mask = 3; |
| 1296 | val_mask = 0xff; |
| 1297 | break; |
| 1298 | case PCI_SIZE_16: |
| 1299 | off_mask = 2; |
| 1300 | val_mask = 0xffff; |
| 1301 | break; |
| 1302 | default: |
| 1303 | return value; |
| 1304 | } |
| 1305 | shift = (offset & off_mask) * 8; |
| 1306 | ldata = (value & val_mask) << shift; |
| 1307 | mask = val_mask << shift; |
| 1308 | value = (old & ~mask) | ldata; |
| 1309 | |
| 1310 | return value; |
| 1311 | } |
| 1312 | |
Rayagonda Kokatanur | 143eb5b | 2020-05-12 13:29:49 +0530 | [diff] [blame] | 1313 | int pci_get_dma_regions(struct udevice *dev, struct pci_region *memp, int index) |
| 1314 | { |
| 1315 | int pci_addr_cells, addr_cells, size_cells; |
| 1316 | int cells_per_record; |
| 1317 | const u32 *prop; |
| 1318 | int len; |
| 1319 | int i = 0; |
| 1320 | |
| 1321 | prop = ofnode_get_property(dev_ofnode(dev), "dma-ranges", &len); |
| 1322 | if (!prop) { |
| 1323 | log_err("PCI: Device '%s': Cannot decode dma-ranges\n", |
| 1324 | dev->name); |
| 1325 | return -EINVAL; |
| 1326 | } |
| 1327 | |
| 1328 | pci_addr_cells = ofnode_read_simple_addr_cells(dev_ofnode(dev)); |
| 1329 | addr_cells = ofnode_read_simple_addr_cells(dev_ofnode(dev->parent)); |
| 1330 | size_cells = ofnode_read_simple_size_cells(dev_ofnode(dev)); |
| 1331 | |
| 1332 | /* PCI addresses are always 3-cells */ |
| 1333 | len /= sizeof(u32); |
| 1334 | cells_per_record = pci_addr_cells + addr_cells + size_cells; |
| 1335 | debug("%s: len=%d, cells_per_record=%d\n", __func__, len, |
| 1336 | cells_per_record); |
| 1337 | |
| 1338 | while (len) { |
| 1339 | memp->bus_start = fdtdec_get_number(prop + 1, 2); |
| 1340 | prop += pci_addr_cells; |
| 1341 | memp->phys_start = fdtdec_get_number(prop, addr_cells); |
| 1342 | prop += addr_cells; |
| 1343 | memp->size = fdtdec_get_number(prop, size_cells); |
| 1344 | prop += size_cells; |
| 1345 | |
| 1346 | if (i == index) |
| 1347 | return 0; |
| 1348 | i++; |
| 1349 | len -= cells_per_record; |
| 1350 | } |
| 1351 | |
| 1352 | return -EINVAL; |
| 1353 | } |
| 1354 | |
Simon Glass | f926033 | 2015-11-19 20:27:01 -0700 | [diff] [blame] | 1355 | int pci_get_regions(struct udevice *dev, struct pci_region **iop, |
| 1356 | struct pci_region **memp, struct pci_region **prefp) |
| 1357 | { |
| 1358 | struct udevice *bus = pci_get_controller(dev); |
| 1359 | struct pci_controller *hose = dev_get_uclass_priv(bus); |
| 1360 | int i; |
| 1361 | |
| 1362 | *iop = NULL; |
| 1363 | *memp = NULL; |
| 1364 | *prefp = NULL; |
| 1365 | for (i = 0; i < hose->region_count; i++) { |
| 1366 | switch (hose->regions[i].flags) { |
| 1367 | case PCI_REGION_IO: |
| 1368 | if (!*iop || (*iop)->size < hose->regions[i].size) |
| 1369 | *iop = hose->regions + i; |
| 1370 | break; |
| 1371 | case PCI_REGION_MEM: |
| 1372 | if (!*memp || (*memp)->size < hose->regions[i].size) |
| 1373 | *memp = hose->regions + i; |
| 1374 | break; |
| 1375 | case (PCI_REGION_MEM | PCI_REGION_PREFETCH): |
| 1376 | if (!*prefp || (*prefp)->size < hose->regions[i].size) |
| 1377 | *prefp = hose->regions + i; |
| 1378 | break; |
| 1379 | } |
| 1380 | } |
| 1381 | |
| 1382 | return (*iop != NULL) + (*memp != NULL) + (*prefp != NULL); |
| 1383 | } |
| 1384 | |
Simon Glass | 194fca9 | 2020-01-27 08:49:38 -0700 | [diff] [blame] | 1385 | u32 dm_pci_read_bar32(const struct udevice *dev, int barnum) |
Simon Glass | bab17cf | 2015-11-29 13:17:53 -0700 | [diff] [blame] | 1386 | { |
| 1387 | u32 addr; |
| 1388 | int bar; |
| 1389 | |
| 1390 | bar = PCI_BASE_ADDRESS_0 + barnum * 4; |
| 1391 | dm_pci_read_config32(dev, bar, &addr); |
Simon Glass | 9ece4b0 | 2020-04-09 10:27:36 -0600 | [diff] [blame] | 1392 | |
| 1393 | /* |
| 1394 | * If we get an invalid address, return this so that comparisons with |
| 1395 | * FDT_ADDR_T_NONE work correctly |
| 1396 | */ |
| 1397 | if (addr == 0xffffffff) |
| 1398 | return addr; |
| 1399 | else if (addr & PCI_BASE_ADDRESS_SPACE_IO) |
Simon Glass | bab17cf | 2015-11-29 13:17:53 -0700 | [diff] [blame] | 1400 | return addr & PCI_BASE_ADDRESS_IO_MASK; |
| 1401 | else |
| 1402 | return addr & PCI_BASE_ADDRESS_MEM_MASK; |
| 1403 | } |
| 1404 | |
Simon Glass | 9d731c8 | 2016-01-18 20:19:15 -0700 | [diff] [blame] | 1405 | void dm_pci_write_bar32(struct udevice *dev, int barnum, u32 addr) |
| 1406 | { |
| 1407 | int bar; |
| 1408 | |
| 1409 | bar = PCI_BASE_ADDRESS_0 + barnum * 4; |
| 1410 | dm_pci_write_config32(dev, bar, addr); |
| 1411 | } |
| 1412 | |
Andrew Scull | 7739d93 | 2022-04-21 16:11:11 +0000 | [diff] [blame] | 1413 | phys_addr_t dm_pci_bus_to_phys(struct udevice *dev, pci_addr_t bus_addr, |
| 1414 | size_t len, unsigned long mask, |
| 1415 | unsigned long flags) |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1416 | { |
Andrew Scull | 7739d93 | 2022-04-21 16:11:11 +0000 | [diff] [blame] | 1417 | struct udevice *ctlr; |
| 1418 | struct pci_controller *hose; |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1419 | struct pci_region *res; |
Andrew Scull | 398dc36 | 2022-04-21 16:11:08 +0000 | [diff] [blame] | 1420 | pci_addr_t offset; |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1421 | int i; |
| 1422 | |
Andrew Scull | 7739d93 | 2022-04-21 16:11:11 +0000 | [diff] [blame] | 1423 | /* The root controller has the region information */ |
| 1424 | ctlr = pci_get_controller(dev); |
| 1425 | hose = dev_get_uclass_priv(ctlr); |
| 1426 | |
| 1427 | if (hose->region_count == 0) |
| 1428 | return bus_addr; |
Christian Gmeiner | 6f95d89 | 2018-06-10 06:25:06 -0700 | [diff] [blame] | 1429 | |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1430 | for (i = 0; i < hose->region_count; i++) { |
| 1431 | res = &hose->regions[i]; |
| 1432 | |
Andrew Scull | 7739d93 | 2022-04-21 16:11:11 +0000 | [diff] [blame] | 1433 | if ((res->flags & mask) != flags) |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1434 | continue; |
| 1435 | |
Andrew Scull | 398dc36 | 2022-04-21 16:11:08 +0000 | [diff] [blame] | 1436 | if (bus_addr < res->bus_start) |
| 1437 | continue; |
| 1438 | |
| 1439 | offset = bus_addr - res->bus_start; |
| 1440 | if (offset >= res->size) |
| 1441 | continue; |
| 1442 | |
| 1443 | if (len > res->size - offset) |
| 1444 | continue; |
| 1445 | |
Andrew Scull | 7739d93 | 2022-04-21 16:11:11 +0000 | [diff] [blame] | 1446 | return res->phys_start + offset; |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1447 | } |
| 1448 | |
Heinrich Schuchardt | 70fdcc7 | 2023-07-27 18:50:14 +0200 | [diff] [blame] | 1449 | puts("dm_pci_bus_to_phys: invalid physical address\n"); |
Andrew Scull | 7739d93 | 2022-04-21 16:11:11 +0000 | [diff] [blame] | 1450 | return 0; |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1451 | } |
| 1452 | |
Andrew Scull | 7739d93 | 2022-04-21 16:11:11 +0000 | [diff] [blame] | 1453 | pci_addr_t dm_pci_phys_to_bus(struct udevice *dev, phys_addr_t phys_addr, |
| 1454 | size_t len, unsigned long mask, |
| 1455 | unsigned long flags) |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1456 | { |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1457 | struct udevice *ctlr; |
Andrew Scull | 7739d93 | 2022-04-21 16:11:11 +0000 | [diff] [blame] | 1458 | struct pci_controller *hose; |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1459 | struct pci_region *res; |
Andrew Scull | 398dc36 | 2022-04-21 16:11:08 +0000 | [diff] [blame] | 1460 | phys_addr_t offset; |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1461 | int i; |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1462 | |
| 1463 | /* The root controller has the region information */ |
| 1464 | ctlr = pci_get_controller(dev); |
| 1465 | hose = dev_get_uclass_priv(ctlr); |
| 1466 | |
Andrew Scull | 7739d93 | 2022-04-21 16:11:11 +0000 | [diff] [blame] | 1467 | if (hose->region_count == 0) |
| 1468 | return phys_addr; |
Christian Gmeiner | 6f95d89 | 2018-06-10 06:25:06 -0700 | [diff] [blame] | 1469 | |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1470 | for (i = 0; i < hose->region_count; i++) { |
| 1471 | res = &hose->regions[i]; |
| 1472 | |
Andrew Scull | 7739d93 | 2022-04-21 16:11:11 +0000 | [diff] [blame] | 1473 | if ((res->flags & mask) != flags) |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1474 | continue; |
| 1475 | |
Andrew Scull | 398dc36 | 2022-04-21 16:11:08 +0000 | [diff] [blame] | 1476 | if (phys_addr < res->phys_start) |
| 1477 | continue; |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1478 | |
Andrew Scull | 398dc36 | 2022-04-21 16:11:08 +0000 | [diff] [blame] | 1479 | offset = phys_addr - res->phys_start; |
| 1480 | if (offset >= res->size) |
| 1481 | continue; |
| 1482 | |
| 1483 | if (len > res->size - offset) |
| 1484 | continue; |
| 1485 | |
Andrew Scull | 7739d93 | 2022-04-21 16:11:11 +0000 | [diff] [blame] | 1486 | return res->bus_start + offset; |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1487 | } |
| 1488 | |
Heinrich Schuchardt | 70fdcc7 | 2023-07-27 18:50:14 +0200 | [diff] [blame] | 1489 | puts("dm_pci_phys_to_bus: invalid physical address\n"); |
Andrew Scull | 7739d93 | 2022-04-21 16:11:11 +0000 | [diff] [blame] | 1490 | return 0; |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1491 | } |
| 1492 | |
Suneel Garapati | 51eeae9 | 2019-10-19 16:34:16 -0700 | [diff] [blame] | 1493 | static phys_addr_t dm_pci_map_ea_virt(struct udevice *dev, int ea_off, |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 1494 | struct pci_child_plat *pdata) |
Suneel Garapati | 51eeae9 | 2019-10-19 16:34:16 -0700 | [diff] [blame] | 1495 | { |
| 1496 | phys_addr_t addr = 0; |
| 1497 | |
| 1498 | /* |
| 1499 | * In the case of a Virtual Function device using BAR |
| 1500 | * base and size, add offset for VFn BAR(1, 2, 3...n) |
| 1501 | */ |
| 1502 | if (pdata->is_virtfn) { |
| 1503 | size_t sz; |
| 1504 | u32 ea_entry; |
| 1505 | |
| 1506 | /* MaxOffset, 1st DW */ |
| 1507 | dm_pci_read_config32(dev, ea_off + 8, &ea_entry); |
| 1508 | sz = ea_entry & PCI_EA_FIELD_MASK; |
| 1509 | /* Fill up lower 2 bits */ |
| 1510 | sz |= (~PCI_EA_FIELD_MASK); |
| 1511 | |
| 1512 | if (ea_entry & PCI_EA_IS_64) { |
| 1513 | /* MaxOffset 2nd DW */ |
| 1514 | dm_pci_read_config32(dev, ea_off + 16, &ea_entry); |
| 1515 | sz |= ((u64)ea_entry) << 32; |
| 1516 | } |
| 1517 | |
| 1518 | addr = (pdata->virtid - 1) * (sz + 1); |
| 1519 | } |
| 1520 | |
| 1521 | return addr; |
| 1522 | } |
| 1523 | |
Andrew Scull | 12507a2 | 2022-04-21 16:11:10 +0000 | [diff] [blame] | 1524 | static void *dm_pci_map_ea_bar(struct udevice *dev, int bar, size_t offset, |
| 1525 | size_t len, int ea_off, |
Andrew Scull | 60f4142 | 2022-04-21 16:11:06 +0000 | [diff] [blame] | 1526 | struct pci_child_plat *pdata) |
Alex Marginean | 0b143d8 | 2019-06-07 11:24:23 +0300 | [diff] [blame] | 1527 | { |
| 1528 | int ea_cnt, i, entry_size; |
| 1529 | int bar_id = (bar - PCI_BASE_ADDRESS_0) >> 2; |
| 1530 | u32 ea_entry; |
| 1531 | phys_addr_t addr; |
| 1532 | |
Suneel Garapati | 51eeae9 | 2019-10-19 16:34:16 -0700 | [diff] [blame] | 1533 | if (IS_ENABLED(CONFIG_PCI_SRIOV)) { |
| 1534 | /* |
| 1535 | * In the case of a Virtual Function device, device is |
| 1536 | * Physical function, so pdata will point to required VF |
| 1537 | * specific data. |
| 1538 | */ |
| 1539 | if (pdata->is_virtfn) |
| 1540 | bar_id += PCI_EA_BEI_VF_BAR0; |
| 1541 | } |
| 1542 | |
Alex Marginean | 0b143d8 | 2019-06-07 11:24:23 +0300 | [diff] [blame] | 1543 | /* EA capability structure header */ |
| 1544 | dm_pci_read_config32(dev, ea_off, &ea_entry); |
| 1545 | ea_cnt = (ea_entry >> 16) & PCI_EA_NUM_ENT_MASK; |
| 1546 | ea_off += PCI_EA_FIRST_ENT; |
| 1547 | |
| 1548 | for (i = 0; i < ea_cnt; i++, ea_off += entry_size) { |
| 1549 | /* Entry header */ |
| 1550 | dm_pci_read_config32(dev, ea_off, &ea_entry); |
| 1551 | entry_size = ((ea_entry & PCI_EA_ES) + 1) << 2; |
| 1552 | |
| 1553 | if (((ea_entry & PCI_EA_BEI) >> 4) != bar_id) |
| 1554 | continue; |
| 1555 | |
| 1556 | /* Base address, 1st DW */ |
| 1557 | dm_pci_read_config32(dev, ea_off + 4, &ea_entry); |
| 1558 | addr = ea_entry & PCI_EA_FIELD_MASK; |
| 1559 | if (ea_entry & PCI_EA_IS_64) { |
| 1560 | /* Base address, 2nd DW, skip over 4B MaxOffset */ |
| 1561 | dm_pci_read_config32(dev, ea_off + 12, &ea_entry); |
| 1562 | addr |= ((u64)ea_entry) << 32; |
| 1563 | } |
| 1564 | |
Suneel Garapati | 51eeae9 | 2019-10-19 16:34:16 -0700 | [diff] [blame] | 1565 | if (IS_ENABLED(CONFIG_PCI_SRIOV)) |
| 1566 | addr += dm_pci_map_ea_virt(dev, ea_off, pdata); |
| 1567 | |
Andrew Scull | 12507a2 | 2022-04-21 16:11:10 +0000 | [diff] [blame] | 1568 | if (~((phys_addr_t)0) - addr < offset) |
| 1569 | return NULL; |
| 1570 | |
Alex Marginean | 0b143d8 | 2019-06-07 11:24:23 +0300 | [diff] [blame] | 1571 | /* size ignored for now */ |
Andrew Scull | 12507a2 | 2022-04-21 16:11:10 +0000 | [diff] [blame] | 1572 | return map_physmem(addr + offset, len, MAP_NOCACHE); |
Alex Marginean | 0b143d8 | 2019-06-07 11:24:23 +0300 | [diff] [blame] | 1573 | } |
| 1574 | |
| 1575 | return 0; |
| 1576 | } |
| 1577 | |
Andrew Scull | 12507a2 | 2022-04-21 16:11:10 +0000 | [diff] [blame] | 1578 | void *dm_pci_map_bar(struct udevice *dev, int bar, size_t offset, size_t len, |
Andrew Scull | 2635e3b | 2022-04-21 16:11:13 +0000 | [diff] [blame] | 1579 | unsigned long mask, unsigned long flags) |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1580 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 1581 | struct pci_child_plat *pdata = dev_get_parent_plat(dev); |
Suneel Garapati | 51eeae9 | 2019-10-19 16:34:16 -0700 | [diff] [blame] | 1582 | struct udevice *udev = dev; |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1583 | pci_addr_t pci_bus_addr; |
| 1584 | u32 bar_response; |
Alex Marginean | 0b143d8 | 2019-06-07 11:24:23 +0300 | [diff] [blame] | 1585 | int ea_off; |
| 1586 | |
Suneel Garapati | 51eeae9 | 2019-10-19 16:34:16 -0700 | [diff] [blame] | 1587 | if (IS_ENABLED(CONFIG_PCI_SRIOV)) { |
| 1588 | /* |
| 1589 | * In case of Virtual Function devices, use PF udevice |
| 1590 | * as EA capability is defined in Physical Function |
| 1591 | */ |
| 1592 | if (pdata->is_virtfn) |
| 1593 | udev = pdata->pfdev; |
| 1594 | } |
| 1595 | |
Alex Marginean | 0b143d8 | 2019-06-07 11:24:23 +0300 | [diff] [blame] | 1596 | /* |
| 1597 | * if the function supports Enhanced Allocation use that instead of |
| 1598 | * BARs |
Suneel Garapati | 51eeae9 | 2019-10-19 16:34:16 -0700 | [diff] [blame] | 1599 | * Incase of virtual functions, pdata will help read VF BEI |
| 1600 | * and EA entry size. |
Alex Marginean | 0b143d8 | 2019-06-07 11:24:23 +0300 | [diff] [blame] | 1601 | */ |
Andrew Scull | 3b92018 | 2022-04-21 16:11:16 +0000 | [diff] [blame] | 1602 | if (IS_ENABLED(CONFIG_PCI_ENHANCED_ALLOCATION)) |
| 1603 | ea_off = dm_pci_find_capability(udev, PCI_CAP_ID_EA); |
| 1604 | else |
| 1605 | ea_off = 0; |
| 1606 | |
Alex Marginean | 0b143d8 | 2019-06-07 11:24:23 +0300 | [diff] [blame] | 1607 | if (ea_off) |
Andrew Scull | 12507a2 | 2022-04-21 16:11:10 +0000 | [diff] [blame] | 1608 | return dm_pci_map_ea_bar(udev, bar, offset, len, ea_off, pdata); |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1609 | |
| 1610 | /* read BAR address */ |
Suneel Garapati | 51eeae9 | 2019-10-19 16:34:16 -0700 | [diff] [blame] | 1611 | dm_pci_read_config32(udev, bar, &bar_response); |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1612 | pci_bus_addr = (pci_addr_t)(bar_response & ~0xf); |
| 1613 | |
Andrew Scull | 12507a2 | 2022-04-21 16:11:10 +0000 | [diff] [blame] | 1614 | if (~((pci_addr_t)0) - pci_bus_addr < offset) |
| 1615 | return NULL; |
| 1616 | |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1617 | /* |
Andrew Scull | 12507a2 | 2022-04-21 16:11:10 +0000 | [diff] [blame] | 1618 | * Forward the length argument to dm_pci_bus_to_virt. The length will |
| 1619 | * be used to check that the entire address range has been declared as |
| 1620 | * a PCI range, but a better check would be to probe for the size of |
| 1621 | * the bar and prevent overflow more locally. |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1622 | */ |
Andrew Scull | 2635e3b | 2022-04-21 16:11:13 +0000 | [diff] [blame] | 1623 | return dm_pci_bus_to_virt(udev, pci_bus_addr + offset, len, mask, flags, |
| 1624 | MAP_NOCACHE); |
Simon Glass | 21d1fe7 | 2015-11-29 13:18:03 -0700 | [diff] [blame] | 1625 | } |
| 1626 | |
Bin Meng | a8c5f8d | 2018-10-15 02:21:21 -0700 | [diff] [blame] | 1627 | static int _dm_pci_find_next_capability(struct udevice *dev, u8 pos, int cap) |
Bin Meng | dac01fd | 2018-08-03 01:14:52 -0700 | [diff] [blame] | 1628 | { |
Bin Meng | dac01fd | 2018-08-03 01:14:52 -0700 | [diff] [blame] | 1629 | int ttl = PCI_FIND_CAP_TTL; |
| 1630 | u8 id; |
| 1631 | u16 ent; |
Bin Meng | dac01fd | 2018-08-03 01:14:52 -0700 | [diff] [blame] | 1632 | |
| 1633 | dm_pci_read_config8(dev, pos, &pos); |
Bin Meng | a8c5f8d | 2018-10-15 02:21:21 -0700 | [diff] [blame] | 1634 | |
Bin Meng | dac01fd | 2018-08-03 01:14:52 -0700 | [diff] [blame] | 1635 | while (ttl--) { |
| 1636 | if (pos < PCI_STD_HEADER_SIZEOF) |
| 1637 | break; |
| 1638 | pos &= ~3; |
| 1639 | dm_pci_read_config16(dev, pos, &ent); |
| 1640 | |
| 1641 | id = ent & 0xff; |
| 1642 | if (id == 0xff) |
| 1643 | break; |
| 1644 | if (id == cap) |
| 1645 | return pos; |
| 1646 | pos = (ent >> 8); |
| 1647 | } |
| 1648 | |
| 1649 | return 0; |
| 1650 | } |
| 1651 | |
Bin Meng | a8c5f8d | 2018-10-15 02:21:21 -0700 | [diff] [blame] | 1652 | int dm_pci_find_next_capability(struct udevice *dev, u8 start, int cap) |
| 1653 | { |
| 1654 | return _dm_pci_find_next_capability(dev, start + PCI_CAP_LIST_NEXT, |
| 1655 | cap); |
| 1656 | } |
| 1657 | |
| 1658 | int dm_pci_find_capability(struct udevice *dev, int cap) |
| 1659 | { |
| 1660 | u16 status; |
| 1661 | u8 header_type; |
| 1662 | u8 pos; |
| 1663 | |
| 1664 | dm_pci_read_config16(dev, PCI_STATUS, &status); |
| 1665 | if (!(status & PCI_STATUS_CAP_LIST)) |
| 1666 | return 0; |
| 1667 | |
| 1668 | dm_pci_read_config8(dev, PCI_HEADER_TYPE, &header_type); |
| 1669 | if ((header_type & 0x7f) == PCI_HEADER_TYPE_CARDBUS) |
| 1670 | pos = PCI_CB_CAPABILITY_LIST; |
| 1671 | else |
| 1672 | pos = PCI_CAPABILITY_LIST; |
| 1673 | |
| 1674 | return _dm_pci_find_next_capability(dev, pos, cap); |
| 1675 | } |
| 1676 | |
| 1677 | int dm_pci_find_next_ext_capability(struct udevice *dev, int start, int cap) |
Bin Meng | dac01fd | 2018-08-03 01:14:52 -0700 | [diff] [blame] | 1678 | { |
| 1679 | u32 header; |
| 1680 | int ttl; |
| 1681 | int pos = PCI_CFG_SPACE_SIZE; |
| 1682 | |
| 1683 | /* minimum 8 bytes per capability */ |
| 1684 | ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8; |
| 1685 | |
Bin Meng | a8c5f8d | 2018-10-15 02:21:21 -0700 | [diff] [blame] | 1686 | if (start) |
| 1687 | pos = start; |
| 1688 | |
Bin Meng | dac01fd | 2018-08-03 01:14:52 -0700 | [diff] [blame] | 1689 | dm_pci_read_config32(dev, pos, &header); |
| 1690 | /* |
| 1691 | * If we have no capabilities, this is indicated by cap ID, |
| 1692 | * cap version and next pointer all being 0. |
| 1693 | */ |
| 1694 | if (header == 0) |
| 1695 | return 0; |
| 1696 | |
| 1697 | while (ttl--) { |
| 1698 | if (PCI_EXT_CAP_ID(header) == cap) |
| 1699 | return pos; |
| 1700 | |
| 1701 | pos = PCI_EXT_CAP_NEXT(header); |
| 1702 | if (pos < PCI_CFG_SPACE_SIZE) |
| 1703 | break; |
| 1704 | |
| 1705 | dm_pci_read_config32(dev, pos, &header); |
| 1706 | } |
| 1707 | |
| 1708 | return 0; |
| 1709 | } |
| 1710 | |
Bin Meng | a8c5f8d | 2018-10-15 02:21:21 -0700 | [diff] [blame] | 1711 | int dm_pci_find_ext_capability(struct udevice *dev, int cap) |
| 1712 | { |
| 1713 | return dm_pci_find_next_ext_capability(dev, 0, cap); |
| 1714 | } |
| 1715 | |
Alex Marginean | b8e1f82 | 2019-06-07 11:24:25 +0300 | [diff] [blame] | 1716 | int dm_pci_flr(struct udevice *dev) |
| 1717 | { |
| 1718 | int pcie_off; |
| 1719 | u32 cap; |
| 1720 | |
| 1721 | /* look for PCI Express Capability */ |
| 1722 | pcie_off = dm_pci_find_capability(dev, PCI_CAP_ID_EXP); |
| 1723 | if (!pcie_off) |
| 1724 | return -ENOENT; |
| 1725 | |
| 1726 | /* check FLR capability */ |
| 1727 | dm_pci_read_config32(dev, pcie_off + PCI_EXP_DEVCAP, &cap); |
| 1728 | if (!(cap & PCI_EXP_DEVCAP_FLR)) |
| 1729 | return -ENOENT; |
| 1730 | |
| 1731 | dm_pci_clrset_config16(dev, pcie_off + PCI_EXP_DEVCTL, 0, |
| 1732 | PCI_EXP_DEVCTL_BCR_FLR); |
| 1733 | |
| 1734 | /* wait 100ms, per PCI spec */ |
| 1735 | mdelay(100); |
| 1736 | |
| 1737 | return 0; |
| 1738 | } |
| 1739 | |
Suneel Garapati | b8852dc | 2019-10-19 16:07:20 -0700 | [diff] [blame] | 1740 | #if defined(CONFIG_PCI_SRIOV) |
| 1741 | int pci_sriov_init(struct udevice *pdev, int vf_en) |
| 1742 | { |
| 1743 | u16 vendor, device; |
| 1744 | struct udevice *bus; |
| 1745 | struct udevice *dev; |
| 1746 | pci_dev_t bdf; |
| 1747 | u16 ctrl; |
| 1748 | u16 num_vfs; |
| 1749 | u16 total_vf; |
| 1750 | u16 vf_offset; |
| 1751 | u16 vf_stride; |
| 1752 | int vf, ret; |
| 1753 | int pos; |
| 1754 | |
| 1755 | pos = dm_pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV); |
| 1756 | if (!pos) { |
| 1757 | debug("Error: SRIOV capability not found\n"); |
| 1758 | return -ENOENT; |
| 1759 | } |
| 1760 | |
| 1761 | dm_pci_read_config16(pdev, pos + PCI_SRIOV_CTRL, &ctrl); |
| 1762 | |
| 1763 | dm_pci_read_config16(pdev, pos + PCI_SRIOV_TOTAL_VF, &total_vf); |
| 1764 | if (vf_en > total_vf) |
| 1765 | vf_en = total_vf; |
| 1766 | dm_pci_write_config16(pdev, pos + PCI_SRIOV_NUM_VF, vf_en); |
| 1767 | |
| 1768 | ctrl |= PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE; |
| 1769 | dm_pci_write_config16(pdev, pos + PCI_SRIOV_CTRL, ctrl); |
| 1770 | |
| 1771 | dm_pci_read_config16(pdev, pos + PCI_SRIOV_NUM_VF, &num_vfs); |
| 1772 | if (num_vfs > vf_en) |
| 1773 | num_vfs = vf_en; |
| 1774 | |
| 1775 | dm_pci_read_config16(pdev, pos + PCI_SRIOV_VF_OFFSET, &vf_offset); |
| 1776 | dm_pci_read_config16(pdev, pos + PCI_SRIOV_VF_STRIDE, &vf_stride); |
| 1777 | |
| 1778 | dm_pci_read_config16(pdev, PCI_VENDOR_ID, &vendor); |
| 1779 | dm_pci_read_config16(pdev, pos + PCI_SRIOV_VF_DID, &device); |
| 1780 | |
| 1781 | bdf = dm_pci_get_bdf(pdev); |
| 1782 | |
Michal Suchanek | 58ddb93 | 2022-09-25 13:08:16 +0200 | [diff] [blame] | 1783 | ret = pci_get_bus(PCI_BUS(bdf), &bus); |
| 1784 | if (ret) |
| 1785 | return ret; |
Suneel Garapati | b8852dc | 2019-10-19 16:07:20 -0700 | [diff] [blame] | 1786 | |
| 1787 | bdf += PCI_BDF(0, 0, vf_offset); |
| 1788 | |
| 1789 | for (vf = 0; vf < num_vfs; vf++) { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 1790 | struct pci_child_plat *pplat; |
Suneel Garapati | b8852dc | 2019-10-19 16:07:20 -0700 | [diff] [blame] | 1791 | ulong class; |
| 1792 | |
| 1793 | pci_bus_read_config(bus, bdf, PCI_CLASS_DEVICE, |
| 1794 | &class, PCI_SIZE_16); |
| 1795 | |
| 1796 | debug("%s: bus %d/%s: found VF %x:%x\n", __func__, |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 1797 | dev_seq(bus), bus->name, PCI_DEV(bdf), PCI_FUNC(bdf)); |
Suneel Garapati | b8852dc | 2019-10-19 16:07:20 -0700 | [diff] [blame] | 1798 | |
| 1799 | /* Find this device in the device tree */ |
| 1800 | ret = pci_bus_find_devfn(bus, PCI_MASK_BUS(bdf), &dev); |
| 1801 | |
| 1802 | if (ret == -ENODEV) { |
| 1803 | struct pci_device_id find_id; |
| 1804 | |
| 1805 | memset(&find_id, '\0', sizeof(find_id)); |
| 1806 | find_id.vendor = vendor; |
| 1807 | find_id.device = device; |
| 1808 | find_id.class = class; |
| 1809 | |
| 1810 | ret = pci_find_and_bind_driver(bus, &find_id, |
| 1811 | bdf, &dev); |
| 1812 | |
| 1813 | if (ret) |
| 1814 | return ret; |
| 1815 | } |
| 1816 | |
| 1817 | /* Update the platform data */ |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 1818 | pplat = dev_get_parent_plat(dev); |
Suneel Garapati | b8852dc | 2019-10-19 16:07:20 -0700 | [diff] [blame] | 1819 | pplat->devfn = PCI_MASK_BUS(bdf); |
| 1820 | pplat->vendor = vendor; |
| 1821 | pplat->device = device; |
| 1822 | pplat->class = class; |
| 1823 | pplat->is_virtfn = true; |
| 1824 | pplat->pfdev = pdev; |
| 1825 | pplat->virtid = vf * vf_stride + vf_offset; |
| 1826 | |
| 1827 | debug("%s: bus %d/%s: found VF %x:%x %x:%x class %lx id %x\n", |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 1828 | __func__, dev_seq(dev), dev->name, PCI_DEV(bdf), |
Suneel Garapati | b8852dc | 2019-10-19 16:07:20 -0700 | [diff] [blame] | 1829 | PCI_FUNC(bdf), vendor, device, class, pplat->virtid); |
| 1830 | bdf += PCI_BDF(0, 0, vf_stride); |
| 1831 | } |
| 1832 | |
| 1833 | return 0; |
| 1834 | } |
| 1835 | |
| 1836 | int pci_sriov_get_totalvfs(struct udevice *pdev) |
| 1837 | { |
| 1838 | u16 total_vf; |
| 1839 | int pos; |
| 1840 | |
| 1841 | pos = dm_pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV); |
| 1842 | if (!pos) { |
| 1843 | debug("Error: SRIOV capability not found\n"); |
| 1844 | return -ENOENT; |
| 1845 | } |
| 1846 | |
| 1847 | dm_pci_read_config16(pdev, pos + PCI_SRIOV_TOTAL_VF, &total_vf); |
| 1848 | |
| 1849 | return total_vf; |
| 1850 | } |
| 1851 | #endif /* SRIOV */ |
| 1852 | |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1853 | UCLASS_DRIVER(pci) = { |
| 1854 | .id = UCLASS_PCI, |
| 1855 | .name = "pci", |
Simon Glass | 42f3663 | 2020-12-16 21:20:18 -0700 | [diff] [blame] | 1856 | .flags = DM_UC_FLAG_SEQ_ALIAS | DM_UC_FLAG_NO_AUTO_SEQ, |
Simon Glass | 9119548 | 2016-07-05 17:10:10 -0600 | [diff] [blame] | 1857 | .post_bind = dm_scan_fdt_dev, |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1858 | .pre_probe = pci_uclass_pre_probe, |
| 1859 | .post_probe = pci_uclass_post_probe, |
| 1860 | .child_post_bind = pci_uclass_child_post_bind, |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 1861 | .per_device_auto = sizeof(struct pci_controller), |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 1862 | .per_child_plat_auto = sizeof(struct pci_child_plat), |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1863 | }; |
| 1864 | |
| 1865 | static const struct dm_pci_ops pci_bridge_ops = { |
| 1866 | .read_config = pci_bridge_read_config, |
| 1867 | .write_config = pci_bridge_write_config, |
| 1868 | }; |
| 1869 | |
| 1870 | static const struct udevice_id pci_bridge_ids[] = { |
| 1871 | { .compatible = "pci-bridge" }, |
| 1872 | { } |
| 1873 | }; |
| 1874 | |
| 1875 | U_BOOT_DRIVER(pci_bridge_drv) = { |
| 1876 | .name = "pci_bridge_drv", |
| 1877 | .id = UCLASS_PCI, |
| 1878 | .of_match = pci_bridge_ids, |
| 1879 | .ops = &pci_bridge_ops, |
| 1880 | }; |
| 1881 | |
| 1882 | UCLASS_DRIVER(pci_generic) = { |
| 1883 | .id = UCLASS_PCI_GENERIC, |
| 1884 | .name = "pci_generic", |
| 1885 | }; |
| 1886 | |
| 1887 | static const struct udevice_id pci_generic_ids[] = { |
| 1888 | { .compatible = "pci-generic" }, |
| 1889 | { } |
| 1890 | }; |
| 1891 | |
| 1892 | U_BOOT_DRIVER(pci_generic_drv) = { |
| 1893 | .name = "pci_generic_drv", |
| 1894 | .id = UCLASS_PCI_GENERIC, |
| 1895 | .of_match = pci_generic_ids, |
| 1896 | }; |
Stephen Warren | e578b92 | 2016-01-26 11:10:11 -0700 | [diff] [blame] | 1897 | |
Ovidiu Panait | b9f6d0f | 2020-11-28 10:43:12 +0200 | [diff] [blame] | 1898 | int pci_init(void) |
Stephen Warren | e578b92 | 2016-01-26 11:10:11 -0700 | [diff] [blame] | 1899 | { |
| 1900 | struct udevice *bus; |
| 1901 | |
| 1902 | /* |
| 1903 | * Enumerate all known controller devices. Enumeration has the side- |
| 1904 | * effect of probing them, so PCIe devices will be enumerated too. |
| 1905 | */ |
Marek BehĂșn | 60ee609 | 2019-05-21 12:04:31 +0200 | [diff] [blame] | 1906 | for (uclass_first_device_check(UCLASS_PCI, &bus); |
Stephen Warren | e578b92 | 2016-01-26 11:10:11 -0700 | [diff] [blame] | 1907 | bus; |
Marek BehĂșn | 60ee609 | 2019-05-21 12:04:31 +0200 | [diff] [blame] | 1908 | uclass_next_device_check(&bus)) { |
Stephen Warren | e578b92 | 2016-01-26 11:10:11 -0700 | [diff] [blame] | 1909 | ; |
| 1910 | } |
Ovidiu Panait | b9f6d0f | 2020-11-28 10:43:12 +0200 | [diff] [blame] | 1911 | |
| 1912 | return 0; |
Stephen Warren | e578b92 | 2016-01-26 11:10:11 -0700 | [diff] [blame] | 1913 | } |