summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2005-05-14 15:25:21 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2005-05-14 15:25:21 +0000
commita8ade9c9993dbdb162e89df7d596c0973621333b (patch)
tree4f34563508362d42bc6600ff16f700cf812f2de8 /sys/dev
parent56a383f940720375d72fc2cd0afafa44b214a2e8 (diff)
Factorize most of the high-level logic for Sun serial keyboards in
sys/dev/sun/sunkbd.c, and move the layout tables to sys/dev/sun/sunkbdmap.c. No functional changes, small sparc64 kernel shrinkage.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/sun/files.sun3
-rw-r--r--sys/dev/sun/sunkbd.c1170
-rw-r--r--sys/dev/sun/sunkbdmap.c1036
-rw-r--r--sys/dev/sun/sunkbdvar.h25
4 files changed, 1248 insertions, 986 deletions
diff --git a/sys/dev/sun/files.sun b/sys/dev/sun/files.sun
index ae0d3c37137..6cf5f83f36f 100644
--- a/sys/dev/sun/files.sun
+++ b/sys/dev/sun/files.sun
@@ -1,7 +1,8 @@
-# $OpenBSD: files.sun,v 1.2 2003/01/14 19:56:32 jason Exp $
+# $OpenBSD: files.sun,v 1.3 2005/05/14 15:25:20 miod Exp $
# $NetBSD: files.sun,v 1.1 1996/05/29 21:54:34 pk Exp $
#
# Configuration file for devices found on Sun machines.
#
define sunkbd
file dev/sun/sunkbd.c sunkbd
+file dev/sun/sunkbdmap.c sunkbd
diff --git a/sys/dev/sun/sunkbd.c b/sys/dev/sun/sunkbd.c
index 51b6e1daf83..2c750f061ed 100644
--- a/sys/dev/sun/sunkbd.c
+++ b/sys/dev/sun/sunkbd.c
@@ -1,7 +1,6 @@
-/* $OpenBSD: sunkbd.c,v 1.19 2005/02/28 20:32:34 miod Exp $ */
+/* $OpenBSD: sunkbd.c,v 1.20 2005/05/14 15:25:20 miod Exp $ */
/*
- * Copyright (c) 2002, 2003 Miodrag Vallat.
* Copyright (c) 2002 Jason L. Wright (jason@thought.net)
* All rights reserved.
*
@@ -36,1000 +35,203 @@
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/kernel.h>
+#include <sys/timeout.h>
#include <dev/wscons/wsconsio.h>
#include <dev/wscons/wskbdvar.h>
-#include <dev/wscons/wsksymdef.h>
-#include <dev/wscons/wsksymvar.h>
#include <dev/sun/sunkbdreg.h>
#include <dev/sun/sunkbdvar.h>
-#define KC(n) KS_KEYCODE(n)
-
-/* 000/021/022 US English type 4/5 keyboard */
-const keysym_t sunkbd_keydesc_us[] = {
- KC(0x01), KS_Cmd,
- KC(0x02), KS_Cmd_BrightnessDown,
- KC(0x03), KS_Again,
- KC(0x04), KS_Cmd_BrightnessUp,
- KC(0x05), KS_f1,
- KC(0x06), KS_f2,
- KC(0x07), KS_f10,
- KC(0x08), KS_f3,
- KC(0x09), KS_f11,
- KC(0x0a), KS_f4,
- KC(0x0b), KS_f12,
- KC(0x0c), KS_f5,
- KC(0x0d), KS_Alt_R,
- KC(0x0e), KS_f6,
- KC(0x10), KS_f7,
- KC(0x11), KS_f8,
- KC(0x12), KS_f9,
- KC(0x13), KS_Alt_L,
- KC(0x14), KS_Up,
- KC(0x15), KS_Pause,
- KC(0x16), KS_Print_Screen,
- KC(0x17), KS_Hold_Screen,
- KC(0x18), KS_Left,
- KC(0x19), KS_Props,
- KC(0x1a), KS_Undo,
- KC(0x1b), KS_Down,
- KC(0x1c), KS_Right,
- KC(0x1d), KS_Escape,
- KC(0x1e), KS_1, KS_exclam,
- KC(0x1f), KS_2, KS_at,
- KC(0x20), KS_3, KS_numbersign,
- KC(0x21), KS_4, KS_dollar,
- KC(0x22), KS_5, KS_percent,
- KC(0x23), KS_6, KS_asciicircum,
- KC(0x24), KS_7, KS_ampersand,
- KC(0x25), KS_8, KS_asterisk,
- KC(0x26), KS_9, KS_parenleft,
- KC(0x27), KS_0, KS_parenright,
- KC(0x28), KS_minus, KS_underscore,
- KC(0x29), KS_equal, KS_plus,
- KC(0x2a), KS_grave, KS_asciitilde,
- KC(0x2b), KS_Delete,
- KC(0x2c), KS_Insert,
- KC(0x2d), KS_KP_Equal,
- KC(0x2e), KS_KP_Divide,
- KC(0x2f), KS_KP_Multiply,
- KC(0x31), KS_Front,
- KC(0x32), KS_KP_Delete, KS_KP_Decimal,
- KC(0x33), KS_Copy,
- KC(0x34), KS_Home,
- KC(0x35), KS_Tab,
- KC(0x36), KS_q,
- KC(0x37), KS_w,
- KC(0x38), KS_e,
- KC(0x39), KS_r,
- KC(0x3a), KS_t,
- KC(0x3b), KS_y,
- KC(0x3c), KS_u,
- KC(0x3d), KS_i,
- KC(0x3e), KS_o,
- KC(0x3f), KS_p,
- KC(0x40), KS_bracketleft, KS_braceleft,
- KC(0x41), KS_bracketright,KS_braceright,
- KC(0x42), KS_Delete,
- KC(0x43), KS_Multi_key,
- KC(0x44), KS_KP_Home, KS_KP_7,
- KC(0x45), KS_KP_Up, KS_KP_8,
- KC(0x46), KS_KP_Prior, KS_KP_9,
- KC(0x47), KS_KP_Subtract,
- KC(0x48), KS_Open,
- KC(0x49), KS_Paste,
- KC(0x4a), KS_End,
- KC(0x4c), KS_Control_L,
- KC(0x4d), KS_Cmd_Debugger, KS_a,
- KC(0x4e), KS_s,
- KC(0x4f), KS_d,
- KC(0x50), KS_f,
- KC(0x51), KS_g,
- KC(0x52), KS_h,
- KC(0x53), KS_j,
- KC(0x54), KS_k,
- KC(0x55), KS_l,
- KC(0x56), KS_semicolon, KS_colon,
- KC(0x57), KS_apostrophe, KS_quotedbl,
- KC(0x58), KS_backslash, KS_bar,
- KC(0x59), KS_Return,
- KC(0x5a), KS_KP_Enter,
- KC(0x5b), KS_KP_Left, KS_KP_4,
- KC(0x5c), KS_KP_Begin, KS_KP_5,
- KC(0x5d), KS_KP_Right, KS_KP_6,
- KC(0x5e), KS_KP_Insert, KS_KP_0,
- KC(0x5f), KS_Find,
- KC(0x60), KS_Prior,
- KC(0x61), KS_Cut,
- KC(0x62), KS_Num_Lock,
- KC(0x63), KS_Shift_L,
- KC(0x64), KS_z,
- KC(0x65), KS_x,
- KC(0x66), KS_c,
- KC(0x67), KS_v,
- KC(0x68), KS_b,
- KC(0x69), KS_n,
- KC(0x6a), KS_m,
- KC(0x6b), KS_comma, KS_less,
- KC(0x6c), KS_period, KS_greater,
- KC(0x6d), KS_slash, KS_question,
- KC(0x6e), KS_Shift_R,
- KC(0x6f), KS_Linefeed,
- KC(0x70), KS_KP_End, KS_KP_1,
- KC(0x71), KS_KP_Down, KS_KP_2,
- KC(0x72), KS_KP_Next, KS_KP_3,
- KC(0x76), KS_Help,
- KC(0x77), KS_Caps_Lock,
- KC(0x78), KS_Meta_L,
- KC(0x79), KS_space,
- KC(0x7a), KS_Meta_R,
- KC(0x7b), KS_Next,
- KC(0x7d), KS_KP_Add,
-};
-
-/* 002 French/Belgian type 4 keyboard */
-const keysym_t sunkbd_keydesc_befr[] = {
- KC(0x0d), KS_Caps_Lock,
- KC(0x0f), KS_bracketright,KS_braceright, KS_guillemotright,
- KC(0x1e), KS_ampersand, KS_1,
- KC(0x1f), KS_eacute, KS_2, KS_twosuperior,
- KC(0x20), KS_quotedbl, KS_3, KS_threesuperior,
- KC(0x21), KS_apostrophe, KS_4,
- KC(0x22), KS_parenleft, KS_5,
- KC(0x23), KS_section, KS_6,
- KC(0x24), KS_egrave, KS_7,
- KC(0x25), KS_exclam, KS_8, KS_sterling,
- KC(0x26), KS_ccedilla, KS_9, KS_backslash,
- KC(0x27), KS_agrave, KS_0,
- KC(0x28), KS_parenright, KS_degree, KS_asciitilde,
- KC(0x29), KS_minus, KS_underscore, KS_numbersign,
- KC(0x2a), KS_asterisk, KS_bar, KS_currency,
- KC(0x36), KS_a,
- KC(0x37), KS_z,
- KC(0x40), KS_dead_circumflex,KS_dead_diaeresis,
- KC(0x41), KS_grave, KS_dollar, KS_at,
- KC(0x4d), KS_Cmd_Debugger, KS_q,
- KC(0x56), KS_m, KS_M, KS_mu,
- KC(0x57), KS_ugrave, KS_percent,
- KC(0x58), KS_bracketleft, KS_braceleft, KS_guillemotleft,
- KC(0x64), KS_w,
- KC(0x6a), KS_comma, KS_question,
- KC(0x6b), KS_semicolon, KS_period,
- KC(0x6c), KS_colon, KS_slash,
- KC(0x6d), KS_equal, KS_plus,
- KC(0x77), KS_Mode_switch,
- KC(0x7c), KS_less, KS_greater,
-};
-
-/* 023 French type 5 keyboard */
-const keysym_t sunkbd5_keydesc_fr[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x1e), KS_ampersand, KS_1,
- KC(0x1f), KS_eacute, KS_2, KS_asciitilde,
- KC(0x20), KS_quotedbl, KS_3, KS_numbersign,
- KC(0x21), KS_apostrophe, KS_4, KS_braceleft,
- KC(0x22), KS_parenleft, KS_5, KS_bracketleft,
- KC(0x23), KS_minus, KS_6, KS_bar,
- KC(0x24), KS_egrave, KS_7, KS_grave,
- KC(0x25), KS_underscore, KS_8, KS_backslash,
- KC(0x26), KS_ccedilla, KS_9, KS_asciicircum,
- KC(0x27), KS_agrave, KS_0, KS_at,
- KC(0x28), KS_parenright, KS_degree, KS_bracketright,
- KC(0x29), KS_equal, KS_plus, KS_braceright,
- KC(0x2a), KS_twosuperior,
- KC(0x36), KS_a,
- KC(0x37), KS_z,
- KC(0x40), KS_dead_circumflex,KS_dead_diaeresis,
- KC(0x41), KS_dollar, KS_sterling, KS_currency,
- KC(0x4d), KS_Cmd_Debugger, KS_q,
- KC(0x56), KS_m,
- KC(0x57), KS_ugrave, KS_percent,
- KC(0x58), KS_asterisk, KS_mu,
- KC(0x64), KS_w,
- KC(0x6a), KS_comma, KS_question,
- KC(0x6b), KS_semicolon, KS_period,
- KC(0x6c), KS_colon, KS_slash,
- KC(0x6d), KS_exclam, KS_section,
- KC(0x7c), KS_less, KS_greater,
-};
-
-/* 004 Danish type 4 keyboard */
-const keysym_t sunkbd_keydesc_dk[] = {
- KC(0x0d), KS_Multi_key,
- KC(0x0f), KS_asciitilde, KS_asciicircum,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_numbersign, KS_sterling,
- KC(0x21), KS_4, KS_currency, KS_dollar,
- KC(0x23), KS_6, KS_ampersand,
- KC(0x24), KS_7, KS_slash, KS_braceleft,
- KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
- KC(0x26), KS_9, KS_parenright, KS_bracketright,
- KC(0x27), KS_0, KS_equal, KS_braceright,
- KC(0x28), KS_plus, KS_question,
- KC(0x29), KS_dead_acute, KS_dead_grave, KS_bar,
- KC(0x2a), KS_apostrophe, KS_asterisk, KS_grave,
- KC(0x40), KS_aring,
- KC(0x41), KS_dead_diaeresis,KS_dead_circumflex,KS_dead_tilde,
- KC(0x43), KS_Mode_switch,
- KC(0x4c), KS_Caps_Lock,
- KC(0x56), KS_ae,
- KC(0x57), KS_oslash,
- KC(0x58), KS_onehalf, KS_section,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x77), KS_Control_L,
- KC(0x7c), KS_less, KS_greater, KS_backslash,
-};
-
-/* 024 Danish type 5 keyboard */
-const keysym_t sunkbd5_keydesc_dk[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_numbersign, KS_sterling,
- KC(0x21), KS_4, KS_currency, KS_dollar,
- KC(0x22), KS_5, KS_percent, KS_asciitilde,
- KC(0x23), KS_6, KS_ampersand, KS_asciicircum,
- KC(0x24), KS_7, KS_slash, KS_braceleft,
- KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
- KC(0x26), KS_9, KS_parenright, KS_bracketright,
- KC(0x27), KS_0, KS_equal, KS_braceright,
- KC(0x28), KS_plus, KS_question,
- KC(0x29), KS_dead_acute, KS_dead_grave, KS_bar,
- KC(0x2a), KS_onehalf, KS_asterisk, KS_grave,
- KC(0x40), KS_aring,
- KC(0x41), KS_dead_diaeresis,KS_dead_circumflex,KS_dead_tilde,
- KC(0x56), KS_ae,
- KC(0x57), KS_oslash,
- KC(0x58), KS_backslash, KS_asterisk, KS_grave,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x7c), KS_less, KS_greater, KS_backslash,
-};
-
-/* 005 German type 4 keyboard */
-const keysym_t sunkbd_keydesc_de[] = {
- KC(0x0d), KS_Alt_L,
- KC(0x0f), KS_bracketright,KS_braceright, KS_guillemotright,
- KC(0x13), KS_Mode_switch,
- KC(0x1f), KS_2, KS_quotedbl, KS_twosuperior,
- KC(0x20), KS_3, KS_section, KS_threesuperior,
- KC(0x23), KS_6, KS_ampersand,
- KC(0x24), KS_7, KS_slash, KS_degree,
- KC(0x25), KS_8, KS_parenleft, KS_grave,
- KC(0x26), KS_9, KS_parenright, KS_apostrophe,
- KC(0x27), KS_0, KS_equal, KS_bar,
- KC(0x28), KS_ssharp, KS_question, KS_backslash,
- KC(0x29), KS_dead_acute, KS_dead_grave,
- KC(0x2a), KS_numbersign, KS_asciicircum, KS_at,
- KC(0x3b), KS_z,
- KC(0x40), KS_udiaeresis,
- KC(0x41), KS_plus, KS_multiply, KS_asciitilde,
- KC(0x4c), KS_Caps_Lock,
- KC(0x56), KS_odiaeresis,
- KC(0x57), KS_adiaeresis,
- KC(0x58), KS_bracketleft, KS_braceleft, KS_guillemotleft,
- KC(0x64), KS_y,
- KC(0x6a), KS_m, KS_M, KS_mu,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x77), KS_Control_L,
- KC(0x7c), KS_less, KS_greater,
-};
-
-/* 025 German type 5 keyboard */
-const keysym_t sunkbd5_keydesc_de[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x1f), KS_2, KS_quotedbl, KS_twosuperior,
- KC(0x20), KS_3, KS_section, KS_threesuperior,
- KC(0x23), KS_6, KS_ampersand,
- KC(0x24), KS_7, KS_slash, KS_braceleft,
- KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
- KC(0x26), KS_9, KS_parenright, KS_bracketright,
- KC(0x27), KS_0, KS_equal, KS_braceright,
- KC(0x28), KS_ssharp, KS_question, KS_backslash,
- KC(0x29), KS_dead_acute, KS_dead_grave,
- KC(0x2a), KS_asciicircum, KS_degree,
- KC(0x36), KS_q, KS_Q, KS_at,
- KC(0x3b), KS_z,
- KC(0x40), KS_udiaeresis,
- KC(0x41), KS_plus, KS_multiply, KS_asciitilde,
- KC(0x56), KS_odiaeresis,
- KC(0x57), KS_adiaeresis,
- KC(0x58), KS_numbersign, KS_apostrophe, KS_grave,
- KC(0x64), KS_y,
- KC(0x6a), KS_m, KS_M, KS_mu,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x7c), KS_less, KS_greater, KS_bar,
-};
-
-/* 006 Italian type 4 keyboard */
-const keysym_t sunkbd_keydesc_it[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x0f), KS_bracketright,KS_braceright, KS_guillemotright,
- KC(0x1f), KS_2, KS_quotedbl, KS_twosuperior,
- KC(0x20), KS_3, KS_sterling, KS_threesuperior,
- KC(0x23), KS_6, KS_ampersand, KS_notsign,
- KC(0x24), KS_7, KS_slash,
- KC(0x25), KS_8, KS_parenleft,
- KC(0x26), KS_9, KS_parenright, KS_backslash,
- KC(0x27), KS_0, KS_equal, KS_bar,
- KC(0x28), KS_apostrophe, KS_question, KS_grave,
- KC(0x29), KS_igrave, KS_asciicircum,
- KC(0x2a), KS_ugrave, KS_section,
- KC(0x40), KS_egrave, KS_eacute,
- KC(0x41), KS_plus, KS_asterisk, KS_asciitilde,
- KC(0x4c), KS_Caps_Lock,
- KC(0x56), KS_ograve, KS_ccedilla, KS_at,
- KC(0x57), KS_agrave, KS_degree, KS_numbersign,
- KC(0x58), KS_bracketleft, KS_braceleft, KS_guillemotleft,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x77), KS_Control_L,
- KC(0x7c), KS_less, KS_greater,
-};
-
-/* 026 Italian type 5 keyboard */
-const keysym_t sunkbd5_keydesc_it[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x1f), KS_2, KS_quotedbl,
- KC(0x20), KS_3, KS_sterling,
- KC(0x23), KS_6, KS_ampersand,
- KC(0x24), KS_7, KS_slash,
- KC(0x25), KS_8, KS_parenleft, KS_braceleft,
- KC(0x26), KS_9, KS_parenright, KS_braceright,
- KC(0x27), KS_0, KS_equal,
- KC(0x28), KS_apostrophe, KS_question, KS_grave,
- KC(0x29), KS_igrave, KS_asciicircum,
- KC(0x2a), KS_backslash, KS_bar,
- KC(0x40), KS_egrave, KS_eacute, KS_bracketleft,
- KC(0x41), KS_plus, KS_asterisk, KS_bracketright,
- KC(0x56), KS_ograve, KS_ccedilla, KS_at,
- KC(0x57), KS_agrave, KS_degree, KS_numbersign,
- KC(0x58), KS_ugrave, KS_section, KS_asciitilde,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x7c), KS_less, KS_greater,
-};
-
-/* 007 Dutch type 4 keyboard */
-const keysym_t sunkbd_keydesc_nl[] = {
- KC(0x0d), KS_Caps_Lock,
- KC(0x0f), KS_backslash, KS_bar,
- KC(0x1e), KS_1, KS_exclam, KS_onesuperior,
- KC(0x1f), KS_2, KS_quotedbl, KS_twosuperior,
- KC(0x20), KS_3, KS_numbersign, KS_threesuperior,
- KC(0x21), KS_4, KS_dollar, KS_onequarter,
- KC(0x22), KS_5, KS_percent, KS_onehalf,
- KC(0x23), KS_6, KS_ampersand, KS_threequarters,
- KC(0x24), KS_7, KS_underscore, KS_sterling,
- KC(0x25), KS_8, KS_parenleft, KS_braceleft,
- KC(0x26), KS_9, KS_parenright, KS_braceright,
- KC(0x27), KS_0, KS_apostrophe, KS_grave,
- KC(0x28), KS_slash, KS_question,
- KC(0x29), KS_degree, KS_dead_tilde, KS_dead_abovering,
- KC(0x2a), KS_less, KS_greater,
- KC(0x40), KS_dead_diaeresis,KS_dead_circumflex,
- KC(0x41), KS_asterisk, KS_brokenbar, KS_asciitilde,
- KC(0x4e), KS_s, KS_S, KS_ssharp,
- KC(0x56), KS_plus, KS_plusminus,
- KC(0x57), KS_dead_acute, KS_dead_grave,
- KC(0x58), KS_at, KS_section, KS_notsign,
- KC(0x64), KS_z, KS_Z, KS_guillemotleft,
- KC(0x65), KS_x, KS_X, KS_guillemotright,
- KC(0x66), KS_c, KS_C, KS_cent,
- KC(0x6a), KS_m, KS_M, KS_mu,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_equal,
- KC(0x77), KS_Mode_switch,
- KC(0x7d), KS_bracketright,KS_bracketleft,
-};
-
-/* 027 Dutch type 5 keyboard */
-const keysym_t sunkbd5_keydesc_nl[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x1e), KS_1, KS_exclam, KS_onesuperior,
- KC(0x1f), KS_2, KS_quotedbl, KS_twosuperior,
- KC(0x20), KS_3, KS_numbersign, KS_threesuperior,
- KC(0x21), KS_4, KS_dollar, KS_onequarter,
- KC(0x22), KS_5, KS_percent, KS_onehalf,
- KC(0x23), KS_6, KS_ampersand, KS_threequarters,
- KC(0x24), KS_7, KS_underscore, KS_sterling,
- KC(0x25), KS_8, KS_parenleft, KS_braceleft,
- KC(0x26), KS_9, KS_parenright, KS_braceright,
- KC(0x27), KS_0, KS_apostrophe, KS_grave,
- KC(0x28), KS_slash, KS_question, KS_backslash,
- KC(0x29), KS_degree, KS_dead_tilde, KS_dead_abovering,
- KC(0x2a), KS_at, KS_section, KS_notsign,
- KC(0x40), KS_dead_diaeresis,KS_dead_circumflex,
- KC(0x41), KS_asterisk, KS_bar, KS_asciitilde,
- KC(0x4e), KS_s, KS_S, KS_ssharp,
- KC(0x56), KS_plus, KS_plusminus,
- KC(0x57), KS_dead_acute, KS_dead_grave,
- KC(0x58), KS_less, KS_greater, KS_asciicircum,
- KC(0x64), KS_z, KS_Z, KS_guillemotleft,
- KC(0x65), KS_x, KS_X, KS_guillemotright,
- KC(0x66), KS_c, KS_C, KS_cent,
- KC(0x6a), KS_m, KS_M, KS_mu,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon, KS_hyphen,
- KC(0x6d), KS_minus, KS_equal,
- KC(0x7d), KS_bracketright,KS_bracketleft, KS_brokenbar,
-};
-
-/* 008 Norwegian type 4 keyboard */
-const keysym_t sunkbd_keydesc_no[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x0f), KS_asciitilde, KS_asciicircum,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_numbersign, KS_sterling,
- KC(0x21), KS_4, KS_currency, KS_dollar,
- KC(0x23), KS_6, KS_ampersand,
- KC(0x24), KS_7, KS_slash, KS_braceleft,
- KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
- KC(0x26), KS_9, KS_parenright, KS_bracketright,
- KC(0x27), KS_0, KS_equal, KS_braceright,
- KC(0x28), KS_plus, KS_question,
- KC(0x29), KS_backslash, KS_dead_grave, KS_dead_acute,
- KC(0x2a), KS_apostrophe, KS_asterisk, KS_grave,
- KC(0x40), KS_aring,
- KC(0x41), KS_dead_diaeresis,KS_dead_circumflex,KS_dead_tilde,
- KC(0x4c), KS_Caps_Lock,
- KC(0x56), KS_oslash,
- KC(0x57), KS_ae,
- KC(0x58), KS_bar, KS_section,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x77), KS_Control_L,
- KC(0x7d), KS_less, KS_greater,
-};
-
-/* 028 Norwegian type 5 keyboard */
-const keysym_t sunkbd5_keydesc_no[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_numbersign, KS_sterling,
- KC(0x21), KS_4, KS_currency, KS_dollar,
- KC(0x22), KS_5, KS_percent, KS_asciitilde,
- KC(0x23), KS_6, KS_ampersand, KS_asciicircum,
- KC(0x24), KS_7, KS_slash, KS_braceleft,
- KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
- KC(0x26), KS_9, KS_parenright, KS_bracketright,
- KC(0x27), KS_0, KS_equal, KS_braceright,
- KC(0x28), KS_plus, KS_question,
- KC(0x29), KS_backslash, KS_dead_grave, KS_dead_acute,
- KC(0x2a), KS_bar, KS_section,
- KC(0x40), KS_aring,
- KC(0x41), KS_dead_diaeresis,KS_dead_circumflex,KS_dead_tilde,
- KC(0x56), KS_oslash,
- KC(0x57), KS_ae,
- KC(0x58), KS_apostrophe, KS_asterisk, KS_grave,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x7d), KS_less, KS_greater,
-};
-
-/* 009 Portuguese type 4 keyboard */
-const keysym_t sunkbd_keydesc_pt[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x0f), KS_bracketright,KS_braceright, KS_guillemotright,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_numbersign, KS_sterling,
- KC(0x21), KS_4, KS_dollar, KS_section,
- KC(0x23), KS_6, KS_ampersand, KS_notsign,
- KC(0x24), KS_7, KS_slash,
- KC(0x25), KS_8, KS_parenleft,
- KC(0x26), KS_9, KS_parenright, KS_backslash,
- KC(0x27), KS_0, KS_equal, KS_bar,
- KC(0x28), KS_apostrophe, KS_question, KS_grave,
- KC(0x29), KS_exclamdown, KS_questiondown,
- KC(0x2a), KS_dead_tilde, KS_dead_circumflex,KS_asciicircum,
- KC(0x40), KS_dead_diaeresis,KS_asterisk, KS_plus,
- KC(0x41), KS_dead_acute, KS_dead_grave, KS_asciitilde,
- KC(0x4c), KS_Caps_Lock,
- KC(0x56), KS_ccedilla,
- KC(0x57), KS_masculine, KS_ordfeminine,
- KC(0x58), KS_bracketleft, KS_braceleft, KS_guillemotleft,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x77), KS_Control_L,
- KC(0x7d), KS_less, KS_greater,
-};
-
-/* 029 Portuguese type 4 keyboard */
-const keysym_t sunkbd5_keydesc_pt[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_numbersign, KS_sterling,
- KC(0x21), KS_4, KS_dollar, KS_section,
- KC(0x22), KS_5, KS_percent, KS_asciitilde,
- KC(0x23), KS_6, KS_ampersand, KS_asciicircum,
- KC(0x24), KS_7, KS_slash, KS_braceleft,
- KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
- KC(0x26), KS_9, KS_parenright, KS_bracketright,
- KC(0x27), KS_0, KS_equal, KS_braceright,
- KC(0x28), KS_apostrophe, KS_question, KS_grave,
- KC(0x29), KS_guillemotleft,KS_guillemotright,
- KC(0x2a), KS_backslash, KS_bar,
- KC(0x40), KS_plus, KS_asterisk, KS_dead_diaeresis,
- KC(0x41), KS_dead_acute, KS_dead_grave,
- KC(0x56), KS_ccedilla,
- KC(0x57), KS_masculine, KS_ordfeminine,
- KC(0x58), KS_dead_tilde, KS_dead_circumflex,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x7d), KS_less, KS_greater,
-};
-
-/* 00a Spanish type 4 keyboard */
-const keysym_t sunkbd_keydesc_es[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x0f), KS_bracketright,KS_braceright, KS_guillemotright,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_hyphen, KS_numbersign,
- KC(0x22), KS_5, KS_percent, KS_degree,
- KC(0x23), KS_6, KS_ampersand, KS_notsign,
- KC(0x24), KS_7, KS_slash,
- KC(0x25), KS_8, KS_parenleft,
- KC(0x26), KS_9, KS_parenright, KS_backslash,
- KC(0x27), KS_0, KS_equal, KS_bar,
- KC(0x28), KS_apostrophe, KS_question, KS_grave,
- KC(0x29), KS_exclamdown, KS_questiondown,
- KC(0x2a), KS_ccedilla,
- KC(0x3e), KS_o, KS_O, KS_masculine,
- KC(0x40), KS_dead_grave, KS_dead_circumflex,KS_asciicircum,
- KC(0x41), KS_plus, KS_asterisk, KS_asciitilde,
- KC(0x4c), KS_Caps_Lock,
- KC(0x4d), KS_a, KS_A, KS_ordfeminine,
- KC(0x56), KS_ntilde,
- KC(0x57), KS_dead_acute, KS_dead_diaeresis,
- KC(0x58), KS_bracketleft, KS_braceleft, KS_guillemotleft,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x77), KS_Control_L,
- KC(0x7d), KS_less, KS_greater,
-};
-
-/* 02a Spanish type 5 keyboard */
-const keysym_t sunkbd5_keydesc_es[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x1e), KS_1, KS_exclam, KS_bar,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_hyphen, KS_numbersign,
- KC(0x21), KS_4, KS_dollar, KS_asciicircum,
- KC(0x22), KS_5, KS_percent, KS_asciitilde,
- KC(0x23), KS_6, KS_ampersand, KS_notsign,
- KC(0x24), KS_7, KS_slash,
- KC(0x25), KS_8, KS_parenleft,
- KC(0x26), KS_9, KS_parenright,
- KC(0x27), KS_0, KS_equal,
- KC(0x28), KS_apostrophe, KS_question, KS_grave,
- KC(0x29), KS_exclamdown, KS_questiondown,
- KC(0x2a), KS_masculine, KS_ordfeminine, KS_backslash,
- KC(0x40), KS_dead_grave, KS_dead_circumflex,KS_bracketleft,
- KC(0x41), KS_plus, KS_asterisk, KS_bracketright,
- KC(0x56), KS_ntilde,
- KC(0x57), KS_dead_acute, KS_dead_diaeresis,KS_braceleft,
- KC(0x58), KS_ccedilla, KS_Ccedilla, KS_braceright,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x7d), KS_less, KS_greater,
-};
-
-/* 00b Swedish/Finnish type 4 keyboard */
-const keysym_t sunkbd_keydesc_sv[] = {
- KC(0x0d), KS_Multi_key,
- KC(0x0f), KS_asciitilde, KS_asciicircum,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_numbersign, KS_sterling,
- KC(0x21), KS_4, KS_currency, KS_dollar,
- KC(0x23), KS_6, KS_ampersand,
- KC(0x24), KS_7, KS_slash, KS_braceleft,
- KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
- KC(0x26), KS_9, KS_parenright, KS_bracketright,
- KC(0x27), KS_0, KS_equal, KS_braceright,
- KC(0x28), KS_plus, KS_question, KS_backslash,
- KC(0x29), KS_dead_acute, KS_dead_grave,
- KC(0x2a), KS_apostrophe, KS_asterisk, KS_grave,
- KC(0x40), KS_aring,
- KC(0x41), KS_dead_diaeresis,KS_dead_circumflex,KS_dead_tilde,
- KC(0x43), KS_Mode_switch,
- KC(0x4c), KS_Caps_Lock,
- KC(0x56), KS_odiaeresis,
- KC(0x57), KS_adiaeresis,
- KC(0x58), KS_section, KS_onehalf,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x77), KS_Control_L,
- KC(0x7c), KS_less, KS_greater, KS_bar,
-};
-
-const keysym_t sunkbd_keydesc_sv_nodead[] = {
- KC(0x29), KS_apostrophe, KS_grave,
- KC(0x41), KS_diaeresis, KS_asciicircum, KS_asciitilde,
-};
-
-/* 02b Swedish type 5 keyboard */
-const keysym_t sunkbd5_keydesc_sv[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x0f), KS_asciitilde, KS_asciicircum,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_numbersign, KS_sterling,
- KC(0x21), KS_4, KS_currency, KS_dollar,
- KC(0x23), KS_6, KS_ampersand,
- KC(0x24), KS_7, KS_slash, KS_braceleft,
- KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
- KC(0x26), KS_9, KS_parenright, KS_bracketright,
- KC(0x27), KS_0, KS_equal, KS_braceright,
- KC(0x28), KS_plus, KS_question, KS_backslash,
- KC(0x29), KS_dead_acute, KS_dead_grave,
- KC(0x2a), KS_section, KS_onehalf,
- KC(0x40), KS_aring,
- KC(0x41), KS_dead_diaeresis,KS_dead_circumflex,KS_dead_tilde,
- KC(0x43), KS_Multi_key,
- KC(0x4c), KS_Control_L,
- KC(0x56), KS_odiaeresis,
- KC(0x57), KS_adiaeresis,
- KC(0x58), KS_apostrophe, KS_asterisk, KS_grave,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x77), KS_Caps_Lock,
- KC(0x7c), KS_less, KS_greater, KS_bar,
-};
-
-/* 00c Swiss-French type 4 keyboard */
-const keysym_t sunkbd_keydesc_sf[] = {
- KC(0x0d), KS_Multi_key,
- KC(0x0f), KS_greater, KS_braceright,
- KC(0x1e), KS_1, KS_plus, KS_exclam,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_asterisk, KS_numbersign,
- KC(0x21), KS_4, KS_ccedilla, KS_cent,
- KC(0x22), KS_5, KS_percent, KS_asciitilde,
- KC(0x23), KS_6, KS_ampersand, KS_section,
- KC(0x24), KS_7, KS_slash, KS_bar,
- KC(0x25), KS_8, KS_parenleft, KS_degree,
- KC(0x26), KS_9, KS_parenright, KS_backslash,
- KC(0x27), KS_0, KS_equal, KS_asciicircum,
- KC(0x28), KS_apostrophe, KS_question, KS_grave,
- KC(0x29), KS_dead_circumflex,KS_dead_grave,
- KC(0x2a), KS_dollar, KS_dead_tilde, KS_sterling,
- KC(0x3b), KS_z,
- KC(0x40), KS_egrave, KS_udiaeresis,
- KC(0x41), KS_dead_diaeresis,KS_dead_acute,
- KC(0x43), KS_Mode_switch,
- KC(0x4c), KS_Caps_Lock,
- KC(0x56), KS_eacute, KS_odiaeresis,
- KC(0x57), KS_agrave, KS_adiaeresis,
- KC(0x58), KS_less, KS_braceleft,
- KC(0x64), KS_y,
- KC(0x6a), KS_m, KS_M, KS_mu,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x77), KS_Control_L,
- KC(0x7c), KS_bracketright,KS_bracketleft, KS_backslash,
-};
-
-/* 02c Swiss-French type 5 keyboard */
-const keysym_t sunkbd5_keydesc_sf[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x1e), KS_1, KS_plus, KS_bar,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_asterisk, KS_numbersign,
- KC(0x21), KS_4, KS_ccedilla, KS_asciicircum,
- KC(0x22), KS_5, KS_percent, KS_asciitilde,
- KC(0x23), KS_6, KS_ampersand,
- KC(0x24), KS_7, KS_slash,
- KC(0x25), KS_8, KS_parenleft,
- KC(0x26), KS_9, KS_parenright,
- KC(0x27), KS_0, KS_equal, KS_grave,
- KC(0x28), KS_apostrophe, KS_question, KS_dead_acute,
- KC(0x29), KS_dead_circumflex,KS_dead_grave,KS_dead_tilde,
- KC(0x2a), KS_dollar, KS_degree,
- KC(0x3b), KS_z,
- KC(0x40), KS_egrave, KS_udiaeresis, KS_bracketleft,
- KC(0x41), KS_dead_diaeresis,KS_exclam, KS_bracketright,
- KC(0x56), KS_eacute, KS_odiaeresis,
- KC(0x57), KS_agrave, KS_adiaeresis, KS_braceleft,
- KC(0x58), KS_dollar, KS_sterling, KS_braceright,
- KC(0x64), KS_y,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x7c), KS_less, KS_greater, KS_backslash,
-};
-
-/* 00d Swiss-German type 4 keyboard */
-const keysym_t sunkbd_keydesc_sg[] = {
- KC(0x0d), KS_Multi_key,
- KC(0x0f), KS_greater, KS_braceright,
- KC(0x1e), KS_1, KS_plus, KS_exclam,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_asterisk, KS_numbersign,
- KC(0x21), KS_4, KS_ccedilla, KS_cent,
- KC(0x22), KS_5, KS_percent, KS_asciitilde,
- KC(0x23), KS_6, KS_ampersand, KS_section,
- KC(0x24), KS_7, KS_slash, KS_bar,
- KC(0x25), KS_8, KS_parenleft, KS_degree,
- KC(0x26), KS_9, KS_parenright, KS_backslash,
- KC(0x27), KS_0, KS_equal, KS_asciicircum,
- KC(0x28), KS_apostrophe, KS_question, KS_grave,
- KC(0x29), KS_dead_circumflex,KS_dead_grave,
- KC(0x2a), KS_dollar, KS_dead_tilde, KS_sterling,
- KC(0x3b), KS_z,
- KC(0x40), KS_udiaeresis, KS_egrave,
- KC(0x41), KS_dead_diaeresis,KS_dead_acute,
- KC(0x43), KS_Mode_switch,
- KC(0x4c), KS_Caps_Lock,
- KC(0x56), KS_odiaeresis, KS_eacute,
- KC(0x57), KS_adiaeresis, KS_agrave,
- KC(0x58), KS_less, KS_braceleft,
- KC(0x64), KS_y,
- KC(0x6a), KS_m, KS_M, KS_mu,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x77), KS_Control_L,
- KC(0x7c), KS_bracketright,KS_bracketleft, KS_backslash,
-};
-
-/* 02d Swiss-German type 5 keyboard */
-const keysym_t sunkbd5_keydesc_sg[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x1e), KS_1, KS_plus, KS_bar,
- KC(0x1f), KS_2, KS_quotedbl, KS_at,
- KC(0x20), KS_3, KS_asterisk, KS_numbersign,
- KC(0x21), KS_4, KS_ccedilla, KS_asciicircum,
- KC(0x22), KS_5, KS_percent, KS_asciitilde,
- KC(0x23), KS_6, KS_ampersand,
- KC(0x24), KS_7, KS_slash,
- KC(0x25), KS_8, KS_parenleft,
- KC(0x26), KS_9, KS_parenright,
- KC(0x27), KS_0, KS_equal, KS_grave,
- KC(0x28), KS_apostrophe, KS_question, KS_dead_acute,
- KC(0x29), KS_dead_circumflex,KS_dead_grave,KS_dead_tilde,
- KC(0x2a), KS_dollar, KS_degree,
- KC(0x3b), KS_z,
- KC(0x40), KS_udiaeresis, KS_egrave, KS_bracketleft,
- KC(0x41), KS_dead_diaeresis,KS_exclam, KS_bracketright,
- KC(0x56), KS_odiaeresis, KS_eacute,
- KC(0x57), KS_adiaeresis, KS_agrave, KS_braceleft,
- KC(0x58), KS_dollar, KS_sterling, KS_braceright,
- KC(0x64), KS_y,
- KC(0x6b), KS_comma, KS_semicolon,
- KC(0x6c), KS_period, KS_colon,
- KC(0x6d), KS_minus, KS_underscore,
- KC(0x7c), KS_less, KS_greater, KS_backslash,
-};
-
-/* 00e UK English type 4 keyboard */
-const keysym_t sunkbd_keydesc_uk[] = {
- KC(0x1e), KS_1, KS_exclam, KS_bar,
- KC(0x21), KS_3, KS_sterling, KS_numbersign,
- KC(0x28), KS_minus, KS_underscore, KS_notsign,
- KC(0x43), KS_Mode_switch,
-};
-
-/* 02e UK English type 5 keyboard */
-const keysym_t sunkbd5_keydesc_uk[] = {
- KC(0x0d), KS_Mode_switch,
- KC(0x1f), KS_2, KS_quotedbl,
- KC(0x20), KS_3, KS_sterling,
- KC(0x2a), KS_grave, KS_notsign, KS_brokenbar,
- KC(0x57), KS_apostrophe, KS_at,
- KC(0x58), KS_numbersign, KS_asciitilde,
- KC(0x7c), KS_backslash, KS_bar,
-};
+#ifdef __sparc64__
+#define NTCTRL 0
+#else
+#include "tctrl.h"
+#endif
-/* 031 Japan type 5 keyboard */
-const keysym_t sunkbd5_keydesc_jp[] = {
- KC(0x1f), KS_2, KS_quotedbl,
- KC(0x23), KS_6, KS_ampersand,
- KC(0x24), KS_7, KS_apostrophe,
- KC(0x25), KS_8, KS_parenleft,
- KC(0x26), KS_9, KS_parenright,
- KC(0x27), KS_0,
- KC(0x28), KS_minus, KS_equal,
- KC(0x29), KS_asciicircum, KS_asciitilde,
- KC(0x2a), KS_yen, KS_bar,
- KC(0x40), KS_at, KS_grave,
- KC(0x41), KS_bracketleft, KS_braceleft,
- KC(0x56), KS_semicolon, KS_plus,
- KC(0x57), KS_colon, KS_asterisk,
- KC(0x58), KS_bracketright,KS_braceright,
- KC(0x7c), KS_backslash, KS_underscore,
-};
+#if NTCTRL > 0
+#include <sparc/dev/tctrlvar.h> /* XXX for tadpole_bell() */
+#endif
-#define KBD_MAP(name, base, map) \
- { name, base, sizeof(map)/sizeof(keysym_t), map }
+void sunkbd_bell(struct sunkbd_softc *, u_int, u_int, u_int);
+int sunkbd_enable(void *, int);
+int sunkbd_getleds(struct sunkbd_softc *);
+int sunkbd_ioctl(void *, u_long, caddr_t, int, struct proc *);
+void sunkbd_setleds(void *, int);
-/* Supported type 4 keyboard layouts */
-const struct wscons_keydesc sunkbd_keydesctab[] = {
- KBD_MAP(KB_US, 0, sunkbd_keydesc_us),
- KBD_MAP(KB_BE, KB_US, sunkbd_keydesc_befr),
- KBD_MAP(KB_DE, KB_US, sunkbd_keydesc_de),
- KBD_MAP(KB_DK, KB_US, sunkbd_keydesc_dk),
- KBD_MAP(KB_ES, KB_US, sunkbd_keydesc_es),
- KBD_MAP(KB_FR, KB_US, sunkbd_keydesc_befr),
- KBD_MAP(KB_IT, KB_US, sunkbd_keydesc_it),
- KBD_MAP(KB_NL, KB_US, sunkbd_keydesc_nl),
- KBD_MAP(KB_NO, KB_US, sunkbd_keydesc_no),
- KBD_MAP(KB_PT, KB_US, sunkbd_keydesc_pt),
- KBD_MAP(KB_SF, KB_US, sunkbd_keydesc_sf),
- KBD_MAP(KB_SG, KB_US, sunkbd_keydesc_sg),
- KBD_MAP(KB_SV, KB_US, sunkbd_keydesc_sv),
- KBD_MAP(KB_SV | KB_NODEAD, KB_SV, sunkbd_keydesc_sv_nodead),
- KBD_MAP(KB_UK, KB_US, sunkbd_keydesc_uk),
- {0, 0, 0, 0},
+struct wskbd_accessops sunkbd_accessops = {
+ sunkbd_enable,
+ sunkbd_setleds,
+ sunkbd_ioctl
};
-/* Supported type 5 keyboard layouts */
-const struct wscons_keydesc sunkbd5_keydesctab[] = {
- KBD_MAP(KB_US, 0, sunkbd_keydesc_us),
- KBD_MAP(KB_DE, KB_US, sunkbd5_keydesc_de),
- KBD_MAP(KB_DK, KB_US, sunkbd5_keydesc_dk),
- KBD_MAP(KB_ES, KB_US, sunkbd5_keydesc_es),
- KBD_MAP(KB_FR, KB_US, sunkbd5_keydesc_fr),
- KBD_MAP(KB_IT, KB_US, sunkbd5_keydesc_it),
- KBD_MAP(KB_JP, KB_US, sunkbd5_keydesc_jp),
- KBD_MAP(KB_NL, KB_US, sunkbd5_keydesc_nl),
- KBD_MAP(KB_NO, KB_US, sunkbd5_keydesc_no),
- KBD_MAP(KB_PT, KB_US, sunkbd5_keydesc_pt),
- KBD_MAP(KB_SF, KB_US, sunkbd5_keydesc_sf),
- KBD_MAP(KB_SG, KB_US, sunkbd5_keydesc_sg),
- KBD_MAP(KB_SV, KB_US, sunkbd5_keydesc_sv),
- KBD_MAP(KB_SV | KB_NODEAD, KB_SV, sunkbd_keydesc_sv_nodead),
- KBD_MAP(KB_UK, KB_US, sunkbd5_keydesc_uk),
- {0, 0, 0, 0},
-};
-
-/*
- * Keyboard layout to ID table
- * References:
- * Sun Type 5 Keyboard Supplement Installation Guide, May 1992
- * http://docs.sun.com/db/doc/806-6642/6jfipqu57?a=view
- * http://jp.sunsolve.sun.com/handbook_pub/Systems/SSVygr/INPUT_Compact1_Keyboard.html
- */
-const int sunkbd_layouts[MAXSUNLAYOUT] = {
- /* Type 4 layouts */
- KB_US, /* 000 USA */
- KB_US, /* 001 same as 000 */
- KB_BE, /* 002 Belgium/French */
- -1, /* 003 Canada */
- KB_DK, /* 004 Denmark */
- KB_DE, /* 005 Germany */
- KB_IT, /* 006 Italy */
- KB_NL, /* 007 The Netherlands */
- KB_NO, /* 008 Norway */
- KB_PT, /* 009 Portugal */
- KB_ES, /* 00a Latin America/Spanish */
- KB_SV, /* 00b Sweden */
- KB_SF, /* 00c Switzerland/French */
- KB_SG, /* 00d Switzerland/German */
- KB_UK, /* 00e Great Britain */
- -1, /* 00f unaffected */
- -1, /* 010 Korea */
- -1, /* 011 Taiwan */
- -1, /* 012 unaffected */
- -1, /* 013 unaffected */
- -1, /* 014 VT220 */
- -1, /* 015 VT220 Switzerland/French */
- -1, /* 016 VT220 Switzerland/German */
- -1, /* 017 VT220 Switzerland/Italian */
- -1, /* 018 unaffected */
- -1, /* 019 Belgium */
- -1, /* 01a unaffected */
- -1, /* 01b unaffected */
- -1, /* 01c unaffected */
- -1, /* 01d unaffected */
- -1, /* 01e unaffected */
- -1, /* 01f unaffected */
- -1, /* 020 Japan */
-
- /* Type 5 layouts */
- KB_US, /* 021 USA */
- KB_US, /* 022 UNIX */
- KB_FR, /* 023 France */
- KB_DK, /* 024 Denmark */
- KB_DE, /* 025 Germany */
- KB_IT, /* 026 Italy */
- KB_NL, /* 027 The Netherlands */
- KB_NO, /* 028 Norway */
- KB_PT, /* 029 Portugal */
- KB_ES, /* 02a Spain */
- KB_SV, /* 02b Sweden */
- KB_SF, /* 02c Switzerland/French */
- KB_SG, /* 02d Switzerland/German */
- KB_UK, /* 02e Great Britain */
- -1, /* 02f Korea */
- -1, /* 030 Taiwan */
- KB_JP, /* 031 Japan */
- -1, /* 032 Canada/French */
- -1, /* 033 Hungary */
- -1, /* 034 Poland */
- -1, /* 035 Czech */
- -1, /* 036 Russia */
- -1, /* 037 Latvia */
- -1, /* 038 Turkey-Q5 */
- -1, /* 039 Greece */
- -1, /* 03a Arabic */
- -1, /* 03b Lithuania */
- -1, /* 03c Belgium */
- -1, /* 03d unaffected */
- -1, /* 03e Turkey-F5 */
- -1, /* 03f Canada/French */
+void
+sunkbd_bell(struct sunkbd_softc *sc, u_int period, u_int pitch, u_int volume)
+{
+ int ticks, s;
+ u_int8_t c = SKBD_CMD_BELLON;
- /* Not affected range */
- -1, /* 040 */
- -1, /* 041 */
- -1, /* 042 */
- -1, /* 043 */
- -1, /* 044 */
- -1, /* 045 */
- -1, /* 046 */
- -1, /* 047 */
- -1, /* 048 */
- -1, /* 049 */
- -1, /* 04a */
- -1, /* 04b */
- -1, /* 04c */
- -1, /* 04d */
- -1, /* 04e */
- -1, /* 04f */
-
- /* ``Compact-1'' layouts */
- KB_US, /* 050 USA */
- KB_US, /* 051 UNIX */
- KB_FR, /* 052 France */
- KB_DK, /* 053 Denmark */
- KB_DE, /* 054 Germany */
- KB_IT, /* 055 Italy */
- KB_NL, /* 056 The Netherlands */
- KB_NO, /* 057 Norway */
- KB_PT, /* 058 Portugal */
- KB_ES, /* 059 Spain */
- KB_SV, /* 05a Sweden */
- KB_SF, /* 05b Switzerland/French */
- KB_SG, /* 05c Switzerland/German */
- KB_UK, /* 05d Great Britain */
- -1, /* 05e Korea */
- -1, /* 05f Taiwan */
- KB_JP, /* 060 Japan */
- -1, /* 061 Canada/French */
-};
-
-struct wskbd_mapdata sunkbd_keymapdata = {
- sunkbd_keydesctab,
-#ifdef SUNKBD_LAYOUT
- SUNKBD_LAYOUT,
-#else
- KB_US,
+#if NTCTRL > 0
+ if (tadpole_bell(period / 10, pitch, volume) != 0)
+ return;
#endif
-};
-struct wskbd_mapdata sunkbd5_keymapdata = {
- sunkbd5_keydesctab,
-#ifdef SUNKBD5_LAYOUT
- SUNKBD5_LAYOUT,
-#else
- KB_US,
-#endif
-};
+ s = spltty();
+ if (sc->sc_bellactive) {
+ if (sc->sc_belltimeout == 0)
+ timeout_del(&sc->sc_bellto);
+ }
+ if (pitch == 0 || period == 0) {
+ sunkbd_bellstop(sc);
+ splx(s);
+ return;
+ }
+ if (sc->sc_bellactive == 0) {
+ ticks = (period * hz) / 1000;
+ if (ticks <= 0)
+ ticks = 1;
+
+ sc->sc_bellactive = 1;
+ sc->sc_belltimeout = 1;
+ (*sc->sc_sendcmd)(sc, &c, 1);
+ timeout_add(&sc->sc_bellto, ticks);
+ }
+ splx(s);
+}
+
+void
+sunkbd_bellstop(void *v)
+{
+ struct sunkbd_softc *sc = v;
+ int s;
+ u_int8_t c;
+
+ s = spltty();
+ sc->sc_belltimeout = 0;
+ c = SKBD_CMD_BELLOFF;
+ (*sc->sc_sendcmd)(v, &c, 1);
+ sc->sc_bellactive = 0;
+ splx(s);
+}
+
+void
+sunkbd_decode(u_int8_t c, u_int *type, int *value)
+{
+ switch (c) {
+ case SKBD_RSP_IDLE:
+ *type = WSCONS_EVENT_ALL_KEYS_UP;
+ *value = 0;
+ break;
+ default:
+ *type = (c & 0x80) ?
+ WSCONS_EVENT_KEY_UP : WSCONS_EVENT_KEY_DOWN;
+ *value = c & 0x7f;
+ break;
+ }
+}
+
+int
+sunkbd_enable(void *v, int on)
+{
+ return (0);
+}
+
+int
+sunkbd_getleds(struct sunkbd_softc *sc)
+{
+ return (sc->sc_leds);
+}
+
+int
+sunkbd_ioctl(void *v, u_long cmd, caddr_t data, int flag, struct proc *p)
+{
+ struct sunkbd_softc *sc = v;
+ int *d_int = (int *)data;
+ struct wskbd_bell_data *d_bell = (struct wskbd_bell_data *)data;
+
+ switch (cmd) {
+ case WSKBDIO_GTYPE:
+ if (ISTYPE5(sc->sc_layout)) {
+ *d_int = WSKBD_TYPE_SUN5;
+ } else {
+ *d_int = WSKBD_TYPE_SUN;
+ }
+ return (0);
+ case WSKBDIO_SETLEDS:
+ sunkbd_setleds(sc, *d_int);
+ return (0);
+ case WSKBDIO_GETLEDS:
+ *d_int = sunkbd_getleds(sc);
+ return (0);
+ case WSKBDIO_COMPLEXBELL:
+ sunkbd_bell(sc, d_bell->period, d_bell->pitch, d_bell->volume);
+ return (0);
+ }
+
+ return (-1);
+}
+
+void
+sunkbd_raw(struct sunkbd_softc *sc, u_int8_t c)
+{
+ int claimed = 0;
+
+ if (sc->sc_kbdstate == SKBD_STATE_LAYOUT) {
+ sc->sc_kbdstate = SKBD_STATE_GETKEY;
+ sc->sc_layout = c;
+ return;
+ }
+
+ switch (c) {
+ case SKBD_RSP_RESET:
+ sc->sc_kbdstate = SKBD_STATE_RESET;
+ claimed = 1;
+ break;
+ case SKBD_RSP_LAYOUT:
+ sc->sc_kbdstate = SKBD_STATE_LAYOUT;
+ claimed = 1;
+ break;
+ case SKBD_RSP_IDLE:
+ sc->sc_kbdstate = SKBD_STATE_GETKEY;
+ claimed = 1;
+ }
+
+ if (claimed)
+ return;
+
+ switch (sc->sc_kbdstate) {
+ case SKBD_STATE_RESET:
+ sc->sc_kbdstate = SKBD_STATE_GETKEY;
+ if (c < KB_SUN2 || c > KB_SUN4)
+ printf("%s: reset: invalid keyboard type 0x%02x\n",
+ sc->sc_dev.dv_xname, c);
+ else
+ sc->sc_id = c;
+ break;
+ case SKBD_STATE_GETKEY:
+ break;
+ }
+}
+
+void
+sunkbd_setleds(void *v, int wled)
+{
+ struct sunkbd_softc *sc = v;
+ u_int8_t sled = 0;
+ u_int8_t cmd[2];
+
+ sc->sc_leds = wled;
+
+ if (wled & WSKBD_LED_CAPS)
+ sled |= SKBD_LED_CAPSLOCK;
+ if (wled & WSKBD_LED_NUM)
+ sled |= SKBD_LED_NUMLOCK;
+ if (wled & WSKBD_LED_SCROLL)
+ sled |= SKBD_LED_SCROLLLOCK;
+ if (wled & WSKBD_LED_COMPOSE)
+ sled |= SKBD_LED_COMPOSE;
+
+ cmd[0] = SKBD_CMD_SETLED;
+ cmd[1] = sled;
+ (*sc->sc_sendcmd)(sc, cmd, sizeof(cmd));
+}
diff --git a/sys/dev/sun/sunkbdmap.c b/sys/dev/sun/sunkbdmap.c
new file mode 100644
index 00000000000..e4c3cc75f17
--- /dev/null
+++ b/sys/dev/sun/sunkbdmap.c
@@ -0,0 +1,1036 @@
+/* $OpenBSD: sunkbdmap.c,v 1.1 2005/05/14 15:25:20 miod Exp $ */
+
+/*
+ * Copyright (c) 2002, 2003 Miodrag Vallat.
+ * Copyright (c) 2002 Jason L. Wright (jason@thought.net)
+ * All rights reserved.
+ *
+ * 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.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
+ *
+ * Effort sponsored in part by the Defense Advanced Research Projects
+ * Agency (DARPA) and Air Force Research Laboratory, Air Force
+ * Materiel Command, USAF, under agreement number F30602-01-2-0537.
+ *
+ */
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/device.h>
+#include <sys/kernel.h>
+#include <sys/timeout.h>
+
+#include <dev/wscons/wsconsio.h>
+#include <dev/wscons/wskbdvar.h>
+#include <dev/wscons/wsksymdef.h>
+#include <dev/wscons/wsksymvar.h>
+
+#include <dev/sun/sunkbdreg.h>
+#include <dev/sun/sunkbdvar.h>
+
+#define KC(n) KS_KEYCODE(n)
+
+/* 000/021/022 US English type 4/5 keyboard */
+const keysym_t sunkbd_keydesc_us[] = {
+ KC(0x01), KS_Cmd,
+ KC(0x02), KS_Cmd_BrightnessDown,
+ KC(0x03), KS_Again,
+ KC(0x04), KS_Cmd_BrightnessUp,
+ KC(0x05), KS_f1,
+ KC(0x06), KS_f2,
+ KC(0x07), KS_f10,
+ KC(0x08), KS_f3,
+ KC(0x09), KS_f11,
+ KC(0x0a), KS_f4,
+ KC(0x0b), KS_f12,
+ KC(0x0c), KS_f5,
+ KC(0x0d), KS_Alt_R,
+ KC(0x0e), KS_f6,
+ KC(0x10), KS_f7,
+ KC(0x11), KS_f8,
+ KC(0x12), KS_f9,
+ KC(0x13), KS_Alt_L,
+ KC(0x14), KS_Up,
+ KC(0x15), KS_Pause,
+ KC(0x16), KS_Print_Screen,
+ KC(0x17), KS_Hold_Screen,
+ KC(0x18), KS_Left,
+ KC(0x19), KS_Props,
+ KC(0x1a), KS_Undo,
+ KC(0x1b), KS_Down,
+ KC(0x1c), KS_Right,
+ KC(0x1d), KS_Escape,
+ KC(0x1e), KS_1, KS_exclam,
+ KC(0x1f), KS_2, KS_at,
+ KC(0x20), KS_3, KS_numbersign,
+ KC(0x21), KS_4, KS_dollar,
+ KC(0x22), KS_5, KS_percent,
+ KC(0x23), KS_6, KS_asciicircum,
+ KC(0x24), KS_7, KS_ampersand,
+ KC(0x25), KS_8, KS_asterisk,
+ KC(0x26), KS_9, KS_parenleft,
+ KC(0x27), KS_0, KS_parenright,
+ KC(0x28), KS_minus, KS_underscore,
+ KC(0x29), KS_equal, KS_plus,
+ KC(0x2a), KS_grave, KS_asciitilde,
+ KC(0x2b), KS_Delete,
+ KC(0x2c), KS_Insert,
+ KC(0x2d), KS_KP_Equal,
+ KC(0x2e), KS_KP_Divide,
+ KC(0x2f), KS_KP_Multiply,
+ KC(0x31), KS_Front,
+ KC(0x32), KS_KP_Delete, KS_KP_Decimal,
+ KC(0x33), KS_Copy,
+ KC(0x34), KS_Home,
+ KC(0x35), KS_Tab,
+ KC(0x36), KS_q,
+ KC(0x37), KS_w,
+ KC(0x38), KS_e,
+ KC(0x39), KS_r,
+ KC(0x3a), KS_t,
+ KC(0x3b), KS_y,
+ KC(0x3c), KS_u,
+ KC(0x3d), KS_i,
+ KC(0x3e), KS_o,
+ KC(0x3f), KS_p,
+ KC(0x40), KS_bracketleft, KS_braceleft,
+ KC(0x41), KS_bracketright,KS_braceright,
+ KC(0x42), KS_Delete,
+ KC(0x43), KS_Multi_key,
+ KC(0x44), KS_KP_Home, KS_KP_7,
+ KC(0x45), KS_KP_Up, KS_KP_8,
+ KC(0x46), KS_KP_Prior, KS_KP_9,
+ KC(0x47), KS_KP_Subtract,
+ KC(0x48), KS_Open,
+ KC(0x49), KS_Paste,
+ KC(0x4a), KS_End,
+ KC(0x4c), KS_Control_L,
+ KC(0x4d), KS_Cmd_Debugger, KS_a,
+ KC(0x4e), KS_s,
+ KC(0x4f), KS_d,
+ KC(0x50), KS_f,
+ KC(0x51), KS_g,
+ KC(0x52), KS_h,
+ KC(0x53), KS_j,
+ KC(0x54), KS_k,
+ KC(0x55), KS_l,
+ KC(0x56), KS_semicolon, KS_colon,
+ KC(0x57), KS_apostrophe, KS_quotedbl,
+ KC(0x58), KS_backslash, KS_bar,
+ KC(0x59), KS_Return,
+ KC(0x5a), KS_KP_Enter,
+ KC(0x5b), KS_KP_Left, KS_KP_4,
+ KC(0x5c), KS_KP_Begin, KS_KP_5,
+ KC(0x5d), KS_KP_Right, KS_KP_6,
+ KC(0x5e), KS_KP_Insert, KS_KP_0,
+ KC(0x5f), KS_Find,
+ KC(0x60), KS_Prior,
+ KC(0x61), KS_Cut,
+ KC(0x62), KS_Num_Lock,
+ KC(0x63), KS_Shift_L,
+ KC(0x64), KS_z,
+ KC(0x65), KS_x,
+ KC(0x66), KS_c,
+ KC(0x67), KS_v,
+ KC(0x68), KS_b,
+ KC(0x69), KS_n,
+ KC(0x6a), KS_m,
+ KC(0x6b), KS_comma, KS_less,
+ KC(0x6c), KS_period, KS_greater,
+ KC(0x6d), KS_slash, KS_question,
+ KC(0x6e), KS_Shift_R,
+ KC(0x6f), KS_Linefeed,
+ KC(0x70), KS_KP_End, KS_KP_1,
+ KC(0x71), KS_KP_Down, KS_KP_2,
+ KC(0x72), KS_KP_Next, KS_KP_3,
+ KC(0x76), KS_Help,
+ KC(0x77), KS_Caps_Lock,
+ KC(0x78), KS_Meta_L,
+ KC(0x79), KS_space,
+ KC(0x7a), KS_Meta_R,
+ KC(0x7b), KS_Next,
+ KC(0x7d), KS_KP_Add,
+};
+
+/* 002 French/Belgian type 4 keyboard */
+const keysym_t sunkbd_keydesc_befr[] = {
+ KC(0x0d), KS_Caps_Lock,
+ KC(0x0f), KS_bracketright,KS_braceright, KS_guillemotright,
+ KC(0x1e), KS_ampersand, KS_1,
+ KC(0x1f), KS_eacute, KS_2, KS_twosuperior,
+ KC(0x20), KS_quotedbl, KS_3, KS_threesuperior,
+ KC(0x21), KS_apostrophe, KS_4,
+ KC(0x22), KS_parenleft, KS_5,
+ KC(0x23), KS_section, KS_6,
+ KC(0x24), KS_egrave, KS_7,
+ KC(0x25), KS_exclam, KS_8, KS_sterling,
+ KC(0x26), KS_ccedilla, KS_9, KS_backslash,
+ KC(0x27), KS_agrave, KS_0,
+ KC(0x28), KS_parenright, KS_degree, KS_asciitilde,
+ KC(0x29), KS_minus, KS_underscore, KS_numbersign,
+ KC(0x2a), KS_asterisk, KS_bar, KS_currency,
+ KC(0x36), KS_a,
+ KC(0x37), KS_z,
+ KC(0x40), KS_dead_circumflex,KS_dead_diaeresis,
+ KC(0x41), KS_grave, KS_dollar, KS_at,
+ KC(0x4d), KS_Cmd_Debugger, KS_q,
+ KC(0x56), KS_m, KS_M, KS_mu,
+ KC(0x57), KS_ugrave, KS_percent,
+ KC(0x58), KS_bracketleft, KS_braceleft, KS_guillemotleft,
+ KC(0x64), KS_w,
+ KC(0x6a), KS_comma, KS_question,
+ KC(0x6b), KS_semicolon, KS_period,
+ KC(0x6c), KS_colon, KS_slash,
+ KC(0x6d), KS_equal, KS_plus,
+ KC(0x77), KS_Mode_switch,
+ KC(0x7c), KS_less, KS_greater,
+};
+
+/* 023 French type 5 keyboard */
+const keysym_t sunkbd5_keydesc_fr[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x1e), KS_ampersand, KS_1,
+ KC(0x1f), KS_eacute, KS_2, KS_asciitilde,
+ KC(0x20), KS_quotedbl, KS_3, KS_numbersign,
+ KC(0x21), KS_apostrophe, KS_4, KS_braceleft,
+ KC(0x22), KS_parenleft, KS_5, KS_bracketleft,
+ KC(0x23), KS_minus, KS_6, KS_bar,
+ KC(0x24), KS_egrave, KS_7, KS_grave,
+ KC(0x25), KS_underscore, KS_8, KS_backslash,
+ KC(0x26), KS_ccedilla, KS_9, KS_asciicircum,
+ KC(0x27), KS_agrave, KS_0, KS_at,
+ KC(0x28), KS_parenright, KS_degree, KS_bracketright,
+ KC(0x29), KS_equal, KS_plus, KS_braceright,
+ KC(0x2a), KS_twosuperior,
+ KC(0x36), KS_a,
+ KC(0x37), KS_z,
+ KC(0x40), KS_dead_circumflex,KS_dead_diaeresis,
+ KC(0x41), KS_dollar, KS_sterling, KS_currency,
+ KC(0x4d), KS_Cmd_Debugger, KS_q,
+ KC(0x56), KS_m,
+ KC(0x57), KS_ugrave, KS_percent,
+ KC(0x58), KS_asterisk, KS_mu,
+ KC(0x64), KS_w,
+ KC(0x6a), KS_comma, KS_question,
+ KC(0x6b), KS_semicolon, KS_period,
+ KC(0x6c), KS_colon, KS_slash,
+ KC(0x6d), KS_exclam, KS_section,
+ KC(0x7c), KS_less, KS_greater,
+};
+
+/* 004 Danish type 4 keyboard */
+const keysym_t sunkbd_keydesc_dk[] = {
+ KC(0x0d), KS_Multi_key,
+ KC(0x0f), KS_asciitilde, KS_asciicircum,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_numbersign, KS_sterling,
+ KC(0x21), KS_4, KS_currency, KS_dollar,
+ KC(0x23), KS_6, KS_ampersand,
+ KC(0x24), KS_7, KS_slash, KS_braceleft,
+ KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
+ KC(0x26), KS_9, KS_parenright, KS_bracketright,
+ KC(0x27), KS_0, KS_equal, KS_braceright,
+ KC(0x28), KS_plus, KS_question,
+ KC(0x29), KS_dead_acute, KS_dead_grave, KS_bar,
+ KC(0x2a), KS_apostrophe, KS_asterisk, KS_grave,
+ KC(0x40), KS_aring,
+ KC(0x41), KS_dead_diaeresis,KS_dead_circumflex,KS_dead_tilde,
+ KC(0x43), KS_Mode_switch,
+ KC(0x4c), KS_Caps_Lock,
+ KC(0x56), KS_ae,
+ KC(0x57), KS_oslash,
+ KC(0x58), KS_onehalf, KS_section,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x77), KS_Control_L,
+ KC(0x7c), KS_less, KS_greater, KS_backslash,
+};
+
+/* 024 Danish type 5 keyboard */
+const keysym_t sunkbd5_keydesc_dk[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_numbersign, KS_sterling,
+ KC(0x21), KS_4, KS_currency, KS_dollar,
+ KC(0x22), KS_5, KS_percent, KS_asciitilde,
+ KC(0x23), KS_6, KS_ampersand, KS_asciicircum,
+ KC(0x24), KS_7, KS_slash, KS_braceleft,
+ KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
+ KC(0x26), KS_9, KS_parenright, KS_bracketright,
+ KC(0x27), KS_0, KS_equal, KS_braceright,
+ KC(0x28), KS_plus, KS_question,
+ KC(0x29), KS_dead_acute, KS_dead_grave, KS_bar,
+ KC(0x2a), KS_onehalf, KS_asterisk, KS_grave,
+ KC(0x40), KS_aring,
+ KC(0x41), KS_dead_diaeresis,KS_dead_circumflex,KS_dead_tilde,
+ KC(0x56), KS_ae,
+ KC(0x57), KS_oslash,
+ KC(0x58), KS_backslash, KS_asterisk, KS_grave,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x7c), KS_less, KS_greater, KS_backslash,
+};
+
+/* 005 German type 4 keyboard */
+const keysym_t sunkbd_keydesc_de[] = {
+ KC(0x0d), KS_Alt_L,
+ KC(0x0f), KS_bracketright,KS_braceright, KS_guillemotright,
+ KC(0x13), KS_Mode_switch,
+ KC(0x1f), KS_2, KS_quotedbl, KS_twosuperior,
+ KC(0x20), KS_3, KS_section, KS_threesuperior,
+ KC(0x23), KS_6, KS_ampersand,
+ KC(0x24), KS_7, KS_slash, KS_degree,
+ KC(0x25), KS_8, KS_parenleft, KS_grave,
+ KC(0x26), KS_9, KS_parenright, KS_apostrophe,
+ KC(0x27), KS_0, KS_equal, KS_bar,
+ KC(0x28), KS_ssharp, KS_question, KS_backslash,
+ KC(0x29), KS_dead_acute, KS_dead_grave,
+ KC(0x2a), KS_numbersign, KS_asciicircum, KS_at,
+ KC(0x3b), KS_z,
+ KC(0x40), KS_udiaeresis,
+ KC(0x41), KS_plus, KS_multiply, KS_asciitilde,
+ KC(0x4c), KS_Caps_Lock,
+ KC(0x56), KS_odiaeresis,
+ KC(0x57), KS_adiaeresis,
+ KC(0x58), KS_bracketleft, KS_braceleft, KS_guillemotleft,
+ KC(0x64), KS_y,
+ KC(0x6a), KS_m, KS_M, KS_mu,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x77), KS_Control_L,
+ KC(0x7c), KS_less, KS_greater,
+};
+
+/* 025 German type 5 keyboard */
+const keysym_t sunkbd5_keydesc_de[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x1f), KS_2, KS_quotedbl, KS_twosuperior,
+ KC(0x20), KS_3, KS_section, KS_threesuperior,
+ KC(0x23), KS_6, KS_ampersand,
+ KC(0x24), KS_7, KS_slash, KS_braceleft,
+ KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
+ KC(0x26), KS_9, KS_parenright, KS_bracketright,
+ KC(0x27), KS_0, KS_equal, KS_braceright,
+ KC(0x28), KS_ssharp, KS_question, KS_backslash,
+ KC(0x29), KS_dead_acute, KS_dead_grave,
+ KC(0x2a), KS_asciicircum, KS_degree,
+ KC(0x36), KS_q, KS_Q, KS_at,
+ KC(0x3b), KS_z,
+ KC(0x40), KS_udiaeresis,
+ KC(0x41), KS_plus, KS_multiply, KS_asciitilde,
+ KC(0x56), KS_odiaeresis,
+ KC(0x57), KS_adiaeresis,
+ KC(0x58), KS_numbersign, KS_apostrophe, KS_grave,
+ KC(0x64), KS_y,
+ KC(0x6a), KS_m, KS_M, KS_mu,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x7c), KS_less, KS_greater, KS_bar,
+};
+
+/* 006 Italian type 4 keyboard */
+const keysym_t sunkbd_keydesc_it[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x0f), KS_bracketright,KS_braceright, KS_guillemotright,
+ KC(0x1f), KS_2, KS_quotedbl, KS_twosuperior,
+ KC(0x20), KS_3, KS_sterling, KS_threesuperior,
+ KC(0x23), KS_6, KS_ampersand, KS_notsign,
+ KC(0x24), KS_7, KS_slash,
+ KC(0x25), KS_8, KS_parenleft,
+ KC(0x26), KS_9, KS_parenright, KS_backslash,
+ KC(0x27), KS_0, KS_equal, KS_bar,
+ KC(0x28), KS_apostrophe, KS_question, KS_grave,
+ KC(0x29), KS_igrave, KS_asciicircum,
+ KC(0x2a), KS_ugrave, KS_section,
+ KC(0x40), KS_egrave, KS_eacute,
+ KC(0x41), KS_plus, KS_asterisk, KS_asciitilde,
+ KC(0x4c), KS_Caps_Lock,
+ KC(0x56), KS_ograve, KS_ccedilla, KS_at,
+ KC(0x57), KS_agrave, KS_degree, KS_numbersign,
+ KC(0x58), KS_bracketleft, KS_braceleft, KS_guillemotleft,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x77), KS_Control_L,
+ KC(0x7c), KS_less, KS_greater,
+};
+
+/* 026 Italian type 5 keyboard */
+const keysym_t sunkbd5_keydesc_it[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x1f), KS_2, KS_quotedbl,
+ KC(0x20), KS_3, KS_sterling,
+ KC(0x23), KS_6, KS_ampersand,
+ KC(0x24), KS_7, KS_slash,
+ KC(0x25), KS_8, KS_parenleft, KS_braceleft,
+ KC(0x26), KS_9, KS_parenright, KS_braceright,
+ KC(0x27), KS_0, KS_equal,
+ KC(0x28), KS_apostrophe, KS_question, KS_grave,
+ KC(0x29), KS_igrave, KS_asciicircum,
+ KC(0x2a), KS_backslash, KS_bar,
+ KC(0x40), KS_egrave, KS_eacute, KS_bracketleft,
+ KC(0x41), KS_plus, KS_asterisk, KS_bracketright,
+ KC(0x56), KS_ograve, KS_ccedilla, KS_at,
+ KC(0x57), KS_agrave, KS_degree, KS_numbersign,
+ KC(0x58), KS_ugrave, KS_section, KS_asciitilde,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x7c), KS_less, KS_greater,
+};
+
+/* 007 Dutch type 4 keyboard */
+const keysym_t sunkbd_keydesc_nl[] = {
+ KC(0x0d), KS_Caps_Lock,
+ KC(0x0f), KS_backslash, KS_bar,
+ KC(0x1e), KS_1, KS_exclam, KS_onesuperior,
+ KC(0x1f), KS_2, KS_quotedbl, KS_twosuperior,
+ KC(0x20), KS_3, KS_numbersign, KS_threesuperior,
+ KC(0x21), KS_4, KS_dollar, KS_onequarter,
+ KC(0x22), KS_5, KS_percent, KS_onehalf,
+ KC(0x23), KS_6, KS_ampersand, KS_threequarters,
+ KC(0x24), KS_7, KS_underscore, KS_sterling,
+ KC(0x25), KS_8, KS_parenleft, KS_braceleft,
+ KC(0x26), KS_9, KS_parenright, KS_braceright,
+ KC(0x27), KS_0, KS_apostrophe, KS_grave,
+ KC(0x28), KS_slash, KS_question,
+ KC(0x29), KS_degree, KS_dead_tilde, KS_dead_abovering,
+ KC(0x2a), KS_less, KS_greater,
+ KC(0x40), KS_dead_diaeresis,KS_dead_circumflex,
+ KC(0x41), KS_asterisk, KS_brokenbar, KS_asciitilde,
+ KC(0x4e), KS_s, KS_S, KS_ssharp,
+ KC(0x56), KS_plus, KS_plusminus,
+ KC(0x57), KS_dead_acute, KS_dead_grave,
+ KC(0x58), KS_at, KS_section, KS_notsign,
+ KC(0x64), KS_z, KS_Z, KS_guillemotleft,
+ KC(0x65), KS_x, KS_X, KS_guillemotright,
+ KC(0x66), KS_c, KS_C, KS_cent,
+ KC(0x6a), KS_m, KS_M, KS_mu,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_equal,
+ KC(0x77), KS_Mode_switch,
+ KC(0x7d), KS_bracketright,KS_bracketleft,
+};
+
+/* 027 Dutch type 5 keyboard */
+const keysym_t sunkbd5_keydesc_nl[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x1e), KS_1, KS_exclam, KS_onesuperior,
+ KC(0x1f), KS_2, KS_quotedbl, KS_twosuperior,
+ KC(0x20), KS_3, KS_numbersign, KS_threesuperior,
+ KC(0x21), KS_4, KS_dollar, KS_onequarter,
+ KC(0x22), KS_5, KS_percent, KS_onehalf,
+ KC(0x23), KS_6, KS_ampersand, KS_threequarters,
+ KC(0x24), KS_7, KS_underscore, KS_sterling,
+ KC(0x25), KS_8, KS_parenleft, KS_braceleft,
+ KC(0x26), KS_9, KS_parenright, KS_braceright,
+ KC(0x27), KS_0, KS_apostrophe, KS_grave,
+ KC(0x28), KS_slash, KS_question, KS_backslash,
+ KC(0x29), KS_degree, KS_dead_tilde, KS_dead_abovering,
+ KC(0x2a), KS_at, KS_section, KS_notsign,
+ KC(0x40), KS_dead_diaeresis,KS_dead_circumflex,
+ KC(0x41), KS_asterisk, KS_bar, KS_asciitilde,
+ KC(0x4e), KS_s, KS_S, KS_ssharp,
+ KC(0x56), KS_plus, KS_plusminus,
+ KC(0x57), KS_dead_acute, KS_dead_grave,
+ KC(0x58), KS_less, KS_greater, KS_asciicircum,
+ KC(0x64), KS_z, KS_Z, KS_guillemotleft,
+ KC(0x65), KS_x, KS_X, KS_guillemotright,
+ KC(0x66), KS_c, KS_C, KS_cent,
+ KC(0x6a), KS_m, KS_M, KS_mu,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon, KS_hyphen,
+ KC(0x6d), KS_minus, KS_equal,
+ KC(0x7d), KS_bracketright,KS_bracketleft, KS_brokenbar,
+};
+
+/* 008 Norwegian type 4 keyboard */
+const keysym_t sunkbd_keydesc_no[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x0f), KS_asciitilde, KS_asciicircum,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_numbersign, KS_sterling,
+ KC(0x21), KS_4, KS_currency, KS_dollar,
+ KC(0x23), KS_6, KS_ampersand,
+ KC(0x24), KS_7, KS_slash, KS_braceleft,
+ KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
+ KC(0x26), KS_9, KS_parenright, KS_bracketright,
+ KC(0x27), KS_0, KS_equal, KS_braceright,
+ KC(0x28), KS_plus, KS_question,
+ KC(0x29), KS_backslash, KS_dead_grave, KS_dead_acute,
+ KC(0x2a), KS_apostrophe, KS_asterisk, KS_grave,
+ KC(0x40), KS_aring,
+ KC(0x41), KS_dead_diaeresis,KS_dead_circumflex,KS_dead_tilde,
+ KC(0x4c), KS_Caps_Lock,
+ KC(0x56), KS_oslash,
+ KC(0x57), KS_ae,
+ KC(0x58), KS_bar, KS_section,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x77), KS_Control_L,
+ KC(0x7d), KS_less, KS_greater,
+};
+
+/* 028 Norwegian type 5 keyboard */
+const keysym_t sunkbd5_keydesc_no[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_numbersign, KS_sterling,
+ KC(0x21), KS_4, KS_currency, KS_dollar,
+ KC(0x22), KS_5, KS_percent, KS_asciitilde,
+ KC(0x23), KS_6, KS_ampersand, KS_asciicircum,
+ KC(0x24), KS_7, KS_slash, KS_braceleft,
+ KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
+ KC(0x26), KS_9, KS_parenright, KS_bracketright,
+ KC(0x27), KS_0, KS_equal, KS_braceright,
+ KC(0x28), KS_plus, KS_question,
+ KC(0x29), KS_backslash, KS_dead_grave, KS_dead_acute,
+ KC(0x2a), KS_bar, KS_section,
+ KC(0x40), KS_aring,
+ KC(0x41), KS_dead_diaeresis,KS_dead_circumflex,KS_dead_tilde,
+ KC(0x56), KS_oslash,
+ KC(0x57), KS_ae,
+ KC(0x58), KS_apostrophe, KS_asterisk, KS_grave,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x7d), KS_less, KS_greater,
+};
+
+/* 009 Portuguese type 4 keyboard */
+const keysym_t sunkbd_keydesc_pt[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x0f), KS_bracketright,KS_braceright, KS_guillemotright,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_numbersign, KS_sterling,
+ KC(0x21), KS_4, KS_dollar, KS_section,
+ KC(0x23), KS_6, KS_ampersand, KS_notsign,
+ KC(0x24), KS_7, KS_slash,
+ KC(0x25), KS_8, KS_parenleft,
+ KC(0x26), KS_9, KS_parenright, KS_backslash,
+ KC(0x27), KS_0, KS_equal, KS_bar,
+ KC(0x28), KS_apostrophe, KS_question, KS_grave,
+ KC(0x29), KS_exclamdown, KS_questiondown,
+ KC(0x2a), KS_dead_tilde, KS_dead_circumflex,KS_asciicircum,
+ KC(0x40), KS_dead_diaeresis,KS_asterisk, KS_plus,
+ KC(0x41), KS_dead_acute, KS_dead_grave, KS_asciitilde,
+ KC(0x4c), KS_Caps_Lock,
+ KC(0x56), KS_ccedilla,
+ KC(0x57), KS_masculine, KS_ordfeminine,
+ KC(0x58), KS_bracketleft, KS_braceleft, KS_guillemotleft,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x77), KS_Control_L,
+ KC(0x7d), KS_less, KS_greater,
+};
+
+/* 029 Portuguese type 4 keyboard */
+const keysym_t sunkbd5_keydesc_pt[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_numbersign, KS_sterling,
+ KC(0x21), KS_4, KS_dollar, KS_section,
+ KC(0x22), KS_5, KS_percent, KS_asciitilde,
+ KC(0x23), KS_6, KS_ampersand, KS_asciicircum,
+ KC(0x24), KS_7, KS_slash, KS_braceleft,
+ KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
+ KC(0x26), KS_9, KS_parenright, KS_bracketright,
+ KC(0x27), KS_0, KS_equal, KS_braceright,
+ KC(0x28), KS_apostrophe, KS_question, KS_grave,
+ KC(0x29), KS_guillemotleft,KS_guillemotright,
+ KC(0x2a), KS_backslash, KS_bar,
+ KC(0x40), KS_plus, KS_asterisk, KS_dead_diaeresis,
+ KC(0x41), KS_dead_acute, KS_dead_grave,
+ KC(0x56), KS_ccedilla,
+ KC(0x57), KS_masculine, KS_ordfeminine,
+ KC(0x58), KS_dead_tilde, KS_dead_circumflex,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x7d), KS_less, KS_greater,
+};
+
+/* 00a Spanish type 4 keyboard */
+const keysym_t sunkbd_keydesc_es[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x0f), KS_bracketright,KS_braceright, KS_guillemotright,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_hyphen, KS_numbersign,
+ KC(0x22), KS_5, KS_percent, KS_degree,
+ KC(0x23), KS_6, KS_ampersand, KS_notsign,
+ KC(0x24), KS_7, KS_slash,
+ KC(0x25), KS_8, KS_parenleft,
+ KC(0x26), KS_9, KS_parenright, KS_backslash,
+ KC(0x27), KS_0, KS_equal, KS_bar,
+ KC(0x28), KS_apostrophe, KS_question, KS_grave,
+ KC(0x29), KS_exclamdown, KS_questiondown,
+ KC(0x2a), KS_ccedilla,
+ KC(0x3e), KS_o, KS_O, KS_masculine,
+ KC(0x40), KS_dead_grave, KS_dead_circumflex,KS_asciicircum,
+ KC(0x41), KS_plus, KS_asterisk, KS_asciitilde,
+ KC(0x4c), KS_Caps_Lock,
+ KC(0x4d), KS_a, KS_A, KS_ordfeminine,
+ KC(0x56), KS_ntilde,
+ KC(0x57), KS_dead_acute, KS_dead_diaeresis,
+ KC(0x58), KS_bracketleft, KS_braceleft, KS_guillemotleft,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x77), KS_Control_L,
+ KC(0x7d), KS_less, KS_greater,
+};
+
+/* 02a Spanish type 5 keyboard */
+const keysym_t sunkbd5_keydesc_es[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x1e), KS_1, KS_exclam, KS_bar,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_hyphen, KS_numbersign,
+ KC(0x21), KS_4, KS_dollar, KS_asciicircum,
+ KC(0x22), KS_5, KS_percent, KS_asciitilde,
+ KC(0x23), KS_6, KS_ampersand, KS_notsign,
+ KC(0x24), KS_7, KS_slash,
+ KC(0x25), KS_8, KS_parenleft,
+ KC(0x26), KS_9, KS_parenright,
+ KC(0x27), KS_0, KS_equal,
+ KC(0x28), KS_apostrophe, KS_question, KS_grave,
+ KC(0x29), KS_exclamdown, KS_questiondown,
+ KC(0x2a), KS_masculine, KS_ordfeminine, KS_backslash,
+ KC(0x40), KS_dead_grave, KS_dead_circumflex,KS_bracketleft,
+ KC(0x41), KS_plus, KS_asterisk, KS_bracketright,
+ KC(0x56), KS_ntilde,
+ KC(0x57), KS_dead_acute, KS_dead_diaeresis,KS_braceleft,
+ KC(0x58), KS_ccedilla, KS_Ccedilla, KS_braceright,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x7d), KS_less, KS_greater,
+};
+
+/* 00b Swedish/Finnish type 4 keyboard */
+const keysym_t sunkbd_keydesc_sv[] = {
+ KC(0x0d), KS_Multi_key,
+ KC(0x0f), KS_asciitilde, KS_asciicircum,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_numbersign, KS_sterling,
+ KC(0x21), KS_4, KS_currency, KS_dollar,
+ KC(0x23), KS_6, KS_ampersand,
+ KC(0x24), KS_7, KS_slash, KS_braceleft,
+ KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
+ KC(0x26), KS_9, KS_parenright, KS_bracketright,
+ KC(0x27), KS_0, KS_equal, KS_braceright,
+ KC(0x28), KS_plus, KS_question, KS_backslash,
+ KC(0x29), KS_dead_acute, KS_dead_grave,
+ KC(0x2a), KS_apostrophe, KS_asterisk, KS_grave,
+ KC(0x40), KS_aring,
+ KC(0x41), KS_dead_diaeresis,KS_dead_circumflex,KS_dead_tilde,
+ KC(0x43), KS_Mode_switch,
+ KC(0x4c), KS_Caps_Lock,
+ KC(0x56), KS_odiaeresis,
+ KC(0x57), KS_adiaeresis,
+ KC(0x58), KS_section, KS_onehalf,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x77), KS_Control_L,
+ KC(0x7c), KS_less, KS_greater, KS_bar,
+};
+
+const keysym_t sunkbd_keydesc_sv_nodead[] = {
+ KC(0x29), KS_apostrophe, KS_grave,
+ KC(0x41), KS_diaeresis, KS_asciicircum, KS_asciitilde,
+};
+
+/* 02b Swedish type 5 keyboard */
+const keysym_t sunkbd5_keydesc_sv[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x0f), KS_asciitilde, KS_asciicircum,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_numbersign, KS_sterling,
+ KC(0x21), KS_4, KS_currency, KS_dollar,
+ KC(0x23), KS_6, KS_ampersand,
+ KC(0x24), KS_7, KS_slash, KS_braceleft,
+ KC(0x25), KS_8, KS_parenleft, KS_bracketleft,
+ KC(0x26), KS_9, KS_parenright, KS_bracketright,
+ KC(0x27), KS_0, KS_equal, KS_braceright,
+ KC(0x28), KS_plus, KS_question, KS_backslash,
+ KC(0x29), KS_dead_acute, KS_dead_grave,
+ KC(0x2a), KS_section, KS_onehalf,
+ KC(0x40), KS_aring,
+ KC(0x41), KS_dead_diaeresis,KS_dead_circumflex,KS_dead_tilde,
+ KC(0x43), KS_Multi_key,
+ KC(0x4c), KS_Control_L,
+ KC(0x56), KS_odiaeresis,
+ KC(0x57), KS_adiaeresis,
+ KC(0x58), KS_apostrophe, KS_asterisk, KS_grave,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x77), KS_Caps_Lock,
+ KC(0x7c), KS_less, KS_greater, KS_bar,
+};
+
+/* 00c Swiss-French type 4 keyboard */
+const keysym_t sunkbd_keydesc_sf[] = {
+ KC(0x0d), KS_Multi_key,
+ KC(0x0f), KS_greater, KS_braceright,
+ KC(0x1e), KS_1, KS_plus, KS_exclam,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_asterisk, KS_numbersign,
+ KC(0x21), KS_4, KS_ccedilla, KS_cent,
+ KC(0x22), KS_5, KS_percent, KS_asciitilde,
+ KC(0x23), KS_6, KS_ampersand, KS_section,
+ KC(0x24), KS_7, KS_slash, KS_bar,
+ KC(0x25), KS_8, KS_parenleft, KS_degree,
+ KC(0x26), KS_9, KS_parenright, KS_backslash,
+ KC(0x27), KS_0, KS_equal, KS_asciicircum,
+ KC(0x28), KS_apostrophe, KS_question, KS_grave,
+ KC(0x29), KS_dead_circumflex,KS_dead_grave,
+ KC(0x2a), KS_dollar, KS_dead_tilde, KS_sterling,
+ KC(0x3b), KS_z,
+ KC(0x40), KS_egrave, KS_udiaeresis,
+ KC(0x41), KS_dead_diaeresis,KS_dead_acute,
+ KC(0x43), KS_Mode_switch,
+ KC(0x4c), KS_Caps_Lock,
+ KC(0x56), KS_eacute, KS_odiaeresis,
+ KC(0x57), KS_agrave, KS_adiaeresis,
+ KC(0x58), KS_less, KS_braceleft,
+ KC(0x64), KS_y,
+ KC(0x6a), KS_m, KS_M, KS_mu,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x77), KS_Control_L,
+ KC(0x7c), KS_bracketright,KS_bracketleft, KS_backslash,
+};
+
+/* 02c Swiss-French type 5 keyboard */
+const keysym_t sunkbd5_keydesc_sf[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x1e), KS_1, KS_plus, KS_bar,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_asterisk, KS_numbersign,
+ KC(0x21), KS_4, KS_ccedilla, KS_asciicircum,
+ KC(0x22), KS_5, KS_percent, KS_asciitilde,
+ KC(0x23), KS_6, KS_ampersand,
+ KC(0x24), KS_7, KS_slash,
+ KC(0x25), KS_8, KS_parenleft,
+ KC(0x26), KS_9, KS_parenright,
+ KC(0x27), KS_0, KS_equal, KS_grave,
+ KC(0x28), KS_apostrophe, KS_question, KS_dead_acute,
+ KC(0x29), KS_dead_circumflex,KS_dead_grave,KS_dead_tilde,
+ KC(0x2a), KS_dollar, KS_degree,
+ KC(0x3b), KS_z,
+ KC(0x40), KS_egrave, KS_udiaeresis, KS_bracketleft,
+ KC(0x41), KS_dead_diaeresis,KS_exclam, KS_bracketright,
+ KC(0x56), KS_eacute, KS_odiaeresis,
+ KC(0x57), KS_agrave, KS_adiaeresis, KS_braceleft,
+ KC(0x58), KS_dollar, KS_sterling, KS_braceright,
+ KC(0x64), KS_y,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x7c), KS_less, KS_greater, KS_backslash,
+};
+
+/* 00d Swiss-German type 4 keyboard */
+const keysym_t sunkbd_keydesc_sg[] = {
+ KC(0x0d), KS_Multi_key,
+ KC(0x0f), KS_greater, KS_braceright,
+ KC(0x1e), KS_1, KS_plus, KS_exclam,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_asterisk, KS_numbersign,
+ KC(0x21), KS_4, KS_ccedilla, KS_cent,
+ KC(0x22), KS_5, KS_percent, KS_asciitilde,
+ KC(0x23), KS_6, KS_ampersand, KS_section,
+ KC(0x24), KS_7, KS_slash, KS_bar,
+ KC(0x25), KS_8, KS_parenleft, KS_degree,
+ KC(0x26), KS_9, KS_parenright, KS_backslash,
+ KC(0x27), KS_0, KS_equal, KS_asciicircum,
+ KC(0x28), KS_apostrophe, KS_question, KS_grave,
+ KC(0x29), KS_dead_circumflex,KS_dead_grave,
+ KC(0x2a), KS_dollar, KS_dead_tilde, KS_sterling,
+ KC(0x3b), KS_z,
+ KC(0x40), KS_udiaeresis, KS_egrave,
+ KC(0x41), KS_dead_diaeresis,KS_dead_acute,
+ KC(0x43), KS_Mode_switch,
+ KC(0x4c), KS_Caps_Lock,
+ KC(0x56), KS_odiaeresis, KS_eacute,
+ KC(0x57), KS_adiaeresis, KS_agrave,
+ KC(0x58), KS_less, KS_braceleft,
+ KC(0x64), KS_y,
+ KC(0x6a), KS_m, KS_M, KS_mu,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x77), KS_Control_L,
+ KC(0x7c), KS_bracketright,KS_bracketleft, KS_backslash,
+};
+
+/* 02d Swiss-German type 5 keyboard */
+const keysym_t sunkbd5_keydesc_sg[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x1e), KS_1, KS_plus, KS_bar,
+ KC(0x1f), KS_2, KS_quotedbl, KS_at,
+ KC(0x20), KS_3, KS_asterisk, KS_numbersign,
+ KC(0x21), KS_4, KS_ccedilla, KS_asciicircum,
+ KC(0x22), KS_5, KS_percent, KS_asciitilde,
+ KC(0x23), KS_6, KS_ampersand,
+ KC(0x24), KS_7, KS_slash,
+ KC(0x25), KS_8, KS_parenleft,
+ KC(0x26), KS_9, KS_parenright,
+ KC(0x27), KS_0, KS_equal, KS_grave,
+ KC(0x28), KS_apostrophe, KS_question, KS_dead_acute,
+ KC(0x29), KS_dead_circumflex,KS_dead_grave,KS_dead_tilde,
+ KC(0x2a), KS_dollar, KS_degree,
+ KC(0x3b), KS_z,
+ KC(0x40), KS_udiaeresis, KS_egrave, KS_bracketleft,
+ KC(0x41), KS_dead_diaeresis,KS_exclam, KS_bracketright,
+ KC(0x56), KS_odiaeresis, KS_eacute,
+ KC(0x57), KS_adiaeresis, KS_agrave, KS_braceleft,
+ KC(0x58), KS_dollar, KS_sterling, KS_braceright,
+ KC(0x64), KS_y,
+ KC(0x6b), KS_comma, KS_semicolon,
+ KC(0x6c), KS_period, KS_colon,
+ KC(0x6d), KS_minus, KS_underscore,
+ KC(0x7c), KS_less, KS_greater, KS_backslash,
+};
+
+/* 00e UK English type 4 keyboard */
+const keysym_t sunkbd_keydesc_uk[] = {
+ KC(0x1e), KS_1, KS_exclam, KS_bar,
+ KC(0x21), KS_3, KS_sterling, KS_numbersign,
+ KC(0x28), KS_minus, KS_underscore, KS_notsign,
+ KC(0x43), KS_Mode_switch,
+};
+
+/* 02e UK English type 5 keyboard */
+const keysym_t sunkbd5_keydesc_uk[] = {
+ KC(0x0d), KS_Mode_switch,
+ KC(0x1f), KS_2, KS_quotedbl,
+ KC(0x20), KS_3, KS_sterling,
+ KC(0x2a), KS_grave, KS_notsign, KS_brokenbar,
+ KC(0x57), KS_apostrophe, KS_at,
+ KC(0x58), KS_numbersign, KS_asciitilde,
+ KC(0x7c), KS_backslash, KS_bar,
+};
+
+/* 031 Japan type 5 keyboard */
+const keysym_t sunkbd5_keydesc_jp[] = {
+ KC(0x1f), KS_2, KS_quotedbl,
+ KC(0x23), KS_6, KS_ampersand,
+ KC(0x24), KS_7, KS_apostrophe,
+ KC(0x25), KS_8, KS_parenleft,
+ KC(0x26), KS_9, KS_parenright,
+ KC(0x27), KS_0,
+ KC(0x28), KS_minus, KS_equal,
+ KC(0x29), KS_asciicircum, KS_asciitilde,
+ KC(0x2a), KS_yen, KS_bar,
+ KC(0x40), KS_at, KS_grave,
+ KC(0x41), KS_bracketleft, KS_braceleft,
+ KC(0x56), KS_semicolon, KS_plus,
+ KC(0x57), KS_colon, KS_asterisk,
+ KC(0x58), KS_bracketright,KS_braceright,
+ KC(0x7c), KS_backslash, KS_underscore,
+};
+
+#define KBD_MAP(name, base, map) \
+ { name, base, sizeof(map)/sizeof(keysym_t), map }
+
+/* Supported type 4 keyboard layouts */
+const struct wscons_keydesc sunkbd_keydesctab[] = {
+ KBD_MAP(KB_US, 0, sunkbd_keydesc_us),
+ KBD_MAP(KB_BE, KB_US, sunkbd_keydesc_befr),
+ KBD_MAP(KB_DE, KB_US, sunkbd_keydesc_de),
+ KBD_MAP(KB_DK, KB_US, sunkbd_keydesc_dk),
+ KBD_MAP(KB_ES, KB_US, sunkbd_keydesc_es),
+ KBD_MAP(KB_FR, KB_US, sunkbd_keydesc_befr),
+ KBD_MAP(KB_IT, KB_US, sunkbd_keydesc_it),
+ KBD_MAP(KB_NL, KB_US, sunkbd_keydesc_nl),
+ KBD_MAP(KB_NO, KB_US, sunkbd_keydesc_no),
+ KBD_MAP(KB_PT, KB_US, sunkbd_keydesc_pt),
+ KBD_MAP(KB_SF, KB_US, sunkbd_keydesc_sf),
+ KBD_MAP(KB_SG, KB_US, sunkbd_keydesc_sg),
+ KBD_MAP(KB_SV, KB_US, sunkbd_keydesc_sv),
+ KBD_MAP(KB_SV | KB_NODEAD, KB_SV, sunkbd_keydesc_sv_nodead),
+ KBD_MAP(KB_UK, KB_US, sunkbd_keydesc_uk),
+ {0, 0, 0, 0},
+};
+
+/* Supported type 5 keyboard layouts */
+const struct wscons_keydesc sunkbd5_keydesctab[] = {
+ KBD_MAP(KB_US, 0, sunkbd_keydesc_us),
+ KBD_MAP(KB_DE, KB_US, sunkbd5_keydesc_de),
+ KBD_MAP(KB_DK, KB_US, sunkbd5_keydesc_dk),
+ KBD_MAP(KB_ES, KB_US, sunkbd5_keydesc_es),
+ KBD_MAP(KB_FR, KB_US, sunkbd5_keydesc_fr),
+ KBD_MAP(KB_IT, KB_US, sunkbd5_keydesc_it),
+ KBD_MAP(KB_JP, KB_US, sunkbd5_keydesc_jp),
+ KBD_MAP(KB_NL, KB_US, sunkbd5_keydesc_nl),
+ KBD_MAP(KB_NO, KB_US, sunkbd5_keydesc_no),
+ KBD_MAP(KB_PT, KB_US, sunkbd5_keydesc_pt),
+ KBD_MAP(KB_SF, KB_US, sunkbd5_keydesc_sf),
+ KBD_MAP(KB_SG, KB_US, sunkbd5_keydesc_sg),
+ KBD_MAP(KB_SV, KB_US, sunkbd5_keydesc_sv),
+ KBD_MAP(KB_SV | KB_NODEAD, KB_SV, sunkbd_keydesc_sv_nodead),
+ KBD_MAP(KB_UK, KB_US, sunkbd5_keydesc_uk),
+ {0, 0, 0, 0},
+};
+
+/*
+ * Keyboard layout to ID table
+ * References:
+ * Sun Type 5 Keyboard Supplement Installation Guide, May 1992
+ * http://docs.sun.com/db/doc/806-6642/6jfipqu57?a=view
+ * http://jp.sunsolve.sun.com/handbook_pub/Systems/SSVygr/INPUT_Compact1_Keyboard.html
+ */
+const int sunkbd_layouts[MAXSUNLAYOUT] = {
+ /* Type 4 layouts */
+ KB_US, /* 000 USA */
+ KB_US, /* 001 same as 000 */
+ KB_BE, /* 002 Belgium/French */
+ -1, /* 003 Canada */
+ KB_DK, /* 004 Denmark */
+ KB_DE, /* 005 Germany */
+ KB_IT, /* 006 Italy */
+ KB_NL, /* 007 The Netherlands */
+ KB_NO, /* 008 Norway */
+ KB_PT, /* 009 Portugal */
+ KB_ES, /* 00a Latin America/Spanish */
+ KB_SV, /* 00b Sweden */
+ KB_SF, /* 00c Switzerland/French */
+ KB_SG, /* 00d Switzerland/German */
+ KB_UK, /* 00e Great Britain */
+ -1, /* 00f unaffected */
+ -1, /* 010 Korea */
+ -1, /* 011 Taiwan */
+ -1, /* 012 unaffected */
+ -1, /* 013 unaffected */
+ -1, /* 014 VT220 */
+ -1, /* 015 VT220 Switzerland/French */
+ -1, /* 016 VT220 Switzerland/German */
+ -1, /* 017 VT220 Switzerland/Italian */
+ -1, /* 018 unaffected */
+ -1, /* 019 Belgium */
+ -1, /* 01a unaffected */
+ -1, /* 01b unaffected */
+ -1, /* 01c unaffected */
+ -1, /* 01d unaffected */
+ -1, /* 01e unaffected */
+ -1, /* 01f unaffected */
+ -1, /* 020 Japan */
+
+ /* Type 5 layouts */
+ KB_US, /* 021 USA */
+ KB_US, /* 022 UNIX */
+ KB_FR, /* 023 France */
+ KB_DK, /* 024 Denmark */
+ KB_DE, /* 025 Germany */
+ KB_IT, /* 026 Italy */
+ KB_NL, /* 027 The Netherlands */
+ KB_NO, /* 028 Norway */
+ KB_PT, /* 029 Portugal */
+ KB_ES, /* 02a Spain */
+ KB_SV, /* 02b Sweden */
+ KB_SF, /* 02c Switzerland/French */
+ KB_SG, /* 02d Switzerland/German */
+ KB_UK, /* 02e Great Britain */
+ -1, /* 02f Korea */
+ -1, /* 030 Taiwan */
+ KB_JP, /* 031 Japan */
+ -1, /* 032 Canada/French */
+ -1, /* 033 Hungary */
+ -1, /* 034 Poland */
+ -1, /* 035 Czech */
+ -1, /* 036 Russia */
+ -1, /* 037 Latvia */
+ -1, /* 038 Turkey-Q5 */
+ -1, /* 039 Greece */
+ -1, /* 03a Arabic */
+ -1, /* 03b Lithuania */
+ -1, /* 03c Belgium */
+ -1, /* 03d unaffected */
+ -1, /* 03e Turkey-F5 */
+ -1, /* 03f Canada/French */
+
+ /* Not affected range */
+ -1, /* 040 */
+ -1, /* 041 */
+ -1, /* 042 */
+ -1, /* 043 */
+ -1, /* 044 */
+ -1, /* 045 */
+ -1, /* 046 */
+ -1, /* 047 */
+ -1, /* 048 */
+ -1, /* 049 */
+ -1, /* 04a */
+ -1, /* 04b */
+ -1, /* 04c */
+ -1, /* 04d */
+ -1, /* 04e */
+ -1, /* 04f */
+
+ /* ``Compact-1'' layouts */
+ KB_US, /* 050 USA */
+ KB_US, /* 051 UNIX */
+ KB_FR, /* 052 France */
+ KB_DK, /* 053 Denmark */
+ KB_DE, /* 054 Germany */
+ KB_IT, /* 055 Italy */
+ KB_NL, /* 056 The Netherlands */
+ KB_NO, /* 057 Norway */
+ KB_PT, /* 058 Portugal */
+ KB_ES, /* 059 Spain */
+ KB_SV, /* 05a Sweden */
+ KB_SF, /* 05b Switzerland/French */
+ KB_SG, /* 05c Switzerland/German */
+ KB_UK, /* 05d Great Britain */
+ -1, /* 05e Korea */
+ -1, /* 05f Taiwan */
+ KB_JP, /* 060 Japan */
+ -1, /* 061 Canada/French */
+};
+
+struct wskbd_mapdata sunkbd_keymapdata = {
+ sunkbd_keydesctab,
+#ifdef SUNKBD_LAYOUT
+ SUNKBD_LAYOUT,
+#else
+ KB_US,
+#endif
+};
+
+struct wskbd_mapdata sunkbd5_keymapdata = {
+ sunkbd5_keydesctab,
+#ifdef SUNKBD5_LAYOUT
+ SUNKBD5_LAYOUT,
+#else
+ KB_US,
+#endif
+};
diff --git a/sys/dev/sun/sunkbdvar.h b/sys/dev/sun/sunkbdvar.h
index 8b960a64632..8349fdf6598 100644
--- a/sys/dev/sun/sunkbdvar.h
+++ b/sys/dev/sun/sunkbdvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sunkbdvar.h,v 1.8 2003/06/02 19:08:58 jason Exp $ */
+/* $OpenBSD: sunkbdvar.h,v 1.9 2005/05/14 15:25:20 miod Exp $ */
/*
* Copyright (c) 2002 Jason L. Wright (jason@thought.net)
@@ -31,6 +31,29 @@
*
*/
+struct sunkbd_softc {
+ struct device sc_dev;
+
+ int (*sc_sendcmd)(void *, u_int8_t *, u_int);
+
+ int sc_leds; /* LED status */
+ int sc_id; /* keyboard type */
+ u_int8_t sc_kbdstate; /* keyboard state */
+ int sc_click; /* click state */
+ int sc_layout; /* current layout */
+
+ int sc_bellactive, sc_belltimeout;
+ struct timeout sc_bellto;
+
+ struct device *sc_wskbddev;
+};
+
+extern struct wskbd_accessops sunkbd_accessops;
+
+void sunkbd_bellstop(void *);
+void sunkbd_decode(u_int8_t, u_int *, int *);
+void sunkbd_raw(struct sunkbd_softc *, u_int8_t);
+
extern const struct wscons_keydesc sunkbd_keydesctab[];
extern struct wskbd_mapdata sunkbd_keymapdata;
extern const struct wscons_keydesc sunkbd5_keydesctab[];