pci.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #include <linux/config.h>
  2. #include <linux/kernel.h>
  3. #include <linux/init.h>
  4. #include <linux/types.h>
  5. #include <linux/pci.h>
  6. #include <asm/pci_channel.h>
  7. #include <asm/debug.h>
  8. #include <asm/ddb5xxx/ddb5xxx.h>
  9. static struct resource extpci_io_resource = {
  10. "pci IO space",
  11. 0x1000, /* leave some room for ISA bus */
  12. DDB_PCI_IO_SIZE -1,
  13. IORESOURCE_IO};
  14. static struct resource extpci_mem_resource = {
  15. "pci memory space",
  16. DDB_PCI_MEM_BASE + 0x00100000, /* leave 1 MB for RTC */
  17. DDB_PCI_MEM_BASE + DDB_PCI_MEM_SIZE -1,
  18. IORESOURCE_MEM};
  19. extern struct pci_ops ddb5476_ext_pci_ops;
  20. struct pci_channel mips_pci_channels[] = {
  21. { &ddb5476_ext_pci_ops, &extpci_io_resource, &extpci_mem_resource },
  22. { NULL, NULL, NULL}
  23. };
  24. /*
  25.  * we fix up irqs based on the slot number.
  26.  * The first entry is at AD:11.
  27.  *
  28.  * This does not work for devices on sub-buses yet.
  29.  */
  30. /*
  31.  * temporary
  32.  */
  33. #define PCI_EXT_INTA 8
  34. #define PCI_EXT_INTB 9
  35. #define PCI_EXT_INTC 10
  36. #define PCI_EXT_INTD 11
  37. #define PCI_EXT_INTE 12
  38. /*
  39.  * based on ddb5477 manual page 11
  40.  */
  41. #define MAX_SLOT_NUM 21
  42. static unsigned char irq_map[MAX_SLOT_NUM] = {
  43. /* SLOT:  0, AD:11 */ 0xff,
  44. /* SLOT:  1, AD:12 */ 0xff,
  45. /* SLOT:  2, AD:13 */ 9, /* USB */
  46. /* SLOT:  3, AD:14 */ 10, /* PMU */
  47. /* SLOT:  4, AD:15 */ 0xff,
  48. /* SLOT:  5, AD:16 */ 0x0, /* P2P bridge */
  49. /* SLOT:  6, AD:17 */ nile4_to_irq(PCI_EXT_INTB),
  50. /* SLOT:  7, AD:18 */ nile4_to_irq(PCI_EXT_INTC),
  51. /* SLOT:  8, AD:19 */ nile4_to_irq(PCI_EXT_INTD),
  52. /* SLOT:  9, AD:20 */ nile4_to_irq(PCI_EXT_INTA),
  53. /* SLOT: 10, AD:21 */ 0xff,
  54. /* SLOT: 11, AD:22 */ 0xff,
  55. /* SLOT: 12, AD:23 */ 0xff,
  56. /* SLOT: 13, AD:24 */ 14, /* HD controller, M5229 */
  57. /* SLOT: 14, AD:25 */ 0xff,
  58. /* SLOT: 15, AD:26 */ 0xff,
  59. /* SLOT: 16, AD:27 */ 0xff,
  60. /* SLOT: 17, AD:28 */ 0xff,
  61. /* SLOT: 18, AD:29 */ 0xff,
  62. /* SLOT: 19, AD:30 */ 0xff,
  63. /* SLOT: 20, AD:31 */ 0xff
  64. };
  65. extern int vrc5477_irq_to_irq(int irq);
  66. void __init pcibios_fixup_irqs(void)
  67. {
  68.         struct pci_dev *dev;
  69.         int slot_num;
  70. pci_for_each_dev(dev) {
  71. slot_num = PCI_SLOT(dev->devfn);
  72. /* we don't do IRQ fixup for sub-bus yet */
  73. if (dev->bus->parent != NULL) {
  74. db_run(printk("Don't know how to fixup irq for PCI device %d on sub-bus %dn",
  75. slot_num, dev->bus->number));
  76. continue;
  77. }
  78. db_assert(slot_num < MAX_SLOT_NUM);
  79. db_assert(irq_map[slot_num] != 0xff);
  80. pci_write_config_byte(dev,
  81.       PCI_INTERRUPT_LINE,
  82.       irq_map[slot_num]);
  83. dev->irq = irq_map[slot_num];
  84. }
  85. }
  86. #if defined(CONFIG_DEBUG)
  87. extern void jsun_scan_pci_bus(void);
  88. #endif
  89. void __init ddb_pci_reset_bus(void)
  90. {
  91. u32 temp;
  92. /*
  93.  * I am not sure about the "official" procedure, the following
  94.  * steps work as far as I know:
  95.  * We first set PCI cold reset bit (bit 31) in PCICTRL-H.
  96.  * Then we clear the PCI warm reset bit (bit 30) to 0 in PCICTRL-H.
  97.  * The same is true for both PCI channels.
  98.  */
  99. temp = ddb_in32(DDB_PCICTRL+4);
  100. temp |= 0x80000000;
  101. ddb_out32(DDB_PCICTRL+4, temp);
  102. temp &= ~0xc0000000;
  103. ddb_out32(DDB_PCICTRL+4, temp);
  104. }
  105. unsigned __init int pcibios_assign_all_busses(void)
  106. {
  107. /* we hope pci_auto has assigned the bus numbers to all buses */
  108. return 1;
  109. }
  110. void __init pcibios_fixup_resources(struct pci_dev *dev)
  111. {
  112. }
  113. void __init pcibios_fixup(void)
  114. {
  115. }