2007-12-23 07:28:10 -07:00
|
|
|
/* $OpenBSD: keyboard.c,v 1.4 2007/12/23 14:28:10 matthieu Exp $ */
|
2007-05-25 09:33:32 -06:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Matthieu Herrb <matthieu@openbsd.org>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <kdrive-config.h>
|
|
|
|
#endif
|
|
|
|
#include "kdrive.h"
|
|
|
|
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
|
2007-05-25 13:10:43 -06:00
|
|
|
#include <errno.h>
|
2007-12-23 07:28:10 -07:00
|
|
|
#include <sys/ioctl.h>
|
2007-05-25 13:10:43 -06:00
|
|
|
#include <dev/wscons/wsconsio.h>
|
|
|
|
|
2007-05-26 23:17:06 -06:00
|
|
|
#define DBG(x) ErrorF x
|
|
|
|
|
2007-05-25 09:33:32 -06:00
|
|
|
extern int WsconsConsoleFd;
|
|
|
|
|
|
|
|
static void
|
2007-05-26 23:17:06 -06:00
|
|
|
wskbdLoad(void)
|
2007-05-25 09:33:32 -06:00
|
|
|
{
|
2007-05-26 23:17:06 -06:00
|
|
|
DBG(("wskbdLoad\n"));
|
|
|
|
|
2007-05-25 09:33:32 -06:00
|
|
|
/* Read kernel Mapping */
|
|
|
|
}
|
|
|
|
|
2007-05-26 23:17:06 -06:00
|
|
|
#define NUM_EVENTS 64
|
|
|
|
|
2007-05-25 09:33:32 -06:00
|
|
|
static void
|
2007-05-26 23:17:06 -06:00
|
|
|
wskbdRead(int fd, void *closure)
|
2007-05-25 09:33:32 -06:00
|
|
|
{
|
2007-05-26 23:17:06 -06:00
|
|
|
struct wscons_event events[NUM_EVENTS];
|
|
|
|
int i, n, type;
|
2007-05-25 09:33:32 -06:00
|
|
|
|
2007-05-26 23:17:06 -06:00
|
|
|
DBG(("wskbdRead\n"));
|
2007-12-23 07:28:10 -07:00
|
|
|
if ((n = read(fd, events, sizeof(events))) > 0) {
|
2007-05-26 23:17:06 -06:00
|
|
|
n /= sizeof(struct wscons_event);
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
type = events[i].type;
|
|
|
|
if (type == WSCONS_EVENT_KEY_UP ||
|
|
|
|
type == WSCONS_EVENT_KEY_DOWN) {
|
|
|
|
|
2007-12-23 07:28:10 -07:00
|
|
|
KdEnqueueKeyboardEvent(closure,
|
|
|
|
events[i].value,
|
2007-05-26 23:17:06 -06:00
|
|
|
type == WSCONS_EVENT_KEY_DOWN ?
|
|
|
|
TRUE : FALSE);
|
|
|
|
}
|
|
|
|
} /* for */
|
|
|
|
}
|
2007-05-25 09:33:32 -06:00
|
|
|
}
|
|
|
|
|
2007-05-25 13:10:43 -06:00
|
|
|
static int
|
2007-12-23 07:28:10 -07:00
|
|
|
wskbdEnable(KdKeyboardInfo *ki)
|
2007-05-25 09:33:32 -06:00
|
|
|
{
|
2007-05-25 13:10:43 -06:00
|
|
|
int option = WSKBD_RAW;
|
2007-12-23 07:28:10 -07:00
|
|
|
int fd = WsconsConsoleFd;
|
2007-05-25 13:10:43 -06:00
|
|
|
|
2007-05-26 23:17:06 -06:00
|
|
|
DBG(("wskbdEnable\n"));
|
2007-12-23 07:28:10 -07:00
|
|
|
if (ki == NULL)
|
|
|
|
return !Success;
|
|
|
|
ki->driverPrivate = (void *)fd;
|
|
|
|
|
2007-05-25 09:33:32 -06:00
|
|
|
/* Switch to X mode */
|
2007-05-25 13:10:43 -06:00
|
|
|
if (ioctl(fd, WSKBDIO_SETMODE, &option) == -1) {
|
2007-05-26 23:17:06 -06:00
|
|
|
ErrorF("wskbdEnable: WSKBDIO_SETMODE: %d\n", errno);
|
2007-05-25 13:10:43 -06:00
|
|
|
return -1;
|
|
|
|
}
|
2007-12-23 07:28:10 -07:00
|
|
|
KdRegisterFd (fd, wskbdRead, ki);
|
|
|
|
return Success;
|
2007-05-25 09:33:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-12-23 07:28:10 -07:00
|
|
|
wskbdDisable(KdKeyboardInfo *ki)
|
2007-05-25 09:33:32 -06:00
|
|
|
{
|
2007-05-25 13:10:43 -06:00
|
|
|
int option = WSKBD_TRANSLATED;
|
2007-12-23 07:28:10 -07:00
|
|
|
int fd;
|
2007-05-25 13:10:43 -06:00
|
|
|
|
2007-05-26 23:17:06 -06:00
|
|
|
DBG(("wskbdDisable\n"));
|
2007-12-23 07:28:10 -07:00
|
|
|
if (ki == NULL)
|
|
|
|
return;
|
|
|
|
fd = (int)ki->driverPrivate;
|
2007-05-25 09:33:32 -06:00
|
|
|
/* Back to console mode */
|
2007-05-25 13:10:43 -06:00
|
|
|
ioctl(fd, WSKBDIO_SETMODE, &option);
|
2007-05-25 09:33:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2007-12-23 07:28:10 -07:00
|
|
|
wskbdInit(KdKeyboardInfo *ki)
|
2007-05-25 09:33:32 -06:00
|
|
|
{
|
2007-05-26 23:17:06 -06:00
|
|
|
DBG(("wskbdInit\n"));
|
2007-12-23 07:28:10 -07:00
|
|
|
if (!ki)
|
|
|
|
return !Success;
|
|
|
|
|
|
|
|
if (ki->path)
|
|
|
|
xfree(ki->path);
|
|
|
|
ki->path = KdSaveString("console");
|
|
|
|
if (ki->name)
|
|
|
|
xfree(ki->name);
|
|
|
|
ki->name = KdSaveString("Wscons keyboard");
|
|
|
|
|
|
|
|
wskbdLoad();
|
|
|
|
return Success;
|
2007-05-25 09:33:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2007-12-23 07:28:10 -07:00
|
|
|
wskbdLeds(KdKeyboardInfo *ki, int leds)
|
2007-05-25 09:33:32 -06:00
|
|
|
{
|
2007-05-26 23:17:06 -06:00
|
|
|
DBG(("wskbdLeds %d\n", leds));
|
2007-12-23 07:28:10 -07:00
|
|
|
if (!ki)
|
|
|
|
return;
|
2007-05-26 23:17:06 -06:00
|
|
|
if (ioctl(WsconsConsoleFd, WSKBDIO_SETLEDS, &leds) == -1)
|
|
|
|
ErrorF("wskbd WSKBDIO_SETLEDS: %s\n",
|
|
|
|
strerror(errno));
|
2007-05-25 09:33:32 -06:00
|
|
|
}
|
|
|
|
|
2007-12-23 07:28:10 -07:00
|
|
|
KdKeyboardDriver WsconsKeyboardDriver = {
|
|
|
|
"keyboard",
|
|
|
|
.Init = wskbdInit,
|
|
|
|
.Enable = wskbdEnable,
|
|
|
|
.Leds = wskbdLeds,
|
|
|
|
.Disable = wskbdDisable
|
2007-05-25 09:33:32 -06:00
|
|
|
};
|