toaruos/modules/ps2kbd.c

80 lines
1.6 KiB
C
Raw Normal View History

2014-06-08 10:51:01 +04:00
/* vim: tabstop=4 shiftwidth=4 noexpandtab
* This file is part of ToaruOS and is released under the terms
* of the NCSA / University of Illinois License - see LICENSE.md
2015-02-04 06:43:04 +03:00
* Copyright (C) 2011-2015 Kevin Lange
*
* Low-level keyboard interrupt driver.
*
2012-01-25 23:50:30 +04:00
* Creates a device file (keyboard_pipe) that can be read
* to retreive keyboard events.
*
*/
2011-01-16 21:45:51 +03:00
#include <system.h>
#include <logging.h>
#include <fs.h>
#include <pipe.h>
#include <process.h>
2011-01-16 21:45:51 +03:00
2014-03-17 02:13:27 +04:00
#include <module.h>
2015-02-04 02:19:09 +03:00
#define KEY_DEVICE 0x60
#define KEY_PENDING 0x64
#define KEY_IRQ 1
2014-03-17 02:13:27 +04:00
static fs_node_t * keyboard_pipe;
/*
* Wait on the keyboard.
*/
static void keyboard_wait(void) {
while(inportb(KEY_PENDING) & 2);
}
2011-01-22 06:48:17 +03:00
2015-02-04 02:19:09 +03:00
/*
* Keyboard interrupt callback
*/
2014-03-17 02:13:27 +04:00
static void keyboard_handler(struct regs *r) {
2011-01-16 21:45:51 +03:00
unsigned char scancode;
keyboard_wait();
2011-10-23 04:32:03 +04:00
scancode = inportb(KEY_DEVICE);
2015-02-04 02:19:09 +03:00
irq_ack(KEY_IRQ);
2011-10-31 10:48:03 +04:00
2015-02-04 02:19:09 +03:00
write_fs(keyboard_pipe, 0, 1, (uint8_t []){scancode});
2011-01-16 21:45:51 +03:00
}
2012-01-25 23:50:30 +04:00
/*
* Install the keyboard driver and initialize the
* pipe device for userspace.
*/
2014-03-17 02:13:27 +04:00
static int keyboard_install(void) {
2012-12-08 06:33:07 +04:00
debug_print(NOTICE, "Initializing PS/2 keyboard driver");
2012-01-25 23:50:30 +04:00
/* Create a device pipe */
keyboard_pipe = make_pipe(128);
2012-02-17 00:31:40 +04:00
current_process->fds->entries[0] = keyboard_pipe;
keyboard_pipe->flags = FS_CHARDEVICE;
2014-03-17 02:13:27 +04:00
vfs_mount("/dev/kbd", keyboard_pipe);
2012-01-25 23:50:30 +04:00
/* Install the interrupt handler */
2015-02-04 02:19:09 +03:00
irq_install_handler(KEY_IRQ, keyboard_handler);
2014-03-17 02:13:27 +04:00
return 0;
2011-01-16 21:45:51 +03:00
}
2014-03-17 02:13:27 +04:00
static void keyboard_reset_ps2(void) {
uint8_t tmp = inportb(0x61);
outportb(0x61, tmp | 0x80);
outportb(0x61, tmp & 0x7F);
inportb(KEY_DEVICE);
}
2014-03-17 02:13:27 +04:00
static int keyboard_uninstall(void) {
/* TODO */
return 0;
}
2014-03-17 02:13:27 +04:00
MODULE_DEF(ps2kbd, keyboard_install, keyboard_uninstall);