mac_oss.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * OSS
  3. *
  4. * This is used in place of VIA2 on the IIfx.
  5. */
  6. #define OSS_BASE (0x50f1a000)
  7. /*
  8. * Interrupt level offsets for mac_oss->irq_level
  9. */
  10. #define OSS_NUBUS0 0
  11. #define OSS_NUBUS1 1
  12. #define OSS_NUBUS2 2
  13. #define OSS_NUBUS3 3
  14. #define OSS_NUBUS4 4
  15. #define OSS_NUBUS5 5
  16. #define OSS_IOPISM 6
  17. #define OSS_IOPSCC 7
  18. #define OSS_SOUND 8
  19. #define OSS_SCSI 9
  20. #define OSS_60HZ 10
  21. #define OSS_VIA1 11
  22. #define OSS_UNUSED1 12
  23. #define OSS_UNUSED2 13
  24. #define OSS_PARITY 14
  25. #define OSS_UNUSED3 15
  26. #define OSS_NUM_SOURCES 16
  27. /*
  28. * Pending interrupt bits in mac_oss->irq_pending
  29. */
  30. #define OSS_IP_NUBUS0 0x0001
  31. #define OSS_IP_NUBUS1 0x0002
  32. #define OSS_IP_NUBUS2 0x0004
  33. #define OSS_IP_NUBUS3 0x0008
  34. #define OSS_IP_NUBUS4 0x0010
  35. #define OSS_IP_NUBUS5 0x0020
  36. #define OSS_IP_IOPISM 0x0040
  37. #define OSS_IP_IOPSCC 0x0080
  38. #define OSS_IP_SOUND 0x0100
  39. #define OSS_IP_SCSI 0x0200
  40. #define OSS_IP_60HZ 0x0400
  41. #define OSS_IP_VIA1 0x0800
  42. #define OSS_IP_UNUSED1 0x1000
  43. #define OSS_IP_UNUSED2 0x2000
  44. #define OSS_IP_PARITY 0x4000
  45. #define OSS_IP_UNUSED3 0x8000
  46. #define OSS_IP_NUBUS (OSS_IP_NUBUS0|OSS_IP_NUBUS1|OSS_IP_NUBUS2|OSS_IP_NUBUS3|OSS_IP_NUBUS4|OSS_IP_NUBUS5)
  47. /*
  48. * Rom Control Register
  49. */
  50. #define OSS_POWEROFF 0x80
  51. /*
  52. * OSS Interrupt levels for various sub-systems
  53. *
  54. * This mapping is layed out with two things in mind: first, we try to keep
  55. * things on their own levels to avoid having to do double-dispatches. Second,
  56. * the levels match as closely as possible the alternate IRQ mapping mode (aka
  57. * "A/UX mode") available on some VIA machines.
  58. */
  59. #define OSS_IRQLEV_DISABLED 0
  60. #define OSS_IRQLEV_IOPISM 1 /* ADB? */
  61. #define OSS_IRQLEV_SCSI IRQ_AUTO_2
  62. #define OSS_IRQLEV_NUBUS IRQ_AUTO_3 /* keep this on its own level */
  63. #define OSS_IRQLEV_IOPSCC IRQ_AUTO_4 /* matches VIA alternate mapping */
  64. #define OSS_IRQLEV_SOUND IRQ_AUTO_5 /* matches VIA alternate mapping */
  65. #define OSS_IRQLEV_60HZ 6 /* matches VIA alternate mapping */
  66. #define OSS_IRQLEV_VIA1 IRQ_AUTO_6 /* matches VIA alternate mapping */
  67. #define OSS_IRQLEV_PARITY 7 /* matches VIA alternate mapping */
  68. #ifndef __ASSEMBLY__
  69. struct mac_oss {
  70. __u8 irq_level[0x10]; /* [0x000-0x00f] Interrupt levels */
  71. __u8 padding0[0x1F2]; /* [0x010-0x201] IO space filler */
  72. __u16 irq_pending; /* [0x202-0x203] pending interrupts bits */
  73. __u8 rom_ctrl; /* [0x204-0x204] ROM cntl reg (for poweroff) */
  74. __u8 padding1[0x2]; /* [0x205-0x206] currently unused by A/UX */
  75. __u8 ack_60hz; /* [0x207-0x207] 60 Hz ack. */
  76. };
  77. extern volatile struct mac_oss *oss;
  78. extern int oss_present;
  79. #endif /* __ASSEMBLY__ */