1 /* $NetBSD: psc.h,v 1.4.36.4 2005/01/17 19:29:35 skrll Exp $ */
4 * Copyright (c) 1997 David Huang <khym@azeotrope.org>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. The name of the author may not be used to endorse or promote products
13 * derived from this software without specific prior written permission
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 * Some register definitions for the PSC, present only on the
30 * Centris/Quadra 660av and the Quadra 840av.
33 extern volatile u_int8_t
*PSCBase
;
35 #define psc_reg1(r) (*((volatile u_int8_t *)(PSCBase+r)))
36 #define psc_reg2(r) (*((volatile u_int16_t *)(PSCBase+r)))
37 #define psc_reg4(r) (*((volatile u_int32_t *)(PSCBase+r)))
41 int add_psc_lev3_intr(void (*)(void *), void *);
42 int add_psc_lev4_intr(int, int (*)(void *), void *);
43 int add_psc_lev5_intr(int, void (*)(void *), void *);
44 int add_psc_lev6_intr(int, void (*)(void *), void *);
46 int remove_psc_lev3_intr(void);
47 int remove_psc_lev4_intr(int);
48 int remove_psc_lev5_intr(int);
49 int remove_psc_lev6_intr(int);
52 * Reading an interrupt status register returns a mask of the
53 * currently interrupting devices (one bit per device). Reading an
54 * interrupt enable register returns a mask of the currently enabled
55 * devices. Writing an interrupt enable register with the MSB set
56 * enables the interrupts in the lower 4 bits, while writing with the
57 * MSB clear disables the corresponding interrupts.
58 * e.g. write 0x81 to enable device 0, write 0x86 to enable devices 1
59 * and 2, write 0x02 to disable device 1.
61 * Level 3 device 0 is MACE
62 * Level 4 device 0 is 3210 DSP?
63 * Level 4 device 1 is SCC channel A (modem port)
64 * Level 4 device 2 is SCC channel B (printer port)
65 * Level 4 device 3 is MACE DMA completion
66 * Level 5 device 0 is 3210 DSP?
67 * Level 5 device 1 is 3210 DSP?
68 * Level 6 device 0 is ?
69 * Level 6 device 1 is ?
70 * Level 6 device 2 is ?
73 /* PSC interrupt registers */
74 #define PSC_ISR_BASE 0x100 /* ISR is BASE + 0x10 * level */
75 #define PSC_IER_BASE 0x104 /* IER is BASE + 0x10 * level */
77 #define PSC_LEV3_ISR 0x130 /* level 3 interrupt status register */
78 #define PSC_LEV3_IER 0x134 /* level 3 interrupt enable register */
79 #define PSCINTR_ENET 0 /* Ethernet interrupt */
81 #define PSC_LEV4_ISR 0x140 /* level 4 interrupt status register */
82 #define PSC_LEV4_IER 0x144 /* level 4 interrupt enable register */
83 #define PSCINTR_SCCA 1 /* SCC channel A interrupt */
84 #define PSCINTR_SCCB 2 /* SCC channel B interrupt */
85 #define PSCINTR_ENET_DMA 3 /* Ethernet DMA completion interrupt */
87 #define PSC_LEV5_ISR 0x150 /* level 5 interrupt status register */
88 #define PSC_LEV5_IER 0x154 /* level 5 interrupt enable register */
90 #define PSC_LEV6_ISR 0x160 /* level 6 interrupt status register */
91 #define PSC_LEV6_IER 0x164 /* level 6 interrupt enable register */
93 /* PSC DMA channel control registers */
94 #define PSC_CTLBASE 0xc00
96 #define PSC_SCSI_CTL 0xc00 /* SCSI control/status */
97 #define PSC_ENETRD_CTL 0xc10 /* MACE receive DMA channel control/status */
98 #define PSC_ENETWR_CTL 0xc20 /* MACE transmit DMA channel control/status */
99 #define PSC_FDC_CTL 0xc30 /* Floppy disk */
100 #define PSC_SCCA_CTL 0xc40 /* SCC channel A */
101 #define PSC_SCCB_CTL 0xc50 /* SCC channel B */
102 #define PSC_SCCATX_CTL 0xc60 /* SCC channel A transmit */
104 /* PSC DMA channels */
105 #define PSC_ADDRBASE 0x1000
106 #define PSC_LENBASE 0x1004
107 #define PSC_CMDBASE 0x1008
109 #define PSC_SCSI_ADDR 0x1000 /* SCSI DMA address register */
110 #define PSC_SCSI_LEN 0x1004 /* SCSI DMA buffer count */
111 #define PSC_SCSI_CMD 0x1008 /* SCSI DMA command register */
112 #define PSC_ENETRD_ADDR 0x1020 /* MACE receive DMA address register */
113 #define PSC_ENETRD_LEN 0x1024 /* MACE receive DMA buffer count */
114 #define PSC_ENETRD_CMD 0x1028 /* MACE receive DMA command register */
115 #define PSC_ENETWR_ADDR 0x1040 /* MACE transmit DMA address register */
116 #define PSC_ENETWR_LEN 0x1044 /* MACE transmit DMA length */
117 #define PSC_ENETWR_CMD 0x1048 /* MACE transmit DMA command register */
120 * PSC DMA channels are controlled by two sets of registers (see p.29
121 * of the Quadra 840av and Centris 660av Developer Note). Add the
122 * following offsets to get the desired register set.
124 #define PSC_SET0 0x00
125 #define PSC_SET1 0x10