1 /* 2 * Copyright (c) 2014 Google, Inc 3 * Written by Simon Glass <sjg@chromium.org> 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 #include <common.h> 9 #include <dm.h> 10 #include <errno.h> 11 #include <inttypes.h> 12 #include <pci.h> 13 #include <asm/io.h> 14 #include <dm/device-internal.h> 15 #include <dm/lists.h> 16 #if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP) 17 #include <asm/fsp/fsp_support.h> 18 #endif 19 #include "pci_internal.h" 20 21 DECLARE_GLOBAL_DATA_PTR; 22 23 int pci_get_bus(int busnum, struct udevice **busp) 24 { 25 int ret; 26 27 ret = uclass_get_device_by_seq(UCLASS_PCI, busnum, busp); 28 29 /* Since buses may not be numbered yet try a little harder with bus 0 */ 30 if (ret == -ENODEV) { 31 ret = uclass_first_device_err(UCLASS_PCI, busp); 32 if (ret) 33 return ret; 34 ret = uclass_get_device_by_seq(UCLASS_PCI, busnum, busp); 35 } 36 37 return ret; 38 } 39 40 struct udevice *pci_get_controller(struct udevice *dev) 41 { 42 while (device_is_on_pci_bus(dev)) 43 dev = dev->parent; 44 45 return dev; 46 } 47 48 pci_dev_t dm_pci_get_bdf(struct udevice *dev) 49 { 50 struct pci_child_platdata *pplat = dev_get_parent_platdata(dev); 51 struct udevice *bus = dev->parent; 52 53 return PCI_ADD_BUS(bus->seq, pplat->devfn); 54 } 55 56 /** 57 * pci_get_bus_max() - returns the bus number of the last active bus 58 * 59 * @return last bus number, or -1 if no active buses 60 */ 61 static int pci_get_bus_max(void) 62 { 63 struct udevice *bus; 64 struct uclass *uc; 65 int ret = -1; 66 67 ret = uclass_get(UCLASS_PCI, &uc); 68 uclass_foreach_dev(bus, uc) { 69 if (bus->seq > ret) 70 ret = bus->seq; 71 } 72 73 debug("%s: ret=%d\n", __func__, ret); 74 75 return ret; 76 } 77 78 int pci_last_busno(void) 79 { 80 return pci_get_bus_max(); 81 } 82 83 int pci_get_ff(enum pci_size_t size) 84 { 85 switch (size) { 86 case PCI_SIZE_8: 87 return 0xff; 88 case PCI_SIZE_16: 89 return 0xffff; 90 default: 91 return 0xffffffff; 92 } 93 } 94 95 int pci_bus_find_devfn(struct udevice *bus, pci_dev_t find_devfn, 96 struct udevice **devp) 97 { 98 struct udevice *dev; 99 100 for (device_find_first_child(bus, &dev); 101 dev; 102 device_find_next_child(&dev)) { 103 struct pci_child_platdata *pplat; 104 105 pplat = dev_get_parent_platdata(dev); 106 if (pplat && pplat->devfn == find_devfn) { 107 *devp = dev; 108 return 0; 109 } 110 } 111 112 return -ENODEV; 113 } 114 115 int dm_pci_bus_find_bdf(pci_dev_t bdf, struct udevice **devp) 116 { 117 struct udevice *bus; 118 int ret; 119 120 ret = pci_get_bus(PCI_BUS(bdf), &bus); 121 if (ret) 122 return ret; 123 return pci_bus_find_devfn(bus, PCI_MASK_BUS(bdf), devp); 124 } 125 126 static int pci_device_matches_ids(struct udevice *dev, 127 struct pci_device_id *ids) 128 { 129 struct pci_child_platdata *pplat; 130 int i; 131 132 pplat = dev_get_parent_platdata(dev); 133 if (!pplat) 134 return -EINVAL; 135 for (i = 0; ids[i].vendor != 0; i++) { 136 if (pplat->vendor == ids[i].vendor && 137 pplat->device == ids[i].device) 138 return i; 139 } 140 141 return -EINVAL; 142 } 143 144 int pci_bus_find_devices(struct udevice *bus, struct pci_device_id *ids, 145 int *indexp, struct udevice **devp) 146 { 147 struct udevice *dev; 148 149 /* Scan all devices on this bus */ 150 for (device_find_first_child(bus, &dev); 151 dev; 152 device_find_next_child(&dev)) { 153 if (pci_device_matches_ids(dev, ids) >= 0) { 154 if ((*indexp)-- <= 0) { 155 *devp = dev; 156 return 0; 157 } 158 } 159 } 160 161 return -ENODEV; 162 } 163 164 int pci_find_device_id(struct pci_device_id *ids, int index, 165 struct udevice **devp) 166 { 167 struct udevice *bus; 168 169 /* Scan all known buses */ 170 for (uclass_first_device(UCLASS_PCI, &bus); 171 bus; 172 uclass_next_device(&bus)) { 173 if (!pci_bus_find_devices(bus, ids, &index, devp)) 174 return 0; 175 } 176 *devp = NULL; 177 178 return -ENODEV; 179 } 180 181 static int dm_pci_bus_find_device(struct udevice *bus, unsigned int vendor, 182 unsigned int device, int *indexp, 183 struct udevice **devp) 184 { 185 struct pci_child_platdata *pplat; 186 struct udevice *dev; 187 188 for (device_find_first_child(bus, &dev); 189 dev; 190 device_find_next_child(&dev)) { 191 pplat = dev_get_parent_platdata(dev); 192 if (pplat->vendor == vendor && pplat->device == device) { 193 if (!(*indexp)--) { 194 *devp = dev; 195 return 0; 196 } 197 } 198 } 199 200 return -ENODEV; 201 } 202 203 int dm_pci_find_device(unsigned int vendor, unsigned int device, int index, 204 struct udevice **devp) 205 { 206 struct udevice *bus; 207 208 /* Scan all known buses */ 209 for (uclass_first_device(UCLASS_PCI, &bus); 210 bus; 211 uclass_next_device(&bus)) { 212 if (!dm_pci_bus_find_device(bus, vendor, device, &index, devp)) 213 return device_probe(*devp); 214 } 215 *devp = NULL; 216 217 return -ENODEV; 218 } 219 220 int dm_pci_find_class(uint find_class, int index, struct udevice **devp) 221 { 222 struct udevice *dev; 223 224 /* Scan all known buses */ 225 for (pci_find_first_device(&dev); 226 dev; 227 pci_find_next_device(&dev)) { 228 struct pci_child_platdata *pplat = dev_get_parent_platdata(dev); 229 230 if (pplat->class == find_class && !index--) { 231 *devp = dev; 232 return device_probe(*devp); 233 } 234 } 235 *devp = NULL; 236 237 return -ENODEV; 238 } 239 240 int pci_bus_write_config(struct udevice *bus, pci_dev_t bdf, int offset, 241 unsigned long value, enum pci_size_t size) 242 { 243 struct dm_pci_ops *ops; 244 245 ops = pci_get_ops(bus); 246 if (!ops->write_config) 247 return -ENOSYS; 248 return ops->write_config(bus, bdf, offset, value, size); 249 } 250 251 int pci_bus_clrset_config32(struct udevice *bus, pci_dev_t bdf, int offset, 252 u32 clr, u32 set) 253 { 254 ulong val; 255 int ret; 256 257 ret = pci_bus_read_config(bus, bdf, offset, &val, PCI_SIZE_32); 258 if (ret) 259 return ret; 260 val &= ~clr; 261 val |= set; 262 263 return pci_bus_write_config(bus, bdf, offset, val, PCI_SIZE_32); 264 } 265 266 int pci_write_config(pci_dev_t bdf, int offset, unsigned long value, 267 enum pci_size_t size) 268 { 269 struct udevice *bus; 270 int ret; 271 272 ret = pci_get_bus(PCI_BUS(bdf), &bus); 273 if (ret) 274 return ret; 275 276 return pci_bus_write_config(bus, bdf, offset, value, size); 277 } 278 279 int dm_pci_write_config(struct udevice *dev, int offset, unsigned long value, 280 enum pci_size_t size) 281 { 282 struct udevice *bus; 283 284 for (bus = dev; device_is_on_pci_bus(bus);) 285 bus = bus->parent; 286 return pci_bus_write_config(bus, dm_pci_get_bdf(dev), offset, value, 287 size); 288 } 289 290 int pci_write_config32(pci_dev_t bdf, int offset, u32 value) 291 { 292 return pci_write_config(bdf, offset, value, PCI_SIZE_32); 293 } 294 295 int pci_write_config16(pci_dev_t bdf, int offset, u16 value) 296 { 297 return pci_write_config(bdf, offset, value, PCI_SIZE_16); 298 } 299 300 int pci_write_config8(pci_dev_t bdf, int offset, u8 value) 301 { 302 return pci_write_config(bdf, offset, value, PCI_SIZE_8); 303 } 304 305 int dm_pci_write_config8(struct udevice *dev, int offset, u8 value) 306 { 307 return dm_pci_write_config(dev, offset, value, PCI_SIZE_8); 308 } 309 310 int dm_pci_write_config16(struct udevice *dev, int offset, u16 value) 311 { 312 return dm_pci_write_config(dev, offset, value, PCI_SIZE_16); 313 } 314 315 int dm_pci_write_config32(struct udevice *dev, int offset, u32 value) 316 { 317 return dm_pci_write_config(dev, offset, value, PCI_SIZE_32); 318 } 319 320 int pci_bus_read_config(struct udevice *bus, pci_dev_t bdf, int offset, 321 unsigned long *valuep, enum pci_size_t size) 322 { 323 struct dm_pci_ops *ops; 324 325 ops = pci_get_ops(bus); 326 if (!ops->read_config) 327 return -ENOSYS; 328 return ops->read_config(bus, bdf, offset, valuep, size); 329 } 330 331 int pci_read_config(pci_dev_t bdf, int offset, unsigned long *valuep, 332 enum pci_size_t size) 333 { 334 struct udevice *bus; 335 int ret; 336 337 ret = pci_get_bus(PCI_BUS(bdf), &bus); 338 if (ret) 339 return ret; 340 341 return pci_bus_read_config(bus, bdf, offset, valuep, size); 342 } 343 344 int dm_pci_read_config(struct udevice *dev, int offset, unsigned long *valuep, 345 enum pci_size_t size) 346 { 347 struct udevice *bus; 348 349 for (bus = dev; device_is_on_pci_bus(bus);) 350 bus = bus->parent; 351 return pci_bus_read_config(bus, dm_pci_get_bdf(dev), offset, valuep, 352 size); 353 } 354 355 int pci_read_config32(pci_dev_t bdf, int offset, u32 *valuep) 356 { 357 unsigned long value; 358 int ret; 359 360 ret = pci_read_config(bdf, offset, &value, PCI_SIZE_32); 361 if (ret) 362 return ret; 363 *valuep = value; 364 365 return 0; 366 } 367 368 int pci_read_config16(pci_dev_t bdf, int offset, u16 *valuep) 369 { 370 unsigned long value; 371 int ret; 372 373 ret = pci_read_config(bdf, offset, &value, PCI_SIZE_16); 374 if (ret) 375 return ret; 376 *valuep = value; 377 378 return 0; 379 } 380 381 int pci_read_config8(pci_dev_t bdf, int offset, u8 *valuep) 382 { 383 unsigned long value; 384 int ret; 385 386 ret = pci_read_config(bdf, offset, &value, PCI_SIZE_8); 387 if (ret) 388 return ret; 389 *valuep = value; 390 391 return 0; 392 } 393 394 int dm_pci_read_config8(struct udevice *dev, int offset, u8 *valuep) 395 { 396 unsigned long value; 397 int ret; 398 399 ret = dm_pci_read_config(dev, offset, &value, PCI_SIZE_8); 400 if (ret) 401 return ret; 402 *valuep = value; 403 404 return 0; 405 } 406 407 int dm_pci_read_config16(struct udevice *dev, int offset, u16 *valuep) 408 { 409 unsigned long value; 410 int ret; 411 412 ret = dm_pci_read_config(dev, offset, &value, PCI_SIZE_16); 413 if (ret) 414 return ret; 415 *valuep = value; 416 417 return 0; 418 } 419 420 int dm_pci_read_config32(struct udevice *dev, int offset, u32 *valuep) 421 { 422 unsigned long value; 423 int ret; 424 425 ret = dm_pci_read_config(dev, offset, &value, PCI_SIZE_32); 426 if (ret) 427 return ret; 428 *valuep = value; 429 430 return 0; 431 } 432 433 int dm_pci_clrset_config8(struct udevice *dev, int offset, u32 clr, u32 set) 434 { 435 u8 val; 436 int ret; 437 438 ret = dm_pci_read_config8(dev, offset, &val); 439 if (ret) 440 return ret; 441 val &= ~clr; 442 val |= set; 443 444 return dm_pci_write_config8(dev, offset, val); 445 } 446 447 int dm_pci_clrset_config16(struct udevice *dev, int offset, u32 clr, u32 set) 448 { 449 u16 val; 450 int ret; 451 452 ret = dm_pci_read_config16(dev, offset, &val); 453 if (ret) 454 return ret; 455 val &= ~clr; 456 val |= set; 457 458 return dm_pci_write_config16(dev, offset, val); 459 } 460 461 int dm_pci_clrset_config32(struct udevice *dev, int offset, u32 clr, u32 set) 462 { 463 u32 val; 464 int ret; 465 466 ret = dm_pci_read_config32(dev, offset, &val); 467 if (ret) 468 return ret; 469 val &= ~clr; 470 val |= set; 471 472 return dm_pci_write_config32(dev, offset, val); 473 } 474 475 static void set_vga_bridge_bits(struct udevice *dev) 476 { 477 struct udevice *parent = dev->parent; 478 u16 bc; 479 480 while (parent->seq != 0) { 481 dm_pci_read_config16(parent, PCI_BRIDGE_CONTROL, &bc); 482 bc |= PCI_BRIDGE_CTL_VGA; 483 dm_pci_write_config16(parent, PCI_BRIDGE_CONTROL, bc); 484 parent = parent->parent; 485 } 486 } 487 488 int pci_auto_config_devices(struct udevice *bus) 489 { 490 struct pci_controller *hose = bus->uclass_priv; 491 struct pci_child_platdata *pplat; 492 unsigned int sub_bus; 493 struct udevice *dev; 494 int ret; 495 496 sub_bus = bus->seq; 497 debug("%s: start\n", __func__); 498 pciauto_config_init(hose); 499 for (ret = device_find_first_child(bus, &dev); 500 !ret && dev; 501 ret = device_find_next_child(&dev)) { 502 unsigned int max_bus; 503 int ret; 504 505 debug("%s: device %s\n", __func__, dev->name); 506 ret = dm_pciauto_config_device(dev); 507 if (ret < 0) 508 return ret; 509 max_bus = ret; 510 sub_bus = max(sub_bus, max_bus); 511 512 pplat = dev_get_parent_platdata(dev); 513 if (pplat->class == (PCI_CLASS_DISPLAY_VGA << 8)) 514 set_vga_bridge_bits(dev); 515 } 516 debug("%s: done\n", __func__); 517 518 return sub_bus; 519 } 520 521 int dm_pci_hose_probe_bus(struct udevice *bus) 522 { 523 int sub_bus; 524 int ret; 525 526 debug("%s\n", __func__); 527 528 sub_bus = pci_get_bus_max() + 1; 529 debug("%s: bus = %d/%s\n", __func__, sub_bus, bus->name); 530 dm_pciauto_prescan_setup_bridge(bus, sub_bus); 531 532 ret = device_probe(bus); 533 if (ret) { 534 debug("%s: Cannot probe bus %s: %d\n", __func__, bus->name, 535 ret); 536 return ret; 537 } 538 if (sub_bus != bus->seq) { 539 printf("%s: Internal error, bus '%s' got seq %d, expected %d\n", 540 __func__, bus->name, bus->seq, sub_bus); 541 return -EPIPE; 542 } 543 sub_bus = pci_get_bus_max(); 544 dm_pciauto_postscan_setup_bridge(bus, sub_bus); 545 546 return sub_bus; 547 } 548 549 /** 550 * pci_match_one_device - Tell if a PCI device structure has a matching 551 * PCI device id structure 552 * @id: single PCI device id structure to match 553 * @find: the PCI device id structure to match against 554 * 555 * Returns true if the finding pci_device_id structure matched or false if 556 * there is no match. 557 */ 558 static bool pci_match_one_id(const struct pci_device_id *id, 559 const struct pci_device_id *find) 560 { 561 if ((id->vendor == PCI_ANY_ID || id->vendor == find->vendor) && 562 (id->device == PCI_ANY_ID || id->device == find->device) && 563 (id->subvendor == PCI_ANY_ID || id->subvendor == find->subvendor) && 564 (id->subdevice == PCI_ANY_ID || id->subdevice == find->subdevice) && 565 !((id->class ^ find->class) & id->class_mask)) 566 return true; 567 568 return false; 569 } 570 571 /** 572 * pci_find_and_bind_driver() - Find and bind the right PCI driver 573 * 574 * This only looks at certain fields in the descriptor. 575 * 576 * @parent: Parent bus 577 * @find_id: Specification of the driver to find 578 * @bdf: Bus/device/function addreess - see PCI_BDF() 579 * @devp: Returns a pointer to the device created 580 * @return 0 if OK, -EPERM if the device is not needed before relocation and 581 * therefore was not created, other -ve value on error 582 */ 583 static int pci_find_and_bind_driver(struct udevice *parent, 584 struct pci_device_id *find_id, 585 pci_dev_t bdf, struct udevice **devp) 586 { 587 struct pci_driver_entry *start, *entry; 588 const char *drv; 589 int n_ents; 590 int ret; 591 char name[30], *str; 592 bool bridge; 593 594 *devp = NULL; 595 596 debug("%s: Searching for driver: vendor=%x, device=%x\n", __func__, 597 find_id->vendor, find_id->device); 598 start = ll_entry_start(struct pci_driver_entry, pci_driver_entry); 599 n_ents = ll_entry_count(struct pci_driver_entry, pci_driver_entry); 600 for (entry = start; entry != start + n_ents; entry++) { 601 const struct pci_device_id *id; 602 struct udevice *dev; 603 const struct driver *drv; 604 605 for (id = entry->match; 606 id->vendor || id->subvendor || id->class_mask; 607 id++) { 608 if (!pci_match_one_id(id, find_id)) 609 continue; 610 611 drv = entry->driver; 612 613 /* 614 * In the pre-relocation phase, we only bind devices 615 * whose driver has the DM_FLAG_PRE_RELOC set, to save 616 * precious memory space as on some platforms as that 617 * space is pretty limited (ie: using Cache As RAM). 618 */ 619 if (!(gd->flags & GD_FLG_RELOC) && 620 !(drv->flags & DM_FLAG_PRE_RELOC)) 621 return -EPERM; 622 623 /* 624 * We could pass the descriptor to the driver as 625 * platdata (instead of NULL) and allow its bind() 626 * method to return -ENOENT if it doesn't support this 627 * device. That way we could continue the search to 628 * find another driver. For now this doesn't seem 629 * necesssary, so just bind the first match. 630 */ 631 ret = device_bind(parent, drv, drv->name, NULL, -1, 632 &dev); 633 if (ret) 634 goto error; 635 debug("%s: Match found: %s\n", __func__, drv->name); 636 dev->driver_data = find_id->driver_data; 637 *devp = dev; 638 return 0; 639 } 640 } 641 642 bridge = (find_id->class >> 8) == PCI_CLASS_BRIDGE_PCI; 643 /* 644 * In the pre-relocation phase, we only bind bridge devices to save 645 * precious memory space as on some platforms as that space is pretty 646 * limited (ie: using Cache As RAM). 647 */ 648 if (!(gd->flags & GD_FLG_RELOC) && !bridge) 649 return -EPERM; 650 651 /* Bind a generic driver so that the device can be used */ 652 sprintf(name, "pci_%x:%x.%x", parent->seq, PCI_DEV(bdf), 653 PCI_FUNC(bdf)); 654 str = strdup(name); 655 if (!str) 656 return -ENOMEM; 657 drv = bridge ? "pci_bridge_drv" : "pci_generic_drv"; 658 659 ret = device_bind_driver(parent, drv, str, devp); 660 if (ret) { 661 debug("%s: Failed to bind generic driver: %d\n", __func__, ret); 662 free(str); 663 return ret; 664 } 665 debug("%s: No match found: bound generic driver instead\n", __func__); 666 667 return 0; 668 669 error: 670 debug("%s: No match found: error %d\n", __func__, ret); 671 return ret; 672 } 673 674 int pci_bind_bus_devices(struct udevice *bus) 675 { 676 ulong vendor, device; 677 ulong header_type; 678 pci_dev_t bdf, end; 679 bool found_multi; 680 int ret; 681 682 found_multi = false; 683 end = PCI_BDF(bus->seq, PCI_MAX_PCI_DEVICES - 1, 684 PCI_MAX_PCI_FUNCTIONS - 1); 685 for (bdf = PCI_BDF(bus->seq, 0, 0); bdf <= end; 686 bdf += PCI_BDF(0, 0, 1)) { 687 struct pci_child_platdata *pplat; 688 struct udevice *dev; 689 ulong class; 690 691 if (PCI_FUNC(bdf) && !found_multi) 692 continue; 693 /* Check only the first access, we don't expect problems */ 694 ret = pci_bus_read_config(bus, bdf, PCI_HEADER_TYPE, 695 &header_type, PCI_SIZE_8); 696 if (ret) 697 goto error; 698 pci_bus_read_config(bus, bdf, PCI_VENDOR_ID, &vendor, 699 PCI_SIZE_16); 700 if (vendor == 0xffff || vendor == 0x0000) 701 continue; 702 703 if (!PCI_FUNC(bdf)) 704 found_multi = header_type & 0x80; 705 706 debug("%s: bus %d/%s: found device %x, function %d\n", __func__, 707 bus->seq, bus->name, PCI_DEV(bdf), PCI_FUNC(bdf)); 708 pci_bus_read_config(bus, bdf, PCI_DEVICE_ID, &device, 709 PCI_SIZE_16); 710 pci_bus_read_config(bus, bdf, PCI_CLASS_REVISION, &class, 711 PCI_SIZE_32); 712 class >>= 8; 713 714 /* Find this device in the device tree */ 715 ret = pci_bus_find_devfn(bus, PCI_MASK_BUS(bdf), &dev); 716 717 /* If nothing in the device tree, bind a device */ 718 if (ret == -ENODEV) { 719 struct pci_device_id find_id; 720 ulong val; 721 722 memset(&find_id, '\0', sizeof(find_id)); 723 find_id.vendor = vendor; 724 find_id.device = device; 725 find_id.class = class; 726 if ((header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL) { 727 pci_bus_read_config(bus, bdf, 728 PCI_SUBSYSTEM_VENDOR_ID, 729 &val, PCI_SIZE_32); 730 find_id.subvendor = val & 0xffff; 731 find_id.subdevice = val >> 16; 732 } 733 ret = pci_find_and_bind_driver(bus, &find_id, bdf, 734 &dev); 735 } 736 if (ret == -EPERM) 737 continue; 738 else if (ret) 739 return ret; 740 741 /* Update the platform data */ 742 pplat = dev_get_parent_platdata(dev); 743 pplat->devfn = PCI_MASK_BUS(bdf); 744 pplat->vendor = vendor; 745 pplat->device = device; 746 pplat->class = class; 747 } 748 749 return 0; 750 error: 751 printf("Cannot read bus configuration: %d\n", ret); 752 753 return ret; 754 } 755 756 static int decode_regions(struct pci_controller *hose, ofnode parent_node, 757 ofnode node) 758 { 759 int pci_addr_cells, addr_cells, size_cells; 760 phys_addr_t base = 0, size; 761 int cells_per_record; 762 const u32 *prop; 763 int len; 764 int i; 765 766 prop = ofnode_get_property(node, "ranges", &len); 767 if (!prop) 768 return -EINVAL; 769 pci_addr_cells = ofnode_read_simple_addr_cells(node); 770 addr_cells = ofnode_read_simple_addr_cells(parent_node); 771 size_cells = ofnode_read_simple_size_cells(node); 772 773 /* PCI addresses are always 3-cells */ 774 len /= sizeof(u32); 775 cells_per_record = pci_addr_cells + addr_cells + size_cells; 776 hose->region_count = 0; 777 debug("%s: len=%d, cells_per_record=%d\n", __func__, len, 778 cells_per_record); 779 for (i = 0; i < MAX_PCI_REGIONS; i++, len -= cells_per_record) { 780 u64 pci_addr, addr, size; 781 int space_code; 782 u32 flags; 783 int type; 784 int pos; 785 786 if (len < cells_per_record) 787 break; 788 flags = fdt32_to_cpu(prop[0]); 789 space_code = (flags >> 24) & 3; 790 pci_addr = fdtdec_get_number(prop + 1, 2); 791 prop += pci_addr_cells; 792 addr = fdtdec_get_number(prop, addr_cells); 793 prop += addr_cells; 794 size = fdtdec_get_number(prop, size_cells); 795 prop += size_cells; 796 debug("%s: region %d, pci_addr=%" PRIx64 ", addr=%" PRIx64 797 ", size=%" PRIx64 ", space_code=%d\n", __func__, 798 hose->region_count, pci_addr, addr, size, space_code); 799 if (space_code & 2) { 800 type = flags & (1U << 30) ? PCI_REGION_PREFETCH : 801 PCI_REGION_MEM; 802 } else if (space_code & 1) { 803 type = PCI_REGION_IO; 804 } else { 805 continue; 806 } 807 pos = -1; 808 for (i = 0; i < hose->region_count; i++) { 809 if (hose->regions[i].flags == type) 810 pos = i; 811 } 812 if (pos == -1) 813 pos = hose->region_count++; 814 debug(" - type=%d, pos=%d\n", type, pos); 815 pci_set_region(hose->regions + pos, pci_addr, addr, size, type); 816 } 817 818 /* Add a region for our local memory */ 819 size = gd->ram_size; 820 #ifdef CONFIG_SYS_SDRAM_BASE 821 base = CONFIG_SYS_SDRAM_BASE; 822 #endif 823 if (gd->pci_ram_top && gd->pci_ram_top < base + size) 824 size = gd->pci_ram_top - base; 825 pci_set_region(hose->regions + hose->region_count++, base, base, 826 size, PCI_REGION_MEM | PCI_REGION_SYS_MEMORY); 827 828 return 0; 829 } 830 831 static int pci_uclass_pre_probe(struct udevice *bus) 832 { 833 struct pci_controller *hose; 834 int ret; 835 836 debug("%s, bus=%d/%s, parent=%s\n", __func__, bus->seq, bus->name, 837 bus->parent->name); 838 hose = bus->uclass_priv; 839 840 /* For bridges, use the top-level PCI controller */ 841 if (!device_is_on_pci_bus(bus)) { 842 hose->ctlr = bus; 843 ret = decode_regions(hose, dev_ofnode(bus->parent), 844 dev_ofnode(bus)); 845 if (ret) { 846 debug("%s: Cannot decode regions\n", __func__); 847 return ret; 848 } 849 } else { 850 struct pci_controller *parent_hose; 851 852 parent_hose = dev_get_uclass_priv(bus->parent); 853 hose->ctlr = parent_hose->bus; 854 } 855 hose->bus = bus; 856 hose->first_busno = bus->seq; 857 hose->last_busno = bus->seq; 858 859 return 0; 860 } 861 862 static int pci_uclass_post_probe(struct udevice *bus) 863 { 864 int ret; 865 866 debug("%s: probing bus %d\n", __func__, bus->seq); 867 ret = pci_bind_bus_devices(bus); 868 if (ret) 869 return ret; 870 871 #ifdef CONFIG_PCI_PNP 872 ret = pci_auto_config_devices(bus); 873 if (ret < 0) 874 return ret; 875 #endif 876 877 #if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP) 878 /* 879 * Per Intel FSP specification, we should call FSP notify API to 880 * inform FSP that PCI enumeration has been done so that FSP will 881 * do any necessary initialization as required by the chipset's 882 * BIOS Writer's Guide (BWG). 883 * 884 * Unfortunately we have to put this call here as with driver model, 885 * the enumeration is all done on a lazy basis as needed, so until 886 * something is touched on PCI it won't happen. 887 * 888 * Note we only call this 1) after U-Boot is relocated, and 2) 889 * root bus has finished probing. 890 */ 891 if ((gd->flags & GD_FLG_RELOC) && (bus->seq == 0)) { 892 ret = fsp_init_phase_pci(); 893 if (ret) 894 return ret; 895 } 896 #endif 897 898 return 0; 899 } 900 901 static int pci_uclass_child_post_bind(struct udevice *dev) 902 { 903 struct pci_child_platdata *pplat; 904 struct fdt_pci_addr addr; 905 int ret; 906 907 if (!dev_of_valid(dev)) 908 return 0; 909 910 /* 911 * We could read vendor, device, class if available. But for now we 912 * just check the address. 913 */ 914 pplat = dev_get_parent_platdata(dev); 915 ret = ofnode_read_pci_addr(dev_ofnode(dev), FDT_PCI_SPACE_CONFIG, "reg", 916 &addr); 917 918 if (ret) { 919 if (ret != -ENOENT) 920 return -EINVAL; 921 } else { 922 /* extract the devfn from fdt_pci_addr */ 923 pplat->devfn = addr.phys_hi & 0xff00; 924 } 925 926 return 0; 927 } 928 929 static int pci_bridge_read_config(struct udevice *bus, pci_dev_t bdf, 930 uint offset, ulong *valuep, 931 enum pci_size_t size) 932 { 933 struct pci_controller *hose = bus->uclass_priv; 934 935 return pci_bus_read_config(hose->ctlr, bdf, offset, valuep, size); 936 } 937 938 static int pci_bridge_write_config(struct udevice *bus, pci_dev_t bdf, 939 uint offset, ulong value, 940 enum pci_size_t size) 941 { 942 struct pci_controller *hose = bus->uclass_priv; 943 944 return pci_bus_write_config(hose->ctlr, bdf, offset, value, size); 945 } 946 947 static int skip_to_next_device(struct udevice *bus, struct udevice **devp) 948 { 949 struct udevice *dev; 950 951 /* 952 * Scan through all the PCI controllers. On x86 there will only be one 953 * but that is not necessarily true on other hardware. 954 */ 955 do { 956 device_find_first_child(bus, &dev); 957 if (dev) { 958 *devp = dev; 959 return 0; 960 } 961 uclass_next_device(&bus); 962 } while (bus); 963 964 return 0; 965 } 966 967 int pci_find_next_device(struct udevice **devp) 968 { 969 struct udevice *child = *devp; 970 struct udevice *bus = child->parent; 971 972 /* First try all the siblings */ 973 *devp = NULL; 974 while (child) { 975 device_find_next_child(&child); 976 if (child) { 977 *devp = child; 978 return 0; 979 } 980 } 981 982 /* We ran out of siblings. Try the next bus */ 983 uclass_next_device(&bus); 984 985 return bus ? skip_to_next_device(bus, devp) : 0; 986 } 987 988 int pci_find_first_device(struct udevice **devp) 989 { 990 struct udevice *bus; 991 992 *devp = NULL; 993 uclass_first_device(UCLASS_PCI, &bus); 994 995 return skip_to_next_device(bus, devp); 996 } 997 998 ulong pci_conv_32_to_size(ulong value, uint offset, enum pci_size_t size) 999 { 1000 switch (size) { 1001 case PCI_SIZE_8: 1002 return (value >> ((offset & 3) * 8)) & 0xff; 1003 case PCI_SIZE_16: 1004 return (value >> ((offset & 2) * 8)) & 0xffff; 1005 default: 1006 return value; 1007 } 1008 } 1009 1010 ulong pci_conv_size_to_32(ulong old, ulong value, uint offset, 1011 enum pci_size_t size) 1012 { 1013 uint off_mask; 1014 uint val_mask, shift; 1015 ulong ldata, mask; 1016 1017 switch (size) { 1018 case PCI_SIZE_8: 1019 off_mask = 3; 1020 val_mask = 0xff; 1021 break; 1022 case PCI_SIZE_16: 1023 off_mask = 2; 1024 val_mask = 0xffff; 1025 break; 1026 default: 1027 return value; 1028 } 1029 shift = (offset & off_mask) * 8; 1030 ldata = (value & val_mask) << shift; 1031 mask = val_mask << shift; 1032 value = (old & ~mask) | ldata; 1033 1034 return value; 1035 } 1036 1037 int pci_get_regions(struct udevice *dev, struct pci_region **iop, 1038 struct pci_region **memp, struct pci_region **prefp) 1039 { 1040 struct udevice *bus = pci_get_controller(dev); 1041 struct pci_controller *hose = dev_get_uclass_priv(bus); 1042 int i; 1043 1044 *iop = NULL; 1045 *memp = NULL; 1046 *prefp = NULL; 1047 for (i = 0; i < hose->region_count; i++) { 1048 switch (hose->regions[i].flags) { 1049 case PCI_REGION_IO: 1050 if (!*iop || (*iop)->size < hose->regions[i].size) 1051 *iop = hose->regions + i; 1052 break; 1053 case PCI_REGION_MEM: 1054 if (!*memp || (*memp)->size < hose->regions[i].size) 1055 *memp = hose->regions + i; 1056 break; 1057 case (PCI_REGION_MEM | PCI_REGION_PREFETCH): 1058 if (!*prefp || (*prefp)->size < hose->regions[i].size) 1059 *prefp = hose->regions + i; 1060 break; 1061 } 1062 } 1063 1064 return (*iop != NULL) + (*memp != NULL) + (*prefp != NULL); 1065 } 1066 1067 u32 dm_pci_read_bar32(struct udevice *dev, int barnum) 1068 { 1069 u32 addr; 1070 int bar; 1071 1072 bar = PCI_BASE_ADDRESS_0 + barnum * 4; 1073 dm_pci_read_config32(dev, bar, &addr); 1074 if (addr & PCI_BASE_ADDRESS_SPACE_IO) 1075 return addr & PCI_BASE_ADDRESS_IO_MASK; 1076 else 1077 return addr & PCI_BASE_ADDRESS_MEM_MASK; 1078 } 1079 1080 void dm_pci_write_bar32(struct udevice *dev, int barnum, u32 addr) 1081 { 1082 int bar; 1083 1084 bar = PCI_BASE_ADDRESS_0 + barnum * 4; 1085 dm_pci_write_config32(dev, bar, addr); 1086 } 1087 1088 static int _dm_pci_bus_to_phys(struct udevice *ctlr, 1089 pci_addr_t bus_addr, unsigned long flags, 1090 unsigned long skip_mask, phys_addr_t *pa) 1091 { 1092 struct pci_controller *hose = dev_get_uclass_priv(ctlr); 1093 struct pci_region *res; 1094 int i; 1095 1096 for (i = 0; i < hose->region_count; i++) { 1097 res = &hose->regions[i]; 1098 1099 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0) 1100 continue; 1101 1102 if (res->flags & skip_mask) 1103 continue; 1104 1105 if (bus_addr >= res->bus_start && 1106 (bus_addr - res->bus_start) < res->size) { 1107 *pa = (bus_addr - res->bus_start + res->phys_start); 1108 return 0; 1109 } 1110 } 1111 1112 return 1; 1113 } 1114 1115 phys_addr_t dm_pci_bus_to_phys(struct udevice *dev, pci_addr_t bus_addr, 1116 unsigned long flags) 1117 { 1118 phys_addr_t phys_addr = 0; 1119 struct udevice *ctlr; 1120 int ret; 1121 1122 /* The root controller has the region information */ 1123 ctlr = pci_get_controller(dev); 1124 1125 /* 1126 * if PCI_REGION_MEM is set we do a two pass search with preference 1127 * on matches that don't have PCI_REGION_SYS_MEMORY set 1128 */ 1129 if ((flags & PCI_REGION_TYPE) == PCI_REGION_MEM) { 1130 ret = _dm_pci_bus_to_phys(ctlr, bus_addr, 1131 flags, PCI_REGION_SYS_MEMORY, 1132 &phys_addr); 1133 if (!ret) 1134 return phys_addr; 1135 } 1136 1137 ret = _dm_pci_bus_to_phys(ctlr, bus_addr, flags, 0, &phys_addr); 1138 1139 if (ret) 1140 puts("pci_hose_bus_to_phys: invalid physical address\n"); 1141 1142 return phys_addr; 1143 } 1144 1145 int _dm_pci_phys_to_bus(struct udevice *dev, phys_addr_t phys_addr, 1146 unsigned long flags, unsigned long skip_mask, 1147 pci_addr_t *ba) 1148 { 1149 struct pci_region *res; 1150 struct udevice *ctlr; 1151 pci_addr_t bus_addr; 1152 int i; 1153 struct pci_controller *hose; 1154 1155 /* The root controller has the region information */ 1156 ctlr = pci_get_controller(dev); 1157 hose = dev_get_uclass_priv(ctlr); 1158 1159 for (i = 0; i < hose->region_count; i++) { 1160 res = &hose->regions[i]; 1161 1162 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0) 1163 continue; 1164 1165 if (res->flags & skip_mask) 1166 continue; 1167 1168 bus_addr = phys_addr - res->phys_start + res->bus_start; 1169 1170 if (bus_addr >= res->bus_start && 1171 (bus_addr - res->bus_start) < res->size) { 1172 *ba = bus_addr; 1173 return 0; 1174 } 1175 } 1176 1177 return 1; 1178 } 1179 1180 pci_addr_t dm_pci_phys_to_bus(struct udevice *dev, phys_addr_t phys_addr, 1181 unsigned long flags) 1182 { 1183 pci_addr_t bus_addr = 0; 1184 int ret; 1185 1186 /* 1187 * if PCI_REGION_MEM is set we do a two pass search with preference 1188 * on matches that don't have PCI_REGION_SYS_MEMORY set 1189 */ 1190 if ((flags & PCI_REGION_TYPE) == PCI_REGION_MEM) { 1191 ret = _dm_pci_phys_to_bus(dev, phys_addr, flags, 1192 PCI_REGION_SYS_MEMORY, &bus_addr); 1193 if (!ret) 1194 return bus_addr; 1195 } 1196 1197 ret = _dm_pci_phys_to_bus(dev, phys_addr, flags, 0, &bus_addr); 1198 1199 if (ret) 1200 puts("pci_hose_phys_to_bus: invalid physical address\n"); 1201 1202 return bus_addr; 1203 } 1204 1205 void *dm_pci_map_bar(struct udevice *dev, int bar, int flags) 1206 { 1207 pci_addr_t pci_bus_addr; 1208 u32 bar_response; 1209 1210 /* read BAR address */ 1211 dm_pci_read_config32(dev, bar, &bar_response); 1212 pci_bus_addr = (pci_addr_t)(bar_response & ~0xf); 1213 1214 /* 1215 * Pass "0" as the length argument to pci_bus_to_virt. The arg 1216 * isn't actualy used on any platform because u-boot assumes a static 1217 * linear mapping. In the future, this could read the BAR size 1218 * and pass that as the size if needed. 1219 */ 1220 return dm_pci_bus_to_virt(dev, pci_bus_addr, flags, 0, MAP_NOCACHE); 1221 } 1222 1223 UCLASS_DRIVER(pci) = { 1224 .id = UCLASS_PCI, 1225 .name = "pci", 1226 .flags = DM_UC_FLAG_SEQ_ALIAS, 1227 .post_bind = dm_scan_fdt_dev, 1228 .pre_probe = pci_uclass_pre_probe, 1229 .post_probe = pci_uclass_post_probe, 1230 .child_post_bind = pci_uclass_child_post_bind, 1231 .per_device_auto_alloc_size = sizeof(struct pci_controller), 1232 .per_child_platdata_auto_alloc_size = 1233 sizeof(struct pci_child_platdata), 1234 }; 1235 1236 static const struct dm_pci_ops pci_bridge_ops = { 1237 .read_config = pci_bridge_read_config, 1238 .write_config = pci_bridge_write_config, 1239 }; 1240 1241 static const struct udevice_id pci_bridge_ids[] = { 1242 { .compatible = "pci-bridge" }, 1243 { } 1244 }; 1245 1246 U_BOOT_DRIVER(pci_bridge_drv) = { 1247 .name = "pci_bridge_drv", 1248 .id = UCLASS_PCI, 1249 .of_match = pci_bridge_ids, 1250 .ops = &pci_bridge_ops, 1251 }; 1252 1253 UCLASS_DRIVER(pci_generic) = { 1254 .id = UCLASS_PCI_GENERIC, 1255 .name = "pci_generic", 1256 }; 1257 1258 static const struct udevice_id pci_generic_ids[] = { 1259 { .compatible = "pci-generic" }, 1260 { } 1261 }; 1262 1263 U_BOOT_DRIVER(pci_generic_drv) = { 1264 .name = "pci_generic_drv", 1265 .id = UCLASS_PCI_GENERIC, 1266 .of_match = pci_generic_ids, 1267 }; 1268 1269 void pci_init(void) 1270 { 1271 struct udevice *bus; 1272 1273 /* 1274 * Enumerate all known controller devices. Enumeration has the side- 1275 * effect of probing them, so PCIe devices will be enumerated too. 1276 */ 1277 for (uclass_first_device(UCLASS_PCI, &bus); 1278 bus; 1279 uclass_next_device(&bus)) { 1280 ; 1281 } 1282 } 1283