2019-04-24 00:05:30 +02:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// GNU GPL OS/K //
|
|
|
|
// //
|
2019-04-24 18:14:23 +02:00
|
|
|
// Desc: Basic Read Only Keyboard Driver //
|
2019-04-24 00:05:30 +02:00
|
|
|
// //
|
|
|
|
// //
|
|
|
|
// Copyright © 2018-2019 The OS/K Team //
|
|
|
|
// //
|
|
|
|
// This file is part of OS/K. //
|
|
|
|
// //
|
|
|
|
// OS/K 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, either version 3 of the License, or //
|
|
|
|
// any later version. //
|
|
|
|
// //
|
|
|
|
// OS/K is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY//without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with OS/K. If not, see <https://www.gnu.org/licenses/>. //
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
2019-04-24 21:08:44 +02:00
|
|
|
#include <kernel/base.h>
|
2019-04-24 00:05:30 +02:00
|
|
|
#include <kernel/iomisc.h>
|
2019-04-24 22:40:12 +02:00
|
|
|
#include <extras/buf.h>
|
2019-04-24 11:40:14 +02:00
|
|
|
|
2019-04-24 22:40:12 +02:00
|
|
|
char ScanCodes[100] = { 0 };
|
2019-04-24 11:40:14 +02:00
|
|
|
|
2019-04-24 22:40:12 +02:00
|
|
|
void KeybPrint(char code)
|
|
|
|
{
|
|
|
|
if (code) {
|
|
|
|
bprintf(BStdOut, "%c", ScanCodes[(int)code]);
|
|
|
|
BFlushBuf(BStdOut);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScanCodesInit(void)
|
|
|
|
{
|
|
|
|
ScanCodes[0x02] = '1';
|
|
|
|
ScanCodes[0x03] = '2';
|
|
|
|
ScanCodes[0x04] = '3';
|
|
|
|
ScanCodes[0x05] = '4';
|
|
|
|
ScanCodes[0x06] = '5';
|
|
|
|
ScanCodes[0x07] = '6';
|
|
|
|
ScanCodes[0x08] = '7';
|
|
|
|
ScanCodes[0x09] = '8';
|
|
|
|
ScanCodes[0x0A] = '9';
|
|
|
|
ScanCodes[0x0B] = '0';
|
|
|
|
|
|
|
|
ScanCodes[0x10] = 'a';
|
|
|
|
ScanCodes[0x11] = 'z';
|
|
|
|
ScanCodes[0x12] = 'e';
|
|
|
|
ScanCodes[0x13] = 'r';
|
|
|
|
ScanCodes[0x14] = 't';
|
|
|
|
ScanCodes[0x15] = 'y';
|
|
|
|
ScanCodes[0x16] = 'u';
|
|
|
|
ScanCodes[0x17] = 'i';
|
|
|
|
ScanCodes[0x18] = 'o';
|
|
|
|
ScanCodes[0x19] = 'p';
|
|
|
|
|
|
|
|
ScanCodes[0x1E] = 'q';
|
|
|
|
ScanCodes[0x1F] = 's';
|
|
|
|
ScanCodes[0x20] = 'd';
|
|
|
|
ScanCodes[0x21] = 'f';
|
|
|
|
ScanCodes[0x22] = 'g';
|
|
|
|
ScanCodes[0x23] = 'h';
|
|
|
|
ScanCodes[0x24] = 'j';
|
|
|
|
ScanCodes[0x25] = 'k';
|
|
|
|
ScanCodes[0x26] = 'l';
|
|
|
|
|
|
|
|
ScanCodes[0x2C] = 'w';
|
|
|
|
ScanCodes[0x2D] = 'x';
|
|
|
|
ScanCodes[0x2E] = 'c';
|
|
|
|
ScanCodes[0x2F] = 'v';
|
|
|
|
ScanCodes[0x30] = 'b';
|
|
|
|
ScanCodes[0x31] = 'n';
|
|
|
|
ScanCodes[0x32] = 'm';
|
2019-04-24 11:55:15 +02:00
|
|
|
|
2019-04-24 22:40:12 +02:00
|
|
|
ScanCodes[0x1C] = '\n';
|
|
|
|
ScanCodes[0x39] = ' ';
|
|
|
|
}
|
|
|
|
|
2019-04-27 00:04:27 +02:00
|
|
|
void KeybHandler(ISRFrame_t *regs)
|
2019-04-24 11:55:15 +02:00
|
|
|
{
|
2019-04-24 21:08:44 +02:00
|
|
|
char status;
|
|
|
|
char code = 0;
|
2019-04-24 11:55:15 +02:00
|
|
|
|
|
|
|
// write EOI
|
2019-04-24 18:14:23 +02:00
|
|
|
IoWriteByteOnPort(0x20, 0x20);
|
2019-04-24 11:55:15 +02:00
|
|
|
|
2019-04-24 21:08:44 +02:00
|
|
|
status = IoReadByteFromPort(0x64);
|
2019-04-24 11:55:15 +02:00
|
|
|
|
|
|
|
if (status & 0x01) {
|
2019-04-24 21:08:44 +02:00
|
|
|
code = IoReadByteFromPort(0x60);
|
2019-04-24 11:55:15 +02:00
|
|
|
|
2019-04-24 21:08:44 +02:00
|
|
|
if(code < 0) code = 0;
|
2019-04-24 11:55:15 +02:00
|
|
|
}
|
2019-04-24 22:40:12 +02:00
|
|
|
KeybPrint((int)code);
|
2019-04-24 23:00:12 +02:00
|
|
|
IoSendEOItoPIC(0x21);
|
2019-04-24 11:55:15 +02:00
|
|
|
}
|
2019-04-27 00:04:27 +02:00
|
|
|
|
|
|
|
void IoEnableKeyb(void)
|
|
|
|
{
|
|
|
|
ulong flags = KePauseIRQs();
|
|
|
|
IdtRegisterIrq(KeybHandler, 0x21, 0x8E);
|
|
|
|
char readedInterruptConfig = IoReadByteFromPort(0x21);
|
|
|
|
IoWriteByteOnPort(0x21, 0xFD & readedInterruptConfig);
|
|
|
|
KeRestoreIRQs(flags);
|
|
|
|
IoEnableNMI();
|
|
|
|
ScanCodesInit();
|
|
|
|
}
|