1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
|
/*
* -----------------------------------------------------------------------
*
* Copyright 1994-2008 H. Peter Anvin - All Rights Reserved
* Copyright 2009-2014 Intel Corporation; author: H. Peter Anvin
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, Inc., 53 Temple Place Ste 330,
* Boston MA 02111-1307, USA; either version 2 of the License, or
* (at your option) any later version; incorporated herein by reference.
*
* -----------------------------------------------------------------------
*
*
* conio.c
*
* Console I/O code, except:
* writechr, writestr_early - module-dependent
* writestr, crlf - writestr.inc
* writehex* - writehex.inc
*/
#include <sys/io.h>
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include <fs.h>
#include <com32.h>
#include <x86/cpu.h>
#include <syslinux/firmware.h>
#include "bios.h"
#include "graphics.h"
union screen _cursor;
union screen _screensize;
/*
* Serial console stuff.
*/
__export uint16_t SerialPort = 0; /* Serial port base (or 0 for no serial port) */
__export uint8_t FlowInput = 0; /* Input bits for serial flow */
__export uint16_t BaudDivisor = 115200/9600; /* Baud rate divisor */
__export uint8_t FlowIgnore = 0; /* Ignore input unless these bits set */
__export uint16_t DisplayCon = 0x01; /* Display console enabled */
__export uint8_t FlowOutput = 0; /* Output to assert for serial flow */
__export uint8_t DisplayMask = 0x07; /* Display modes mask */
uint8_t ScrollAttribute = 0x07; /* Grey on white (normal text color) */
/*
* loadkeys: Load a LILO-style keymap
*
* Returns 0 on success, or -1 on error.
*/
__export int loadkeys(const char *filename)
{
FILE *f;
f = fopen(filename, "r");
if (!f)
return -1;
fread(KbdMap, 1, sizeof(KbdMap), f);
fclose(f);
return 0;
}
/*
* write_serial: If serial output is enabled, write character on
* serial port.
*/
__export void write_serial(char data)
{
if (!SerialPort)
return;
if (!(DisplayMask & 0x04))
return;
while (1) {
char ch;
ch = inb(SerialPort + 5); /* LSR */
/* Wait for space in transmit register */
if (!(ch & 0x20))
continue;
/* Wait for input flow control */
ch = inb(SerialPort + 6);
ch &= FlowInput;
if (ch != FlowInput)
continue;
break;
}
outb(data, SerialPort); /* Send data */
io_delay();
}
void pm_write_serial(com32sys_t *regs)
{
write_serial(regs->eax.b[0]);
}
void serialcfg(uint16_t *iobase, uint16_t *divisor, uint16_t *flowctl)
{
uint8_t al, ah;
*iobase = SerialPort;
*divisor = BaudDivisor;
al = FlowOutput;
ah = FlowInput;
al |= ah;
ah = FlowIgnore;
ah >>= 4;
if (!DisplayCon)
ah |= 0x80;
*flowctl = al | (ah << 8);
}
void pm_serialcfg(com32sys_t *regs)
{
serialcfg(®s->eax.w[0], ®s->ecx.w[0], ®s->ebx.w[0]);
}
/*
* write_serial_str: write_serial for strings
*/
__export void write_serial_str(char *data)
{
char ch;
while ((ch = *data++))
write_serial(ch);
}
/*
* pollchar: check if we have an input character pending
*
* Returns 1 if character pending.
*/
int bios_pollchar(void)
{
com32sys_t ireg, oreg;
uint8_t data = 0;
memset(&ireg, 0, sizeof(ireg));
ireg.eax.b[1] = 0x11; /* Poll keyboard */
__intcall(0x16, &ireg, &oreg);
if (!(oreg.eflags.l & EFLAGS_ZF))
return 1;
if (SerialPort) {
cli();
/* Already-queued input? */
if (SerialTail == SerialHead) {
/* LSR */
data = inb(SerialPort + 5) & 1;
if (data) {
/* MSR */
data = inb(SerialPort + 6);
/* Required status bits */
data &= FlowIgnore;
if (data == FlowIgnore)
data = 1;
else
data = 0;
}
} else
data = 1;
sti();
}
return data;
}
__export int pollchar(void)
{
return firmware->i_ops->pollchar();
}
void pm_pollchar(com32sys_t *regs)
{
if (pollchar())
regs->eflags.l &= ~EFLAGS_ZF;
else
regs->eflags.l |= EFLAGS_ZF;
}
char bios_getchar(char *hi)
{
com32sys_t ireg, oreg;
unsigned char data;
memset(&ireg, 0, sizeof(ireg));
memset(&oreg, 0, sizeof(oreg));
while (1) {
__idle();
ireg.eax.b[1] = 0x11; /* Poll keyboard */
__intcall(0x16, &ireg, &oreg);
if (oreg.eflags.l & EFLAGS_ZF) {
if (!SerialPort)
continue;
cli();
if (SerialTail != SerialHead) {
/* serial queued */
sti(); /* We already know we'll consume data */
data = *SerialTail++;
if (SerialTail > SerialHead + serial_buf_size)
SerialTail = SerialHead;
} else {
/* LSR */
data = inb(SerialPort + 5) & 1;
if (!data) {
sti();
continue;
}
data = inb(SerialPort + 6);
data &= FlowIgnore;
if (data != FlowIgnore) {
sti();
continue;
}
data = inb(SerialPort);
sti();
break;
}
} else {
/* Keyboard input? */
ireg.eax.b[1] = 0x10; /* Get keyboard input */
__intcall(0x16, &ireg, &oreg);
data = oreg.eax.b[0];
*hi = oreg.eax.b[1];
if (data == 0xE0)
data = 0;
if (data) {
/* Convert character sets */
data = KbdMap[data];
}
}
break;
}
reset_idle(); /* Character received */
return data;
}
uint8_t bios_shiftflags(void)
{
com32sys_t reg;
uint8_t ah, al;
memset(®, 0, sizeof reg);
reg.eax.b[1] = 0x12;
__intcall(0x16, ®, ®);
ah = reg.eax.b[1];
al = reg.eax.b[0];
/*
* According to the Interrupt List, "many machines" don't correctly
* fold the Alt state, presumably because it might be AltGr.
* Explicitly fold the Alt and Ctrl states; it fits our needs
* better.
*/
if (ah & 0x0a)
al |= 0x08;
if (ah & 0x05)
al |= 0x04;
return al;
}
__export uint8_t kbd_shiftflags(void)
{
if (firmware->i_ops->shiftflags)
return firmware->i_ops->shiftflags();
else
return 0; /* Unavailable on this firmware */
}
/*
* getchar: Read a character from keyboard or serial port
*/
__export char getchar(char *hi)
{
return firmware->i_ops->getchar(hi);
}
void pm_getchar(com32sys_t *regs)
{
regs->eax.b[0] = getchar((char *)®s->eax.b[1]);
}
|