pci.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Copyright (C) 2001 Dave Engebretsen, IBM Corporation
  3. * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
  4. *
  5. * pSeries specific routines for PCI.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <linux/init.h>
  22. #include <linux/ioport.h>
  23. #include <linux/kernel.h>
  24. #include <linux/pci.h>
  25. #include <linux/string.h>
  26. #include <asm/pci-bridge.h>
  27. #include <asm/prom.h>
  28. #include <asm/ppc-pci.h>
  29. #if 0
  30. void pcibios_name_device(struct pci_dev *dev)
  31. {
  32. struct device_node *dn;
  33. /*
  34. * Add IBM loc code (slot) as a prefix to the device names for service
  35. */
  36. dn = pci_device_to_OF_node(dev);
  37. if (dn) {
  38. char *loc_code = get_property(dn, "ibm,loc-code", 0);
  39. if (loc_code) {
  40. int loc_len = strlen(loc_code);
  41. if (loc_len < sizeof(dev->dev.name)) {
  42. memmove(dev->dev.name+loc_len+1, dev->dev.name,
  43. sizeof(dev->dev.name)-loc_len-1);
  44. memcpy(dev->dev.name, loc_code, loc_len);
  45. dev->dev.name[loc_len] = ' ';
  46. dev->dev.name[sizeof(dev->dev.name)-1] = '\0';
  47. }
  48. }
  49. }
  50. }
  51. DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_name_device);
  52. #endif
  53. static void __init pSeries_request_regions(void)
  54. {
  55. if (!isa_io_base)
  56. return;
  57. request_region(0x20,0x20,"pic1");
  58. request_region(0xa0,0x20,"pic2");
  59. request_region(0x00,0x20,"dma1");
  60. request_region(0x40,0x20,"timer");
  61. request_region(0x80,0x10,"dma page reg");
  62. request_region(0xc0,0x20,"dma2");
  63. }
  64. void __init pSeries_final_fixup(void)
  65. {
  66. pSeries_request_regions();
  67. pci_addr_cache_build();
  68. }
  69. /*
  70. * Assume the winbond 82c105 is the IDE controller on a
  71. * p610/p615/p630. We should probably be more careful in case
  72. * someone tries to plug in a similar adapter.
  73. */
  74. static void fixup_winbond_82c105(struct pci_dev* dev)
  75. {
  76. int i;
  77. unsigned int reg;
  78. if (!machine_is(pseries))
  79. return;
  80. printk("Using INTC for W82c105 IDE controller.\n");
  81. pci_read_config_dword(dev, 0x40, &reg);
  82. /* Enable LEGIRQ to use INTC instead of ISA interrupts */
  83. pci_write_config_dword(dev, 0x40, reg | (1<<11));
  84. for (i = 0; i < DEVICE_COUNT_RESOURCE; ++i) {
  85. /* zap the 2nd function of the winbond chip */
  86. if (dev->resource[i].flags & IORESOURCE_IO
  87. && dev->bus->number == 0 && dev->devfn == 0x81)
  88. dev->resource[i].flags &= ~IORESOURCE_IO;
  89. }
  90. }
  91. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_WINBOND, PCI_DEVICE_ID_WINBOND_82C105,
  92. fixup_winbond_82c105);