diff options
Diffstat (limited to 'drivers/pci')
| -rw-r--r-- | drivers/pci/hotplug/rpaphp_core.c | 3 | ||||
| -rw-r--r-- | drivers/pci/msi.c | 227 | ||||
| -rw-r--r-- | drivers/pci/pci-driver.c | 6 | ||||
| -rw-r--r-- | drivers/pci/pci.c | 12 | ||||
| -rw-r--r-- | drivers/pci/pci.h | 11 | ||||
| -rw-r--r-- | drivers/pci/quirks.c | 4 |
6 files changed, 226 insertions, 37 deletions
diff --git a/drivers/pci/hotplug/rpaphp_core.c b/drivers/pci/hotplug/rpaphp_core.c index 6e79f5675b0d..638004546700 100644 --- a/drivers/pci/hotplug/rpaphp_core.c +++ b/drivers/pci/hotplug/rpaphp_core.c | |||
| @@ -360,9 +360,6 @@ static int __init rpaphp_init(void) | |||
| 360 | while ((dn = of_find_node_by_type(dn, "pci"))) | 360 | while ((dn = of_find_node_by_type(dn, "pci"))) |
| 361 | rpaphp_add_slot(dn); | 361 | rpaphp_add_slot(dn); |
| 362 | 362 | ||
| 363 | if (!num_slots) | ||
| 364 | return -ENODEV; | ||
| 365 | |||
| 366 | return 0; | 363 | return 0; |
| 367 | } | 364 | } |
| 368 | 365 | ||
diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c index a77e79c8c82e..2087a397ef16 100644 --- a/drivers/pci/msi.c +++ b/drivers/pci/msi.c | |||
| @@ -504,6 +504,201 @@ void pci_scan_msi_device(struct pci_dev *dev) | |||
| 504 | nr_reserved_vectors++; | 504 | nr_reserved_vectors++; |
| 505 | } | 505 | } |
| 506 | 506 | ||
| 507 | #ifdef CONFIG_PM | ||
| 508 | int pci_save_msi_state(struct pci_dev *dev) | ||
| 509 | { | ||
| 510 | int pos, i = 0; | ||
| 511 | u16 control; | ||
| 512 | struct pci_cap_saved_state *save_state; | ||
| 513 | u32 *cap; | ||
| 514 | |||
| 515 | pos = pci_find_capability(dev, PCI_CAP_ID_MSI); | ||
| 516 | if (pos <= 0 || dev->no_msi) | ||
| 517 | return 0; | ||
| 518 | |||
| 519 | pci_read_config_word(dev, msi_control_reg(pos), &control); | ||
| 520 | if (!(control & PCI_MSI_FLAGS_ENABLE)) | ||
| 521 | return 0; | ||
| 522 | |||
| 523 | save_state = kzalloc(sizeof(struct pci_cap_saved_state) + sizeof(u32) * 5, | ||
| 524 | GFP_KERNEL); | ||
| 525 | if (!save_state) { | ||
| 526 | printk(KERN_ERR "Out of memory in pci_save_msi_state\n"); | ||
| 527 | return -ENOMEM; | ||
| 528 | } | ||
| 529 | cap = &save_state->data[0]; | ||
| 530 | |||
| 531 | pci_read_config_dword(dev, pos, &cap[i++]); | ||
| 532 | control = cap[0] >> 16; | ||
| 533 | pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO, &cap[i++]); | ||
| 534 | if (control & PCI_MSI_FLAGS_64BIT) { | ||
| 535 | pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI, &cap[i++]); | ||
| 536 | pci_read_config_dword(dev, pos + PCI_MSI_DATA_64, &cap[i++]); | ||
| 537 | } else | ||
| 538 | pci_read_config_dword(dev, pos + PCI_MSI_DATA_32, &cap[i++]); | ||
| 539 | if (control & PCI_MSI_FLAGS_MASKBIT) | ||
| 540 | pci_read_config_dword(dev, pos + PCI_MSI_MASK_BIT, &cap[i++]); | ||
| 541 | disable_msi_mode(dev, pos, PCI_CAP_ID_MSI); | ||
| 542 | save_state->cap_nr = PCI_CAP_ID_MSI; | ||
| 543 | pci_add_saved_cap(dev, save_state); | ||
| 544 | return 0; | ||
| 545 | } | ||
| 546 | |||
| 547 | void pci_restore_msi_state(struct pci_dev *dev) | ||
| 548 | { | ||
| 549 | int i = 0, pos; | ||
| 550 | u16 control; | ||
| 551 | struct pci_cap_saved_state *save_state; | ||
| 552 | u32 *cap; | ||
| 553 | |||
| 554 | save_state = pci_find_saved_cap(dev, PCI_CAP_ID_MSI); | ||
| 555 | pos = pci_find_capability(dev, PCI_CAP_ID_MSI); | ||
| 556 | if (!save_state || pos <= 0) | ||
| 557 | return; | ||
| 558 | cap = &save_state->data[0]; | ||
| 559 | |||
| 560 | control = cap[i++] >> 16; | ||
| 561 | pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO, cap[i++]); | ||
| 562 | if (control & PCI_MSI_FLAGS_64BIT) { | ||
| 563 | pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI, cap[i++]); | ||
| 564 | pci_write_config_dword(dev, pos + PCI_MSI_DATA_64, cap[i++]); | ||
| 565 | } else | ||
| 566 | pci_write_config_dword(dev, pos + PCI_MSI_DATA_32, cap[i++]); | ||
| 567 | if (control & PCI_MSI_FLAGS_MASKBIT) | ||
| 568 | pci_write_config_dword(dev, pos + PCI_MSI_MASK_BIT, cap[i++]); | ||
| 569 | pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control); | ||
| 570 | enable_msi_mode(dev, pos, PCI_CAP_ID_MSI); | ||
| 571 | pci_remove_saved_cap(save_state); | ||
| 572 | kfree(save_state); | ||
| 573 | } | ||
| 574 | |||
| 575 | int pci_save_msix_state(struct pci_dev *dev) | ||
| 576 | { | ||
| 577 | int pos; | ||
| 578 | u16 control; | ||
| 579 | struct pci_cap_saved_state *save_state; | ||
| 580 | |||
| 581 | pos = pci_find_capability(dev, PCI_CAP_ID_MSIX); | ||
| 582 | if (pos <= 0 || dev->no_msi) | ||
| 583 | return 0; | ||
| 584 | |||
| 585 | pci_read_config_word(dev, msi_control_reg(pos), &control); | ||
| 586 | if (!(control & PCI_MSIX_FLAGS_ENABLE)) | ||
| 587 | return 0; | ||
| 588 | save_state = kzalloc(sizeof(struct pci_cap_saved_state) + sizeof(u16), | ||
| 589 | GFP_KERNEL); | ||
| 590 | if (!save_state) { | ||
| 591 | printk(KERN_ERR "Out of memory in pci_save_msix_state\n"); | ||
| 592 | return -ENOMEM; | ||
| 593 | } | ||
| 594 | *((u16 *)&save_state->data[0]) = control; | ||
| 595 | |||
| 596 | disable_msi_mode(dev, pos, PCI_CAP_ID_MSIX); | ||
| 597 | save_state->cap_nr = PCI_CAP_ID_MSIX; | ||
| 598 | pci_add_saved_cap(dev, save_state); | ||
| 599 | return 0; | ||
| 600 | } | ||
| 601 | |||
| 602 | void pci_restore_msix_state(struct pci_dev *dev) | ||
| 603 | { | ||
| 604 | u16 save; | ||
| 605 | int pos; | ||
| 606 | int vector, head, tail = 0; | ||
| 607 | void __iomem *base; | ||
| 608 | int j; | ||
| 609 | struct msg_address address; | ||
| 610 | struct msg_data data; | ||
| 611 | struct msi_desc *entry; | ||
| 612 | int temp; | ||
| 613 | struct pci_cap_saved_state *save_state; | ||
| 614 | |||
| 615 | save_state = pci_find_saved_cap(dev, PCI_CAP_ID_MSIX); | ||
| 616 | if (!save_state) | ||
| 617 | return; | ||
| 618 | save = *((u16 *)&save_state->data[0]); | ||
| 619 | pci_remove_saved_cap(save_state); | ||
| 620 | kfree(save_state); | ||
| 621 | |||
| 622 | pos = pci_find_capability(dev, PCI_CAP_ID_MSIX); | ||
| 623 | if (pos <= 0) | ||
| 624 | return; | ||
| 625 | |||
| 626 | /* route the table */ | ||
| 627 | temp = dev->irq; | ||
| 628 | if (msi_lookup_vector(dev, PCI_CAP_ID_MSIX)) | ||
| 629 | return; | ||
| 630 | vector = head = dev->irq; | ||
| 631 | while (head != tail) { | ||
| 632 | entry = msi_desc[vector]; | ||
| 633 | base = entry->mask_base; | ||
| 634 | j = entry->msi_attrib.entry_nr; | ||
| 635 | |||
| 636 | msi_address_init(&address); | ||
| 637 | msi_data_init(&data, vector); | ||
| 638 | |||
| 639 | address.lo_address.value &= MSI_ADDRESS_DEST_ID_MASK; | ||
| 640 | address.lo_address.value |= entry->msi_attrib.current_cpu << | ||
| 641 | MSI_TARGET_CPU_SHIFT; | ||
| 642 | |||
| 643 | writel(address.lo_address.value, | ||
| 644 | base + j * PCI_MSIX_ENTRY_SIZE + | ||
| 645 | PCI_MSIX_ENTRY_LOWER_ADDR_OFFSET); | ||
| 646 | writel(address.hi_address, | ||
| 647 | base + j * PCI_MSIX_ENTRY_SIZE + | ||
| 648 | PCI_MSIX_ENTRY_UPPER_ADDR_OFFSET); | ||
| 649 | writel(*(u32*)&data, | ||
| 650 | base + j * PCI_MSIX_ENTRY_SIZE + | ||
| 651 | PCI_MSIX_ENTRY_DATA_OFFSET); | ||
| 652 | |||
| 653 | tail = msi_desc[vector]->link.tail; | ||
| 654 | vector = tail; | ||
| 655 | } | ||
| 656 | dev->irq = temp; | ||
| 657 | |||
| 658 | pci_write_config_word(dev, msi_control_reg(pos), save); | ||
| 659 | enable_msi_mode(dev, pos, PCI_CAP_ID_MSIX); | ||
| 660 | } | ||
| 661 | #endif | ||
| 662 | |||
| 663 | static void msi_register_init(struct pci_dev *dev, struct msi_desc *entry) | ||
| 664 | { | ||
| 665 | struct msg_address address; | ||
| 666 | struct msg_data data; | ||
| 667 | int pos, vector = dev->irq; | ||
| 668 | u16 control; | ||
| 669 | |||
| 670 | pos = pci_find_capability(dev, PCI_CAP_ID_MSI); | ||
| 671 | pci_read_config_word(dev, msi_control_reg(pos), &control); | ||
| 672 | /* Configure MSI capability structure */ | ||
| 673 | msi_address_init(&address); | ||
| 674 | msi_data_init(&data, vector); | ||
| 675 | entry->msi_attrib.current_cpu = ((address.lo_address.u.dest_id >> | ||
| 676 | MSI_TARGET_CPU_SHIFT) & MSI_TARGET_CPU_MASK); | ||
| 677 | pci_write_config_dword(dev, msi_lower_address_reg(pos), | ||
| 678 | address.lo_address.value); | ||
| 679 | if (is_64bit_address(control)) { | ||
| 680 | pci_write_config_dword(dev, | ||
| 681 | msi_upper_address_reg(pos), address.hi_address); | ||
| 682 | pci_write_config_word(dev, | ||
| 683 | msi_data_reg(pos, 1), *((u32*)&data)); | ||
| 684 | } else | ||
| 685 | pci_write_config_word(dev, | ||
| 686 | msi_data_reg(pos, 0), *((u32*)&data)); | ||
| 687 | if (entry->msi_attrib.maskbit) { | ||
| 688 | unsigned int maskbits, temp; | ||
| 689 | /* All MSIs are unmasked by default, Mask them all */ | ||
| 690 | pci_read_config_dword(dev, | ||
| 691 | msi_mask_bits_reg(pos, is_64bit_address(control)), | ||
| 692 | &maskbits); | ||
| 693 | temp = (1 << multi_msi_capable(control)); | ||
| 694 | temp = ((temp - 1) & ~temp); | ||
| 695 | maskbits |= temp; | ||
| 696 | pci_write_config_dword(dev, | ||
| 697 | msi_mask_bits_reg(pos, is_64bit_address(control)), | ||
| 698 | maskbits); | ||
| 699 | } | ||
| 700 | } | ||
| 701 | |||
| 507 | /** | 702 | /** |
| 508 | * msi_capability_init - configure device's MSI capability structure | 703 | * msi_capability_init - configure device's MSI capability structure |
| 509 | * @dev: pointer to the pci_dev data structure of MSI device function | 704 | * @dev: pointer to the pci_dev data structure of MSI device function |
| @@ -516,8 +711,6 @@ void pci_scan_msi_device(struct pci_dev *dev) | |||
| 516 | static int msi_capability_init(struct pci_dev *dev) | 711 | static int msi_capability_init(struct pci_dev *dev) |
| 517 | { | 712 | { |
| 518 | struct msi_desc *entry; | 713 | struct msi_desc *entry; |
| 519 | struct msg_address address; | ||
| 520 | struct msg_data data; | ||
| 521 | int pos, vector; | 714 | int pos, vector; |
| 522 | u16 control; | 715 | u16 control; |
| 523 | 716 | ||
| @@ -549,33 +742,8 @@ static int msi_capability_init(struct pci_dev *dev) | |||
| 549 | /* Replace with MSI handler */ | 742 | /* Replace with MSI handler */ |
| 550 | irq_handler_init(PCI_CAP_ID_MSI, vector, entry->msi_attrib.maskbit); | 743 | irq_handler_init(PCI_CAP_ID_MSI, vector, entry->msi_attrib.maskbit); |
| 551 | /* Configure MSI capability structure */ | 744 | /* Configure MSI capability structure */ |
| 552 | msi_address_init(&address); | 745 | msi_register_init(dev, entry); |
| 553 | msi_data_init(&data, vector); | 746 | |
| 554 | entry->msi_attrib.current_cpu = ((address.lo_address.u.dest_id >> | ||
| 555 | MSI_TARGET_CPU_SHIFT) & MSI_TARGET_CPU_MASK); | ||
| 556 | pci_write_config_dword(dev, msi_lower_address_reg(pos), | ||
| 557 | address.lo_address.value); | ||
| 558 | if (is_64bit_address(control)) { | ||
| 559 | pci_write_config_dword(dev, | ||
| 560 | msi_upper_address_reg(pos), address.hi_address); | ||
| 561 | pci_write_config_word(dev, | ||
| 562 | msi_data_reg(pos, 1), *((u32*)&data)); | ||
| 563 | } else | ||
| 564 | pci_write_config_word(dev, | ||
| 565 | msi_data_reg(pos, 0), *((u32*)&data)); | ||
| 566 | if (entry->msi_attrib.maskbit) { | ||
| 567 | unsigned int maskbits, temp; | ||
| 568 | /* All MSIs are unmasked by default, Mask them all */ | ||
| 569 | pci_read_config_dword(dev, | ||
| 570 | msi_mask_bits_reg(pos, is_64bit_address(control)), | ||
| 571 | &maskbits); | ||
| 572 | temp = (1 << multi_msi_capable(control)); | ||
| 573 | temp = ((temp - 1) & ~temp); | ||
| 574 | maskbits |= temp; | ||
| 575 | pci_write_config_dword(dev, | ||
| 576 | msi_mask_bits_reg(pos, is_64bit_address(control)), | ||
| 577 | maskbits); | ||
| 578 | } | ||
| 579 | attach_msi_entry(entry, vector); | 747 | attach_msi_entry(entry, vector); |
| 580 | /* Set MSI enabled bits */ | 748 | /* Set MSI enabled bits */ |
| 581 | enable_msi_mode(dev, pos, PCI_CAP_ID_MSI); | 749 | enable_msi_mode(dev, pos, PCI_CAP_ID_MSI); |
| @@ -731,6 +899,7 @@ int pci_enable_msi(struct pci_dev* dev) | |||
| 731 | vector_irq[dev->irq] = -1; | 899 | vector_irq[dev->irq] = -1; |
| 732 | nr_released_vectors--; | 900 | nr_released_vectors--; |
| 733 | spin_unlock_irqrestore(&msi_lock, flags); | 901 | spin_unlock_irqrestore(&msi_lock, flags); |
| 902 | msi_register_init(dev, msi_desc[dev->irq]); | ||
| 734 | enable_msi_mode(dev, pos, PCI_CAP_ID_MSI); | 903 | enable_msi_mode(dev, pos, PCI_CAP_ID_MSI); |
| 735 | return 0; | 904 | return 0; |
| 736 | } | 905 | } |
diff --git a/drivers/pci/pci-driver.c b/drivers/pci/pci-driver.c index f22f69ac6445..1456759936c5 100644 --- a/drivers/pci/pci-driver.c +++ b/drivers/pci/pci-driver.c | |||
| @@ -271,10 +271,12 @@ static int pci_device_suspend(struct device * dev, pm_message_t state) | |||
| 271 | struct pci_driver * drv = pci_dev->driver; | 271 | struct pci_driver * drv = pci_dev->driver; |
| 272 | int i = 0; | 272 | int i = 0; |
| 273 | 273 | ||
| 274 | if (drv && drv->suspend) | 274 | if (drv && drv->suspend) { |
| 275 | i = drv->suspend(pci_dev, state); | 275 | i = drv->suspend(pci_dev, state); |
| 276 | else | 276 | suspend_report_result(drv->suspend, i); |
| 277 | } else { | ||
| 277 | pci_save_state(pci_dev); | 278 | pci_save_state(pci_dev); |
| 279 | } | ||
| 278 | return i; | 280 | return i; |
| 279 | } | 281 | } |
| 280 | 282 | ||
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index bea1ad1ad5ba..2329f941a0dc 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c | |||
| @@ -307,9 +307,11 @@ pci_set_power_state(struct pci_dev *dev, pci_power_t state) | |||
| 307 | * Can enter D0 from any state, but if we can only go deeper | 307 | * Can enter D0 from any state, but if we can only go deeper |
| 308 | * to sleep if we're already in a low power state | 308 | * to sleep if we're already in a low power state |
| 309 | */ | 309 | */ |
| 310 | if (state != PCI_D0 && dev->current_state > state) | 310 | if (state != PCI_D0 && dev->current_state > state) { |
| 311 | printk(KERN_ERR "%s(): %s: state=%d, current state=%d\n", | ||
| 312 | __FUNCTION__, pci_name(dev), state, dev->current_state); | ||
| 311 | return -EINVAL; | 313 | return -EINVAL; |
| 312 | else if (dev->current_state == state) | 314 | } else if (dev->current_state == state) |
| 313 | return 0; /* we're already there */ | 315 | return 0; /* we're already there */ |
| 314 | 316 | ||
| 315 | /* find PCI PM capability in list */ | 317 | /* find PCI PM capability in list */ |
| @@ -444,6 +446,10 @@ pci_save_state(struct pci_dev *dev) | |||
| 444 | /* XXX: 100% dword access ok here? */ | 446 | /* XXX: 100% dword access ok here? */ |
| 445 | for (i = 0; i < 16; i++) | 447 | for (i = 0; i < 16; i++) |
| 446 | pci_read_config_dword(dev, i * 4,&dev->saved_config_space[i]); | 448 | pci_read_config_dword(dev, i * 4,&dev->saved_config_space[i]); |
| 449 | if ((i = pci_save_msi_state(dev)) != 0) | ||
| 450 | return i; | ||
| 451 | if ((i = pci_save_msix_state(dev)) != 0) | ||
| 452 | return i; | ||
| 447 | return 0; | 453 | return 0; |
| 448 | } | 454 | } |
| 449 | 455 | ||
| @@ -458,6 +464,8 @@ pci_restore_state(struct pci_dev *dev) | |||
| 458 | 464 | ||
| 459 | for (i = 0; i < 16; i++) | 465 | for (i = 0; i < 16; i++) |
| 460 | pci_write_config_dword(dev,i * 4, dev->saved_config_space[i]); | 466 | pci_write_config_dword(dev,i * 4, dev->saved_config_space[i]); |
| 467 | pci_restore_msi_state(dev); | ||
| 468 | pci_restore_msix_state(dev); | ||
| 461 | return 0; | 469 | return 0; |
| 462 | } | 470 | } |
| 463 | 471 | ||
diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h index 8f3fb47ea671..30630cbe2fe3 100644 --- a/drivers/pci/pci.h +++ b/drivers/pci/pci.h | |||
| @@ -55,6 +55,17 @@ void pci_no_msi(void); | |||
| 55 | static inline void disable_msi_mode(struct pci_dev *dev, int pos, int type) { } | 55 | static inline void disable_msi_mode(struct pci_dev *dev, int pos, int type) { } |
| 56 | static inline void pci_no_msi(void) { } | 56 | static inline void pci_no_msi(void) { } |
| 57 | #endif | 57 | #endif |
| 58 | #if defined(CONFIG_PCI_MSI) && defined(CONFIG_PM) | ||
| 59 | int pci_save_msi_state(struct pci_dev *dev); | ||
| 60 | int pci_save_msix_state(struct pci_dev *dev); | ||
| 61 | void pci_restore_msi_state(struct pci_dev *dev); | ||
| 62 | void pci_restore_msix_state(struct pci_dev *dev); | ||
| 63 | #else | ||
| 64 | static inline int pci_save_msi_state(struct pci_dev *dev) { return 0; } | ||
| 65 | static inline int pci_save_msix_state(struct pci_dev *dev) { return 0; } | ||
| 66 | static inline void pci_restore_msi_state(struct pci_dev *dev) {} | ||
| 67 | static inline void pci_restore_msix_state(struct pci_dev *dev) {} | ||
| 68 | #endif | ||
| 58 | 69 | ||
| 59 | extern int pcie_mch_quirk; | 70 | extern int pcie_mch_quirk; |
| 60 | extern struct device_attribute pci_dev_attrs[]; | 71 | extern struct device_attribute pci_dev_attrs[]; |
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 4970f47be72c..827550d25c9e 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c | |||
| @@ -592,7 +592,7 @@ static void __init quirk_amd_8131_ioapic(struct pci_dev *dev) | |||
| 592 | pci_write_config_byte( dev, AMD8131_MISC, tmp); | 592 | pci_write_config_byte( dev, AMD8131_MISC, tmp); |
| 593 | } | 593 | } |
| 594 | } | 594 | } |
| 595 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_APIC, quirk_amd_8131_ioapic ); | 595 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE, quirk_amd_8131_ioapic); |
| 596 | 596 | ||
| 597 | static void __init quirk_svw_msi(struct pci_dev *dev) | 597 | static void __init quirk_svw_msi(struct pci_dev *dev) |
| 598 | { | 598 | { |
| @@ -921,6 +921,7 @@ static void __init asus_hides_smbus_hostbridge(struct pci_dev *dev) | |||
| 921 | if (dev->device == PCI_DEVICE_ID_INTEL_82915GM_HB) { | 921 | if (dev->device == PCI_DEVICE_ID_INTEL_82915GM_HB) { |
| 922 | switch (dev->subsystem_device) { | 922 | switch (dev->subsystem_device) { |
| 923 | case 0x1882: /* M6V notebook */ | 923 | case 0x1882: /* M6V notebook */ |
| 924 | case 0x1977: /* A6VA notebook */ | ||
| 924 | asus_hides_smbus = 1; | 925 | asus_hides_smbus = 1; |
| 925 | } | 926 | } |
| 926 | } | 927 | } |
| @@ -999,6 +1000,7 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_0, asu | |||
| 999 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_12, asus_hides_smbus_lpc ); | 1000 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_12, asus_hides_smbus_lpc ); |
| 1000 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_12, asus_hides_smbus_lpc ); | 1001 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_12, asus_hides_smbus_lpc ); |
| 1001 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_0, asus_hides_smbus_lpc ); | 1002 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_0, asus_hides_smbus_lpc ); |
| 1003 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_1, asus_hides_smbus_lpc ); | ||
| 1002 | 1004 | ||
| 1003 | static void __init asus_hides_smbus_lpc_ich6(struct pci_dev *dev) | 1005 | static void __init asus_hides_smbus_lpc_ich6(struct pci_dev *dev) |
| 1004 | { | 1006 | { |
