Home | History | Annotate | Line # | Download | only in maple
mkbd.c revision 1.4
      1  1.4  thorpej /*	$NetBSD: mkbd.c,v 1.4 2001/01/31 03:21:03 thorpej Exp $	*/
      2  1.1   marcus 
      3  1.2   marcus /*-
      4  1.1   marcus  * Copyright (c) 2001 Marcus Comstedt
      5  1.1   marcus  * All rights reserved.
      6  1.1   marcus  *
      7  1.1   marcus  * Redistribution and use in source and binary forms, with or without
      8  1.1   marcus  * modification, are permitted provided that the following conditions
      9  1.1   marcus  * are met:
     10  1.1   marcus  * 1. Redistributions of source code must retain the above copyright
     11  1.1   marcus  *    notice, this list of conditions and the following disclaimer.
     12  1.1   marcus  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1   marcus  *    notice, this list of conditions and the following disclaimer in the
     14  1.1   marcus  *    documentation and/or other materials provided with the distribution.
     15  1.1   marcus  * 3. All advertising materials mentioning features or use of this software
     16  1.1   marcus  *    must display the following acknowledgement:
     17  1.2   marcus  *	This product includes software developed by Marcus Comstedt.
     18  1.2   marcus  * 4. Neither the name of The NetBSD Foundation nor the names of its
     19  1.2   marcus  *    contributors may be used to endorse or promote products derived
     20  1.2   marcus  *    from this software without specific prior written permission.
     21  1.1   marcus  *
     22  1.2   marcus  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     23  1.2   marcus  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     24  1.2   marcus  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     25  1.2   marcus  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     26  1.2   marcus  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     27  1.2   marcus  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     28  1.2   marcus  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     29  1.2   marcus  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     30  1.2   marcus  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     31  1.2   marcus  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     32  1.2   marcus  * POSSIBILITY OF SUCH DAMAGE.
     33  1.1   marcus  */
     34  1.1   marcus 
     35  1.1   marcus #include <sys/param.h>
     36  1.1   marcus #include <sys/device.h>
     37  1.1   marcus #include <sys/fcntl.h>
     38  1.1   marcus #include <sys/poll.h>
     39  1.1   marcus #include <sys/select.h>
     40  1.1   marcus #include <sys/proc.h>
     41  1.1   marcus #include <sys/signalvar.h>
     42  1.1   marcus #include <sys/systm.h>
     43  1.1   marcus 
     44  1.1   marcus #include "wskbd.h"
     45  1.1   marcus 
     46  1.1   marcus #include <dev/wscons/wsconsio.h>
     47  1.1   marcus #include <dev/wscons/wskbdvar.h>
     48  1.1   marcus #include <dev/wscons/wsksymdef.h>
     49  1.1   marcus #include <dev/wscons/wsksymvar.h>
     50  1.1   marcus 
     51  1.1   marcus #include <machine/cpu.h>
     52  1.1   marcus #include <machine/bus.h>
     53  1.1   marcus 
     54  1.1   marcus #include <dreamcast/dev/maple/maple.h>
     55  1.1   marcus #include <dreamcast/dev/maple/mapleconf.h>
     56  1.1   marcus #include <dreamcast/dev/maple/mkbdvar.h>
     57  1.1   marcus #include <dreamcast/dev/maple/mkbdmap.h>
     58  1.1   marcus 
     59  1.1   marcus 
     60  1.1   marcus /*
     61  1.1   marcus  * Function declarations.
     62  1.1   marcus  */
     63  1.1   marcus static int	mkbdmatch __P((struct device *, struct cfdata *, void *));
     64  1.1   marcus static void	mkbdattach __P((struct device *, struct device *, void *));
     65  1.1   marcus 
     66  1.1   marcus int mkbd_enable __P((void *, int));
     67  1.1   marcus void mkbd_set_leds __P((void *, int));
     68  1.1   marcus int mkbd_ioctl __P((void *, u_long, caddr_t, int, struct proc *));
     69  1.1   marcus 
     70  1.1   marcus struct wskbd_accessops mkbd_accessops = {
     71  1.1   marcus 	mkbd_enable,
     72  1.1   marcus 	mkbd_set_leds,
     73  1.1   marcus 	mkbd_ioctl,
     74  1.1   marcus };
     75  1.1   marcus 
     76  1.1   marcus static void	mkbd_intr __P((struct mkbd_softc *, struct mkbd_condition *, int));
     77  1.1   marcus 
     78  1.1   marcus void mkbd_cngetc __P((void *, u_int *, int *));
     79  1.1   marcus void mkbd_cnpollc __P((void *, int));
     80  1.1   marcus int mkbd_cnattach __P((void));
     81  1.1   marcus 
     82  1.1   marcus struct wskbd_consops mkbd_consops = {
     83  1.1   marcus 	mkbd_cngetc,
     84  1.1   marcus 	mkbd_cnpollc,
     85  1.1   marcus };
     86  1.1   marcus 
     87  1.1   marcus struct wskbd_mapdata mkbd_keymapdata = {
     88  1.1   marcus 	mkbd_keydesctab,
     89  1.1   marcus 	KB_JP,
     90  1.1   marcus };
     91  1.1   marcus 
     92  1.1   marcus static struct mkbd_softc *mkbd_console_softc = NULL;
     93  1.1   marcus 
     94  1.1   marcus /* Driver definition. */
     95  1.1   marcus struct cfattach mkbd_ca = {
     96  1.1   marcus 	sizeof(struct mkbd_softc), mkbdmatch, mkbdattach
     97  1.1   marcus };
     98  1.1   marcus 
     99  1.1   marcus static int
    100  1.1   marcus mkbdmatch(parent, cf, aux)
    101  1.1   marcus 	struct device *parent;
    102  1.1   marcus 	struct cfdata *cf;
    103  1.1   marcus 	void   *aux;
    104  1.1   marcus {
    105  1.1   marcus 	struct maple_attach_args *ma = aux;
    106  1.1   marcus 
    107  1.1   marcus 	return (ma->ma_devinfo->di_func & MAPLE_FUNC_KEYBOARD) != 0;
    108  1.1   marcus }
    109  1.1   marcus 
    110  1.1   marcus static void
    111  1.1   marcus mkbdattach(parent, self, aux)
    112  1.1   marcus 	struct device *parent, *self;
    113  1.1   marcus 	void   *aux;
    114  1.1   marcus {
    115  1.1   marcus 	struct mkbd_softc *sc = (struct mkbd_softc *)self;
    116  1.1   marcus 	struct maple_attach_args *ma = aux;
    117  1.1   marcus #if NWSKBD > 0
    118  1.1   marcus 	struct wskbddev_attach_args a;
    119  1.1   marcus 	static int mkbd_console_initted = 0;
    120  1.1   marcus #endif
    121  1.3  thorpej 	u_int32_t kbdtype;
    122  1.1   marcus 
    123  1.1   marcus 	sc->sc_parent = parent;
    124  1.1   marcus 	sc->sc_port = ma->ma_port;
    125  1.1   marcus 	sc->sc_subunit = ma->ma_subunit;
    126  1.1   marcus 
    127  1.3  thorpej 	kbdtype = maple_get_function_data(ma->ma_devinfo,
    128  1.3  thorpej 	    MAPLE_FUNC_KEYBOARD) >> 24;
    129  1.3  thorpej 	switch(kbdtype) {
    130  1.3  thorpej  	case 1:
    131  1.3  thorpej  		printf(" (Japanese keyboard)");
    132  1.4  thorpej 		mkbd_keymapdata.layout = KB_JP;
    133  1.3  thorpej  		break;
    134  1.3  thorpej 	case 2:
    135  1.3  thorpej 		printf(" (US keyboard)");
    136  1.4  thorpej 		mkbd_keymapdata.layout = KB_US;
    137  1.3  thorpej 		break;
    138  1.3  thorpej 	case 3:
    139  1.3  thorpej 		printf(" (European keyboard)");
    140  1.4  thorpej 		mkbd_keymapdata.layout = KB_UK;
    141  1.3  thorpej 		break;
    142  1.3  thorpej 	default:
    143  1.3  thorpej 		printf(" (Unknown keyboard %d)", kbdtype);
    144  1.1   marcus 	}
    145  1.1   marcus 	printf("\n");
    146  1.1   marcus 
    147  1.1   marcus #if NWSKBD > 0
    148  1.1   marcus 	a.console = (++mkbd_console_initted == 1);
    149  1.1   marcus 	a.keymap = &mkbd_keymapdata;
    150  1.1   marcus 	a.accessops = &mkbd_accessops;
    151  1.1   marcus 	a.accesscookie = sc;
    152  1.1   marcus 	if (a.console)
    153  1.1   marcus 	  mkbd_console_softc = sc;
    154  1.1   marcus 	sc->sc_wskbddev = config_found(self, &a, wskbddevprint);
    155  1.1   marcus #endif
    156  1.1   marcus 
    157  1.1   marcus 	maple_set_condition_callback(parent, sc->sc_port, sc->sc_subunit,
    158  1.1   marcus 				     MAPLE_FUNC_KEYBOARD,
    159  1.1   marcus 				     (void (*)(void *, void *, int))mkbd_intr,
    160  1.1   marcus 				     sc);
    161  1.1   marcus }
    162  1.1   marcus 
    163  1.1   marcus 
    164  1.1   marcus 
    165  1.1   marcus int
    166  1.1   marcus mkbd_enable(v, on)
    167  1.1   marcus 	void *v;
    168  1.1   marcus 	int on;
    169  1.1   marcus {
    170  1.1   marcus 	return 0;
    171  1.1   marcus }
    172  1.1   marcus 
    173  1.1   marcus void
    174  1.1   marcus mkbd_set_leds(v, on)
    175  1.1   marcus 	void *v;
    176  1.1   marcus 	int on;
    177  1.1   marcus {
    178  1.1   marcus }
    179  1.1   marcus 
    180  1.1   marcus int
    181  1.1   marcus mkbd_ioctl(v, cmd, data, flag, p)
    182  1.1   marcus 	void *v;
    183  1.1   marcus 	u_long cmd;
    184  1.1   marcus 	caddr_t data;
    185  1.1   marcus 	int flag;
    186  1.1   marcus 	struct proc *p;
    187  1.1   marcus {
    188  1.1   marcus 	switch (cmd) {
    189  1.1   marcus 
    190  1.1   marcus 	case WSKBDIO_GTYPE:
    191  1.1   marcus 		*(int *)data = 0;		/* XXX */
    192  1.1   marcus 		return 0;
    193  1.1   marcus 	case WSKBDIO_SETLEDS:
    194  1.1   marcus 		return 0;
    195  1.1   marcus 	case WSKBDIO_GETLEDS:
    196  1.1   marcus 		*(int *)data = 0;
    197  1.1   marcus 		return 0;
    198  1.1   marcus 	case WSKBDIO_BELL:
    199  1.1   marcus 	case WSKBDIO_COMPLEXBELL:
    200  1.1   marcus 		return 0;
    201  1.1   marcus 	}
    202  1.1   marcus 
    203  1.1   marcus 	return -1;
    204  1.1   marcus }
    205  1.1   marcus 
    206  1.1   marcus 
    207  1.1   marcus int
    208  1.1   marcus mkbd_cnattach()
    209  1.1   marcus {
    210  1.1   marcus 	wskbd_cnattach(&mkbd_consops, NULL, &mkbd_keymapdata);
    211  1.1   marcus 
    212  1.1   marcus 	return 0;
    213  1.1   marcus }
    214  1.1   marcus 
    215  1.1   marcus static int polledkey;
    216  1.1   marcus extern int maple_polling;
    217  1.1   marcus 
    218  1.1   marcus #define SHIFT_KEYCODE_BASE 0x100
    219  1.1   marcus #define UP_KEYCODE_FLAG 0x1000
    220  1.1   marcus 
    221  1.1   marcus #define KEY_UP(n) \
    222  1.1   marcus 	if (maple_polling) \
    223  1.1   marcus 	  polledkey = (n)|UP_KEYCODE_FLAG; \
    224  1.1   marcus 	else \
    225  1.1   marcus 	  wskbd_input(sc->sc_wskbddev, WSCONS_EVENT_KEY_UP, (n))
    226  1.1   marcus 
    227  1.1   marcus #define KEY_DOWN(n) \
    228  1.1   marcus 	if (maple_polling) \
    229  1.1   marcus 	  polledkey = (n); \
    230  1.1   marcus 	else \
    231  1.1   marcus 	  wskbd_input(sc->sc_wskbddev, WSCONS_EVENT_KEY_DOWN, (n))
    232  1.1   marcus 
    233  1.1   marcus #define SHIFT_UP(n) KEY_UP((n)|SHIFT_KEYCODE_BASE)
    234  1.1   marcus #define SHIFT_DOWN(n) KEY_DOWN((n)|SHIFT_KEYCODE_BASE)
    235  1.1   marcus 
    236  1.1   marcus static void
    237  1.1   marcus mkbd_intr(sc, kbddata, sz)
    238  1.1   marcus 	struct mkbd_softc *sc;
    239  1.1   marcus 	struct mkbd_condition *kbddata;
    240  1.1   marcus 	int sz;
    241  1.1   marcus {
    242  1.1   marcus 	if (sz >= sizeof(struct mkbd_condition)) {
    243  1.1   marcus 	  int i, j, v;
    244  1.1   marcus 
    245  1.1   marcus 	  v = sc->sc_condition.shift & ~kbddata->shift;
    246  1.1   marcus 	  if (v)
    247  1.1   marcus 	    for (i=0; i<8; i++)
    248  1.1   marcus 	      if (v & (1<<i))
    249  1.1   marcus 		SHIFT_UP(i);
    250  1.1   marcus 
    251  1.1   marcus 	  v = kbddata->shift & ~sc->sc_condition.shift;
    252  1.1   marcus 	  if (v)
    253  1.1   marcus 	    for (i=0; i<8; i++)
    254  1.1   marcus 	      if (v & (1<<i))
    255  1.1   marcus 		SHIFT_DOWN(i);
    256  1.1   marcus 
    257  1.1   marcus 	  for (i=0, j=0; i<6; i++)
    258  1.1   marcus 	    if (sc->sc_condition.key[i] < 4)
    259  1.1   marcus 	      break;
    260  1.2   marcus 	    else if(sc->sc_condition.key[i] == kbddata->key[j])
    261  1.1   marcus 	      j++;
    262  1.1   marcus 	    else
    263  1.1   marcus 	      KEY_UP(sc->sc_condition.key[i]);
    264  1.1   marcus 
    265  1.1   marcus 	  for (; j<6; j++)
    266  1.1   marcus 	    if (kbddata->key[j] < 4)
    267  1.1   marcus 	      break;
    268  1.1   marcus 	    else
    269  1.1   marcus 	      KEY_DOWN(kbddata->key[j]);
    270  1.1   marcus 
    271  1.1   marcus 	  bcopy(kbddata, &sc->sc_condition, sizeof(struct mkbd_condition));
    272  1.1   marcus 	}
    273  1.1   marcus }
    274  1.1   marcus 
    275  1.1   marcus void
    276  1.1   marcus mkbd_cngetc(v, type, data)
    277  1.1   marcus 	void *v;
    278  1.1   marcus 	u_int *type;
    279  1.1   marcus 	int *data;
    280  1.1   marcus {
    281  1.1   marcus 	int key;
    282  1.1   marcus 
    283  1.1   marcus 	polledkey = -1;
    284  1.1   marcus 	maple_polling = 1;
    285  1.2   marcus 	while (polledkey == -1)
    286  1.1   marcus 	  if (mkbd_console_softc != NULL ||
    287  1.2   marcus 	      mkbd_console_softc->sc_parent != NULL) {
    288  1.2   marcus 	    int t;
    289  1.2   marcus 	    for(t=0; t<1000000; t++);
    290  1.1   marcus 	    maple_run_polling(mkbd_console_softc->sc_parent);
    291  1.2   marcus 	  }
    292  1.1   marcus 	maple_polling = 0;
    293  1.1   marcus 	key = polledkey;
    294  1.1   marcus 
    295  1.1   marcus 	*data = key & ~UP_KEYCODE_FLAG;
    296  1.1   marcus 	*type = (key & UP_KEYCODE_FLAG)?
    297  1.1   marcus 	  WSCONS_EVENT_KEY_UP : WSCONS_EVENT_KEY_DOWN;
    298  1.1   marcus }
    299  1.1   marcus 
    300  1.1   marcus void
    301  1.1   marcus mkbd_cnpollc(v, on)
    302  1.1   marcus 	void *v;
    303  1.1   marcus 	int on;
    304  1.1   marcus {
    305  1.1   marcus }
    306