zs_kgdb.c revision 1.6 1 1.6 gwr /* $NetBSD: zs_kgdb.c,v 1.6 1996/06/17 15:40:36 gwr Exp $ */
2 1.1 gwr
3 1.1 gwr /*
4 1.1 gwr * Copyright (c) 1994 Gordon W. Ross
5 1.1 gwr * Copyright (c) 1992, 1993
6 1.1 gwr * The Regents of the University of California. All rights reserved.
7 1.1 gwr *
8 1.1 gwr * This software was developed by the Computer Systems Engineering group
9 1.1 gwr * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
10 1.1 gwr * contributed to Berkeley.
11 1.1 gwr *
12 1.1 gwr * All advertising materials mentioning features or use of this software
13 1.1 gwr * must display the following acknowledgement:
14 1.1 gwr * This product includes software developed by the University of
15 1.1 gwr * California, Lawrence Berkeley Laboratory.
16 1.1 gwr *
17 1.1 gwr * Redistribution and use in source and binary forms, with or without
18 1.1 gwr * modification, are permitted provided that the following conditions
19 1.1 gwr * are met:
20 1.1 gwr * 1. Redistributions of source code must retain the above copyright
21 1.1 gwr * notice, this list of conditions and the following disclaimer.
22 1.1 gwr * 2. Redistributions in binary form must reproduce the above copyright
23 1.1 gwr * notice, this list of conditions and the following disclaimer in the
24 1.1 gwr * documentation and/or other materials provided with the distribution.
25 1.1 gwr * 3. All advertising materials mentioning features or use of this software
26 1.1 gwr * must display the following acknowledgement:
27 1.1 gwr * This product includes software developed by the University of
28 1.1 gwr * California, Berkeley and its contributors.
29 1.1 gwr * 4. Neither the name of the University nor the names of its contributors
30 1.1 gwr * may be used to endorse or promote products derived from this software
31 1.1 gwr * without specific prior written permission.
32 1.1 gwr *
33 1.1 gwr * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
34 1.1 gwr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
35 1.1 gwr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
36 1.1 gwr * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
37 1.1 gwr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
38 1.1 gwr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
39 1.1 gwr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
40 1.1 gwr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
41 1.1 gwr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
42 1.1 gwr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
43 1.1 gwr * SUCH DAMAGE.
44 1.1 gwr *
45 1.1 gwr * @(#)zs.c 8.1 (Berkeley) 7/19/93
46 1.1 gwr */
47 1.1 gwr
48 1.1 gwr /*
49 1.1 gwr * Hooks for kgdb when attached vi the z8530 driver
50 1.1 gwr * XXX - not tested yet...
51 1.2 gwr *
52 1.2 gwr * To use this, build a kernel with: option KGDB, and
53 1.2 gwr * boot that kernel with "-d". (The kernel will call
54 1.2 gwr * zs_kgdb_init, kgdb_connect.) When the console prints
55 1.2 gwr * "kgdb waiting..." you run "gdb -k kernel" and then
56 1.2 gwr * connect to the remote using: "target remote /dev/ttyX"
57 1.1 gwr */
58 1.1 gwr
59 1.1 gwr #include <sys/param.h>
60 1.1 gwr #include <sys/systm.h>
61 1.1 gwr #include <sys/proc.h>
62 1.1 gwr #include <sys/device.h>
63 1.1 gwr #include <sys/conf.h>
64 1.1 gwr #include <sys/ioctl.h>
65 1.1 gwr #include <sys/kernel.h>
66 1.1 gwr #include <sys/syslog.h>
67 1.1 gwr
68 1.1 gwr #include <dev/ic/z8530reg.h>
69 1.1 gwr #include <machine/z8530var.h>
70 1.1 gwr
71 1.1 gwr #include <machine/remote-sl.h>
72 1.1 gwr
73 1.1 gwr /* The Sun3 provides a 4.9152 MHz clock to the ZS chips. */
74 1.1 gwr #define PCLK (9600 * 512) /* PCLK pin input clock rate */
75 1.6 gwr #define ZSHARD_PRI 6 /* Wired on the CPU board... */
76 1.1 gwr
77 1.3 gwr #define ZS_DELAY() delay(2)
78 1.2 gwr
79 1.6 gwr /* The layout of this is hardware-dependent (padding, order). */
80 1.6 gwr struct zschan {
81 1.6 gwr volatile u_char zc_csr; /* ctrl,status, and indirect access */
82 1.6 gwr u_char zc_xxx0;
83 1.6 gwr volatile u_char zc_data; /* data */
84 1.6 gwr u_char zc_xxx1;
85 1.6 gwr };
86 1.6 gwr
87 1.1 gwr extern int kgdb_dev;
88 1.1 gwr extern int kgdb_rate;
89 1.1 gwr
90 1.1 gwr struct zschan * zs_get_chan_addr __P((int zsc_unit, int channel));
91 1.1 gwr
92 1.1 gwr extern int zs_getc __P((void *arg));
93 1.1 gwr extern void zs_putc __P((void *arg, int c));
94 1.1 gwr
95 1.1 gwr struct zsops zsops_kgdb;
96 1.1 gwr
97 1.1 gwr static u_char zs_kgdb_regs[16] = {
98 1.1 gwr 0, /* 0: CMD (reset, etc.) */
99 1.1 gwr ZSWR1_RIE, /* NOT: (ZSWR1_TIE | ZSWR1_SIE) */
100 1.1 gwr 0x18 + ZSHARD_PRI, /* IVECT */
101 1.1 gwr ZSWR3_RX_8 | ZSWR3_RX_ENABLE,
102 1.1 gwr ZSWR4_CLK_X16 | ZSWR4_ONESB | ZSWR4_EVENP,
103 1.1 gwr ZSWR5_TX_8 | ZSWR5_TX_ENABLE,
104 1.1 gwr 0, /* 6: TXSYNC/SYNCLO */
105 1.1 gwr 0, /* 7: RXSYNC/SYNCHI */
106 1.1 gwr 0, /* 8: alias for data port */
107 1.1 gwr ZSWR9_MASTER_IE,
108 1.1 gwr 0, /*10: Misc. TX/RX control bits */
109 1.1 gwr ZSWR11_TXCLK_BAUD | ZSWR11_RXCLK_BAUD,
110 1.1 gwr 14, /*12: BAUDLO (default=9600) */
111 1.1 gwr 0, /*13: BAUDHI (default=9600) */
112 1.1 gwr ZSWR14_BAUD_FROM_PCLK | ZSWR14_BAUD_ENA,
113 1.1 gwr ZSWR15_BREAK_IE | ZSWR15_DCD_IE,
114 1.1 gwr };
115 1.1 gwr
116 1.6 gwr /*
117 1.6 gwr * This replaces "zs_reset()" in the sparc driver.
118 1.6 gwr */
119 1.1 gwr static void
120 1.1 gwr zs_setparam(cs, iena, rate)
121 1.1 gwr struct zs_chanstate *cs;
122 1.1 gwr int iena;
123 1.1 gwr int rate;
124 1.1 gwr {
125 1.1 gwr int s, tconst;
126 1.1 gwr
127 1.1 gwr bcopy(zs_kgdb_regs, cs->cs_preg, 16);
128 1.1 gwr
129 1.1 gwr if (iena == 0) {
130 1.1 gwr cs->cs_preg[1] = 0;
131 1.1 gwr }
132 1.1 gwr
133 1.1 gwr /* Initialize the speed, etc. */
134 1.4 gwr tconst = BPS_TO_TCONST(cs->cs_brg_clk, rate);
135 1.1 gwr cs->cs_preg[5] |= ZSWR5_DTR | ZSWR5_RTS;
136 1.1 gwr cs->cs_preg[12] = tconst;
137 1.1 gwr cs->cs_preg[13] = tconst >> 8;
138 1.1 gwr
139 1.1 gwr s = splhigh();
140 1.1 gwr zs_loadchannelregs(cs);
141 1.1 gwr splx(s);
142 1.6 gwr }
143 1.1 gwr
144 1.1 gwr /*
145 1.1 gwr * Set up for kgdb; called at boot time before configuration.
146 1.1 gwr * KGDB interrupts will be enabled later when zs0 is configured.
147 1.1 gwr */
148 1.1 gwr void
149 1.1 gwr zs_kgdb_init()
150 1.1 gwr {
151 1.1 gwr struct zs_chanstate cs;
152 1.1 gwr volatile struct zschan *zc;
153 1.1 gwr int channel, zsc_unit;
154 1.1 gwr
155 1.6 gwr if (major(kgdb_dev) != ZSTTY_MAJOR)
156 1.1 gwr return;
157 1.1 gwr
158 1.6 gwr /* Note: (ttya,ttyb) on zsc1, and (ttyc,ttyd) on zsc0 */
159 1.6 gwr zsc_unit = 2 - (kgdb_dev & 2);
160 1.6 gwr channel = kgdb_dev & 1;
161 1.1 gwr printf("zs_kgdb_init: attaching zstty%d at %d baud\n",
162 1.1 gwr channel, kgdb_rate);
163 1.1 gwr
164 1.1 gwr /* Setup temporary chanstate. */
165 1.1 gwr bzero((caddr_t)&cs, sizeof(cs));
166 1.1 gwr zc = zs_get_chan_addr(zsc_unit, channel);
167 1.1 gwr cs.cs_reg_csr = &zc->zc_csr;
168 1.1 gwr cs.cs_reg_data = &zc->zc_data;
169 1.1 gwr cs.cs_channel = channel;
170 1.4 gwr cs.cs_brg_clk = PCLK / 16;
171 1.1 gwr
172 1.1 gwr /* Now set parameters. (interrupts disabled) */
173 1.1 gwr zs_setparam(&cs, 0, kgdb_rate);
174 1.1 gwr
175 1.1 gwr /* Store the getc/putc functions and arg. */
176 1.1 gwr kgdb_attach(zs_getc, zs_putc, (void *)zc);
177 1.1 gwr }
178 1.1 gwr
179 1.1 gwr /*
180 1.1 gwr * This is a "hook" called by zstty_attach to allow the tty
181 1.1 gwr * to be "taken over" for exclusive use by kgdb.
182 1.1 gwr * Return non-zero if this is the kgdb port.
183 1.1 gwr *
184 1.1 gwr * Set the speed to kgdb_rate, CS8, etc.
185 1.1 gwr */
186 1.1 gwr int
187 1.1 gwr zs_check_kgdb(cs, dev)
188 1.1 gwr struct zs_chanstate *cs;
189 1.1 gwr int dev;
190 1.1 gwr {
191 1.1 gwr int tconst;
192 1.1 gwr
193 1.1 gwr if (dev != kgdb_dev)
194 1.1 gwr return (0);
195 1.1 gwr
196 1.1 gwr /*
197 1.1 gwr * Yes, this is the kgdb port. Finish the autoconfig
198 1.1 gwr * message and set up the port for our exclusive use.
199 1.1 gwr */
200 1.2 gwr printf(" (kgdb)\n");
201 1.1 gwr
202 1.1 gwr cs->cs_private = NULL;
203 1.1 gwr cs->cs_ops = &zsops_kgdb;
204 1.1 gwr
205 1.1 gwr /* Now set parameters. (interrupts enabled) */
206 1.1 gwr zs_setparam(&cs, 1, kgdb_rate);
207 1.1 gwr
208 1.1 gwr return (1);
209 1.1 gwr }
210 1.1 gwr
211 1.1 gwr /*
212 1.1 gwr * KGDB framing character received: enter kernel debugger. This probably
213 1.1 gwr * should time out after a few seconds to avoid hanging on spurious input.
214 1.1 gwr */
215 1.1 gwr zskgdb()
216 1.1 gwr {
217 1.6 gwr int unit = minor(kgdb_dev);
218 1.1 gwr
219 1.1 gwr printf("zstty%d: kgdb interrupt\n", unit);
220 1.1 gwr /* This will trap into the debugger. */
221 1.1 gwr kgdb_connect(1);
222 1.1 gwr }
223 1.1 gwr
224 1.1 gwr
225 1.1 gwr /****************************************************************
226 1.1 gwr * Interface to the lower layer (zscc)
227 1.1 gwr ****************************************************************/
228 1.1 gwr
229 1.1 gwr int kgdb_input_lost;
230 1.1 gwr
231 1.6 gwr static void
232 1.1 gwr zs_kgdb_rxint(cs)
233 1.1 gwr register struct zs_chanstate *cs;
234 1.1 gwr {
235 1.1 gwr register u_char c, rr1;
236 1.1 gwr
237 1.1 gwr /* Read the input data ASAP. */
238 1.2 gwr c = zs_read_data(cs);
239 1.1 gwr
240 1.1 gwr /* Save the status register too. */
241 1.2 gwr rr1 = zs_read_reg(cs, 1);
242 1.1 gwr
243 1.1 gwr if (rr1 & (ZSRR1_FE | ZSRR1_DO | ZSRR1_PE)) {
244 1.1 gwr /* Clear the receive error. */
245 1.2 gwr zs_write_csr(cs, ZSWR0_RESET_ERRORS);
246 1.1 gwr }
247 1.1 gwr
248 1.1 gwr if (c == FRAME_START) {
249 1.1 gwr zskgdb();
250 1.1 gwr } else {
251 1.1 gwr kgdb_input_lost++;
252 1.1 gwr }
253 1.1 gwr }
254 1.1 gwr
255 1.6 gwr static void
256 1.1 gwr zs_kgdb_txint(cs)
257 1.1 gwr register struct zs_chanstate *cs;
258 1.1 gwr {
259 1.2 gwr register int rr0;
260 1.1 gwr
261 1.2 gwr rr0 = zs_read_csr(cs);
262 1.2 gwr zs_write_csr(cs, ZSWR0_RESET_TXINT);
263 1.1 gwr }
264 1.1 gwr
265 1.6 gwr static void
266 1.1 gwr zs_kgdb_stint(cs)
267 1.1 gwr register struct zs_chanstate *cs;
268 1.1 gwr {
269 1.1 gwr register int rr0;
270 1.1 gwr
271 1.2 gwr rr0 = zs_read_csr(cs);
272 1.2 gwr zs_write_csr(cs, ZSWR0_RESET_STATUS);
273 1.1 gwr }
274 1.1 gwr
275 1.6 gwr static void
276 1.1 gwr zs_kgdb_softint(cs)
277 1.1 gwr struct zs_chanstate *cs;
278 1.1 gwr {
279 1.1 gwr printf("zs_kgdb_softint?\n");
280 1.1 gwr }
281 1.1 gwr
282 1.1 gwr struct zsops zsops_kgdb = {
283 1.1 gwr zs_kgdb_rxint, /* receive char available */
284 1.1 gwr zs_kgdb_stint, /* external/status */
285 1.1 gwr zs_kgdb_txint, /* xmit buffer empty */
286 1.1 gwr zs_kgdb_softint, /* process software interrupt */
287 1.1 gwr };
288