pci-visws.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Low-Level PCI Support for SGI Visual Workstation
  3.  *
  4.  * (c) 1999--2000 Martin Mares <mj@ucw.cz>
  5.  */
  6. #include <linux/config.h>
  7. #include <linux/types.h>
  8. #include <linux/kernel.h>
  9. #include <linux/sched.h>
  10. #include <linux/pci.h>
  11. #include <linux/init.h>
  12. #include <linux/irq.h>
  13. #include <asm/smp.h>
  14. #include <asm/lithium.h>
  15. #include <asm/io.h>
  16. #include "pci-i386.h"
  17. unsigned int pci_probe = 0;
  18. /*
  19.  *  The VISWS uses configuration access type 1 only.
  20.  */
  21. #define CONFIG_CMD(dev, where)   (0x80000000 | (dev->bus->number << 16) | (dev->devfn << 8) | (where & ~3))
  22. static int pci_conf1_read_config_byte(struct pci_dev *dev, int where, u8 *value)
  23. {
  24. outl(CONFIG_CMD(dev,where), 0xCF8);
  25. *value = inb(0xCFC + (where&3));
  26. return PCIBIOS_SUCCESSFUL;
  27. }
  28. static int pci_conf1_read_config_word(struct pci_dev *dev, int where, u16 *value)
  29. {
  30. outl(CONFIG_CMD(dev,where), 0xCF8);    
  31. *value = inw(0xCFC + (where&2));
  32. return PCIBIOS_SUCCESSFUL;    
  33. }
  34. static int pci_conf1_read_config_dword(struct pci_dev *dev, int where, u32 *value)
  35. {
  36. outl(CONFIG_CMD(dev,where), 0xCF8);
  37. *value = inl(0xCFC);
  38. return PCIBIOS_SUCCESSFUL;    
  39. }
  40. static int pci_conf1_write_config_byte(struct pci_dev *dev, int where, u8 value)
  41. {
  42. outl(CONFIG_CMD(dev,where), 0xCF8);    
  43. outb(value, 0xCFC + (where&3));
  44. return PCIBIOS_SUCCESSFUL;
  45. }
  46. static int pci_conf1_write_config_word(struct pci_dev *dev, int where, u16 value)
  47. {
  48. outl(CONFIG_CMD(dev,where), 0xCF8);
  49. outw(value, 0xCFC + (where&2));
  50. return PCIBIOS_SUCCESSFUL;
  51. }
  52. static int pci_conf1_write_config_dword(struct pci_dev *dev, int where, u32 value)
  53. {
  54. outl(CONFIG_CMD(dev,where), 0xCF8);
  55. outl(value, 0xCFC);
  56. return PCIBIOS_SUCCESSFUL;
  57. }
  58. #undef CONFIG_CMD
  59. static struct pci_ops visws_pci_ops = {
  60. pci_conf1_read_config_byte,
  61. pci_conf1_read_config_word,
  62. pci_conf1_read_config_dword,
  63. pci_conf1_write_config_byte,
  64. pci_conf1_write_config_word,
  65. pci_conf1_write_config_dword
  66. };
  67. static void __init pcibios_fixup_irqs(void)
  68. {
  69. struct pci_dev *dev, *p;
  70. u8 pin;
  71. int irq;
  72. pci_for_each_dev(dev) {
  73. pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
  74. dev->irq = 0;
  75. if (!pin)
  76. continue;
  77. pin--;
  78. if (dev->bus->parent) {
  79. p = dev->bus->parent->self;
  80. pin = (pin + PCI_SLOT(dev->devfn)) % 4;
  81. } else
  82. p = dev;
  83. irq = visws_get_PCI_irq_vector(p->bus->number, PCI_SLOT(p->devfn), pin+1);
  84. if (irq >= 0)
  85. dev->irq = irq;
  86. DBG("PCI IRQ: %s pin %d -> %dn", dev->slot_name, pin, irq);
  87. }
  88. }
  89. void __init pcibios_fixup_bus(struct pci_bus *b)
  90. {
  91. pci_read_bridge_bases(b);
  92. }
  93. #if 0
  94. static struct resource visws_pci_bus_resources[2] = {
  95. { "Host bus 1", 0xf4000000, 0xf7ffffff, 0 },
  96. { "Host bus 2", 0xf0000000, 0xf3ffffff, 0 }
  97. };
  98. #endif
  99. void __init pcibios_init(void)
  100. {
  101. unsigned int sec_bus = li_pcib_read16(LI_PCI_BUSNUM) & 0xff;
  102. printk("PCI: Probing PCI hardware on host buses 00 and %02xn", sec_bus);
  103. pci_scan_bus(0, &visws_pci_ops, NULL);
  104. pci_scan_bus(sec_bus, &visws_pci_ops, NULL);
  105. pcibios_fixup_irqs();
  106. pcibios_resource_survey();
  107. }
  108. char * __init pcibios_setup(char *str)
  109. {
  110. return str;
  111. }
  112. int pcibios_enable_device(struct pci_dev *dev)
  113. {
  114. return pcibios_enable_resources(dev);
  115. }
  116. void __init pcibios_penalize_isa_irq(irq)
  117. {
  118. }