Console I/O functions for serial lines, accessing the hardware directly.
Allows higher baudrates than 9.6 and software flow control. From Martin Husemann.
This commit is contained in:
parent
27d7edd928
commit
fb3350eb72
|
@ -0,0 +1,246 @@
|
|||
/*-
|
||||
* Copyright (c) 1993, 1994, 1995, 1996, 1997
|
||||
* Charles M. Hannum. All rights reserved.
|
||||
*
|
||||
* Taken from sys/dev/isa/com.c and integrated into standalone boot
|
||||
* programs by Martin Husemann.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by Charles M. Hannum.
|
||||
* 4. The name of the author may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 1991 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)com.c 7.5 (Berkeley) 5/16/91
|
||||
*/
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <lib/libsa/stand.h>
|
||||
#include <machine/pio.h>
|
||||
#include <dev/isa/comreg.h>
|
||||
#include "comio_direct.h"
|
||||
|
||||
static int comspeed __P((long speed));
|
||||
|
||||
/* preread buffer for xon/xoff handling */
|
||||
#define XON 0x11
|
||||
#define XOFF 0x13
|
||||
#define SERBUFSIZE 16
|
||||
static u_char serbuf[SERBUFSIZE];
|
||||
static int serbuf_read = 0;
|
||||
static int serbuf_write = 0;
|
||||
static int stopped = 0;
|
||||
|
||||
#define ISSET(t,f) ((t) & (f))
|
||||
|
||||
/*
|
||||
* calculate divisor for a given speed
|
||||
*/
|
||||
static int
|
||||
comspeed(speed)
|
||||
long speed;
|
||||
{
|
||||
#define divrnd(n, q) (((n)*2/(q)+1)/2) /* divide and round off */
|
||||
|
||||
int x, err;
|
||||
|
||||
#if 0
|
||||
if (speed == 0)
|
||||
return (0);
|
||||
#endif
|
||||
if (speed <= 0)
|
||||
return (-1);
|
||||
x = divrnd((COM_FREQ / 16), speed);
|
||||
if (x <= 0)
|
||||
return (-1);
|
||||
err = divrnd((COM_FREQ / 16) * 1000, speed * x) - 1000;
|
||||
if (err < 0)
|
||||
err = -err;
|
||||
if (err > COM_TOLERANCE)
|
||||
return (-1);
|
||||
return (x);
|
||||
|
||||
#undef divrnd(n, q)
|
||||
}
|
||||
|
||||
/*
|
||||
* get a character
|
||||
*/
|
||||
int
|
||||
comgetc_d(combase)
|
||||
int combase;
|
||||
{
|
||||
u_char stat, c;
|
||||
|
||||
if (serbuf_read != serbuf_write) {
|
||||
c = serbuf[serbuf_read++];
|
||||
if (serbuf_read >= SERBUFSIZE)
|
||||
serbuf_read = 0;
|
||||
return c;
|
||||
}
|
||||
|
||||
for (;;) {
|
||||
while (!ISSET(stat = inb(combase + com_lsr), LSR_RXRDY))
|
||||
;
|
||||
c = inb(combase + com_data);
|
||||
inb(combase + com_iir);
|
||||
if (c != XOFF) {
|
||||
stopped = 0;
|
||||
break; /* got a real char, deliver it... */
|
||||
}
|
||||
stopped = 1;
|
||||
}
|
||||
return (c);
|
||||
}
|
||||
|
||||
/*
|
||||
* output a character, return nonzero on success
|
||||
*/
|
||||
int
|
||||
computc_d(c, combase)
|
||||
int c;
|
||||
int combase;
|
||||
{
|
||||
u_char stat;
|
||||
register int timo;
|
||||
|
||||
/* check for old XOFF */
|
||||
while (stopped)
|
||||
comgetc_d(combase); /* wait for XON */
|
||||
|
||||
/* check for new XOFF */
|
||||
if (comstatus_d(combase)) {
|
||||
int c = comgetc_d(combase); /* XOFF handled in comgetc_d */
|
||||
/* stuff char into preread buffer */
|
||||
serbuf[serbuf_write++] = c;
|
||||
if (serbuf_write >= SERBUFSIZE)
|
||||
serbuf_write = 0;
|
||||
}
|
||||
|
||||
/* wait for any pending transmission to finish */
|
||||
timo = 50000;
|
||||
while (!ISSET(stat = inb(combase + com_lsr), LSR_TXRDY)
|
||||
&& --timo)
|
||||
;
|
||||
if (timo == 0) return 0;
|
||||
outb(combase + com_data, c);
|
||||
/* wait for this transmission to complete */
|
||||
timo = 1500000;
|
||||
while (!ISSET(stat = inb(combase + com_lsr), LSR_TXRDY)
|
||||
&& --timo)
|
||||
;
|
||||
if (timo == 0) return 0;
|
||||
/* clear any interrupts generated by this transmission */
|
||||
inb(combase + com_iir);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* Initialize UART to known state.
|
||||
*/
|
||||
void
|
||||
cominit_d(combase)
|
||||
int combase;
|
||||
{
|
||||
int rate;
|
||||
|
||||
serbuf_read = 0;
|
||||
serbuf_write = 0;
|
||||
|
||||
outb(combase + com_cfcr, LCR_DLAB);
|
||||
#ifdef CONSPEED
|
||||
rate = comspeed(CONSPEED);
|
||||
#else
|
||||
rate = comspeed(9600);
|
||||
#endif
|
||||
outb(combase + com_dlbl, rate);
|
||||
outb(combase + com_dlbh, rate >> 8);
|
||||
outb(combase + com_cfcr, LCR_8BITS);
|
||||
outb(combase + com_mcr, 0);
|
||||
outb(combase + com_fifo,
|
||||
FIFO_ENABLE | FIFO_RCV_RST | FIFO_XMT_RST | FIFO_TRIGGER_1);
|
||||
outb(combase + com_ier, 0);
|
||||
}
|
||||
|
||||
/*
|
||||
* return nonzero if input char available, do XON/XOFF handling
|
||||
*/
|
||||
int
|
||||
comstatus_d(combase)
|
||||
int combase;
|
||||
{
|
||||
/* check if any preread input is already there */
|
||||
if (serbuf_read != serbuf_write) return 1;
|
||||
|
||||
/* check for new stuff on the port */
|
||||
if (ISSET(inb(combase + com_lsr), LSR_RXRDY)) {
|
||||
/* this could be XOFF, which we would swallow, so we can't
|
||||
claim there is input available... */
|
||||
int c = inb(combase + com_data);
|
||||
inb(combase + com_iir);
|
||||
if (c == XOFF) {
|
||||
stopped = 1;
|
||||
} else {
|
||||
/* stuff char into preread buffer */
|
||||
serbuf[serbuf_write++] = c;
|
||||
if (serbuf_write >= SERBUFSIZE)
|
||||
serbuf_write = 0;
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
return 0; /* nothing out there... */
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
void cominit_d __P((int));
|
||||
int computc_d __P((int, int));
|
||||
int comgetc_d __P((int));
|
||||
int comstatus_d __P((int));
|
Loading…
Reference in New Issue