Home | History | Annotate | Line # | Download | only in hpc
hpckbdkeymap.h revision 1.32
      1  1.32       uwe /*	$NetBSD: hpckbdkeymap.h,v 1.32 2005/01/18 06:03:31 uwe Exp $	*/
      2   1.1       uch 
      3   1.1       uch /*-
      4  1.13       uch  * Copyright (c) 1999-2002 The NetBSD Foundation, Inc.
      5   1.1       uch  * All rights reserved.
      6   1.1       uch  *
      7   1.1       uch  * Redistribution and use in source and binary forms, with or without
      8   1.1       uch  * modification, are permitted provided that the following conditions
      9   1.1       uch  * are met:
     10   1.1       uch  * 1. Redistributions of source code must retain the above copyright
     11   1.1       uch  *    notice, this list of conditions and the following disclaimer.
     12   1.1       uch  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       uch  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       uch  *    documentation and/or other materials provided with the distribution.
     15   1.1       uch  * 3. All advertising materials mentioning features or use of this software
     16   1.1       uch  *    must display the following acknowledgement:
     17   1.1       uch  *        This product includes software developed by the NetBSD
     18   1.1       uch  *        Foundation, Inc. and its contributors.
     19   1.1       uch  * 4. Neither the name of The NetBSD Foundation nor the names of its
     20   1.1       uch  *    contributors may be used to endorse or promote products derived
     21   1.1       uch  *    from this software without specific prior written permission.
     22   1.1       uch  *
     23   1.1       uch  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     24   1.1       uch  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     25   1.1       uch  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     26   1.1       uch  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     27   1.1       uch  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     28   1.1       uch  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     29   1.1       uch  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     30   1.1       uch  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     31   1.1       uch  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     32   1.1       uch  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     33   1.1       uch  * POSSIBILITY OF SUCH DAMAGE.
     34   1.1       uch  */
     35   1.1       uch 
     36   1.1       uch #define UNK		255	/* unknown */
     37   1.1       uch #define IGN		254	/* ignore */
     38   1.1       uch #define SPL		253	/* special key */
     39   1.1       uch #define KC(n)		KS_KEYCODE(n)
     40   1.1       uch #define CMDMAP(map)	{ map, (sizeof(map)/sizeof(keysym_t)) }
     41   1.1       uch #define NULLCMDMAP	{ NULL, 0 }
     42   1.1       uch 
     43   1.1       uch #define KEY_SPECIAL_OFF		0
     44   1.1       uch #define KEY_SPECIAL_LIGHT	1
     45   1.1       uch 
     46  1.32       uwe const uint8_t default_keymap[] = {
     47   1.1       uch /*      0    1    2    3    4    5    6    7 */
     48   1.1       uch /* 0 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     49   1.1       uch /* 1 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     50   1.1       uch /* 2 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     51   1.1       uch /* 3 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     52   1.1       uch /* 4 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     53   1.1       uch /* 5 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     54   1.1       uch /* 6 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     55   1.1       uch /* 7 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     56   1.1       uch /* 8 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     57   1.1       uch /* 9 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     58   1.1       uch /*10 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     59   1.1       uch /*11 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     60   1.1       uch /*12 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     61   1.1       uch /*13 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     62   1.1       uch /*14 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
     63   1.1       uch /*15 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK
     64   1.1       uch };
     65   1.1       uch 
     66   1.1       uch const int default_special_keymap[] = {
     67   1.1       uch 	[KEY_SPECIAL_OFF]	= -1,
     68   1.1       uch 	[KEY_SPECIAL_LIGHT]	= -1
     69   1.1       uch };
     70   1.1       uch 
     71   1.1       uch #ifdef hpcmips
     72  1.32       uwe const uint8_t tc5165_mobilon_keymap[] = {
     73   1.1       uch /*      0    1    2    3    4    5    6    7 */
     74   1.1       uch /* 0 */	37 , 45 , 44 , UNK, 9  , 51 , 23 , UNK,
     75   1.1       uch /* 1 */	UNK, 56 , UNK, UNK, UNK, UNK, UNK, UNK,
     76   1.1       uch /* 2 */	UNK, UNK, 29 , UNK, UNK, UNK, UNK, UNK,
     77   1.1       uch /* 3 */	24 , 203, UNK, 38 , 10 , 27 , 13 , UNK,
     78   1.1       uch /* 4 */	40 , UNK, UNK, 39 , 26 , 53 , 11 , 12 ,
     79   1.1       uch /* 5 */	UNK, UNK, UNK, 53 , 25 , UNK, UNK, SPL, /* Light */
     80   1.1       uch /* 6 */	208, UNK, UNK, UNK, 52 , UNK, 43 , 14 ,
     81   1.1       uch /* 7 */	205, 200, UNK, UNK, SPL, UNK, UNK, 28 , /* Off key */
     82   1.1       uch /* 8 */	UNK, 41 , 59 , 15 , 2  , UNK, UNK, UNK,
     83   1.1       uch /* 9 */	63 , 64 , 1  , UNK, 65 , 16 , 17 , UNK,
     84   1.1       uch /*10 */	60 , UNK, 61 , 62 , 3  , UNK, UNK, UNK,
     85   1.1       uch /*11 */	UNK, UNK, UNK, 42 , 58 , UNK, UNK, UNK,
     86   1.1       uch /*12 */	47 , 33 , 46 , 5  , 4  , 18 , 19 , UNK,
     87   1.1       uch /*13 */	34 , 35 , 20 , 48 , 6  , 7  , 21 , 49 ,
     88   1.1       uch /*14 */	22 , 31 , 32 , 36 , 8  , 30 , 50 , 57 ,
     89   1.1       uch /*15 */	UNK, IGN, UNK, UNK, UNK, UNK, UNK, UNK /* Windows key */
     90   1.1       uch };
     91   1.1       uch 
     92   1.1       uch const int tc5165_mobilon_special_keymap[] = {
     93   1.1       uch 	[KEY_SPECIAL_OFF]	= 60,
     94   1.1       uch 	[KEY_SPECIAL_LIGHT]	= 47
     95   1.1       uch };
     96   1.1       uch 
     97  1.32       uwe const uint8_t tc5165_telios_jp_keymap[] = {
     98   1.1       uch /*      0    1    2    3    4    5    6    7 */
     99   1.1       uch /* 0 */	58,  15,  IGN, 1,   IGN, IGN, IGN, IGN,
    100   1.1       uch /* 1 */	IGN, IGN, IGN, IGN, 54,  42,  IGN, IGN,
    101   1.1       uch /* 2 */	31,  18,  4,   IGN, IGN, 32,  45,  59,
    102   1.1       uch /* 3 */	33,  19,  5,   61,  IGN, 46,  123, 60,
    103   1.1       uch /* 4 */	35,  21,  8,   64,  IGN, 48,  49,  63,
    104   1.1       uch /* 5 */	17,  16,  3,   IGN, 2,   30,  44,  41,
    105   1.1       uch /* 6 */	IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    106   1.1       uch /* 7 */	IGN, IGN, IGN, IGN, IGN, IGN, 56,  IGN,
    107   1.1       uch /* 8 */	34,  20,  7,   IGN, 6,   47,  57,  62,
    108   1.1       uch /* 9 */	IGN, IGN, IGN, IGN, IGN, IGN, 29,  IGN,
    109   1.4  takemura /*10 */	27,  125, 13,  203, 208, 40,  115, 68,
    110   1.1       uch /*11 */	39,  26,  25,  IGN, 12,  52,  53,  67,
    111   1.1       uch /*12 */	37,  24,  11,  IGN, 10,  38,  51,  66,
    112   1.1       uch /*13 */	23,  22,  9,   IGN, IGN, 36,  50,  65,
    113   1.4  takemura /*14 */	28,  43,  14,  200, 205,  IGN, IGN, 211,
    114   1.1       uch /*15 */	IGN, IGN, IGN, IGN, IGN, IGN, 221, IGN
    115   1.1       uch };
    116   1.1       uch 
    117  1.32       uwe const uint8_t tc5165_compaq_c_jp_keymap[] = {
    118   1.1       uch /*      0    1    2    3    4    5    6    7 */
    119   1.1       uch /* 0 */	38,  50,  49,  48,  47,  46,  45,  44,
    120   1.1       uch /* 1 */	56,  IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    121   1.1       uch /* 2 */	13,  IGN, 112, 121, 123, 41,  28,  57,
    122   1.4  takemura /* 3 */	205, 203, 208, 200, 39,  53,  52,  51,
    123   1.1       uch /* 4 */	24,  25,  40,  IGN, 43,  26,  115, 58,
    124   1.1       uch /* 5 */	54,  IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    125   1.1       uch /* 6 */	IGN, IGN, IGN, SPL, IGN, IGN, IGN, IGN, /* Light */
    126   1.1       uch /* 7 */	IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    127   1.1       uch /* 8 */	42,  IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    128   1.1       uch /* 9 */	29,  IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    129   1.1       uch /*10 */	221, IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    130   1.1       uch /*11 */	221, IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    131   1.1       uch /*12 */	14,  27,  12,  11,  10,  15,  1,   125,
    132   1.1       uch /*13 */	9,   8,   7,   6,   5,   4,   3,   2,
    133   1.1       uch /*14 */	23,  22,  21,  20,  19,  18,  17,  16,
    134   1.1       uch /*15 */	37,  36,  35,  34,  33,  32,  31,  30
    135   1.1       uch };
    136   1.1       uch 
    137   1.1       uch const int tc5165_compaq_c_jp_special_keymap[] = {
    138   1.1       uch 	[KEY_SPECIAL_OFF]	= -1, /* don't have off button */
    139   1.1       uch 	[KEY_SPECIAL_LIGHT]	= 51
    140   1.1       uch };
    141   1.1       uch 
    142  1.32       uwe const uint8_t m38813c_keymap[] = {
    143   1.1       uch /*      0    1    2    3    4    5    6    7 */
    144   1.1       uch /* 0 */	0,   1,   2,   3,   4,   5,   6,   7,
    145   1.1       uch /* 1 */	8,   9,   10,  11,  12,  13,  14,  15,
    146   1.1       uch /* 2 */	16,  17,  18,  19,  20,  21,  22,  23,
    147   1.1       uch /* 3 */	24,  25,  26,  27,  28,  29,  30,  31,
    148   1.1       uch /* 4 */	32,  33,  34,  35,  36,  37,  38,  39,
    149   1.1       uch /* 5 */	40,  41,  42,  43,  44,  45,  46,  47,
    150   1.1       uch /* 6 */	48,  49,  50,  51,  52,  53,  54,  55,
    151   1.1       uch /* 7 */	56,  57,  58,  59,  60,  61,  62,  63,
    152   1.1       uch /* 8 */	64,  65,  66,  67,  68,  69,  70,  71,
    153   1.4  takemura /* 9 */	200, 73,  74,  203, 76,  205,  78,  79,
    154   1.4  takemura /*10 */	208, 81,  82,  83,  84,  85,  86,  87,
    155   1.1       uch /*11 */	88,  89,  90,  91,  92,  93,  94,  95,
    156   1.1       uch /*12 */	96,  97,  98,  99,  100, 101, 102, 103,
    157   1.1       uch /*13 */	104, 105, 106, 107, 108, 109, 110, 111,
    158   1.1       uch /*14 */	112, 113, 114, 115, 116, 117, 118, 119,
    159   1.1       uch /*15 */	120, 121, 122, 123, 124, 125, 126, 127
    160   1.1       uch };
    161   1.1       uch 
    162   1.1       uch /* NEC MobileGearII MCR series (Japan) */
    163  1.32       uwe static uint8_t mcr_jp_keytrans[] = {
    164   1.1       uch /*00	right	ent	p	.	y	b	z	space	*/
    165   1.1       uch /*08	down	/	o	,	t	v	a	nfer	*/
    166   1.1       uch /*10	left	\	i	m	r	c	w	menu	*/
    167   1.1       uch /*18	^	-	u	-	e	x	q	1	*/
    168   1.1       uch /*20	pgdn	h/z	0	l	:	g	tab	f1	*/
    169   1.1       uch /*28	xfer	;	9	n	5	f	2	k	*/
    170   1.1       uch /*30	up	[	8	j	4	d	6	-	*/
    171   1.1       uch /*38	-	@	7	h	3	]	s	-	*/
    172   1.1       uch /*40	caps	-	-	-	bs	fnc	f8	f3	*/
    173   1.1       uch /*48	-	alt	-	-	|	k/h	f7	f4	*/
    174   1.1       uch /*50	-	-	ctrl	-	f10	pgup	f6	f2	*/
    175   1.1       uch /*58	-	-	-	shift	del	f9	f5	esc	*/
    176   1.1       uch /*----------------------------------------------------------------------*/
    177   1.4  takemura /*00*/	205,	 28,	 25,	 52,	 21,	 48,	 44,	 57,
    178   1.4  takemura /*08*/	208,	 53,	 24,	 51,	 20,	 47,	 30,	123,
    179   1.4  takemura /*10*/	203,	115,	 23,	 50,	 19,	 46,	 17,	221,
    180   1.1       uch /*18*/	 13,	IGN,	 22,	IGN,	 18,	 45,	 16,	  2,
    181   1.1       uch /*20*/	 81,	 41,	 11,	 38,	 40,	 34,	 15,	 59,
    182   1.1       uch /*28*/	121,	 39,	 10,	 49,	  6,	 33,	  3,	 37,
    183   1.4  takemura /*30*/	200,	 27,	  9,	 36,	  5,	 32,	  7,	IGN,
    184   1.1       uch /*38*/	 12,	 26,	  8,	 35,	  4,	 43,	 31,	IGN,
    185   1.1       uch /*40*/	 58,	IGN,	IGN,	IGN,	 14,	184,	 66,	 61,
    186   1.1       uch /*48*/	IGN,	 56,	IGN,	IGN,	125,	112,	 65,	 62,
    187   1.1       uch /*50*/	IGN,	IGN,	 29,	IGN,	 68,	 73,	 64,	 60,
    188   1.1       uch /*58*/	IGN,	IGN,	IGN,	 42,	 14,	 67,	 63,	  1,
    189   1.1       uch };
    190   1.1       uch 
    191   1.1       uch static const keysym_t mcr_jp_cmdmap[] = {
    192   1.1       uch /*	pos      command		normal		shifted		*/
    193   1.1       uch 	KC(184), KS_Cmd,		KS_Alt_R,	KS_Multi_key,
    194   1.1       uch 	KC(73),  KS_Cmd_BrightnessUp,	KS_KP_Prior,	KS_KP_9,
    195   1.1       uch 	KC(81),  KS_Cmd_BrightnessDown,	KS_KP_Next,	KS_KP_3,
    196   1.1       uch 	KC(51),  KS_Cmd_ContrastDown,	KS_comma,	KS_less,
    197   1.1       uch 	KC(52),  KS_Cmd_ContrastUp,	KS_period,	KS_greater,
    198   1.1       uch 	KC(57),  KS_Cmd_BacklightToggle,KS_space,
    199   1.1       uch };
    200   1.1       uch 
    201   1.1       uch /* IBM WorkPad z50 */
    202  1.32       uwe static uint8_t z50_keytrans[] = {
    203   1.1       uch /*00	f1	f3	f5	f7	f9	-	-	f11	*/
    204   1.1       uch /*08	f2	f4	f6	f8	f10	-	-	f12	*/
    205   1.1       uch /*10	'	[	-	0	p	;	up	/	*/
    206   1.1       uch /*18	-	-	-	9	o	l	.	-	*/
    207   1.1       uch /*20	left	]	=	8	i	k	,	-	*/
    208   1.1       uch /*28	h	y	6	7	u	j	m	n	*/
    209   1.1       uch /*30	-	bs	num	del	-	\	ent	sp	*/
    210   1.1       uch /*38	g	t	5	4	r	f	v	b	*/
    211   1.1       uch /*40	-	-	-	3	e	d	c	right	*/
    212   1.1       uch /*48	-	-	-	2	w	s	x	down	*/
    213   1.1       uch /*50	esc	tab	~	1	q	a	z	-	*/
    214   1.1       uch /*58	menu	Ls	Lc	Rc	La	Ra	Rs	-	*/
    215   1.1       uch /*----------------------------------------------------------------------*/
    216   1.1       uch /*00*/	 59,	 61,	 63,	 65,	 67,	IGN,	IGN,	 87,
    217   1.1       uch /*08*/	 60,	 62,	 64,	 66,	 68,	IGN,	IGN,	 88,
    218   1.4  takemura /*10*/	 40,	 26,	 12,	 11,	 25,	 39,	200,	 53,
    219   1.1       uch /*18*/	IGN,	IGN,	IGN,	 10,	 24,	 38,	 52,	IGN,
    220   1.4  takemura /*20*/	203,	 27,	 13,	  9,	 23,	 37,	 51,	IGN,
    221   1.1       uch /*28*/	 35,	 21,	  7,	  8,	 22,	 36,	 50,	 49,
    222   1.1       uch /*30*/	IGN,	 14,	 69,	 14,	IGN,	 43,	 28,	 57,
    223   1.1       uch /*38*/	 34,	 20,	  6,	  5,	 19,	 33,	 47,	 48,
    224   1.4  takemura /*40*/	IGN,	IGN,	IGN,	  4,	 18,	 32,	 46,	205,
    225   1.4  takemura /*48*/	IGN,	IGN,	IGN,	  3,	 17,	 31,	 45,	208,
    226   1.1       uch /*50*/	  1,	 15,	 41,	  2,	 16,	 30,	 44,	IGN,
    227   1.1       uch /*58*/	221,	 42,	 29,	 29,	 56,	 56,	 54,	IGN,
    228   1.1       uch };
    229   1.1       uch 
    230   1.1       uch /* Sharp Tripad PV6000 and VADEM CLIO */
    231  1.32       uwe static uint8_t tripad_keytrans[] = {
    232   1.1       uch /*00	lsh	tab	`	q	esc	1	WIN	-	*/
    233   1.1       uch /*08	ctrl	z	x	a	s	w	e	2	*/
    234   1.1       uch /*10	lalt	sp	c	v	d	f	r	3	*/
    235   1.1       uch /*18	b	n	g	h	t	y	4	5	*/
    236   1.1       uch /*20	m	,	j	k	u	i	6	7	*/
    237   1.1       uch /*28	Fn	caps	l	o	p	8	9	0	*/
    238   1.1       uch /*30	[	]	la	.	/	;	-	=	*/
    239   1.1       uch /*38	rsh	ra	ua	da	'	ent	\	del	*/
    240   1.1       uch /*40	-	-	-	-	-	-	-	-	*/
    241   1.1       uch /*48	-	-	-	-	-	-	-	-	*/
    242   1.1       uch /*50	-	-	-	-	-	-	-	-	*/
    243   1.1       uch /*58	-	-	-	-	-	-	-	-	*/
    244   1.1       uch /*----------------------------------------------------------------------*/
    245   1.1       uch /*00*/	 42,	 15,	 41,	 16,	  1,	  2,	104,	221,
    246   1.1       uch /*08*/	 29,	 44,	 45,	 30,	 31,	 17,	 18,	  3,
    247   1.1       uch /*10*/	 56,	 57,	 46,	 47,	 32,	 33,	 19,	  4,
    248   1.1       uch /*18*/	 48,	 49,	 34,	 35,	 20,	 21,	  5,	  6,
    249   1.1       uch /*20*/	 50,	 51,	 36,	 37,	 22,	 23,	  7,	  8,
    250   1.1       uch /*28*/	105,	 58,	 38,	 24,	 25,	  9,	 10,	 11,
    251   1.4  takemura /*30*/	 26,	 27,	203,	 52,	 53,	 39,	 12,	 13,
    252   1.4  takemura /*38*/	 54,	205,	200,	208,	 40,	 28,	 43,	 14,
    253   1.1       uch /*40*/	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,
    254   1.1       uch /*48*/	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,
    255   1.1       uch /*50*/	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,
    256   1.1       uch /*58*/	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,
    257   1.1       uch };
    258   1.1       uch 
    259   1.1       uch /* NEC Mobile Gear MCCS series */
    260  1.32       uwe static uint8_t mccs_keytrans[] = {
    261   1.1       uch /*00	caps	cr	rar	p	.	y	b	z	*/
    262   1.1       uch /*08	alt	[	dar	o	,	t	v	a	*/
    263   1.1       uch /*10	zen	@	lar	i	m	r	c	w	*/
    264   1.1       uch /*18	lctrl	;	uar	u	n	e	x	q	*/
    265   1.1       uch /*20	lshft	bs	\	0	l	6	g	tab	*/
    266   1.1       uch /*28	nconv	|	/	9	k	5	f	2	*/
    267   1.1       uch /*30	conv	=	]	8	j	4	d	1	*/
    268   1.1       uch /*38	hira	-	'	7	h	3	s	esc	*/
    269   1.1       uch /*40	-	sp	-	-	-	-	-	-	*/
    270   1.1       uch /*48	-	-	-	-	-	-	-	-	*/
    271   1.1       uch /*50	-	-	-	-	-	-	-	-	*/
    272   1.1       uch /*58	-	-	-	-	-	-	-	-	*/
    273   1.1       uch /*----------------------------------------------------------------------*/
    274   1.4  takemura /*00*/	 58,	 28,	205,	 25,	 52,	 21,	 48,	 44,
    275   1.4  takemura /*08*/	 56,	 27,	208,	 24,	 51,	 20,	 47,	 30,
    276   1.4  takemura /*10*/	 41,	 26,	203,	 23,	 50,	 19,	 46,	 17,
    277   1.4  takemura /*18*/	 29,	 39,	200,	 22,	 49,	 18,	 45,	 16,
    278   1.1       uch /*20*/	 42,	 14,	115,	 11,	 38,	  7,	 34,	 15,
    279   1.1       uch /*28*/	123,	125,	 53,	 10,	 37,	  6,	 33,	  3,
    280   1.1       uch /*30*/	121,	 13,	 43,	  9,	 36,	  5,	 32,	  2,
    281   1.1       uch /*38*/	112,	 12,	 40,	  8,	 35,	  4,	 31,	  1,
    282   1.1       uch /*40*/	IGN,	 57,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,
    283   1.1       uch /*48*/	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,
    284   1.1       uch /*50*/	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,
    285   1.1       uch /*58*/	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,	IGN,
    286   1.1       uch };
    287   1.1       uch 
    288   1.1       uch static const keysym_t mccs_cmdmap[] = {
    289   1.1       uch /*	pos      command		normal		shifted		*/
    290   1.1       uch 	KC(51),  KS_Cmd_ContrastDown,	KS_comma,	KS_less,
    291   1.1       uch 	KC(52),  KS_Cmd_ContrastUp,	KS_period,	KS_greater,
    292   1.1       uch 	KC(57),  KS_Cmd_BacklightToggle,KS_space,
    293   1.1       uch };
    294   1.1       uch 
    295  1.32       uwe static uint8_t mobilepro_keytrans[] = {
    296  1.10  takemura /*00	space	]	\	/	left	down	enter	l	*/
    297  1.10  takemura /*08	-	[	'	;	right	up	.	o	*/
    298   1.1       uch /*10	-	-	-	Windows	v	c	x	z	*/
    299   1.1       uch /*18	-	=	\-	`	f	d	s	a	*/
    300   1.1       uch /*20	8	7	6	5	r	e	w	q	*/
    301   1.1       uch /*28	,	m	n	b	-	-	0	9	*/
    302   1.1       uch /*30	k	j	h	g	4	3	2	1	*/
    303   1.1       uch /*38	i	u	y	t	-	caps	del	esc	*/
    304   1.1       uch /*40	alt_R	-	-	-	BS	p	TAB	Fn	*/
    305   1.8      sato /*48	-	alt_L	-	-	pgdn	pgup	f10	f9	*/
    306   1.1       uch /*50	-	-	ctrl	-	f8	f7	f6	f5	*/
    307   1.1       uch /*58	-	-	-	shift	f4	f3	f2	f1	*/
    308   1.1       uch /*----------------------------------------------------------------------*/
    309   1.4  takemura /*00*/	 57,	 27,	 43,	 53,	203,	208,	 28,	 38,
    310   1.4  takemura /*08*/	IGN,	 26,	 40,	 39,	205,	200,	 52,	 24,
    311   1.1       uch /*10*/	IGN,	IGN,	IGN,	221,	 47,	 46,	 45,	 44,
    312   1.1       uch /*18*/	IGN,	 13,	 12,	 41,	 33,	 32,	 31,	 30,
    313   1.1       uch /*20*/	  9,	  8,	  7,	  6,	 19,	 18,	 17,	 16,
    314   1.1       uch /*28*/	 51,	 50,	 49,	 48,	IGN,	IGN,	 11,	 10,
    315   1.1       uch /*30*/	 37,	 36,	 35,	 34,	  5,	  4,	  3,	  2,
    316   1.1       uch /*38*/	 23,	 22,	 21,	 20,	IGN,	 58,	 14,	  1,
    317   1.8      sato /*40*/	184,	IGN,	IGN,	IGN,	 14,	 25,	 15,	219,
    318   1.8      sato /*48*/	IGN,	 56,	IGN,	IGN,	 81,	 73,	 68,	 67,
    319   1.1       uch /*50*/	IGN,	IGN,	 29,	IGN,	 66,	 65,	 64,	 63,
    320   1.1       uch /*58*/	IGN,	IGN,	IGN,	 42,	 62,	 61,	 60,	 59,
    321   1.1       uch };
    322   1.1       uch 
    323   1.8      sato static const keysym_t mobilepro_cmdmap[] = {
    324   1.8      sato /*	pos      command		normal		shifted		*/
    325   1.8      sato 	KC(219), KS_Cmd,		KS_Meta_L,	KS_Multi_key,
    326   1.8      sato 	KC(73),  KS_Cmd_BrightnessUp,	KS_KP_Prior,	KS_KP_9,
    327   1.8      sato 	KC(81),  KS_Cmd_BrightnessDown,	KS_KP_Next,	KS_KP_3,
    328   1.8      sato 	KC(51),  KS_Cmd_ContrastDown,	KS_comma,	KS_less,
    329   1.8      sato 	KC(52),  KS_Cmd_ContrastUp,	KS_period,	KS_greater,
    330   1.8      sato 	KC(57),  KS_Cmd_BacklightToggle,KS_space,
    331   1.8      sato };
    332   1.8      sato 
    333   1.1       uch /* NEC MobilePro 750c by "Castor Fu" <castor (at) geocast.com> */
    334  1.32       uwe static uint8_t mobilepro750c_keytrans[] = {
    335   1.1       uch /*00	right	\	p	.	y	b	z	space	*/
    336   1.1       uch /*08	down	/	o	,	t	v	a	-	*/
    337   1.1       uch /*10	left	enter	i	m	r	c	w	Win	*/
    338   1.1       uch /*18	num	]	u	n	e	x	q	caps	*/
    339   1.1       uch /*20	pgdn	-	0	l	:	g	tab	esc	*/
    340   1.1       uch /*28	-	;	9	k	5	f	2	`	*/
    341   1.1       uch /*30	up	[	8	j	4	d	1	'	*/
    342   1.1       uch /*38	-	@	7	h	3	s	del	-	*/
    343   1.1       uch /*40	shift	-	-	-	bs	f12	f8	f4	*/
    344   1.1       uch /*48	-	alt	-	-	|	f11	f7	f3	*/
    345   1.1       uch /*50	-	-	ctrl	-	f10	f10	f6	f2	*/
    346   1.1       uch /*58	-	-	-	shift	del	f9	f5	f1	*/
    347   1.1       uch /*----------------------------------------------------------------------*/
    348   1.4  takemura /*00*/	205,	43,	25,	52,	21,	48,	44,	57,
    349   1.4  takemura /*08*/	208,	53,	24,	51,	20,	47,	30,	IGN,
    350   1.4  takemura /*10*/	203,	28,	23,	50,	19,	46,	17,	221,
    351   1.1       uch /*18*/	69,	27,	22,	49,	18,	45,	16,	58,
    352   1.1       uch /*20*/	81,	IGN,	11,	38,	7,	34,	15,	1,
    353   1.1       uch /*28*/	IGN,	39,	10,	37,	6,	33,	3,	41,
    354   1.4  takemura /*30*/	200,	26,	9,	36,	5,	32,	2,	40,
    355   1.1       uch /*38*/	12,	26,	8,	35,	4,	31,	83,	IGN,
    356   1.1       uch /*40*/	42,	IGN,	IGN,	IGN,	14,	88,	66,	62,
    357   1.1       uch /*48*/	IGN,	56,	IGN,	IGN,	125,	87,	65,	61,
    358   1.1       uch /*50*/	IGN,	IGN,	29,	IGN,	68,	68,	64,	60,
    359   1.1       uch /*58*/	IGN,	IGN,	IGN,	42,	13,	67,	63,	59,
    360   1.1       uch };
    361   1.1       uch 
    362  1.10  takemura /* NEC MobilePro 780 */
    363  1.32       uwe static uint8_t mobilepro780_keytrans[] = {
    364  1.10  takemura /*00	space	]	\	/	left	right	enter	l	*/
    365  1.10  takemura /*08	-	[	'	;	up	down	.	o	*/
    366  1.10  takemura /*10	-	-	-	Windows	v	c	x	z	*/
    367  1.10  takemura /*18	-	=	\-	`	f	d	s	a	*/
    368  1.10  takemura /*20	8	7	6	5	r	e	w	q	*/
    369  1.10  takemura /*28	,	m	n	b	-	-	0	9	*/
    370  1.10  takemura /*30	k	j	h	g	4	3	2	1	*/
    371  1.10  takemura /*38	i	u	y	t	-	caps	del	esc	*/
    372  1.10  takemura /*40	alt_R	-	-	-	BS	p	TAB	Fn	*/
    373  1.10  takemura /*48	-	alt_L	-	-	f12	f11	f10	f9	*/
    374  1.10  takemura /*50	-	-	ctrl	-	f8	f7	f6	f5	*/
    375  1.10  takemura /*58	-	-	-	shift	f4	f3	f2	f1	*/
    376  1.10  takemura /*----------------------------------------------------------------------*/
    377  1.10  takemura /*00*/	 57,	 27,	 43,	 53,	203,	205,	 28,	 38,
    378  1.10  takemura /*08*/	IGN,	 26,	 40,	 39,	200,	208,	 52,	 24,
    379  1.10  takemura /*10*/	IGN,	IGN,	IGN,	221,	 47,	 46,	 45,	 44,
    380  1.10  takemura /*18*/	IGN,	 13,	 12,	 41,	 33,	 32,	 31,	 30,
    381  1.10  takemura /*20*/	  9,	  8,	  7,	  6,	 19,	 18,	 17,	 16,
    382  1.10  takemura /*28*/	 51,	 50,	 49,	 48,	IGN,	IGN,	 11,	 10,
    383  1.10  takemura /*30*/	 37,	 36,	 35,	 34,	  5,	  4,	  3,	  2,
    384  1.10  takemura /*38*/	 23,	 22,	 21,	 20,	IGN,	 58,	 14,	  1,
    385  1.10  takemura /*40*/	184,	IGN,	IGN,	IGN,	 14,	 25,	 15,	IGN,
    386  1.10  takemura /*48*/	IGN,	 56,	IGN,	IGN,	 88,	 87,	 68,	 67,
    387  1.10  takemura /*50*/	IGN,	IGN,	 29,	IGN,	 66,	 65,	 64,	 63,
    388  1.10  takemura /*58*/	IGN,	IGN,	IGN,	 42,	 62,	 61,	 60,	 59,
    389  1.10  takemura };
    390  1.10  takemura 
    391  1.27        tv /* NEC MobilePro 8x0 */
    392  1.32       uwe static uint8_t mobilepro8x0_keytrans[] = {
    393  1.27        tv /*00	space	]	\	/	left	right	enter	l	*/
    394  1.27        tv /*08	-	[	'	;	up	down	.	o	*/
    395  1.27        tv /*10	-	-	-	Windows	v	c	x	z	*/
    396  1.27        tv /*18	-	=	\-	`	f	d	s	a	*/
    397  1.27        tv /*20	8	7	6	5	r	e	w	q	*/
    398  1.27        tv /*28	,	m	n	b	-	-	0	9	*/
    399  1.27        tv /*30	k	j	h	g	4	3	2	1	*/
    400  1.27        tv /*38	i	u	y	t	-	caps	del	esc	*/
    401  1.27        tv /*40	alt_R	-	-	-	BS	p	TAB	Fn	*/
    402  1.27        tv /*48	-	alt_L	-	-	pgdn	pgup	f10	f9	*/
    403  1.27        tv /*50	-	-	ctrl	-	f8	f7	f6	f5	*/
    404  1.27        tv /*58	-	-	-	shift	f4	f3	f2	f1	*/
    405  1.27        tv /*----------------------------------------------------------------------*/
    406  1.27        tv /*00*/	 57,	 27,	 43,	 53,	203,	205,	 28,	 38,
    407  1.27        tv /*08*/	IGN,	 26,	 40,	 39,	200,	208,	 52,	 24,
    408  1.27        tv /*10*/	IGN,	IGN,	IGN,	221,	 47,	 46,	 45,	 44,
    409  1.27        tv /*18*/	IGN,	 13,	 12,	 41,	 33,	 32,	 31,	 30,
    410  1.27        tv /*20*/	  9,	  8,	  7,	  6,	 19,	 18,	 17,	 16,
    411  1.27        tv /*28*/	 51,	 50,	 49,	 48,	IGN,	IGN,	 11,	 10,
    412  1.27        tv /*30*/	 37,	 36,	 35,	 34,	  5,	  4,	  3,	  2,
    413  1.27        tv /*38*/	 23,	 22,	 21,	 20,	IGN,	 58,	 14,	  1,
    414  1.27        tv /*40*/	184,	IGN,	IGN,	IGN,	 14,	 25,	 15,	219,
    415  1.27        tv /*48*/	IGN,	 56,	IGN,	IGN,	 81,	 73,	 68,	 67,
    416  1.27        tv /*50*/	IGN,	IGN,	 29,	IGN,	 66,	 65,	 64,	 63,
    417  1.27        tv /*58*/	IGN,	IGN,	IGN,	 42,	 62,	 61,	 60,	 59,
    418  1.27        tv };
    419  1.27        tv 
    420  1.27        tv static const keysym_t mobilepro8x0_cmdmap[] = {
    421  1.27        tv /*	pos      command		normal		shifted		*/
    422  1.27        tv 	KC(219), KS_Cmd,		KS_Meta_L,	KS_Multi_key,
    423  1.27        tv 	KC(73),  KS_Cmd_BrightnessUp,	KS_KP_Prior,	KS_KP_9,
    424  1.27        tv 	KC(81),  KS_Cmd_BrightnessDown,	KS_KP_Next,	KS_KP_3,
    425  1.27        tv 	KC(51),  KS_Cmd_ContrastDown,	KS_comma,	KS_less,
    426  1.27        tv 	KC(52),  KS_Cmd_ContrastUp,	KS_period,	KS_greater,
    427  1.27        tv 	KC(57),  KS_Cmd_BacklightToggle,KS_space,
    428  1.27        tv };
    429  1.27        tv 
    430   1.1       uch /* FUJITSU INTERTOP CX300 */
    431  1.32       uwe static uint8_t intertop_keytrans[] = {
    432   1.1       uch /*00	space   a2      1       tab     enter   caps    left    zenkaku	*/
    433   1.1       uch /*08	hiraga  a1      2       q       -       a       fnc     esc	*/
    434   1.1       uch /*10	ins     w       3       s       del     ]       down    x	*/
    435   1.1       uch /*18	z       e       4       d       a10     \       right   c	*/
    436   1.1       uch /*20	backsla r       ;       f       a9      @       ^       v	*/
    437   1.1       uch /*28	/       t       5       g       a8      p       -       b	*/
    438   1.1       uch /*30	.       y       6       h       a7      l       0       n	*/
    439   1.1       uch /*38	-       u       7       j       a5      o       bs      m	*/
    440   1.1       uch /*40	-       a3      8       a4      -       i       k       ,	*/
    441   1.1       uch /*48	num     :       9       [       a6      -       up      -	*/
    442   1.1       uch /*50	-       -       -       -       shift_L -       -       shift_R	*/
    443   1.1       uch /*58	ctrl    win     muhenka henkan  alt     -       -       -	*/
    444   1.1       uch /*----------------------------------------------------------------------*/
    445   1.4  takemura /*00*/	57,	60,	2,	15,	28,	58,	205,	41,
    446   1.1       uch /*08*/	112,	59,	3,	16,	IGN,	30,	56,	1,
    447   1.4  takemura /*10*/	210,	17,	4,	31,	83,	43,	208,	45,
    448   1.4  takemura /*18*/	44,	18,	5,	32,	68,	125,	203,	46,
    449   1.1       uch /*20*/	115,	19,	39,	33,	67,	26,	13,	47,
    450   1.1       uch /*28*/	53,	20,	6,	34,	66,	25,	12,	48,
    451   1.1       uch /*30*/	52,	21,	7,	35,	65,	38,	11,	49,
    452   1.1       uch /*38*/	IGN,	22,	8,	36,	63,	24,	14,	50,
    453   1.1       uch /*40*/	IGN,	61,	9,	62,	IGN,	23,	37,	51,
    454   1.4  takemura /*48*/	69,	40,	10,	27,	64,	IGN,	200,	IGN,
    455   1.1       uch /*50*/	IGN,	IGN,	IGN,	IGN,	42,	IGN,	IGN,	54,
    456   1.1       uch /*58*/	29,	221,	123,	121,	184,	IGN,	IGN,	IGN,
    457   1.1       uch };
    458   1.1       uch 
    459   1.1       uch /* DoCoMo sigmarion (Japan) */
    460  1.32       uwe static uint8_t sigmarion_jp_keytrans[] = {
    461   1.1       uch /*00	right	ent	p	.	y	b	z	space	*/
    462   1.1       uch /*08	down	/	o	,	t	v	a	nfer	*/
    463   1.1       uch /*10	left	\	i	m	r	c	w	menu	*/
    464   1.1       uch /*18	|	-	u	-	e	x	q	1	*/
    465   1.1       uch /*20	pgdn	h/z	0	l	:	g	tab	f1	*/
    466   1.1       uch /*28	xfer	;	9	n	5	f	2	k	*/
    467   1.1       uch /*30	up	[	8	j	4	d	6	-	*/
    468   1.1       uch /*38	-	@	7	h	3	]	s	-	*/
    469   1.1       uch /*40	caps	-	-	-	bs	fnc	f8	f3	*/
    470   1.1       uch /*48	-	alt	-	-	^	k/h	f7	f4	*/
    471   1.1       uch /*50	-	-	ctrl	-	f10	pgup	f6	f2	*/
    472   1.1       uch /*58	-	-	-	shift	del	f9	f5	esc	*/
    473   1.1       uch /*----------------------------------------------------------------------*/
    474   1.4  takemura /*00*/	205,	 28,	 25,	 52,	 21,	 48,	 44,	 57,
    475   1.4  takemura /*08*/	208,	 53,	 24,	 51,	 20,	 47,	 30,	123,
    476   1.4  takemura /*10*/	203,	115,	 23,	 50,	 19,	 46,	 17,	221,
    477   1.1       uch /*18*/	125,	IGN,	 22,	IGN,	 18,	 45,	 16,	  2,
    478   1.1       uch /*20*/	 81,	 41,	 11,	 38,	 40,	 34,	 15,	IGN,
    479   1.1       uch /*28*/	121,	 39,	 10,	 49,	  6,	 33,	  3,	 37,
    480   1.4  takemura /*30*/	200,	 27,	  9,	 36,	  5,	 32,	  7,	IGN,
    481   1.1       uch /*38*/	 12,	 26,	  8,	 35,	  4,	 43,	 31,	IGN,
    482   1.1       uch /*40*/	 58,	IGN,	IGN,	IGN,	 14,	184,	 66,	IGN,
    483   1.1       uch /*48*/	IGN,	 56,	IGN,	IGN,	 13,	112,	 65,	IGN,
    484   1.1       uch /*50*/	IGN,	IGN,	 29,	IGN,	 68,	 73,	 64,	IGN,
    485   1.1       uch /*58*/	IGN,	IGN,	IGN,	 42,	 14,	 67,	IGN,	  1,
    486   1.1       uch };
    487   1.1       uch 
    488   1.1       uch static const keysym_t sigmarion_cmdmap[] = {
    489   1.1       uch /*	pos      command		normal		shifted		*/
    490   1.1       uch 	KC(184), KS_Cmd,		KS_Alt_R,	KS_Multi_key,
    491   1.9      sato 	KC(64),  KS_Cmd_Screen0,	KS_f6,		KS_f1,
    492   1.9      sato 	KC(65),  KS_Cmd_Screen1,	KS_f7,		KS_f2,
    493   1.9      sato 	KC(66),  KS_Cmd_Screen2,	KS_f8,		KS_f3,
    494   1.9      sato 	KC(67),  KS_Cmd_Screen3,	KS_f9,		KS_f4,
    495   1.9      sato 	KC(68),  KS_Cmd_Screen4,	KS_f10,		KS_f5,
    496   1.1       uch 	KC(27),  KS_Cmd_BrightnessUp,	KS_bracketleft,	KS_braceleft,
    497   1.1       uch 	KC(43),  KS_Cmd_BrightnessDown,	KS_bracketright,KS_braceright,
    498   1.1       uch 	KC(51),  KS_Cmd_ContrastDown,	KS_comma,	KS_less,
    499   1.1       uch 	KC(52),  KS_Cmd_ContrastUp,	KS_period,	KS_greater,
    500   1.1       uch 	KC(57),  KS_Cmd_BacklightToggle,KS_space,
    501   1.1       uch };
    502   1.5  takemura 
    503   1.5  takemura /* NTT DoCoMo Pocket PostPet (Japan) */
    504  1.32       uwe static uint8_t pocketpostpet_keytrans[] = {
    505   1.5  takemura /*00	esc	1	q	a	ctrl	-	down	left	*/
    506   1.5  takemura /*08	tab	2	w	s	z	-	right	up	*/
    507   1.5  takemura /*10	pgup	3	e	d	x	shift	-	-	*/
    508   1.5  takemura /*18	pgdn	4	r	f	c	alt	-	-	*/
    509   1.5  takemura /*20	f5	5	t	g	v	nfer	-	-	*/
    510   1.5  takemura /*28	f6	6	y	h	b	-	-	-	*/
    511   1.5  takemura /*30	f7	7	u	j	n	space	-	-	*/
    512   1.5  takemura /*38	f8	8	i	k	m	-	-	-	*/
    513   1.5  takemura /*40	f9	9	o	l	,	xfer	-	-	*/
    514   1.5  takemura /*48	f10	0	p	;	.	-	-	-	*/
    515   1.5  takemura /*50	\|	minus	@	:	/	ent	-	-	*/
    516   1.5  takemura /*58	bs	^	[	]	\_	del	-	-	*/
    517   1.5  takemura /* MailCheck  -> tab	*/
    518   1.5  takemura /* Prev       -> pgup	*/
    519   1.5  takemura /* Next       -> pgdn	*/
    520   1.5  takemura /* tab        -> ctrl	*/
    521   1.5  takemura /* h/z        -> menu	*/
    522   1.5  takemura /* k/h        -> alt	*/
    523   1.5  takemura /* knj        -> nfer	*/
    524   1.5  takemura /* eng        -> xfer	*/
    525   1.5  takemura /*----------------------------------------------------------------------*/
    526   1.5  takemura /*00*/	1,	2,	16,	30,	29,	UNK,	208,	203,
    527   1.5  takemura /*08*/	15,	3,	17,	31,	44,	UNK,	205,	200,
    528   1.5  takemura /*10*/	73,	4,	18,	32,	45,	42,	UNK,	UNK,
    529   1.5  takemura /*08*/	81,	5,	19,	33,	46,	56,	UNK,	UNK,
    530   1.5  takemura /*20*/	63,	6,	20,	34,	47,	123,	UNK,	UNK,
    531   1.5  takemura /*28*/	64,	7,	21,	35,	48,	UNK,	UNK,	UNK,
    532   1.5  takemura /*30*/	65,	8,	22,	36,	49,	57,	UNK,	UNK,
    533   1.5  takemura /*38*/	66,	9,	23,	37,	50,	UNK,	UNK,	UNK,
    534   1.5  takemura /*40*/	67,	10,	24,	38,	51,	121,	UNK,	UNK,
    535   1.5  takemura /*48*/	68,	11,	25,	39,	52,	UNK,	UNK,	UNK,
    536   1.5  takemura /*50*/	125,	12,	26,	40,	53,	28,	UNK,	UNK,
    537   1.5  takemura /*58*/	14,	13,	27,	43,	115,	14,	UNK,	UNK,
    538   1.5  takemura };
    539   1.1       uch #endif /* hpcmips */
    540   1.1       uch 
    541   1.2       uch #ifdef hpcsh
    542   1.7       uch /*
    543   1.7       uch  * HP Jornada 680/690
    544   1.7       uch  */
    545   1.6       uch /* Japanese */
    546  1.32       uwe const uint8_t jornada6x0_jp_keytrans[] = {
    547   1.2       uch /*      0    1    2    3    4    5    6    7 */
    548   1.2       uch /* 0 */ 59 , 45 , 31 , 17 , 3  , UNK, 29 , UNK, /* ctrl 29 */
    549   1.2       uch /* 1 */ 60 , 46 , 32 , 18 , 4  , 42 , UNK, UNK, /* shift L 42 */
    550   1.2       uch /* 2 */ 61 , 47 , 33 , 19 , 5  , UNK, 57 , UNK,
    551   1.2       uch /* 3 */ 66 , 52 , 38 , 24 , 10 , UNK, 14 , 203,
    552   1.2       uch /* 4 */ 65 , 51 , 37 , 23 , 9  , UNK, 115, UNK,
    553   1.2       uch /* 5 */ 64 , 50 , 36 , 22 , 8  , UNK, 121, UNK,
    554   1.2       uch /* 6 */ 62 , 48 , 34 , 20 , 6  , UNK, UNK, 56 , /* alt 56 */
    555   1.2       uch /* 7 */ 63 , 49 , 35 , 21 , 7  , UNK, UNK, 123,
    556   1.2       uch /* 8 */ IGN, 53 , 39 , 25 , 11 , 200, UNK, 208,
    557   1.2       uch /* 9 */ 112, 40 , 27 , 26 , 12 , 125, UNK, 205,
    558   1.2       uch /*10 */ 41 , 28 , 43 , 14 , 13 , 54 , UNK, UNK, /* shift R 54 */
    559   1.2       uch /*11 */ SPL, IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    560   1.2       uch /*12 */ 1  , 44 , 30 , 16 , 2  , 15 , 221, UNK,
    561   1.2       uch /*13 */ UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
    562   1.2       uch /*14 */ UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
    563   1.2       uch /*15 */ UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
    564   1.2       uch };
    565   1.2       uch 
    566  1.19       uwe /* US/UK - Fn to the left of the space bar and missing few keys */
    567  1.32       uwe const uint8_t jornada6x0_us_keytrans[] = {
    568  1.18       uwe /*      0    1    2    3    4    5    6    7 */
    569  1.18       uwe /* 0 */ 59 , 45 , 31 , 17 , 3  , UNK, 29 , UNK,
    570  1.18       uwe /* 1 */ 60 , 46 , 32 , 18 , 4  , 42 , UNK, UNK,
    571  1.13       uch /* 2 */ 61 , 47 , 33 , 19 , 5  , UNK, 57 , UNK,
    572  1.17       uwe /* 3 */ 66 , 52 , 38 , 24 , 10 , UNK, 211, 203,
    573  1.18       uwe /* 4 */ 65 , 51 , 37 , 23 , 9  , UNK, 53 , UNK,
    574  1.13       uch /* 5 */ 64 , 50 , 36 , 22 , 8  , UNK, UNK, UNK,
    575  1.18       uwe /* 6 */ 62 , 48 , 34 , 20 , 6  , UNK, UNK, 56 ,
    576  1.18       uwe /* 7 */ 63 , 49 , 35 , 21 , 7  , UNK, UNK, 184,
    577  1.18       uwe /* 8 */ 67 , UNK, 39 , 25 , 11 , 200, UNK, 208,
    578  1.18       uwe /* 9 */ 68 , 40 , UNK, 43 , 12 , UNK, UNK, 205,
    579  1.18       uwe /*10 */ 87 , 28 , UNK, 14 , 13 , 54 , UNK, UNK,
    580  1.13       uch /*11 */ SPL, IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    581  1.17       uwe /*12 */ 1  , 44 , 30 , 16 , 2  , 15 , 219, UNK,
    582  1.13       uch /*13 */ UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
    583  1.13       uch /*14 */ UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
    584  1.13       uch /*15 */ UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
    585  1.13       uch };
    586  1.13       uch 
    587  1.19       uwe /* US (ABA), UK (ABU) */
    588  1.19       uwe static const keysym_t jornada6x0_us_keydesc[] = {
    589  1.19       uwe /*  pos      normal          shifted        altgr	*/
    590  1.19       uwe     KC(2),   KS_1,           KS_exclam,     KS_asciitilde,
    591  1.19       uwe     KC(3),   KS_2,           KS_at,         KS_grave,
    592  1.19       uwe     KC(4),   KS_3,           KS_numbersign, KS_sterling,
    593  1.22       uwe #ifdef KS_euro
    594  1.19       uwe     KC(5),   KS_4,           KS_dollar,     KS_euro,
    595  1.19       uwe #endif
    596  1.19       uwe     KC(25),  KS_p,           KS_P,          KS_braceleft,
    597  1.19       uwe     KC(39),  KS_semicolon,   KS_colon,      KS_bracketleft,
    598  1.19       uwe     KC(40),  KS_apostrophe,  KS_quotedbl,   KS_bracketright,
    599  1.19       uwe     KC(43),  KS_backslash,   KS_bar,        KS_braceright,
    600  1.19       uwe     KC(184), KS_Mode_switch, KS_Multi_key,
    601  1.23       uwe 
    602  1.23       uwe     KC(200), KS_Cmd_BrightnessUp,   KS_Up,
    603  1.23       uwe     KC(203), KS_Cmd_ContrastDown,   KS_Left,
    604  1.23       uwe     KC(205), KS_Cmd_ContrastUp,     KS_Right,
    605  1.23       uwe     KC(208), KS_Cmd_BrightnessDown, KS_Down,
    606  1.19       uwe };
    607  1.19       uwe 
    608  1.19       uwe 
    609  1.19       uwe /* International - AltGr to the right and extra keys in three middle rows */
    610  1.32       uwe const uint8_t jornada6x0_intl_keytrans[] = {
    611   1.6       uch /*      0    1    2    3    4    5    6    7 */
    612  1.18       uwe /* 0 */ 59 , 45 , 31 , 17 , 3  , UNK, 29 , UNK,
    613  1.18       uwe /* 1 */ 60 , 46 , 32 , 18 , 4  , 42 , UNK, UNK,
    614  1.18       uwe /* 2 */ 61 , 47 , 33 , 19 , 5  , UNK, 57 , UNK,
    615  1.18       uwe /* 3 */ 66 , 52 , 38 , 24 , 10 , UNK, 211, 203,
    616  1.18       uwe /* 4 */ 65 , 51 , 37 , 23 , 9  , UNK, 184, UNK,
    617  1.18       uwe /* 5 */ 64 , 50 , 36 , 22 , 8  , UNK, UNK, UNK,
    618  1.18       uwe /* 6 */ 62 , 48 , 34 , 20 , 6  , UNK, UNK, 56 ,
    619  1.18       uwe /* 7 */ 63 , 49 , 35 , 21 , 7  , UNK, UNK, 41 ,
    620  1.18       uwe /* 8 */ 67 , 53 , 39 , 25 , 11 , 200, UNK, 208,
    621  1.18       uwe /* 9 */ 68 , 40 , 27 , 26 , 12 , UNK, UNK, 205,
    622  1.18       uwe /*10 */ 87 , 28 , 43 , 14 , 13 , 54 , UNK, UNK,
    623  1.18       uwe /*11 */ SPL, IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    624  1.18       uwe /*12 */ 1  , 44 , 30 , 16 , 2  , 15 , 219, UNK,
    625   1.6       uch /*13 */ UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
    626   1.6       uch /*14 */ UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
    627  1.18       uwe /*15 */ UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
    628   1.6       uch };
    629   1.6       uch 
    630  1.19       uwe /*
    631  1.19       uwe  * XXX: Add AltGr layer for #ABB here?  OTOH, all the keys necessary
    632  1.19       uwe  * for basic actions in DDB or shell are on the primary layer, so it
    633  1.19       uwe  * makes sense to support AltGr via wsconsctl(8) instead, as the same
    634  1.19       uwe  * primary layer is used e.g. in Russian models.  But it does make
    635  1.19       uwe  * sense to define the <AltGr> key itself here, as we base this layout
    636  1.19       uwe  * on KB_US that defines it as the right <Alt>.
    637  1.19       uwe  */
    638  1.19       uwe /* European English (ABB) */
    639  1.19       uwe static const keysym_t jornada6x0_intl_keydesc[] = {
    640  1.19       uwe /*  pos      normal          shifted        altgr	*/
    641  1.19       uwe     KC(184), KS_Mode_switch, KS_Multi_key,
    642  1.23       uwe 
    643  1.23       uwe     KC(200), KS_Cmd_BrightnessUp,   KS_Up,
    644  1.23       uwe     KC(203), KS_Cmd_ContrastDown,   KS_Left,
    645  1.23       uwe     KC(205), KS_Cmd_ContrastUp,     KS_Right,
    646  1.23       uwe     KC(208), KS_Cmd_BrightnessDown, KS_Down,
    647  1.19       uwe };
    648  1.19       uwe 
    649  1.19       uwe /* German (ABD) */
    650  1.19       uwe static const keysym_t jornada6x0_de_keydesc[] = {
    651  1.19       uwe /*  pos      normal          shifted        altgr	*/
    652  1.19       uwe     KC(2),   KS_1,           KS_exclam,     KS_brokenbar,
    653  1.19       uwe     KC(5),   KS_4,           KS_dollar,     KS_ccedilla,
    654  1.19       uwe     KC(6),   KS_5,           KS_percent,    KS_sterling,
    655  1.19       uwe     KC(7),   KS_6,           KS_ampersand,  KS_notsign,
    656  1.22       uwe #ifdef KS_euro
    657  1.19       uwe     KC(18),  KS_e,           KS_E,          KS_euro,
    658  1.19       uwe #endif
    659  1.19       uwe     KC(27),  KS_plus,        KS_asterisk,   KS_asciitilde, /* NB: not dead */
    660  1.19       uwe     KC(30),  KS_a,           KS_A,          KS_bar,
    661  1.19       uwe     KC(41),  KS_asciicircum, KS_degree,			   /* NB: not dead */
    662  1.19       uwe     KC(43),  KS_numbersign,  KS_apostrophe, KS_dead_diaeresis,
    663  1.19       uwe     KC(44),  KS_y,           KS_Y,          KS_less,
    664  1.19       uwe     KC(45),  KS_x,           KS_X,          KS_greater,
    665  1.19       uwe     KC(46),  KS_c,           KS_C,          KS_cent,
    666  1.23       uwe 
    667  1.23       uwe     KC(200), KS_Cmd_BrightnessUp,   KS_Up,
    668  1.23       uwe     KC(203), KS_Cmd_ContrastDown,   KS_Left,
    669  1.23       uwe     KC(205), KS_Cmd_ContrastUp,     KS_Right,
    670  1.23       uwe     KC(208), KS_Cmd_BrightnessDown, KS_Down,
    671  1.19       uwe };
    672  1.19       uwe 
    673  1.21       uwe /* French (ABF) */
    674  1.21       uwe static const keysym_t jornada6x0_fr_keydesc[] = {
    675  1.21       uwe /*  pos      normal          shifted        altgr	*/
    676  1.21       uwe     KC(2),   KS_ampersand,   KS_1,          KS_plusminus,
    677  1.22       uwe #ifdef KS_euro
    678  1.21       uwe     KC(18),  KS_e,           KS_E,          KS_euro,
    679  1.21       uwe #endif
    680  1.21       uwe     KC(19),  KS_r,           KS_R,          KS_onequarter,
    681  1.21       uwe     KC(20),  KS_t,           KS_T,          KS_onehalf,
    682  1.21       uwe     KC(21),  KS_y,           KS_Y,          KS_threequarters,
    683  1.21       uwe     KC(25),  KS_p,           KS_P,          KS_paragraph,
    684  1.21       uwe     KC(30),  KS_q,           KS_Q,          KS_brokenbar,
    685  1.21       uwe     KC(31),  KS_s,           KS_S,          KS_guillemotleft,
    686  1.21       uwe     KC(32),  KS_d,           KS_D,          KS_guillemotright,
    687  1.21       uwe     KC(40),  KS_ugrave,      KS_percent,    KS_dead_acute,
    688  1.21       uwe     KC(41),  KS_twosuperior, KS_voidSymbol, KS_threesuperior,
    689  1.21       uwe     KC(43),  KS_asterisk,    KS_mu,         KS_notsign,
    690  1.21       uwe     KC(44),  KS_w,           KS_W,          KS_less,
    691  1.21       uwe     KC(45),  KS_x,           KS_X,          KS_greater,
    692  1.21       uwe     KC(46),  KS_c,           KS_C,          KS_cent,
    693  1.21       uwe     KC(50),  KS_comma,       KS_question,   KS_mu,
    694  1.21       uwe     KC(53),  KS_exclam,      KS_section,    KS_Eacute,
    695  1.21       uwe     KC(184), KS_Mode_switch, KS_Multi_key,
    696  1.23       uwe 
    697  1.23       uwe     KC(200), KS_Cmd_BrightnessUp,   KS_Up,
    698  1.23       uwe     KC(203), KS_Cmd_ContrastDown,   KS_Left,
    699  1.23       uwe     KC(205), KS_Cmd_ContrastUp,     KS_Right,
    700  1.23       uwe     KC(208), KS_Cmd_BrightnessDown, KS_Down,
    701  1.21       uwe };
    702  1.21       uwe 
    703  1.26       uwe /* Scandinavian */
    704  1.26       uwe static const keysym_t jornada6x0_scnv_keydesc[] = {
    705  1.26       uwe /*  pos      normal          shifted        altgr	*/
    706  1.26       uwe     KC(2),   KS_1,           KS_exclam,     KS_asciitilde,
    707  1.26       uwe     KC(3),   KS_2,           KS_quotedbl,   KS_at,
    708  1.26       uwe     KC(4),   KS_3,           KS_numbersign, KS_sterling,
    709  1.26       uwe     KC(5),   KS_4,           KS_currency,   KS_dollar,
    710  1.26       uwe     KC(7),   KS_6,           KS_ampersand,
    711  1.26       uwe     KC(8),   KS_7,           KS_slash,      KS_braceleft,
    712  1.26       uwe     KC(9),   KS_8,           KS_parenleft,  KS_bracketleft,
    713  1.26       uwe     KC(10),  KS_9,           KS_parenright, KS_bracketright,
    714  1.26       uwe     KC(11),  KS_0,           KS_equal,      KS_braceright,
    715  1.26       uwe     KC(12),  KS_plus,        KS_question,   KS_backslash,
    716  1.26       uwe     KC(13),  KS_apostrophe,  KS_grave,
    717  1.26       uwe     KC(25),  KS_p,           KS_P,          KS_braceleft,
    718  1.26       uwe     KC(26),  KS_aring,
    719  1.26       uwe     /*
    720  1.26       uwe      * XXX: KC(39) and KC(40) has odiaeresis/adiaeresis *and*
    721  1.26       uwe      * oslash/ae on them.  Apparently localized WinCE uses the former
    722  1.26       uwe      * for Swedish and Finnish and the latter for Danish and
    723  1.26       uwe      * Norwegian.  But as the keyboard doesn't seem to have
    724  1.26       uwe      * semicolon/colon and minus/underscore nowhere on the primary and
    725  1.26       uwe      * altgr layers, I put them here (semicolon/colon is inherited).
    726  1.26       uwe      */
    727  1.26       uwe     KC(40),  KS_minus,       KS_underscore, /* XXX */
    728  1.26       uwe     KC(41),  KS_paragraph,   KS_onehalf,    KS_bar,
    729  1.26       uwe     KC(184), KS_Mode_switch, KS_Multi_key,
    730  1.26       uwe 
    731  1.26       uwe     KC(200), KS_Cmd_BrightnessUp,   KS_Up,
    732  1.26       uwe     KC(203), KS_Cmd_ContrastDown,   KS_Left,
    733  1.26       uwe     KC(205), KS_Cmd_ContrastUp,     KS_Right,
    734  1.26       uwe     KC(208), KS_Cmd_BrightnessDown, KS_Down,
    735  1.26       uwe };
    736  1.26       uwe 
    737  1.30       uwe /* Spanish (ABE) */
    738  1.30       uwe static const keysym_t jornada6x0_es_keydesc[] = {
    739  1.30       uwe /*  pos      normal          shifted        altgr            */
    740  1.30       uwe     KC(2),   KS_1,           KS_exclam,     KS_ordfeminine,
    741  1.30       uwe     KC(3),   KS_2,           KS_quotedbl,   KS_masculine,
    742  1.30       uwe     KC(4),   KS_3,           KS_numbersign,
    743  1.30       uwe     KC(12),  KS_apostrophe,  KS_question,   KS_backslash,
    744  1.30       uwe     KC(13),  KS_questiondown,KS_exclamdown,
    745  1.30       uwe     KC(16),  KS_q,           KS_Q,          KS_at,
    746  1.30       uwe #ifdef KS_euro
    747  1.30       uwe     KC(18),  KS_e,           KS_E,          KS_euro,
    748  1.30       uwe #endif
    749  1.30       uwe     KC(26),  KS_dead_acute,  KS_dead_diaeresis,
    750  1.30       uwe     KC(27),  KS_plus,        KS_asterisk,   KS_dead_tilde,
    751  1.30       uwe     KC(40),  KS_braceleft,   KS_bracketleft,KS_dead_circumflex,
    752  1.30       uwe     KC(41),  KS_bar,         KS_degree,     KS_notsign,
    753  1.30       uwe     KC(43),  KS_braceright,  KS_bracketright,KS_dead_grave,
    754  1.30       uwe     KC(44),  KS_z,           KS_Z,          KS_less,
    755  1.30       uwe     KC(45),  KS_x,           KS_X,          KS_greater,
    756  1.30       uwe     KC(46),  KS_c,           KS_C,          KS_Ccedilla,
    757  1.30       uwe 
    758  1.30       uwe     KC(200), KS_Cmd_BrightnessUp,   KS_Up,
    759  1.30       uwe     KC(203), KS_Cmd_ContrastDown,   KS_Left,
    760  1.30       uwe     KC(205), KS_Cmd_ContrastUp,     KS_Right,
    761  1.30       uwe     KC(208), KS_Cmd_BrightnessDown, KS_Down,
    762  1.30       uwe };
    763  1.26       uwe 
    764   1.6       uch const int jornada6x0_special_keymap[] = {
    765  1.29       uch 	[KEY_SPECIAL_OFF]	= -1,
    766   1.2       uch 	[KEY_SPECIAL_LIGHT]	= -1
    767   1.2       uch };
    768   1.2       uch 
    769   1.7       uch /*
    770   1.7       uch  * HP 620LX
    771   1.7       uch  */
    772   1.7       uch /* Japanese */
    773  1.32       uwe const uint8_t hp620lx_jp_keytrans[] = {
    774   1.7       uch /*      0    1    2    3    4    5    6    7 */
    775   1.7       uch /* 0 */	2  , 16 , 112, UNK, IGN, UNK, 42 , 30 , /* REC button */
    776   1.7       uch /* 1 */	3  , 17 , 58 , 44 , UNK, 45 , 15 , 31 ,
    777   1.7       uch /* 2 */	4  , 18 , UNK, 56 , 59 , 46 , 1  , 32 ,
    778   1.7       uch /* 3 */	5  , 19 , UNK, UNK, 60 , 123, UNK, 33 ,
    779   1.7       uch /* 4 */	6  , 20 , 47 , 57 , 61 , 48 , UNK, 34 ,
    780   1.7       uch /* 5 */	7  , 21 , UNK, 121, 62 , 49 , UNK, 35 ,
    781   1.7       uch /* 6 */	8  , 22 , UNK, 125, 63 , 50 , UNK, 36 ,
    782   1.7       uch /* 7 */	9  , 23 , 52 , 115, 64 , 51 , UNK, 37 ,
    783   1.7       uch /* 8 */	10 , 24 , 53 , 203, 65 , 200, 39 , 38 ,
    784   1.7       uch /* 9 */	11 , 25 , 40 , 208, 66 , 205, 27 , 26 ,
    785   1.7       uch /*10 */	12 , 13 , 28 , UNK, UNK, UNK, 41 , 43 ,
    786   1.7       uch /*11 */	SPL, IGN, IGN, IGN, IGN, IGN, IGN, IGN, /* ON button */
    787   1.7       uch /*12 */	29 , IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    788   1.7       uch /*13 */	14 , IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    789   1.7       uch /*14 */	UNK, UNK, UNK, UNK, UNK, UNK, UNK, UNK,
    790   1.7       uch /*15 */	SPL, IGN, IGN, IGN, IGN, IGN, IGN, IGN  /* LED button */
    791   1.7       uch };
    792   1.7       uch 
    793   1.7       uch const int hp620lx_special_keymap[] = {
    794   1.7       uch 	[KEY_SPECIAL_OFF]	= 88,
    795   1.7       uch 	[KEY_SPECIAL_LIGHT]	= 120
    796   1.7       uch };
    797   1.7       uch 
    798  1.11       uch /*
    799  1.11       uch  * HITACHI PERSONA HPW50PAD
    800  1.11       uch  */
    801  1.11       uch /* Japanese */
    802  1.32       uwe const uint8_t persona_hpw50pad_jp_keytrans[] = {
    803  1.11       uch /*      0    1    2    3    4    5    6    7 */
    804  1.31       uwe /* 0 */ 59 , 61 , 63 , 65 , 67 , SPL, UNK, UNK, /* ON button */
    805  1.31       uwe /* 1 */ 29 , UNK, 47 , 48 , 121, UNK, UNK, UNK,
    806  1.31       uwe /* 2 */  1 , UNK, 34 , 51 , 112, UNK, UNK, UNK,
    807  1.31       uwe /* 3 */ 41 , 221, 35 , 37 , 52 , UNK, UNK, UNK,
    808  1.31       uwe /* 4 */ 45 , 58 , 22 , 38 , 40 , 42 , UNK, UNK,
    809  1.31       uwe /* 5 */ 30 , 16 , 21 , 24 , 28 , 54 , UNK, UNK,
    810  1.31       uwe /* 6 */ 17 ,  4 , UNK, 10 , 12 , 205, UNK, UNK,
    811  1.31       uwe /* 7 */ 31 , 18 ,  7 , 25 , 13 , 83 , UNK, UNK,
    812  1.31       uwe /* 8 */ 60 , 62 , 64 , 66 , 68 , IGN, UNK, UNK, /* REC button */
    813  1.31       uwe /* 9 */ UNK, 123, 49 , 53 , 203, UNK, UNK, UNK,
    814  1.31       uwe /*10 */ 56 , 46 , 50 , 57 , 208, UNK, UNK, UNK,
    815  1.31       uwe /*11 */ 15 , 33 , 36 , 39 , 43 , UNK, UNK, UNK,
    816  1.31       uwe /*12 */ 44 , 20 , 23 , 26 , 27 , UNK, UNK, UNK,
    817  1.31       uwe /*13 */  2 ,  6 ,  9 , 115, 200, UNK, UNK, UNK,
    818  1.31       uwe /*14 */  3 ,  5 , UNK, UNK, 125, UNK, UNK, UNK,
    819  1.31       uwe /*15 */ 32 , 19 ,  8 , 11 , 14 , UNK, UNK, UNK,
    820  1.11       uch };
    821  1.11       uch 
    822  1.11       uch const int persona_hpw50pad_special_keymap[] = {
    823  1.12       uch 	[KEY_SPECIAL_OFF]	=  0,
    824  1.11       uch 	[KEY_SPECIAL_LIGHT]	= -1
    825  1.11       uch };
    826  1.11       uch 
    827  1.28       uch /*
    828  1.28       uch  * HITACHI PERSONA HPW200EC
    829  1.28       uch */
    830  1.28       uch /* US */
    831  1.32       uwe const uint8_t persona_hpw200ec_keytrans[] = {
    832  1.28       uch /*      0    1    2    3    4    5    6    7 */
    833  1.28       uch /* 0 */	SPL, UNK,   2,  3,  UNK,   5,   6, UNK,
    834  1.28       uch /* 1 */	UNK, UNK, UNK,  11, UNK, UNK, UNK, UNK,
    835  1.28       uch /* 2 */	UNK, UNK, UNK,  19, UNK,  21, UNK, UNK,
    836  1.28       uch /* 3 */	UNK, UNK,  26,  27, UNK,  29,  30, UNK,
    837  1.28       uch /* 4 */	 32, UNK,  34,  35, UNK, UNK,  26, UNK,
    838  1.28       uch /* 5 */	 40, UNK,  42,  43, UNK, UNK,  46, UNK,
    839  1.28       uch /* 6 */	 48, UNK,  50,  51, UNK,  53,  54, UNK,
    840  1.28       uch /* 7 */	 56, UNK,  58,  59, UNK,  61,  62, UNK,
    841  1.28       uch /* 8 */	UNK, UNK,  66,  67,  68,  69,  70,  71,
    842  1.28       uch /* 9 */	UNK, UNK,  74,  75,  76,  77,  78,  79,
    843  1.28       uch /*10 */	UNK, UNK,  82,  83,  84,  85, UNK, UNK,
    844  1.28       uch /*11 */	UNK, UNK,  90,  91,  92,  93,  94,  95,
    845  1.28       uch /*12 */	UNK, UNK,  98,  99, 100, 101, 102, 103,
    846  1.28       uch /*13 */	104, UNK, 106, 107, 108, 109, 110, 111,
    847  1.28       uch /*14 */	UNK, UNK, 114, 115, 124, 117, 118, 119,
    848  1.28       uch /*15 */	UNK, UNK, 122, 123, UNK, UNK, 126, UNK,
    849  1.28       uch };
    850  1.28       uch 
    851  1.28       uch const int persona_hpw200ec_special_keymap[] = {
    852  1.28       uch 	[KEY_SPECIAL_OFF]	=  0,
    853  1.28       uch 	[KEY_SPECIAL_LIGHT]	= -1
    854  1.28       uch };
    855  1.28       uch 
    856   1.2       uch #endif /* hpcsh */
    857   1.2       uch 
    858  1.25       uwe 
    859  1.25       uwe /*
    860  1.25       uwe  * REMINDER:
    861  1.25       uwe  *   When adding new entry to this array, make sure that pckbd_keydesctab[]
    862  1.25       uwe  *   in sys/dev/pckbport/wskbdmap_mfii.c has a placeholder KB_MACHDEP entry
    863  1.25       uwe  *   for the base ht_layout that you refer.
    864  1.25       uwe  */
    865   1.1       uch const struct hpckbd_keymap_table {
    866   1.1       uch 	platid_t	*ht_platform;
    867  1.32       uwe 	const uint8_t	*ht_keymap;
    868   1.1       uch 	const int	*ht_special;
    869   1.1       uch 	struct {
    870   1.1       uch 		const keysym_t	*map;
    871   1.1       uch 		int size;
    872   1.1       uch 	} ht_cmdmap;
    873   1.1       uch 	kbd_t		ht_layout;
    874   1.1       uch } hpckbd_keymap_table[] = {
    875   1.1       uch #ifdef hpcmips
    876   1.1       uch 	{	&platid_mask_MACH_COMPAQ_C,
    877   1.1       uch 		tc5165_compaq_c_jp_keymap,
    878   1.1       uch 		tc5165_compaq_c_jp_special_keymap,
    879   1.1       uch 		NULLCMDMAP,
    880   1.1       uch 		KB_JP },
    881   1.1       uch 	{	&platid_mask_MACH_VICTOR_INTERLINK,
    882   1.1       uch 		m38813c_keymap,
    883   1.1       uch 		default_special_keymap,
    884   1.1       uch 		NULLCMDMAP,
    885   1.1       uch 		KB_JP },
    886   1.1       uch 	{	&platid_mask_MACH_SHARP_TELIOS,
    887   1.1       uch 		tc5165_telios_jp_keymap,
    888   1.1       uch 		default_special_keymap,
    889   1.1       uch 		NULLCMDMAP,
    890   1.1       uch 		KB_JP },
    891   1.1       uch 	{	&platid_mask_MACH_SHARP_MOBILON,
    892   1.1       uch 		tc5165_mobilon_keymap,
    893   1.1       uch 		tc5165_mobilon_special_keymap,
    894   1.1       uch 		NULLCMDMAP,
    895   1.1       uch 		KB_US },
    896   1.1       uch 	{	&platid_mask_MACH_NEC_MCR_500A,
    897   1.1       uch 		mobilepro750c_keytrans,
    898   1.1       uch 		NULL,
    899   1.1       uch 		NULLCMDMAP,
    900   1.1       uch 		KB_US },
    901   1.1       uch 	{	&platid_mask_MACH_NEC_MCR_520A,
    902   1.1       uch 		mobilepro_keytrans,
    903   1.1       uch 		NULL,
    904   1.8      sato 		CMDMAP(mobilepro_cmdmap),
    905   1.1       uch 		KB_US },
    906   1.1       uch 	{	&platid_mask_MACH_NEC_MCR_530A,
    907  1.10  takemura 		mobilepro780_keytrans,
    908   1.1       uch 		NULL,
    909   1.1       uch 		NULLCMDMAP,
    910   1.1       uch 		KB_US },
    911   1.1       uch 	{	&platid_mask_MACH_NEC_MCR_700A,
    912  1.27        tv 		mobilepro8x0_keytrans,
    913   1.1       uch 		NULL,
    914  1.27        tv 		CMDMAP(mobilepro8x0_cmdmap),
    915   1.1       uch 		KB_US },
    916   1.1       uch 	{	&platid_mask_MACH_NEC_MCR_730A,
    917  1.27        tv 		mobilepro8x0_keytrans,
    918   1.1       uch 		NULL,
    919  1.27        tv 		CMDMAP(mobilepro8x0_cmdmap),
    920   1.1       uch 		KB_US },
    921   1.1       uch 	{	&platid_mask_MACH_NEC_MCR_MPRO700,
    922   1.1       uch 		mobilepro_keytrans,
    923   1.1       uch 		NULL,
    924   1.1       uch 		NULLCMDMAP,
    925   1.1       uch 		KB_US },
    926   1.1       uch 	{	&platid_mask_MACH_NEC_MCR_SIGMARION,
    927  1.16  hamajima 		sigmarion_jp_keytrans,
    928  1.16  hamajima 		NULL,
    929  1.16  hamajima 		CMDMAP(sigmarion_cmdmap),
    930  1.16  hamajima 		KB_JP },
    931  1.16  hamajima 	{	&platid_mask_MACH_NEC_MCR_SIGMARION2,
    932   1.1       uch 		sigmarion_jp_keytrans,
    933   1.1       uch 		NULL,
    934   1.1       uch 		CMDMAP(sigmarion_cmdmap),
    935   1.1       uch 		KB_JP },
    936   1.1       uch 	{	&platid_mask_MACH_NEC_MCR,
    937   1.1       uch 		mcr_jp_keytrans,
    938   1.1       uch 		NULL,
    939   1.1       uch 		CMDMAP(mcr_jp_cmdmap),
    940   1.1       uch 		KB_JP },
    941   1.1       uch 	{	&platid_mask_MACH_IBM_WORKPAD_Z50,
    942   1.1       uch 		z50_keytrans,
    943   1.1       uch 		NULL,
    944   1.1       uch 		NULLCMDMAP,
    945   1.1       uch 		KB_US },
    946   1.1       uch 	{	&platid_mask_MACH_SHARP_TRIPAD,
    947   1.1       uch 		tripad_keytrans,
    948   1.1       uch 		NULL,
    949   1.1       uch 		NULLCMDMAP,
    950   1.1       uch 		KB_US },
    951   1.1       uch 	{	&platid_mask_MACH_VADEM_CLIO_C,
    952   1.1       uch 		tripad_keytrans,
    953   1.1       uch 		NULL,
    954   1.1       uch 		NULLCMDMAP,
    955   1.1       uch 		KB_US },
    956   1.1       uch 	{	&platid_mask_MACH_NEC_MCCS,
    957   1.1       uch 		mccs_keytrans,
    958   1.1       uch 		NULL,
    959   1.1       uch 		CMDMAP(mccs_cmdmap),
    960   1.1       uch 		KB_JP },
    961   1.1       uch 	{	&platid_mask_MACH_FUJITSU_INTERTOP,
    962   1.1       uch 		intertop_keytrans,
    963   1.5  takemura 		NULL,
    964   1.5  takemura 		NULLCMDMAP,
    965   1.5  takemura 		KB_JP },
    966   1.5  takemura 	{	&platid_mask_MACH_CASIO_POCKETPOSTPET,
    967   1.5  takemura 		pocketpostpet_keytrans,
    968   1.1       uch 		NULL,
    969   1.1       uch 		NULLCMDMAP,
    970   1.1       uch 		KB_JP },
    971   1.1       uch #endif /* hpcmips */
    972   1.2       uch #ifdef hpcsh
    973   1.7       uch 	/*
    974   1.7       uch 	 * HP Jornada 680/690
    975   1.7       uch 	 */
    976   1.6       uch 	/* Japanese */
    977   1.6       uch 	{	&platid_mask_MACH_HP_JORNADA_680JP,
    978   1.3       uch 		jornada6x0_jp_keytrans,
    979   1.6       uch 		jornada6x0_special_keymap,
    980   1.3       uch 		NULLCMDMAP,
    981   1.3       uch 		KB_JP },
    982   1.6       uch 	{	&platid_mask_MACH_HP_JORNADA_690JP,
    983   1.3       uch 		jornada6x0_jp_keytrans,
    984   1.6       uch 		jornada6x0_special_keymap,
    985   1.2       uch 		NULLCMDMAP,
    986   1.2       uch 		KB_JP },
    987  1.19       uwe 	/* US (ABA), UK (ABU) */
    988  1.13       uch 	{	&platid_mask_MACH_HP_JORNADA_680,
    989  1.13       uch 		jornada6x0_us_keytrans,
    990  1.13       uch 		jornada6x0_special_keymap,
    991  1.19       uwe 		CMDMAP(jornada6x0_us_keydesc),
    992  1.13       uch 		KB_US },
    993  1.13       uch 	{	&platid_mask_MACH_HP_JORNADA_690,
    994  1.13       uch 		jornada6x0_us_keytrans,
    995  1.13       uch 		jornada6x0_special_keymap,
    996  1.19       uwe 		CMDMAP(jornada6x0_us_keydesc),
    997  1.13       uch 		KB_US },
    998  1.19       uwe 	/* European English (ABB) */
    999  1.24       uwe 	{	&platid_mask_MACH_HP_JORNADA_680EU,
   1000  1.18       uwe 		jornada6x0_intl_keytrans,
   1001   1.6       uch 		jornada6x0_special_keymap,
   1002  1.19       uwe 		CMDMAP(jornada6x0_intl_keydesc),
   1003  1.19       uwe 		KB_US },
   1004  1.24       uwe 	{	&platid_mask_MACH_HP_JORNADA_690EU,
   1005  1.18       uwe 		jornada6x0_intl_keytrans,
   1006   1.6       uch 		jornada6x0_special_keymap,
   1007  1.19       uwe 		CMDMAP(jornada6x0_intl_keydesc),
   1008  1.19       uwe 		KB_US },
   1009  1.19       uwe 	/* German (ABD) */
   1010   1.6       uch 	{	&platid_mask_MACH_HP_JORNADA_680DE,
   1011  1.18       uwe 		jornada6x0_intl_keytrans,
   1012   1.6       uch 		jornada6x0_special_keymap,
   1013  1.19       uwe 		CMDMAP(jornada6x0_de_keydesc),
   1014   1.6       uch 		KB_DE },
   1015   1.6       uch 	{	&platid_mask_MACH_HP_JORNADA_690DE,
   1016  1.18       uwe 		jornada6x0_intl_keytrans,
   1017   1.6       uch 		jornada6x0_special_keymap,
   1018  1.19       uwe  		CMDMAP(jornada6x0_de_keydesc),
   1019   1.6       uch 		KB_DE },
   1020  1.21       uwe 	/* French (ABF) */
   1021  1.21       uwe 	{	&platid_mask_MACH_HP_JORNADA_680FR,
   1022  1.21       uwe 		jornada6x0_intl_keytrans,
   1023  1.21       uwe 		jornada6x0_special_keymap,
   1024  1.21       uwe 		CMDMAP(jornada6x0_fr_keydesc),
   1025  1.21       uwe 		KB_FR },
   1026  1.21       uwe 	{	&platid_mask_MACH_HP_JORNADA_690FR,
   1027  1.21       uwe 		jornada6x0_intl_keytrans,
   1028  1.21       uwe 		jornada6x0_special_keymap,
   1029  1.21       uwe  		CMDMAP(jornada6x0_fr_keydesc),
   1030  1.21       uwe 		KB_FR },
   1031  1.26       uwe 	/* Scandinavian */
   1032  1.26       uwe 	{	&platid_mask_MACH_HP_JORNADA_680SV,
   1033  1.26       uwe 		jornada6x0_intl_keytrans,
   1034  1.26       uwe 		jornada6x0_special_keymap,
   1035  1.26       uwe 		CMDMAP(jornada6x0_scnv_keydesc),
   1036  1.26       uwe 		KB_US },
   1037  1.26       uwe 	{	&platid_mask_MACH_HP_JORNADA_690SV,
   1038  1.26       uwe 		jornada6x0_intl_keytrans,
   1039  1.26       uwe 		jornada6x0_special_keymap,
   1040  1.26       uwe  		CMDMAP(jornada6x0_scnv_keydesc),
   1041  1.26       uwe 		KB_US },
   1042  1.30       uwe 	/* Spanish (ABE) */
   1043  1.30       uwe 	{	&platid_mask_MACH_HP_JORNADA_680ES,
   1044  1.30       uwe 		jornada6x0_intl_keytrans,
   1045  1.30       uwe 		jornada6x0_special_keymap,
   1046  1.30       uwe 		CMDMAP(jornada6x0_es_keydesc),
   1047  1.30       uwe 		KB_ES },
   1048  1.30       uwe 	{	&platid_mask_MACH_HP_JORNADA_690ES,
   1049  1.30       uwe 		jornada6x0_intl_keytrans,
   1050  1.30       uwe 		jornada6x0_special_keymap,
   1051  1.30       uwe  		CMDMAP(jornada6x0_es_keydesc),
   1052  1.30       uwe 		KB_ES },
   1053   1.7       uch 	/*
   1054   1.7       uch 	 * HP 620LX
   1055   1.7       uch 	 */
   1056   1.7       uch 	/* Japanese */
   1057   1.7       uch 	{	&platid_mask_MACH_HP_LX_620JP,
   1058   1.7       uch 		hp620lx_jp_keytrans,
   1059   1.7       uch 		hp620lx_special_keymap,
   1060  1.11       uch 		NULLCMDMAP,
   1061  1.11       uch 		KB_JP },
   1062  1.11       uch 	/*
   1063  1.11       uch 	 * PERSONA HPW50PAD
   1064  1.11       uch 	 */
   1065  1.11       uch 	/* Japanese */
   1066  1.11       uch 	{ 	&platid_mask_MACH_HITACHI_PERSONA_HPW50PAD,
   1067  1.11       uch 		persona_hpw50pad_jp_keytrans,
   1068  1.11       uch 		persona_hpw50pad_special_keymap,
   1069   1.7       uch 		NULLCMDMAP,
   1070   1.7       uch 		KB_JP },
   1071  1.28       uch 
   1072  1.28       uch 	/*
   1073  1.28       uch 	 * PERSONA HPW200EC
   1074  1.28       uch 	 */
   1075  1.28       uch 	/* US */
   1076  1.28       uch 	{ 	&platid_mask_MACH_HITACHI_PERSONA_HPW200EC,
   1077  1.28       uch 		persona_hpw200ec_keytrans,
   1078  1.28       uch 		persona_hpw200ec_special_keymap,
   1079  1.28       uch 		NULLCMDMAP,
   1080  1.28       uch 		KB_US },
   1081  1.28       uch 
   1082   1.2       uch #endif /* hpcsh */
   1083   1.1       uch 	{ NULL } /* end mark */
   1084   1.1       uch };
   1085