e3daef46ec
* recognize PS/2 L40 via biosmca() and biosmca_ps2model in gatea20.c, instead of being a compile time option * if the system is PS/2 with MCA bus, map DTYPE_ESDI disks to ed(4) for COMPAT_OLDBOOT The new code is conditional on SUPPORT_PS2 define, which is on by default for biosboot-based bootblocks.
59 lines
1.3 KiB
C
59 lines
1.3 KiB
C
/* $NetBSD: gatea20.c,v 1.4 2001/05/19 18:15:14 jdolecek Exp $ */
|
|
|
|
/* extracted from freebsd:sys/i386/boot/biosboot/io.c */
|
|
|
|
#include <sys/types.h>
|
|
#include <machine/pio.h>
|
|
|
|
#include <lib/libsa/stand.h>
|
|
|
|
#include "libi386.h"
|
|
#include "biosmca.h"
|
|
|
|
#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 */
|
|
#define KB_A20 0x9f /* enable A20,
|
|
reset (!),
|
|
enable output buffer full interrupt
|
|
enable data line
|
|
disable clock line */
|
|
|
|
/*
|
|
* Gate A20 for high memory
|
|
*/
|
|
static unsigned char x_20 = KB_A20;
|
|
void gateA20()
|
|
{
|
|
__asm("pushfl ; cli");
|
|
#ifdef SUPPORT_PS2
|
|
/*
|
|
* Check if the machine is PS/2 L40 via biosmca_model, which is
|
|
* initialized before gateA20() is called.
|
|
*/
|
|
if (biosmca_ps2model == 0xf82)
|
|
outb(0x92, 0x2);
|
|
else {
|
|
#endif
|
|
while (inb(K_STATUS) & K_IBUF_FUL);
|
|
while (inb(K_STATUS) & K_OBUF_FUL)
|
|
(void)inb(K_RDWR);
|
|
|
|
outb(K_CMD, KC_CMD_WOUT);
|
|
delay(100);
|
|
while (inb(K_STATUS) & K_IBUF_FUL);
|
|
outb(K_RDWR, x_20);
|
|
delay(100);
|
|
while (inb(K_STATUS) & K_IBUF_FUL);
|
|
#ifdef SUPPORT_PS2
|
|
}
|
|
#endif
|
|
__asm("popfl");
|
|
}
|