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

嵌入式Linux

开发平台:

Unix_Linux

  1. #include <linux/kernel.h>
  2. #include <linux/init.h>
  3. #include <linux/types.h>
  4. #include <linux/pci.h>
  5. #include <asm/ddb5xxx/ddb5xxx.h>
  6. #include <asm/ddb5xxx/debug.h>
  7. #include <asm/ddb5xxx/pci.h>
  8. static struct resource extpci_io_resource = {
  9. "ext pci IO space", 
  10. DDB_PCI0_IO_BASE - DDB_PCI_IO_BASE,
  11. DDB_PCI0_IO_BASE - DDB_PCI_IO_BASE + DDB_PCI0_IO_SIZE -1,
  12. IORESOURCE_IO};
  13. static struct resource extpci_mem_resource = {
  14. "ext pci memory space", 
  15. DDB_PCI0_MEM_BASE,
  16. DDB_PCI0_MEM_BASE + DDB_PCI0_MEM_SIZE -1,
  17. IORESOURCE_MEM};
  18. static struct resource iopci_io_resource = {
  19. "io pci IO space", 
  20. DDB_PCI1_IO_BASE - DDB_PCI_IO_BASE,
  21. DDB_PCI1_IO_BASE - DDB_PCI_IO_BASE + DDB_PCI1_IO_SIZE -1,
  22. IORESOURCE_IO};
  23. static struct resource iopci_mem_resource = {
  24. "ext pci memory space", 
  25. DDB_PCI1_MEM_BASE,
  26. DDB_PCI1_MEM_BASE + DDB_PCI1_MEM_SIZE -1,
  27. IORESOURCE_MEM};
  28. extern struct pci_ops ddb5477_ext_pci_ops;
  29. extern struct pci_ops ddb5477_io_pci_ops;
  30. struct pci_channel mips_pci_channels[] = {
  31. { &ddb5477_ext_pci_ops, &extpci_io_resource, &extpci_mem_resource },
  32. { &ddb5477_io_pci_ops, &iopci_io_resource, &iopci_mem_resource },
  33. { NULL, NULL, NULL}
  34. };
  35. /*
  36.  * we fix up irqs based on the slot number.
  37.  * The first entry is at AD:11.
  38.  * Fortunately this works because, although we have two pci buses,
  39.  * they all have different slot numbers.
  40.  * 
  41.  * This does not work for devices on sub-buses.
  42.  *
  43.  * Note that the irq number in the array is relative number in vrc5477.
  44.  * We need to translate it to global irq number.
  45.  */
  46. /*
  47.  * irq mapping : PCI int # -> vrc5477 irq #
  48.  * based on vrc5477 manual page 46
  49.  */
  50. #define PCI_EXT_INTA 8
  51. #define PCI_EXT_INTB 9
  52. #define PCI_EXT_INTC 10
  53. #define PCI_EXT_INTD 11
  54. #define PCI_EXT_INTE 12
  55. #define PCI_IO_INTA 16
  56. #define PCI_IO_INTB 17
  57. #define PCI_IO_INTC 18
  58. #define PCI_IO_INTD 19
  59. /* 
  60.  * irq mapping : device -> pci int #, 
  61.  * ddb5477 board manual page 4  and vrc5477 manual page 46
  62.  */
  63. #define INT_ONBOARD_TULIP PCI_EXT_INTA
  64. #define INT_SLOT1 PCI_EXT_INTB
  65. #define INT_SLOT2 PCI_EXT_INTC
  66. #define INT_SLOT3 PCI_EXT_INTD
  67. #define INT_SLOT4 PCI_EXT_INTE
  68. #define INT_USB_HOST PCI_IO_INTA
  69. #define INT_USB_PERI PCI_IO_INTB
  70. #define INT_AC97 PCI_IO_INTC
  71. /*
  72.  * based on ddb5477 manual page 11
  73.  */
  74. #define MAX_SLOT_NUM 21
  75. static unsigned char irq_map[MAX_SLOT_NUM] = {
  76. /* AD:11 */ 0xff, 0xff, 0xff, 0xff, 
  77. /* AD:15 */ INT_ONBOARD_TULIP, INT_SLOT1, INT_SLOT2, INT_SLOT3,
  78. /* AD:19 */ INT_SLOT4, 0xff, 0xff, 0xff,
  79. /* AD:23 */ 0xff, 0xff, 0xff, 0xff,
  80. /* AD:27 */ 0xff, 0xff, INT_AC97, INT_USB_PERI, 
  81. /* AD:31 */ INT_USB_HOST
  82. };
  83. extern int vrc5477_irq_to_irq(int irq);
  84. void __init pcibios_fixup_irqs(void)
  85. {
  86.         struct pci_dev *dev;
  87.         int slot_num;
  88. pci_for_each_dev(dev) {
  89. slot_num = PCI_SLOT(dev->devfn);
  90. MIPS_ASSERT(slot_num < MAX_SLOT_NUM);
  91. MIPS_ASSERT(irq_map[slot_num] != 0xff);
  92. pci_write_config_byte(dev, 
  93.       PCI_INTERRUPT_LINE,
  94.       irq_map[slot_num]);
  95. dev->irq = vrc5477_irq_to_irq(irq_map[slot_num]);
  96. }
  97. }
  98. #if defined(CONFIG_LL_DEBUG)
  99. extern void jsun_scan_pci_bus(void);
  100. extern void jsun_assign_pci_resource(void);
  101. #endif
  102. void __init ddb_pci_reset_bus(void)
  103. {
  104. u32 temp;
  105. /*
  106.  * I am not sure about the "official" procedure, the following
  107.  * steps work as far as I know:
  108.  * We first set PCI cold reset bit (bit 31) in PCICTRL-H.
  109.  * Then we clear the PCI warm reset bit (bit 30) to 0 in PCICTRL-H.
  110.  * The same is true for both PCI channels.
  111.  */
  112. temp = ddb_in32(DDB_PCICTL0_H);
  113. temp |= 0x80000000;
  114. ddb_out32(DDB_PCICTL0_H, temp);
  115. temp &= ~0xc0000000;
  116. ddb_out32(DDB_PCICTL0_H, temp);
  117. temp = ddb_in32(DDB_PCICTL1_H);
  118. temp |= 0x80000000;
  119. ddb_out32(DDB_PCICTL1_H, temp);
  120. temp &= ~0xc0000000;
  121. ddb_out32(DDB_PCICTL1_H, temp);
  122. }
  123. unsigned __init int pcibios_assign_all_busses(void)
  124. {
  125. return 1;
  126. }