2011-06-29 13:55:01 -06:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 Matthieu Herrb
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_DIX_CONFIG_H
|
|
|
|
#include <dix-config.h>
|
|
|
|
#endif
|
|
|
|
|
2016-09-12 15:44:30 -06:00
|
|
|
#include <sys/ioctl.h>
|
2016-09-12 15:46:25 -06:00
|
|
|
#include <sys/time.h>
|
2011-06-29 13:55:01 -06:00
|
|
|
#include <dev/wscons/wsconsio.h>
|
|
|
|
#include <dev/wscons/wsksymdef.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "input.h"
|
|
|
|
#include "inputstr.h"
|
|
|
|
#include "os.h"
|
|
|
|
#include "config-backends.h"
|
|
|
|
|
|
|
|
#define WSCONS_KBD_DEVICE "/dev/wskbd"
|
|
|
|
#define WSCONS_MOUSE_PREFIX "/dev/wsmouse"
|
|
|
|
|
|
|
|
#define KB_OVRENC \
|
2013-06-07 11:28:45 -06:00
|
|
|
{ KB_UK, "gb" }, \
|
|
|
|
{ KB_SV, "se" }, \
|
|
|
|
{ KB_SG, "ch" }, \
|
|
|
|
{ KB_SF, "ch" }, \
|
|
|
|
{ KB_LA, "latam" }, \
|
|
|
|
{ KB_CF, "ca" }
|
2011-06-29 13:55:01 -06:00
|
|
|
|
|
|
|
struct nameint {
|
2012-06-10 07:21:05 -06:00
|
|
|
int val;
|
2016-09-12 15:57:14 -06:00
|
|
|
const char *name;
|
2012-06-10 07:21:05 -06:00
|
|
|
} kbdenc[] = {
|
2013-06-07 11:28:45 -06:00
|
|
|
KB_OVRENC,
|
|
|
|
KB_ENCTAB,
|
|
|
|
{0}
|
|
|
|
};
|
2011-06-29 13:55:01 -06:00
|
|
|
|
|
|
|
struct nameint kbdvar[] = {
|
2012-06-10 07:21:05 -06:00
|
|
|
{KB_NODEAD | KB_SG, "de_nodeadkeys"},
|
|
|
|
{KB_NODEAD | KB_SF, "fr_nodeadkeys"},
|
|
|
|
{KB_SF, "fr"},
|
|
|
|
{KB_DVORAK | KB_CF, "fr-dvorak"},
|
|
|
|
{KB_DVORAK | KB_FR, "bepo"},
|
|
|
|
{KB_DVORAK, "dvorak"},
|
|
|
|
{KB_CF, "fr-legacy"},
|
|
|
|
{KB_NODEAD, "nodeadkeys"},
|
|
|
|
{0}
|
2011-06-29 13:55:01 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
struct nameint kbdopt[] = {
|
2012-06-10 07:21:05 -06:00
|
|
|
{KB_SWAPCTRLCAPS, "ctrl:swapcaps"},
|
|
|
|
{0}
|
2011-06-29 13:55:01 -06:00
|
|
|
};
|
|
|
|
|
2011-07-04 14:27:57 -06:00
|
|
|
struct nameint kbdmodel[] = {
|
2012-06-10 07:21:05 -06:00
|
|
|
{WSKBD_TYPE_ADB, "macintosh" },
|
|
|
|
{0}
|
2011-06-29 13:55:01 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
wscons_add_keyboard(void)
|
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
InputAttributes attrs = { };
|
|
|
|
DeviceIntPtr dev = NULL;
|
|
|
|
InputOption *input_options = NULL;
|
|
|
|
char *config_info = NULL;
|
|
|
|
int fd, i, rc;
|
|
|
|
unsigned int type;
|
|
|
|
kbd_t wsenc = 0;
|
2011-06-29 13:55:01 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Find keyboard configuration */
|
|
|
|
fd = priv_open_device(WSCONS_KBD_DEVICE);
|
|
|
|
if (fd == -1) {
|
|
|
|
LogMessage(X_ERROR, "wskbd: open %s: %s\n",
|
|
|
|
WSCONS_KBD_DEVICE, strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (ioctl(fd, WSKBDIO_GETENCODING, &wsenc) == -1) {
|
|
|
|
LogMessage(X_WARNING, "wskbd: ioctl(WSKBDIO_GETENCODING) "
|
|
|
|
"failed: %s\n", strerror(errno));
|
|
|
|
close(fd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (ioctl(fd, WSKBDIO_GTYPE, &type) == -1) {
|
|
|
|
LogMessage(X_WARNING, "wskbd: ioctl(WSKBDIO_GTYPE) "
|
|
|
|
"failed: %s\n", strerror(errno));
|
|
|
|
close(fd);
|
|
|
|
return;
|
|
|
|
}
|
2014-09-27 11:52:59 -06:00
|
|
|
close(fd);
|
2011-06-29 13:55:01 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
input_options = input_option_new(input_options, "_source", "server/wscons");
|
|
|
|
if (input_options == NULL)
|
|
|
|
return;
|
2011-06-29 13:55:01 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
LogMessage(X_INFO, "config/wscons: checking input device %s\n",
|
|
|
|
WSCONS_KBD_DEVICE);
|
|
|
|
input_options = input_option_new(input_options, "name", WSCONS_KBD_DEVICE);
|
|
|
|
input_options = input_option_new(input_options, "driver", "kbd");
|
2011-06-29 13:55:01 -06:00
|
|
|
|
2016-09-12 15:57:14 -06:00
|
|
|
if (asprintf(&config_info, "wscons:%s", WSCONS_KBD_DEVICE) < 0)
|
|
|
|
goto unwind;
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!config_info)
|
|
|
|
goto unwind;
|
|
|
|
if (KB_ENCODING(wsenc) == KB_USER) {
|
|
|
|
/* Ignore wscons "user" layout */
|
|
|
|
LogMessageVerb(X_INFO, 3, "wskbd: ignoring \"user\" layout\n");
|
|
|
|
goto kbd_config_done;
|
|
|
|
}
|
|
|
|
for (i = 0; kbdenc[i].val; i++)
|
|
|
|
if (KB_ENCODING(wsenc) == kbdenc[i].val) {
|
|
|
|
LogMessageVerb(X_INFO, 3, "wskbd: using layout %s\n",
|
|
|
|
kbdenc[i].name);
|
|
|
|
input_options = input_option_new(input_options,
|
|
|
|
"xkb_layout", kbdenc[i].name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for (i = 0; kbdvar[i].val; i++)
|
2015-12-29 11:47:21 -07:00
|
|
|
if ((wsenc & kbdvar[i].val) == kbdvar[i].val) {
|
2012-06-10 07:21:05 -06:00
|
|
|
LogMessageVerb(X_INFO, 3, "wskbd: using variant %s\n",
|
|
|
|
kbdvar[i].name);
|
|
|
|
input_options = input_option_new(input_options,
|
|
|
|
"xkb_variant", kbdvar[i].name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for (i = 0; kbdopt[i].val; i++)
|
2015-12-29 11:47:21 -07:00
|
|
|
if (KB_VARIANT(wsenc) & kbdopt[i].val) {
|
2012-06-10 07:21:05 -06:00
|
|
|
LogMessageVerb(X_INFO, 3, "wskbd: using option %s\n",
|
|
|
|
kbdopt[i].name);
|
|
|
|
input_options = input_option_new(input_options,
|
|
|
|
"xkb_options", kbdopt[i].name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for (i = 0; kbdmodel[i].val; i++)
|
|
|
|
if (type == kbdmodel[i].val) {
|
|
|
|
LogMessageVerb(X_INFO, 3, "wskbd: using model %s\n",
|
|
|
|
kbdmodel[i].name);
|
|
|
|
input_options = input_option_new(input_options,
|
|
|
|
"xkb_model", kbdmodel[i].name);
|
|
|
|
break;
|
|
|
|
}
|
2011-06-29 13:55:01 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
kbd_config_done:
|
|
|
|
attrs.flags |= ATTR_KEYBOARD;
|
|
|
|
rc = NewInputDeviceRequest(input_options, &attrs, &dev);
|
|
|
|
if (rc != Success)
|
|
|
|
goto unwind;
|
2011-06-29 13:55:01 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
for (; dev; dev = dev->next) {
|
|
|
|
free(dev->config_info);
|
|
|
|
dev->config_info = strdup(config_info);
|
2011-06-29 13:55:01 -06:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
unwind:
|
|
|
|
input_option_free_list(&input_options);
|
2011-06-29 13:55:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-12-29 03:47:37 -07:00
|
|
|
wscons_add_pointer(const char *path, const char *driver, int flags)
|
2011-06-29 13:55:01 -06:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
InputAttributes attrs = { };
|
|
|
|
DeviceIntPtr dev = NULL;
|
|
|
|
InputOption *input_options = NULL;
|
|
|
|
char *config_info = NULL;
|
|
|
|
int rc;
|
2011-06-29 13:55:01 -06:00
|
|
|
|
2016-09-12 15:57:14 -06:00
|
|
|
if (asprintf(&config_info, "wscons:%s", path) < 0)
|
|
|
|
return;
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!config_info)
|
|
|
|
return;
|
2011-06-29 13:55:01 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
input_options = input_option_new(input_options, "_source", "server/wscons");
|
|
|
|
if (input_options == NULL)
|
|
|
|
return;
|
2011-06-29 13:55:01 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
input_options = input_option_new(input_options, "name", strdup(path));
|
|
|
|
input_options = input_option_new(input_options, "driver", strdup(driver));
|
|
|
|
input_options = input_option_new(input_options, "device", strdup(path));
|
|
|
|
LogMessage(X_INFO, "config/wscons: checking input device %s\n", path);
|
|
|
|
attrs.flags |= flags;
|
|
|
|
rc = NewInputDeviceRequest(input_options, &attrs, &dev);
|
|
|
|
if (rc != Success)
|
|
|
|
goto unwind;
|
|
|
|
|
|
|
|
for (; dev; dev = dev->next) {
|
|
|
|
free(dev->config_info);
|
|
|
|
dev->config_info = strdup(config_info);
|
2011-06-29 13:55:01 -06:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
unwind:
|
|
|
|
input_option_free_list(&input_options);
|
2011-06-29 13:55:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wscons_add_pointers(void)
|
|
|
|
{
|
2016-09-12 15:57:14 -06:00
|
|
|
char devnam[256];
|
2012-06-10 07:21:05 -06:00
|
|
|
int fd, i, wsmouse_type;
|
2011-06-29 13:55:01 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Check pointing devices */
|
|
|
|
for (i = 0; i < 4; i++) {
|
2016-09-12 15:57:14 -06:00
|
|
|
snprintf(devnam, sizeof(devnam), "%s%d", WSCONS_MOUSE_PREFIX, i);
|
|
|
|
LogMessageVerb(X_INFO, 10, "wsmouse: checking %s\n", devnam);
|
|
|
|
fd = priv_open_device(devnam);
|
2012-06-10 07:21:05 -06:00
|
|
|
if (fd == -1) {
|
2016-09-12 15:57:14 -06:00
|
|
|
LogMessageVerb(X_WARNING, 10, "%s: %s\n", devnam, strerror(errno));
|
2012-06-10 07:21:05 -06:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (ioctl(fd, WSMOUSEIO_GTYPE, &wsmouse_type) != 0) {
|
|
|
|
LogMessageVerb(X_WARNING, 10,
|
2016-09-12 15:57:14 -06:00
|
|
|
"%s: WSMOUSEIO_GTYPE failed\n", devnam);
|
2012-06-10 07:21:05 -06:00
|
|
|
close(fd);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
switch (wsmouse_type) {
|
|
|
|
case WSMOUSE_TYPE_SYNAPTICS:
|
|
|
|
case WSMOUSE_TYPE_ALPS:
|
2012-10-29 07:34:28 -06:00
|
|
|
case WSMOUSE_TYPE_ELANTECH:
|
2015-01-14 18:30:40 -07:00
|
|
|
case WSMOUSE_TYPE_SYNAP_SBTN:
|
2016-09-12 15:57:14 -06:00
|
|
|
wscons_add_pointer(devnam, "synaptics",
|
2012-06-10 07:21:05 -06:00
|
|
|
ATTR_TOUCHPAD);
|
|
|
|
break;
|
|
|
|
case WSMOUSE_TYPE_TPANEL:
|
2016-09-12 15:57:14 -06:00
|
|
|
wscons_add_pointer(devnam, "ws", ATTR_TOUCHSCREEN);
|
2012-06-10 07:21:05 -06:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Add a default entry catching all other mux elements as "ws" */
|
|
|
|
wscons_add_pointer(WSCONS_MOUSE_PREFIX, "ws", ATTR_POINTER);
|
2011-06-29 13:55:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
config_wscons_init(void)
|
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
wscons_add_keyboard();
|
|
|
|
wscons_add_pointers();
|
|
|
|
return 1;
|
2011-06-29 13:55:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
config_wscons_fini(void)
|
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Not much to do ? */
|
2011-06-29 13:55:01 -06:00
|
|
|
}
|