dzreg.h revision 1.3 1 1.3 ad /* $NetBSD: dzreg.h,v 1.3 2003/12/13 23:02:33 ad Exp $ */
2 1.1 ad /*
3 1.1 ad * Copyright (c) 1996 Ken C. Wellsch. All rights reserved.
4 1.1 ad *
5 1.1 ad * Redistribution and use in source and binary forms, with or without
6 1.1 ad * modification, are permitted provided that the following conditions
7 1.1 ad * are met:
8 1.1 ad * 1. Redistributions of source code must retain the above copyright
9 1.1 ad * notice, this list of conditions and the following disclaimer.
10 1.1 ad * 2. The name of the author may not be used to endorse or promote products
11 1.1 ad * derived from this software without specific prior written permission
12 1.1 ad *
13 1.1 ad * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 1.1 ad * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 1.1 ad * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 1.1 ad * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 1.1 ad * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 1.1 ad * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 1.1 ad * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 1.1 ad * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 1.1 ad * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 1.1 ad * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 1.1 ad */
24 1.1 ad
25 1.2 matt #ifndef _DEV_DEC_DZREG_H
26 1.2 matt #define _DEV_DEC_DZREG_H
27 1.2 matt
28 1.1 ad union w_b
29 1.1 ad {
30 1.1 ad u_short word;
31 1.1 ad struct {
32 1.1 ad u_char byte_lo;
33 1.1 ad u_char byte_hi;
34 1.1 ad } bytes;
35 1.1 ad };
36 1.1 ad
37 1.1 ad struct DZregs
38 1.1 ad {
39 1.1 ad volatile u_short dz_csr; /* Control/Status Register (R/W) */
40 1.1 ad volatile u_short dz_rbuf; /* Receive Buffer (R only) */
41 1.1 ad #define dz_lpr dz_rbuf /* Line Parameter Register (W only) */
42 1.1 ad volatile union w_b u_tcr; /* Transmit Control Register (R/W) */
43 1.1 ad volatile union w_b u_msr; /* Modem Status Register (R only) */
44 1.1 ad #define u_tdr u_msr /* Transmit Data Register (W only) */
45 1.1 ad };
46 1.1 ad
47 1.1 ad #define dz_tcr u_tcr.bytes.byte_lo /* tx enable bits */
48 1.1 ad #define dz_dtr u_tcr.bytes.byte_hi /* DTR status bits */
49 1.1 ad #define dz_ring u_msr.bytes.byte_lo /* RI status bits */
50 1.1 ad #define dz_dcd u_msr.bytes.byte_hi /* DCD status bits */
51 1.1 ad #define dz_tbuf u_tdr.bytes.byte_lo /* transmit character */
52 1.1 ad #define dz_break u_tdr.bytes.byte_hi /* BREAK set/clr bits */
53 1.1 ad
54 1.1 ad typedef struct DZregs dzregs;
55 1.1 ad
56 1.1 ad struct dz_regs {
57 1.1 ad bus_addr_t dr_csr;
58 1.1 ad bus_addr_t dr_rbuf;
59 1.1 ad #define dr_lpr dr_rbuf
60 1.1 ad bus_addr_t dr_dtr;
61 1.1 ad bus_addr_t dr_break;
62 1.1 ad bus_addr_t dr_tbuf;
63 1.1 ad bus_addr_t dr_tcr;
64 1.1 ad bus_addr_t dr_tcrw;
65 1.1 ad bus_addr_t dr_ring;
66 1.1 ad bus_addr_t dr_dcd;
67 1.3 ad
68 1.3 ad bus_addr_t dr_firstreg;
69 1.3 ad bus_addr_t dr_winsize;
70 1.1 ad };
71 1.1 ad #define DZ_UBA_CSR 0
72 1.1 ad #define DZ_UBA_RBUF 2
73 1.1 ad #define DZ_UBA_DTR 5
74 1.1 ad #define DZ_UBA_BREAK 7
75 1.1 ad #define DZ_UBA_TBUF 6
76 1.1 ad #define DZ_UBA_TCR 4
77 1.1 ad #define DZ_UBA_DCD 7
78 1.1 ad #define DZ_UBA_RING 6
79 1.1 ad
80 1.3 ad #define DZ_UBA_FIRSTREG 0
81 1.3 ad #define DZ_UBA_WINSIZE 8
82 1.1 ad
83 1.1 ad /* CSR bits */
84 1.1 ad
85 1.1 ad #define DZ_CSR_TX_READY 0100000 /* Transmitter Ready */
86 1.1 ad #define DZ_CSR_TXIE 0040000 /* Transmitter Interrupt Enable */
87 1.1 ad #define DZ_CSR_SA 0020000 /* Silo Alarm */
88 1.1 ad #define DZ_CSR_SAE 0010000 /* Silo Alarm Enable */
89 1.1 ad #define DZ_CSR_TX_LINE_MASK 0007400 /* Which TX line */
90 1.1 ad
91 1.1 ad #define DZ_CSR_RX_DONE 0000200 /* Receiver Done */
92 1.1 ad #define DZ_CSR_RXIE 0000100 /* Receiver Interrupt Enable */
93 1.1 ad #define DZ_CSR_MSE 0000040 /* Master Scan Enable */
94 1.1 ad #define DZ_CSR_RESET 0000020 /* Clear (reset) Controller */
95 1.1 ad #define DZ_CSR_MAINTENANCE 0000010
96 1.1 ad #define DZ_CSR_UNUSED 0000007
97 1.1 ad
98 1.1 ad /* RBUF bits */
99 1.1 ad
100 1.1 ad #define DZ_RBUF_DATA_VALID 0100000
101 1.1 ad #define DZ_RBUF_OVERRUN_ERR 0040000
102 1.1 ad #define DZ_RBUF_FRAMING_ERR 0020000
103 1.1 ad #define DZ_RBUF_PARITY_ERR 0010000
104 1.1 ad #define DZ_RBUF_RX_LINE_MASK 0007400
105 1.1 ad
106 1.1 ad /* LPR bits */
107 1.1 ad
108 1.1 ad #define DZ_LPR_UNUSED 0160000
109 1.1 ad #define DZ_LPR_RX_ENABLE 0010000
110 1.1 ad
111 1.1 ad #define DZ_LPR_B50 0x0
112 1.1 ad #define DZ_LPR_B75 0x1
113 1.1 ad #define DZ_LPR_B110 0x2
114 1.1 ad #define DZ_LPR_B134 0x3
115 1.1 ad #define DZ_LPR_B150 0x4
116 1.1 ad #define DZ_LPR_B300 0x5
117 1.1 ad #define DZ_LPR_B600 0x6
118 1.1 ad #define DZ_LPR_B1200 0x7
119 1.1 ad #define DZ_LPR_B1800 0x8
120 1.1 ad #define DZ_LPR_B2000 0x9
121 1.1 ad #define DZ_LPR_B2400 0xA
122 1.1 ad #define DZ_LPR_B3600 0xB
123 1.1 ad #define DZ_LPR_B4800 0xC
124 1.1 ad #define DZ_LPR_B7200 0xD
125 1.1 ad #define DZ_LPR_B9600 0xE
126 1.1 ad #define DZ_LPR_B19200 0xF
127 1.1 ad
128 1.1 ad #define DZ_LPR_OPAR 0000200
129 1.1 ad #define DZ_LPR_PARENB 0000100
130 1.1 ad #define DZ_LPR_2_STOP 0000040
131 1.1 ad
132 1.1 ad #define DZ_LPR_5_BIT_CHAR 0000000
133 1.1 ad #define DZ_LPR_6_BIT_CHAR 0000010
134 1.1 ad #define DZ_LPR_7_BIT_CHAR 0000020
135 1.1 ad #define DZ_LPR_8_BIT_CHAR 0000030
136 1.1 ad
137 1.1 ad #define DZ_LPR_CHANNEL_MASK 0000007
138 1.2 matt
139 1.2 matt #endif /* _DEV_DEC_DZREG_H */
140