4 * This is used in place of VIA2 on the IIfx.
7 #define OSS_BASE (0x50f1a000)
10 * Interrupt level offsets for mac_oss->irq_level
25 #define OSS_UNUSED1 12
26 #define OSS_UNUSED2 13
28 #define OSS_UNUSED3 15
30 #define OSS_NUM_SOURCES 16
33 * Pending interrupt bits in mac_oss->irq_pending
36 #define OSS_IP_NUBUS0 0x0001
37 #define OSS_IP_NUBUS1 0x0002
38 #define OSS_IP_NUBUS2 0x0004
39 #define OSS_IP_NUBUS3 0x0008
40 #define OSS_IP_NUBUS4 0x0010
41 #define OSS_IP_NUBUS5 0x0020
42 #define OSS_IP_IOPISM 0x0040
43 #define OSS_IP_IOPSCC 0x0080
44 #define OSS_IP_SOUND 0x0100
45 #define OSS_IP_SCSI 0x0200
46 #define OSS_IP_60HZ 0x0400
47 #define OSS_IP_VIA1 0x0800
48 #define OSS_IP_UNUSED1 0x1000
49 #define OSS_IP_UNUSED2 0x2000
50 #define OSS_IP_PARITY 0x4000
51 #define OSS_IP_UNUSED3 0x8000
53 #define OSS_IP_NUBUS (OSS_IP_NUBUS0|OSS_IP_NUBUS1|OSS_IP_NUBUS2|OSS_IP_NUBUS3|OSS_IP_NUBUS4|OSS_IP_NUBUS5)
56 * Rom Control Register
59 #define OSS_POWEROFF 0x80
64 __u8 irq_level
[0x10]; /* [0x000-0x00f] Interrupt levels */
65 __u8 padding0
[0x1F2]; /* [0x010-0x201] IO space filler */
66 __u16 irq_pending
; /* [0x202-0x203] pending interrupts bits */
67 __u8 rom_ctrl
; /* [0x204-0x204] ROM cntl reg (for poweroff) */
68 __u8 padding1
[0x2]; /* [0x205-0x206] currently unused by A/UX */
69 __u8 ack_60hz
; /* [0x207-0x207] 60 Hz ack. */
72 extern volatile struct mac_oss
*oss
;
73 extern int oss_present
;
75 extern void oss_register_interrupts(void);
76 extern void oss_irq_enable(int);
77 extern void oss_irq_disable(int);
79 #endif /* __ASSEMBLY__ */