zs_ap.c revision 1.2 1 1.2 tsubai /* $NetBSD: zs_ap.c,v 1.2 1999/12/23 06:52:30 tsubai Exp $ */
2 1.1 tsubai
3 1.1 tsubai /*-
4 1.1 tsubai * Copyright (c) 1996 The NetBSD Foundation, Inc.
5 1.1 tsubai * All rights reserved.
6 1.1 tsubai *
7 1.1 tsubai * This code is derived from software contributed to The NetBSD Foundation
8 1.1 tsubai * by Gordon W. Ross.
9 1.1 tsubai *
10 1.1 tsubai * Redistribution and use in source and binary forms, with or without
11 1.1 tsubai * modification, are permitted provided that the following conditions
12 1.1 tsubai * are met:
13 1.1 tsubai * 1. Redistributions of source code must retain the above copyright
14 1.1 tsubai * notice, this list of conditions and the following disclaimer.
15 1.1 tsubai * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 tsubai * notice, this list of conditions and the following disclaimer in the
17 1.1 tsubai * documentation and/or other materials provided with the distribution.
18 1.1 tsubai * 3. All advertising materials mentioning features or use of this software
19 1.1 tsubai * must display the following acknowledgement:
20 1.1 tsubai * This product includes software developed by the NetBSD
21 1.1 tsubai * Foundation, Inc. and its contributors.
22 1.1 tsubai * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 tsubai * contributors may be used to endorse or promote products derived
24 1.1 tsubai * from this software without specific prior written permission.
25 1.1 tsubai *
26 1.1 tsubai * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 tsubai * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 tsubai * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 tsubai * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 tsubai * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 tsubai * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 tsubai * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 tsubai * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 tsubai * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 tsubai * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 tsubai * POSSIBILITY OF SUCH DAMAGE.
37 1.1 tsubai */
38 1.1 tsubai
39 1.1 tsubai /*
40 1.1 tsubai * Zilog Z8530 Dual UART driver (machine-dependent part)
41 1.1 tsubai *
42 1.1 tsubai * Runs two serial lines per chip using slave drivers.
43 1.1 tsubai * Plain tty/async lines use the zs_async slave.
44 1.1 tsubai * Sun keyboard/mouse uses the zs_kbd/zs_ms slaves.
45 1.1 tsubai */
46 1.1 tsubai
47 1.1 tsubai #include <sys/param.h>
48 1.1 tsubai #include <sys/systm.h>
49 1.1 tsubai #include <sys/device.h>
50 1.1 tsubai #include <sys/tty.h>
51 1.1 tsubai
52 1.1 tsubai #include <machine/adrsmap.h>
53 1.1 tsubai #include <machine/cpu.h>
54 1.1 tsubai #include <machine/z8530var.h>
55 1.1 tsubai
56 1.1 tsubai #include <dev/cons.h>
57 1.1 tsubai #include <dev/ic/z8530reg.h>
58 1.1 tsubai
59 1.1 tsubai #include <newsmips/apbus/apbusvar.h>
60 1.1 tsubai
61 1.1 tsubai #include "zsc.h" /* NZSC */
62 1.1 tsubai #define NZS NZSC
63 1.1 tsubai
64 1.1 tsubai /* Make life easier for the initialized arrays here. */
65 1.1 tsubai #if NZS < 2
66 1.1 tsubai #undef NZS
67 1.1 tsubai #define NZS 2
68 1.1 tsubai #endif
69 1.1 tsubai
70 1.2 tsubai #define PORTB_XPORT 0x00000000
71 1.2 tsubai #define PORTB_RPORT 0x00010000
72 1.2 tsubai #define PORTA_XPORT 0x00020000
73 1.2 tsubai #define PORTA_RPORT 0x00030000
74 1.2 tsubai #define DMA_MODE_REG 3
75 1.2 tsubai #define DMA_ENABLE 0x01 /* DMA enable */
76 1.2 tsubai #define DMA_DIR_DM 0x00 /* device to memory */
77 1.2 tsubai #define DMA_DIR_MD 0x02 /* memory to device */
78 1.2 tsubai #define DMA_EXTRDY 0x08 /* DMA external ready */
79 1.2 tsubai #define PORTB_OFFSET 0x00040000
80 1.2 tsubai #define PORTA_OFFSET 0x00050000
81 1.2 tsubai #define PORT_CTL 2
82 1.2 tsubai #define PORTCTL_RI 0x01
83 1.2 tsubai #define PORTCTL_DSR 0x02
84 1.2 tsubai #define PORTCTL_DTR 0x04
85 1.2 tsubai #define PORT_SEL 3
86 1.2 tsubai #define PORTSEL_LOCALTALK 0x01
87 1.2 tsubai #define PORTSEL_RS232C 0x02
88 1.2 tsubai #define ESCC_REG 0x00060000
89 1.2 tsubai #define ESCCREG_INTSTAT 0
90 1.2 tsubai #define INTSTAT_SCC 0x01
91 1.2 tsubai #define ESCCREG_INTMASK 1
92 1.2 tsubai #define INTMASK_SCC 0x01
93 1.1 tsubai
94 1.1 tsubai extern int zs_def_cflag;
95 1.1 tsubai extern void (*zs_delay) __P((void));
96 1.1 tsubai
97 1.1 tsubai /*
98 1.1 tsubai * The news5000 provides a 9.8304 MHz clock to the ZS chips.
99 1.1 tsubai */
100 1.1 tsubai #define PCLK (9600 * 1024) /* PCLK pin input clock rate */
101 1.1 tsubai
102 1.1 tsubai #define ZS_DELAY() DELAY(2)
103 1.1 tsubai
104 1.1 tsubai /* The layout of this is hardware-dependent (padding, order). */
105 1.1 tsubai struct zschan {
106 1.1 tsubai volatile u_char pad1[3];
107 1.1 tsubai volatile u_char zc_csr; /* ctrl,status, and indirect access */
108 1.1 tsubai volatile u_char pad2[3];
109 1.1 tsubai volatile u_char zc_data; /* data */
110 1.1 tsubai };
111 1.1 tsubai
112 1.1 tsubai static caddr_t zsaddr[NZS];
113 1.1 tsubai
114 1.1 tsubai /* Flags from cninit() */
115 1.1 tsubai static int zs_hwflags[NZS][2];
116 1.1 tsubai
117 1.1 tsubai /* Default speed for all channels */
118 1.1 tsubai static int zs_defspeed = 9600;
119 1.1 tsubai
120 1.1 tsubai static u_char zs_init_reg[16] = {
121 1.1 tsubai 0, /* 0: CMD (reset, etc.) */
122 1.1 tsubai 0, /* 1: No interrupts yet. */
123 1.1 tsubai 0, /* IVECT */
124 1.1 tsubai ZSWR3_RX_8 | ZSWR3_RX_ENABLE,
125 1.1 tsubai ZSWR4_CLK_X16 | ZSWR4_ONESB | ZSWR4_EVENP,
126 1.1 tsubai ZSWR5_TX_8 | ZSWR5_TX_ENABLE,
127 1.1 tsubai 0, /* 6: TXSYNC/SYNCLO */
128 1.1 tsubai 0, /* 7: RXSYNC/SYNCHI */
129 1.1 tsubai 0, /* 8: alias for data port */
130 1.1 tsubai ZSWR9_MASTER_IE,
131 1.1 tsubai 0, /*10: Misc. TX/RX control bits */
132 1.1 tsubai ZSWR11_TXCLK_BAUD | ZSWR11_RXCLK_BAUD,
133 1.1 tsubai ((PCLK/32)/9600)-2, /*12: BAUDLO (default=9600) */
134 1.1 tsubai 0, /*13: BAUDHI (default=9600) */
135 1.1 tsubai ZSWR14_BAUD_ENA | ZSWR14_BAUD_FROM_PCLK,
136 1.1 tsubai ZSWR15_BREAK_IE,
137 1.1 tsubai };
138 1.1 tsubai
139 1.1 tsubai static struct zschan * zs_get_chan_addr __P((int, int));
140 1.1 tsubai static void zs_ap_delay __P((void));
141 1.1 tsubai static void zshard __P((void *));
142 1.1 tsubai static void zssoft __P((void *));
143 1.1 tsubai static int zs_getc __P((void *));
144 1.1 tsubai static void zs_putc __P((void *, int));
145 1.1 tsubai int zs_get_speed __P((struct zs_chanstate *));
146 1.1 tsubai
147 1.1 tsubai struct zschan *
148 1.1 tsubai zs_get_chan_addr(zs_unit, channel)
149 1.1 tsubai int zs_unit, channel;
150 1.1 tsubai {
151 1.1 tsubai caddr_t addr;
152 1.1 tsubai struct zschan *zc;
153 1.1 tsubai
154 1.1 tsubai if (zs_unit >= NZS)
155 1.1 tsubai return NULL;
156 1.1 tsubai addr = zsaddr[zs_unit];
157 1.1 tsubai if (addr == NULL)
158 1.1 tsubai return NULL;
159 1.1 tsubai if (channel == 0) {
160 1.1 tsubai zc = (void *)(addr + PORTA_OFFSET);
161 1.1 tsubai } else {
162 1.1 tsubai zc = (void *)(addr + PORTB_OFFSET);
163 1.1 tsubai }
164 1.1 tsubai return (zc);
165 1.1 tsubai }
166 1.1 tsubai
167 1.1 tsubai void
168 1.1 tsubai zs_ap_delay()
169 1.1 tsubai {
170 1.1 tsubai ZS_DELAY();
171 1.1 tsubai }
172 1.1 tsubai
173 1.1 tsubai /****************************************************************
174 1.1 tsubai * Autoconfig
175 1.1 tsubai ****************************************************************/
176 1.1 tsubai
177 1.1 tsubai /* Definition of the driver for autoconfig. */
178 1.1 tsubai int zs_ap_match __P((struct device *, struct cfdata *, void *));
179 1.1 tsubai void zs_ap_attach __P((struct device *, struct device *, void *));
180 1.1 tsubai int zs_print __P((void *, const char *name));
181 1.1 tsubai
182 1.1 tsubai struct cfattach zsc_ap_ca = {
183 1.1 tsubai sizeof(struct zsc_softc), zs_ap_match, zs_ap_attach
184 1.1 tsubai };
185 1.1 tsubai
186 1.1 tsubai extern struct cfdriver zsc_cd;
187 1.1 tsubai
188 1.1 tsubai /*
189 1.1 tsubai * Is the zs chip present?
190 1.1 tsubai */
191 1.1 tsubai int
192 1.1 tsubai zs_ap_match(parent, cf, aux)
193 1.1 tsubai struct device *parent;
194 1.1 tsubai struct cfdata *cf;
195 1.1 tsubai void *aux;
196 1.1 tsubai {
197 1.1 tsubai struct apbus_attach_args *apa = aux;
198 1.1 tsubai
199 1.1 tsubai if (strcmp("esccf", apa->apa_name) != 0)
200 1.1 tsubai return 0;
201 1.1 tsubai
202 1.1 tsubai return 1;
203 1.1 tsubai }
204 1.1 tsubai
205 1.1 tsubai /*
206 1.1 tsubai * Attach a found zs.
207 1.1 tsubai *
208 1.1 tsubai * Match slave number to zs unit number, so that misconfiguration will
209 1.1 tsubai * not set up the keyboard as ttya, etc.
210 1.1 tsubai */
211 1.1 tsubai void
212 1.1 tsubai zs_ap_attach(parent, self, aux)
213 1.1 tsubai struct device *parent;
214 1.1 tsubai struct device *self;
215 1.1 tsubai void *aux;
216 1.1 tsubai {
217 1.1 tsubai struct zsc_softc *zsc = (void *)self;
218 1.1 tsubai struct apbus_attach_args *apa = aux;
219 1.1 tsubai struct zsc_attach_args zsc_args;
220 1.1 tsubai volatile struct zschan *zc;
221 1.1 tsubai struct zs_chanstate *cs;
222 1.1 tsubai int s, zs_unit, channel;
223 1.2 tsubai volatile u_int *txBfifo = (void *)(apa->apa_hwbase + PORTB_XPORT);
224 1.2 tsubai volatile u_int *rxBfifo = (void *)(apa->apa_hwbase + PORTB_RPORT);
225 1.2 tsubai volatile u_int *txAfifo = (void *)(apa->apa_hwbase + PORTA_XPORT);
226 1.2 tsubai volatile u_int *rxAfifo = (void *)(apa->apa_hwbase + PORTA_RPORT);
227 1.2 tsubai volatile u_int *portBctl = (void *)(apa->apa_hwbase + PORTB_OFFSET);
228 1.2 tsubai volatile u_int *portActl = (void *)(apa->apa_hwbase + PORTA_OFFSET);
229 1.2 tsubai volatile u_int *esccregs = (void *)(apa->apa_hwbase + ESCC_REG);
230 1.1 tsubai static int didintr;
231 1.1 tsubai
232 1.1 tsubai zs_unit = zsc->zsc_dev.dv_unit;
233 1.1 tsubai zsaddr[zs_unit] = (caddr_t)apa->apa_hwbase;
234 1.1 tsubai
235 1.1 tsubai printf(" slot%d addr 0x%lx\n", apa->apa_slotno, apa->apa_hwbase);
236 1.1 tsubai
237 1.2 tsubai txAfifo[DMA_MODE_REG] = rxAfifo[DMA_MODE_REG] = DMA_EXTRDY;
238 1.2 tsubai txBfifo[DMA_MODE_REG] = rxBfifo[DMA_MODE_REG] = DMA_EXTRDY;
239 1.1 tsubai
240 1.1 tsubai /* assert DTR */ /* XXX */
241 1.2 tsubai portBctl[PORT_CTL] = portActl[PORT_CTL] = PORTCTL_DTR;
242 1.1 tsubai
243 1.1 tsubai /* select RS-232C (ch1 only) */
244 1.2 tsubai portActl[PORT_SEL] = PORTSEL_RS232C;
245 1.1 tsubai
246 1.1 tsubai /* enable SCC interrupts */
247 1.2 tsubai esccregs[ESCCREG_INTMASK] = INTMASK_SCC;
248 1.1 tsubai
249 1.1 tsubai zs_delay = zs_ap_delay;
250 1.1 tsubai
251 1.1 tsubai /*
252 1.1 tsubai * Initialize software state for each channel.
253 1.1 tsubai */
254 1.1 tsubai for (channel = 0; channel < 2; channel++) {
255 1.1 tsubai zsc_args.channel = channel;
256 1.1 tsubai zsc_args.hwflags = zs_hwflags[zs_unit][channel];
257 1.1 tsubai cs = &zsc->zsc_cs_store[channel];
258 1.1 tsubai zsc->zsc_cs[channel] = cs;
259 1.1 tsubai
260 1.1 tsubai cs->cs_channel = channel;
261 1.1 tsubai cs->cs_private = NULL;
262 1.1 tsubai cs->cs_ops = &zsops_null;
263 1.1 tsubai cs->cs_brg_clk = PCLK / 16;
264 1.1 tsubai
265 1.1 tsubai zc = zs_get_chan_addr(zs_unit, channel);
266 1.1 tsubai cs->cs_reg_csr = &zc->zc_csr;
267 1.1 tsubai cs->cs_reg_data = &zc->zc_data;
268 1.1 tsubai
269 1.1 tsubai bcopy(zs_init_reg, cs->cs_creg, 16);
270 1.1 tsubai bcopy(zs_init_reg, cs->cs_preg, 16);
271 1.1 tsubai
272 1.1 tsubai /* XXX: Get these from the EEPROM instead? */
273 1.1 tsubai /* XXX: See the mvme167 code. Better. */
274 1.1 tsubai if (zsc_args.hwflags & ZS_HWFLAG_CONSOLE)
275 1.1 tsubai cs->cs_defspeed = zs_get_speed(cs);
276 1.1 tsubai else
277 1.1 tsubai cs->cs_defspeed = zs_defspeed;
278 1.1 tsubai cs->cs_defcflag = zs_def_cflag;
279 1.1 tsubai
280 1.1 tsubai /* Make these correspond to cs_defcflag (-crtscts) */
281 1.1 tsubai cs->cs_rr0_dcd = ZSRR0_DCD;
282 1.1 tsubai cs->cs_rr0_cts = 0;
283 1.1 tsubai cs->cs_wr5_dtr = ZSWR5_DTR | ZSWR5_RTS;
284 1.1 tsubai cs->cs_wr5_rts = 0;
285 1.1 tsubai
286 1.1 tsubai /*
287 1.1 tsubai * Clear the master interrupt enable.
288 1.1 tsubai * The INTENA is common to both channels,
289 1.1 tsubai * so just do it on the A channel.
290 1.1 tsubai */
291 1.1 tsubai if (channel == 0) {
292 1.1 tsubai zs_write_reg(cs, 9, 0);
293 1.1 tsubai }
294 1.1 tsubai
295 1.1 tsubai /*
296 1.1 tsubai * Look for a child driver for this channel.
297 1.1 tsubai * The child attach will setup the hardware.
298 1.1 tsubai */
299 1.1 tsubai if (!config_found(self, (void *)&zsc_args, zs_print)) {
300 1.1 tsubai /* No sub-driver. Just reset it. */
301 1.1 tsubai u_char reset = (channel == 0) ?
302 1.1 tsubai ZSWR9_A_RESET : ZSWR9_B_RESET;
303 1.1 tsubai s = splhigh();
304 1.1 tsubai zs_write_reg(cs, 9, reset);
305 1.1 tsubai splx(s);
306 1.1 tsubai }
307 1.1 tsubai }
308 1.1 tsubai
309 1.1 tsubai /*
310 1.1 tsubai * Now safe to install interrupt handlers. Note the arguments
311 1.1 tsubai * to the interrupt handlers aren't used. Note, we only do this
312 1.1 tsubai * once since both SCCs interrupt at the same level and vector.
313 1.1 tsubai */
314 1.1 tsubai if (!didintr) {
315 1.1 tsubai didintr = 1;
316 1.1 tsubai
317 1.1 tsubai apbus_intr_establish(1, /* interrupt level ( 0 or 1 ) */
318 1.2 tsubai NEWS5000_INT1_SCC,
319 1.1 tsubai 0, /* priority */
320 1.1 tsubai zshard, zsc,
321 1.1 tsubai apa->apa_name, apa->apa_ctlnum);
322 1.1 tsubai }
323 1.1 tsubai /* XXX; evcnt_attach() ? */
324 1.1 tsubai
325 1.1 tsubai #if 0
326 1.1 tsubai {
327 1.1 tsubai u_int x;
328 1.1 tsubai
329 1.1 tsubai /* determine SCC/ESCC type */
330 1.1 tsubai x = zs_read_reg(cs, 15);
331 1.1 tsubai zs_write_reg(cs, 15, x | ZSWR15_ENABLE_ENHANCED);
332 1.1 tsubai
333 1.1 tsubai if (zs_read_reg(cs, 15) & ZSWR15_ENABLE_ENHANCED) { /* ESCC Z85230 */
334 1.1 tsubai zs_write_reg(cs, 7, ZSWR7P_EXTEND_READ | ZSWR7P_TX_FIFO);
335 1.1 tsubai }
336 1.1 tsubai }
337 1.1 tsubai #endif
338 1.1 tsubai
339 1.1 tsubai /*
340 1.1 tsubai * Set the master interrupt enable and interrupt vector.
341 1.1 tsubai * (common to both channels, do it on A)
342 1.1 tsubai */
343 1.1 tsubai cs = zsc->zsc_cs[0];
344 1.1 tsubai s = splhigh();
345 1.1 tsubai /* interrupt vector */
346 1.1 tsubai zs_write_reg(cs, 2, zs_init_reg[2]);
347 1.1 tsubai /* master interrupt control (enable) */
348 1.1 tsubai zs_write_reg(cs, 9, zs_init_reg[9]);
349 1.1 tsubai splx(s);
350 1.1 tsubai }
351 1.1 tsubai
352 1.1 tsubai static volatile int zssoftpending;
353 1.1 tsubai
354 1.1 tsubai /*
355 1.1 tsubai * Our ZS chips all share a common, autovectored interrupt,
356 1.1 tsubai * so we have to look at all of them on each interrupt.
357 1.1 tsubai */
358 1.1 tsubai static void
359 1.1 tsubai zshard(arg)
360 1.1 tsubai void *arg;
361 1.1 tsubai {
362 1.1 tsubai register struct zsc_softc *zsc;
363 1.1 tsubai register int unit, rval, softreq;
364 1.1 tsubai
365 1.1 tsubai rval = softreq = 0;
366 1.1 tsubai for (unit = 0; unit < zsc_cd.cd_ndevs; unit++) {
367 1.1 tsubai zsc = zsc_cd.cd_devs[unit];
368 1.1 tsubai if (zsc == NULL)
369 1.1 tsubai continue;
370 1.1 tsubai rval |= zsc_intr_hard(zsc);
371 1.1 tsubai softreq |= zsc->zsc_cs[0]->cs_softreq;
372 1.1 tsubai softreq |= zsc->zsc_cs[1]->cs_softreq;
373 1.1 tsubai }
374 1.1 tsubai
375 1.1 tsubai /* We are at splzs here, so no need to lock. */
376 1.1 tsubai if (softreq && (zssoftpending == 0)) {
377 1.1 tsubai zssoftpending = 1;
378 1.1 tsubai zssoft(arg); /*isr_soft_request(ZSSOFT_PRI);*/
379 1.1 tsubai }
380 1.1 tsubai }
381 1.1 tsubai
382 1.1 tsubai /*
383 1.1 tsubai * Similar scheme as for zshard (look at all of them)
384 1.1 tsubai */
385 1.1 tsubai static void
386 1.1 tsubai zssoft(arg)
387 1.1 tsubai void *arg;
388 1.1 tsubai {
389 1.1 tsubai register struct zsc_softc *zsc;
390 1.1 tsubai register int s, unit;
391 1.1 tsubai
392 1.1 tsubai /* This is not the only ISR on this IPL. */
393 1.1 tsubai if (zssoftpending == 0)
394 1.1 tsubai return;
395 1.1 tsubai
396 1.1 tsubai /*
397 1.1 tsubai * The soft intr. bit will be set by zshard only if
398 1.1 tsubai * the variable zssoftpending is zero. The order of
399 1.1 tsubai * these next two statements prevents our clearing
400 1.1 tsubai * the soft intr bit just after zshard has set it.
401 1.1 tsubai */
402 1.1 tsubai /*isr_soft_clear(ZSSOFT_PRI);*/
403 1.1 tsubai /*zssoftpending = 0;*/
404 1.1 tsubai
405 1.1 tsubai /* Make sure we call the tty layer at spltty. */
406 1.1 tsubai s = spltty();
407 1.1 tsubai for (unit = 0; unit < zsc_cd.cd_ndevs; unit++) {
408 1.1 tsubai zsc = zsc_cd.cd_devs[unit];
409 1.1 tsubai if (zsc == NULL)
410 1.1 tsubai continue;
411 1.1 tsubai (void) zsc_intr_soft(zsc);
412 1.1 tsubai }
413 1.1 tsubai splx(s);
414 1.1 tsubai zssoftpending = 0;
415 1.1 tsubai return;
416 1.1 tsubai }
417 1.1 tsubai
418 1.1 tsubai /*
419 1.1 tsubai * Polled input char.
420 1.1 tsubai */
421 1.1 tsubai int
422 1.1 tsubai zs_getc(arg)
423 1.1 tsubai void *arg;
424 1.1 tsubai {
425 1.1 tsubai register volatile struct zschan *zc = arg;
426 1.1 tsubai register int s, c, rr0;
427 1.1 tsubai
428 1.1 tsubai s = splhigh();
429 1.1 tsubai /* Wait for a character to arrive. */
430 1.1 tsubai do {
431 1.1 tsubai rr0 = zc->zc_csr;
432 1.1 tsubai ZS_DELAY();
433 1.1 tsubai } while ((rr0 & ZSRR0_RX_READY) == 0);
434 1.1 tsubai
435 1.1 tsubai c = zc->zc_data;
436 1.1 tsubai ZS_DELAY();
437 1.1 tsubai splx(s);
438 1.1 tsubai
439 1.1 tsubai /*
440 1.1 tsubai * This is used by the kd driver to read scan codes,
441 1.1 tsubai * so don't translate '\r' ==> '\n' here...
442 1.1 tsubai */
443 1.1 tsubai return (c);
444 1.1 tsubai }
445 1.1 tsubai
446 1.1 tsubai /*
447 1.1 tsubai * Polled output char.
448 1.1 tsubai */
449 1.1 tsubai void
450 1.1 tsubai zs_putc(arg, c)
451 1.1 tsubai void *arg;
452 1.1 tsubai int c;
453 1.1 tsubai {
454 1.1 tsubai register volatile struct zschan *zc = arg;
455 1.1 tsubai register int s, rr0;
456 1.1 tsubai
457 1.1 tsubai s = splhigh();
458 1.1 tsubai /* Wait for transmitter to become ready. */
459 1.1 tsubai do {
460 1.1 tsubai rr0 = zc->zc_csr;
461 1.1 tsubai ZS_DELAY();
462 1.1 tsubai } while ((rr0 & ZSRR0_TX_READY) == 0);
463 1.1 tsubai
464 1.1 tsubai zc->zc_data = c;
465 1.1 tsubai ZS_DELAY();
466 1.1 tsubai splx(s);
467 1.1 tsubai }
468 1.1 tsubai
469 1.1 tsubai /*****************************************************************/
470 1.1 tsubai
471 1.1 tsubai static void zscnprobe __P((struct consdev *));
472 1.1 tsubai static void zscninit __P((struct consdev *));
473 1.1 tsubai static int zscngetc __P((dev_t));
474 1.1 tsubai static void zscnputc __P((dev_t, int));
475 1.1 tsubai static void zscnpollc __P((dev_t, int));
476 1.1 tsubai
477 1.1 tsubai struct consdev consdev_zs_ap = {
478 1.1 tsubai zscnprobe,
479 1.1 tsubai zscninit,
480 1.1 tsubai zscngetc,
481 1.1 tsubai zscnputc,
482 1.1 tsubai zscnpollc
483 1.1 tsubai };
484 1.1 tsubai
485 1.1 tsubai void
486 1.1 tsubai zscnprobe(cn)
487 1.1 tsubai struct consdev *cn;
488 1.1 tsubai {
489 1.1 tsubai }
490 1.1 tsubai
491 1.1 tsubai void
492 1.1 tsubai zscninit(cn)
493 1.1 tsubai struct consdev *cn;
494 1.1 tsubai {
495 1.1 tsubai cn->cn_dev = makedev(zs_major, 0);
496 1.1 tsubai cn->cn_pri = CN_REMOTE;
497 1.1 tsubai zs_hwflags[0][0] = ZS_HWFLAG_CONSOLE;
498 1.1 tsubai }
499 1.1 tsubai
500 1.1 tsubai int
501 1.1 tsubai zscngetc(dev)
502 1.1 tsubai dev_t dev;
503 1.1 tsubai {
504 1.1 tsubai return zs_getc((void *)NEWS5000_SCCPORT0A);
505 1.1 tsubai }
506 1.1 tsubai
507 1.1 tsubai void
508 1.1 tsubai zscnputc(dev, c)
509 1.1 tsubai dev_t dev;
510 1.1 tsubai int c;
511 1.1 tsubai {
512 1.1 tsubai zs_putc((void *)NEWS5000_SCCPORT0A, c);
513 1.1 tsubai }
514 1.1 tsubai
515 1.1 tsubai void
516 1.1 tsubai zscnpollc(dev, on)
517 1.1 tsubai dev_t dev;
518 1.1 tsubai int on;
519 1.1 tsubai {
520 1.1 tsubai }
521