sio.c revision 172568
1/*-
2 * Copyright (c) 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 * 4. Neither the name of the University nor the names of its contributors
14 *    may be used to endorse or promote products derived from this software
15 *    without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD: head/sys/pc98/cbus/sio.c 172568 2007-10-12 06:03:46Z kevlo $
30 *	from: @(#)com.c	7.5 (Berkeley) 5/16/91
31 *	from: i386/isa sio.c,v 1.234
32 */
33
34#include "opt_comconsole.h"
35#include "opt_compat.h"
36#include "opt_gdb.h"
37#include "opt_kdb.h"
38#include "opt_sio.h"
39
40/*
41 * Serial driver, based on 386BSD-0.1 com driver.
42 * Mostly rewritten to use pseudo-DMA.
43 * Works for National Semiconductor NS8250-NS16550AF UARTs.
44 * COM driver, based on HP dca driver.
45 *
46 * Changes for PC Card integration:
47 *	- Added PC Card driver table and handlers
48 */
49/*===============================================================
50 * 386BSD(98),FreeBSD-1.1x(98) com driver.
51 * -----
52 * modified for PC9801 by M.Ishii
53 *			Kyoto University Microcomputer Club (KMC)
54 * Chou "TEFUTEFU" Hirotomi
55 *			Kyoto Univ.  the faculty of medicine
56 *===============================================================
57 * FreeBSD-2.0.1(98) sio driver.
58 * -----
59 * modified for pc98 Internal i8251 and MICRO CORE MC16550II
60 *			T.Koike(hfc01340@niftyserve.or.jp)
61 * implement kernel device configuration
62 *			aizu@orient.center.nitech.ac.jp
63 *
64 * Notes.
65 * -----
66 *  PC98 localization based on 386BSD(98) com driver. Using its PC98 local
67 *  functions.
68 *  This driver is under debugging,has bugs.
69 */
70/*
71 * modified for AIWA B98-01
72 * by T.Hatanou <hatanou@yasuda.comm.waseda.ac.jp>  last update: 15 Sep.1995
73 */
74/*
75 * Modified by Y.Takahashi of Kogakuin University.
76 */
77/*
78 * modified for 8251(FIFO) by Seigo TANIMURA <tanimura@FreeBSD.org>
79 */
80
81#include <sys/param.h>
82#include <sys/systm.h>
83#include <sys/bus.h>
84#include <sys/conf.h>
85#include <sys/fcntl.h>
86#include <sys/interrupt.h>
87#include <sys/kdb.h>
88#include <sys/kernel.h>
89#include <sys/limits.h>
90#include <sys/lock.h>
91#include <sys/malloc.h>
92#include <sys/module.h>
93#include <sys/mutex.h>
94#include <sys/proc.h>
95#include <sys/reboot.h>
96#include <sys/serial.h>
97#include <sys/sysctl.h>
98#include <sys/syslog.h>
99#include <sys/tty.h>
100#include <machine/bus.h>
101#include <sys/rman.h>
102#include <sys/timepps.h>
103#include <sys/uio.h>
104#include <sys/cons.h>
105
106#include <isa/isavar.h>
107
108#include <machine/resource.h>
109
110#include <dev/sio/sioreg.h>
111#include <dev/sio/siovar.h>
112
113#ifdef PC98
114#include <pc98/cbus/cbus.h>
115#include <pc98/pc98/pc98_machdep.h>
116#endif
117
118#ifdef COM_ESP
119#include <dev/ic/esp.h>
120#endif
121#include <dev/ic/ns16550.h>
122#ifdef PC98
123#include <dev/ic/i8251.h>
124#include <dev/ic/rsa.h>
125#endif
126
127#define	LOTS_OF_EVENTS	64	/* helps separate urgent events from input */
128
129/*
130 * Meaning of flags:
131 *
132 * 0x00000001	shared IRQs
133 * 0x00000002	disable FIFO
134 * 0x00000008	recover sooner from lost output interrupts
135 * 0x00000010	device is potential system console
136 * 0x00000020	device is forced to become system console
137 * 0x00000040	device is reserved for low-level IO
138 * 0x00000080	use this port for remote kernel debugging
139 * 0x0000??00	minor number of master port
140 * 0x00010000	PPS timestamping on CTS instead of DCD
141 * 0x00080000	IIR_TXRDY bug
142 * 0x00400000	If no comconsole found then mark as a comconsole
143 * 0x1?000000	interface type
144 */
145
146#ifdef COM_MULTIPORT
147/* checks in flags for multiport and which is multiport "master chip"
148 * for a given card
149 */
150#define	COM_ISMULTIPORT(flags)	((flags) & 0x01)
151#define	COM_MPMASTER(flags)	(((flags) >> 8) & 0x0ff)
152#ifndef PC98
153#define	COM_NOTAST4(flags)	((flags) & 0x04)
154#endif
155#else
156#define	COM_ISMULTIPORT(flags)	(0)
157#endif /* COM_MULTIPORT */
158
159#define	COM_C_IIR_TXRDYBUG	0x80000
160#define	COM_CONSOLE(flags)	((flags) & 0x10)
161#define	COM_DEBUGGER(flags)	((flags) & 0x80)
162#ifndef PC98
163#define	COM_FIFOSIZE(flags)	(((flags) & 0xff000000) >> 24)
164#endif
165#define	COM_FORCECONSOLE(flags)	((flags) & 0x20)
166#define	COM_IIR_TXRDYBUG(flags)	((flags) & COM_C_IIR_TXRDYBUG)
167#define	COM_LLCONSOLE(flags)	((flags) & 0x40)
168#define	COM_LOSESOUTINTS(flags)	((flags) & 0x08)
169#define	COM_NOFIFO(flags)	((flags) & 0x02)
170#ifndef PC98
171#define	COM_NOSCR(flags)	((flags) & 0x100000)
172#endif
173#define	COM_PPSCTS(flags)	((flags) & 0x10000)
174#ifndef PC98
175#define	COM_ST16650A(flags)	((flags) & 0x20000)
176#define	COM_TI16754(flags)	((flags) & 0x200000)
177#endif
178
179#define	sio_getreg(com, off) \
180	(bus_space_read_1((com)->bst, (com)->bsh, (off)))
181#define	sio_setreg(com, off, value) \
182	(bus_space_write_1((com)->bst, (com)->bsh, (off), (value)))
183
184/*
185 * com state bits.
186 * (CS_BUSY | CS_TTGO) and (CS_BUSY | CS_TTGO | CS_ODEVREADY) must be higher
187 * than the other bits so that they can be tested as a group without masking
188 * off the low bits.
189 *
190 * The following com and tty flags correspond closely:
191 *	CS_BUSY		= TS_BUSY (maintained by comstart(), siopoll() and
192 *				   comstop())
193 *	CS_TTGO		= ~TS_TTSTOP (maintained by comparam() and comstart())
194 *	CS_CTS_OFLOW	= CCTS_OFLOW (maintained by comparam())
195 *	CS_RTS_IFLOW	= CRTS_IFLOW (maintained by comparam())
196 * TS_FLUSH is not used.
197 * XXX I think TIOCSETA doesn't clear TS_TTSTOP when it clears IXON.
198 * XXX CS_*FLOW should be CF_*FLOW in com->flags (control flags not state).
199 */
200#define	CS_BUSY		0x80	/* output in progress */
201#define	CS_TTGO		0x40	/* output not stopped by XOFF */
202#define	CS_ODEVREADY	0x20	/* external device h/w ready (CTS) */
203#define	CS_CHECKMSR	1	/* check of MSR scheduled */
204#define	CS_CTS_OFLOW	2	/* use CTS output flow control */
205#define	CS_ODONE	4	/* output completed */
206#define	CS_RTS_IFLOW	8	/* use RTS input flow control */
207#define	CSE_BUSYCHECK	1	/* siobusycheck() scheduled */
208
209static	char const * const	error_desc[] = {
210#define	CE_OVERRUN			0
211	"silo overflow",
212#define	CE_INTERRUPT_BUF_OVERFLOW	1
213	"interrupt-level buffer overflow",
214#define	CE_TTY_BUF_OVERFLOW		2
215	"tty-level buffer overflow",
216};
217
218#define	CE_NTYPES			3
219#define	CE_RECORD(com, errnum)		(++(com)->delta_error_counts[errnum])
220
221/* types.  XXX - should be elsewhere */
222typedef u_int	Port_t;		/* hardware port */
223typedef u_char	bool_t;		/* boolean */
224
225/* queue of linear buffers */
226struct lbq {
227	u_char	*l_head;	/* next char to process */
228	u_char	*l_tail;	/* one past the last char to process */
229	struct lbq *l_next;	/* next in queue */
230	bool_t	l_queued;	/* nonzero if queued */
231};
232
233/* com device structure */
234struct com_s {
235	u_char	state;		/* miscellaneous flag bits */
236	u_char	cfcr_image;	/* copy of value written to CFCR */
237#ifdef COM_ESP
238	bool_t	esp;		/* is this unit a hayes esp board? */
239#endif
240	u_char	extra_state;	/* more flag bits, separate for order trick */
241	u_char	fifo_image;	/* copy of value written to FIFO */
242	bool_t	hasfifo;	/* nonzero for 16550 UARTs */
243	bool_t	loses_outints;	/* nonzero if device loses output interrupts */
244	u_char	mcr_image;	/* copy of value written to MCR */
245#ifdef COM_MULTIPORT
246	bool_t	multiport;	/* is this unit part of a multiport device? */
247#endif /* COM_MULTIPORT */
248	bool_t	no_irq;		/* nonzero if irq is not attached */
249	bool_t  gone;		/* hardware disappeared */
250	bool_t	poll;		/* nonzero if polling is required */
251	bool_t	poll_output;	/* nonzero if polling for output is required */
252	bool_t	st16650a;	/* nonzero if Startech 16650A compatible */
253	int	unit;		/* unit	number */
254	u_int	flags;		/* copy of device flags */
255	u_int	tx_fifo_size;
256
257	/*
258	 * The high level of the driver never reads status registers directly
259	 * because there would be too many side effects to handle conveniently.
260	 * Instead, it reads copies of the registers stored here by the
261	 * interrupt handler.
262	 */
263	u_char	last_modem_status;	/* last MSR read by intr handler */
264	u_char	prev_modem_status;	/* last MSR handled by high level */
265
266	u_char	*ibuf;		/* start of input buffer */
267	u_char	*ibufend;	/* end of input buffer */
268	u_char	*ibufold;	/* old input buffer, to be freed */
269	u_char	*ihighwater;	/* threshold in input buffer */
270	u_char	*iptr;		/* next free spot in input buffer */
271	int	ibufsize;	/* size of ibuf (not include error bytes) */
272	int	ierroff;	/* offset of error bytes in ibuf */
273
274	struct lbq	obufq;	/* head of queue of output buffers */
275	struct lbq	obufs[2];	/* output buffers */
276
277	bus_space_tag_t		bst;
278	bus_space_handle_t	bsh;
279
280#ifdef PC98
281	Port_t	cmd_port;
282	Port_t	sts_port;
283	Port_t	in_modem_port;
284	Port_t	intr_ctrl_port;
285	Port_t	rsabase;	/* Iobase address of an I/O-DATA RSA board. */
286	int	intr_enable;
287	int	pc98_prev_modem_status;
288	int	pc98_modem_delta;
289	int	modem_car_chg_timer;
290	int	pc98_prev_siocmd;
291	int	pc98_prev_siomod;
292	int	modem_checking;
293	int	pc98_if_type;
294
295	bool_t	pc98_8251fifo;
296	bool_t	pc98_8251fifo_enable;
297#endif /* PC98 */
298	Port_t	data_port;	/* i/o ports */
299#ifdef COM_ESP
300	Port_t	esp_port;
301#endif
302	Port_t	int_ctl_port;
303	Port_t	int_id_port;
304	Port_t	modem_ctl_port;
305	Port_t	line_status_port;
306	Port_t	modem_status_port;
307
308	struct tty	*tp;	/* cross reference */
309
310	struct	pps_state pps;
311	int	pps_bit;
312#ifdef ALT_BREAK_TO_DEBUGGER
313	int	alt_brk_state;
314#endif
315
316	u_long	bytes_in;	/* statistics */
317	u_long	bytes_out;
318	u_int	delta_error_counts[CE_NTYPES];
319	u_long	error_counts[CE_NTYPES];
320
321	u_long	rclk;
322
323	struct resource *irqres;
324	struct resource *ioportres;
325	int	ioportrid;
326	void	*cookie;
327
328	/*
329	 * Data area for output buffers.  Someday we should build the output
330	 * buffer queue without copying data.
331	 */
332#ifdef PC98
333	int	obufsize;
334 	u_char	*obuf1;
335 	u_char	*obuf2;
336#else
337	u_char	obuf1[256];
338	u_char	obuf2[256];
339#endif
340};
341
342#ifdef COM_ESP
343static	int	espattach(struct com_s *com, Port_t esp_port);
344#endif
345
346static	void	combreak(struct tty *tp, int sig);
347static	timeout_t siobusycheck;
348static	u_int	siodivisor(u_long rclk, speed_t speed);
349static	void	comclose(struct tty *tp);
350static	int	comopen(struct tty *tp, struct cdev *dev);
351static	void	sioinput(struct com_s *com);
352static	void	siointr1(struct com_s *com);
353static	int	siointr(void *arg);
354static	int	commodem(struct tty *tp, int sigon, int sigoff);
355static	int	comparam(struct tty *tp, struct termios *t);
356static	void	siopoll(void *);
357static	void	siosettimeout(void);
358static	int	siosetwater(struct com_s *com, speed_t speed);
359static	void	comstart(struct tty *tp);
360static	void	comstop(struct tty *tp, int rw);
361static	timeout_t comwakeup;
362
363char		sio_driver_name[] = "sio";
364static struct	mtx sio_lock;
365static int	sio_inited;
366
367/* table and macro for fast conversion from a unit number to its com struct */
368devclass_t	sio_devclass;
369#define	com_addr(unit)	((struct com_s *) \
370			 devclass_get_softc(sio_devclass, unit)) /* XXX */
371
372int	comconsole = -1;
373static	volatile speed_t	comdefaultrate = CONSPEED;
374static	u_long			comdefaultrclk = DEFAULT_RCLK;
375SYSCTL_ULONG(_machdep, OID_AUTO, conrclk, CTLFLAG_RW, &comdefaultrclk, 0, "");
376static	speed_t			gdbdefaultrate = GDBSPEED;
377SYSCTL_UINT(_machdep, OID_AUTO, gdbspeed, CTLFLAG_RW,
378	    &gdbdefaultrate, GDBSPEED, "");
379static	u_int	com_events;	/* input chars + weighted output completions */
380static	Port_t	siocniobase;
381static	int	siocnunit = -1;
382static	void	*sio_slow_ih;
383static	void	*sio_fast_ih;
384static	int	sio_timeout;
385static	int	sio_timeouts_until_log;
386static	struct	callout_handle sio_timeout_handle
387    = CALLOUT_HANDLE_INITIALIZER(&sio_timeout_handle);
388static	int	sio_numunits;
389
390#ifdef PC98
391struct	siodev	{
392	short	if_type;
393	short	irq;
394	Port_t	cmd, sts, ctrl, mod;
395};
396static	int	sysclock;
397
398#define	COM_INT_DISABLE		{int previpri; previpri=spltty();
399#define	COM_INT_ENABLE		splx(previpri);}
400#define IEN_TxFLAG		IEN_Tx
401
402#define COM_CARRIER_DETECT_EMULATE	0
403#define	PC98_CHECK_MODEM_INTERVAL	(hz/10)
404#define DCD_OFF_TOLERANCE		2
405#define DCD_ON_RECOGNITION		2
406#define IS_8251(if_type)		(!(if_type & 0x10))
407#define COM1_EXT_CLOCK			0x40000
408
409static	void	commint(struct cdev *dev);
410static	void	com_tiocm_bis(struct com_s *com, int msr);
411static	void	com_tiocm_bic(struct com_s *com, int msr);
412static	int	com_tiocm_get(struct com_s *com);
413static	int	com_tiocm_get_delta(struct com_s *com);
414static	void	pc98_msrint_start(struct cdev *dev);
415static	void	com_cflag_and_speed_set(struct com_s *com, int cflag, int speed);
416static	int	pc98_ttspeedtab(struct com_s *com, int speed, u_int *divisor);
417static	int	pc98_get_modem_status(struct com_s *com);
418static	timeout_t	pc98_check_msr;
419static	void	pc98_set_baud_rate(struct com_s *com, u_int count);
420static	void	pc98_i8251_reset(struct com_s *com, int mode, int command);
421static	void	pc98_disable_i8251_interrupt(struct com_s *com, int mod);
422static	void	pc98_enable_i8251_interrupt(struct com_s *com, int mod);
423static	int	pc98_check_i8251_interrupt(struct com_s *com);
424static	int	pc98_i8251_get_cmd(struct com_s *com);
425static	int	pc98_i8251_get_mod(struct com_s *com);
426static	void	pc98_i8251_set_cmd(struct com_s *com, int x);
427static	void	pc98_i8251_or_cmd(struct com_s *com, int x);
428static	void	pc98_i8251_clear_cmd(struct com_s *com, int x);
429static	void	pc98_i8251_clear_or_cmd(struct com_s *com, int clr, int x);
430static	int	pc98_check_if_type(device_t dev, struct siodev *iod);
431static	int	pc98_check_8251vfast(void);
432static	int	pc98_check_8251fifo(void);
433static	void	pc98_check_sysclock(void);
434static	void	pc98_set_ioport(struct com_s *com);
435
436#define com_int_Tx_disable(com) \
437		pc98_disable_i8251_interrupt(com,IEN_Tx|IEN_TxEMP)
438#define com_int_Tx_enable(com) \
439		pc98_enable_i8251_interrupt(com,IEN_TxFLAG)
440#define com_int_Rx_disable(com) \
441		pc98_disable_i8251_interrupt(com,IEN_Rx)
442#define com_int_Rx_enable(com) \
443		pc98_enable_i8251_interrupt(com,IEN_Rx)
444#define com_int_TxRx_disable(com) \
445		pc98_disable_i8251_interrupt(com,IEN_Tx|IEN_TxEMP|IEN_Rx)
446#define com_int_TxRx_enable(com) \
447		pc98_enable_i8251_interrupt(com,IEN_TxFLAG|IEN_Rx)
448#define com_send_break_on(com) \
449		(IS_8251((com)->pc98_if_type) ? \
450		 pc98_i8251_or_cmd((com), CMD8251_SBRK) : \
451		 sio_setreg((com), com_cfcr, (com)->cfcr_image |= CFCR_SBREAK))
452#define com_send_break_off(com) \
453		(IS_8251((com)->pc98_if_type) ? \
454		 pc98_i8251_clear_cmd((com), CMD8251_SBRK) : \
455		 sio_setreg((com), com_cfcr, (com)->cfcr_image &= ~CFCR_SBREAK))
456
457static struct speedtab pc98speedtab[] = {	/* internal RS232C interface */
458	{ 0,		0, },
459	{ 50,		50, },
460	{ 75,		75, },
461	{ 150,		150, },
462	{ 200,		200, },
463	{ 300,		300, },
464	{ 600,		600, },
465	{ 1200,		1200, },
466	{ 2400,		2400, },
467	{ 4800,		4800, },
468	{ 9600,		9600, },
469	{ 19200,	19200, },
470	{ 38400,	38400, },
471	{ 51200,	51200, },
472	{ 76800,	76800, },
473	{ 20800,	20800, },
474	{ 31200,	31200, },
475	{ 41600,	41600, },
476	{ 62400,	62400, },
477	{ -1,		-1 }
478};
479static struct speedtab pc98fast_speedtab[] = {
480	{ 9600,		0x80 | (DEFAULT_RCLK / (16 * (9600))), },
481	{ 19200,	0x80 | (DEFAULT_RCLK / (16 * (19200))), },
482	{ 38400,	0x80 | (DEFAULT_RCLK / (16 * (38400))), },
483	{ 57600,	0x80 | (DEFAULT_RCLK / (16 * (57600))), },
484	{ 115200,	0x80 | (DEFAULT_RCLK / (16 * (115200))), },
485	{ -1,		-1 }
486};
487static struct speedtab comspeedtab_pio9032b[] = {
488	{ 300,		6, },
489	{ 600,		5, },
490	{ 1200,		4, },
491	{ 2400,		3, },
492	{ 4800,		2, },
493	{ 9600,		1, },
494	{ 19200,	0, },
495	{ 38400,	7, },
496	{ -1,		-1 }
497};
498static struct speedtab comspeedtab_b98_01[] = {
499	{ 75,		11, },
500	{ 150,		10, },
501	{ 300,		9, },
502	{ 600,		8, },
503	{ 1200,		7, },
504	{ 2400,		6, },
505	{ 4800,		5, },
506	{ 9600,		4, },
507	{ 19200,	3, },
508	{ 38400,	2, },
509	{ 76800,	1, },
510	{ 153600,	0, },
511	{ -1,		-1 }
512};
513static struct speedtab comspeedtab_ind[] = {
514	{ 300,		1536, },
515	{ 600,		768, },
516	{ 1200,		384, },
517	{ 2400,		192, },
518	{ 4800,		96, },
519	{ 9600,		48, },
520	{ 19200,	24, },
521	{ 38400,	12, },
522	{ 57600,	8, },
523	{ 115200,	4, },
524	{ 153600,	3, },
525	{ 230400,	2, },
526	{ 460800,	1, },
527	{ -1,		-1 }
528};
529
530struct {
531	char	*name;
532	short	port_table[7];
533	short	irr_mask;
534	struct speedtab	*speedtab;
535	short	check_irq;
536} if_8251_type[] = {
537	/* COM_IF_INTERNAL */
538	{ " (internal)", {0x30, 0x32, 0x32, 0x33, 0x35, -1, -1},
539	     -1, pc98speedtab, 1 },
540	/* COM_IF_PC9861K_1 */
541	{ " (PC9861K)", {0xb1, 0xb3, 0xb3, 0xb0, 0xb0, -1, -1},
542	     3, NULL, 1 },
543	/* COM_IF_PC9861K_2 */
544	{ " (PC9861K)", {0xb9, 0xbb, 0xbb, 0xb2, 0xb2, -1, -1},
545	      3, NULL, 1 },
546	/* COM_IF_IND_SS_1 */
547	{ " (IND-SS)", {0xb1, 0xb3, 0xb3, 0xb0, 0xb0, 0xb3, -1},
548	     3, comspeedtab_ind, 1 },
549	/* COM_IF_IND_SS_2 */
550	{ " (IND-SS)", {0xb9, 0xbb, 0xbb, 0xb2, 0xb2, 0xbb, -1},
551	     3, comspeedtab_ind, 1 },
552	/* COM_IF_PIO9032B_1 */
553	{ " (PIO9032B)", {0xb1, 0xb3, 0xb3, 0xb0, 0xb0, 0xb8, -1},
554	      7, comspeedtab_pio9032b, 1 },
555	/* COM_IF_PIO9032B_2 */
556	{ " (PIO9032B)", {0xb9, 0xbb, 0xbb, 0xb2, 0xb2, 0xba, -1},
557	      7, comspeedtab_pio9032b, 1 },
558	/* COM_IF_B98_01_1 */
559	{ " (B98-01)", {0xb1, 0xb3, 0xb3, 0xb0, 0xb0, 0xd1, 0xd3},
560	      7, comspeedtab_b98_01, 0 },
561	/* COM_IF_B98_01_2 */
562	{ " (B98-01)", {0xb9, 0xbb, 0xbb, 0xb2, 0xb2, 0xd5, 0xd7},
563	     7, comspeedtab_b98_01, 0 },
564};
565#define	PC98SIO_data_port(type)		(if_8251_type[type].port_table[0])
566#define	PC98SIO_cmd_port(type)		(if_8251_type[type].port_table[1])
567#define	PC98SIO_sts_port(type)		(if_8251_type[type].port_table[2])
568#define	PC98SIO_in_modem_port(type)	(if_8251_type[type].port_table[3])
569#define	PC98SIO_intr_ctrl_port(type)	(if_8251_type[type].port_table[4])
570#define	PC98SIO_baud_rate_port(type)	(if_8251_type[type].port_table[5])
571#define	PC98SIO_func_port(type)		(if_8251_type[type].port_table[6])
572
573#define	I8251F_data		0x130
574#define	I8251F_lsr		0x132
575#define	I8251F_msr		0x134
576#define	I8251F_iir		0x136
577#define	I8251F_fcr		0x138
578#define	I8251F_div		0x13a
579
580
581static bus_addr_t port_table_0[] =
582	{0x000, 0x001, 0x002, 0x003, 0x004, 0x005, 0x006, 0x007};
583static bus_addr_t port_table_1[] =
584	{0x000, 0x002, 0x004, 0x006, 0x008, 0x00a, 0x00c, 0x00e};
585static bus_addr_t port_table_8[] =
586	{0x000, 0x100, 0x200, 0x300, 0x400, 0x500, 0x600, 0x700};
587static bus_addr_t port_table_rsa[] = {
588	0x008, 0x009, 0x00a, 0x00b, 0x00c, 0x00d, 0x00e, 0x00f,
589	0x000, 0x001, 0x002, 0x003, 0x004, 0x005, 0x006, 0x007
590};
591
592struct {
593	char		*name;
594	short		irr_read;
595	short		irr_write;
596	bus_addr_t	*iat;
597	bus_size_t	iatsz;
598	u_long		rclk;
599} if_16550a_type[] = {
600	/* COM_IF_RSA98 */
601	{" (RSA-98)", -1, -1, port_table_0, IO_COMSIZE, DEFAULT_RCLK},
602	/* COM_IF_NS16550 */
603	{"", -1, -1, port_table_0, IO_COMSIZE, DEFAULT_RCLK},
604	/* COM_IF_SECOND_CCU */
605	{"", -1, -1, port_table_0, IO_COMSIZE, DEFAULT_RCLK},
606	/* COM_IF_MC16550II */
607	{" (MC16550II)", -1, 0x1000, port_table_8, IO_COMSIZE,
608	 DEFAULT_RCLK * 4},
609	/* COM_IF_MCRS98 */
610	{" (MC-RS98)", -1, 0x1000, port_table_8, IO_COMSIZE, DEFAULT_RCLK * 4},
611	/* COM_IF_RSB3000 */
612	{" (RSB-3000)", 0xbf, -1, port_table_1, IO_COMSIZE, DEFAULT_RCLK * 10},
613	/* COM_IF_RSB384 */
614	{" (RSB-384)", 0xbf, -1, port_table_1, IO_COMSIZE, DEFAULT_RCLK * 10},
615	/* COM_IF_MODEM_CARD */
616	{"", -1, -1, port_table_0, IO_COMSIZE, DEFAULT_RCLK},
617	/* COM_IF_RSA98III */
618	{" (RSA-98III)", -1, -1, port_table_rsa, 16, DEFAULT_RCLK * 8},
619	/* COM_IF_ESP98 */
620	{" (ESP98)", -1, -1, port_table_1, IO_COMSIZE, DEFAULT_RCLK * 4},
621};
622#endif /* PC98 */
623
624#ifdef GDB
625static	Port_t	siogdbiobase = 0;
626#endif
627
628#ifdef COM_ESP
629#ifdef PC98
630
631/* XXX configure this properly. */
632/* XXX quite broken for new-bus. */
633static  Port_t  likely_com_ports[] = { 0, 0xb0, 0xb1, 0 };
634static  Port_t  likely_esp_ports[] = { 0xc0d0, 0 };
635
636#define	ESP98_CMD1	(ESP_CMD1 * 0x100)
637#define	ESP98_CMD2	(ESP_CMD2 * 0x100)
638#define	ESP98_STATUS1	(ESP_STATUS1 * 0x100)
639#define	ESP98_STATUS2	(ESP_STATUS2 * 0x100)
640
641#else /* PC98 */
642
643/* XXX configure this properly. */
644static	Port_t	likely_com_ports[] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8, };
645static	Port_t	likely_esp_ports[] = { 0x140, 0x180, 0x280, 0 };
646
647#endif /* PC98 */
648#endif
649
650/*
651 * handle sysctl read/write requests for console speed
652 *
653 * In addition to setting comdefaultrate for I/O through /dev/console,
654 * also set the initial and lock values for the /dev/ttyXX device
655 * if there is one associated with the console.  Finally, if the /dev/tty
656 * device has already been open, change the speed on the open running port
657 * itself.
658 */
659
660static int
661sysctl_machdep_comdefaultrate(SYSCTL_HANDLER_ARGS)
662{
663	int error, s;
664	speed_t newspeed;
665	struct com_s *com;
666	struct tty *tp;
667
668	newspeed = comdefaultrate;
669
670	error = sysctl_handle_opaque(oidp, &newspeed, sizeof newspeed, req);
671	if (error || !req->newptr)
672		return (error);
673
674	comdefaultrate = newspeed;
675
676	if (comconsole < 0)		/* serial console not selected? */
677		return (0);
678
679	com = com_addr(comconsole);
680	if (com == NULL)
681		return (ENXIO);
682
683	tp = com->tp;
684	if (tp == NULL)
685		return (ENXIO);
686
687	/*
688	 * set the initial and lock rates for /dev/ttydXX and /dev/cuaXX
689	 * (note, the lock rates really are boolean -- if non-zero, disallow
690	 *  speed changes)
691	 */
692	tp->t_init_in.c_ispeed  = tp->t_init_in.c_ospeed =
693	tp->t_lock_in.c_ispeed  = tp->t_lock_in.c_ospeed =
694	tp->t_init_out.c_ispeed = tp->t_init_out.c_ospeed =
695	tp->t_lock_out.c_ispeed = tp->t_lock_out.c_ospeed = comdefaultrate;
696
697	if (tp->t_state & TS_ISOPEN) {
698		tp->t_termios.c_ispeed =
699		tp->t_termios.c_ospeed = comdefaultrate;
700		s = spltty();
701		error = comparam(tp, &tp->t_termios);
702		splx(s);
703	}
704	return error;
705}
706
707SYSCTL_PROC(_machdep, OID_AUTO, conspeed, CTLTYPE_INT | CTLFLAG_RW,
708	    0, 0, sysctl_machdep_comdefaultrate, "I", "");
709TUNABLE_INT("machdep.conspeed", __DEVOLATILE(int *, &comdefaultrate));
710
711/*
712 *	Unload the driver and clear the table.
713 *	XXX this is mostly wrong.
714 *	XXX TODO:
715 *	This is usually called when the card is ejected, but
716 *	can be caused by a kldunload of a controller driver.
717 *	The idea is to reset the driver's view of the device
718 *	and ensure that any driver entry points such as
719 *	read and write do not hang.
720 */
721int
722siodetach(device_t dev)
723{
724	struct com_s	*com;
725
726	com = (struct com_s *) device_get_softc(dev);
727	if (com == NULL) {
728		device_printf(dev, "NULL com in siounload\n");
729		return (0);
730	}
731	com->gone = TRUE;
732	if (com->tp)
733		ttyfree(com->tp);
734	if (com->irqres) {
735		bus_teardown_intr(dev, com->irqres, com->cookie);
736		bus_release_resource(dev, SYS_RES_IRQ, 0, com->irqres);
737	}
738	if (com->ioportres)
739		bus_release_resource(dev, SYS_RES_IOPORT, com->ioportrid,
740				     com->ioportres);
741	if (com->ibuf != NULL)
742		free(com->ibuf, M_DEVBUF);
743#ifdef PC98
744	if (com->obuf1 != NULL)
745		free(com->obuf1, M_DEVBUF);
746#endif
747
748	device_set_softc(dev, NULL);
749	free(com, M_DEVBUF);
750	return (0);
751}
752
753int
754sioprobe(dev, xrid, rclk, noprobe)
755	device_t	dev;
756	int		xrid;
757	u_long		rclk;
758	int		noprobe;
759{
760#if 0
761	static bool_t	already_init;
762	device_t	xdev;
763#endif
764	struct com_s	*com;
765	u_int		divisor;
766	bool_t		failures[10];
767	int		fn;
768	device_t	idev;
769	Port_t		iobase;
770	intrmask_t	irqmap[4];
771	intrmask_t	irqs;
772	u_char		mcr_image;
773	int		result;
774	u_long		xirq;
775	u_int		flags = device_get_flags(dev);
776	int		rid;
777	struct resource *port;
778#ifdef PC98
779	int		tmp;
780	struct siodev	iod;
781#endif
782
783#ifdef PC98
784	iod.if_type = GET_IFTYPE(flags);
785	if ((iod.if_type < 0 || iod.if_type > COM_IF_END1) &&
786	    (iod.if_type < 0x10 || iod.if_type > COM_IF_END2))
787			return ENXIO;
788#endif
789
790	rid = xrid;
791#ifdef PC98
792	if (IS_8251(iod.if_type)) {
793		port = bus_alloc_resource_any(dev, SYS_RES_IOPORT, &rid,
794					      RF_ACTIVE);
795	} else if (iod.if_type == COM_IF_MODEM_CARD ||
796		   iod.if_type == COM_IF_RSA98III ||
797		   isa_get_vendorid(dev)) {
798		port = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, 0, ~0,
799		  if_16550a_type[iod.if_type & 0x0f].iatsz, RF_ACTIVE);
800	} else {
801		port = isa_alloc_resourcev(dev, SYS_RES_IOPORT, &rid,
802		   if_16550a_type[iod.if_type & 0x0f].iat,
803		   if_16550a_type[iod.if_type & 0x0f].iatsz, RF_ACTIVE);
804	}
805#else
806	port = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid,
807				  0, ~0, IO_COMSIZE, RF_ACTIVE);
808#endif
809	if (!port)
810		return (ENXIO);
811#ifdef PC98
812	if (!IS_8251(iod.if_type)) {
813		if (isa_load_resourcev(port,
814		       if_16550a_type[iod.if_type & 0x0f].iat,
815		       if_16550a_type[iod.if_type & 0x0f].iatsz) != 0) {
816			bus_release_resource(dev, SYS_RES_IOPORT, rid, port);
817			return ENXIO;
818		}
819	}
820#endif
821
822	com = malloc(sizeof(*com), M_DEVBUF, M_NOWAIT | M_ZERO);
823	if (com == NULL) {
824		bus_release_resource(dev, SYS_RES_IOPORT, rid, port);
825		return (ENOMEM);
826	}
827	device_set_softc(dev, com);
828	com->bst = rman_get_bustag(port);
829	com->bsh = rman_get_bushandle(port);
830#ifdef PC98
831	if (!IS_8251(iod.if_type) && rclk == 0)
832		rclk = if_16550a_type[iod.if_type & 0x0f].rclk;
833#else
834	if (rclk == 0)
835		rclk = DEFAULT_RCLK;
836#endif
837	com->rclk = rclk;
838
839	while (sio_inited != 2)
840		if (atomic_cmpset_int(&sio_inited, 0, 1)) {
841			mtx_init(&sio_lock, sio_driver_name, NULL,
842			    (comconsole != -1) ?
843			    MTX_SPIN | MTX_QUIET : MTX_SPIN);
844			atomic_store_rel_int(&sio_inited, 2);
845		}
846
847#if 0
848	/*
849	 * XXX this is broken - when we are first called, there are no
850	 * previously configured IO ports.  We could hard code
851	 * 0x3f8, 0x2f8, 0x3e8, 0x2e8 etc but that's probably worse.
852	 * This code has been doing nothing since the conversion since
853	 * "count" is zero the first time around.
854	 */
855	if (!already_init) {
856		/*
857		 * Turn off MCR_IENABLE for all likely serial ports.  An unused
858		 * port with its MCR_IENABLE gate open will inhibit interrupts
859		 * from any used port that shares the interrupt vector.
860		 * XXX the gate enable is elsewhere for some multiports.
861		 */
862		device_t *devs;
863		int count, i, xioport;
864#ifdef PC98
865		int xiftype;
866#endif
867
868		devclass_get_devices(sio_devclass, &devs, &count);
869#ifdef PC98
870		for (i = 0; i < count; i++) {
871			xdev = devs[i];
872			xioport = bus_get_resource_start(xdev, SYS_RES_IOPORT, 0);
873			xiftype = GET_IFTYPE(device_get_flags(xdev));
874			if (device_is_enabled(xdev) && xioport > 0) {
875			    if (IS_8251(xiftype))
876				outb((xioport & 0xff00) | PC98SIO_cmd_port(xiftype & 0x0f), 0xf2);
877			    else
878				outb(xioport + if_16550a_type[xiftype & 0x0f].iat[com_mcr], 0);
879			}
880		}
881#else
882		for (i = 0; i < count; i++) {
883			xdev = devs[i];
884			if (device_is_enabled(xdev) &&
885			    bus_get_resource(xdev, SYS_RES_IOPORT, 0, &xioport,
886					     NULL) == 0)
887				outb(xioport + com_mcr, 0);
888		}
889#endif
890		free(devs, M_TEMP);
891		already_init = TRUE;
892	}
893#endif
894
895	if (COM_LLCONSOLE(flags)) {
896		printf("sio%d: reserved for low-level i/o\n",
897		       device_get_unit(dev));
898		bus_release_resource(dev, SYS_RES_IOPORT, rid, port);
899		device_set_softc(dev, NULL);
900		free(com, M_DEVBUF);
901		return (ENXIO);
902	}
903
904#ifdef PC98
905	DELAY(10);
906
907	/*
908	 * If the port is i8251 UART (internal, B98_01)
909	 */
910	if (pc98_check_if_type(dev, &iod) == -1) {
911		bus_release_resource(dev, SYS_RES_IOPORT, rid, port);
912		device_set_softc(dev, NULL);
913		free(com, M_DEVBUF);
914		return (ENXIO);
915	}
916	if (iod.irq > 0)
917		bus_set_resource(dev, SYS_RES_IRQ, 0, iod.irq, 1);
918	if (IS_8251(iod.if_type)) {
919		outb(iod.cmd, 0);
920		DELAY(10);
921		outb(iod.cmd, 0);
922		DELAY(10);
923		outb(iod.cmd, 0);
924		DELAY(10);
925		outb(iod.cmd, CMD8251_RESET);
926		DELAY(1000);		/* for a while...*/
927		outb(iod.cmd, 0xf2);	/* MODE (dummy) */
928		DELAY(10);
929		outb(iod.cmd, 0x01);	/* CMD (dummy) */
930		DELAY(1000);		/* for a while...*/
931		if (( inb(iod.sts) & STS8251_TxEMP ) == 0 ) {
932		    result = (ENXIO);
933		}
934		if (if_8251_type[iod.if_type & 0x0f].check_irq) {
935		    COM_INT_DISABLE
936		    tmp = ( inb( iod.ctrl ) & ~(IEN_Rx|IEN_TxEMP|IEN_Tx));
937		    outb( iod.ctrl, tmp|IEN_TxEMP );
938		    DELAY(10);
939		    result = isa_irq_pending() ? 0 : ENXIO;
940		    outb( iod.ctrl, tmp );
941		    COM_INT_ENABLE
942		} else {
943		    /*
944		     * B98_01 doesn't activate TxEMP interrupt line
945		     * when being reset, so we can't check irq pending.
946		     */
947		    result = 0;
948		}
949		bus_release_resource(dev, SYS_RES_IOPORT, rid, port);
950		if (result) {
951			device_set_softc(dev, NULL);
952			free(com, M_DEVBUF);
953		}
954		return result;
955	}
956#endif /* PC98 */
957	/*
958	 * If the device is on a multiport card and has an AST/4
959	 * compatible interrupt control register, initialize this
960	 * register and prepare to leave MCR_IENABLE clear in the mcr.
961	 * Otherwise, prepare to set MCR_IENABLE in the mcr.
962	 * Point idev to the device struct giving the correct id_irq.
963	 * This is the struct for the master device if there is one.
964	 */
965	idev = dev;
966	mcr_image = MCR_IENABLE;
967#ifdef COM_MULTIPORT
968	if (COM_ISMULTIPORT(flags)) {
969#ifndef PC98
970		Port_t xiobase;
971		u_long io;
972#endif
973
974		idev = devclass_get_device(sio_devclass, COM_MPMASTER(flags));
975		if (idev == NULL) {
976			printf("sio%d: master device %d not configured\n",
977			       device_get_unit(dev), COM_MPMASTER(flags));
978			idev = dev;
979		}
980#ifndef PC98
981		if (!COM_NOTAST4(flags)) {
982			if (bus_get_resource(idev, SYS_RES_IOPORT, 0, &io,
983					     NULL) == 0) {
984				xiobase = io;
985				if (bus_get_resource(idev, SYS_RES_IRQ, 0,
986				    NULL, NULL) == 0)
987					outb(xiobase + com_scr, 0x80);
988				else
989					outb(xiobase + com_scr, 0);
990			}
991			mcr_image = 0;
992		}
993#endif
994	}
995#endif /* COM_MULTIPORT */
996	if (bus_get_resource(idev, SYS_RES_IRQ, 0, NULL, NULL) != 0)
997		mcr_image = 0;
998
999	bzero(failures, sizeof failures);
1000	iobase = rman_get_start(port);
1001
1002#ifdef PC98
1003        if (iod.if_type == COM_IF_RSA98III) {
1004		mcr_image = 0;
1005
1006		outb(iobase + rsa_msr,   0x04);
1007		outb(iobase + rsa_frr,   0x00);
1008		if ((inb(iobase + rsa_srr) & 0x36) != 0x36) {
1009			bus_release_resource(dev, SYS_RES_IOPORT, rid, port);
1010			device_set_softc(dev, NULL);
1011			free(com, M_DEVBUF);
1012			return (ENXIO);
1013		}
1014		outb(iobase + rsa_ier,   0x00);
1015		outb(iobase + rsa_frr,   0x00);
1016		outb(iobase + rsa_tivsr, 0x00);
1017		outb(iobase + rsa_tcr,   0x00);
1018	}
1019
1020	tmp = if_16550a_type[iod.if_type & 0x0f].irr_write;
1021	if (tmp != -1) {
1022	    /* MC16550II */
1023	    int	irqout;
1024	    switch (isa_get_irq(idev)) {
1025	    case 3: irqout = 4; break;
1026	    case 5: irqout = 5; break;
1027	    case 6: irqout = 6; break;
1028	    case 12: irqout = 7; break;
1029	    default:
1030		printf("sio%d: irq configuration error\n",
1031		       device_get_unit(dev));
1032		bus_release_resource(dev, SYS_RES_IOPORT, rid, port);
1033		device_set_softc(dev, NULL);
1034		free(com, M_DEVBUF);
1035		return (ENXIO);
1036	    }
1037	    outb((iobase & 0x00ff) | tmp, irqout);
1038	}
1039#endif
1040
1041	/*
1042	 * We don't want to get actual interrupts, just masked ones.
1043	 * Interrupts from this line should already be masked in the ICU,
1044	 * but mask them in the processor as well in case there are some
1045	 * (misconfigured) shared interrupts.
1046	 */
1047	mtx_lock_spin(&sio_lock);
1048/* EXTRA DELAY? */
1049
1050	/*
1051	 * Initialize the speed and the word size and wait long enough to
1052	 * drain the maximum of 16 bytes of junk in device output queues.
1053	 * The speed is undefined after a master reset and must be set
1054	 * before relying on anything related to output.  There may be
1055	 * junk after a (very fast) soft reboot and (apparently) after
1056	 * master reset.
1057	 * XXX what about the UART bug avoided by waiting in comparam()?
1058	 * We don't want to to wait long enough to drain at 2 bps.
1059	 */
1060	if (iobase == siocniobase)
1061		DELAY((16 + 1) * 1000000 / (comdefaultrate / 10));
1062	else {
1063		sio_setreg(com, com_cfcr, CFCR_DLAB | CFCR_8BITS);
1064		divisor = siodivisor(rclk, SIO_TEST_SPEED);
1065		sio_setreg(com, com_dlbl, divisor & 0xff);
1066		sio_setreg(com, com_dlbh, divisor >> 8);
1067		sio_setreg(com, com_cfcr, CFCR_8BITS);
1068		DELAY((16 + 1) * 1000000 / (SIO_TEST_SPEED / 10));
1069	}
1070
1071	/*
1072	 * Enable the interrupt gate and disable device interrupts.  This
1073	 * should leave the device driving the interrupt line low and
1074	 * guarantee an edge trigger if an interrupt can be generated.
1075	 */
1076/* EXTRA DELAY? */
1077	sio_setreg(com, com_mcr, mcr_image);
1078	sio_setreg(com, com_ier, 0);
1079	DELAY(1000);		/* XXX */
1080	irqmap[0] = isa_irq_pending();
1081
1082	/*
1083	 * Attempt to set loopback mode so that we can send a null byte
1084	 * without annoying any external device.
1085	 */
1086/* EXTRA DELAY? */
1087	sio_setreg(com, com_mcr, mcr_image | MCR_LOOPBACK);
1088
1089	/*
1090	 * Attempt to generate an output interrupt.  On 8250's, setting
1091	 * IER_ETXRDY generates an interrupt independent of the current
1092	 * setting and independent of whether the THR is empty.  On 16450's,
1093	 * setting IER_ETXRDY generates an interrupt independent of the
1094	 * current setting.  On 16550A's, setting IER_ETXRDY only
1095	 * generates an interrupt when IER_ETXRDY is not already set.
1096	 */
1097	sio_setreg(com, com_ier, IER_ETXRDY);
1098#ifdef PC98
1099        if (iod.if_type == COM_IF_RSA98III)
1100		outb(iobase + rsa_ier, 0x04);
1101#endif
1102
1103	/*
1104	 * On some 16x50 incompatibles, setting IER_ETXRDY doesn't generate
1105	 * an interrupt.  They'd better generate one for actually doing
1106	 * output.  Loopback may be broken on the same incompatibles but
1107	 * it's unlikely to do more than allow the null byte out.
1108	 */
1109	sio_setreg(com, com_data, 0);
1110	if (iobase == siocniobase)
1111		DELAY((1 + 2) * 1000000 / (comdefaultrate / 10));
1112	else
1113		DELAY((1 + 2) * 1000000 / (SIO_TEST_SPEED / 10));
1114
1115	/*
1116	 * Turn off loopback mode so that the interrupt gate works again
1117	 * (MCR_IENABLE was hidden).  This should leave the device driving
1118	 * an interrupt line high.  It doesn't matter if the interrupt
1119	 * line oscillates while we are not looking at it, since interrupts
1120	 * are disabled.
1121	 */
1122/* EXTRA DELAY? */
1123	sio_setreg(com, com_mcr, mcr_image);
1124
1125	/*
1126	 * It seems my Xircom CBEM56G Cardbus modem wants to be reset
1127	 * to 8 bits *again*, or else probe test 0 will fail.
1128	 * gwk@sgi.com, 4/19/2001
1129	 */
1130	sio_setreg(com, com_cfcr, CFCR_8BITS);
1131
1132	/*
1133	 * Some PCMCIA cards (Palido 321s, DC-1S, ...) have the "TXRDY bug",
1134	 * so we probe for a buggy IIR_TXRDY implementation even in the
1135	 * noprobe case.  We don't probe for it in the !noprobe case because
1136	 * noprobe is always set for PCMCIA cards and the problem is not
1137	 * known to affect any other cards.
1138	 */
1139	if (noprobe) {
1140		/* Read IIR a few times. */
1141		for (fn = 0; fn < 2; fn ++) {
1142			DELAY(10000);
1143			failures[6] = sio_getreg(com, com_iir);
1144		}
1145
1146		/* IIR_TXRDY should be clear.  Is it? */
1147		result = 0;
1148		if (failures[6] & IIR_TXRDY) {
1149			/*
1150			 * No.  We seem to have the bug.  Does our fix for
1151			 * it work?
1152			 */
1153			sio_setreg(com, com_ier, 0);
1154			if (sio_getreg(com, com_iir) & IIR_NOPEND) {
1155				/* Yes.  We discovered the TXRDY bug! */
1156				SET_FLAG(dev, COM_C_IIR_TXRDYBUG);
1157			} else {
1158				/* No.  Just fail.  XXX */
1159				result = ENXIO;
1160				sio_setreg(com, com_mcr, 0);
1161			}
1162		} else {
1163			/* Yes.  No bug. */
1164			CLR_FLAG(dev, COM_C_IIR_TXRDYBUG);
1165		}
1166		sio_setreg(com, com_ier, 0);
1167		sio_setreg(com, com_cfcr, CFCR_8BITS);
1168		mtx_unlock_spin(&sio_lock);
1169		bus_release_resource(dev, SYS_RES_IOPORT, rid, port);
1170		if (iobase == siocniobase)
1171			result = 0;
1172		if (result != 0) {
1173			device_set_softc(dev, NULL);
1174			free(com, M_DEVBUF);
1175		}
1176		return (result);
1177	}
1178
1179	/*
1180	 * Check that
1181	 *	o the CFCR, IER and MCR in UART hold the values written to them
1182	 *	  (the values happen to be all distinct - this is good for
1183	 *	  avoiding false positive tests from bus echoes).
1184	 *	o an output interrupt is generated and its vector is correct.
1185	 *	o the interrupt goes away when the IIR in the UART is read.
1186	 */
1187/* EXTRA DELAY? */
1188	failures[0] = sio_getreg(com, com_cfcr) - CFCR_8BITS;
1189	failures[1] = sio_getreg(com, com_ier) - IER_ETXRDY;
1190	failures[2] = sio_getreg(com, com_mcr) - mcr_image;
1191	DELAY(10000);		/* Some internal modems need this time */
1192	irqmap[1] = isa_irq_pending();
1193	failures[4] = (sio_getreg(com, com_iir) & IIR_IMASK) - IIR_TXRDY;
1194#ifdef PC98
1195        if (iod.if_type == COM_IF_RSA98III)
1196		inb(iobase + rsa_srr);
1197#endif
1198	DELAY(1000);		/* XXX */
1199	irqmap[2] = isa_irq_pending();
1200	failures[6] = (sio_getreg(com, com_iir) & IIR_IMASK) - IIR_NOPEND;
1201#ifdef PC98
1202        if (iod.if_type == COM_IF_RSA98III)
1203		inb(iobase + rsa_srr);
1204#endif
1205
1206	/*
1207	 * Turn off all device interrupts and check that they go off properly.
1208	 * Leave MCR_IENABLE alone.  For ports without a master port, it gates
1209	 * the OUT2 output of the UART to
1210	 * the ICU input.  Closing the gate would give a floating ICU input
1211	 * (unless there is another device driving it) and spurious interrupts.
1212	 * (On the system that this was first tested on, the input floats high
1213	 * and gives a (masked) interrupt as soon as the gate is closed.)
1214	 */
1215	sio_setreg(com, com_ier, 0);
1216	sio_setreg(com, com_cfcr, CFCR_8BITS);	/* dummy to avoid bus echo */
1217	failures[7] = sio_getreg(com, com_ier);
1218#ifdef PC98
1219        if (iod.if_type == COM_IF_RSA98III)
1220		outb(iobase + rsa_ier, 0x00);
1221#endif
1222	DELAY(1000);		/* XXX */
1223	irqmap[3] = isa_irq_pending();
1224	failures[9] = (sio_getreg(com, com_iir) & IIR_IMASK) - IIR_NOPEND;
1225#ifdef PC98
1226        if (iod.if_type == COM_IF_RSA98III) {
1227		inb(iobase + rsa_srr);
1228		outb(iobase + rsa_frr, 0x00);
1229	}
1230#endif
1231
1232	mtx_unlock_spin(&sio_lock);
1233
1234	irqs = irqmap[1] & ~irqmap[0];
1235	if (bus_get_resource(idev, SYS_RES_IRQ, 0, &xirq, NULL) == 0 &&
1236	    ((1 << xirq) & irqs) == 0) {
1237		printf(
1238		"sio%d: configured irq %ld not in bitmap of probed irqs %#x\n",
1239		    device_get_unit(dev), xirq, irqs);
1240		printf(
1241		"sio%d: port may not be enabled\n",
1242		    device_get_unit(dev));
1243	}
1244	if (bootverbose)
1245		printf("sio%d: irq maps: %#x %#x %#x %#x\n",
1246		    device_get_unit(dev),
1247		    irqmap[0], irqmap[1], irqmap[2], irqmap[3]);
1248
1249	result = 0;
1250	for (fn = 0; fn < sizeof failures; ++fn)
1251		if (failures[fn]) {
1252			sio_setreg(com, com_mcr, 0);
1253			result = ENXIO;
1254			if (bootverbose) {
1255				printf("sio%d: probe failed test(s):",
1256				    device_get_unit(dev));
1257				for (fn = 0; fn < sizeof failures; ++fn)
1258					if (failures[fn])
1259						printf(" %d", fn);
1260				printf("\n");
1261			}
1262			break;
1263		}
1264	bus_release_resource(dev, SYS_RES_IOPORT, rid, port);
1265	if (iobase == siocniobase)
1266		result = 0;
1267	if (result != 0) {
1268		device_set_softc(dev, NULL);
1269		free(com, M_DEVBUF);
1270	}
1271	return (result);
1272}
1273
1274#ifdef COM_ESP
1275static int
1276espattach(com, esp_port)
1277	struct com_s		*com;
1278	Port_t			esp_port;
1279{
1280	u_char	dips;
1281	u_char	val;
1282
1283	/*
1284	 * Check the ESP-specific I/O port to see if we're an ESP
1285	 * card.  If not, return failure immediately.
1286	 */
1287	if ((inb(esp_port) & 0xf3) == 0) {
1288		printf(" port 0x%x is not an ESP board?\n", esp_port);
1289		return (0);
1290	}
1291
1292	/*
1293	 * We've got something that claims to be a Hayes ESP card.
1294	 * Let's hope so.
1295	 */
1296
1297	/* Get the dip-switch configuration */
1298#ifdef PC98
1299	outb(esp_port + ESP98_CMD1, ESP_GETDIPS);
1300	dips = inb(esp_port + ESP98_STATUS1);
1301#else
1302	outb(esp_port + ESP_CMD1, ESP_GETDIPS);
1303	dips = inb(esp_port + ESP_STATUS1);
1304#endif
1305
1306	/*
1307	 * Bits 0,1 of dips say which COM port we are.
1308	 */
1309#ifdef PC98
1310	if ((rman_get_start(com->ioportres) & 0xff) ==
1311	    likely_com_ports[dips & 0x03])
1312#else
1313	if (rman_get_start(com->ioportres) == likely_com_ports[dips & 0x03])
1314#endif
1315		printf(" : ESP");
1316	else {
1317		printf(" esp_port has com %d\n", dips & 0x03);
1318		return (0);
1319	}
1320
1321	/*
1322	 * Check for ESP version 2.0 or later:  bits 4,5,6 = 010.
1323	 */
1324#ifdef PC98
1325	outb(esp_port + ESP98_CMD1, ESP_GETTEST);
1326	val = inb(esp_port + ESP98_STATUS1);	/* clear reg 1 */
1327	val = inb(esp_port + ESP98_STATUS2);
1328#else
1329	outb(esp_port + ESP_CMD1, ESP_GETTEST);
1330	val = inb(esp_port + ESP_STATUS1);	/* clear reg 1 */
1331	val = inb(esp_port + ESP_STATUS2);
1332#endif
1333	if ((val & 0x70) < 0x20) {
1334		printf("-old (%o)", val & 0x70);
1335		return (0);
1336	}
1337
1338	/*
1339	 * Check for ability to emulate 16550:  bit 7 == 1
1340	 */
1341	if ((dips & 0x80) == 0) {
1342		printf(" slave");
1343		return (0);
1344	}
1345
1346	/*
1347	 * Okay, we seem to be a Hayes ESP card.  Whee.
1348	 */
1349	com->esp = TRUE;
1350	com->esp_port = esp_port;
1351	return (1);
1352}
1353#endif /* COM_ESP */
1354
1355int
1356sioattach(dev, xrid, rclk)
1357	device_t	dev;
1358	int		xrid;
1359	u_long		rclk;
1360{
1361	struct com_s	*com;
1362#ifdef COM_ESP
1363	Port_t		*espp;
1364#endif
1365	Port_t		iobase;
1366	int		unit;
1367	u_int		flags;
1368	int		rid;
1369	struct resource *port;
1370	int		ret;
1371	int		error;
1372	struct tty	*tp;
1373#ifdef PC98
1374	u_char		*obuf;
1375	u_long		obufsize;
1376	int		if_type = GET_IFTYPE(device_get_flags(dev));
1377#endif
1378
1379	rid = xrid;
1380#ifdef PC98
1381	if (IS_8251(if_type)) {
1382		port = bus_alloc_resource_any(dev, SYS_RES_IOPORT, &rid,
1383					      RF_ACTIVE);
1384	} else if (if_type == COM_IF_MODEM_CARD ||
1385		   if_type == COM_IF_RSA98III ||
1386		   isa_get_vendorid(dev)) {
1387		port = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, 0, ~0,
1388			  if_16550a_type[if_type & 0x0f].iatsz, RF_ACTIVE);
1389	} else {
1390		port = isa_alloc_resourcev(dev, SYS_RES_IOPORT, &rid,
1391			   if_16550a_type[if_type & 0x0f].iat,
1392			   if_16550a_type[if_type & 0x0f].iatsz, RF_ACTIVE);
1393	}
1394#else
1395	port = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid,
1396				  0, ~0, IO_COMSIZE, RF_ACTIVE);
1397#endif
1398	if (!port)
1399		return (ENXIO);
1400#ifdef PC98
1401	if (!IS_8251(if_type)) {
1402		if (isa_load_resourcev(port,
1403			       if_16550a_type[if_type & 0x0f].iat,
1404			       if_16550a_type[if_type & 0x0f].iatsz) != 0) {
1405			bus_release_resource(dev, SYS_RES_IOPORT, rid, port);
1406			return ENXIO;
1407		}
1408	}
1409#endif
1410
1411	iobase = rman_get_start(port);
1412	unit = device_get_unit(dev);
1413	com = device_get_softc(dev);
1414	flags = device_get_flags(dev);
1415
1416	if (unit >= sio_numunits)
1417		sio_numunits = unit + 1;
1418
1419#ifdef PC98
1420	obufsize = 256;
1421	if (if_type == COM_IF_RSA98III)
1422		obufsize = 2048;
1423	if ((obuf = malloc(obufsize * 2, M_DEVBUF, M_NOWAIT)) == NULL) {
1424		bus_release_resource(dev, SYS_RES_IOPORT, rid, port);
1425		return ENXIO;
1426	}
1427	bzero(obuf, obufsize * 2);
1428#endif
1429
1430	/*
1431	 * sioprobe() has initialized the device registers as follows:
1432	 *	o cfcr = CFCR_8BITS.
1433	 *	  It is most important that CFCR_DLAB is off, so that the
1434	 *	  data port is not hidden when we enable interrupts.
1435	 *	o ier = 0.
1436	 *	  Interrupts are only enabled when the line is open.
1437	 *	o mcr = MCR_IENABLE, or 0 if the port has AST/4 compatible
1438	 *	  interrupt control register or the config specifies no irq.
1439	 *	  Keeping MCR_DTR and MCR_RTS off might stop the external
1440	 *	  device from sending before we are ready.
1441	 */
1442	bzero(com, sizeof *com);
1443	com->unit = unit;
1444	com->ioportres = port;
1445	com->ioportrid = rid;
1446	com->bst = rman_get_bustag(port);
1447	com->bsh = rman_get_bushandle(port);
1448	com->cfcr_image = CFCR_8BITS;
1449	com->loses_outints = COM_LOSESOUTINTS(flags) != 0;
1450	com->no_irq = bus_get_resource(dev, SYS_RES_IRQ, 0, NULL, NULL) != 0;
1451	com->tx_fifo_size = 1;
1452#ifdef PC98
1453	com->obufsize = obufsize;
1454	com->obuf1 = obuf;
1455	com->obuf2 = obuf + obufsize;
1456#endif
1457	com->obufs[0].l_head = com->obuf1;
1458	com->obufs[1].l_head = com->obuf2;
1459
1460#ifdef PC98
1461	com->pc98_if_type = if_type;
1462
1463	if (IS_8251(if_type)) {
1464	    pc98_set_ioport(com);
1465
1466	    if (if_type == COM_IF_INTERNAL && pc98_check_8251fifo()) {
1467		com->pc98_8251fifo = 1;
1468		com->pc98_8251fifo_enable = 0;
1469	    }
1470	} else {
1471	    bus_addr_t	*iat = if_16550a_type[if_type & 0x0f].iat;
1472
1473	    com->data_port = iobase + iat[com_data];
1474	    com->int_ctl_port = iobase + iat[com_ier];
1475	    com->int_id_port = iobase + iat[com_iir];
1476	    com->modem_ctl_port = iobase + iat[com_mcr];
1477	    com->mcr_image = inb(com->modem_ctl_port);
1478	    com->line_status_port = iobase + iat[com_lsr];
1479	    com->modem_status_port = iobase + iat[com_msr];
1480	}
1481#else /* not PC98 */
1482	com->data_port = iobase + com_data;
1483	com->int_ctl_port = iobase + com_ier;
1484	com->int_id_port = iobase + com_iir;
1485	com->modem_ctl_port = iobase + com_mcr;
1486	com->mcr_image = inb(com->modem_ctl_port);
1487	com->line_status_port = iobase + com_lsr;
1488	com->modem_status_port = iobase + com_msr;
1489#endif
1490
1491	tp = com->tp = ttyalloc();
1492	tp->t_oproc = comstart;
1493	tp->t_param = comparam;
1494	tp->t_stop = comstop;
1495	tp->t_modem = commodem;
1496	tp->t_break = combreak;
1497	tp->t_close = comclose;
1498	tp->t_open = comopen;
1499	tp->t_sc = com;
1500
1501#ifdef PC98
1502	if (!IS_8251(if_type) && rclk == 0)
1503		rclk = if_16550a_type[if_type & 0x0f].rclk;
1504#else
1505	if (rclk == 0)
1506		rclk = DEFAULT_RCLK;
1507#endif
1508	com->rclk = rclk;
1509
1510	if (unit == comconsole)
1511		ttyconsolemode(tp, comdefaultrate);
1512	error = siosetwater(com, tp->t_init_in.c_ispeed);
1513	mtx_unlock_spin(&sio_lock);
1514	if (error) {
1515		/*
1516		 * Leave i/o resources allocated if this is a `cn'-level
1517		 * console, so that other devices can't snarf them.
1518		 */
1519		if (iobase != siocniobase)
1520			bus_release_resource(dev, SYS_RES_IOPORT, rid, port);
1521		return (ENOMEM);
1522	}
1523
1524	/* attempt to determine UART type */
1525	printf("sio%d: type", unit);
1526
1527#ifndef PC98
1528	if (!COM_ISMULTIPORT(flags) &&
1529	    !COM_IIR_TXRDYBUG(flags) && !COM_NOSCR(flags)) {
1530		u_char	scr;
1531		u_char	scr1;
1532		u_char	scr2;
1533
1534		scr = sio_getreg(com, com_scr);
1535		sio_setreg(com, com_scr, 0xa5);
1536		scr1 = sio_getreg(com, com_scr);
1537		sio_setreg(com, com_scr, 0x5a);
1538		scr2 = sio_getreg(com, com_scr);
1539		sio_setreg(com, com_scr, scr);
1540		if (scr1 != 0xa5 || scr2 != 0x5a) {
1541			printf(" 8250 or not responding");
1542			goto determined_type;
1543		}
1544	}
1545#endif /* !PC98 */
1546#ifdef PC98
1547	if (IS_8251(com->pc98_if_type)) {
1548	    if (com->pc98_8251fifo && !COM_NOFIFO(flags))
1549		com->tx_fifo_size = 16;
1550	    com_int_TxRx_disable( com );
1551	    com_cflag_and_speed_set( com, tp->t_init_in.c_cflag, comdefaultrate );
1552	    com_tiocm_bic( com, TIOCM_DTR|TIOCM_RTS|TIOCM_LE );
1553	    com_send_break_off( com );
1554
1555	    if (com->pc98_if_type == COM_IF_INTERNAL) {
1556		printf(" (internal%s%s)",
1557		       com->pc98_8251fifo ? " fifo" : "",
1558		       PC98SIO_baud_rate_port(com->pc98_if_type) != -1 ?
1559		       " v-fast" : "");
1560	    } else {
1561		printf(" 8251%s", if_8251_type[com->pc98_if_type & 0x0f].name);
1562	    }
1563	} else {
1564#endif /* PC98 */
1565	sio_setreg(com, com_fifo, FIFO_ENABLE | FIFO_RX_HIGH);
1566	DELAY(100);
1567	switch (inb(com->int_id_port) & IIR_FIFO_MASK) {
1568	case FIFO_RX_LOW:
1569		printf(" 16450");
1570		break;
1571	case FIFO_RX_MEDL:
1572		printf(" 16450?");
1573		break;
1574	case FIFO_RX_MEDH:
1575		printf(" 16550?");
1576		break;
1577	case FIFO_RX_HIGH:
1578		if (COM_NOFIFO(flags)) {
1579			printf(" 16550A fifo disabled");
1580			break;
1581		}
1582		com->hasfifo = TRUE;
1583#ifdef PC98
1584		if (com->pc98_if_type == COM_IF_RSA98III) {
1585			com->tx_fifo_size = 2048;
1586			com->rsabase = iobase;
1587			outb(com->rsabase + rsa_ier, 0x00);
1588			outb(com->rsabase + rsa_frr, 0x00);
1589		}
1590#else
1591		if (COM_ST16650A(flags)) {
1592			printf(" ST16650A");
1593			com->st16650a = TRUE;
1594			com->tx_fifo_size = 32;
1595			break;
1596		}
1597		if (COM_TI16754(flags)) {
1598			printf(" TI16754");
1599			com->tx_fifo_size = 64;
1600			break;
1601		}
1602#endif
1603		printf(" 16550A");
1604#ifdef COM_ESP
1605#ifdef PC98
1606		if (com->pc98_if_type == COM_IF_ESP98)
1607#endif
1608		for (espp = likely_esp_ports; *espp != 0; espp++)
1609			if (espattach(com, *espp)) {
1610				com->tx_fifo_size = 1024;
1611				break;
1612			}
1613		if (com->esp)
1614			break;
1615#endif
1616#ifdef PC98
1617		com->tx_fifo_size = 16;
1618#else
1619		com->tx_fifo_size = COM_FIFOSIZE(flags);
1620		if (com->tx_fifo_size == 0)
1621			com->tx_fifo_size = 16;
1622		else
1623			printf(" lookalike with %u bytes FIFO",
1624			       com->tx_fifo_size);
1625#endif
1626		break;
1627	}
1628
1629#ifdef PC98
1630	if (com->pc98_if_type == COM_IF_RSB3000) {
1631	    /* Set RSB-2000/3000 Extended Buffer mode. */
1632	    u_char lcr;
1633	    lcr = sio_getreg(com, com_cfcr);
1634	    sio_setreg(com, com_cfcr, lcr | CFCR_DLAB);
1635	    sio_setreg(com, com_emr, EMR_EXBUFF | EMR_EFMODE);
1636	    sio_setreg(com, com_cfcr, lcr);
1637	}
1638#endif
1639
1640#ifdef COM_ESP
1641	if (com->esp) {
1642		/*
1643		 * Set 16550 compatibility mode.
1644		 * We don't use the ESP_MODE_SCALE bit to increase the
1645		 * fifo trigger levels because we can't handle large
1646		 * bursts of input.
1647		 * XXX flow control should be set in comparam(), not here.
1648		 */
1649#ifdef PC98
1650		outb(com->esp_port + ESP98_CMD1, ESP_SETMODE);
1651		outb(com->esp_port + ESP98_CMD2, ESP_MODE_RTS | ESP_MODE_FIFO);
1652#else
1653		outb(com->esp_port + ESP_CMD1, ESP_SETMODE);
1654		outb(com->esp_port + ESP_CMD2, ESP_MODE_RTS | ESP_MODE_FIFO);
1655#endif
1656
1657		/* Set RTS/CTS flow control. */
1658#ifdef PC98
1659		outb(com->esp_port + ESP98_CMD1, ESP_SETFLOWTYPE);
1660		outb(com->esp_port + ESP98_CMD2, ESP_FLOW_RTS);
1661		outb(com->esp_port + ESP98_CMD2, ESP_FLOW_CTS);
1662#else
1663		outb(com->esp_port + ESP_CMD1, ESP_SETFLOWTYPE);
1664		outb(com->esp_port + ESP_CMD2, ESP_FLOW_RTS);
1665		outb(com->esp_port + ESP_CMD2, ESP_FLOW_CTS);
1666#endif
1667
1668		/* Set flow-control levels. */
1669#ifdef PC98
1670		outb(com->esp_port + ESP98_CMD1, ESP_SETRXFLOW);
1671		outb(com->esp_port + ESP98_CMD2, HIBYTE(768));
1672		outb(com->esp_port + ESP98_CMD2, LOBYTE(768));
1673		outb(com->esp_port + ESP98_CMD2, HIBYTE(512));
1674		outb(com->esp_port + ESP98_CMD2, LOBYTE(512));
1675#else
1676		outb(com->esp_port + ESP_CMD1, ESP_SETRXFLOW);
1677		outb(com->esp_port + ESP_CMD2, HIBYTE(768));
1678		outb(com->esp_port + ESP_CMD2, LOBYTE(768));
1679		outb(com->esp_port + ESP_CMD2, HIBYTE(512));
1680		outb(com->esp_port + ESP_CMD2, LOBYTE(512));
1681#endif
1682
1683#ifdef PC98
1684                /* Set UART clock prescaler. */
1685                outb(com->esp_port + ESP98_CMD1, ESP_SETCLOCK);
1686                outb(com->esp_port + ESP98_CMD2, 2);	/* 4 times */
1687#endif
1688	}
1689#endif /* COM_ESP */
1690	sio_setreg(com, com_fifo, 0);
1691#ifdef PC98
1692	printf("%s", if_16550a_type[com->pc98_if_type & 0x0f].name);
1693#else
1694determined_type: ;
1695#endif
1696
1697#ifdef COM_MULTIPORT
1698	if (COM_ISMULTIPORT(flags)) {
1699		device_t masterdev;
1700
1701		com->multiport = TRUE;
1702		printf(" (multiport");
1703		if (unit == COM_MPMASTER(flags))
1704			printf(" master");
1705		printf(")");
1706		masterdev = devclass_get_device(sio_devclass,
1707		    COM_MPMASTER(flags));
1708		com->no_irq = (masterdev == NULL || bus_get_resource(masterdev,
1709		    SYS_RES_IRQ, 0, NULL, NULL) != 0);
1710	 }
1711#endif /* COM_MULTIPORT */
1712#ifdef PC98
1713	}
1714#endif
1715	if (unit == comconsole)
1716		printf(", console");
1717	if (COM_IIR_TXRDYBUG(flags))
1718		printf(" with a buggy IIR_TXRDY implementation");
1719	printf("\n");
1720
1721	if (sio_fast_ih == NULL) {
1722		swi_add(&tty_intr_event, "sio", siopoll, NULL, SWI_TTY, 0,
1723		    &sio_fast_ih);
1724		swi_add(&clk_intr_event, "sio", siopoll, NULL, SWI_CLOCK, 0,
1725		    &sio_slow_ih);
1726	}
1727
1728	com->flags = flags;
1729	com->pps.ppscap = PPS_CAPTUREASSERT | PPS_CAPTURECLEAR;
1730	tp->t_pps = &com->pps;
1731
1732	if (COM_PPSCTS(flags))
1733		com->pps_bit = MSR_CTS;
1734	else
1735		com->pps_bit = MSR_DCD;
1736	pps_init(&com->pps);
1737
1738	rid = 0;
1739	com->irqres = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, RF_ACTIVE);
1740	if (com->irqres) {
1741		ret = bus_setup_intr(dev, com->irqres,
1742				     INTR_TYPE_TTY,
1743				     siointr, NULL, com, &com->cookie);
1744		if (ret) {
1745			ret = bus_setup_intr(dev,
1746					     com->irqres, INTR_TYPE_TTY,
1747					     NULL, (driver_intr_t *)siointr,
1748					     com, &com->cookie);
1749			if (ret == 0)
1750				device_printf(dev, "unable to activate interrupt in fast mode - using normal mode\n");
1751		}
1752		if (ret)
1753			device_printf(dev, "could not activate interrupt\n");
1754#if defined(KDB) && (defined(BREAK_TO_DEBUGGER) || \
1755    defined(ALT_BREAK_TO_DEBUGGER))
1756		/*
1757		 * Enable interrupts for early break-to-debugger support
1758		 * on the console.
1759		 */
1760		if (ret == 0 && unit == comconsole)
1761			outb(siocniobase + com_ier, IER_ERXRDY | IER_ERLS |
1762			    IER_EMSC);
1763#endif
1764	}
1765
1766	/* We're ready, open the doors... */
1767	ttycreate(tp, TS_CALLOUT, "d%r", unit);
1768
1769	return (0);
1770}
1771
1772static int
1773comopen(struct tty *tp, struct cdev *dev)
1774{
1775	struct com_s	*com;
1776	int i;
1777
1778	com = tp->t_sc;
1779	com->poll = com->no_irq;
1780	com->poll_output = com->loses_outints;
1781#ifdef PC98
1782	if (IS_8251(com->pc98_if_type)) {
1783		com_tiocm_bis(com, TIOCM_DTR|TIOCM_RTS);
1784		pc98_msrint_start(dev);
1785		if (com->pc98_8251fifo) {
1786			com->pc98_8251fifo_enable = 1;
1787			outb(I8251F_fcr, CTRL8251F_ENABLE |
1788			     CTRL8251F_XMT_RST | CTRL8251F_RCV_RST);
1789		}
1790	}
1791#endif
1792	if (com->hasfifo) {
1793		/*
1794		 * (Re)enable and drain fifos.
1795		 *
1796		 * Certain SMC chips cause problems if the fifos
1797		 * are enabled while input is ready.  Turn off the
1798		 * fifo if necessary to clear the input.  We test
1799		 * the input ready bit after enabling the fifos
1800		 * since we've already enabled them in comparam()
1801		 * and to handle races between enabling and fresh
1802		 * input.
1803		 */
1804		for (i = 0; i < 500; i++) {
1805			sio_setreg(com, com_fifo,
1806				   FIFO_RCV_RST | FIFO_XMT_RST
1807				   | com->fifo_image);
1808#ifdef PC98
1809			if (com->pc98_if_type == COM_IF_RSA98III)
1810				outb(com->rsabase + rsa_frr , 0x00);
1811#endif
1812			/*
1813			 * XXX the delays are for superstitious
1814			 * historical reasons.  It must be less than
1815			 * the character time at the maximum
1816			 * supported speed (87 usec at 115200 bps
1817			 * 8N1).  Otherwise we might loop endlessly
1818			 * if data is streaming in.  We used to use
1819			 * delays of 100.  That usually worked
1820			 * because DELAY(100) used to usually delay
1821			 * for about 85 usec instead of 100.
1822			 */
1823			DELAY(50);
1824#ifdef PC98
1825			if (com->pc98_if_type == COM_IF_RSA98III ?
1826			    !(inb(com->rsabase + rsa_srr) & 0x08) :
1827			    !(inb(com->line_status_port) & LSR_RXRDY))
1828				break;
1829#else
1830			if (!(inb(com->line_status_port) & LSR_RXRDY))
1831				break;
1832#endif
1833			sio_setreg(com, com_fifo, 0);
1834			DELAY(50);
1835			(void) inb(com->data_port);
1836		}
1837		if (i == 500)
1838			return (EIO);
1839	}
1840
1841	mtx_lock_spin(&sio_lock);
1842#ifdef PC98
1843	if (IS_8251(com->pc98_if_type)) {
1844		com_tiocm_bis(com, TIOCM_LE);
1845		com->pc98_prev_modem_status = pc98_get_modem_status(com);
1846		com_int_Rx_enable(com);
1847	} else {
1848#endif
1849	(void) inb(com->line_status_port);
1850	(void) inb(com->data_port);
1851	com->prev_modem_status = com->last_modem_status
1852	    = inb(com->modem_status_port);
1853	outb(com->int_ctl_port,
1854	     IER_ERXRDY | IER_ERLS | IER_EMSC
1855	     | (COM_IIR_TXRDYBUG(com->flags) ? 0 : IER_ETXRDY));
1856#ifdef PC98
1857	if (com->pc98_if_type == COM_IF_RSA98III) {
1858		outb(com->rsabase + rsa_ier, 0x1d);
1859		outb(com->int_ctl_port, IER_ERLS | IER_EMSC);
1860	}
1861#endif
1862#ifdef PC98
1863	}
1864#endif
1865	mtx_unlock_spin(&sio_lock);
1866	siosettimeout();
1867	/* XXX: should be generic ? */
1868#ifdef PC98
1869	if ((IS_8251(com->pc98_if_type) &&
1870	     (pc98_get_modem_status(com) & TIOCM_CAR)) ||
1871	    (!IS_8251(com->pc98_if_type) &&
1872	     (com->prev_modem_status & MSR_DCD)) ||
1873	    ISCALLOUT(dev))
1874		ttyld_modem(tp, 1);
1875#else
1876	if (com->prev_modem_status & MSR_DCD || ISCALLOUT(dev))
1877		ttyld_modem(tp, 1);
1878#endif
1879	return (0);
1880}
1881
1882static void
1883comclose(tp)
1884	struct tty	*tp;
1885{
1886	int		s;
1887	struct com_s	*com;
1888
1889	s = spltty();
1890	com = tp->t_sc;
1891	com->poll = FALSE;
1892	com->poll_output = FALSE;
1893#ifdef PC98
1894	com_send_break_off(com);
1895#else
1896	sio_setreg(com, com_cfcr, com->cfcr_image &= ~CFCR_SBREAK);
1897#endif
1898
1899#if defined(KDB) && (defined(BREAK_TO_DEBUGGER) || \
1900    defined(ALT_BREAK_TO_DEBUGGER))
1901	/*
1902	 * Leave interrupts enabled and don't clear DTR if this is the
1903	 * console. This allows us to detect break-to-debugger events
1904	 * while the console device is closed.
1905	 */
1906	if (com->unit != comconsole)
1907#endif
1908	{
1909#ifdef PC98
1910		int	tmp;
1911		if (IS_8251(com->pc98_if_type))
1912			com_int_TxRx_disable(com);
1913		else
1914			sio_setreg(com, com_ier, 0);
1915		if (com->pc98_if_type == COM_IF_RSA98III)
1916			outb(com->rsabase + rsa_ier, 0x00);
1917		if (IS_8251(com->pc98_if_type))
1918			tmp = pc98_get_modem_status(com) & TIOCM_CAR;
1919		else
1920			tmp = com->prev_modem_status & MSR_DCD;
1921#else
1922		sio_setreg(com, com_ier, 0);
1923#endif
1924		if (tp->t_cflag & HUPCL
1925		    /*
1926		     * XXX we will miss any carrier drop between here and the
1927		     * next open.  Perhaps we should watch DCD even when the
1928		     * port is closed; it is not sufficient to check it at
1929		     * the next open because it might go up and down while
1930		     * we're not watching.
1931		     */
1932		    || (!tp->t_actout
1933#ifdef PC98
1934			&& !(tmp)
1935#else
1936		        && !(com->prev_modem_status & MSR_DCD)
1937#endif
1938		        && !(tp->t_init_in.c_cflag & CLOCAL))
1939		    || !(tp->t_state & TS_ISOPEN)) {
1940#ifdef PC98
1941			if (IS_8251(com->pc98_if_type))
1942			    com_tiocm_bic(com, TIOCM_DTR|TIOCM_RTS|TIOCM_LE);
1943			else
1944#endif
1945			(void)commodem(tp, 0, SER_DTR);
1946			ttydtrwaitstart(tp);
1947		}
1948#ifdef PC98
1949		else {
1950			if (IS_8251(com->pc98_if_type))
1951				com_tiocm_bic(com, TIOCM_LE);
1952		}
1953#endif
1954	}
1955#ifdef PC98
1956	if (com->pc98_8251fifo)	{
1957	    if (com->pc98_8251fifo_enable)
1958		outb(I8251F_fcr, CTRL8251F_XMT_RST | CTRL8251F_RCV_RST);
1959	    com->pc98_8251fifo_enable = 0;
1960	}
1961#endif
1962	if (com->hasfifo) {
1963		/*
1964		 * Disable fifos so that they are off after controlled
1965		 * reboots.  Some BIOSes fail to detect 16550s when the
1966		 * fifos are enabled.
1967		 */
1968		sio_setreg(com, com_fifo, 0);
1969	}
1970	tp->t_actout = FALSE;
1971	wakeup(&tp->t_actout);
1972	wakeup(TSA_CARR_ON(tp));	/* restart any wopeners */
1973	siosettimeout();
1974	splx(s);
1975}
1976
1977static void
1978siobusycheck(chan)
1979	void	*chan;
1980{
1981	struct com_s	*com;
1982	int		s;
1983
1984	com = (struct com_s *)chan;
1985
1986	/*
1987	 * Clear TS_BUSY if low-level output is complete.
1988	 * spl locking is sufficient because siointr1() does not set CS_BUSY.
1989	 * If siointr1() clears CS_BUSY after we look at it, then we'll get
1990	 * called again.  Reading the line status port outside of siointr1()
1991	 * is safe because CS_BUSY is clear so there are no output interrupts
1992	 * to lose.
1993	 */
1994	s = spltty();
1995	if (com->state & CS_BUSY)
1996		com->extra_state &= ~CSE_BUSYCHECK;	/* False alarm. */
1997#ifdef	PC98
1998	else if ((IS_8251(com->pc98_if_type) &&
1999		  ((com->pc98_8251fifo_enable &&
2000		    (inb(I8251F_lsr) & (STS8251F_TxRDY | STS8251F_TxEMP))
2001		    == (STS8251F_TxRDY | STS8251F_TxEMP)) ||
2002		   (!com->pc98_8251fifo_enable &&
2003		    (inb(com->sts_port) & (STS8251_TxRDY | STS8251_TxEMP))
2004		    == (STS8251_TxRDY | STS8251_TxEMP)))) ||
2005		 ((inb(com->line_status_port) & (LSR_TSRE | LSR_TXRDY))
2006		  == (LSR_TSRE | LSR_TXRDY))) {
2007#else
2008	else if ((inb(com->line_status_port) & (LSR_TSRE | LSR_TXRDY))
2009	    == (LSR_TSRE | LSR_TXRDY)) {
2010#endif
2011		com->tp->t_state &= ~TS_BUSY;
2012		ttwwakeup(com->tp);
2013		com->extra_state &= ~CSE_BUSYCHECK;
2014	} else
2015		timeout(siobusycheck, com, hz / 100);
2016	splx(s);
2017}
2018
2019static u_int
2020siodivisor(rclk, speed)
2021	u_long	rclk;
2022	speed_t	speed;
2023{
2024	long	actual_speed;
2025	u_int	divisor;
2026	int	error;
2027
2028	if (speed == 0)
2029		return (0);
2030#if UINT_MAX > (ULONG_MAX - 1) / 8
2031	if (speed > (ULONG_MAX - 1) / 8)
2032		return (0);
2033#endif
2034	divisor = (rclk / (8UL * speed) + 1) / 2;
2035	if (divisor == 0 || divisor >= 65536)
2036		return (0);
2037	actual_speed = rclk / (16UL * divisor);
2038
2039	/* 10 times error in percent: */
2040	error = ((actual_speed - (long)speed) * 2000 / (long)speed + 1) / 2;
2041
2042	/* 3.0% maximum error tolerance: */
2043	if (error < -30 || error > 30)
2044		return (0);
2045
2046	return (divisor);
2047}
2048
2049/*
2050 * Call this function with the sio_lock mutex held.  It will return with the
2051 * lock still held.
2052 */
2053static void
2054sioinput(com)
2055	struct com_s	*com;
2056{
2057	u_char		*buf;
2058	int		incc;
2059	u_char		line_status;
2060	int		recv_data;
2061	struct tty	*tp;
2062
2063	buf = com->ibuf;
2064	tp = com->tp;
2065	if (!(tp->t_state & TS_ISOPEN) || !(tp->t_cflag & CREAD)) {
2066		com_events -= (com->iptr - com->ibuf);
2067		com->iptr = com->ibuf;
2068		return;
2069	}
2070	if (tp->t_state & TS_CAN_BYPASS_L_RINT) {
2071		/*
2072		 * Avoid the grotesquely inefficient lineswitch routine
2073		 * (ttyinput) in "raw" mode.  It usually takes about 450
2074		 * instructions (that's without canonical processing or echo!).
2075		 * slinput is reasonably fast (usually 40 instructions plus
2076		 * call overhead).
2077		 */
2078		do {
2079			/*
2080			 * This may look odd, but it is using save-and-enable
2081			 * semantics instead of the save-and-disable semantics
2082			 * that are used everywhere else.
2083			 */
2084			mtx_unlock_spin(&sio_lock);
2085			incc = com->iptr - buf;
2086			if (tp->t_rawq.c_cc + incc > tp->t_ihiwat
2087			    && (com->state & CS_RTS_IFLOW
2088				|| tp->t_iflag & IXOFF)
2089			    && !(tp->t_state & TS_TBLOCK))
2090				ttyblock(tp);
2091			com->delta_error_counts[CE_TTY_BUF_OVERFLOW]
2092				+= b_to_q((char *)buf, incc, &tp->t_rawq);
2093			buf += incc;
2094			tk_nin += incc;
2095			tk_rawcc += incc;
2096			tp->t_rawcc += incc;
2097			ttwakeup(tp);
2098			if (tp->t_state & TS_TTSTOP
2099			    && (tp->t_iflag & IXANY
2100				|| tp->t_cc[VSTART] == tp->t_cc[VSTOP])) {
2101				tp->t_state &= ~TS_TTSTOP;
2102				tp->t_lflag &= ~FLUSHO;
2103				comstart(tp);
2104			}
2105			mtx_lock_spin(&sio_lock);
2106		} while (buf < com->iptr);
2107	} else {
2108		do {
2109			/*
2110			 * This may look odd, but it is using save-and-enable
2111			 * semantics instead of the save-and-disable semantics
2112			 * that are used everywhere else.
2113			 */
2114			mtx_unlock_spin(&sio_lock);
2115			line_status = buf[com->ierroff];
2116			recv_data = *buf++;
2117			if (line_status
2118			    & (LSR_BI | LSR_FE | LSR_OE | LSR_PE)) {
2119				if (line_status & LSR_BI)
2120					recv_data |= TTY_BI;
2121				if (line_status & LSR_FE)
2122					recv_data |= TTY_FE;
2123				if (line_status & LSR_OE)
2124					recv_data |= TTY_OE;
2125				if (line_status & LSR_PE)
2126					recv_data |= TTY_PE;
2127			}
2128			ttyld_rint(tp, recv_data);
2129			mtx_lock_spin(&sio_lock);
2130		} while (buf < com->iptr);
2131	}
2132	com_events -= (com->iptr - com->ibuf);
2133	com->iptr = com->ibuf;
2134
2135	/*
2136	 * There is now room for another low-level buffer full of input,
2137	 * so enable RTS if it is now disabled and there is room in the
2138	 * high-level buffer.
2139	 */
2140#ifdef PC98
2141	if (IS_8251(com->pc98_if_type)) {
2142		if ((com->state & CS_RTS_IFLOW) &&
2143		    !(com_tiocm_get(com) & TIOCM_RTS) &&
2144		    !(tp->t_state & TS_TBLOCK))
2145			com_tiocm_bis(com, TIOCM_RTS);
2146	} else {
2147		if ((com->state & CS_RTS_IFLOW) &&
2148		    !(com->mcr_image & MCR_RTS) &&
2149		    !(tp->t_state & TS_TBLOCK))
2150			outb(com->modem_ctl_port, com->mcr_image |= MCR_RTS);
2151	}
2152#else
2153	if ((com->state & CS_RTS_IFLOW) && !(com->mcr_image & MCR_RTS) &&
2154	    !(tp->t_state & TS_TBLOCK))
2155		outb(com->modem_ctl_port, com->mcr_image |= MCR_RTS);
2156#endif
2157}
2158
2159static int
2160siointr(arg)
2161	void		*arg;
2162{
2163	struct com_s	*com;
2164#if defined(PC98) && defined(COM_MULTIPORT)
2165	u_char		rsa_buf_status;
2166#endif
2167
2168#ifndef COM_MULTIPORT
2169	com = (struct com_s *)arg;
2170
2171	mtx_lock_spin(&sio_lock);
2172	siointr1(com);
2173	mtx_unlock_spin(&sio_lock);
2174#else /* COM_MULTIPORT */
2175	bool_t		possibly_more_intrs;
2176	int		unit;
2177
2178	/*
2179	 * Loop until there is no activity on any port.  This is necessary
2180	 * to get an interrupt edge more than to avoid another interrupt.
2181	 * If the IRQ signal is just an OR of the IRQ signals from several
2182	 * devices, then the edge from one may be lost because another is
2183	 * on.
2184	 */
2185	mtx_lock_spin(&sio_lock);
2186	do {
2187		possibly_more_intrs = FALSE;
2188		for (unit = 0; unit < sio_numunits; ++unit) {
2189			com = com_addr(unit);
2190			/*
2191			 * XXX COM_LOCK();
2192			 * would it work here, or be counter-productive?
2193			 */
2194#ifdef PC98
2195			if (com != NULL
2196			    && !com->gone
2197			    && IS_8251(com->pc98_if_type)) {
2198				siointr1(com);
2199			} else if (com != NULL
2200			    && !com->gone
2201			    && com->pc98_if_type == COM_IF_RSA98III) {
2202				rsa_buf_status =
2203				    inb(com->rsabase + rsa_srr) & 0xc9;
2204				if ((rsa_buf_status & 0xc8)
2205				    || !(rsa_buf_status & 0x01)) {
2206				    siointr1(com);
2207				    if (rsa_buf_status !=
2208					(inb(com->rsabase + rsa_srr) & 0xc9))
2209					possibly_more_intrs = TRUE;
2210				}
2211			} else
2212#endif
2213			if (com != NULL
2214			    && !com->gone
2215			    && (inb(com->int_id_port) & IIR_IMASK)
2216			       != IIR_NOPEND) {
2217				siointr1(com);
2218				possibly_more_intrs = TRUE;
2219			}
2220			/* XXX COM_UNLOCK(); */
2221		}
2222	} while (possibly_more_intrs);
2223	mtx_unlock_spin(&sio_lock);
2224#endif /* COM_MULTIPORT */
2225	return (FILTER_HANDLED);
2226}
2227
2228static struct timespec siots[8];
2229static int siotso;
2230static int volatile siotsunit = -1;
2231
2232static int
2233sysctl_siots(SYSCTL_HANDLER_ARGS)
2234{
2235	char buf[128];
2236	long long delta;
2237	size_t len;
2238	int error, i, tso;
2239
2240	for (i = 1, tso = siotso; i < tso; i++) {
2241		delta = (long long)(siots[i].tv_sec - siots[i - 1].tv_sec) *
2242		    1000000000 +
2243		    (siots[i].tv_nsec - siots[i - 1].tv_nsec);
2244		len = sprintf(buf, "%lld\n", delta);
2245		if (delta >= 110000)
2246			len += sprintf(buf + len - 1, ": *** %ld.%09ld\n",
2247			    (long)siots[i].tv_sec, siots[i].tv_nsec) - 1;
2248		if (i == tso - 1)
2249			buf[len - 1] = '\0';
2250		error = SYSCTL_OUT(req, buf, len);
2251		if (error != 0)
2252			return (error);
2253		uio_yield();
2254	}
2255	return (0);
2256}
2257
2258SYSCTL_PROC(_machdep, OID_AUTO, siots, CTLTYPE_STRING | CTLFLAG_RD,
2259    0, 0, sysctl_siots, "A", "sio timestamps");
2260
2261static void
2262siointr1(com)
2263	struct com_s	*com;
2264{
2265	u_char	int_ctl;
2266	u_char	int_ctl_new;
2267	u_char	line_status;
2268	u_char	modem_status;
2269	u_char	*ioptr;
2270	u_char	recv_data;
2271
2272#ifdef PC98
2273	u_char	tmp = 0;
2274	u_char	rsa_buf_status = 0;
2275	int	rsa_tx_fifo_size = 0;
2276#endif /* PC98 */
2277
2278	if (COM_IIR_TXRDYBUG(com->flags)) {
2279		int_ctl = inb(com->int_ctl_port);
2280		int_ctl_new = int_ctl;
2281	} else {
2282		int_ctl = 0;
2283		int_ctl_new = 0;
2284	}
2285
2286	while (!com->gone) {
2287#ifdef PC98
2288status_read:;
2289		if (IS_8251(com->pc98_if_type)) {
2290			if (com->pc98_8251fifo_enable)
2291				tmp = inb(I8251F_lsr);
2292			else
2293				tmp = inb(com->sts_port);
2294more_intr:
2295			line_status = 0;
2296			if (com->pc98_8251fifo_enable) {
2297			    if (tmp & STS8251F_TxRDY) line_status |= LSR_TXRDY;
2298			    if (tmp & STS8251F_RxRDY) line_status |= LSR_RXRDY;
2299			    if (tmp & STS8251F_TxEMP) line_status |= LSR_TSRE;
2300			    if (tmp & STS8251F_PE)    line_status |= LSR_PE;
2301			    if (tmp & STS8251F_OE)    line_status |= LSR_OE;
2302			    if (tmp & STS8251F_BD_SD) line_status |= LSR_BI;
2303			} else {
2304			    if (tmp & STS8251_TxRDY)  line_status |= LSR_TXRDY;
2305			    if (tmp & STS8251_RxRDY)  line_status |= LSR_RXRDY;
2306			    if (tmp & STS8251_TxEMP)  line_status |= LSR_TSRE;
2307			    if (tmp & STS8251_PE)     line_status |= LSR_PE;
2308			    if (tmp & STS8251_OE)     line_status |= LSR_OE;
2309			    if (tmp & STS8251_FE)     line_status |= LSR_FE;
2310			    if (tmp & STS8251_BD_SD)  line_status |= LSR_BI;
2311			}
2312		} else {
2313#endif /* PC98 */
2314		if (com->pps.ppsparam.mode & PPS_CAPTUREBOTH) {
2315			modem_status = inb(com->modem_status_port);
2316		        if ((modem_status ^ com->last_modem_status) &
2317			    com->pps_bit) {
2318				pps_capture(&com->pps);
2319				pps_event(&com->pps,
2320				    (modem_status & com->pps_bit) ?
2321				    PPS_CAPTUREASSERT : PPS_CAPTURECLEAR);
2322			}
2323		}
2324		line_status = inb(com->line_status_port);
2325#ifdef PC98
2326		}
2327		if (com->pc98_if_type == COM_IF_RSA98III)
2328			rsa_buf_status = inb(com->rsabase + rsa_srr);
2329#endif /* PC98 */
2330
2331		/* input event? (check first to help avoid overruns) */
2332#ifndef PC98
2333		while (line_status & LSR_RCV_MASK) {
2334#else
2335		while ((line_status & LSR_RCV_MASK)
2336		       || (com->pc98_if_type == COM_IF_RSA98III
2337			   && (rsa_buf_status & 0x08))) {
2338#endif /* PC98 */
2339			/* break/unnattached error bits or real input? */
2340#ifdef PC98
2341			if (IS_8251(com->pc98_if_type)) {
2342				if (com->pc98_8251fifo_enable) {
2343				    recv_data = inb(I8251F_data);
2344				    if (tmp & (STS8251F_PE | STS8251F_OE |
2345					       STS8251F_BD_SD)) {
2346					pc98_i8251_or_cmd(com, CMD8251_ER);
2347					recv_data = 0;
2348				    }
2349				} else {
2350				    recv_data = inb(com->data_port);
2351				    if (tmp & (STS8251_PE | STS8251_OE |
2352					       STS8251_FE | STS8251_BD_SD)) {
2353					pc98_i8251_or_cmd(com, CMD8251_ER);
2354					recv_data = 0;
2355				    }
2356				}
2357			} else if (com->pc98_if_type == COM_IF_RSA98III) {
2358				if (!(rsa_buf_status & 0x08))
2359					recv_data = 0;
2360				else
2361					recv_data = inb(com->data_port);
2362			} else
2363#endif
2364			if (!(line_status & LSR_RXRDY))
2365				recv_data = 0;
2366			else
2367				recv_data = inb(com->data_port);
2368#ifdef KDB
2369#ifdef ALT_BREAK_TO_DEBUGGER
2370			if (com->unit == comconsole &&
2371			    kdb_alt_break(recv_data, &com->alt_brk_state) != 0)
2372				kdb_enter("Break sequence on console");
2373#endif /* ALT_BREAK_TO_DEBUGGER */
2374#endif /* KDB */
2375			if (line_status & (LSR_BI | LSR_FE | LSR_PE)) {
2376				/*
2377				 * Don't store BI if IGNBRK or FE/PE if IGNPAR.
2378				 * Otherwise, push the work to a higher level
2379				 * (to handle PARMRK) if we're bypassing.
2380				 * Otherwise, convert BI/FE and PE+INPCK to 0.
2381				 *
2382				 * This makes bypassing work right in the
2383				 * usual "raw" case (IGNBRK set, and IGNPAR
2384				 * and INPCK clear).
2385				 *
2386				 * Note: BI together with FE/PE means just BI.
2387				 */
2388				if (line_status & LSR_BI) {
2389#if defined(KDB) && defined(BREAK_TO_DEBUGGER)
2390					if (com->unit == comconsole) {
2391						kdb_enter("Line break on console");
2392						goto cont;
2393					}
2394#endif
2395					if (com->tp == NULL
2396					    || com->tp->t_iflag & IGNBRK)
2397						goto cont;
2398				} else {
2399					if (com->tp == NULL
2400					    || com->tp->t_iflag & IGNPAR)
2401						goto cont;
2402				}
2403				if (com->tp->t_state & TS_CAN_BYPASS_L_RINT
2404				    && (line_status & (LSR_BI | LSR_FE)
2405					|| com->tp->t_iflag & INPCK))
2406					recv_data = 0;
2407			}
2408			++com->bytes_in;
2409			if (com->tp != NULL &&
2410			    com->tp->t_hotchar != 0 && recv_data == com->tp->t_hotchar)
2411				swi_sched(sio_fast_ih, 0);
2412			ioptr = com->iptr;
2413			if (ioptr >= com->ibufend)
2414				CE_RECORD(com, CE_INTERRUPT_BUF_OVERFLOW);
2415			else {
2416				if (com->tp != NULL && com->tp->t_do_timestamp)
2417					microtime(&com->tp->t_timestamp);
2418				++com_events;
2419				swi_sched(sio_slow_ih, SWI_DELAY);
2420#if 0 /* for testing input latency vs efficiency */
2421if (com->iptr - com->ibuf == 8)
2422	swi_sched(sio_fast_ih, 0);
2423#endif
2424				ioptr[0] = recv_data;
2425				ioptr[com->ierroff] = line_status;
2426				com->iptr = ++ioptr;
2427				if (ioptr == com->ihighwater
2428				    && com->state & CS_RTS_IFLOW)
2429#ifdef PC98
2430					IS_8251(com->pc98_if_type) ?
2431						com_tiocm_bic(com, TIOCM_RTS) :
2432#endif
2433					outb(com->modem_ctl_port,
2434					     com->mcr_image &= ~MCR_RTS);
2435				if (line_status & LSR_OE)
2436					CE_RECORD(com, CE_OVERRUN);
2437			}
2438cont:
2439			if (line_status & LSR_TXRDY
2440			    && com->state >= (CS_BUSY | CS_TTGO | CS_ODEVREADY))
2441				goto txrdy;
2442
2443			/*
2444			 * "& 0x7F" is to avoid the gcc-1.40 generating a slow
2445			 * jump from the top of the loop to here
2446			 */
2447#ifdef PC98
2448			if (IS_8251(com->pc98_if_type))
2449				goto status_read;
2450			else
2451#endif
2452			line_status = inb(com->line_status_port) & 0x7F;
2453#ifdef PC98
2454			if (com->pc98_if_type == COM_IF_RSA98III)
2455				rsa_buf_status = inb(com->rsabase + rsa_srr);
2456#endif /* PC98 */
2457		}
2458
2459		/* modem status change? (always check before doing output) */
2460#ifdef PC98
2461		if (!IS_8251(com->pc98_if_type)) {
2462#endif
2463		modem_status = inb(com->modem_status_port);
2464		if (modem_status != com->last_modem_status) {
2465			/*
2466			 * Schedule high level to handle DCD changes.  Note
2467			 * that we don't use the delta bits anywhere.  Some
2468			 * UARTs mess them up, and it's easy to remember the
2469			 * previous bits and calculate the delta.
2470			 */
2471			com->last_modem_status = modem_status;
2472			if (!(com->state & CS_CHECKMSR)) {
2473				com_events += LOTS_OF_EVENTS;
2474				com->state |= CS_CHECKMSR;
2475				swi_sched(sio_fast_ih, 0);
2476			}
2477
2478			/* handle CTS change immediately for crisp flow ctl */
2479			if (com->state & CS_CTS_OFLOW) {
2480				if (modem_status & MSR_CTS)
2481					com->state |= CS_ODEVREADY;
2482				else
2483					com->state &= ~CS_ODEVREADY;
2484			}
2485		}
2486#ifdef PC98
2487		}
2488#endif
2489
2490txrdy:
2491		/* output queued and everything ready? */
2492#ifndef PC98
2493		if (line_status & LSR_TXRDY
2494		    && com->state >= (CS_BUSY | CS_TTGO | CS_ODEVREADY)) {
2495#else
2496		if (((com->pc98_if_type == COM_IF_RSA98III)
2497		     ? (rsa_buf_status & 0x02)
2498		     : (line_status & LSR_TXRDY))
2499		    && com->state >= (CS_BUSY | CS_TTGO | CS_ODEVREADY)) {
2500#endif
2501#ifdef PC98
2502			Port_t	tmp_data_port;
2503
2504			if (IS_8251(com->pc98_if_type) &&
2505			    com->pc98_8251fifo_enable)
2506				tmp_data_port = I8251F_data;
2507			else
2508				tmp_data_port = com->data_port;
2509#endif
2510
2511			ioptr = com->obufq.l_head;
2512			if (com->tx_fifo_size > 1 && com->unit != siotsunit) {
2513				u_int	ocount;
2514
2515				ocount = com->obufq.l_tail - ioptr;
2516#ifdef PC98
2517				if (com->pc98_if_type == COM_IF_RSA98III) {
2518				  rsa_buf_status = inb(com->rsabase + rsa_srr);
2519				  rsa_tx_fifo_size = 1024;
2520				  if (!(rsa_buf_status & 0x01))
2521				      rsa_tx_fifo_size = 2048;
2522				  if (ocount > rsa_tx_fifo_size)
2523				      ocount = rsa_tx_fifo_size;
2524				} else
2525#endif
2526				if (ocount > com->tx_fifo_size)
2527					ocount = com->tx_fifo_size;
2528				com->bytes_out += ocount;
2529				do
2530#ifdef PC98
2531					outb(tmp_data_port, *ioptr++);
2532#else
2533					outb(com->data_port, *ioptr++);
2534#endif
2535				while (--ocount != 0);
2536			} else {
2537#ifdef PC98
2538				outb(tmp_data_port, *ioptr++);
2539#else
2540				outb(com->data_port, *ioptr++);
2541#endif
2542				++com->bytes_out;
2543				if (com->unit == siotsunit
2544				    && siotso < sizeof siots / sizeof siots[0])
2545					nanouptime(&siots[siotso++]);
2546			}
2547#ifdef PC98
2548			if (IS_8251(com->pc98_if_type))
2549			    if (!(pc98_check_i8251_interrupt(com) & IEN_TxFLAG))
2550				com_int_Tx_enable(com);
2551#endif
2552			com->obufq.l_head = ioptr;
2553			if (COM_IIR_TXRDYBUG(com->flags))
2554				int_ctl_new = int_ctl | IER_ETXRDY;
2555			if (ioptr >= com->obufq.l_tail) {
2556				struct lbq	*qp;
2557
2558				qp = com->obufq.l_next;
2559				qp->l_queued = FALSE;
2560				qp = qp->l_next;
2561				if (qp != NULL) {
2562					com->obufq.l_head = qp->l_head;
2563					com->obufq.l_tail = qp->l_tail;
2564					com->obufq.l_next = qp;
2565				} else {
2566					/* output just completed */
2567					if (COM_IIR_TXRDYBUG(com->flags))
2568						int_ctl_new = int_ctl
2569							      & ~IER_ETXRDY;
2570					com->state &= ~CS_BUSY;
2571#if defined(PC98)
2572					if (IS_8251(com->pc98_if_type) &&
2573					    pc98_check_i8251_interrupt(com) & IEN_TxFLAG)
2574						com_int_Tx_disable(com);
2575#endif
2576				}
2577				if (!(com->state & CS_ODONE)) {
2578					com_events += LOTS_OF_EVENTS;
2579					com->state |= CS_ODONE;
2580					/* handle at high level ASAP */
2581					swi_sched(sio_fast_ih, 0);
2582				}
2583			}
2584#ifdef PC98
2585			if (COM_IIR_TXRDYBUG(com->flags)
2586			    && int_ctl != int_ctl_new) {
2587				if (com->pc98_if_type == COM_IF_RSA98III) {
2588				    int_ctl_new &= ~(IER_ETXRDY | IER_ERXRDY);
2589				    outb(com->int_ctl_port, int_ctl_new);
2590				    outb(com->rsabase + rsa_ier, 0x1d);
2591				} else
2592				    outb(com->int_ctl_port, int_ctl_new);
2593			}
2594#else
2595			if (COM_IIR_TXRDYBUG(com->flags)
2596			    && int_ctl != int_ctl_new)
2597				outb(com->int_ctl_port, int_ctl_new);
2598#endif
2599		}
2600#ifdef PC98
2601		else if (line_status & LSR_TXRDY) {
2602		    if (IS_8251(com->pc98_if_type))
2603			if (pc98_check_i8251_interrupt(com) & IEN_TxFLAG)
2604			    com_int_Tx_disable(com);
2605		}
2606		if (IS_8251(com->pc98_if_type)) {
2607		    if (com->pc98_8251fifo_enable) {
2608			if ((tmp = inb(I8251F_lsr)) & STS8251F_RxRDY)
2609			    goto more_intr;
2610		    } else {
2611			if ((tmp = inb(com->sts_port)) & STS8251_RxRDY)
2612			    goto more_intr;
2613		    }
2614		}
2615#endif
2616
2617		/* finished? */
2618#ifndef COM_MULTIPORT
2619#ifdef PC98
2620		if (IS_8251(com->pc98_if_type))
2621			return;
2622#endif
2623		if ((inb(com->int_id_port) & IIR_IMASK) == IIR_NOPEND)
2624#endif /* COM_MULTIPORT */
2625			return;
2626	}
2627}
2628
2629/* software interrupt handler for SWI_TTY */
2630static void
2631siopoll(void *dummy)
2632{
2633	int		unit;
2634
2635	if (com_events == 0)
2636		return;
2637repeat:
2638	for (unit = 0; unit < sio_numunits; ++unit) {
2639		struct com_s	*com;
2640		int		incc;
2641		struct tty	*tp;
2642
2643		com = com_addr(unit);
2644		if (com == NULL)
2645			continue;
2646		tp = com->tp;
2647		if (tp == NULL || com->gone) {
2648			/*
2649			 * Discard any events related to never-opened or
2650			 * going-away devices.
2651			 */
2652			mtx_lock_spin(&sio_lock);
2653			incc = com->iptr - com->ibuf;
2654			com->iptr = com->ibuf;
2655			if (com->state & CS_CHECKMSR) {
2656				incc += LOTS_OF_EVENTS;
2657				com->state &= ~CS_CHECKMSR;
2658			}
2659			com_events -= incc;
2660			mtx_unlock_spin(&sio_lock);
2661			continue;
2662		}
2663		if (com->iptr != com->ibuf) {
2664			mtx_lock_spin(&sio_lock);
2665			sioinput(com);
2666			mtx_unlock_spin(&sio_lock);
2667		}
2668		if (com->state & CS_CHECKMSR) {
2669			u_char	delta_modem_status;
2670
2671#ifdef PC98
2672			if (!IS_8251(com->pc98_if_type)) {
2673#endif
2674			mtx_lock_spin(&sio_lock);
2675			delta_modem_status = com->last_modem_status
2676					     ^ com->prev_modem_status;
2677			com->prev_modem_status = com->last_modem_status;
2678			com_events -= LOTS_OF_EVENTS;
2679			com->state &= ~CS_CHECKMSR;
2680			mtx_unlock_spin(&sio_lock);
2681			if (delta_modem_status & MSR_DCD)
2682				ttyld_modem(tp,
2683				    com->prev_modem_status & MSR_DCD);
2684#ifdef PC98
2685			}
2686#endif
2687		}
2688		if (com->state & CS_ODONE) {
2689			mtx_lock_spin(&sio_lock);
2690			com_events -= LOTS_OF_EVENTS;
2691			com->state &= ~CS_ODONE;
2692			mtx_unlock_spin(&sio_lock);
2693			if (!(com->state & CS_BUSY)
2694			    && !(com->extra_state & CSE_BUSYCHECK)) {
2695				timeout(siobusycheck, com, hz / 100);
2696				com->extra_state |= CSE_BUSYCHECK;
2697			}
2698			ttyld_start(tp);
2699		}
2700		if (com_events == 0)
2701			break;
2702	}
2703	if (com_events >= LOTS_OF_EVENTS)
2704		goto repeat;
2705}
2706
2707static void
2708combreak(tp, sig)
2709	struct tty 	*tp;
2710	int		sig;
2711{
2712	struct com_s	*com;
2713
2714	com = tp->t_sc;
2715
2716#ifdef PC98
2717	if (sig)
2718		com_send_break_on(com);
2719	else
2720		com_send_break_off(com);
2721#else
2722	if (sig)
2723		sio_setreg(com, com_cfcr, com->cfcr_image |= CFCR_SBREAK);
2724	else
2725		sio_setreg(com, com_cfcr, com->cfcr_image &= ~CFCR_SBREAK);
2726#endif
2727}
2728
2729static int
2730comparam(tp, t)
2731	struct tty	*tp;
2732	struct termios	*t;
2733{
2734	u_int		cfcr;
2735	int		cflag;
2736	struct com_s	*com;
2737	u_int		divisor;
2738	u_char		dlbh;
2739	u_char		dlbl;
2740	u_char		efr_flowbits;
2741	int		s;
2742#ifdef PC98
2743	u_char		param = 0;
2744#endif
2745
2746	com = tp->t_sc;
2747	if (com == NULL)
2748		return (ENODEV);
2749
2750#ifdef PC98
2751	cfcr = 0;
2752
2753	if (IS_8251(com->pc98_if_type)) {
2754		if (pc98_ttspeedtab(com, t->c_ospeed, &divisor) != 0)
2755			return (EINVAL);
2756	} else {
2757#endif
2758	/* check requested parameters */
2759	if (t->c_ispeed != (t->c_ospeed != 0 ? t->c_ospeed : tp->t_ospeed))
2760		return (EINVAL);
2761	divisor = siodivisor(com->rclk, t->c_ispeed);
2762	if (divisor == 0)
2763		return (EINVAL);
2764#ifdef PC98
2765	}
2766#endif
2767
2768	/* parameters are OK, convert them to the com struct and the device */
2769	s = spltty();
2770#ifdef PC98
2771	if (IS_8251(com->pc98_if_type)) {
2772		if (t->c_ospeed == 0)
2773			com_tiocm_bic(com, TIOCM_DTR|TIOCM_RTS|TIOCM_LE);
2774		else
2775			com_tiocm_bis(com, TIOCM_DTR|TIOCM_RTS|TIOCM_LE);
2776	} else
2777#endif
2778	if (t->c_ospeed == 0)
2779		(void)commodem(tp, 0, SER_DTR);	/* hang up line */
2780	else
2781		(void)commodem(tp, SER_DTR, 0);
2782	cflag = t->c_cflag;
2783#ifdef PC98
2784	if (!IS_8251(com->pc98_if_type)) {
2785#endif
2786	switch (cflag & CSIZE) {
2787	case CS5:
2788		cfcr = CFCR_5BITS;
2789		break;
2790	case CS6:
2791		cfcr = CFCR_6BITS;
2792		break;
2793	case CS7:
2794		cfcr = CFCR_7BITS;
2795		break;
2796	default:
2797		cfcr = CFCR_8BITS;
2798		break;
2799	}
2800	if (cflag & PARENB) {
2801		cfcr |= CFCR_PENAB;
2802		if (!(cflag & PARODD))
2803			cfcr |= CFCR_PEVEN;
2804	}
2805	if (cflag & CSTOPB)
2806		cfcr |= CFCR_STOPB;
2807
2808	if (com->hasfifo) {
2809		/*
2810		 * Use a fifo trigger level low enough so that the input
2811		 * latency from the fifo is less than about 16 msec and
2812		 * the total latency is less than about 30 msec.  These
2813		 * latencies are reasonable for humans.  Serial comms
2814		 * protocols shouldn't expect anything better since modem
2815		 * latencies are larger.
2816		 *
2817		 * The fifo trigger level cannot be set at RX_HIGH for high
2818		 * speed connections without further work on reducing
2819		 * interrupt disablement times in other parts of the system,
2820		 * without producing silo overflow errors.
2821		 */
2822		com->fifo_image = com->unit == siotsunit ? 0
2823				  : t->c_ispeed <= 4800
2824				  ? FIFO_ENABLE : FIFO_ENABLE | FIFO_RX_MEDH;
2825#ifdef COM_ESP
2826		/*
2827		 * The Hayes ESP card needs the fifo DMA mode bit set
2828		 * in compatibility mode.  If not, it will interrupt
2829		 * for each character received.
2830		 */
2831		if (com->esp)
2832			com->fifo_image |= FIFO_DMA_MODE;
2833#endif
2834		sio_setreg(com, com_fifo, com->fifo_image);
2835	}
2836#ifdef PC98
2837	}
2838#endif
2839
2840	/*
2841	 * This returns with interrupts disabled so that we can complete
2842	 * the speed change atomically.  Keeping interrupts disabled is
2843	 * especially important while com_data is hidden.
2844	 */
2845	(void) siosetwater(com, t->c_ispeed);
2846
2847#ifdef PC98
2848	if (IS_8251(com->pc98_if_type))
2849		com_cflag_and_speed_set(com, cflag, t->c_ospeed);
2850	else {
2851#endif
2852	sio_setreg(com, com_cfcr, cfcr | CFCR_DLAB);
2853	/*
2854	 * Only set the divisor registers if they would change, since on
2855	 * some 16550 incompatibles (UMC8669F), setting them while input
2856	 * is arriving loses sync until data stops arriving.
2857	 */
2858	dlbl = divisor & 0xFF;
2859	if (sio_getreg(com, com_dlbl) != dlbl)
2860		sio_setreg(com, com_dlbl, dlbl);
2861	dlbh = divisor >> 8;
2862	if (sio_getreg(com, com_dlbh) != dlbh)
2863		sio_setreg(com, com_dlbh, dlbh);
2864#ifdef PC98
2865	}
2866#endif
2867
2868	efr_flowbits = 0;
2869
2870	if (cflag & CRTS_IFLOW) {
2871		com->state |= CS_RTS_IFLOW;
2872		efr_flowbits |= EFR_AUTORTS;
2873		/*
2874		 * If CS_RTS_IFLOW just changed from off to on, the change
2875		 * needs to be propagated to MCR_RTS.  This isn't urgent,
2876		 * so do it later by calling comstart() instead of repeating
2877		 * a lot of code from comstart() here.
2878		 */
2879	} else if (com->state & CS_RTS_IFLOW) {
2880		com->state &= ~CS_RTS_IFLOW;
2881		/*
2882		 * CS_RTS_IFLOW just changed from on to off.  Force MCR_RTS
2883		 * on here, since comstart() won't do it later.
2884		 */
2885#ifdef PC98
2886		if (IS_8251(com->pc98_if_type))
2887			com_tiocm_bis(com, TIOCM_RTS);
2888		else
2889			outb(com->modem_ctl_port, com->mcr_image |= MCR_RTS);
2890#else
2891		outb(com->modem_ctl_port, com->mcr_image |= MCR_RTS);
2892#endif
2893	}
2894
2895	/*
2896	 * Set up state to handle output flow control.
2897	 * XXX - worth handling MDMBUF (DCD) flow control at the lowest level?
2898	 * Now has 10+ msec latency, while CTS flow has 50- usec latency.
2899	 */
2900	com->state |= CS_ODEVREADY;
2901	com->state &= ~CS_CTS_OFLOW;
2902#ifdef PC98
2903	if (com->pc98_if_type == COM_IF_RSA98III) {
2904		param = inb(com->rsabase + rsa_msr);
2905		outb(com->rsabase + rsa_msr, param & 0x14);
2906	}
2907#endif
2908	if (cflag & CCTS_OFLOW) {
2909		com->state |= CS_CTS_OFLOW;
2910		efr_flowbits |= EFR_AUTOCTS;
2911#ifdef PC98
2912		if (IS_8251(com->pc98_if_type)) {
2913			if (!(pc98_get_modem_status(com) & TIOCM_CTS))
2914				com->state &= ~CS_ODEVREADY;
2915		} else if (com->pc98_if_type == COM_IF_RSA98III) {
2916			/* Set automatic flow control mode */
2917			outb(com->rsabase + rsa_msr, param | 0x08);
2918		} else
2919#endif
2920		if (!(com->last_modem_status & MSR_CTS))
2921			com->state &= ~CS_ODEVREADY;
2922	}
2923
2924#ifdef PC98
2925	if (!IS_8251(com->pc98_if_type))
2926		sio_setreg(com, com_cfcr, com->cfcr_image = cfcr);
2927#else
2928	if (com->st16650a) {
2929		sio_setreg(com, com_lcr, LCR_EFR_ENABLE);
2930		sio_setreg(com, com_efr,
2931			   (sio_getreg(com, com_efr)
2932			    & ~(EFR_AUTOCTS | EFR_AUTORTS)) | efr_flowbits);
2933	}
2934	sio_setreg(com, com_cfcr, com->cfcr_image = cfcr);
2935#endif
2936
2937	/* XXX shouldn't call functions while intrs are disabled. */
2938	ttyldoptim(tp);
2939
2940	mtx_unlock_spin(&sio_lock);
2941	splx(s);
2942	comstart(tp);
2943	if (com->ibufold != NULL) {
2944		free(com->ibufold, M_DEVBUF);
2945		com->ibufold = NULL;
2946	}
2947	return (0);
2948}
2949
2950/*
2951 * This function must be called with the sio_lock mutex released and will
2952 * return with it obtained.
2953 */
2954static int
2955siosetwater(com, speed)
2956	struct com_s	*com;
2957	speed_t		speed;
2958{
2959	int		cp4ticks;
2960	u_char		*ibuf;
2961	int		ibufsize;
2962	struct tty	*tp;
2963
2964	/*
2965	 * Make the buffer size large enough to handle a softtty interrupt
2966	 * latency of about 2 ticks without loss of throughput or data
2967	 * (about 3 ticks if input flow control is not used or not honoured,
2968	 * but a bit less for CS5-CS7 modes).
2969	 */
2970	cp4ticks = speed / 10 / hz * 4;
2971	for (ibufsize = 128; ibufsize < cp4ticks;)
2972		ibufsize <<= 1;
2973#ifdef PC98
2974	if (com->pc98_if_type == COM_IF_RSA98III)
2975		ibufsize = 2048;
2976#endif
2977	if (ibufsize == com->ibufsize) {
2978		mtx_lock_spin(&sio_lock);
2979		return (0);
2980	}
2981
2982	/*
2983	 * Allocate input buffer.  The extra factor of 2 in the size is
2984	 * to allow for an error byte for each input byte.
2985	 */
2986	ibuf = malloc(2 * ibufsize, M_DEVBUF, M_NOWAIT);
2987	if (ibuf == NULL) {
2988		mtx_lock_spin(&sio_lock);
2989		return (ENOMEM);
2990	}
2991
2992	/* Initialize non-critical variables. */
2993	com->ibufold = com->ibuf;
2994	com->ibufsize = ibufsize;
2995	tp = com->tp;
2996	if (tp != NULL) {
2997		tp->t_ififosize = 2 * ibufsize;
2998		tp->t_ispeedwat = (speed_t)-1;
2999		tp->t_ospeedwat = (speed_t)-1;
3000	}
3001
3002	/*
3003	 * Read current input buffer, if any.  Continue with interrupts
3004	 * disabled.
3005	 */
3006	mtx_lock_spin(&sio_lock);
3007	if (com->iptr != com->ibuf)
3008		sioinput(com);
3009
3010	/*-
3011	 * Initialize critical variables, including input buffer watermarks.
3012	 * The external device is asked to stop sending when the buffer
3013	 * exactly reaches high water, or when the high level requests it.
3014	 * The high level is notified immediately (rather than at a later
3015	 * clock tick) when this watermark is reached.
3016	 * The buffer size is chosen so the watermark should almost never
3017	 * be reached.
3018	 * The low watermark is invisibly 0 since the buffer is always
3019	 * emptied all at once.
3020	 */
3021	com->iptr = com->ibuf = ibuf;
3022	com->ibufend = ibuf + ibufsize;
3023	com->ierroff = ibufsize;
3024	com->ihighwater = ibuf + 3 * ibufsize / 4;
3025	return (0);
3026}
3027
3028static void
3029comstart(tp)
3030	struct tty	*tp;
3031{
3032	struct com_s	*com;
3033	int		s;
3034
3035	com = tp->t_sc;
3036	if (com == NULL)
3037		return;
3038	s = spltty();
3039	mtx_lock_spin(&sio_lock);
3040	if (tp->t_state & TS_TTSTOP)
3041		com->state &= ~CS_TTGO;
3042	else
3043		com->state |= CS_TTGO;
3044	if (tp->t_state & TS_TBLOCK) {
3045#ifdef PC98
3046		if (IS_8251(com->pc98_if_type)) {
3047		    if ((com_tiocm_get(com) & TIOCM_RTS) &&
3048			(com->state & CS_RTS_IFLOW))
3049			com_tiocm_bic(com, TIOCM_RTS);
3050		} else {
3051		    if ((com->mcr_image & MCR_RTS) &&
3052			(com->state & CS_RTS_IFLOW))
3053			outb(com->modem_ctl_port, com->mcr_image &= ~MCR_RTS);
3054		}
3055#else
3056		if (com->mcr_image & MCR_RTS && com->state & CS_RTS_IFLOW)
3057			outb(com->modem_ctl_port, com->mcr_image &= ~MCR_RTS);
3058#endif
3059	} else {
3060#ifdef PC98
3061		if (IS_8251(com->pc98_if_type)) {
3062		    if (!(com_tiocm_get(com) & TIOCM_RTS) &&
3063			com->iptr < com->ihighwater &&
3064			com->state & CS_RTS_IFLOW)
3065			com_tiocm_bis(com, TIOCM_RTS);
3066		} else {
3067		    if (!(com->mcr_image & MCR_RTS) &&
3068			com->iptr < com->ihighwater &&
3069			com->state & CS_RTS_IFLOW)
3070			outb(com->modem_ctl_port, com->mcr_image |= MCR_RTS);
3071		}
3072#else
3073		if (!(com->mcr_image & MCR_RTS) && com->iptr < com->ihighwater
3074		    && com->state & CS_RTS_IFLOW)
3075			outb(com->modem_ctl_port, com->mcr_image |= MCR_RTS);
3076#endif
3077	}
3078	mtx_unlock_spin(&sio_lock);
3079	if (tp->t_state & (TS_TIMEOUT | TS_TTSTOP)) {
3080		ttwwakeup(tp);
3081		splx(s);
3082		return;
3083	}
3084	if (tp->t_outq.c_cc != 0) {
3085		struct lbq	*qp;
3086		struct lbq	*next;
3087
3088		if (!com->obufs[0].l_queued) {
3089			com->obufs[0].l_tail
3090			    = com->obuf1 + q_to_b(&tp->t_outq, com->obuf1,
3091#ifdef PC98
3092						  com->obufsize);
3093#else
3094						  sizeof com->obuf1);
3095#endif
3096			com->obufs[0].l_next = NULL;
3097			com->obufs[0].l_queued = TRUE;
3098			mtx_lock_spin(&sio_lock);
3099			if (com->state & CS_BUSY) {
3100				qp = com->obufq.l_next;
3101				while ((next = qp->l_next) != NULL)
3102					qp = next;
3103				qp->l_next = &com->obufs[0];
3104			} else {
3105				com->obufq.l_head = com->obufs[0].l_head;
3106				com->obufq.l_tail = com->obufs[0].l_tail;
3107				com->obufq.l_next = &com->obufs[0];
3108				com->state |= CS_BUSY;
3109			}
3110			mtx_unlock_spin(&sio_lock);
3111		}
3112		if (tp->t_outq.c_cc != 0 && !com->obufs[1].l_queued) {
3113			com->obufs[1].l_tail
3114			    = com->obuf2 + q_to_b(&tp->t_outq, com->obuf2,
3115#ifdef PC98
3116						  com->obufsize);
3117#else
3118						  sizeof com->obuf2);
3119#endif
3120			com->obufs[1].l_next = NULL;
3121			com->obufs[1].l_queued = TRUE;
3122			mtx_lock_spin(&sio_lock);
3123			if (com->state & CS_BUSY) {
3124				qp = com->obufq.l_next;
3125				while ((next = qp->l_next) != NULL)
3126					qp = next;
3127				qp->l_next = &com->obufs[1];
3128			} else {
3129				com->obufq.l_head = com->obufs[1].l_head;
3130				com->obufq.l_tail = com->obufs[1].l_tail;
3131				com->obufq.l_next = &com->obufs[1];
3132				com->state |= CS_BUSY;
3133			}
3134			mtx_unlock_spin(&sio_lock);
3135		}
3136		tp->t_state |= TS_BUSY;
3137	}
3138	mtx_lock_spin(&sio_lock);
3139	if (com->state >= (CS_BUSY | CS_TTGO))
3140		siointr1(com);	/* fake interrupt to start output */
3141	mtx_unlock_spin(&sio_lock);
3142	ttwwakeup(tp);
3143	splx(s);
3144}
3145
3146static void
3147comstop(tp, rw)
3148	struct tty	*tp;
3149	int		rw;
3150{
3151	struct com_s	*com;
3152#ifdef PC98
3153	int		rsa98_tmp  = 0;
3154#endif
3155
3156	com = tp->t_sc;
3157	if (com == NULL || com->gone)
3158		return;
3159	mtx_lock_spin(&sio_lock);
3160	if (rw & FWRITE) {
3161#ifdef PC98
3162		if (!IS_8251(com->pc98_if_type)) {
3163#endif
3164		if (com->hasfifo)
3165#ifdef COM_ESP
3166		    /* XXX avoid h/w bug. */
3167		    if (!com->esp)
3168#endif
3169			sio_setreg(com, com_fifo,
3170				   FIFO_XMT_RST | com->fifo_image);
3171#ifdef PC98
3172		if (com->pc98_if_type == COM_IF_RSA98III)
3173		    for (rsa98_tmp = 0; rsa98_tmp < 2048; rsa98_tmp++)
3174			sio_setreg(com, com_fifo,
3175				   FIFO_XMT_RST | com->fifo_image);
3176		}
3177#endif
3178		com->obufs[0].l_queued = FALSE;
3179		com->obufs[1].l_queued = FALSE;
3180		if (com->state & CS_ODONE)
3181			com_events -= LOTS_OF_EVENTS;
3182		com->state &= ~(CS_ODONE | CS_BUSY);
3183		com->tp->t_state &= ~TS_BUSY;
3184	}
3185	if (rw & FREAD) {
3186#ifdef PC98
3187		if (!IS_8251(com->pc98_if_type)) {
3188		    if (com->pc98_if_type == COM_IF_RSA98III)
3189			for (rsa98_tmp = 0; rsa98_tmp < 2048; rsa98_tmp++)
3190			    sio_getreg(com, com_data);
3191#endif
3192		if (com->hasfifo)
3193#ifdef COM_ESP
3194		    /* XXX avoid h/w bug. */
3195		    if (!com->esp)
3196#endif
3197			sio_setreg(com, com_fifo,
3198				   FIFO_RCV_RST | com->fifo_image);
3199#ifdef PC98
3200		}
3201#endif
3202		com_events -= (com->iptr - com->ibuf);
3203		com->iptr = com->ibuf;
3204	}
3205	mtx_unlock_spin(&sio_lock);
3206	comstart(tp);
3207}
3208
3209static int
3210commodem(struct tty *tp, int sigon, int sigoff)
3211{
3212	struct com_s	*com;
3213	int	bitand, bitor, msr;
3214#ifdef PC98
3215	int	clr, set;
3216#endif
3217
3218	com = tp->t_sc;
3219	if (com->gone)
3220		return(0);
3221	if (sigon != 0 || sigoff != 0) {
3222#ifdef PC98
3223		if (IS_8251(com->pc98_if_type)) {
3224			bitand = bitor = 0;
3225			clr = set = 0;
3226			if (sigoff & SER_DTR) {
3227				bitand |= TIOCM_DTR;
3228				clr |= CMD8251_DTR;
3229			}
3230			if (sigoff & SER_RTS) {
3231				bitand |= TIOCM_RTS;
3232				clr |= CMD8251_RxEN | CMD8251_RTS;
3233			}
3234			if (sigon & SER_DTR) {
3235				bitor |= TIOCM_DTR;
3236				set |= CMD8251_TxEN | CMD8251_RxEN |
3237					CMD8251_DTR;
3238			}
3239			if (sigon & SER_RTS) {
3240				bitor |= TIOCM_RTS;
3241				set |= CMD8251_TxEN | CMD8251_RxEN |
3242					CMD8251_RTS;
3243			}
3244			bitand = ~bitand;
3245			mtx_lock_spin(&sio_lock);
3246			com->pc98_prev_modem_status &= bitand;
3247			com->pc98_prev_modem_status |= bitor;
3248			pc98_i8251_clear_or_cmd(com, clr, set);
3249			mtx_unlock_spin(&sio_lock);
3250			return (0);
3251		} else {
3252#endif
3253		bitand = bitor = 0;
3254		if (sigoff & SER_DTR)
3255			bitand |= MCR_DTR;
3256		if (sigoff & SER_RTS)
3257			bitand |= MCR_RTS;
3258		if (sigon & SER_DTR)
3259			bitor |= MCR_DTR;
3260		if (sigon & SER_RTS)
3261			bitor |= MCR_RTS;
3262		bitand = ~bitand;
3263		mtx_lock_spin(&sio_lock);
3264		com->mcr_image &= bitand;
3265		com->mcr_image |= bitor;
3266		outb(com->modem_ctl_port, com->mcr_image);
3267		mtx_unlock_spin(&sio_lock);
3268		return (0);
3269#ifdef PC98
3270		}
3271#endif
3272	} else {
3273#ifdef PC98
3274		if (IS_8251(com->pc98_if_type))
3275			return (com_tiocm_get(com));
3276		else {
3277#endif
3278		bitor = 0;
3279		if (com->mcr_image & MCR_DTR)
3280			bitor |= SER_DTR;
3281		if (com->mcr_image & MCR_RTS)
3282			bitor |= SER_RTS;
3283		msr = com->prev_modem_status;
3284		if (msr & MSR_CTS)
3285			bitor |= SER_CTS;
3286		if (msr & MSR_DCD)
3287			bitor |= SER_DCD;
3288		if (msr & MSR_DSR)
3289			bitor |= SER_DSR;
3290		if (msr & MSR_DSR)
3291			bitor |= SER_DSR;
3292		if (msr & (MSR_RI | MSR_TERI))
3293			bitor |= SER_RI;
3294		return (bitor);
3295#ifdef PC98
3296		}
3297#endif
3298	}
3299}
3300
3301static void
3302siosettimeout()
3303{
3304	struct com_s	*com;
3305	bool_t		someopen;
3306	int		unit;
3307
3308	/*
3309	 * Set our timeout period to 1 second if no polled devices are open.
3310	 * Otherwise set it to max(1/200, 1/hz).
3311	 * Enable timeouts iff some device is open.
3312	 */
3313	untimeout(comwakeup, (void *)NULL, sio_timeout_handle);
3314	sio_timeout = hz;
3315	someopen = FALSE;
3316	for (unit = 0; unit < sio_numunits; ++unit) {
3317		com = com_addr(unit);
3318		if (com != NULL && com->tp != NULL
3319		    && com->tp->t_state & TS_ISOPEN && !com->gone) {
3320			someopen = TRUE;
3321			if (com->poll || com->poll_output) {
3322				sio_timeout = hz > 200 ? hz / 200 : 1;
3323				break;
3324			}
3325		}
3326	}
3327	if (someopen) {
3328		sio_timeouts_until_log = hz / sio_timeout;
3329		sio_timeout_handle = timeout(comwakeup, (void *)NULL,
3330					     sio_timeout);
3331	} else {
3332		/* Flush error messages, if any. */
3333		sio_timeouts_until_log = 1;
3334		comwakeup((void *)NULL);
3335		untimeout(comwakeup, (void *)NULL, sio_timeout_handle);
3336	}
3337}
3338
3339static void
3340comwakeup(chan)
3341	void	*chan;
3342{
3343	struct com_s	*com;
3344	int		unit;
3345
3346	sio_timeout_handle = timeout(comwakeup, (void *)NULL, sio_timeout);
3347
3348	/*
3349	 * Recover from lost output interrupts.
3350	 * Poll any lines that don't use interrupts.
3351	 */
3352	for (unit = 0; unit < sio_numunits; ++unit) {
3353		com = com_addr(unit);
3354		if (com != NULL && !com->gone
3355		    && (com->state >= (CS_BUSY | CS_TTGO) || com->poll)) {
3356			mtx_lock_spin(&sio_lock);
3357			siointr1(com);
3358			mtx_unlock_spin(&sio_lock);
3359		}
3360	}
3361
3362	/*
3363	 * Check for and log errors, but not too often.
3364	 */
3365	if (--sio_timeouts_until_log > 0)
3366		return;
3367	sio_timeouts_until_log = hz / sio_timeout;
3368	for (unit = 0; unit < sio_numunits; ++unit) {
3369		int	errnum;
3370
3371		com = com_addr(unit);
3372		if (com == NULL)
3373			continue;
3374		if (com->gone)
3375			continue;
3376		for (errnum = 0; errnum < CE_NTYPES; ++errnum) {
3377			u_int	delta;
3378			u_long	total;
3379
3380			mtx_lock_spin(&sio_lock);
3381			delta = com->delta_error_counts[errnum];
3382			com->delta_error_counts[errnum] = 0;
3383			mtx_unlock_spin(&sio_lock);
3384			if (delta == 0)
3385				continue;
3386			total = com->error_counts[errnum] += delta;
3387			log(LOG_ERR, "sio%d: %u more %s%s (total %lu)\n",
3388			    unit, delta, error_desc[errnum],
3389			    delta == 1 ? "" : "s", total);
3390		}
3391	}
3392}
3393
3394#ifdef PC98
3395/* commint is called when modem control line changes */
3396static void
3397commint(struct cdev *dev)
3398{
3399	register struct tty *tp;
3400	int	stat,delta;
3401	struct com_s *com;
3402
3403	com = dev->si_drv1;
3404	tp = com->tp;
3405
3406	stat = com_tiocm_get(com);
3407	delta = com_tiocm_get_delta(com);
3408
3409	if (com->state & CS_CTS_OFLOW) {
3410		if (stat & TIOCM_CTS)
3411			com->state |= CS_ODEVREADY;
3412		else
3413			com->state &= ~CS_ODEVREADY;
3414	}
3415	if ((delta & TIOCM_CAR) && (ISCALLOUT(dev)) == 0) {
3416	    if (stat & TIOCM_CAR )
3417		(void)ttyld_modem(tp, 1);
3418	    else if (ttyld_modem(tp, 0) == 0) {
3419		/* negate DTR, RTS */
3420		com_tiocm_bic(com, (tp->t_cflag & HUPCL) ?
3421				TIOCM_DTR|TIOCM_RTS|TIOCM_LE : TIOCM_LE );
3422		/* disable IENABLE */
3423		com_int_TxRx_disable( com );
3424	    }
3425	}
3426}
3427#endif
3428
3429/*
3430 * Following are all routines needed for SIO to act as console
3431 */
3432struct siocnstate {
3433	u_char	dlbl;
3434	u_char	dlbh;
3435	u_char	ier;
3436	u_char	cfcr;
3437	u_char	mcr;
3438};
3439
3440/*
3441 * This is a function in order to not replicate "ttyd%d" more
3442 * places than absolutely necessary.
3443 */
3444static void
3445siocnset(struct consdev *cd, int unit)
3446{
3447
3448	cd->cn_unit = unit;
3449	sprintf(cd->cn_name, "ttyd%d", unit);
3450}
3451
3452static speed_t siocngetspeed(Port_t, u_long rclk);
3453static void siocnclose(struct siocnstate *sp, Port_t iobase);
3454static void siocnopen(struct siocnstate *sp, Port_t iobase, int speed);
3455static void siocntxwait(Port_t iobase);
3456
3457static cn_probe_t sio_cnprobe;
3458static cn_init_t sio_cninit;
3459static cn_term_t sio_cnterm;
3460static cn_getc_t sio_cngetc;
3461static cn_putc_t sio_cnputc;
3462
3463CONSOLE_DRIVER(sio);
3464
3465static void
3466siocntxwait(iobase)
3467	Port_t	iobase;
3468{
3469	int	timo;
3470
3471	/*
3472	 * Wait for any pending transmission to finish.  Required to avoid
3473	 * the UART lockup bug when the speed is changed, and for normal
3474	 * transmits.
3475	 */
3476	timo = 100000;
3477	while ((inb(iobase + com_lsr) & (LSR_TSRE | LSR_TXRDY))
3478	       != (LSR_TSRE | LSR_TXRDY) && --timo != 0)
3479		;
3480}
3481
3482/*
3483 * Read the serial port specified and try to figure out what speed
3484 * it's currently running at.  We're assuming the serial port has
3485 * been initialized and is basicly idle.  This routine is only intended
3486 * to be run at system startup.
3487 *
3488 * If the value read from the serial port doesn't make sense, return 0.
3489 */
3490
3491static speed_t
3492siocngetspeed(iobase, rclk)
3493	Port_t	iobase;
3494	u_long	rclk;
3495{
3496	u_int	divisor;
3497	u_char	dlbh;
3498	u_char	dlbl;
3499	u_char  cfcr;
3500
3501	cfcr = inb(iobase + com_cfcr);
3502	outb(iobase + com_cfcr, CFCR_DLAB | cfcr);
3503
3504	dlbl = inb(iobase + com_dlbl);
3505	dlbh = inb(iobase + com_dlbh);
3506
3507	outb(iobase + com_cfcr, cfcr);
3508
3509	divisor = dlbh << 8 | dlbl;
3510
3511	/* XXX there should be more sanity checking. */
3512	if (divisor == 0)
3513		return (CONSPEED);
3514	return (rclk / (16UL * divisor));
3515}
3516
3517static void
3518siocnopen(sp, iobase, speed)
3519	struct siocnstate	*sp;
3520	Port_t			iobase;
3521	int			speed;
3522{
3523	u_int	divisor;
3524	u_char	dlbh;
3525	u_char	dlbl;
3526
3527	/*
3528	 * Save all the device control registers except the fifo register
3529	 * and set our default ones (cs8 -parenb speed=comdefaultrate).
3530	 * We can't save the fifo register since it is read-only.
3531	 */
3532	sp->ier = inb(iobase + com_ier);
3533	outb(iobase + com_ier, 0);	/* spltty() doesn't stop siointr() */
3534	siocntxwait(iobase);
3535	sp->cfcr = inb(iobase + com_cfcr);
3536	outb(iobase + com_cfcr, CFCR_DLAB | CFCR_8BITS);
3537	sp->dlbl = inb(iobase + com_dlbl);
3538	sp->dlbh = inb(iobase + com_dlbh);
3539	/*
3540	 * Only set the divisor registers if they would change, since on
3541	 * some 16550 incompatibles (Startech), setting them clears the
3542	 * data input register.  This also reduces the effects of the
3543	 * UMC8669F bug.
3544	 */
3545	divisor = siodivisor(comdefaultrclk, speed);
3546	dlbl = divisor & 0xFF;
3547	if (sp->dlbl != dlbl)
3548		outb(iobase + com_dlbl, dlbl);
3549	dlbh = divisor >> 8;
3550	if (sp->dlbh != dlbh)
3551		outb(iobase + com_dlbh, dlbh);
3552	outb(iobase + com_cfcr, CFCR_8BITS);
3553	sp->mcr = inb(iobase + com_mcr);
3554	/*
3555	 * We don't want interrupts, but must be careful not to "disable"
3556	 * them by clearing the MCR_IENABLE bit, since that might cause
3557	 * an interrupt by floating the IRQ line.
3558	 */
3559	outb(iobase + com_mcr, (sp->mcr & MCR_IENABLE) | MCR_DTR | MCR_RTS);
3560}
3561
3562static void
3563siocnclose(sp, iobase)
3564	struct siocnstate	*sp;
3565	Port_t			iobase;
3566{
3567	/*
3568	 * Restore the device control registers.
3569	 */
3570	siocntxwait(iobase);
3571	outb(iobase + com_cfcr, CFCR_DLAB | CFCR_8BITS);
3572	if (sp->dlbl != inb(iobase + com_dlbl))
3573		outb(iobase + com_dlbl, sp->dlbl);
3574	if (sp->dlbh != inb(iobase + com_dlbh))
3575		outb(iobase + com_dlbh, sp->dlbh);
3576	outb(iobase + com_cfcr, sp->cfcr);
3577	/*
3578	 * XXX damp oscillations of MCR_DTR and MCR_RTS by not restoring them.
3579	 */
3580	outb(iobase + com_mcr, sp->mcr | MCR_DTR | MCR_RTS);
3581	outb(iobase + com_ier, sp->ier);
3582}
3583
3584static void
3585sio_cnprobe(cp)
3586	struct consdev	*cp;
3587{
3588	speed_t			boot_speed;
3589	u_char			cfcr;
3590	u_int			divisor;
3591	int			s, unit;
3592	struct siocnstate	sp;
3593
3594	/*
3595	 * Find our first enabled console, if any.  If it is a high-level
3596	 * console device, then initialize it and return successfully.
3597	 * If it is a low-level console device, then initialize it and
3598	 * return unsuccessfully.  It must be initialized in both cases
3599	 * for early use by console drivers and debuggers.  Initializing
3600	 * the hardware is not necessary in all cases, since the i/o
3601	 * routines initialize it on the fly, but it is necessary if
3602	 * input might arrive while the hardware is switched back to an
3603	 * uninitialized state.  We can't handle multiple console devices
3604	 * yet because our low-level routines don't take a device arg.
3605	 * We trust the user to set the console flags properly so that we
3606	 * don't need to probe.
3607	 */
3608	cp->cn_pri = CN_DEAD;
3609
3610	for (unit = 0; unit < 16; unit++) { /* XXX need to know how many */
3611		int flags;
3612
3613		if (resource_disabled("sio", unit))
3614			continue;
3615		if (resource_int_value("sio", unit, "flags", &flags))
3616			continue;
3617		if (COM_CONSOLE(flags) || COM_DEBUGGER(flags)) {
3618			int port;
3619			Port_t iobase;
3620
3621			if (resource_int_value("sio", unit, "port", &port))
3622				continue;
3623			iobase = port;
3624			s = spltty();
3625			if (boothowto & RB_SERIAL) {
3626				boot_speed =
3627				    siocngetspeed(iobase, comdefaultrclk);
3628				if (boot_speed)
3629					comdefaultrate = boot_speed;
3630			}
3631
3632			/*
3633			 * Initialize the divisor latch.  We can't rely on
3634			 * siocnopen() to do this the first time, since it
3635			 * avoids writing to the latch if the latch appears
3636			 * to have the correct value.  Also, if we didn't
3637			 * just read the speed from the hardware, then we
3638			 * need to set the speed in hardware so that
3639			 * switching it later is null.
3640			 */
3641			cfcr = inb(iobase + com_cfcr);
3642			outb(iobase + com_cfcr, CFCR_DLAB | cfcr);
3643			divisor = siodivisor(comdefaultrclk, comdefaultrate);
3644			outb(iobase + com_dlbl, divisor & 0xff);
3645			outb(iobase + com_dlbh, divisor >> 8);
3646			outb(iobase + com_cfcr, cfcr);
3647
3648			siocnopen(&sp, iobase, comdefaultrate);
3649
3650			splx(s);
3651			if (COM_CONSOLE(flags) && !COM_LLCONSOLE(flags)) {
3652				siocnset(cp, unit);
3653				cp->cn_pri = COM_FORCECONSOLE(flags)
3654					     || boothowto & RB_SERIAL
3655					     ? CN_REMOTE : CN_NORMAL;
3656				siocniobase = iobase;
3657				siocnunit = unit;
3658			}
3659#ifdef GDB
3660			if (COM_DEBUGGER(flags))
3661				siogdbiobase = iobase;
3662#endif
3663		}
3664	}
3665}
3666
3667static void
3668sio_cninit(cp)
3669	struct consdev	*cp;
3670{
3671	comconsole = cp->cn_unit;
3672}
3673
3674static void
3675sio_cnterm(cp)
3676	struct consdev	*cp;
3677{
3678	comconsole = -1;
3679}
3680
3681static int
3682sio_cngetc(struct consdev *cd)
3683{
3684	int	c;
3685	Port_t	iobase;
3686	int	s;
3687	struct siocnstate	sp;
3688	speed_t	speed;
3689
3690	if (cd != NULL && cd->cn_unit == siocnunit) {
3691		iobase = siocniobase;
3692		speed = comdefaultrate;
3693	} else {
3694#ifdef GDB
3695		iobase = siogdbiobase;
3696		speed = gdbdefaultrate;
3697#else
3698		return (-1);
3699#endif
3700	}
3701	s = spltty();
3702	siocnopen(&sp, iobase, speed);
3703	if (inb(iobase + com_lsr) & LSR_RXRDY)
3704		c = inb(iobase + com_data);
3705	else
3706		c = -1;
3707	siocnclose(&sp, iobase);
3708	splx(s);
3709	return (c);
3710}
3711
3712static void
3713sio_cnputc(struct consdev *cd, int c)
3714{
3715	int	need_unlock;
3716	int	s;
3717	struct siocnstate	sp;
3718	Port_t	iobase;
3719	speed_t	speed;
3720
3721	if (cd != NULL && cd->cn_unit == siocnunit) {
3722		iobase = siocniobase;
3723		speed = comdefaultrate;
3724	} else {
3725#ifdef GDB
3726		iobase = siogdbiobase;
3727		speed = gdbdefaultrate;
3728#else
3729		return;
3730#endif
3731	}
3732	s = spltty();
3733	need_unlock = 0;
3734	if (!kdb_active && sio_inited == 2 && !mtx_owned(&sio_lock)) {
3735		mtx_lock_spin(&sio_lock);
3736		need_unlock = 1;
3737	}
3738	siocnopen(&sp, iobase, speed);
3739	siocntxwait(iobase);
3740	outb(iobase + com_data, c);
3741	siocnclose(&sp, iobase);
3742	if (need_unlock)
3743		mtx_unlock_spin(&sio_lock);
3744	splx(s);
3745}
3746
3747/*
3748 * Remote gdb(1) support.
3749 */
3750
3751#if defined(GDB)
3752
3753#include <gdb/gdb.h>
3754
3755static gdb_probe_f siogdbprobe;
3756static gdb_init_f siogdbinit;
3757static gdb_term_f siogdbterm;
3758static gdb_getc_f siogdbgetc;
3759static gdb_putc_f siogdbputc;
3760
3761GDB_DBGPORT(sio, siogdbprobe, siogdbinit, siogdbterm, siogdbgetc, siogdbputc);
3762
3763static int
3764siogdbprobe(void)
3765{
3766	return ((siogdbiobase != 0) ? 0 : -1);
3767}
3768
3769static void
3770siogdbinit(void)
3771{
3772}
3773
3774static void
3775siogdbterm(void)
3776{
3777}
3778
3779static void
3780siogdbputc(int c)
3781{
3782	sio_cnputc(NULL, c);
3783}
3784
3785static int
3786siogdbgetc(void)
3787{
3788	return (sio_cngetc(NULL));
3789}
3790
3791#endif
3792
3793#ifdef PC98
3794/*
3795 *  pc98 local function
3796 */
3797static void
3798com_tiocm_bis(struct com_s *com, int msr)
3799{
3800	int	s;
3801	int	tmp = 0;
3802
3803	s=spltty();
3804	com->pc98_prev_modem_status |= ( msr & (TIOCM_LE|TIOCM_DTR|TIOCM_RTS) );
3805	tmp |= CMD8251_TxEN|CMD8251_RxEN;
3806	if ( msr & TIOCM_DTR ) tmp |= CMD8251_DTR;
3807	if ( msr & TIOCM_RTS ) tmp |= CMD8251_RTS;
3808
3809	pc98_i8251_or_cmd( com, tmp );
3810	splx(s);
3811}
3812
3813static void
3814com_tiocm_bic(struct com_s *com, int msr)
3815{
3816	int	s;
3817	int	tmp = msr;
3818
3819	s=spltty();
3820	com->pc98_prev_modem_status &= ~( msr & (TIOCM_LE|TIOCM_DTR|TIOCM_RTS) );
3821	if ( msr & TIOCM_DTR ) tmp |= CMD8251_DTR;
3822	if ( msr & TIOCM_RTS ) tmp |= CMD8251_RTS;
3823
3824	pc98_i8251_clear_cmd( com, tmp );
3825	splx(s);
3826}
3827
3828static int
3829com_tiocm_get(struct com_s *com)
3830{
3831	return( com->pc98_prev_modem_status );
3832}
3833
3834static int
3835com_tiocm_get_delta(struct com_s *com)
3836{
3837	int	tmp;
3838
3839	tmp = com->pc98_modem_delta;
3840	com->pc98_modem_delta = 0;
3841	return( tmp );
3842}
3843
3844/* convert to TIOCM_?? ( ioctl.h ) */
3845static int
3846pc98_get_modem_status(struct com_s *com)
3847{
3848	register int	msr;
3849
3850	msr = com->pc98_prev_modem_status
3851			& ~(TIOCM_CAR|TIOCM_RI|TIOCM_DSR|TIOCM_CTS);
3852	if (com->pc98_8251fifo_enable) {
3853		int	stat2;
3854
3855		stat2 = inb(I8251F_msr);
3856		if ( stat2 & CICSCDF_CD ) msr |= TIOCM_CAR;
3857		if ( stat2 & CICSCDF_CI ) msr |= TIOCM_RI;
3858		if ( stat2 & CICSCDF_DR ) msr |= TIOCM_DSR;
3859		if ( stat2 & CICSCDF_CS ) msr |= TIOCM_CTS;
3860#if COM_CARRIER_DETECT_EMULATE
3861		if ( msr & (TIOCM_DSR|TIOCM_CTS) ) {
3862			msr |= TIOCM_CAR;
3863		}
3864#endif
3865	} else {
3866		int	stat, stat2;
3867
3868		stat  = inb(com->sts_port);
3869		stat2 = inb(com->in_modem_port);
3870		if ( !(stat2 & CICSCD_CD) ) msr |= TIOCM_CAR;
3871		if ( !(stat2 & CICSCD_CI) ) msr |= TIOCM_RI;
3872		if (   stat & STS8251_DSR ) msr |= TIOCM_DSR;
3873		if ( !(stat2 & CICSCD_CS) ) msr |= TIOCM_CTS;
3874#if COM_CARRIER_DETECT_EMULATE
3875		if ( msr & (TIOCM_DSR|TIOCM_CTS) ) {
3876			msr |= TIOCM_CAR;
3877		}
3878#endif
3879	}
3880	return(msr);
3881}
3882
3883static void
3884pc98_check_msr(void* chan)
3885{
3886	int	msr, delta;
3887	int	s;
3888	register struct tty *tp;
3889	struct	com_s *com;
3890	struct cdev *dev;
3891
3892	dev=(struct cdev *)chan;
3893	com = dev->si_drv1;
3894	tp = dev->si_tty;
3895
3896	s = spltty();
3897	msr = pc98_get_modem_status(com);
3898	/* make change flag */
3899	delta = msr ^ com->pc98_prev_modem_status;
3900	if ( delta & TIOCM_CAR ) {
3901	    if ( com->modem_car_chg_timer ) {
3902		if ( -- com->modem_car_chg_timer )
3903		    msr ^= TIOCM_CAR;
3904	    } else {
3905		if ((com->modem_car_chg_timer = (msr & TIOCM_CAR) ?
3906		     DCD_ON_RECOGNITION : DCD_OFF_TOLERANCE) != 0)
3907		    msr ^= TIOCM_CAR;
3908	    }
3909	} else
3910	    com->modem_car_chg_timer = 0;
3911	delta = ( msr ^ com->pc98_prev_modem_status ) &
3912			(TIOCM_CAR|TIOCM_RI|TIOCM_DSR|TIOCM_CTS);
3913	com->pc98_prev_modem_status = msr;
3914	delta = ( com->pc98_modem_delta |= delta );
3915	splx(s);
3916	if ( com->modem_checking || (tp->t_state & (TS_ISOPEN)) ) {
3917		if ( delta ) {
3918			commint(dev);
3919		}
3920		timeout(pc98_check_msr, (caddr_t)dev,
3921					PC98_CHECK_MODEM_INTERVAL);
3922	} else {
3923		com->modem_checking = 0;
3924	}
3925}
3926
3927static void
3928pc98_msrint_start(struct cdev *dev)
3929{
3930	struct	com_s *com;
3931	int	s = spltty();
3932
3933	com = dev->si_drv1;
3934	/* modem control line check routine envoke interval is 1/10 sec */
3935	if ( com->modem_checking == 0 ) {
3936		com->pc98_prev_modem_status = pc98_get_modem_status(com);
3937		com->pc98_modem_delta = 0;
3938		timeout(pc98_check_msr, (caddr_t)dev,
3939					PC98_CHECK_MODEM_INTERVAL);
3940		com->modem_checking = 1;
3941	}
3942	splx(s);
3943}
3944
3945static void
3946pc98_disable_i8251_interrupt(struct com_s *com, int mod)
3947{
3948	/* disable interrupt */
3949	register int	tmp;
3950
3951	mod |= ~(IEN_Tx|IEN_TxEMP|IEN_Rx);
3952	COM_INT_DISABLE
3953	tmp = inb( com->intr_ctrl_port ) & ~(IEN_Tx|IEN_TxEMP|IEN_Rx);
3954	outb( com->intr_ctrl_port, (com->intr_enable&=~mod) | tmp );
3955	COM_INT_ENABLE
3956}
3957
3958static void
3959pc98_enable_i8251_interrupt(struct com_s *com, int mod)
3960{
3961	register int	tmp;
3962
3963	COM_INT_DISABLE
3964	tmp = inb( com->intr_ctrl_port ) & ~(IEN_Tx|IEN_TxEMP|IEN_Rx);
3965	outb( com->intr_ctrl_port, (com->intr_enable|=mod) | tmp );
3966	COM_INT_ENABLE
3967}
3968
3969static int
3970pc98_check_i8251_interrupt(struct com_s *com)
3971{
3972	return ( com->intr_enable & 0x07 );
3973}
3974
3975static void
3976pc98_i8251_clear_cmd(struct com_s *com, int x)
3977{
3978	int	tmp;
3979
3980	COM_INT_DISABLE
3981	tmp = com->pc98_prev_siocmd & ~(x);
3982	if (com->pc98_8251fifo_enable)
3983	    outb(I8251F_fcr, 0);
3984	outb(com->cmd_port, tmp);
3985	com->pc98_prev_siocmd = tmp & ~(CMD8251_ER|CMD8251_RESET|CMD8251_EH);
3986	if (com->pc98_8251fifo_enable)
3987	    outb(I8251F_fcr, CTRL8251F_ENABLE);
3988	COM_INT_ENABLE
3989}
3990
3991static void
3992pc98_i8251_or_cmd(struct com_s *com, int x)
3993{
3994	int	tmp;
3995
3996	COM_INT_DISABLE
3997	if (com->pc98_8251fifo_enable)
3998	    outb(I8251F_fcr, 0);
3999	tmp = com->pc98_prev_siocmd | (x);
4000	outb(com->cmd_port, tmp);
4001	com->pc98_prev_siocmd = tmp & ~(CMD8251_ER|CMD8251_RESET|CMD8251_EH);
4002	if (com->pc98_8251fifo_enable)
4003	    outb(I8251F_fcr, CTRL8251F_ENABLE);
4004	COM_INT_ENABLE
4005}
4006
4007static void
4008pc98_i8251_set_cmd(struct com_s *com, int x)
4009{
4010	int	tmp;
4011
4012	COM_INT_DISABLE
4013	if (com->pc98_8251fifo_enable)
4014	    outb(I8251F_fcr, 0);
4015	tmp = (x);
4016	outb(com->cmd_port, tmp);
4017	com->pc98_prev_siocmd = tmp & ~(CMD8251_ER|CMD8251_RESET|CMD8251_EH);
4018	if (com->pc98_8251fifo_enable)
4019	    outb(I8251F_fcr, CTRL8251F_ENABLE);
4020	COM_INT_ENABLE
4021}
4022
4023static void
4024pc98_i8251_clear_or_cmd(struct com_s *com, int clr, int x)
4025{
4026	int	tmp;
4027	COM_INT_DISABLE
4028	if (com->pc98_8251fifo_enable)
4029	    outb(I8251F_fcr, 0);
4030	tmp = com->pc98_prev_siocmd & ~(clr);
4031	tmp |= (x);
4032	outb(com->cmd_port, tmp);
4033	com->pc98_prev_siocmd = tmp & ~(CMD8251_ER|CMD8251_RESET|CMD8251_EH);
4034	if (com->pc98_8251fifo_enable)
4035	    outb(I8251F_fcr, CTRL8251F_ENABLE);
4036	COM_INT_ENABLE
4037}
4038
4039static int
4040pc98_i8251_get_cmd(struct com_s *com)
4041{
4042	return com->pc98_prev_siocmd;
4043}
4044
4045static int
4046pc98_i8251_get_mod(struct com_s *com)
4047{
4048	return com->pc98_prev_siomod;
4049}
4050
4051static void
4052pc98_i8251_reset(struct com_s *com, int mode, int command)
4053{
4054	if (com->pc98_8251fifo_enable)
4055	    outb(I8251F_fcr, 0);
4056	outb(com->cmd_port, 0);	/* dummy */
4057	DELAY(2);
4058	outb(com->cmd_port, 0);	/* dummy */
4059	DELAY(2);
4060	outb(com->cmd_port, 0);	/* dummy */
4061	DELAY(2);
4062	outb(com->cmd_port, CMD8251_RESET);	/* internal reset */
4063	DELAY(2);
4064	outb(com->cmd_port, mode );	/* mode register */
4065	com->pc98_prev_siomod = mode;
4066	DELAY(2);
4067	pc98_i8251_set_cmd( com, (command|CMD8251_ER) );
4068	DELAY(10);
4069	if (com->pc98_8251fifo_enable)
4070	    outb(I8251F_fcr, CTRL8251F_ENABLE |
4071		 CTRL8251F_XMT_RST | CTRL8251F_RCV_RST);
4072}
4073
4074static void
4075pc98_check_sysclock(void)
4076{
4077	/* get system clock from port */
4078	if ( pc98_machine_type & M_8M ) {
4079	/* 8 MHz system & H98 */
4080		sysclock = 8;
4081	} else {
4082	/* 5 MHz system */
4083		sysclock = 5;
4084	}
4085}
4086
4087static void
4088com_cflag_and_speed_set( struct com_s *com, int cflag, int speed)
4089{
4090	int	cfcr=0;
4091	int	previnterrupt;
4092	int	tmp;
4093	u_int	count;
4094
4095	if (pc98_ttspeedtab(com, speed, &count) != 0)
4096		return;
4097
4098	previnterrupt = pc98_check_i8251_interrupt(com);
4099	pc98_disable_i8251_interrupt( com, IEN_Tx|IEN_TxEMP|IEN_Rx );
4100
4101	switch ( cflag&CSIZE ) {
4102	  case CS5:
4103		cfcr = MOD8251_5BITS; break;
4104	  case CS6:
4105		cfcr = MOD8251_6BITS; break;
4106	  case CS7:
4107		cfcr = MOD8251_7BITS; break;
4108	  case CS8:
4109		cfcr = MOD8251_8BITS; break;
4110	}
4111	if ( cflag&PARENB ) {
4112	    if ( cflag&PARODD )
4113		cfcr |= MOD8251_PODD;
4114	    else
4115		cfcr |= MOD8251_PEVEN;
4116	} else
4117		cfcr |= MOD8251_PDISAB;
4118
4119	if ( cflag&CSTOPB )
4120		cfcr |= MOD8251_STOP2;
4121	else
4122		cfcr |= MOD8251_STOP1;
4123
4124	if ( count & 0x10000 )
4125		cfcr |= MOD8251_CLKX1;
4126	else
4127		cfcr |= MOD8251_CLKX16;
4128
4129	while (!((tmp = inb(com->sts_port)) & STS8251_TxEMP))
4130		;
4131
4132	/* set baud rate from ospeed */
4133	pc98_set_baud_rate( com, count );
4134
4135	if ( cfcr != pc98_i8251_get_mod(com) )
4136		pc98_i8251_reset(com, cfcr, pc98_i8251_get_cmd(com) );
4137
4138	pc98_enable_i8251_interrupt( com, previnterrupt );
4139}
4140
4141static int
4142pc98_ttspeedtab(struct com_s *com, int speed, u_int *divisor)
4143{
4144	int	if_type, effect_sp, count = -1, mod;
4145
4146	if_type = com->pc98_if_type & 0x0f;
4147
4148	switch (com->pc98_if_type) {
4149	case COM_IF_INTERNAL:
4150	    if (PC98SIO_baud_rate_port(if_type) != -1) {
4151		count = ttspeedtab(speed, if_8251_type[if_type].speedtab);
4152		if (count > 0) {
4153		    count |= COM1_EXT_CLOCK;
4154		    break;
4155		}
4156	    }
4157
4158	    /* for *1CLK asynchronous! mode, TEFUTEFU */
4159	    mod = (sysclock == 5) ? 2457600 : 1996800;
4160	    effect_sp = ttspeedtab( speed, pc98speedtab );
4161	    if ( effect_sp < 0 )	/* XXX */
4162		effect_sp = ttspeedtab( (speed - 1), pc98speedtab );
4163	    if ( effect_sp <= 0 )
4164		return effect_sp;
4165	    if ( effect_sp == speed )
4166		mod /= 16;
4167	    if ( mod % effect_sp )
4168		return(-1);
4169	    count = mod / effect_sp;
4170	    if ( count > 65535 )
4171		return(-1);
4172	    if ( effect_sp != speed )
4173		count |= 0x10000;
4174	    break;
4175	case COM_IF_PC9861K_1:
4176	case COM_IF_PC9861K_2:
4177	    count = 1;
4178	    break;
4179	case COM_IF_IND_SS_1:
4180	case COM_IF_IND_SS_2:
4181	case COM_IF_PIO9032B_1:
4182	case COM_IF_PIO9032B_2:
4183	    count = ttspeedtab( speed, if_8251_type[if_type].speedtab );
4184	    break;
4185	case COM_IF_B98_01_1:
4186	case COM_IF_B98_01_2:
4187	    count = ttspeedtab( speed, if_8251_type[if_type].speedtab );
4188#ifdef B98_01_OLD
4189	    if (count == 0 || count == 1) {
4190		count += 4;
4191		count |= 0x20000;  /* x1 mode for 76800 and 153600 */
4192	    }
4193#endif
4194	    break;
4195	}
4196
4197	if (count < 0)
4198		return count;
4199
4200	*divisor = (u_int) count;
4201	return 0;
4202}
4203
4204static void
4205pc98_set_baud_rate( struct com_s *com, u_int count )
4206{
4207	int	if_type, io, s;
4208
4209	if_type = com->pc98_if_type & 0x0f;
4210	io = rman_get_start(com->ioportres) & 0xff00;
4211
4212	switch (com->pc98_if_type) {
4213	case COM_IF_INTERNAL:
4214	    if (PC98SIO_baud_rate_port(if_type) != -1) {
4215		if (count & COM1_EXT_CLOCK) {
4216		    outb((Port_t)PC98SIO_baud_rate_port(if_type), count & 0xff);
4217		    break;
4218		} else {
4219		    outb((Port_t)PC98SIO_baud_rate_port(if_type), 0x09);
4220		}
4221	    }
4222
4223	    if (count == 0)
4224		return;
4225
4226	    /* set i8253 */
4227	    s = splclock();
4228	    if (count != 3)
4229		outb( 0x77, 0xb6 );
4230	    else
4231		outb( 0x77, 0xb4 );
4232	    outb( 0x5f, 0);
4233	    outb( 0x75, count & 0xff );
4234	    outb( 0x5f, 0);
4235	    outb( 0x75, (count >> 8) & 0xff );
4236	    splx(s);
4237	    break;
4238	case COM_IF_IND_SS_1:
4239	case COM_IF_IND_SS_2:
4240	    outb(io | PC98SIO_intr_ctrl_port(if_type), 0);
4241	    outb(io | PC98SIO_baud_rate_port(if_type), 0);
4242	    outb(io | PC98SIO_baud_rate_port(if_type), 0xc0);
4243	    outb(io | PC98SIO_baud_rate_port(if_type), (count >> 8) | 0x80);
4244	    outb(io | PC98SIO_baud_rate_port(if_type), count & 0xff);
4245	    break;
4246	case COM_IF_PIO9032B_1:
4247	case COM_IF_PIO9032B_2:
4248	    outb(io | PC98SIO_baud_rate_port(if_type), count);
4249	    break;
4250	case COM_IF_B98_01_1:
4251	case COM_IF_B98_01_2:
4252	    outb(io | PC98SIO_baud_rate_port(if_type), count & 0x0f);
4253#ifdef B98_01_OLD
4254	    /*
4255	     * Some old B98_01 board should be controlled
4256	     * in different way, but this hasn't been tested yet.
4257	     */
4258	    outb(io | PC98SIO_func_port(if_type),
4259		 (count & 0x20000) ? 0xf0 : 0xf2);
4260#endif
4261	    break;
4262	}
4263}
4264static int
4265pc98_check_if_type(device_t dev, struct siodev *iod)
4266{
4267	int	irr, io, if_type, tmp;
4268	static  short	irq_tab[2][8] = {
4269		{  3,  5,  6,  9, 10, 12, 13, -1},
4270		{  3, 10, 12, 13,  5,  6,  9, -1}
4271	};
4272
4273	if_type = iod->if_type & 0x0f;
4274	iod->irq = 0;
4275	io = isa_get_port(dev) & 0xff00;
4276
4277	if (IS_8251(iod->if_type)) {
4278	    if (PC98SIO_func_port(if_type) != -1) {
4279		outb(io | PC98SIO_func_port(if_type), 0xf2);
4280		tmp = ttspeedtab(9600, if_8251_type[if_type].speedtab);
4281		if (tmp != -1 && PC98SIO_baud_rate_port(if_type) != -1)
4282		    outb(io | PC98SIO_baud_rate_port(if_type), tmp);
4283	    }
4284
4285	    iod->cmd  = io | PC98SIO_cmd_port(if_type);
4286	    iod->sts  = io | PC98SIO_sts_port(if_type);
4287	    iod->mod  = io | PC98SIO_in_modem_port(if_type);
4288	    iod->ctrl = io | PC98SIO_intr_ctrl_port(if_type);
4289
4290	    if (iod->if_type == COM_IF_INTERNAL) {
4291		iod->irq = 4;
4292
4293		if (pc98_check_8251vfast()) {
4294			PC98SIO_baud_rate_port(if_type) = I8251F_div;
4295			if_8251_type[if_type].speedtab = pc98fast_speedtab;
4296		}
4297	    } else {
4298		tmp = inb( iod->mod ) & if_8251_type[if_type].irr_mask;
4299		if ((isa_get_port(dev) & 0xff) == IO_COM2)
4300		    iod->irq = irq_tab[0][tmp];
4301		else
4302		    iod->irq = irq_tab[1][tmp];
4303	    }
4304	} else {
4305	    irr = if_16550a_type[if_type].irr_read;
4306#ifdef COM_MULTIPORT
4307	    if (!COM_ISMULTIPORT(device_get_flags(dev)) ||
4308		    device_get_unit(dev) == COM_MPMASTER(device_get_flags(dev)))
4309#endif
4310	    if (irr != -1) {
4311		tmp = inb(io | irr);
4312		if (isa_get_port(dev) & 0x01)	/* XXX depend on RSB-384 */
4313		    iod->irq = irq_tab[1][tmp >> 3];
4314		else
4315		    iod->irq = irq_tab[0][tmp & 0x07];
4316	    }
4317	    iod->cmd  = 0;
4318	    iod->sts  = 0;
4319	    iod->mod  = 0;
4320	    iod->ctrl = 0;
4321	}
4322	if ( iod->irq == -1 ) return -1;
4323
4324	return 0;
4325}
4326static void
4327pc98_set_ioport(struct com_s *com)
4328{
4329	int	if_type = com->pc98_if_type & 0x0f;
4330	Port_t	io = rman_get_start(com->ioportres) & 0xff00;
4331
4332	pc98_check_sysclock();
4333	com->data_port		= io | PC98SIO_data_port(if_type);
4334	com->cmd_port		= io | PC98SIO_cmd_port(if_type);
4335	com->sts_port		= io | PC98SIO_sts_port(if_type);
4336	com->in_modem_port	= io | PC98SIO_in_modem_port(if_type);
4337	com->intr_ctrl_port	= io | PC98SIO_intr_ctrl_port(if_type);
4338}
4339static int
4340pc98_check_8251vfast(void)
4341{
4342    int	i;
4343
4344    outb(I8251F_div, 0x8c);
4345    DELAY(10);
4346    for (i = 0; i < 100; i++) {
4347	if ((inb(I8251F_div) & 0x80) != 0) {
4348	    i = 0;
4349	    break;
4350	}
4351	DELAY(1);
4352    }
4353    outb(I8251F_div, 0);
4354    DELAY(10);
4355    for (; i < 100; i++) {
4356	if ((inb(I8251F_div) & 0x80) == 0)
4357	    return 1;
4358	DELAY(1);
4359    }
4360
4361    return 0;
4362}
4363static int
4364pc98_check_8251fifo(void)
4365{
4366    u_char	tmp1, tmp2;
4367
4368    tmp1 = inb(I8251F_iir);
4369    DELAY(10);
4370    tmp2 = inb(I8251F_iir);
4371    if (((tmp1 ^ tmp2) & 0x40) != 0 && ((tmp1 | tmp2) & 0x20) == 0)
4372	return 1;
4373
4374    return 0;
4375}
4376#endif /* PC98 defined */
4377