1996-06-18 11:47:02 +04:00
|
|
|
/* $NetBSD: io.c,v 1.19 1996/06/18 07:47:04 mycroft Exp $ */
|
1994-10-27 07:14:23 +03:00
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
/*
|
|
|
|
* Ported to boot 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
|
|
|
|
*
|
|
|
|
* Mach Operating System
|
|
|
|
* Copyright (c) 1992, 1991 Carnegie Mellon University
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify and distribute this software and its
|
|
|
|
* documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
|
|
|
|
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie Mellon
|
|
|
|
* the rights to redistribute these changes.
|
|
|
|
*/
|
|
|
|
|
1993-12-23 10:12:00 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <machine/pio.h>
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1995-12-23 20:21:23 +03:00
|
|
|
void gateA20 __P((int on));
|
|
|
|
/*void printf __P((const char *format, int data));*/ /* not quite right XXX */
|
|
|
|
void putchar __P((int c));
|
1996-06-18 11:47:02 +04:00
|
|
|
void gets __P((char *buf));
|
1995-12-23 20:21:23 +03:00
|
|
|
int strcmp __P((const char *s1, const char *s2));
|
|
|
|
void bcopy __P((char *from, char *to, int len));
|
|
|
|
int awaitkey __P((int seconds));
|
|
|
|
void twiddle __P((void));
|
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
#define K_RDWR 0x60 /* keyboard data & cmds (read/write) */
|
|
|
|
#define K_STATUS 0x64 /* keyboard status */
|
|
|
|
#define K_CMD 0x64 /* keybd ctlr command (write-only) */
|
|
|
|
|
|
|
|
#define K_OBUF_FUL 0x01 /* output buffer full */
|
|
|
|
#define K_IBUF_FUL 0x02 /* input buffer full */
|
|
|
|
|
|
|
|
#define KC_CMD_WIN 0xd0 /* read output port */
|
|
|
|
#define KC_CMD_WOUT 0xd1 /* write output port */
|
1993-08-28 05:18:43 +04:00
|
|
|
#define KB_A20 0xdf /* enable A20,
|
1993-03-21 21:04:42 +03:00
|
|
|
enable output buffer full interrupt
|
|
|
|
enable data line
|
1993-08-28 05:18:43 +04:00
|
|
|
enable clock line */
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Gate A20 for high memory
|
|
|
|
*/
|
1995-12-23 20:21:23 +03:00
|
|
|
void
|
1995-03-12 03:10:53 +03:00
|
|
|
gateA20(on)
|
|
|
|
int on;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
|
|
|
#ifdef IBM_L40
|
|
|
|
outb(0x92, 0x2);
|
|
|
|
#else IBM_L40
|
|
|
|
while (inb(K_STATUS) & K_IBUF_FUL);
|
1995-03-12 03:10:53 +03:00
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
while (inb(K_STATUS) & K_OBUF_FUL)
|
|
|
|
(void)inb(K_RDWR);
|
|
|
|
|
|
|
|
outb(K_CMD, KC_CMD_WOUT);
|
|
|
|
while (inb(K_STATUS) & K_IBUF_FUL);
|
1995-03-12 03:10:53 +03:00
|
|
|
|
|
|
|
if (on)
|
|
|
|
outb(K_RDWR, 0xdf);
|
|
|
|
else
|
|
|
|
outb(K_RDWR, 0xcd);
|
1993-03-21 21:04:42 +03:00
|
|
|
while (inb(K_STATUS) & K_IBUF_FUL);
|
1995-03-12 03:10:53 +03:00
|
|
|
|
|
|
|
while (inb(K_STATUS) & K_OBUF_FUL)
|
|
|
|
(void)inb(K_RDWR);
|
1993-03-21 21:04:42 +03:00
|
|
|
#endif IBM_L40
|
|
|
|
}
|
|
|
|
|
|
|
|
/* printf - only handles %d as decimal, %c as char, %s as string */
|
1995-12-23 20:21:23 +03:00
|
|
|
void
|
1995-01-16 05:19:09 +03:00
|
|
|
printf(format, data)
|
1995-12-23 20:21:23 +03:00
|
|
|
const char *format;
|
1994-01-11 17:24:11 +03:00
|
|
|
int data;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
|
|
|
int *dataptr = &data;
|
|
|
|
char c;
|
1993-06-18 06:28:58 +04:00
|
|
|
|
1994-01-11 17:24:11 +03:00
|
|
|
while (c = *format++) {
|
|
|
|
if (c != '%') {
|
1993-03-21 21:04:42 +03:00
|
|
|
putchar(c);
|
1994-01-11 17:24:11 +03:00
|
|
|
continue;
|
|
|
|
}
|
1994-05-01 10:46:27 +04:00
|
|
|
c = *format++;
|
|
|
|
if (c == 'd') {
|
1995-01-18 05:54:23 +03:00
|
|
|
int num = *dataptr++, dig;
|
1994-01-11 17:24:11 +03:00
|
|
|
char buf[10], *ptr = buf;
|
|
|
|
if (num < 0) {
|
|
|
|
num = -num;
|
|
|
|
putchar('-');
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1995-01-18 05:54:23 +03:00
|
|
|
do {
|
|
|
|
dig = num % 10;
|
|
|
|
*ptr++ = '0' + dig;
|
|
|
|
} while (num /= 10);
|
1994-01-11 17:24:11 +03:00
|
|
|
do
|
|
|
|
putchar(*--ptr);
|
|
|
|
while (ptr != buf);
|
1994-05-01 10:46:27 +04:00
|
|
|
} else if (c == 'x') {
|
1995-01-10 01:13:10 +03:00
|
|
|
unsigned int num = (unsigned int)*dataptr++, dig;
|
1994-01-11 17:24:11 +03:00
|
|
|
char buf[8], *ptr = buf;
|
1995-01-18 05:54:23 +03:00
|
|
|
do {
|
|
|
|
dig = num & 0xf;
|
|
|
|
*ptr++ = dig > 9 ?
|
|
|
|
'a' + dig - 10 :
|
|
|
|
'0' + dig;
|
|
|
|
} while (num >>= 4);
|
1994-01-11 17:24:11 +03:00
|
|
|
do
|
|
|
|
putchar(*--ptr);
|
|
|
|
while (ptr != buf);
|
1994-05-01 10:46:27 +04:00
|
|
|
} else if (c == 'c') {
|
1995-01-18 05:54:23 +03:00
|
|
|
putchar((char)*dataptr++);
|
1994-05-01 10:46:27 +04:00
|
|
|
} else if (c == 's') {
|
1994-01-11 17:24:11 +03:00
|
|
|
char *ptr = (char *)*dataptr++;
|
|
|
|
while (c = *ptr++)
|
|
|
|
putchar(c);
|
|
|
|
}
|
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1995-12-23 20:21:23 +03:00
|
|
|
void
|
1993-03-21 21:04:42 +03:00
|
|
|
putchar(c)
|
1995-01-18 05:54:23 +03:00
|
|
|
int c;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
|
|
|
if (c == '\n')
|
|
|
|
putc('\r');
|
|
|
|
putc(c);
|
|
|
|
}
|
|
|
|
|
1996-06-18 11:47:02 +04:00
|
|
|
void
|
1993-03-21 21:04:42 +03:00
|
|
|
gets(buf)
|
1994-01-11 17:24:11 +03:00
|
|
|
char *buf;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1994-01-11 17:24:11 +03:00
|
|
|
char *ptr = buf;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1995-12-23 20:21:23 +03:00
|
|
|
for (;;) {
|
|
|
|
register int c = getc();
|
|
|
|
if (c == '\n' || c == '\r') {
|
|
|
|
putchar('\n');
|
|
|
|
*ptr = '\0';
|
1996-06-18 11:47:02 +04:00
|
|
|
return;
|
1995-12-23 20:21:23 +03:00
|
|
|
} else if (c == '\b' || c == '\177') {
|
|
|
|
if (ptr > buf) {
|
|
|
|
putchar('\b');
|
|
|
|
putchar(' ');
|
|
|
|
putchar('\b');
|
|
|
|
ptr--;
|
1994-05-01 10:46:27 +04:00
|
|
|
}
|
1995-12-23 20:21:23 +03:00
|
|
|
} else {
|
|
|
|
putchar(c);
|
|
|
|
*ptr++ = c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* shouldn't ever be reached; we have to return in the loop. */
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1995-12-23 20:21:23 +03:00
|
|
|
int
|
1993-03-21 21:04:42 +03:00
|
|
|
strcmp(s1, s2)
|
1995-12-23 20:21:23 +03:00
|
|
|
const char *s1, *s2;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
|
|
|
while (*s1 == *s2) {
|
|
|
|
if (!*s1++)
|
|
|
|
return 0;
|
|
|
|
s2++;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1995-12-23 20:21:23 +03:00
|
|
|
void
|
1993-03-21 21:04:42 +03:00
|
|
|
bcopy(from, to, len)
|
1994-01-11 17:24:11 +03:00
|
|
|
char *from, *to;
|
|
|
|
int len;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1995-01-10 01:13:10 +03:00
|
|
|
if (from > to)
|
|
|
|
while (--len >= 0)
|
|
|
|
*to++ = *from++;
|
|
|
|
else {
|
|
|
|
to += len;
|
|
|
|
from += len;
|
|
|
|
while (--len >= 0)
|
|
|
|
*--to = *--from;
|
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-06-18 06:28:58 +04:00
|
|
|
|
1995-12-23 20:21:23 +03:00
|
|
|
/* Number of milliseconds to sleep during each microsleep */
|
|
|
|
#define NAPTIME 50
|
|
|
|
|
|
|
|
/*
|
|
|
|
* awaitkey takes a number of seconds to wait for a key to be
|
|
|
|
* struck. If a key is struck during the period, it returns true, else
|
|
|
|
* it returns false. It returns (nearly) as soon as the key is
|
|
|
|
* hit. Note that it does something only slightly smarter than busy waiting.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
awaitkey(seconds)
|
|
|
|
int seconds;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We sleep for brief periods (typically 50 milliseconds, set
|
|
|
|
* by NAPTIME), polling the input buffer at the end of
|
|
|
|
* each period.
|
|
|
|
*/
|
|
|
|
for (i = ((seconds*1000)/NAPTIME); i > 0; i--) {
|
|
|
|
/* multiply by 1000 to get microseconds. */
|
|
|
|
usleep(NAPTIME*1000);
|
|
|
|
if (ischar())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If a character was hit, "i" will still be non-zero. */
|
|
|
|
return (i != 0);
|
|
|
|
}
|
|
|
|
|
1995-02-21 09:34:58 +03:00
|
|
|
void
|
1993-06-18 06:28:58 +04:00
|
|
|
twiddle()
|
|
|
|
{
|
1995-02-21 09:34:58 +03:00
|
|
|
static int pos;
|
1995-01-18 04:54:25 +03:00
|
|
|
|
1995-02-21 09:34:58 +03:00
|
|
|
putchar("|/-\\"[pos++ & 3]);
|
1995-01-18 04:54:25 +03:00
|
|
|
putchar('\b');
|
1993-06-18 06:28:58 +04:00
|
|
|
}
|