Home | History | Annotate | Line # | Download | only in lib
comio_direct.c revision 1.3.14.1
      1  1.3.14.1    bouyer /*	$NetBSD: comio_direct.c,v 1.3.14.1 2000/11/20 20:09:40 bouyer Exp $	*/
      2       1.3     perry 
      3       1.1  drochner /*-
      4       1.1  drochner  * Copyright (c) 1993, 1994, 1995, 1996, 1997
      5       1.1  drochner  *	Charles M. Hannum.  All rights reserved.
      6       1.1  drochner  *
      7       1.1  drochner  * Taken from sys/dev/isa/com.c and integrated into standalone boot
      8       1.1  drochner  * programs by Martin Husemann.
      9       1.1  drochner  *
     10       1.1  drochner  * Redistribution and use in source and binary forms, with or without
     11       1.1  drochner  * modification, are permitted provided that the following conditions
     12       1.1  drochner  * are met:
     13       1.1  drochner  * 1. Redistributions of source code must retain the above copyright
     14       1.1  drochner  *    notice, this list of conditions and the following disclaimer.
     15       1.1  drochner  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1  drochner  *    notice, this list of conditions and the following disclaimer in the
     17       1.1  drochner  *    documentation and/or other materials provided with the distribution.
     18       1.1  drochner  * 3. All advertising materials mentioning features or use of this software
     19       1.1  drochner  *    must display the following acknowledgement:
     20       1.1  drochner  *	This product includes software developed by Charles M. Hannum.
     21       1.1  drochner  * 4. The name of the author may not be used to endorse or promote products
     22       1.1  drochner  *    derived from this software without specific prior written permission.
     23       1.1  drochner  *
     24       1.1  drochner  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     25       1.1  drochner  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     26       1.1  drochner  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     27       1.1  drochner  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     28       1.1  drochner  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     29       1.1  drochner  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     30       1.1  drochner  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     31       1.1  drochner  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     32       1.1  drochner  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     33       1.1  drochner  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     34       1.1  drochner  */
     35       1.1  drochner 
     36       1.1  drochner /*
     37       1.1  drochner  * Copyright (c) 1991 The Regents of the University of California.
     38       1.1  drochner  * All rights reserved.
     39       1.1  drochner  *
     40       1.1  drochner  * Redistribution and use in source and binary forms, with or without
     41       1.1  drochner  * modification, are permitted provided that the following conditions
     42       1.1  drochner  * are met:
     43       1.1  drochner  * 1. Redistributions of source code must retain the above copyright
     44       1.1  drochner  *    notice, this list of conditions and the following disclaimer.
     45       1.1  drochner  * 2. Redistributions in binary form must reproduce the above copyright
     46       1.1  drochner  *    notice, this list of conditions and the following disclaimer in the
     47       1.1  drochner  *    documentation and/or other materials provided with the distribution.
     48       1.1  drochner  * 3. All advertising materials mentioning features or use of this software
     49       1.1  drochner  *    must display the following acknowledgement:
     50       1.1  drochner  *	This product includes software developed by the University of
     51       1.1  drochner  *	California, Berkeley and its contributors.
     52       1.1  drochner  * 4. Neither the name of the University nor the names of its contributors
     53       1.1  drochner  *    may be used to endorse or promote products derived from this software
     54       1.1  drochner  *    without specific prior written permission.
     55       1.1  drochner  *
     56       1.1  drochner  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     57       1.1  drochner  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     58       1.1  drochner  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     59       1.1  drochner  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     60       1.1  drochner  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     61       1.1  drochner  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     62       1.1  drochner  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     63       1.1  drochner  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     64       1.1  drochner  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     65       1.1  drochner  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     66       1.1  drochner  * SUCH DAMAGE.
     67       1.1  drochner  *
     68       1.1  drochner  *	@(#)com.c	7.5 (Berkeley) 5/16/91
     69       1.1  drochner  */
     70       1.1  drochner 
     71       1.1  drochner #include <sys/types.h>
     72       1.1  drochner #include <lib/libsa/stand.h>
     73       1.1  drochner #include <machine/pio.h>
     74       1.2   mycroft #include <dev/ic/comreg.h>
     75       1.1  drochner #include "comio_direct.h"
     76       1.1  drochner 
     77       1.1  drochner static int comspeed __P((long speed));
     78       1.1  drochner 
     79       1.1  drochner /* preread buffer for xon/xoff handling */
     80       1.1  drochner #define XON	0x11
     81       1.1  drochner #define	XOFF	0x13
     82       1.1  drochner #define	SERBUFSIZE	16
     83       1.1  drochner static u_char serbuf[SERBUFSIZE];
     84       1.1  drochner static int serbuf_read = 0;
     85       1.1  drochner static int serbuf_write = 0;
     86       1.1  drochner static int stopped = 0;
     87       1.1  drochner 
     88       1.1  drochner #define	ISSET(t,f)	((t) & (f))
     89       1.1  drochner 
     90       1.1  drochner /*
     91       1.1  drochner  * calculate divisor for a given speed
     92       1.1  drochner  */
     93       1.1  drochner static int
     94       1.1  drochner comspeed(speed)
     95       1.1  drochner 	long speed;
     96       1.1  drochner {
     97       1.1  drochner #define	divrnd(n, q)	(((n)*2/(q)+1)/2)	/* divide and round off */
     98       1.1  drochner 
     99       1.1  drochner 	int x, err;
    100       1.1  drochner 
    101       1.1  drochner #if 0
    102       1.1  drochner 	if (speed == 0)
    103       1.1  drochner 		return (0);
    104       1.1  drochner #endif
    105       1.1  drochner 	if (speed <= 0)
    106       1.1  drochner 		return (-1);
    107       1.1  drochner 	x = divrnd((COM_FREQ / 16), speed);
    108       1.1  drochner 	if (x <= 0)
    109       1.1  drochner 		return (-1);
    110       1.1  drochner 	err = divrnd((COM_FREQ / 16) * 1000, speed * x) - 1000;
    111       1.1  drochner 	if (err < 0)
    112       1.1  drochner 		err = -err;
    113       1.1  drochner 	if (err > COM_TOLERANCE)
    114       1.1  drochner 		return (-1);
    115       1.1  drochner 	return (x);
    116       1.1  drochner 
    117       1.1  drochner #undef	divrnd(n, q)
    118       1.1  drochner }
    119       1.1  drochner 
    120       1.1  drochner /*
    121       1.1  drochner  * get a character
    122       1.1  drochner  */
    123       1.1  drochner int
    124       1.1  drochner comgetc_d(combase)
    125       1.1  drochner 	int combase;
    126       1.1  drochner {
    127       1.1  drochner 	u_char stat, c;
    128       1.1  drochner 
    129       1.1  drochner 	if (serbuf_read != serbuf_write) {
    130       1.1  drochner 		c = serbuf[serbuf_read++];
    131       1.1  drochner 		if (serbuf_read >= SERBUFSIZE)
    132       1.1  drochner 			serbuf_read = 0;
    133       1.1  drochner 		return c;
    134       1.1  drochner 	}
    135       1.1  drochner 
    136       1.1  drochner 	for (;;) {
    137       1.1  drochner 		while (!ISSET(stat = inb(combase + com_lsr), LSR_RXRDY))
    138       1.1  drochner 			;
    139       1.1  drochner 		c = inb(combase + com_data);
    140       1.1  drochner 		inb(combase + com_iir);
    141       1.1  drochner 		if (c != XOFF) {
    142       1.1  drochner 			stopped = 0;
    143       1.1  drochner 			break;	/* got a real char, deliver it... */
    144       1.1  drochner 		}
    145       1.1  drochner 		stopped = 1;
    146       1.1  drochner 	}
    147       1.1  drochner 	return (c);
    148       1.1  drochner }
    149       1.1  drochner 
    150       1.1  drochner /*
    151       1.1  drochner  * output a character, return nonzero on success
    152       1.1  drochner  */
    153       1.1  drochner int
    154       1.1  drochner computc_d(c, combase)
    155       1.1  drochner 	int c;
    156       1.1  drochner 	int combase;
    157       1.1  drochner {
    158       1.1  drochner 	u_char stat;
    159       1.1  drochner 	register int timo;
    160       1.1  drochner 
    161       1.1  drochner 	/* check for old XOFF */
    162       1.1  drochner 	while (stopped)
    163       1.1  drochner 		comgetc_d(combase);	/* wait for XON */
    164       1.1  drochner 
    165       1.1  drochner 	/* check for new XOFF */
    166       1.1  drochner 	if (comstatus_d(combase)) {
    167       1.1  drochner 		int c = comgetc_d(combase);	/* XOFF handled in comgetc_d */
    168       1.1  drochner 		/* stuff char into preread buffer */
    169       1.1  drochner 		serbuf[serbuf_write++] = c;
    170       1.1  drochner 		if (serbuf_write >= SERBUFSIZE)
    171       1.1  drochner 			serbuf_write = 0;
    172       1.1  drochner 	}
    173       1.1  drochner 
    174       1.1  drochner 	/* wait for any pending transmission to finish */
    175       1.1  drochner 	timo = 50000;
    176       1.1  drochner 	while (!ISSET(stat = inb(combase + com_lsr), LSR_TXRDY)
    177       1.1  drochner 	    && --timo)
    178       1.1  drochner 		;
    179       1.1  drochner 	if (timo == 0) return 0;
    180       1.1  drochner 	outb(combase + com_data, c);
    181       1.1  drochner 	/* wait for this transmission to complete */
    182       1.1  drochner 	timo = 1500000;
    183       1.1  drochner 	while (!ISSET(stat = inb(combase + com_lsr), LSR_TXRDY)
    184       1.1  drochner 	    && --timo)
    185       1.1  drochner 		;
    186       1.1  drochner 	if (timo == 0) return 0;
    187       1.1  drochner 	/* clear any interrupts generated by this transmission */
    188       1.1  drochner 	inb(combase + com_iir);
    189       1.1  drochner 
    190       1.1  drochner 	return 1;
    191       1.1  drochner }
    192       1.1  drochner 
    193       1.1  drochner /*
    194       1.1  drochner  * Initialize UART to known state.
    195       1.1  drochner  */
    196       1.1  drochner void
    197       1.1  drochner cominit_d(combase)
    198       1.1  drochner 	int combase;
    199       1.1  drochner {
    200       1.1  drochner 	int rate;
    201       1.1  drochner 
    202       1.1  drochner 	serbuf_read = 0;
    203       1.1  drochner 	serbuf_write = 0;
    204       1.1  drochner 
    205       1.1  drochner 	outb(combase + com_cfcr, LCR_DLAB);
    206       1.1  drochner #ifdef CONSPEED
    207       1.1  drochner 	rate = comspeed(CONSPEED);
    208       1.1  drochner #else
    209       1.1  drochner 	rate = comspeed(9600);
    210       1.1  drochner #endif
    211       1.1  drochner 	outb(combase + com_dlbl, rate);
    212       1.1  drochner 	outb(combase + com_dlbh, rate >> 8);
    213       1.1  drochner 	outb(combase + com_cfcr, LCR_8BITS);
    214  1.3.14.1    bouyer 	outb(combase + com_mcr, MCR_DTR | MCR_RTS);
    215       1.1  drochner 	outb(combase + com_fifo,
    216       1.1  drochner 	    FIFO_ENABLE | FIFO_RCV_RST | FIFO_XMT_RST | FIFO_TRIGGER_1);
    217       1.1  drochner 	outb(combase + com_ier, 0);
    218       1.1  drochner }
    219       1.1  drochner 
    220       1.1  drochner /*
    221       1.1  drochner  * return nonzero if input char available, do XON/XOFF handling
    222       1.1  drochner  */
    223       1.1  drochner int
    224       1.1  drochner comstatus_d(combase)
    225       1.1  drochner 	int combase;
    226       1.1  drochner {
    227       1.1  drochner 	/* check if any preread input is already there */
    228       1.1  drochner 	if (serbuf_read != serbuf_write) return 1;
    229       1.1  drochner 
    230       1.1  drochner 	/* check for new stuff on the port */
    231       1.1  drochner 	if (ISSET(inb(combase + com_lsr), LSR_RXRDY)) {
    232       1.1  drochner 		/* this could be XOFF, which we would swallow, so we can't
    233       1.1  drochner 		   claim there is input available... */
    234       1.1  drochner 		int c = inb(combase + com_data);
    235       1.1  drochner 		inb(combase + com_iir);
    236       1.1  drochner 		if (c == XOFF) {
    237       1.1  drochner 			stopped = 1;
    238       1.1  drochner 		} else {
    239       1.1  drochner 			/* stuff char into preread buffer */
    240       1.1  drochner 			serbuf[serbuf_write++] = c;
    241       1.1  drochner 			if (serbuf_write >= SERBUFSIZE)
    242       1.1  drochner 				serbuf_write = 0;
    243       1.1  drochner 			return 1;
    244       1.1  drochner 		}
    245       1.1  drochner 	}
    246       1.1  drochner 
    247       1.1  drochner 	return 0;	/* nothing out there... */
    248       1.1  drochner }
    249