mac_oss.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * OSS
  4. *
  5. * This is used in place of VIA2 on the IIfx.
  6. */
  7. #define OSS_BASE (0x50f1a000)
  8. /*
  9. * Interrupt level offsets for mac_oss->irq_level
  10. */
  11. #define OSS_NUBUS0 0
  12. #define OSS_NUBUS1 1
  13. #define OSS_NUBUS2 2
  14. #define OSS_NUBUS3 3
  15. #define OSS_NUBUS4 4
  16. #define OSS_NUBUS5 5
  17. #define OSS_IOPISM 6
  18. #define OSS_IOPSCC 7
  19. #define OSS_SOUND 8
  20. #define OSS_SCSI 9
  21. #define OSS_60HZ 10
  22. #define OSS_VIA1 11
  23. #define OSS_UNUSED1 12
  24. #define OSS_UNUSED2 13
  25. #define OSS_PARITY 14
  26. #define OSS_UNUSED3 15
  27. #define OSS_NUM_SOURCES 16
  28. /*
  29. * Pending interrupt bits in mac_oss->irq_pending
  30. */
  31. #define OSS_IP_NUBUS0 0x0001
  32. #define OSS_IP_NUBUS1 0x0002
  33. #define OSS_IP_NUBUS2 0x0004
  34. #define OSS_IP_NUBUS3 0x0008
  35. #define OSS_IP_NUBUS4 0x0010
  36. #define OSS_IP_NUBUS5 0x0020
  37. #define OSS_IP_IOPISM 0x0040
  38. #define OSS_IP_IOPSCC 0x0080
  39. #define OSS_IP_SOUND 0x0100
  40. #define OSS_IP_SCSI 0x0200
  41. #define OSS_IP_60HZ 0x0400
  42. #define OSS_IP_VIA1 0x0800
  43. #define OSS_IP_UNUSED1 0x1000
  44. #define OSS_IP_UNUSED2 0x2000
  45. #define OSS_IP_PARITY 0x4000
  46. #define OSS_IP_UNUSED3 0x8000
  47. #define OSS_IP_NUBUS (OSS_IP_NUBUS0|OSS_IP_NUBUS1|OSS_IP_NUBUS2|OSS_IP_NUBUS3|OSS_IP_NUBUS4|OSS_IP_NUBUS5)
  48. /*
  49. * Rom Control Register
  50. */
  51. #define OSS_POWEROFF 0x80
  52. #ifndef __ASSEMBLY__
  53. struct mac_oss {
  54. __u8 irq_level[0x10]; /* [0x000-0x00f] Interrupt levels */
  55. __u8 padding0[0x1F2]; /* [0x010-0x201] IO space filler */
  56. __u16 irq_pending; /* [0x202-0x203] pending interrupts bits */
  57. __u8 rom_ctrl; /* [0x204-0x204] ROM cntl reg (for poweroff) */
  58. __u8 padding1[0x2]; /* [0x205-0x206] currently unused by A/UX */
  59. __u8 ack_60hz; /* [0x207-0x207] 60 Hz ack. */
  60. };
  61. extern volatile struct mac_oss *oss;
  62. extern int oss_present;
  63. extern void oss_register_interrupts(void);
  64. extern void oss_irq_enable(int);
  65. extern void oss_irq_disable(int);
  66. #endif /* __ASSEMBLY__ */