WS keyboard support for atari native keyboards.
This commit is contained in:
parent
ea7837ba99
commit
944993e750
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: kbd.c,v 1.22 2002/10/23 09:10:52 jdolecek Exp $ */
|
||||
/* $NetBSD: kbd.c,v 1.23 2003/02/02 17:56:54 thomas Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995 Leo Weppelman
|
||||
@ -34,6 +34,10 @@
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "mouse.h"
|
||||
#include "ite.h"
|
||||
#include "wskbd.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/device.h>
|
||||
@ -59,7 +63,40 @@
|
||||
#include <atari/dev/kbdmap.h>
|
||||
#include <atari/dev/msvar.h>
|
||||
|
||||
#include "mouse.h"
|
||||
#if NWSKBD>0
|
||||
#include <dev/wscons/wsconsio.h>
|
||||
#include <dev/wscons/wskbdvar.h>
|
||||
#include <dev/wscons/wsksymdef.h>
|
||||
#include <dev/wscons/wsksymvar.h>
|
||||
#include <atari/dev/wskbdmap_atari.h>
|
||||
#endif
|
||||
|
||||
/* WSKBD */
|
||||
/*
|
||||
* If NWSKBD>0 we try to attach an wskbd device to us. What follows
|
||||
* is definitions of callback functions and structures that are passed
|
||||
* to wscons when initializing.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Now with wscons this driver exhibits some weird behaviour.
|
||||
* It may act both as a driver of its own and the md part of the
|
||||
* wskbd driver. Therefore it can be accessed through /dev/kbd
|
||||
* and /dev/wskbd0 both.
|
||||
*
|
||||
* The data from they keyboard may end up in at least four different
|
||||
* places:
|
||||
* - If this driver has been opened (/dev/kbd) and the
|
||||
* direct mode (TIOCDIRECT) has been set, data goes to
|
||||
* the process who opened the device. Data will transmit itself
|
||||
* as described by the firm_event structure.
|
||||
* - If wskbd support is compiled in and a wskbd driver has been
|
||||
* attached then the data is sent to it. Wskbd in turn may
|
||||
* - Send the data in the wscons_event form to a process that
|
||||
* has opened /dev/wskbd0
|
||||
* - Feed the data to a virtual terminal.
|
||||
* - If an ite is present the data may be fed to it.
|
||||
*/
|
||||
|
||||
u_char kbd_modifier; /* Modifier mask */
|
||||
|
||||
@ -84,7 +121,9 @@ void kbdintr __P((int));
|
||||
static void kbdsoft __P((void *, void *));
|
||||
static void kbdattach __P((struct device *, struct device *, void *));
|
||||
static int kbdmatch __P((struct device *, struct cfdata *, void *));
|
||||
#if NITE>0
|
||||
static int kbd_do_modifier __P((u_char));
|
||||
#endif
|
||||
static int kbd_write_poll __P((u_char *, int));
|
||||
static void kbd_pkg_start __P((struct kbd_softc *, u_char));
|
||||
|
||||
@ -96,6 +135,36 @@ const struct cdevsw kbd_cdevsw = {
|
||||
nostop, notty, kbdpoll, nommap, kbdkqfilter,
|
||||
};
|
||||
|
||||
#if NWSKBD>0
|
||||
/* accessops */
|
||||
static int kbd_enable(void *, int);
|
||||
static void kbd_set_leds(void *, int);
|
||||
static int kbd_ioctl(void *, u_long, caddr_t, int, struct proc *);
|
||||
|
||||
/* console ops */
|
||||
static void kbd_getc(void *, u_int *, int *);
|
||||
static void kbd_pollc(void *, int);
|
||||
static void kbd_bell(void *, u_int, u_int, u_int);
|
||||
|
||||
static struct wskbd_accessops kbd_accessops = {
|
||||
kbd_enable,
|
||||
kbd_set_leds,
|
||||
kbd_ioctl
|
||||
};
|
||||
|
||||
static struct wskbd_consops kbd_consops = {
|
||||
kbd_getc,
|
||||
kbd_pollc,
|
||||
kbd_bell
|
||||
};
|
||||
|
||||
/* Pointer to keymaps. */
|
||||
static struct wskbd_mapdata kbd_mapdata = {
|
||||
atarikbd_keydesctab,
|
||||
KB_US
|
||||
};
|
||||
#endif /* WSKBD */
|
||||
|
||||
/*ARGSUSED*/
|
||||
static int
|
||||
kbdmatch(pdp, cfp, auxp)
|
||||
@ -155,6 +224,28 @@ void *auxp;
|
||||
kbd_write_poll(kbd_icmd, sizeof(kbd_icmd));
|
||||
|
||||
printf("\n");
|
||||
|
||||
#if NWSKBD>0
|
||||
if (dp != NULL) {
|
||||
/*
|
||||
* Try to attach the wskbd.
|
||||
*/
|
||||
struct wskbddev_attach_args waa;
|
||||
|
||||
/* Maybe should be done before this?... */
|
||||
wskbd_cnattach(&kbd_consops, NULL, &kbd_mapdata);
|
||||
|
||||
waa.console = 1;
|
||||
waa.keymap = &kbd_mapdata;
|
||||
waa.accessops = &kbd_accessops;
|
||||
waa.accesscookie = NULL;
|
||||
kbd_softc.k_wskbddev = config_found(dp, &waa, wskbddevprint);
|
||||
|
||||
kbd_softc.k_pollingmode = 0;
|
||||
|
||||
kbdenable();
|
||||
}
|
||||
#endif /* WSKBD */
|
||||
}
|
||||
|
||||
void
|
||||
@ -387,8 +478,28 @@ void *junk1, *junk2;
|
||||
kbd_pkg_start(k, code);
|
||||
continue;
|
||||
}
|
||||
#if NWSKBD>0
|
||||
/*
|
||||
* If we have attached a wskbd and not in polling mode and
|
||||
* nobody has opened us directly, then send the keystroke
|
||||
* to the wskbd.
|
||||
*/
|
||||
|
||||
if (kbd_softc.k_pollingmode == 0
|
||||
&& kbd_softc.k_wskbddev != NUL
|
||||
&& k->k_event_mode == 0) {
|
||||
wskbd_input(kbd_softc.k_wskbddev,
|
||||
KBD_RELEASED(code) ?
|
||||
WSCONS_EVENT_KEY_UP :
|
||||
WSCONS_EVENT_KEY_DOWN,
|
||||
KBD_SCANCODE(code));
|
||||
continue;
|
||||
}
|
||||
#endif /* NWSKBD */
|
||||
#if NITE>0
|
||||
if (kbd_do_modifier(code) && !k->k_event_mode)
|
||||
continue;
|
||||
#endif
|
||||
|
||||
/*
|
||||
* if not in event mode, deliver straight to ite to
|
||||
@ -396,7 +507,9 @@ void *junk1, *junk2;
|
||||
*/
|
||||
if (!k->k_event_mode) {
|
||||
/* Gets to spltty() by itself */
|
||||
#if NITE>0
|
||||
ite_filter(code, ITEFILT_TTY);
|
||||
#endif
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -516,7 +629,9 @@ kbdgetcn()
|
||||
continue;
|
||||
}
|
||||
code = KBD->ac_da;
|
||||
#if NITE>0
|
||||
if (!kbd_do_modifier(code))
|
||||
#endif
|
||||
break;
|
||||
}
|
||||
|
||||
@ -641,6 +756,7 @@ u_char msg_start;
|
||||
}
|
||||
}
|
||||
|
||||
#if NITE>0
|
||||
/*
|
||||
* Modifier processing
|
||||
*/
|
||||
@ -681,3 +797,76 @@ u_char code;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if NWSKBD>0
|
||||
/*
|
||||
* These are the callback functions that are passed to wscons.
|
||||
* They really don't do anything worth noting, just call the
|
||||
* other functions above.
|
||||
*/
|
||||
|
||||
static int
|
||||
kbd_enable(void *c, int on)
|
||||
{
|
||||
/* Wonder what this is supposed to do... */
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
kbd_set_leds(void *c, int leds)
|
||||
{
|
||||
/* we can not set the leds */
|
||||
}
|
||||
|
||||
static int
|
||||
kbd_ioctl(void *c, u_long cmd, caddr_t data, int flag, struct proc *p)
|
||||
{
|
||||
struct wskbd_bell_data *kd;
|
||||
|
||||
switch (cmd)
|
||||
{
|
||||
case WSKBDIO_COMPLEXBELL:
|
||||
kd = (struct wskbd_bell_data *)data;
|
||||
kbd_bell(0, kd->pitch, kd->period, kd->volume);
|
||||
return 0;
|
||||
case WSKBDIO_SETLEDS:
|
||||
return 0;
|
||||
case WSKBDIO_GETLEDS:
|
||||
*(int*)data = 0;
|
||||
return 0;
|
||||
case WSKBDIO_GTYPE:
|
||||
*(u_int*)data = WSKBD_TYPE_ATARI;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* We are supposed to return EPASSTHROUGH to wscons if we didn't
|
||||
* understand.
|
||||
*/
|
||||
return (EPASSTHROUGH);
|
||||
}
|
||||
|
||||
static void
|
||||
kbd_getc(void *c, u_int *type, int *data)
|
||||
{
|
||||
int key;
|
||||
key = kbdgetcn();
|
||||
|
||||
*data = KBD_SCANCODE(key);
|
||||
*type = KBD_RELEASED(key) ? WSCONS_EVENT_KEY_UP : WSCONS_EVENT_KEY_DOWN;
|
||||
}
|
||||
|
||||
static void
|
||||
kbd_pollc(void *c, int on)
|
||||
{
|
||||
kbd_softc.k_pollingmode = on;
|
||||
}
|
||||
|
||||
static void
|
||||
kbd_bell(void *v, u_int pitch, u_int duration, u_int volume)
|
||||
{
|
||||
kbd_bell_sparms(volume, pitch, duration);
|
||||
kbdbell();
|
||||
}
|
||||
#endif /* NWSKBD */
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: kbdvar.h,v 1.4 2001/08/31 04:44:56 simonb Exp $ */
|
||||
/* $NetBSD: kbdvar.h,v 1.5 2003/02/02 17:56:55 thomas Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996 Leo Weppelman.
|
||||
@ -51,6 +51,10 @@ struct kbd_softc {
|
||||
u_char k_pkg_type; /* Type of package */
|
||||
u_char *k_sendp; /* Output pointer */
|
||||
int k_send_cnt; /* Chars left for output */
|
||||
#if NWSKBD>0
|
||||
struct device *k_wskbddev; /* pointer to wskbd for sending strokes */
|
||||
int k_pollingmode; /* polling mode on? whatever it isss... */
|
||||
#endif
|
||||
};
|
||||
|
||||
/*
|
||||
|
511
sys/arch/atari/dev/wskbdmap_atari.c
Normal file
511
sys/arch/atari/dev/wskbdmap_atari.c
Normal file
@ -0,0 +1,511 @@
|
||||
/* $NetBSD: wskbdmap_atari.c,v 1.1 2003/02/02 17:56:55 thomas Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Juergen Hannken-Illjes.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the NetBSD
|
||||
* Foundation, Inc. and its contributors.
|
||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: wskbdmap_atari.c,v 1.1 2003/02/02 17:56:55 thomas Exp $");
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <dev/wscons/wsksymdef.h>
|
||||
#include <dev/wscons/wsksymvar.h>
|
||||
#include <dev/pckbc/wskbdmap_mfii.h>
|
||||
|
||||
#define KC(n) KS_KEYCODE(n)
|
||||
|
||||
static const keysym_t atarikbd_keydesc_us[] = {
|
||||
/* pos command normal shifted */
|
||||
KC(1), KS_Cmd_Debugger, KS_Escape,
|
||||
KC(2), KS_1, KS_exclam,
|
||||
KC(3), KS_2, KS_at,
|
||||
KC(4), KS_3, KS_numbersign,
|
||||
KC(5), KS_4, KS_dollar,
|
||||
KC(6), KS_5, KS_percent,
|
||||
KC(7), KS_6, KS_asciicircum,
|
||||
KC(8), KS_7, KS_ampersand,
|
||||
KC(9), KS_8, KS_asterisk,
|
||||
KC(10), KS_9, KS_parenleft,
|
||||
KC(11), KS_0, KS_parenright,
|
||||
KC(12), KS_minus, KS_underscore,
|
||||
KC(13), KS_equal, KS_plus,
|
||||
KC(14), KS_Cmd_ResetEmul, KS_Delete,
|
||||
KC(15), KS_Tab,
|
||||
KC(16), KS_q,
|
||||
KC(17), KS_w,
|
||||
KC(18), KS_e,
|
||||
KC(19), KS_r,
|
||||
KC(20), KS_t,
|
||||
KC(21), KS_y,
|
||||
KC(22), KS_u,
|
||||
KC(23), KS_i,
|
||||
KC(24), KS_o,
|
||||
KC(25), KS_p,
|
||||
KC(26), KS_bracketleft, KS_braceleft,
|
||||
KC(27), KS_bracketright, KS_braceright,
|
||||
KC(28), KS_Return,
|
||||
KC(29), KS_Cmd1, KS_Control_L,
|
||||
KC(30), KS_a,
|
||||
KC(31), KS_s,
|
||||
KC(32), KS_d,
|
||||
KC(33), KS_f,
|
||||
KC(34), KS_g,
|
||||
KC(35), KS_h,
|
||||
KC(36), KS_j,
|
||||
KC(37), KS_k,
|
||||
KC(38), KS_l,
|
||||
KC(39), KS_semicolon, KS_colon,
|
||||
KC(40), KS_apostrophe, KS_quotedbl,
|
||||
KC(41), KS_grave, KS_asciitilde,
|
||||
KC(42), KS_Shift_L,
|
||||
KC(43), KS_backslash, KS_bar,
|
||||
KC(44), KS_z,
|
||||
KC(45), KS_x,
|
||||
KC(46), KS_c,
|
||||
KC(47), KS_v,
|
||||
KC(48), KS_b,
|
||||
KC(49), KS_n,
|
||||
KC(50), KS_m,
|
||||
KC(51), KS_comma, KS_less,
|
||||
KC(52), KS_period, KS_greater,
|
||||
KC(53), KS_slash, KS_question,
|
||||
KC(54), KS_Shift_R,
|
||||
KC(56), KS_Cmd2, KS_Alt_L,
|
||||
KC(57), KS_space,
|
||||
KC(58), KS_Caps_Lock,
|
||||
KC(59), KS_Cmd_Screen0, KS_f1,
|
||||
KC(60), KS_Cmd_Screen1, KS_f2,
|
||||
KC(61), KS_Cmd_Screen2, KS_f3,
|
||||
KC(62), KS_Cmd_Screen3, KS_f4,
|
||||
KC(63), KS_Cmd_Screen4, KS_f5,
|
||||
KC(64), KS_Cmd_Screen5, KS_f6,
|
||||
KC(65), KS_Cmd_Screen6, KS_f7,
|
||||
KC(66), KS_Cmd_Screen7, KS_f8,
|
||||
KC(67), KS_Cmd_Screen8, KS_f9,
|
||||
KC(68), KS_Cmd_Screen9, KS_f10,
|
||||
KC(71), KS_KP_Home,
|
||||
KC(72), KS_KP_Up, KS_KP_8,
|
||||
KC(74), KS_KP_Subtract,
|
||||
KC(75), KS_KP_Left, KS_KP_4,
|
||||
KC(77), KS_KP_Right, KS_KP_6,
|
||||
KC(78), KS_KP_Add,
|
||||
KC(80), KS_KP_Down, KS_KP_2,
|
||||
KC(82), KS_KP_Insert, KS_KP_0,
|
||||
KC(83), KS_KP_Delete, KS_KP_Decimal,
|
||||
KC(97), KS_Pause, /* should be KS_Help. but this is not available */
|
||||
KC(98), KS_Help,
|
||||
KC(99), KS_parenleft, /* should be KS_KP_parenleft */
|
||||
KC(100), KS_parenright, /* should be KS_KP_parenright */
|
||||
KC(101), KS_slash, /* should be KS_KP_slash */
|
||||
KC(102), KS_KP_Multiply,
|
||||
KC(103), KS_KP_7,
|
||||
KC(104), KS_KP_8,
|
||||
KC(105), KS_KP_9,
|
||||
KC(106), KS_KP_4,
|
||||
KC(107), KS_KP_5,
|
||||
KC(108), KS_KP_6,
|
||||
KC(109), KS_KP_1,
|
||||
KC(110), KS_KP_2,
|
||||
KC(111), KS_KP_3,
|
||||
KC(112), KS_KP_0,
|
||||
KC(113), KS_KP_Decimal,
|
||||
KC(114), KS_KP_Enter,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_de[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(3), KS_2, KS_quotedbl,
|
||||
KC(4), KS_3, KS_section,
|
||||
KC(7), KS_6, KS_ampersand,
|
||||
KC(8), KS_7, KS_slash,
|
||||
KC(9), KS_8, KS_parenleft,
|
||||
KC(10), KS_9, KS_parenright,
|
||||
KC(11), KS_0, KS_equal,
|
||||
KC(12), KS_ssharp, KS_question,
|
||||
KC(13), KS_dead_acute, KS_dead_grave,
|
||||
KC(16), KS_q, KS_Q,
|
||||
KC(21), KS_z,
|
||||
KC(26), KS_udiaeresis, KS_Udiaeresis, KS_at, KS_backslash,
|
||||
KC(27), KS_plus, KS_asterisk,
|
||||
KC(39), KS_odiaeresis, KS_Odiaeresis, KS_bracketleft, KS_braceleft,
|
||||
KC(40), KS_adiaeresis, KS_Adiaeresis, KS_bracketright,KS_braceright,
|
||||
KC(41), KS_numbersign, KS_dead_circumflex,
|
||||
KC(43), KS_dead_tilde, KS_bar,
|
||||
KC(44), KS_y,
|
||||
KC(51), KS_comma, KS_semicolon,
|
||||
KC(52), KS_period, KS_colon,
|
||||
KC(53), KS_minus, KS_underscore,
|
||||
KC(56), KS_Mode_switch, KS_Multi_key,
|
||||
KC(96), KS_less, KS_greater,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_de_nodead[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(13), KS_apostrophe, KS_grave,
|
||||
KC(41), KS_numbersign, KS_asciicircum,
|
||||
KC(43), KS_asciitilde, KS_bar,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_dk[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(3), KS_2, KS_quotedbl, KS_at,
|
||||
KC(4), KS_3, KS_numbersign, KS_sterling,
|
||||
KC(5), KS_4, KS_currency, KS_dollar,
|
||||
KC(7), KS_6, KS_ampersand,
|
||||
KC(8), KS_7, KS_slash, KS_braceleft,
|
||||
KC(9), KS_8, KS_parenleft, KS_bracketleft,
|
||||
KC(10), KS_9, KS_parenright, KS_bracketright,
|
||||
KC(11), KS_0, KS_equal, KS_braceright,
|
||||
KC(12), KS_plus, KS_question,
|
||||
KC(13), KS_dead_acute, KS_dead_grave, KS_bar,
|
||||
KC(26), KS_aring,
|
||||
KC(27), KS_dead_diaeresis, KS_dead_circumflex, KS_dead_tilde,
|
||||
KC(39), KS_ae,
|
||||
KC(40), KS_oslash,
|
||||
KC(41), KS_onehalf, KS_paragraph,
|
||||
KC(43), KS_apostrophe, KS_asterisk,
|
||||
KC(51), KS_comma, KS_semicolon,
|
||||
KC(52), KS_period, KS_colon,
|
||||
KC(53), KS_minus, KS_underscore,
|
||||
KC(86), KS_less, KS_greater, KS_backslash,
|
||||
KC(184), KS_Mode_switch, KS_Multi_key,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_dk_nodead[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(13), KS_apostrophe, KS_grave, KS_bar,
|
||||
KC(27), KS_diaeresis, KS_asciicircum, KS_asciitilde,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_sv[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(12), KS_plus, KS_question, KS_backslash,
|
||||
KC(27), KS_dead_diaeresis, KS_dead_circumflex, KS_dead_tilde,
|
||||
KC(39), KS_odiaeresis,
|
||||
KC(40), KS_adiaeresis,
|
||||
KC(41), KS_paragraph, KS_onehalf,
|
||||
KC(86), KS_less, KS_greater, KS_bar,
|
||||
KC(184), KS_Mode_switch, KS_Multi_key,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_sv_nodead[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(13), KS_apostrophe, KS_grave, KS_bar,
|
||||
KC(27), KS_diaeresis, KS_asciicircum, KS_asciitilde,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_no[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(13), KS_backslash, KS_dead_grave, KS_dead_acute,
|
||||
KC(27), KS_dead_diaeresis, KS_dead_circumflex, KS_dead_tilde,
|
||||
KC(39), KS_oslash,
|
||||
KC(40), KS_ae,
|
||||
KC(41), KS_bar, KS_paragraph,
|
||||
KC(86), KS_less, KS_greater,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_no_nodead[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(13), KS_backslash, KS_grave, KS_acute,
|
||||
KC(27), KS_diaeresis, KS_asciicircum, KS_asciitilde,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_fr[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(2), KS_ampersand, KS_1,
|
||||
KC(3), KS_eacute, KS_2, KS_asciitilde,
|
||||
KC(4), KS_quotedbl, KS_3, KS_numbersign,
|
||||
KC(5), KS_apostrophe, KS_4, KS_braceleft,
|
||||
KC(6), KS_parenleft, KS_5, KS_bracketleft,
|
||||
KC(7), KS_minus, KS_6, KS_bar,
|
||||
KC(8), KS_egrave, KS_7, KS_grave,
|
||||
KC(9), KS_underscore, KS_8, KS_backslash,
|
||||
KC(10), KS_ccedilla, KS_9, KS_asciicircum,
|
||||
KC(11), KS_agrave, KS_0, KS_at,
|
||||
KC(12), KS_parenright, KS_degree, KS_bracketright,
|
||||
KC(13), KS_equal, KS_plus, KS_braceright,
|
||||
KC(16), KS_a,
|
||||
KC(17), KS_z,
|
||||
KC(26), KS_dead_circumflex, KS_dead_diaeresis,
|
||||
KC(27), KS_dollar, KS_sterling, KS_currency,
|
||||
KC(30), KS_q,
|
||||
KC(39), KS_m,
|
||||
KC(40), KS_ugrave, KS_percent,
|
||||
KC(41), KS_twosuperior, KS_asciitilde,
|
||||
KC(43), KS_asterisk, KS_mu,
|
||||
KC(44), KS_w,
|
||||
KC(50), KS_comma, KS_question,
|
||||
KC(51), KS_semicolon, KS_period,
|
||||
KC(52), KS_colon, KS_slash,
|
||||
KC(53), KS_exclam, KS_section,
|
||||
KC(86), KS_less, KS_greater,
|
||||
KC(184), KS_Mode_switch, KS_Multi_key,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_it[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(3), KS_2, KS_quotedbl, KS_twosuperior,
|
||||
KC(4), KS_3, KS_sterling, KS_threesuperior,
|
||||
KC(5), KS_4, KS_dollar,
|
||||
KC(6), KS_5, KS_percent,
|
||||
KC(7), KS_6, KS_ampersand,
|
||||
KC(8), KS_7, KS_slash,
|
||||
KC(9), KS_8, KS_parenleft,
|
||||
KC(10), KS_9, KS_parenright,
|
||||
KC(11), KS_0, KS_equal,
|
||||
KC(12), KS_apostrophe, KS_question,
|
||||
KC(13), KS_igrave, KS_asciicircum,
|
||||
KC(26), KS_egrave, KS_eacute, KS_braceleft, KS_bracketleft,
|
||||
KC(27), KS_plus, KS_asterisk, KS_braceright, KS_bracketright,
|
||||
KC(39), KS_ograve, KS_Ccedilla, KS_at,
|
||||
KC(40), KS_agrave, KS_degree, KS_numbersign,
|
||||
KC(41), KS_backslash, KS_bar,
|
||||
KC(43), KS_ugrave, KS_section,
|
||||
KC(51), KS_comma, KS_semicolon,
|
||||
KC(52), KS_period, KS_colon,
|
||||
KC(53), KS_minus, KS_underscore,
|
||||
KC(86), KS_less, KS_greater,
|
||||
KC(184), KS_Mode_switch, KS_Multi_key,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_uk[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(2), KS_1, KS_exclam, KS_plusminus, KS_exclamdown,
|
||||
KC(3), KS_2, KS_quotedbl, KS_twosuperior, KS_cent,
|
||||
KC(4), KS_3, KS_sterling, KS_threesuperior,
|
||||
KC(5), KS_4, KS_dollar, KS_acute, KS_currency,
|
||||
KC(6), KS_5, KS_percent, KS_mu, KS_yen,
|
||||
KC(7), KS_6, KS_asciicircum, KS_paragraph,
|
||||
KC(8), KS_7, KS_ampersand, KS_periodcentered, KS_brokenbar,
|
||||
KC(9), KS_8, KS_asterisk, KS_cedilla, KS_ordfeminine,
|
||||
KC(10), KS_9, KS_parenleft, KS_onesuperior, KS_diaeresis,
|
||||
KC(11), KS_0, KS_parenright, KS_masculine, KS_copyright,
|
||||
KC(12), KS_minus, KS_underscore, KS_hyphen, KS_ssharp,
|
||||
KC(13), KS_equal, KS_plus, KS_onehalf, KS_guillemotleft,
|
||||
KC(40), KS_apostrophe, KS_at, KS_section, KS_Agrave,
|
||||
KC(41), KS_grave, KS_grave, KS_agrave, KS_agrave,
|
||||
KC(43), KS_numbersign, KS_asciitilde, KS_sterling, KS_thorn,
|
||||
KC(86), KS_backslash, KS_bar, KS_Udiaeresis,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_jp[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(3), KS_2, KS_quotedbl,
|
||||
KC(7), KS_6, KS_ampersand,
|
||||
KC(8), KS_7, KS_apostrophe,
|
||||
KC(9), KS_8, KS_parenleft,
|
||||
KC(10), KS_9, KS_parenright,
|
||||
KC(11), KS_0,
|
||||
KC(12), KS_minus, KS_equal,
|
||||
KC(13), KS_asciicircum, KS_asciitilde,
|
||||
KC(26), KS_at, KS_grave,
|
||||
KC(27), KS_bracketleft, KS_braceleft,
|
||||
KC(39), KS_semicolon, KS_plus,
|
||||
KC(40), KS_colon, KS_asterisk,
|
||||
KC(41), KS_Zenkaku_Hankaku, /* replace grave/tilde */
|
||||
KC(43), KS_bracketright, KS_braceright,
|
||||
KC(112), KS_Hiragana_Katakana,
|
||||
KC(115), KS_backslash, KS_underscore,
|
||||
KC(121), KS_Henkan,
|
||||
KC(123), KS_Muhenkan,
|
||||
KC(125), KS_backslash, KS_bar,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_es[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(2), KS_1, KS_exclam, KS_bar,
|
||||
KC(3), KS_2, KS_quotedbl, KS_at,
|
||||
KC(4), KS_3, KS_periodcentered, KS_numbersign,
|
||||
KC(5), KS_4, KS_dollar, KS_asciitilde,
|
||||
KC(7), KS_6, KS_ampersand,
|
||||
KC(8), KS_7, KS_slash,
|
||||
KC(9), KS_8, KS_parenleft,
|
||||
KC(10), KS_9, KS_parenright,
|
||||
KC(11), KS_0, KS_equal,
|
||||
KC(12), KS_apostrophe, KS_question,
|
||||
KC(13), KS_exclamdown, KS_questiondown,
|
||||
KC(26), KS_dead_grave, KS_dead_circumflex, KS_bracketleft,
|
||||
KC(27), KS_plus, KS_asterisk, KS_bracketright,
|
||||
KC(39), KS_ntilde,
|
||||
KC(40), KS_dead_acute, KS_dead_diaeresis, KS_braceleft,
|
||||
KC(41), KS_degree, KS_ordfeminine, KS_backslash,
|
||||
KC(43), KS_ccedilla, KS_Ccedilla, KS_braceright,
|
||||
KC(51), KS_comma, KS_semicolon,
|
||||
KC(52), KS_period, KS_colon,
|
||||
KC(53), KS_minus, KS_underscore,
|
||||
KC(86), KS_less, KS_greater,
|
||||
KC(184), KS_Mode_switch, KS_Multi_key,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_us_declk[] = {
|
||||
/* pos normal shifted altgr shift-altgr */
|
||||
KC(1), KS_grave, KS_asciitilde, /* replace escape */
|
||||
KC(41), KS_less, KS_greater, /* replace grave/tilde */
|
||||
KC(143), KS_Multi_key, /* left compose */
|
||||
KC(157), KS_Multi_key, /* right compose, replace right control */
|
||||
KC(87), KS_Cmd_Debugger, KS_Escape, /* replace F11 */
|
||||
KC(189), KS_f13,
|
||||
KC(190), KS_f14,
|
||||
KC(191), KS_Help,
|
||||
KC(192), KS_Execute,
|
||||
KC(193), KS_f17,
|
||||
KC(183), KS_f18,
|
||||
KC(70), KS_f19, /* replace scroll lock */
|
||||
KC(127), KS_f20, /* replace break */
|
||||
KC(69), KS_KP_F1, /* replace num lock */
|
||||
KC(181), KS_KP_F2, /* replace divide */
|
||||
KC(55), KS_KP_F3, /* replace multiply */
|
||||
KC(74), KS_KP_F4, /* replace subtract */
|
||||
|
||||
/* keypad is numbers only - no num lock */
|
||||
KC(71), KS_KP_7,
|
||||
KC(72), KS_KP_8,
|
||||
KC(73), KS_KP_9,
|
||||
KC(75), KS_KP_4,
|
||||
KC(76), KS_KP_5,
|
||||
KC(77), KS_KP_6,
|
||||
KC(79), KS_KP_1,
|
||||
KC(80), KS_KP_2,
|
||||
KC(81), KS_KP_3,
|
||||
KC(82), KS_KP_0,
|
||||
KC(83), KS_KP_Decimal,
|
||||
|
||||
KC(206), KS_KP_Subtract,
|
||||
KC(78), KS_KP_Separator, /* replace add */
|
||||
KC(199), KS_Find, /* replace home */
|
||||
KC(207), KS_Select, /* replace end */
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_us_dvorak[] = {
|
||||
/* pos command normal shifted */
|
||||
KC(12), KS_bracketleft, KS_braceleft,
|
||||
KC(13), KS_bracketright, KS_braceright,
|
||||
KC(16), KS_apostrophe, KS_quotedbl,
|
||||
KC(17), KS_comma, KS_less,
|
||||
KC(18), KS_period, KS_greater,
|
||||
KC(19), KS_p,
|
||||
KC(20), KS_y,
|
||||
KC(21), KS_f,
|
||||
KC(22), KS_g,
|
||||
KC(23), KS_c,
|
||||
KC(24), KS_r,
|
||||
KC(25), KS_l,
|
||||
KC(26), KS_slash, KS_question,
|
||||
KC(27), KS_equal, KS_plus,
|
||||
KC(31), KS_o,
|
||||
KC(32), KS_e,
|
||||
KC(33), KS_u,
|
||||
KC(34), KS_i,
|
||||
KC(35), KS_d,
|
||||
KC(36), KS_h,
|
||||
KC(37), KS_t,
|
||||
KC(38), KS_n,
|
||||
KC(39), KS_s,
|
||||
KC(40), KS_minus, KS_underscore,
|
||||
KC(44), KS_semicolon, KS_colon,
|
||||
KC(45), KS_q,
|
||||
KC(46), KS_j,
|
||||
KC(47), KS_k,
|
||||
KC(48), KS_x,
|
||||
KC(49), KS_b,
|
||||
KC(51), KS_w,
|
||||
KC(52), KS_v,
|
||||
KC(53), KS_z,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_swapctrlcaps[] = {
|
||||
/* pos command normal shifted */
|
||||
KC(29), KS_Caps_Lock,
|
||||
KC(58), KS_Cmd1, KS_Control_L,
|
||||
};
|
||||
|
||||
static const keysym_t atarikbd_keydesc_iopener[] = {
|
||||
/* pos command normal shifted */
|
||||
KC(59), KS_Cmd_Debugger, KS_Escape,
|
||||
KC(60), KS_Cmd_Screen0, KS_f1,
|
||||
KC(61), KS_Cmd_Screen1, KS_f2,
|
||||
KC(62), KS_Cmd_Screen2, KS_f3,
|
||||
KC(63), KS_Cmd_Screen3, KS_f4,
|
||||
KC(64), KS_Cmd_Screen4, KS_f5,
|
||||
KC(65), KS_Cmd_Screen5, KS_f6,
|
||||
KC(66), KS_Cmd_Screen6, KS_f7,
|
||||
KC(67), KS_Cmd_Screen7, KS_f8,
|
||||
KC(68), KS_Cmd_Screen8, KS_f9,
|
||||
KC(87), KS_Cmd_Screen9, KS_f10,
|
||||
KC(88), KS_f11,
|
||||
};
|
||||
|
||||
#define KBD_MAP(name, base, map) \
|
||||
{ name, base, sizeof(map)/sizeof(keysym_t), map }
|
||||
/* KBD_NULLMAP generates a entry for machine native variant.
|
||||
the entry will be modified by machine dependent keyboard driver. */
|
||||
#define KBD_NULLMAP(name, base) { name, base, 0, 0 }
|
||||
|
||||
const struct wscons_keydesc atarikbd_keydesctab[] = {
|
||||
KBD_MAP(KB_US, 0, atarikbd_keydesc_us),
|
||||
KBD_MAP(KB_DE, KB_US, atarikbd_keydesc_de),
|
||||
KBD_MAP(KB_DE | KB_NODEAD, KB_DE, atarikbd_keydesc_de_nodead),
|
||||
KBD_MAP(KB_FR, KB_US, atarikbd_keydesc_fr),
|
||||
KBD_MAP(KB_DK, KB_US, atarikbd_keydesc_dk),
|
||||
KBD_MAP(KB_DK | KB_NODEAD, KB_DK, atarikbd_keydesc_dk_nodead),
|
||||
KBD_MAP(KB_IT, KB_US, atarikbd_keydesc_it),
|
||||
KBD_MAP(KB_UK, KB_US, atarikbd_keydesc_uk),
|
||||
KBD_MAP(KB_JP, KB_US, atarikbd_keydesc_jp),
|
||||
KBD_MAP(KB_SV, KB_DK, atarikbd_keydesc_sv),
|
||||
KBD_MAP(KB_SV | KB_NODEAD, KB_SV, atarikbd_keydesc_sv_nodead),
|
||||
KBD_MAP(KB_NO, KB_DK, atarikbd_keydesc_no),
|
||||
KBD_MAP(KB_NO | KB_NODEAD, KB_NO, atarikbd_keydesc_no_nodead),
|
||||
KBD_MAP(KB_US | KB_DECLK, KB_US, atarikbd_keydesc_us_declk),
|
||||
KBD_MAP(KB_US | KB_DVORAK, KB_US, atarikbd_keydesc_us_dvorak),
|
||||
KBD_MAP(KB_US | KB_SWAPCTRLCAPS, KB_US, atarikbd_keydesc_swapctrlcaps),
|
||||
KBD_MAP(KB_US | KB_IOPENER, KB_US, atarikbd_keydesc_iopener),
|
||||
KBD_MAP(KB_JP | KB_SWAPCTRLCAPS, KB_JP, atarikbd_keydesc_swapctrlcaps),
|
||||
KBD_MAP(KB_FR | KB_SWAPCTRLCAPS, KB_FR, atarikbd_keydesc_swapctrlcaps),
|
||||
KBD_MAP(KB_US | KB_DVORAK | KB_SWAPCTRLCAPS, KB_US | KB_DVORAK,
|
||||
atarikbd_keydesc_swapctrlcaps),
|
||||
KBD_MAP(KB_US | KB_IOPENER | KB_SWAPCTRLCAPS, KB_US | KB_IOPENER,
|
||||
atarikbd_keydesc_swapctrlcaps),
|
||||
KBD_MAP(KB_ES , KB_US, atarikbd_keydesc_es),
|
||||
KBD_NULLMAP(KB_US | KB_MACHDEP, KB_US),
|
||||
KBD_NULLMAP(KB_JP | KB_MACHDEP, KB_JP),
|
||||
KBD_NULLMAP(KB_US | KB_MACHDEP | KB_SWAPCTRLCAPS,
|
||||
KB_US | KB_SWAPCTRLCAPS),
|
||||
KBD_NULLMAP(KB_JP | KB_MACHDEP | KB_SWAPCTRLCAPS,
|
||||
KB_JP | KB_SWAPCTRLCAPS),
|
||||
{0, 0, 0, 0}
|
||||
};
|
||||
|
||||
#undef KBD_MAP
|
||||
#undef KC
|
39
sys/arch/atari/dev/wskbdmap_atari.h
Normal file
39
sys/arch/atari/dev/wskbdmap_atari.h
Normal file
@ -0,0 +1,39 @@
|
||||
/* $NetBSD: wskbdmap_atari.h,v 1.1 2003/02/02 17:56:55 thomas Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Juergen Hannken-Illjes.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the NetBSD
|
||||
* Foundation, Inc. and its contributors.
|
||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
extern const struct wscons_keydesc atarikbd_keydesctab[];
|
Loading…
Reference in New Issue
Block a user