pci-lasat.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2000, 2001, 04 Keith M Wesolowski
  7. */
  8. #include <linux/kernel.h>
  9. #include <linux/init.h>
  10. #include <linux/interrupt.h>
  11. #include <linux/pci.h>
  12. #include <linux/types.h>
  13. #include <linux/interrupt.h>
  14. #include <linux/pci.h>
  15. #include <linux/delay.h>
  16. #include <asm/bootinfo.h>
  17. extern struct pci_ops nile4_pci_ops;
  18. extern struct pci_ops gt64120_pci_ops;
  19. static struct resource lasat_pci_mem_resource = {
  20. .name = "LASAT PCI MEM",
  21. .start = 0x18000000,
  22. .end = 0x19FFFFFF,
  23. .flags = IORESOURCE_MEM,
  24. };
  25. static struct resource lasat_pci_io_resource = {
  26. .name = "LASAT PCI IO",
  27. .start = 0x1a000000,
  28. .end = 0x1bFFFFFF,
  29. .flags = IORESOURCE_IO,
  30. };
  31. static struct pci_controller lasat_pci_controller = {
  32. .mem_resource = &lasat_pci_mem_resource,
  33. .io_resource = &lasat_pci_io_resource,
  34. };
  35. static int __init lasat_pci_setup(void)
  36. {
  37. printk("PCI: starting\n");
  38. switch (mips_machtype) {
  39. case MACH_LASAT_100:
  40. lasat_pci_controller.pci_ops = &gt64120_pci_ops;
  41. break;
  42. case MACH_LASAT_200:
  43. lasat_pci_controller.pci_ops = &nile4_pci_ops;
  44. break;
  45. default:
  46. panic("pcibios_init: mips_machtype incorrect");
  47. }
  48. register_pci_controller(&lasat_pci_controller);
  49. return 0;
  50. }
  51. early_initcall(lasat_pci_setup);
  52. #define LASATINT_ETH1 0
  53. #define LASATINT_ETH0 1
  54. #define LASATINT_HDC 2
  55. #define LASATINT_COMP 3
  56. #define LASATINT_HDLC 4
  57. #define LASATINT_PCIA 5
  58. #define LASATINT_PCIB 6
  59. #define LASATINT_PCIC 7
  60. #define LASATINT_PCID 8
  61. int __init pcibios_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  62. {
  63. switch (slot) {
  64. case 1:
  65. return LASATINT_PCIA; /* Expansion Module 0 */
  66. case 2:
  67. return LASATINT_PCIB; /* Expansion Module 1 */
  68. case 3:
  69. return LASATINT_PCIC; /* Expansion Module 2 */
  70. case 4:
  71. return LASATINT_ETH1; /* Ethernet 1 (LAN 2) */
  72. case 5:
  73. return LASATINT_ETH0; /* Ethernet 0 (LAN 1) */
  74. case 6:
  75. return LASATINT_HDC; /* IDE controller */
  76. default:
  77. return 0xff; /* Illegal */
  78. }
  79. return -1;
  80. }
  81. /* Do platform specific device initialization at pci_enable_device() time */
  82. int pcibios_plat_dev_init(struct pci_dev *dev)
  83. {
  84. return 0;
  85. }