Home | History | Annotate | Line # | Download | only in lib
pcio.c revision 1.19.6.1
      1  1.19.6.1      yamt /*	$NetBSD: pcio.c,v 1.19.6.1 2006/06/21 14:52:44 yamt Exp $	 */
      2       1.1     perry 
      3       1.1     perry /*
      4       1.5  drochner  * Copyright (c) 1996, 1997
      5       1.1     perry  *	Matthias Drochner.  All rights reserved.
      6       1.1     perry  *
      7       1.1     perry  * Redistribution and use in source and binary forms, with or without
      8       1.1     perry  * modification, are permitted provided that the following conditions
      9       1.1     perry  * are met:
     10       1.1     perry  * 1. Redistributions of source code must retain the above copyright
     11       1.1     perry  *    notice, this list of conditions and the following disclaimer.
     12       1.1     perry  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1     perry  *    notice, this list of conditions and the following disclaimer in the
     14       1.1     perry  *    documentation and/or other materials provided with the distribution.
     15       1.1     perry  *
     16       1.1     perry  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17       1.1     perry  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18       1.1     perry  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19       1.1     perry  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20       1.1     perry  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     21       1.1     perry  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     22       1.1     perry  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     23       1.1     perry  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     24       1.1     perry  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     25       1.1     perry  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     26       1.1     perry  *
     27       1.1     perry  */
     28       1.1     perry 
     29       1.3   thorpej /*
     30       1.4  drochner  * console I/O
     31       1.4  drochner  * needs lowlevel routines from conio.S and comio.S
     32       1.3   thorpej  */
     33       1.1     perry 
     34       1.1     perry #include <lib/libsa/stand.h>
     35       1.5  drochner #include <lib/libkern/libkern.h>
     36      1.14       dsl #include <sys/bootblock.h>
     37       1.1     perry 
     38       1.1     perry #include "libi386.h"
     39       1.5  drochner #include "bootinfo.h"
     40       1.1     perry 
     41  1.19.6.1      yamt extern void conputc(int);
     42  1.19.6.1      yamt extern int congetc(void);
     43  1.19.6.1      yamt extern int conisshift(void);
     44  1.19.6.1      yamt extern int coniskey(void);
     45      1.15     lukem extern struct x86_boot_params boot_params;
     46       1.1     perry 
     47       1.5  drochner struct btinfo_console btinfo_console;
     48       1.5  drochner 
     49       1.1     perry #ifdef SUPPORT_SERIAL
     50       1.5  drochner static int iodev;
     51       1.5  drochner 
     52       1.5  drochner #ifdef DIRECT_SERIAL
     53       1.5  drochner #include "comio_direct.h"
     54       1.5  drochner 
     55  1.19.6.1      yamt #define cominit_x()	btinfo_console.speed = \
     56  1.19.6.1      yamt 			    cominit_d(btinfo_console.addr, btinfo_console.speed)
     57      1.14       dsl #define computc_x(ch)	computc_d(ch, btinfo_console.addr)
     58      1.14       dsl #define comgetc_x()	comgetc_d(btinfo_console.addr)
     59      1.14       dsl #define comstatus_x()	comstatus_d(btinfo_console.addr)
     60       1.5  drochner 
     61       1.5  drochner #else
     62      1.14       dsl #define cominit_x()	cominit(iodev - CONSDEV_COM0)
     63      1.14       dsl #define computc_x(ch)	computc(ch, iodev - CONSDEV_COM0)
     64      1.14       dsl #define comgetc_x()	comgetc(iodev - CONSDEV_COM0)
     65      1.14       dsl #define comstatus_x()	comstatus(iodev - CONSDEV_COM0)
     66       1.1     perry 
     67       1.5  drochner #endif /* DIRECT_SERIAL */
     68       1.5  drochner 
     69  1.19.6.1      yamt static int getcomaddr(int);
     70       1.5  drochner #endif /* SUPPORT_SERIAL */
     71       1.5  drochner 
     72       1.5  drochner #define POLL_FREQ 10
     73       1.1     perry 
     74       1.1     perry #ifdef SUPPORT_SERIAL
     75       1.5  drochner static int
     76  1.19.6.1      yamt getcomaddr(int idx)
     77       1.5  drochner {
     78       1.5  drochner 	short addr;
     79      1.18       dsl #ifdef CONSADDR
     80      1.18       dsl 	if (CONSADDR != 0)
     81      1.18       dsl 		return CONSADDR;
     82      1.18       dsl #endif
     83       1.5  drochner 	/* read in BIOS data area */
     84       1.8  sommerfe 	pvbcopy((void *)(0x400 + 2 * idx), &addr, 2);
     85  1.19.6.1      yamt 	return addr;
     86       1.5  drochner }
     87       1.1     perry #endif
     88       1.1     perry 
     89       1.5  drochner void
     90  1.19.6.1      yamt initio(int dev)
     91       1.1     perry {
     92       1.1     perry #ifdef SUPPORT_SERIAL
     93       1.5  drochner 	int i;
     94       1.5  drochner 
     95      1.14       dsl #if defined(DIRECT_SERIAL) && defined(CONSPEED)
     96      1.14       dsl 	btinfo_console.speed = CONSPEED;
     97      1.14       dsl #else
     98      1.14       dsl 	btinfo_console.speed = 9600;
     99      1.14       dsl #endif
    100      1.14       dsl 
    101       1.3   thorpej 	switch (dev) {
    102  1.19.6.1      yamt 	case CONSDEV_AUTO:
    103       1.5  drochner 		for(i = 0; i < 3; i++) {
    104       1.5  drochner 			iodev = CONSDEV_COM0 + i;
    105       1.5  drochner 			btinfo_console.addr = getcomaddr(i);
    106      1.12       dsl 			if(!btinfo_console.addr)
    107      1.12       dsl 				break;
    108       1.5  drochner 			conputc('0' + i); /* to tell user what happens */
    109      1.14       dsl 			cominit_x();
    110       1.5  drochner #ifdef DIRECT_SERIAL
    111       1.5  drochner 			/* check for:
    112       1.5  drochner 			 *  1. successful output
    113      1.12       dsl 			 *  2. optionally, keypress within 7s
    114       1.5  drochner 			 */
    115      1.14       dsl 			if (	computc_x(':') &&
    116      1.14       dsl 				computc_x('-') &&
    117      1.14       dsl 				computc_x('(')
    118       1.5  drochner #ifdef COMCONS_KEYPRESS
    119       1.7       rvb 			   && awaitkey(7, 0)
    120       1.5  drochner #endif
    121       1.5  drochner 			   )
    122       1.5  drochner 				goto ok;
    123      1.11   thorpej #else /* ! DIRECT_SERIAL */
    124       1.5  drochner 			/*
    125       1.5  drochner 			 * serial console must have hardware handshake!
    126       1.5  drochner 			 * check:
    127       1.5  drochner 			 *  1. character output without error
    128       1.5  drochner 			 *  2. status bits for modem ready set
    129       1.5  drochner 			 *     (status seems only useful after character output)
    130      1.12       dsl 			 *  3. optionally, keypress within 7s
    131       1.5  drochner 			 */
    132      1.14       dsl 			if (!(computc_x('@') & 0x80)
    133      1.14       dsl 			    && (comstatus_x() & 0x00b0)
    134       1.5  drochner #ifdef COMCONS_KEYPRESS
    135       1.7       rvb 			    && awaitkey(7, 0)
    136       1.5  drochner #endif
    137       1.5  drochner 			    )
    138       1.5  drochner 				goto ok;
    139      1.11   thorpej #endif /* DIRECT_SERIAL */
    140       1.3   thorpej 		}
    141       1.5  drochner 		iodev = CONSDEV_PC;
    142       1.5  drochner ok:
    143       1.3   thorpej 		break;
    144  1.19.6.1      yamt 	case CONSDEV_COM0:
    145  1.19.6.1      yamt 	case CONSDEV_COM1:
    146  1.19.6.1      yamt 	case CONSDEV_COM2:
    147  1.19.6.1      yamt 	case CONSDEV_COM3:
    148       1.5  drochner 		iodev = dev;
    149       1.5  drochner 		btinfo_console.addr = getcomaddr(iodev - CONSDEV_COM0);
    150      1.12       dsl 		if(!btinfo_console.addr)
    151      1.12       dsl 			goto nocom;
    152      1.14       dsl 		cominit_x();
    153       1.3   thorpej 		break;
    154  1.19.6.1      yamt 	case CONSDEV_COM0KBD:
    155  1.19.6.1      yamt 	case CONSDEV_COM1KBD:
    156  1.19.6.1      yamt 	case CONSDEV_COM2KBD:
    157  1.19.6.1      yamt 	case CONSDEV_COM3KBD:
    158      1.18       dsl 		iodev = dev - CONSDEV_COM0KBD + CONSDEV_COM0;
    159       1.7       rvb 		i = iodev - CONSDEV_COM0;
    160       1.7       rvb 		btinfo_console.addr = getcomaddr(i);
    161      1.12       dsl 		if(!btinfo_console.addr)
    162      1.12       dsl 			goto nocom;
    163       1.7       rvb 		conputc('0' + i); /* to tell user what happens */
    164      1.14       dsl 		cominit_x();
    165       1.7       rvb #ifdef DIRECT_SERIAL
    166       1.7       rvb 			/* check for:
    167       1.7       rvb 			 *  1. successful output
    168      1.12       dsl 			 *  2. optionally, keypress within 7s
    169       1.7       rvb 			 */
    170      1.14       dsl 			if (	computc_x(':') &&
    171      1.14       dsl 				computc_x('-') &&
    172      1.14       dsl 				computc_x('(')
    173       1.7       rvb #ifdef COMCONS_KEYPRESS
    174       1.7       rvb 			   && awaitkey(7, 0)
    175       1.7       rvb #endif
    176       1.7       rvb 			   )
    177       1.7       rvb 				break;
    178      1.11   thorpej #else /* ! DIRECT_SERIAL */
    179       1.7       rvb 			/*
    180       1.7       rvb 			 * serial console must have hardware handshake!
    181       1.7       rvb 			 * check:
    182       1.7       rvb 			 *  1. character output without error
    183       1.7       rvb 			 *  2. status bits for modem ready set
    184       1.7       rvb 			 *     (status seems only useful after character output)
    185      1.12       dsl 			 *  3. optionally, keypress within 7s
    186       1.7       rvb 			 */
    187      1.14       dsl 			if (!(computc_x('@') & 0x80)
    188      1.14       dsl 			    && (comstatus_x() & 0x00b0)
    189       1.7       rvb #ifdef COMCONS_KEYPRESS
    190       1.7       rvb 			    && awaitkey(7, 0)
    191       1.7       rvb #endif
    192       1.7       rvb 			    )
    193       1.7       rvb 				break;
    194      1.11   thorpej #endif /* DIRECT_SERIAL */
    195  1.19.6.1      yamt 	default:
    196       1.5  drochner nocom:
    197       1.5  drochner 		iodev = CONSDEV_PC;
    198       1.3   thorpej 		break;
    199       1.3   thorpej 	}
    200       1.7       rvb 	conputc('\015');
    201       1.7       rvb 	conputc('\n');
    202       1.5  drochner 	strncpy(btinfo_console.devname, iodev == CONSDEV_PC ? "pc" : "com", 16);
    203       1.5  drochner #else /* !SUPPORT_SERIAL */
    204      1.13       dsl 	btinfo_console.devname[0] = 'p';
    205      1.13       dsl 	btinfo_console.devname[1] = 'c';
    206      1.13       dsl 	btinfo_console.devname[2] = 0;
    207       1.5  drochner #endif /* SUPPORT_SERIAL */
    208       1.1     perry }
    209       1.1     perry 
    210  1.19.6.1      yamt static inline void internal_putchar(int);
    211       1.9  drochner 
    212       1.3   thorpej static inline void
    213  1.19.6.1      yamt internal_putchar(int c)
    214       1.1     perry {
    215       1.1     perry #ifdef SUPPORT_SERIAL
    216       1.3   thorpej 	switch (iodev) {
    217  1.19.6.1      yamt 	case CONSDEV_PC:
    218       1.1     perry #endif
    219       1.3   thorpej 		conputc(c);
    220       1.1     perry #ifdef SUPPORT_SERIAL
    221       1.3   thorpej 		break;
    222  1.19.6.1      yamt 	case CONSDEV_COM0:
    223  1.19.6.1      yamt 	case CONSDEV_COM1:
    224  1.19.6.1      yamt 	case CONSDEV_COM2:
    225  1.19.6.1      yamt 	case CONSDEV_COM3:
    226      1.14       dsl 		computc_x(c);
    227       1.3   thorpej 		break;
    228       1.3   thorpej 	}
    229       1.1     perry #endif
    230       1.1     perry }
    231       1.1     perry 
    232       1.3   thorpej void
    233  1.19.6.1      yamt putchar(int c)
    234       1.1     perry {
    235       1.3   thorpej 	if (c == '\n')
    236       1.3   thorpej 		internal_putchar('\r');
    237       1.3   thorpej 	internal_putchar(c);
    238       1.1     perry }
    239       1.1     perry 
    240       1.3   thorpej int
    241  1.19.6.1      yamt getchar(void)
    242       1.3   thorpej {
    243      1.16       dsl 	int c;
    244       1.1     perry #ifdef SUPPORT_SERIAL
    245       1.3   thorpej 	switch (iodev) {
    246  1.19.6.1      yamt 	default: /* to make gcc -Wall happy... */
    247  1.19.6.1      yamt 	case CONSDEV_PC:
    248       1.1     perry #endif
    249      1.16       dsl 		c = congetc();
    250      1.16       dsl #ifdef CONSOLE_KEYMAP
    251      1.16       dsl 		{
    252      1.16       dsl 			char *cp = strchr(CONSOLE_KEYMAP, c);
    253      1.16       dsl 			if (cp != 0 && cp[1] != 0)
    254      1.16       dsl 				c = cp[1];
    255      1.16       dsl 		}
    256      1.16       dsl #endif
    257      1.16       dsl 		return c;
    258       1.1     perry #ifdef SUPPORT_SERIAL
    259  1.19.6.1      yamt 	case CONSDEV_COM0:
    260  1.19.6.1      yamt 	case CONSDEV_COM1:
    261  1.19.6.1      yamt 	case CONSDEV_COM2:
    262  1.19.6.1      yamt 	case CONSDEV_COM3:
    263       1.6  drochner #ifdef DIRECT_SERIAL
    264      1.14       dsl 		c = comgetc_x();
    265       1.6  drochner #else
    266       1.6  drochner 		do {
    267      1.14       dsl 			c = comgetc_x();
    268       1.6  drochner 		} while ((c >> 8) == 0xe0); /* catch timeout */
    269       1.6  drochner #ifdef COMDEBUG
    270       1.6  drochner 		if (c & 0x8000) {
    271       1.6  drochner 			printf("com input %x, status %x\n",
    272      1.14       dsl 			       c, comstatus_x());
    273       1.6  drochner 		}
    274       1.6  drochner #endif
    275       1.6  drochner 		c &= 0xff;
    276       1.6  drochner #endif /* DIRECT_SERIAL */
    277  1.19.6.1      yamt 		return c;
    278       1.3   thorpej 	}
    279       1.6  drochner #endif /* SUPPORT_SERIAL */
    280       1.1     perry }
    281       1.1     perry 
    282       1.3   thorpej int
    283      1.19   mycroft iskey(int intr)
    284       1.3   thorpej {
    285       1.1     perry #ifdef SUPPORT_SERIAL
    286       1.3   thorpej 	switch (iodev) {
    287  1.19.6.1      yamt 	default: /* to make gcc -Wall happy... */
    288  1.19.6.1      yamt 	case CONSDEV_PC:
    289       1.1     perry #endif
    290  1.19.6.1      yamt 		return (intr && conisshift()) || coniskey();
    291       1.1     perry #ifdef SUPPORT_SERIAL
    292  1.19.6.1      yamt 	case CONSDEV_COM0:
    293  1.19.6.1      yamt 	case CONSDEV_COM1:
    294  1.19.6.1      yamt 	case CONSDEV_COM2:
    295  1.19.6.1      yamt 	case CONSDEV_COM3:
    296       1.5  drochner #ifdef DIRECT_SERIAL
    297  1.19.6.1      yamt 		return !!comstatus_x();
    298       1.5  drochner #else
    299  1.19.6.1      yamt 		return !!(comstatus_x() & 0x0100);
    300       1.5  drochner #endif
    301       1.3   thorpej 	}
    302       1.5  drochner #endif /* SUPPORT_SERIAL */
    303       1.5  drochner }
    304       1.5  drochner 
    305       1.5  drochner char
    306  1.19.6.1      yamt awaitkey(int timeout, int tell)
    307       1.5  drochner {
    308       1.5  drochner 	int i;
    309       1.5  drochner 	char c = 0;
    310       1.5  drochner 
    311       1.5  drochner 	i = timeout * POLL_FREQ;
    312       1.5  drochner 
    313      1.19   mycroft 	for (;;) {
    314      1.10  drochner 		if (tell && (i % POLL_FREQ) == 0) {
    315      1.10  drochner 			char numbuf[20];
    316      1.10  drochner 			int len, j;
    317      1.10  drochner 
    318      1.10  drochner 			sprintf(numbuf, "%d ", i/POLL_FREQ);
    319      1.10  drochner 			len = strlen(numbuf);
    320      1.10  drochner 			for (j = 0; j < len; j++)
    321      1.10  drochner 				numbuf[len + j] = '\b';
    322      1.10  drochner 			numbuf[len + j] = '\0';
    323      1.10  drochner 			printf(numbuf);
    324      1.10  drochner 		}
    325      1.19   mycroft 		if (iskey(1)) {
    326       1.5  drochner 			/* flush input buffer */
    327      1.19   mycroft 			while (iskey(0))
    328       1.5  drochner 				c = getchar();
    329      1.12       dsl 			if (c == 0)
    330      1.12       dsl 				c = -1;
    331      1.12       dsl 			goto out;
    332       1.5  drochner 		}
    333      1.19   mycroft 		if (i--)
    334      1.19   mycroft 			delay(1000000 / POLL_FREQ);
    335      1.19   mycroft 		else
    336      1.19   mycroft 			break;
    337       1.5  drochner 	}
    338       1.5  drochner 
    339       1.5  drochner out:
    340       1.5  drochner 	if (tell)
    341      1.16       dsl 		printf("0 \n");
    342       1.5  drochner 
    343  1.19.6.1      yamt 	return c;
    344       1.1     perry }
    345