6b3f4dc157
This commit separates the low-level keyboard driver from TTY, putting it in a separate driver (PCKBD). The commit also separates management of raw input devices from TTY, and puts it in a separate server (INPUT). All keyboard and mouse input from hardware is sent by drivers to the INPUT server, which either sends it to a process that has opened a raw input device, or otherwise forwards it to TTY for standard processing. Design by Dirk Vogt. Prototype by Uli Kastlunger. Additional changes made to the prototype: - the event communication is now based on USB HID codes; all input drivers have to use USB codes to describe events; - all TTY keymaps have been converted to USB format, with the effect that a single keymap covers all keys; there is no (static) escaped keymap anymore; - further keymap tweaks now allow remapping of literally all keys; - input device renumbering and protocol rewrite; - INPUT server rewrite, with added support for cancel and select; - PCKBD reimplementation, including PC/AT-to-USB translation; - support for manipulating keyboard LEDs has been added; - keyboard and mouse multiplexer devices have been added to INPUT, primarily so that an X server need only open two devices; - a new "libinputdriver" library abstracts away protocol details from input drivers, and should be used by all future input drivers; - both INPUT and PCKBD can be restarted; - TTY is now scheduled by KERNEL, so that it won't be punished for running a lot; without this, simply running "yes" on the console kills the system; - the KIOCBELL IOCTL has been moved to /dev/console; - support for the SCANCODES termios setting has been removed; - obsolete keymap compression has been removed; - the obsolete Olivetti M24 keymap has been removed. Change-Id: I3a672fb8c4fd566734e4b46d3994b4b7fc96d578
143 lines
2.8 KiB
C
143 lines
2.8 KiB
C
|
|
#define _SYSTEM 1
|
|
|
|
#include <minix/callnr.h>
|
|
#include <minix/com.h>
|
|
#include <minix/config.h>
|
|
#include <minix/const.h>
|
|
#include <minix/ds.h>
|
|
#include <minix/endpoint.h>
|
|
#include <minix/minlib.h>
|
|
#include <minix/type.h>
|
|
#include <minix/ipc.h>
|
|
#include <minix/sysutil.h>
|
|
#include <minix/syslib.h>
|
|
#include <minix/bitmap.h>
|
|
|
|
#include <errno.h>
|
|
#include <assert.h>
|
|
#include <env.h>
|
|
|
|
#include "glo.h"
|
|
#include "proto.h"
|
|
#include "util.h"
|
|
#include "sanitycheck.h"
|
|
|
|
static void reset_vm_rusage(struct vmproc *vmp)
|
|
{
|
|
vmp->vm_total = 0;
|
|
vmp->vm_total_max = 0;
|
|
vmp->vm_minor_page_fault = 0;
|
|
vmp->vm_major_page_fault = 0;
|
|
}
|
|
|
|
void free_proc(struct vmproc *vmp)
|
|
{
|
|
map_free_proc(vmp);
|
|
pt_free(&vmp->vm_pt);
|
|
region_init(&vmp->vm_regions_avl);
|
|
#if VMSTATS
|
|
vmp->vm_bytecopies = 0;
|
|
#endif
|
|
vmp->vm_region_top = 0;
|
|
reset_vm_rusage(vmp);
|
|
}
|
|
|
|
void clear_proc(struct vmproc *vmp)
|
|
{
|
|
region_init(&vmp->vm_regions_avl);
|
|
acl_clear(vmp);
|
|
vmp->vm_flags = 0; /* Clear INUSE, so slot is free. */
|
|
#if VMSTATS
|
|
vmp->vm_bytecopies = 0;
|
|
#endif
|
|
vmp->vm_region_top = 0;
|
|
reset_vm_rusage(vmp);
|
|
}
|
|
|
|
/*===========================================================================*
|
|
* do_exit *
|
|
*===========================================================================*/
|
|
int do_exit(message *msg)
|
|
{
|
|
int proc;
|
|
struct vmproc *vmp;
|
|
|
|
SANITYCHECK(SCL_FUNCTIONS);
|
|
|
|
if(vm_isokendpt(msg->VME_ENDPOINT, &proc) != OK) {
|
|
printf("VM: bogus endpoint VM_EXIT %d\n", msg->VME_ENDPOINT);
|
|
return EINVAL;
|
|
}
|
|
vmp = &vmproc[proc];
|
|
|
|
if(!(vmp->vm_flags & VMF_EXITING)) {
|
|
printf("VM: unannounced VM_EXIT %d\n", msg->VME_ENDPOINT);
|
|
return EINVAL;
|
|
}
|
|
|
|
{
|
|
/* Free pagetable and pages allocated by pt code. */
|
|
SANITYCHECK(SCL_DETAIL);
|
|
free_proc(vmp);
|
|
SANITYCHECK(SCL_DETAIL);
|
|
}
|
|
SANITYCHECK(SCL_DETAIL);
|
|
|
|
/* Reset process slot fields. */
|
|
clear_proc(vmp);
|
|
|
|
SANITYCHECK(SCL_FUNCTIONS);
|
|
return OK;
|
|
}
|
|
|
|
/*===========================================================================*
|
|
* do_willexit *
|
|
*===========================================================================*/
|
|
int do_willexit(message *msg)
|
|
{
|
|
int proc;
|
|
struct vmproc *vmp;
|
|
|
|
if(vm_isokendpt(msg->VMWE_ENDPOINT, &proc) != OK) {
|
|
printf("VM: bogus endpoint VM_EXITING %d\n",
|
|
msg->VMWE_ENDPOINT);
|
|
return EINVAL;
|
|
}
|
|
vmp = &vmproc[proc];
|
|
|
|
vmp->vm_flags |= VMF_EXITING;
|
|
|
|
return OK;
|
|
}
|
|
|
|
int do_procctl(message *msg)
|
|
{
|
|
endpoint_t proc;
|
|
struct vmproc *vmp;
|
|
|
|
if(vm_isokendpt(msg->VMPCTL_WHO, &proc) != OK) {
|
|
printf("VM: bogus endpoint VM_PROCCTL %d\n",
|
|
msg->VMPCTL_WHO);
|
|
return EINVAL;
|
|
}
|
|
vmp = &vmproc[proc];
|
|
|
|
switch(msg->VMPCTL_PARAM) {
|
|
case VMPPARAM_CLEAR:
|
|
if(msg->m_source != RS_PROC_NR
|
|
&& msg->m_source != VFS_PROC_NR)
|
|
return EPERM;
|
|
free_proc(vmp);
|
|
if(pt_new(&vmp->vm_pt) != OK)
|
|
panic("VMPPARAM_CLEAR: pt_new failed");
|
|
pt_bind(&vmp->vm_pt, vmp);
|
|
return OK;
|
|
default:
|
|
return EINVAL;
|
|
}
|
|
|
|
|
|
return OK;
|
|
}
|
|
|