macints.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. ** macints.h -- Macintosh Linux interrupt handling structs and prototypes
  3. **
  4. ** Copyright 1997 by Michael Schmitz
  5. **
  6. ** This file is subject to the terms and conditions of the GNU General Public
  7. ** License. See the file COPYING in the main directory of this archive
  8. ** for more details.
  9. **
  10. */
  11. #ifndef _ASM_MACINTS_H_
  12. #define _ASM_MACINTS_H_
  13. #include <asm/irq.h>
  14. /*
  15. * Base IRQ number for all Mac68K interrupt sources. Each source
  16. * has eight indexes (base -> base+7).
  17. */
  18. #define VIA1_SOURCE_BASE 8
  19. #define VIA2_SOURCE_BASE 16
  20. #define PSC3_SOURCE_BASE 24
  21. #define PSC4_SOURCE_BASE 32
  22. #define PSC5_SOURCE_BASE 40
  23. #define PSC6_SOURCE_BASE 48
  24. #define NUBUS_SOURCE_BASE 56
  25. #define BABOON_SOURCE_BASE 64
  26. /*
  27. * Maximum IRQ number is BABOON_SOURCE_BASE + 7,
  28. * giving us IRQs up through 71
  29. */
  30. #define NUM_MAC_SOURCES 72
  31. /*
  32. * clean way to separate IRQ into its source and index
  33. */
  34. #define IRQ_SRC(irq) (irq >> 3)
  35. #define IRQ_IDX(irq) (irq & 7)
  36. /* VIA1 interrupts */
  37. #define IRQ_VIA1_0 (8) /* one second int. */
  38. #define IRQ_VIA1_1 (9) /* VBlank int. */
  39. #define IRQ_MAC_VBL IRQ_VIA1_1
  40. #define IRQ_VIA1_2 (10) /* ADB SR shifts complete */
  41. #define IRQ_MAC_ADB IRQ_VIA1_2
  42. #define IRQ_MAC_ADB_SR IRQ_VIA1_2
  43. #define IRQ_VIA1_3 (11) /* ADB SR CB2 ?? */
  44. #define IRQ_MAC_ADB_SD IRQ_VIA1_3
  45. #define IRQ_VIA1_4 (12) /* ADB SR ext. clock pulse */
  46. #define IRQ_MAC_ADB_CL IRQ_VIA1_4
  47. #define IRQ_VIA1_5 (13)
  48. #define IRQ_MAC_TIMER_2 IRQ_VIA1_5
  49. #define IRQ_VIA1_6 (14)
  50. #define IRQ_MAC_TIMER_1 IRQ_VIA1_6
  51. #define IRQ_VIA1_7 (15)
  52. /* VIA2/RBV interrupts */
  53. #define IRQ_VIA2_0 (16)
  54. #define IRQ_MAC_SCSIDRQ IRQ_VIA2_0
  55. #define IRQ_VIA2_1 (17)
  56. #define IRQ_MAC_NUBUS IRQ_VIA2_1
  57. #define IRQ_VIA2_2 (18)
  58. #define IRQ_VIA2_3 (19)
  59. #define IRQ_MAC_SCSI IRQ_VIA2_3
  60. #define IRQ_VIA2_4 (20)
  61. #define IRQ_VIA2_5 (21)
  62. #define IRQ_VIA2_6 (22)
  63. #define IRQ_VIA2_7 (23)
  64. /* Level 3 (PSC, AV Macs only) interrupts */
  65. #define IRQ_PSC3_0 (24)
  66. #define IRQ_MAC_MACE IRQ_PSC3_0
  67. #define IRQ_PSC3_1 (25)
  68. #define IRQ_PSC3_2 (26)
  69. #define IRQ_PSC3_3 (27)
  70. /* Level 4 (PSC, AV Macs only) interrupts */
  71. #define IRQ_PSC4_0 (32)
  72. #define IRQ_PSC4_1 (33)
  73. #define IRQ_MAC_SCC_A IRQ_PSC4_1
  74. #define IRQ_PSC4_2 (34)
  75. #define IRQ_MAC_SCC_B IRQ_PSC4_2
  76. #define IRQ_PSC4_3 (35)
  77. #define IRQ_MAC_MACE_DMA IRQ_PSC4_3
  78. /* OSS Level 4 interrupts */
  79. #define IRQ_MAC_SCC (33)
  80. /* Level 5 (PSC, AV Macs only) interrupts */
  81. #define IRQ_PSC5_0 (40)
  82. #define IRQ_PSC5_1 (41)
  83. #define IRQ_PSC5_2 (42)
  84. #define IRQ_PSC5_3 (43)
  85. /* Level 6 (PSC, AV Macs only) interrupts */
  86. #define IRQ_PSC6_0 (48)
  87. #define IRQ_PSC6_1 (49)
  88. #define IRQ_PSC6_2 (50)
  89. #define IRQ_PSC6_3 (51)
  90. /* Nubus interrupts (cascaded to VIA2) */
  91. #define IRQ_NUBUS_9 (56)
  92. #define IRQ_NUBUS_A (57)
  93. #define IRQ_NUBUS_B (58)
  94. #define IRQ_NUBUS_C (59)
  95. #define IRQ_NUBUS_D (60)
  96. #define IRQ_NUBUS_E (61)
  97. #define IRQ_NUBUS_F (62)
  98. /* Baboon interrupts (cascaded to nubus slot $C) */
  99. #define IRQ_BABOON_0 (64)
  100. #define IRQ_BABOON_1 (65)
  101. #define IRQ_BABOON_2 (66)
  102. #define IRQ_BABOON_3 (67)
  103. #define SLOT2IRQ(x) (x + 47)
  104. #define IRQ2SLOT(x) (x - 47)
  105. #endif /* asm/macints.h */