zs.c revision 1.10 1 1.10 eeh /* $NetBSD: zs.c,v 1.10 1999/04/24 21:08:12 eeh Exp $ */
2 1.1 eeh
3 1.1 eeh /*-
4 1.1 eeh * Copyright (c) 1996 The NetBSD Foundation, Inc.
5 1.1 eeh * All rights reserved.
6 1.1 eeh *
7 1.1 eeh * This code is derived from software contributed to The NetBSD Foundation
8 1.1 eeh * by Gordon W. Ross.
9 1.1 eeh *
10 1.1 eeh * Redistribution and use in source and binary forms, with or without
11 1.1 eeh * modification, are permitted provided that the following conditions
12 1.1 eeh * are met:
13 1.1 eeh * 1. Redistributions of source code must retain the above copyright
14 1.1 eeh * notice, this list of conditions and the following disclaimer.
15 1.1 eeh * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 eeh * notice, this list of conditions and the following disclaimer in the
17 1.1 eeh * documentation and/or other materials provided with the distribution.
18 1.1 eeh * 3. All advertising materials mentioning features or use of this software
19 1.1 eeh * must display the following acknowledgement:
20 1.1 eeh * This product includes software developed by the NetBSD
21 1.1 eeh * Foundation, Inc. and its contributors.
22 1.1 eeh * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 eeh * contributors may be used to endorse or promote products derived
24 1.1 eeh * from this software without specific prior written permission.
25 1.1 eeh *
26 1.1 eeh * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 eeh * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 eeh * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 eeh * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 eeh * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 eeh * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 eeh * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 eeh * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 eeh * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 eeh * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 eeh * POSSIBILITY OF SUCH DAMAGE.
37 1.1 eeh */
38 1.1 eeh
39 1.1 eeh /*
40 1.1 eeh * Zilog Z8530 Dual UART driver (machine-dependent part)
41 1.1 eeh *
42 1.1 eeh * Runs two serial lines per chip using slave drivers.
43 1.1 eeh * Plain tty/async lines use the zs_async slave.
44 1.1 eeh * Sun keyboard/mouse uses the zs_kbd/zs_ms slaves.
45 1.1 eeh */
46 1.2 jonathan
47 1.2 jonathan #include "opt_ddb.h"
48 1.1 eeh
49 1.1 eeh #include <sys/param.h>
50 1.1 eeh #include <sys/systm.h>
51 1.1 eeh #include <sys/conf.h>
52 1.1 eeh #include <sys/device.h>
53 1.1 eeh #include <sys/file.h>
54 1.1 eeh #include <sys/ioctl.h>
55 1.1 eeh #include <sys/kernel.h>
56 1.1 eeh #include <sys/proc.h>
57 1.1 eeh #include <sys/tty.h>
58 1.1 eeh #include <sys/time.h>
59 1.1 eeh #include <sys/syslog.h>
60 1.1 eeh
61 1.1 eeh #include <machine/autoconf.h>
62 1.1 eeh #include <machine/openfirm.h>
63 1.1 eeh #include <machine/bsd_openprom.h>
64 1.1 eeh #include <machine/conf.h>
65 1.1 eeh #include <machine/cpu.h>
66 1.1 eeh #include <machine/eeprom.h>
67 1.1 eeh #include <machine/psl.h>
68 1.1 eeh #include <machine/z8530var.h>
69 1.1 eeh
70 1.1 eeh #include <dev/cons.h>
71 1.1 eeh #include <dev/ic/z8530reg.h>
72 1.1 eeh
73 1.1 eeh #include <sparc64/sparc64/vaddrs.h>
74 1.1 eeh #include <sparc64/sparc64/auxreg.h>
75 1.1 eeh #include <sparc64/dev/cons.h>
76 1.1 eeh
77 1.1 eeh #include "kbd.h" /* NKBD */
78 1.1 eeh #include "zs.h" /* NZS */
79 1.1 eeh
80 1.1 eeh /* Make life easier for the initialized arrays here. */
81 1.1 eeh #if NZS < 3
82 1.1 eeh #undef NZS
83 1.1 eeh #define NZS 3
84 1.1 eeh #endif
85 1.1 eeh
86 1.1 eeh /*
87 1.1 eeh * Some warts needed by z8530tty.c -
88 1.1 eeh * The default parity REALLY needs to be the same as the PROM uses,
89 1.1 eeh * or you can not see messages done with printf during boot-up...
90 1.1 eeh */
91 1.1 eeh int zs_def_cflag = (CREAD | CS8 | HUPCL);
92 1.1 eeh int zs_major = 12;
93 1.1 eeh
94 1.1 eeh /*
95 1.1 eeh * The Sun provides a 4.9152 MHz clock to the ZS chips.
96 1.1 eeh */
97 1.1 eeh #define PCLK (9600 * 512) /* PCLK pin input clock rate */
98 1.1 eeh
99 1.1 eeh /*
100 1.1 eeh * Select software interrupt bit based on TTY ipl.
101 1.1 eeh */
102 1.1 eeh #if PIL_TTY == 1
103 1.1 eeh # define IE_ZSSOFT IE_L1
104 1.1 eeh #elif PIL_TTY == 4
105 1.1 eeh # define IE_ZSSOFT IE_L4
106 1.1 eeh #elif PIL_TTY == 6
107 1.1 eeh # define IE_ZSSOFT IE_L6
108 1.1 eeh #else
109 1.1 eeh # error "no suitable software interrupt bit"
110 1.1 eeh #endif
111 1.1 eeh
112 1.10 eeh #define ZS_DELAY()
113 1.1 eeh
114 1.1 eeh /* The layout of this is hardware-dependent (padding, order). */
115 1.1 eeh struct zschan {
116 1.1 eeh volatile u_char zc_csr; /* ctrl,status, and indirect access */
117 1.1 eeh u_char zc_xxx0;
118 1.1 eeh volatile u_char zc_data; /* data */
119 1.1 eeh u_char zc_xxx1;
120 1.1 eeh };
121 1.1 eeh struct zsdevice {
122 1.1 eeh /* Yes, they are backwards. */
123 1.1 eeh struct zschan zs_chan_b;
124 1.1 eeh struct zschan zs_chan_a;
125 1.1 eeh };
126 1.1 eeh
127 1.1 eeh /* Saved PROM mappings */
128 1.1 eeh static struct zsdevice *zsaddr[NZS];
129 1.1 eeh
130 1.1 eeh /* Flags from cninit() */
131 1.1 eeh static int zs_hwflags[NZS][2];
132 1.1 eeh
133 1.1 eeh /* Default speed for each channel */
134 1.1 eeh static int zs_defspeed[NZS][2] = {
135 1.1 eeh { 9600, /* ttya */
136 1.1 eeh 9600 }, /* ttyb */
137 1.1 eeh { 1200, /* keyboard */
138 1.1 eeh 1200 }, /* mouse */
139 1.1 eeh { 9600, /* ttyc */
140 1.1 eeh 9600 }, /* ttyd */
141 1.1 eeh };
142 1.1 eeh
143 1.1 eeh static u_char zs_init_reg[16] = {
144 1.1 eeh 0, /* 0: CMD (reset, etc.) */
145 1.1 eeh 0, /* 1: No interrupts yet. */
146 1.1 eeh 0, /* 2: IVECT */
147 1.1 eeh ZSWR3_RX_8 | ZSWR3_RX_ENABLE,
148 1.1 eeh ZSWR4_CLK_X16 | ZSWR4_ONESB | ZSWR4_EVENP,
149 1.1 eeh ZSWR5_TX_8 | ZSWR5_TX_ENABLE,
150 1.1 eeh 0, /* 6: TXSYNC/SYNCLO */
151 1.1 eeh 0, /* 7: RXSYNC/SYNCHI */
152 1.1 eeh 0, /* 8: alias for data port */
153 1.1 eeh ZSWR9_MASTER_IE | ZSWR9_NO_VECTOR,
154 1.1 eeh 0, /*10: Misc. TX/RX control bits */
155 1.1 eeh ZSWR11_TXCLK_BAUD | ZSWR11_RXCLK_BAUD,
156 1.7 mycroft ((PCLK/32)/9600)-2, /*12: BAUDLO (default=9600) */
157 1.7 mycroft 0, /*13: BAUDHI (default=9600) */
158 1.1 eeh ZSWR14_BAUD_ENA | ZSWR14_BAUD_FROM_PCLK,
159 1.6 mycroft ZSWR15_BREAK_IE,
160 1.1 eeh };
161 1.1 eeh
162 1.1 eeh struct zschan *
163 1.1 eeh zs_get_chan_addr(zs_unit, channel)
164 1.1 eeh int zs_unit, channel;
165 1.1 eeh {
166 1.1 eeh struct zsdevice *addr;
167 1.1 eeh struct zschan *zc;
168 1.1 eeh
169 1.1 eeh if (zs_unit >= NZS)
170 1.1 eeh return (NULL);
171 1.1 eeh addr = zsaddr[zs_unit];
172 1.1 eeh if (addr == NULL)
173 1.1 eeh return (NULL);
174 1.1 eeh if (channel == 0) {
175 1.1 eeh zc = &addr->zs_chan_a;
176 1.1 eeh } else {
177 1.1 eeh zc = &addr->zs_chan_b;
178 1.1 eeh }
179 1.1 eeh return (zc);
180 1.1 eeh }
181 1.1 eeh
182 1.1 eeh
183 1.1 eeh /****************************************************************
184 1.1 eeh * Autoconfig
185 1.1 eeh ****************************************************************/
186 1.1 eeh
187 1.1 eeh /* Definition of the driver for autoconfig. */
188 1.1 eeh static int zs_match_sbus __P((struct device *, struct cfdata *, void *));
189 1.1 eeh static int zs_match_mainbus __P((struct device *, struct cfdata *, void *));
190 1.1 eeh static int zs_match_obio __P((struct device *, struct cfdata *, void *));
191 1.1 eeh static void zs_attach_sbus __P((struct device *, struct device *, void *));
192 1.1 eeh static void zs_attach_mainbus __P((struct device *, struct device *, void *));
193 1.1 eeh static void zs_attach_obio __P((struct device *, struct device *, void *));
194 1.1 eeh
195 1.1 eeh static void zs_attach __P((struct zsc_softc *, int));
196 1.1 eeh static int zs_print __P((void *, const char *name));
197 1.1 eeh
198 1.1 eeh struct cfattach zs_ca = {
199 1.1 eeh sizeof(struct zsc_softc), zs_match_sbus, zs_attach_sbus
200 1.1 eeh };
201 1.1 eeh
202 1.1 eeh struct cfattach zs_mainbus_ca = {
203 1.1 eeh sizeof(struct zsc_softc), zs_match_mainbus, zs_attach_mainbus
204 1.1 eeh };
205 1.1 eeh
206 1.1 eeh struct cfattach zs_obio_ca = {
207 1.1 eeh sizeof(struct zsc_softc), zs_match_obio, zs_attach_obio
208 1.1 eeh };
209 1.1 eeh
210 1.1 eeh extern struct cfdriver zs_cd;
211 1.1 eeh
212 1.1 eeh /* Interrupt handlers. */
213 1.1 eeh static int zshard __P((void *));
214 1.1 eeh static int zssoft __P((void *));
215 1.1 eeh static struct intrhand levelsoft = { zssoft };
216 1.1 eeh
217 1.1 eeh static int zs_get_speed __P((struct zs_chanstate *));
218 1.1 eeh
219 1.1 eeh
220 1.1 eeh /*
221 1.1 eeh * Is the zs chip present?
222 1.1 eeh */
223 1.1 eeh static int
224 1.1 eeh zs_match_mainbus(parent, cf, aux)
225 1.1 eeh struct device *parent;
226 1.1 eeh struct cfdata *cf;
227 1.1 eeh void *aux;
228 1.1 eeh {
229 1.1 eeh struct mainbus_attach_args *ma = aux;
230 1.1 eeh
231 1.1 eeh if (strcmp(cf->cf_driver->cd_name, ma->ma_name) != 0)
232 1.1 eeh return (0);
233 1.1 eeh
234 1.1 eeh return (getpropint(ma->ma_node, "slave", -2) == cf->cf_unit);
235 1.1 eeh }
236 1.1 eeh
237 1.1 eeh static int
238 1.1 eeh zs_match_sbus(parent, cf, aux)
239 1.1 eeh struct device *parent;
240 1.1 eeh struct cfdata *cf;
241 1.1 eeh void *aux;
242 1.1 eeh {
243 1.1 eeh struct sbus_attach_args *sa = aux;
244 1.1 eeh
245 1.1 eeh if (strcmp(cf->cf_driver->cd_name, sa->sa_name) != 0)
246 1.1 eeh return (0);
247 1.1 eeh
248 1.1 eeh return 1;
249 1.1 eeh }
250 1.1 eeh
251 1.1 eeh static int
252 1.1 eeh zs_match_obio(parent, cf, aux)
253 1.1 eeh struct device *parent;
254 1.1 eeh struct cfdata *cf;
255 1.1 eeh void *aux;
256 1.1 eeh {
257 1.5 eeh #ifdef SUN4U
258 1.5 eeh return 0;
259 1.5 eeh #else
260 1.1 eeh union obio_attach_args *uoba = aux;
261 1.1 eeh struct obio4_attach_args *oba;
262 1.1 eeh
263 1.1 eeh if (uoba->uoba_isobio4 == 0) {
264 1.1 eeh struct sbus_attach_args *sa = &uoba->uoba_sbus;
265 1.1 eeh
266 1.1 eeh if (strcmp(cf->cf_driver->cd_name, sa->sa_name) != 0)
267 1.1 eeh return (0);
268 1.1 eeh
269 1.1 eeh return (getpropint(sa->sa_node, "slave", -2) == cf->cf_unit);
270 1.1 eeh }
271 1.1 eeh
272 1.1 eeh oba = &uoba->uoba_oba4;
273 1.1 eeh return (bus_space_probe(oba->oba_bustag, 0, oba->oba_paddr,
274 1.1 eeh 1, 0, 0, NULL, NULL));
275 1.5 eeh #endif
276 1.1 eeh }
277 1.1 eeh
278 1.1 eeh static void
279 1.1 eeh zs_attach_mainbus(parent, self, aux)
280 1.1 eeh struct device *parent;
281 1.1 eeh struct device *self;
282 1.1 eeh void *aux;
283 1.1 eeh {
284 1.5 eeh #ifdef SUN4U
285 1.10 eeh return;
286 1.5 eeh #else
287 1.1 eeh struct zsc_softc *zsc = (void *) self;
288 1.1 eeh struct mainbus_attach_args *ma = aux;
289 1.1 eeh int zs_unit = zsc->zsc_dev.dv_unit;
290 1.1 eeh
291 1.1 eeh zsc->zsc_bustag = ma->ma_bustag;
292 1.1 eeh zsc->zsc_dmatag = ma->ma_dmatag;
293 1.1 eeh
294 1.1 eeh /* Use the mapping setup by the Sun PROM. */
295 1.1 eeh if (zsaddr[zs_unit] == NULL)
296 1.1 eeh zsaddr[zs_unit] = findzs(zs_unit);
297 1.5 eeh if ((void*)zsaddr[zs_unit] != (void*)(u_long)ma->ma_address[0])
298 1.1 eeh panic("zsattach_mainbus");
299 1.1 eeh zs_attach(zsc, ma->ma_pri);
300 1.5 eeh #endif
301 1.1 eeh }
302 1.1 eeh
303 1.1 eeh
304 1.1 eeh static void
305 1.1 eeh zs_attach_sbus(parent, self, aux)
306 1.1 eeh struct device *parent;
307 1.1 eeh struct device *self;
308 1.1 eeh void *aux;
309 1.1 eeh {
310 1.1 eeh struct zsc_softc *zsc = (void *) self;
311 1.1 eeh struct sbus_attach_args *sa = aux;
312 1.1 eeh int zs_unit = zsc->zsc_dev.dv_unit;
313 1.1 eeh
314 1.1 eeh zsc->zsc_bustag = sa->sa_bustag;
315 1.1 eeh zsc->zsc_dmatag = sa->sa_dmatag;
316 1.1 eeh
317 1.1 eeh /* Use the mapping setup by the Sun PROM. */
318 1.10 eeh if (zsaddr[zs_unit] == NULL) {
319 1.10 eeh if (sa->sa_npromvaddrs) {
320 1.10 eeh /*
321 1.10 eeh * We're converting from a 32-bit pointer to a 64-bit
322 1.10 eeh * pointer. Since the 32-bit entity is negative, but
323 1.10 eeh * the kernel is still mapped into the lower 4GB
324 1.10 eeh * range, this needs to be zero-extended.
325 1.10 eeh *
326 1.10 eeh * XXXXX If we map the kernel and devices into the
327 1.10 eeh * high 4GB range, this needs to be changed to
328 1.10 eeh * sign-extend the address.
329 1.10 eeh */
330 1.10 eeh zsaddr[zs_unit] =
331 1.10 eeh (struct zsdevice *)
332 1.10 eeh (unsigned long)sa->sa_promvaddrs[0];
333 1.10 eeh } else {
334 1.10 eeh bus_space_handle_t kvaddr;
335 1.10 eeh
336 1.10 eeh if (sbus_bus_map(sa->sa_bustag, sa->sa_slot,
337 1.10 eeh sa->sa_offset,
338 1.10 eeh sa->sa_size,
339 1.10 eeh BUS_SPACE_MAP_LINEAR,
340 1.10 eeh 0, &kvaddr) != 0) {
341 1.10 eeh printf("%s @ sbus: cannot map registers\n",
342 1.10 eeh self->dv_xname);
343 1.10 eeh return;
344 1.10 eeh }
345 1.10 eeh zsaddr[zs_unit] = (struct zsdevice *)kvaddr;
346 1.10 eeh }
347 1.10 eeh }
348 1.1 eeh zs_attach(zsc, sa->sa_pri);
349 1.1 eeh }
350 1.1 eeh
351 1.1 eeh static void
352 1.1 eeh zs_attach_obio(parent, self, aux)
353 1.1 eeh struct device *parent;
354 1.1 eeh struct device *self;
355 1.1 eeh void *aux;
356 1.1 eeh {
357 1.5 eeh #ifndef SUN4U
358 1.1 eeh struct zsc_softc *zsc = (void *) self;
359 1.1 eeh union obio_attach_args *uoba = aux;
360 1.1 eeh int zs_unit = zsc->zsc_dev.dv_unit;
361 1.1 eeh
362 1.1 eeh /* Use the mapping setup by the Sun PROM. */
363 1.1 eeh if (zsaddr[zs_unit] == NULL)
364 1.1 eeh zsaddr[zs_unit] = findzs(zs_unit);
365 1.1 eeh
366 1.1 eeh if (uoba->uoba_isobio4 == 0) {
367 1.1 eeh struct sbus_attach_args *sa = &uoba->uoba_sbus;
368 1.1 eeh zsc->zsc_bustag = sa->sa_bustag;
369 1.1 eeh zsc->zsc_dmatag = sa->sa_dmatag;
370 1.1 eeh zs_attach(zsc, sa->sa_pri);
371 1.1 eeh } else {
372 1.1 eeh struct obio4_attach_args *oba = &uoba->uoba_oba4;
373 1.1 eeh zsc->zsc_bustag = oba->oba_bustag;
374 1.1 eeh zsc->zsc_dmatag = oba->oba_dmatag;
375 1.1 eeh zs_attach(zsc, oba->oba_pri);
376 1.1 eeh }
377 1.5 eeh #endif
378 1.1 eeh }
379 1.1 eeh /*
380 1.1 eeh * Attach a found zs.
381 1.1 eeh *
382 1.1 eeh * USE ROM PROPERTIES port-a-ignore-cd AND port-b-ignore-cd FOR
383 1.1 eeh * SOFT CARRIER, AND keyboard PROPERTY FOR KEYBOARD/MOUSE?
384 1.1 eeh */
385 1.1 eeh static void
386 1.1 eeh zs_attach(zsc, pri)
387 1.1 eeh struct zsc_softc *zsc;
388 1.1 eeh int pri;
389 1.1 eeh {
390 1.1 eeh struct zsc_attach_args zsc_args;
391 1.1 eeh volatile struct zschan *zc;
392 1.1 eeh struct zs_chanstate *cs;
393 1.1 eeh int s, zs_unit, channel;
394 1.1 eeh static int didintr, prevpri;
395 1.1 eeh
396 1.1 eeh printf(" softpri %d\n", PIL_TTY);
397 1.1 eeh
398 1.1 eeh /*
399 1.1 eeh * Initialize software state for each channel.
400 1.1 eeh */
401 1.1 eeh zs_unit = zsc->zsc_dev.dv_unit;
402 1.1 eeh for (channel = 0; channel < 2; channel++) {
403 1.1 eeh zsc_args.channel = channel;
404 1.1 eeh zsc_args.hwflags = zs_hwflags[zs_unit][channel];
405 1.1 eeh cs = &zsc->zsc_cs_store[channel];
406 1.1 eeh zsc->zsc_cs[channel] = cs;
407 1.1 eeh
408 1.1 eeh cs->cs_channel = channel;
409 1.1 eeh cs->cs_private = NULL;
410 1.1 eeh cs->cs_ops = &zsops_null;
411 1.1 eeh cs->cs_brg_clk = PCLK / 16;
412 1.1 eeh
413 1.1 eeh zc = zs_get_chan_addr(zs_unit, channel);
414 1.1 eeh cs->cs_reg_csr = &zc->zc_csr;
415 1.1 eeh cs->cs_reg_data = &zc->zc_data;
416 1.1 eeh
417 1.1 eeh bcopy(zs_init_reg, cs->cs_creg, 16);
418 1.1 eeh bcopy(zs_init_reg, cs->cs_preg, 16);
419 1.1 eeh
420 1.1 eeh /* XXX: Get these from the PROM properties! */
421 1.1 eeh /* XXX: See the mvme167 code. Better. */
422 1.1 eeh if (zsc_args.hwflags & ZS_HWFLAG_CONSOLE)
423 1.1 eeh cs->cs_defspeed = zs_get_speed(cs);
424 1.1 eeh else
425 1.1 eeh cs->cs_defspeed = zs_defspeed[zs_unit][channel];
426 1.1 eeh cs->cs_defcflag = zs_def_cflag;
427 1.1 eeh
428 1.1 eeh /* Make these correspond to cs_defcflag (-crtscts) */
429 1.1 eeh cs->cs_rr0_dcd = ZSRR0_DCD;
430 1.1 eeh cs->cs_rr0_cts = 0;
431 1.1 eeh cs->cs_wr5_dtr = ZSWR5_DTR | ZSWR5_RTS;
432 1.1 eeh cs->cs_wr5_rts = 0;
433 1.1 eeh
434 1.1 eeh /*
435 1.1 eeh * Clear the master interrupt enable.
436 1.1 eeh * The INTENA is common to both channels,
437 1.1 eeh * so just do it on the A channel.
438 1.1 eeh */
439 1.1 eeh if (channel == 0) {
440 1.1 eeh zs_write_reg(cs, 9, 0);
441 1.1 eeh }
442 1.1 eeh
443 1.1 eeh /*
444 1.1 eeh * Look for a child driver for this channel.
445 1.1 eeh * The child attach will setup the hardware.
446 1.1 eeh */
447 1.1 eeh if (!config_found(&zsc->zsc_dev, (void *)&zsc_args, zs_print)) {
448 1.1 eeh /* No sub-driver. Just reset it. */
449 1.1 eeh u_char reset = (channel == 0) ?
450 1.1 eeh ZSWR9_A_RESET : ZSWR9_B_RESET;
451 1.1 eeh s = splzs();
452 1.1 eeh zs_write_reg(cs, 9, reset);
453 1.1 eeh splx(s);
454 1.1 eeh }
455 1.1 eeh }
456 1.1 eeh
457 1.1 eeh /*
458 1.1 eeh * Now safe to install interrupt handlers. Note the arguments
459 1.1 eeh * to the interrupt handlers aren't used. Note, we only do this
460 1.1 eeh * once since both SCCs interrupt at the same level and vector.
461 1.1 eeh */
462 1.1 eeh if (!didintr) {
463 1.1 eeh didintr = 1;
464 1.1 eeh prevpri = pri;
465 1.1 eeh bus_intr_establish(zsc->zsc_bustag, pri, 0, zshard, NULL);
466 1.1 eeh intr_establish(PIL_TTY, &levelsoft);
467 1.1 eeh } else if (pri != prevpri)
468 1.1 eeh panic("broken zs interrupt scheme");
469 1.1 eeh
470 1.1 eeh evcnt_attach(&zsc->zsc_dev, "intr", &zsc->zsc_intrcnt);
471 1.1 eeh
472 1.1 eeh /*
473 1.1 eeh * Set the master interrupt enable and interrupt vector.
474 1.1 eeh * (common to both channels, do it on A)
475 1.1 eeh */
476 1.1 eeh cs = zsc->zsc_cs[0];
477 1.1 eeh s = splhigh();
478 1.1 eeh /* interrupt vector */
479 1.1 eeh zs_write_reg(cs, 2, zs_init_reg[2]);
480 1.1 eeh /* master interrupt control (enable) */
481 1.1 eeh zs_write_reg(cs, 9, zs_init_reg[9]);
482 1.1 eeh splx(s);
483 1.1 eeh
484 1.1 eeh #if 0
485 1.1 eeh /*
486 1.1 eeh * XXX: L1A hack - We would like to be able to break into
487 1.1 eeh * the debugger during the rest of autoconfiguration, so
488 1.1 eeh * lower interrupts just enough to let zs interrupts in.
489 1.1 eeh * This is done after both zs devices are attached.
490 1.1 eeh */
491 1.1 eeh if (zs_unit == 1) {
492 1.1 eeh printf("zs1: enabling zs interrupts\n");
493 1.1 eeh (void)splfd(); /* XXX: splzs - 1 */
494 1.1 eeh }
495 1.1 eeh #endif
496 1.1 eeh }
497 1.1 eeh
498 1.1 eeh static int
499 1.1 eeh zs_print(aux, name)
500 1.1 eeh void *aux;
501 1.1 eeh const char *name;
502 1.1 eeh {
503 1.1 eeh struct zsc_attach_args *args = aux;
504 1.1 eeh
505 1.1 eeh if (name != NULL)
506 1.1 eeh printf("%s: ", name);
507 1.1 eeh
508 1.1 eeh if (args->channel != -1)
509 1.1 eeh printf(" channel %d", args->channel);
510 1.1 eeh
511 1.1 eeh return (UNCONF);
512 1.1 eeh }
513 1.1 eeh
514 1.1 eeh static volatile int zssoftpending;
515 1.1 eeh
516 1.1 eeh /*
517 1.1 eeh * Our ZS chips all share a common, autovectored interrupt,
518 1.1 eeh * so we have to look at all of them on each interrupt.
519 1.1 eeh */
520 1.1 eeh static int
521 1.1 eeh zshard(arg)
522 1.1 eeh void *arg;
523 1.1 eeh {
524 1.1 eeh register struct zsc_softc *zsc;
525 1.1 eeh register int unit, rr3, rval, softreq;
526 1.1 eeh
527 1.1 eeh rval = softreq = 0;
528 1.1 eeh for (unit = 0; unit < zs_cd.cd_ndevs; unit++) {
529 1.1 eeh zsc = zs_cd.cd_devs[unit];
530 1.1 eeh if (zsc == NULL)
531 1.1 eeh continue;
532 1.1 eeh rr3 = zsc_intr_hard(zsc);
533 1.1 eeh /* Count up the interrupts. */
534 1.1 eeh if (rr3) {
535 1.1 eeh rval |= rr3;
536 1.1 eeh zsc->zsc_intrcnt.ev_count++;
537 1.1 eeh }
538 1.1 eeh softreq |= zsc->zsc_cs[0]->cs_softreq;
539 1.1 eeh softreq |= zsc->zsc_cs[1]->cs_softreq;
540 1.1 eeh }
541 1.1 eeh
542 1.1 eeh /* We are at splzs here, so no need to lock. */
543 1.1 eeh if (softreq && (zssoftpending == 0)) {
544 1.1 eeh zssoftpending = IE_ZSSOFT;
545 1.1 eeh #if defined(SUN4M)
546 1.1 eeh if (CPU_ISSUN4M)
547 1.1 eeh raise(0, PIL_TTY);
548 1.1 eeh else
549 1.1 eeh #endif
550 1.1 eeh ienab_bis(IE_ZSSOFT);
551 1.1 eeh }
552 1.1 eeh return (rval);
553 1.1 eeh }
554 1.1 eeh
555 1.1 eeh /*
556 1.1 eeh * Similar scheme as for zshard (look at all of them)
557 1.1 eeh */
558 1.1 eeh static int
559 1.1 eeh zssoft(arg)
560 1.1 eeh void *arg;
561 1.1 eeh {
562 1.1 eeh register struct zsc_softc *zsc;
563 1.1 eeh register int s, unit;
564 1.1 eeh
565 1.1 eeh /* This is not the only ISR on this IPL. */
566 1.1 eeh if (zssoftpending == 0)
567 1.1 eeh return (0);
568 1.1 eeh
569 1.1 eeh /*
570 1.1 eeh * The soft intr. bit will be set by zshard only if
571 1.1 eeh * the variable zssoftpending is zero. The order of
572 1.1 eeh * these next two statements prevents our clearing
573 1.1 eeh * the soft intr bit just after zshard has set it.
574 1.1 eeh */
575 1.1 eeh /* ienab_bic(IE_ZSSOFT); */
576 1.1 eeh zssoftpending = 0;
577 1.1 eeh
578 1.1 eeh /* Make sure we call the tty layer at spltty. */
579 1.1 eeh s = spltty();
580 1.1 eeh for (unit = 0; unit < zs_cd.cd_ndevs; unit++) {
581 1.1 eeh zsc = zs_cd.cd_devs[unit];
582 1.1 eeh if (zsc == NULL)
583 1.1 eeh continue;
584 1.1 eeh (void)zsc_intr_soft(zsc);
585 1.1 eeh }
586 1.1 eeh splx(s);
587 1.1 eeh return (1);
588 1.1 eeh }
589 1.1 eeh
590 1.1 eeh
591 1.1 eeh /*
592 1.1 eeh * Compute the current baud rate given a ZS channel.
593 1.1 eeh */
594 1.1 eeh static int
595 1.1 eeh zs_get_speed(cs)
596 1.1 eeh struct zs_chanstate *cs;
597 1.1 eeh {
598 1.1 eeh int tconst;
599 1.1 eeh
600 1.1 eeh tconst = zs_read_reg(cs, 12);
601 1.1 eeh tconst |= zs_read_reg(cs, 13) << 8;
602 1.1 eeh return (TCONST_TO_BPS(cs->cs_brg_clk, tconst));
603 1.1 eeh }
604 1.1 eeh
605 1.1 eeh /*
606 1.1 eeh * MD functions for setting the baud rate and control modes.
607 1.1 eeh */
608 1.1 eeh int
609 1.1 eeh zs_set_speed(cs, bps)
610 1.1 eeh struct zs_chanstate *cs;
611 1.1 eeh int bps; /* bits per second */
612 1.1 eeh {
613 1.1 eeh int tconst, real_bps;
614 1.1 eeh
615 1.1 eeh if (bps == 0)
616 1.1 eeh return (0);
617 1.1 eeh
618 1.1 eeh #ifdef DIAGNOSTIC
619 1.1 eeh if (cs->cs_brg_clk == 0)
620 1.1 eeh panic("zs_set_speed");
621 1.1 eeh #endif
622 1.1 eeh
623 1.1 eeh tconst = BPS_TO_TCONST(cs->cs_brg_clk, bps);
624 1.1 eeh if (tconst < 0)
625 1.1 eeh return (EINVAL);
626 1.1 eeh
627 1.1 eeh /* Convert back to make sure we can do it. */
628 1.1 eeh real_bps = TCONST_TO_BPS(cs->cs_brg_clk, tconst);
629 1.1 eeh
630 1.1 eeh /* XXX - Allow some tolerance here? */
631 1.1 eeh if (real_bps != bps)
632 1.1 eeh return (EINVAL);
633 1.1 eeh
634 1.1 eeh cs->cs_preg[12] = tconst;
635 1.1 eeh cs->cs_preg[13] = tconst >> 8;
636 1.1 eeh
637 1.1 eeh /* Caller will stuff the pending registers. */
638 1.1 eeh return (0);
639 1.1 eeh }
640 1.1 eeh
641 1.1 eeh int
642 1.1 eeh zs_set_modes(cs, cflag)
643 1.1 eeh struct zs_chanstate *cs;
644 1.1 eeh int cflag; /* bits per second */
645 1.1 eeh {
646 1.1 eeh int s;
647 1.1 eeh
648 1.1 eeh /*
649 1.1 eeh * Output hardware flow control on the chip is horrendous:
650 1.1 eeh * if carrier detect drops, the receiver is disabled, and if
651 1.1 eeh * CTS drops, the transmitter is stoped IN MID CHARACTER!
652 1.1 eeh * Therefore, NEVER set the HFC bit, and instead use the
653 1.1 eeh * status interrupt to detect CTS changes.
654 1.1 eeh */
655 1.1 eeh s = splzs();
656 1.9 wrstuden cs->cs_rr0_pps = 0;
657 1.9 wrstuden if ((cflag & (CLOCAL | MDMBUF)) != 0) {
658 1.1 eeh cs->cs_rr0_dcd = 0;
659 1.9 wrstuden if ((cflag & MDMBUF) == 0)
660 1.9 wrstuden cs->cs_rr0_pps = ZSRR0_DCD;
661 1.9 wrstuden } else
662 1.1 eeh cs->cs_rr0_dcd = ZSRR0_DCD;
663 1.1 eeh if ((cflag & CRTSCTS) != 0) {
664 1.1 eeh cs->cs_wr5_dtr = ZSWR5_DTR;
665 1.1 eeh cs->cs_wr5_rts = ZSWR5_RTS;
666 1.1 eeh cs->cs_rr0_cts = ZSRR0_CTS;
667 1.1 eeh } else if ((cflag & CDTRCTS) != 0) {
668 1.1 eeh cs->cs_wr5_dtr = 0;
669 1.1 eeh cs->cs_wr5_rts = ZSWR5_DTR;
670 1.1 eeh cs->cs_rr0_cts = ZSRR0_CTS;
671 1.1 eeh } else if ((cflag & MDMBUF) != 0) {
672 1.1 eeh cs->cs_wr5_dtr = 0;
673 1.1 eeh cs->cs_wr5_rts = ZSWR5_DTR;
674 1.1 eeh cs->cs_rr0_cts = ZSRR0_DCD;
675 1.1 eeh } else {
676 1.1 eeh cs->cs_wr5_dtr = ZSWR5_DTR | ZSWR5_RTS;
677 1.1 eeh cs->cs_wr5_rts = 0;
678 1.1 eeh cs->cs_rr0_cts = 0;
679 1.1 eeh }
680 1.1 eeh splx(s);
681 1.1 eeh
682 1.1 eeh /* Caller will stuff the pending registers. */
683 1.1 eeh return (0);
684 1.1 eeh }
685 1.1 eeh
686 1.1 eeh
687 1.1 eeh /*
688 1.1 eeh * Read or write the chip with suitable delays.
689 1.1 eeh */
690 1.1 eeh
691 1.1 eeh u_char
692 1.1 eeh zs_read_reg(cs, reg)
693 1.1 eeh struct zs_chanstate *cs;
694 1.1 eeh u_char reg;
695 1.1 eeh {
696 1.1 eeh u_char val;
697 1.1 eeh
698 1.1 eeh *cs->cs_reg_csr = reg;
699 1.1 eeh ZS_DELAY();
700 1.1 eeh val = *cs->cs_reg_csr;
701 1.1 eeh ZS_DELAY();
702 1.1 eeh return (val);
703 1.1 eeh }
704 1.1 eeh
705 1.1 eeh void
706 1.1 eeh zs_write_reg(cs, reg, val)
707 1.1 eeh struct zs_chanstate *cs;
708 1.1 eeh u_char reg, val;
709 1.1 eeh {
710 1.1 eeh *cs->cs_reg_csr = reg;
711 1.1 eeh ZS_DELAY();
712 1.1 eeh *cs->cs_reg_csr = val;
713 1.1 eeh ZS_DELAY();
714 1.1 eeh }
715 1.1 eeh
716 1.1 eeh u_char
717 1.1 eeh zs_read_csr(cs)
718 1.1 eeh struct zs_chanstate *cs;
719 1.1 eeh {
720 1.1 eeh register u_char val;
721 1.1 eeh
722 1.1 eeh val = *cs->cs_reg_csr;
723 1.1 eeh ZS_DELAY();
724 1.1 eeh return (val);
725 1.1 eeh }
726 1.1 eeh
727 1.1 eeh void zs_write_csr(cs, val)
728 1.1 eeh struct zs_chanstate *cs;
729 1.1 eeh u_char val;
730 1.1 eeh {
731 1.1 eeh *cs->cs_reg_csr = val;
732 1.1 eeh ZS_DELAY();
733 1.1 eeh }
734 1.1 eeh
735 1.1 eeh u_char zs_read_data(cs)
736 1.1 eeh struct zs_chanstate *cs;
737 1.1 eeh {
738 1.1 eeh register u_char val;
739 1.1 eeh
740 1.1 eeh val = *cs->cs_reg_data;
741 1.1 eeh ZS_DELAY();
742 1.1 eeh return (val);
743 1.1 eeh }
744 1.1 eeh
745 1.1 eeh void zs_write_data(cs, val)
746 1.1 eeh struct zs_chanstate *cs;
747 1.1 eeh u_char val;
748 1.1 eeh {
749 1.1 eeh *cs->cs_reg_data = val;
750 1.1 eeh ZS_DELAY();
751 1.1 eeh }
752 1.1 eeh
753 1.1 eeh /****************************************************************
754 1.1 eeh * Console support functions (Sun specific!)
755 1.1 eeh * Note: this code is allowed to know about the layout of
756 1.1 eeh * the chip registers, and uses that to keep things simple.
757 1.1 eeh * XXX - I think I like the mvme167 code better. -gwr
758 1.1 eeh ****************************************************************/
759 1.1 eeh
760 1.1 eeh extern void Debugger __P((void));
761 1.1 eeh void *zs_conschan;
762 1.1 eeh
763 1.1 eeh /*
764 1.1 eeh * Handle user request to enter kernel debugger.
765 1.1 eeh */
766 1.1 eeh void
767 1.1 eeh zs_abort(cs)
768 1.1 eeh struct zs_chanstate *cs;
769 1.1 eeh {
770 1.1 eeh register volatile struct zschan *zc = zs_conschan;
771 1.1 eeh int rr0;
772 1.1 eeh
773 1.1 eeh /* Wait for end of break to avoid PROM abort. */
774 1.1 eeh /* XXX - Limit the wait? */
775 1.1 eeh do {
776 1.1 eeh rr0 = zc->zc_csr;
777 1.1 eeh ZS_DELAY();
778 1.1 eeh } while (rr0 & ZSRR0_BREAK);
779 1.1 eeh
780 1.1 eeh #if defined(KGDB)
781 1.1 eeh zskgdb(cs);
782 1.1 eeh #elif defined(DDB)
783 1.1 eeh Debugger();
784 1.1 eeh #else
785 1.1 eeh printf("stopping on keyboard abort\n");
786 1.1 eeh callrom();
787 1.1 eeh #endif
788 1.1 eeh }
789 1.1 eeh
790 1.1 eeh /*
791 1.1 eeh * Polled input char.
792 1.1 eeh */
793 1.1 eeh int
794 1.1 eeh zs_getc(arg)
795 1.1 eeh void *arg;
796 1.1 eeh {
797 1.1 eeh register volatile struct zschan *zc = arg;
798 1.1 eeh register int s, c, rr0;
799 1.1 eeh
800 1.1 eeh s = splhigh();
801 1.1 eeh /* Wait for a character to arrive. */
802 1.1 eeh do {
803 1.1 eeh rr0 = zc->zc_csr;
804 1.1 eeh ZS_DELAY();
805 1.1 eeh } while ((rr0 & ZSRR0_RX_READY) == 0);
806 1.1 eeh
807 1.1 eeh c = zc->zc_data;
808 1.1 eeh ZS_DELAY();
809 1.1 eeh splx(s);
810 1.1 eeh
811 1.1 eeh /*
812 1.1 eeh * This is used by the kd driver to read scan codes,
813 1.1 eeh * so don't translate '\r' ==> '\n' here...
814 1.1 eeh */
815 1.1 eeh return (c);
816 1.1 eeh }
817 1.1 eeh
818 1.1 eeh /*
819 1.1 eeh * Polled output char.
820 1.1 eeh */
821 1.1 eeh void
822 1.1 eeh zs_putc(arg, c)
823 1.1 eeh void *arg;
824 1.1 eeh int c;
825 1.1 eeh {
826 1.1 eeh register volatile struct zschan *zc = arg;
827 1.1 eeh register int s, rr0;
828 1.1 eeh
829 1.1 eeh s = splhigh();
830 1.1 eeh
831 1.1 eeh /* Wait for transmitter to become ready. */
832 1.1 eeh do {
833 1.1 eeh rr0 = zc->zc_csr;
834 1.1 eeh ZS_DELAY();
835 1.1 eeh } while ((rr0 & ZSRR0_TX_READY) == 0);
836 1.1 eeh
837 1.1 eeh /*
838 1.1 eeh * Send the next character.
839 1.1 eeh * Now you'd think that this could be followed by a ZS_DELAY()
840 1.1 eeh * just like all the other chip accesses, but it turns out that
841 1.1 eeh * the `transmit-ready' interrupt isn't de-asserted until
842 1.1 eeh * some period of time after the register write completes
843 1.1 eeh * (more than a couple instructions). So to avoid stray
844 1.1 eeh * interrupts we put in the 2us delay regardless of cpu model.
845 1.1 eeh */
846 1.1 eeh zc->zc_data = c;
847 1.1 eeh delay(2);
848 1.1 eeh
849 1.1 eeh splx(s);
850 1.1 eeh }
851 1.1 eeh
852 1.1 eeh /*****************************************************************/
853 1.1 eeh
854 1.1 eeh static void zscninit __P((struct consdev *));
855 1.1 eeh static int zscngetc __P((dev_t));
856 1.1 eeh static void zscnputc __P((dev_t, int));
857 1.5 eeh static void zscnpollc __P((dev_t, int));
858 1.1 eeh /*
859 1.1 eeh * Console table shared by ttya, ttyb
860 1.1 eeh */
861 1.1 eeh struct consdev consdev_tty = {
862 1.1 eeh nullcnprobe,
863 1.1 eeh zscninit,
864 1.1 eeh zscngetc,
865 1.1 eeh zscnputc,
866 1.5 eeh zscnpollc,
867 1.1 eeh };
868 1.1 eeh
869 1.1 eeh static void
870 1.1 eeh zscninit(cn)
871 1.1 eeh struct consdev *cn;
872 1.1 eeh {
873 1.1 eeh }
874 1.1 eeh
875 1.1 eeh /*
876 1.1 eeh * Polled console input putchar.
877 1.1 eeh */
878 1.1 eeh static int
879 1.1 eeh zscngetc(dev)
880 1.1 eeh dev_t dev;
881 1.1 eeh {
882 1.1 eeh return (zs_getc(zs_conschan));
883 1.1 eeh }
884 1.1 eeh
885 1.1 eeh /*
886 1.1 eeh * Polled console output putchar.
887 1.1 eeh */
888 1.1 eeh static void
889 1.1 eeh zscnputc(dev, c)
890 1.1 eeh dev_t dev;
891 1.1 eeh int c;
892 1.1 eeh {
893 1.1 eeh zs_putc(zs_conschan, c);
894 1.5 eeh }
895 1.5 eeh
896 1.5 eeh int swallow_zsintrs;
897 1.5 eeh
898 1.5 eeh static void
899 1.5 eeh zscnpollc(dev, on)
900 1.5 eeh dev_t dev;
901 1.5 eeh int on;
902 1.5 eeh {
903 1.5 eeh /*
904 1.5 eeh * Need to tell zs driver to acknowledge all interrupts or we get
905 1.5 eeh * annoying spurious interrupt messages. This is because mucking
906 1.5 eeh * with spl() levels during polling does not prevent interrupts from
907 1.5 eeh * being generated.
908 1.5 eeh */
909 1.5 eeh
910 1.5 eeh if (on) swallow_zsintrs++;
911 1.5 eeh else swallow_zsintrs--;
912 1.1 eeh }
913 1.1 eeh
914 1.1 eeh /*****************************************************************/
915 1.1 eeh
916 1.1 eeh static void prom_cninit __P((struct consdev *));
917 1.1 eeh static int prom_cngetc __P((dev_t));
918 1.1 eeh static void prom_cnputc __P((dev_t, int));
919 1.1 eeh
920 1.1 eeh int stdin = NULL, stdout = NULL;
921 1.1 eeh
922 1.1 eeh /*
923 1.1 eeh * The console is set to this one initially,
924 1.1 eeh * which lets us use the PROM until consinit()
925 1.1 eeh * is called to select a real console.
926 1.1 eeh */
927 1.1 eeh struct consdev consdev_prom = {
928 1.1 eeh nullcnprobe,
929 1.1 eeh prom_cninit,
930 1.1 eeh prom_cngetc,
931 1.1 eeh prom_cnputc,
932 1.1 eeh nullcnpollc,
933 1.1 eeh };
934 1.1 eeh
935 1.1 eeh /*
936 1.1 eeh * The console table pointer is statically initialized
937 1.1 eeh * to point to the PROM (output only) table, so that
938 1.1 eeh * early calls to printf will work.
939 1.1 eeh */
940 1.1 eeh struct consdev *cn_tab = &consdev_prom;
941 1.1 eeh
942 1.1 eeh void
943 1.1 eeh nullcnprobe(cn)
944 1.1 eeh struct consdev *cn;
945 1.1 eeh {
946 1.1 eeh }
947 1.1 eeh
948 1.1 eeh static void
949 1.1 eeh prom_cninit(cn)
950 1.1 eeh struct consdev *cn;
951 1.1 eeh {
952 1.1 eeh }
953 1.1 eeh
954 1.1 eeh /*
955 1.1 eeh * PROM console input putchar.
956 1.1 eeh * (dummy - this is output only)
957 1.1 eeh */
958 1.1 eeh static int
959 1.1 eeh prom_cngetc(dev)
960 1.1 eeh dev_t dev;
961 1.1 eeh {
962 1.8 eeh char c0;
963 1.8 eeh
964 1.8 eeh if (!stdin) {
965 1.8 eeh int node = OF_finddevice("/chosen");
966 1.8 eeh OF_getprop(node, "stdin", &stdin, sizeof(stdin));
967 1.8 eeh }
968 1.8 eeh if (OF_read(stdin, &c0, 1) == 1)
969 1.8 eeh return (c0 & 0x7f);
970 1.8 eeh return -1;
971 1.1 eeh }
972 1.1 eeh
973 1.1 eeh /*
974 1.1 eeh * PROM console output putchar.
975 1.1 eeh */
976 1.1 eeh static void
977 1.1 eeh prom_cnputc(dev, c)
978 1.1 eeh dev_t dev;
979 1.1 eeh int c;
980 1.1 eeh {
981 1.1 eeh int s;
982 1.1 eeh char c0 = (c & 0x7f);
983 1.1 eeh
984 1.1 eeh if (!stdout) {
985 1.1 eeh int node = OF_finddevice("/chosen");
986 1.1 eeh OF_getprop(node, "stdout", &stdout, sizeof(stdout));
987 1.1 eeh }
988 1.1 eeh
989 1.1 eeh s = splhigh();
990 1.1 eeh OF_write(stdout, &c0, 1);
991 1.1 eeh splx(s);
992 1.1 eeh }
993 1.1 eeh
994 1.1 eeh /*****************************************************************/
995 1.1 eeh
996 1.1 eeh extern struct consdev consdev_kd;
997 1.1 eeh
998 1.1 eeh static char *prom_inSrc_name[] = {
999 1.1 eeh "keyboard/display",
1000 1.1 eeh "ttya", "ttyb",
1001 1.1 eeh "ttyc", "ttyd" };
1002 1.1 eeh
1003 1.8 eeh #ifdef DEBUG
1004 1.8 eeh #define DBPRINT(x) printf x
1005 1.8 eeh #else
1006 1.8 eeh #define DBPRINT(x)
1007 1.8 eeh #endif
1008 1.8 eeh
1009 1.1 eeh /*
1010 1.1 eeh * This function replaces sys/dev/cninit.c
1011 1.1 eeh * Determine which device is the console using
1012 1.1 eeh * the PROM "input source" and "output sink".
1013 1.1 eeh */
1014 1.1 eeh void
1015 1.1 eeh consinit()
1016 1.1 eeh {
1017 1.1 eeh struct zschan *zc;
1018 1.1 eeh struct consdev *cn;
1019 1.1 eeh int channel, zs_unit, zstty_unit;
1020 1.1 eeh int inSource, outSink;
1021 1.3 eeh register int node;
1022 1.1 eeh char buffer[128];
1023 1.1 eeh register char *cp;
1024 1.1 eeh extern int fbnode;
1025 1.1 eeh
1026 1.8 eeh DBPRINT(("consinit()\r\n"));
1027 1.1 eeh if (cn_tab != &consdev_prom) return;
1028 1.1 eeh
1029 1.1 eeh inSource = outSink = -1;
1030 1.1 eeh
1031 1.8 eeh DBPRINT(("setting up stdin\r\n"));
1032 1.1 eeh node = OF_finddevice("/chosen");
1033 1.1 eeh OF_getprop(node, "stdin", &stdin, sizeof(stdin));
1034 1.8 eeh DBPRINT(("stdin instance = %x\r\n", stdin));
1035 1.1 eeh
1036 1.1 eeh node = OF_instance_to_package(stdin);
1037 1.8 eeh DBPRINT(("stdin package = %x\r\n", node));
1038 1.1 eeh if (OF_getproplen(node,"keyboard") >= 0) {
1039 1.1 eeh inSource = PROMDEV_KBD;
1040 1.1 eeh goto setup_output;
1041 1.1 eeh }
1042 1.1 eeh if (strcmp(getpropstring(node,"device_type"),"serial") != 0) {
1043 1.1 eeh /* not a serial, not keyboard. what is it?!? */
1044 1.1 eeh inSource = -1;
1045 1.1 eeh goto setup_output;
1046 1.1 eeh }
1047 1.1 eeh /*
1048 1.1 eeh * At this point we assume the device path is in the form
1049 1.1 eeh * ....device@x,y:a for ttya and ...device@x,y:b for ttyb.
1050 1.1 eeh * If it isn't, we defer to the ROM
1051 1.1 eeh */
1052 1.1 eeh if(OF_instance_to_path(stdin, buffer, sizeof(buffer)) <= 0) {
1053 1.1 eeh printf("consinit: bogus stdin path.\n");
1054 1.1 eeh goto setup_output;
1055 1.1 eeh }
1056 1.1 eeh cp = buffer;
1057 1.1 eeh while (*cp)
1058 1.1 eeh cp++;
1059 1.1 eeh cp -= 2;
1060 1.1 eeh #ifdef DEBUG
1061 1.1 eeh if (cp < buffer)
1062 1.1 eeh panic("consinit: bad stdin path %s",buffer);
1063 1.1 eeh #endif
1064 1.1 eeh /* XXX: only allows tty's a->z, assumes PROMDEV_TTYx contig */
1065 1.1 eeh if (cp[0]==':' && cp[1] >= 'a' && cp[1] <= 'z')
1066 1.1 eeh inSource = PROMDEV_TTYA + (cp[1] - 'a');
1067 1.1 eeh /* else use rom */
1068 1.1 eeh setup_output:
1069 1.8 eeh DBPRINT(("setting up stdout\r\n"));
1070 1.1 eeh node = OF_finddevice("/chosen");
1071 1.1 eeh OF_getprop(node, "stdout", &stdout, sizeof(stdout));
1072 1.1 eeh
1073 1.8 eeh DBPRINT(("stdout instance = %x\r\n", stdout));
1074 1.1 eeh
1075 1.1 eeh node = OF_instance_to_package(stdout);
1076 1.8 eeh DBPRINT(("stdout package = %x\r\n", node));
1077 1.1 eeh if (strcmp(getpropstring(node,"device_type"),"display") == 0) {
1078 1.1 eeh /* frame buffer output */
1079 1.1 eeh outSink = PROMDEV_SCREEN;
1080 1.1 eeh fbnode = node;
1081 1.1 eeh } else if (strcmp(getpropstring(node,"device_type"), "serial")
1082 1.1 eeh != 0) {
1083 1.1 eeh /* not screen, not serial. Whatzit? */
1084 1.1 eeh outSink = -1;
1085 1.1 eeh } else { /* serial console. which? */
1086 1.1 eeh /*
1087 1.1 eeh * At this point we assume the device path is in the
1088 1.1 eeh * form:
1089 1.1 eeh * ....device@x,y:a for ttya, etc.
1090 1.1 eeh * If it isn't, we defer to the ROM
1091 1.1 eeh */
1092 1.1 eeh if(OF_instance_to_path(stdout, buffer, sizeof(buffer)) <= 0) {
1093 1.1 eeh printf("consinit: bogus stdin path.\n");
1094 1.1 eeh goto setup_output;
1095 1.1 eeh }
1096 1.1 eeh cp = buffer;
1097 1.1 eeh while (*cp)
1098 1.1 eeh cp++;
1099 1.1 eeh cp -= 2;
1100 1.1 eeh #ifdef DEBUG
1101 1.1 eeh if (cp < buffer)
1102 1.1 eeh panic("consinit: bad stdout path %s",buffer);
1103 1.1 eeh #endif
1104 1.1 eeh /* XXX: only allows tty's a->z, assumes PROMDEV_TTYx contig */
1105 1.1 eeh if (cp[0]==':' && cp[1] >= 'a' && cp[1] <= 'z')
1106 1.1 eeh outSink = PROMDEV_TTYA + (cp[1] - 'a');
1107 1.1 eeh else outSink = -1;
1108 1.1 eeh }
1109 1.1 eeh if (inSource != outSink) {
1110 1.1 eeh printf("cninit: mismatched PROM output selector\n");
1111 1.1 eeh }
1112 1.1 eeh
1113 1.1 eeh switch (inSource) {
1114 1.1 eeh default:
1115 1.1 eeh printf("cninit: invalid inSource=%d\n", inSource);
1116 1.1 eeh callrom();
1117 1.1 eeh inSource = PROMDEV_KBD;
1118 1.1 eeh /* fall through */
1119 1.1 eeh
1120 1.1 eeh case 0: /* keyboard/display */
1121 1.1 eeh #if NKBD > 0
1122 1.1 eeh zs_unit = 1; /* XXX - config info! */
1123 1.1 eeh channel = 0;
1124 1.1 eeh cn = &consdev_kd;
1125 1.1 eeh /* Set cn_dev, cn_pri in kd.c */
1126 1.1 eeh break;
1127 1.1 eeh #else /* NKBD */
1128 1.1 eeh printf("cninit: kdb/display not configured\n");
1129 1.1 eeh callrom();
1130 1.1 eeh inSource = PROMDEV_TTYA;
1131 1.1 eeh /* fall through */
1132 1.1 eeh #endif /* NKBD */
1133 1.1 eeh
1134 1.1 eeh case PROMDEV_TTYA:
1135 1.1 eeh case PROMDEV_TTYB:
1136 1.1 eeh zstty_unit = inSource - PROMDEV_TTYA;
1137 1.1 eeh zs_unit = 0; /* XXX - config info! */
1138 1.1 eeh channel = zstty_unit & 1;
1139 1.1 eeh cn = &consdev_tty;
1140 1.1 eeh cn->cn_dev = makedev(zs_major, zstty_unit);
1141 1.1 eeh cn->cn_pri = CN_REMOTE;
1142 1.1 eeh break;
1143 1.1 eeh
1144 1.1 eeh }
1145 1.1 eeh /* Now that inSource has been validated, print it. */
1146 1.1 eeh printf("console is %s\n", prom_inSrc_name[inSource]);
1147 1.1 eeh
1148 1.1 eeh zc = zs_get_chan_addr(zs_unit, channel);
1149 1.1 eeh if (zc == NULL) {
1150 1.1 eeh printf("cninit: zs not mapped.\n");
1151 1.1 eeh return;
1152 1.1 eeh }
1153 1.1 eeh zs_conschan = zc;
1154 1.1 eeh zs_hwflags[zs_unit][channel] = ZS_HWFLAG_CONSOLE;
1155 1.1 eeh cn_tab = cn;
1156 1.1 eeh (*cn->cn_init)(cn);
1157 1.1 eeh #ifdef KGDB
1158 1.1 eeh zs_kgdb_init();
1159 1.1 eeh #endif
1160 1.1 eeh }
1161