Home | History | Annotate | Line # | Download | only in vr
vrkiu.c revision 1.33.6.3
      1  1.33.6.3     skrll /*	$NetBSD: vrkiu.c,v 1.33.6.3 2004/09/21 13:16:14 skrll Exp $	*/
      2       1.1  takemura 
      3       1.1  takemura /*-
      4       1.2  takemura  * Copyright (c) 1999 SASAKI Takesi All rights reserved.
      5      1.31  takemura  * Copyright (c) 1999, 2000, 2002 TAKEMRUA, Shin All rights reserved.
      6       1.1  takemura  * Copyright (c) 1999 PocketBSD Project. All rights reserved.
      7       1.1  takemura  *
      8       1.1  takemura  * Redistribution and use in source and binary forms, with or without
      9       1.1  takemura  * modification, are permitted provided that the following conditions
     10       1.1  takemura  * are met:
     11       1.1  takemura  * 1. Redistributions of source code must retain the above copyright
     12       1.1  takemura  *    notice, this list of conditions and the following disclaimer.
     13       1.1  takemura  * 2. Redistributions in binary form must reproduce the above copyright
     14       1.1  takemura  *    notice, this list of conditions and the following disclaimer in the
     15       1.1  takemura  *    documentation and/or other materials provided with the distribution.
     16       1.1  takemura  * 3. All advertising materials mentioning features or use of this software
     17       1.1  takemura  *    must display the following acknowledgement:
     18       1.1  takemura  *	This product includes software developed by the PocketBSD project
     19       1.1  takemura  *	and its contributors.
     20       1.1  takemura  * 4. Neither the name of the project nor the names of its contributors
     21       1.1  takemura  *    may be used to endorse or promote products derived from this software
     22       1.1  takemura  *    without specific prior written permission.
     23       1.1  takemura  *
     24       1.1  takemura  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25       1.1  takemura  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26       1.1  takemura  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27       1.1  takemura  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28       1.1  takemura  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29       1.1  takemura  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30       1.1  takemura  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31       1.1  takemura  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32       1.1  takemura  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33       1.1  takemura  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34       1.1  takemura  * SUCH DAMAGE.
     35       1.1  takemura  *
     36       1.1  takemura  */
     37       1.1  takemura 
     38  1.33.6.1     skrll #include <sys/cdefs.h>
     39  1.33.6.3     skrll __KERNEL_RCSID(0, "$NetBSD: vrkiu.c,v 1.33.6.3 2004/09/21 13:16:14 skrll Exp $");
     40  1.33.6.1     skrll 
     41       1.1  takemura #include <sys/param.h>
     42       1.1  takemura #include <sys/tty.h>
     43       1.1  takemura #include <sys/systm.h>
     44       1.1  takemura #include <sys/device.h>
     45       1.1  takemura #include <sys/conf.h>
     46       1.1  takemura #include <sys/kernel.h>
     47       1.1  takemura #include <sys/proc.h>
     48       1.1  takemura 
     49       1.1  takemura #include <machine/intr.h>
     50       1.1  takemura #include <machine/cpu.h>
     51       1.1  takemura #include <machine/bus.h>
     52       1.1  takemura #include <machine/platid.h>
     53       1.5      shin #include <machine/platid_mask.h>
     54       1.1  takemura 
     55      1.28     enami #include <dev/hpc/hpckbdvar.h>
     56      1.28     enami 
     57       1.1  takemura #include <hpcmips/vr/vr.h>
     58      1.30  takemura #include <hpcmips/vr/vripif.h>
     59      1.28     enami #include <hpcmips/vr/vrkiureg.h>
     60       1.1  takemura #include <hpcmips/vr/vrkiuvar.h>
     61       1.1  takemura #include <hpcmips/vr/icureg.h>
     62       1.1  takemura 
     63      1.21  takemura #include "opt_wsdisplay_compat.h"
     64      1.21  takemura #include "opt_pckbd_layout.h"
     65       1.2  takemura #include <dev/wscons/wsconsio.h>
     66       1.2  takemura #include <dev/wscons/wskbdvar.h>
     67       1.2  takemura #include <dev/wscons/wsksymdef.h>
     68       1.2  takemura #include <dev/wscons/wsksymvar.h>
     69      1.21  takemura #ifdef WSDISPLAY_COMPAT_RAWKBD
     70      1.26       uch #include <dev/hpc/pckbd_encode.h>
     71      1.21  takemura #endif
     72       1.2  takemura 
     73      1.21  takemura #define VRKIUDEBUG
     74       1.1  takemura #ifdef VRKIUDEBUG
     75       1.1  takemura int vrkiu_debug = 0;
     76       1.1  takemura #define DPRINTF(arg) if (vrkiu_debug) printf arg;
     77       1.1  takemura #else
     78       1.1  takemura #define	DPRINTF(arg)
     79       1.1  takemura #endif
     80       1.2  takemura 
     81      1.29       uch static int vrkiumatch(struct device *, struct cfdata *, void *);
     82      1.29       uch static void vrkiuattach(struct device *, struct device *, void *);
     83       1.1  takemura 
     84      1.29       uch int vrkiu_intr(void *);
     85       1.2  takemura 
     86      1.29       uch static int vrkiu_init(struct vrkiu_chip *, bus_space_tag_t, bus_space_handle_t);
     87      1.29       uch static void vrkiu_write(struct vrkiu_chip *, int, unsigned short);
     88      1.29       uch static unsigned short vrkiu_read(struct vrkiu_chip *, int);
     89       1.2  takemura static int vrkiu_is_console(bus_space_tag_t, bus_space_handle_t);
     90      1.29       uch static void vrkiu_scan(struct vrkiu_chip *);
     91      1.24      shin static int countbits(int);
     92      1.29       uch static void eliminate_phantom_keys(struct vrkiu_chip *, unsigned short *);
     93      1.29       uch static int vrkiu_poll(void*);
     94      1.29       uch static int vrkiu_input_establish(void*, struct hpckbd_if*);
     95       1.1  takemura 
     96      1.33   thorpej CFATTACH_DECL(vrkiu, sizeof(struct vrkiu_softc),
     97      1.33   thorpej     vrkiumatch, vrkiuattach, NULL, NULL);
     98       1.1  takemura 
     99       1.2  takemura struct vrkiu_chip *vrkiu_consdata = NULL;
    100       1.1  takemura 
    101       1.2  takemura static inline void
    102      1.29       uch vrkiu_write(struct vrkiu_chip *chip, int port, unsigned short val)
    103       1.2  takemura {
    104      1.29       uch 
    105       1.2  takemura 	bus_space_write_2(chip->kc_iot, chip->kc_ioh, port, val);
    106       1.2  takemura }
    107       1.1  takemura 
    108       1.2  takemura static inline unsigned short
    109      1.29       uch vrkiu_read(struct vrkiu_chip *chip, int port)
    110       1.2  takemura {
    111      1.29       uch 
    112      1.29       uch 	return (bus_space_read_2(chip->kc_iot, chip->kc_ioh, port));
    113       1.2  takemura }
    114       1.1  takemura 
    115       1.2  takemura static inline int
    116      1.29       uch vrkiu_is_console(bus_space_tag_t iot, bus_space_handle_t ioh)
    117       1.2  takemura {
    118      1.29       uch 
    119       1.2  takemura 	if (vrkiu_consdata &&
    120       1.2  takemura 	    vrkiu_consdata->kc_iot == iot &&
    121       1.2  takemura 	    vrkiu_consdata->kc_ioh == ioh) {
    122      1.29       uch 		return (1);
    123       1.2  takemura 	} else {
    124      1.29       uch 		return (0);
    125       1.2  takemura 	}
    126       1.2  takemura }
    127       1.2  takemura 
    128       1.2  takemura static int
    129      1.29       uch vrkiumatch(struct device *parent, struct cfdata *cf, void *aux)
    130       1.2  takemura {
    131      1.25  takemura 
    132      1.29       uch 	return (1);
    133       1.2  takemura }
    134       1.1  takemura 
    135       1.1  takemura static void
    136      1.29       uch vrkiuattach(struct device *parent, struct device *self, void *aux)
    137       1.1  takemura {
    138       1.1  takemura 	struct vrkiu_softc *sc = (struct vrkiu_softc *)self;
    139       1.1  takemura 	struct vrip_attach_args *va = aux;
    140      1.25  takemura 	struct hpckbd_attach_args haa;
    141      1.31  takemura 	int isconsole, res;
    142       1.1  takemura 
    143       1.1  takemura 	bus_space_tag_t iot = va->va_iot;
    144       1.1  takemura 	bus_space_handle_t ioh;
    145       1.1  takemura 
    146  1.33.6.1     skrll 	if (va->va_parent_ioh != 0)
    147      1.31  takemura 		res = bus_space_subregion(iot, va->va_parent_ioh, va->va_addr,
    148      1.31  takemura 		    va->va_size, &ioh);
    149      1.31  takemura 	else
    150      1.31  takemura 		res = bus_space_map(iot, va->va_addr, 1, 0, &ioh);
    151      1.31  takemura 	if (res != 0) {
    152       1.1  takemura 		printf(": can't map bus space\n");
    153       1.1  takemura 		return;
    154       1.1  takemura 	}
    155       1.1  takemura 
    156       1.2  takemura 	isconsole = vrkiu_is_console(iot, ioh);
    157       1.2  takemura 	if (isconsole) {
    158       1.2  takemura 		sc->sc_chip = vrkiu_consdata;
    159       1.2  takemura 	} else {
    160       1.2  takemura 		sc->sc_chip = &sc->sc_chip_body;
    161       1.2  takemura 		vrkiu_init(sc->sc_chip, iot, ioh);
    162       1.2  takemura 	}
    163       1.2  takemura 	sc->sc_chip->kc_sc = sc;
    164       1.1  takemura 
    165       1.1  takemura 	if (!(sc->sc_handler =
    166      1.30  takemura 	    vrip_intr_establish(va->va_vc, va->va_unit, 0, IPL_TTY,
    167      1.29       uch 		vrkiu_intr, sc))) {
    168       1.1  takemura 		printf (": can't map interrupt line.\n");
    169       1.1  takemura 		return;
    170       1.1  takemura 	}
    171       1.1  takemura 	/* Level2 register setting */
    172       1.1  takemura 	vrip_intr_setmask2(va->va_vc, sc->sc_handler, KIUINT_KDATRDY, 1);
    173       1.1  takemura 
    174       1.1  takemura 	printf("\n");
    175       1.2  takemura 
    176      1.25  takemura 	/* attach hpckbd */
    177      1.25  takemura 	haa.haa_ic = &sc->sc_chip->kc_if;
    178      1.25  takemura 	config_found(self, &haa, hpckbd_print);
    179       1.1  takemura }
    180       1.1  takemura 
    181      1.29       uch /*
    182      1.29       uch  * initialize device
    183      1.29       uch  */
    184      1.29       uch static int
    185      1.29       uch vrkiu_init(struct vrkiu_chip *chip, bus_space_tag_t iot,
    186      1.29       uch     bus_space_handle_t ioh)
    187      1.29       uch {
    188      1.29       uch 
    189      1.29       uch 	memset(chip, 0, sizeof(struct vrkiu_chip));
    190      1.29       uch 	chip->kc_iot = iot;
    191      1.29       uch 	chip->kc_ioh = ioh;
    192      1.29       uch 	chip->kc_enabled = 0;
    193      1.29       uch 
    194      1.29       uch 	chip->kc_if.hii_ctx		= chip;
    195      1.29       uch 	chip->kc_if.hii_establish	= vrkiu_input_establish;
    196      1.29       uch 	chip->kc_if.hii_poll		= vrkiu_poll;
    197      1.29       uch 
    198      1.29       uch 	/* set KIU */
    199      1.29       uch 	vrkiu_write(chip, KIURST, 1);   /* reset */
    200      1.29       uch 	vrkiu_write(chip, KIUSCANLINE, 0); /* 96keys */
    201      1.29       uch 	vrkiu_write(chip, KIUWKS, 0x18a4); /* XXX: scan timing! */
    202      1.29       uch 	vrkiu_write(chip, KIUWKI, 450);
    203      1.29       uch 	vrkiu_write(chip, KIUSCANREP, 0x8023);
    204      1.29       uch 	/* KEYEN | STPREP = 2 | ATSTP | ATSCAN */
    205      1.29       uch 
    206      1.29       uch 	return (0);
    207      1.29       uch }
    208      1.29       uch 
    209       1.1  takemura int
    210      1.29       uch vrkiu_intr(void *arg)
    211       1.1  takemura {
    212       1.1  takemura         struct vrkiu_softc *sc = arg;
    213       1.2  takemura 
    214       1.1  takemura 	/* When key scan finisshed, this entry is called. */
    215      1.25  takemura #if 0
    216      1.25  takemura 	DPRINTF(("vrkiu_intr: intr=%x scan=%x\n",
    217      1.29       uch 	    vrkiu_read(sc->sc_chip, KIUINT) & 7,
    218      1.29       uch 	    vrkiu_read(sc->sc_chip, KIUSCANS) & KIUSCANS_SSTAT_MASK));
    219      1.25  takemura #endif
    220       1.2  takemura 
    221       1.4  takemura 	/*
    222       1.4  takemura 	 * First, we must clear the interrupt register because
    223      1.25  takemura 	 * vrkiu_scan() may takes long time if a bitmap screen
    224       1.4  takemura 	 * scrolls up and it makes us to miss some key release
    225       1.4  takemura 	 * event.
    226       1.4  takemura 	 */
    227       1.4  takemura 	vrkiu_write(sc->sc_chip, KIUINT, 0x7); /* Clear all interrupt */
    228       1.1  takemura 
    229      1.25  takemura #if 1
    230      1.25  takemura 	/* just return if kiu is scanning keyboard. */
    231      1.25  takemura 	if ((vrkiu_read(sc->sc_chip, KIUSCANS) & KIUSCANS_SSTAT_MASK) ==
    232      1.29       uch 	    KIUSCANS_SSTAT_SCANNING)
    233      1.25  takemura 		return (0);
    234      1.25  takemura #endif
    235      1.25  takemura 	vrkiu_scan(sc->sc_chip);
    236      1.25  takemura 
    237      1.25  takemura 	return (0);
    238       1.1  takemura }
    239       1.1  takemura 
    240      1.12  takemura static int
    241      1.29       uch countbits(int d)
    242      1.24      shin {
    243      1.24      shin 	int i, n;
    244      1.24      shin 
    245      1.24      shin 	for (i = 0, n = 0; i < NBBY; i++)
    246      1.24      shin 		if (d & (1 << i))
    247      1.24      shin 			n++;
    248      1.29       uch 	return (n);
    249      1.24      shin }
    250      1.24      shin 
    251      1.24      shin static void
    252      1.29       uch eliminate_phantom_keys(struct vrkiu_chip *chip, unsigned short *scandata)
    253      1.24      shin {
    254      1.25  takemura 	unsigned char inkey[KIU_NSCANLINE], *prevkey, *reskey;
    255      1.25  takemura 	int i, j;
    256      1.25  takemura #ifdef VRKIUDEBUG
    257      1.25  takemura 	int modified = 0;
    258      1.25  takemura 	static int prevmod = 0;
    259      1.25  takemura #endif
    260      1.24      shin 
    261      1.25  takemura 	reskey = (unsigned char *)scandata;
    262      1.25  takemura 	for (i = 0; i < KIU_NSCANLINE; i++)
    263      1.25  takemura 		inkey[i] = reskey[i];
    264      1.25  takemura 	prevkey = (unsigned char *)chip->kc_scandata;
    265      1.25  takemura 
    266      1.25  takemura 	for (i = 0; i < KIU_NSCANLINE; i++) {
    267      1.29       uch 		if (countbits(inkey[i]) > 1) {
    268      1.29       uch 			for (j = 0; j < KIU_NSCANLINE; j++) {
    269      1.29       uch 				if (i != j && (inkey[i] & inkey[j])) {
    270      1.25  takemura #ifdef VRKIUDEBUG
    271      1.29       uch 					modified = 1;
    272      1.29       uch 					if (!prevmod) {
    273      1.29       uch 						DPRINTF(("vrkiu_scan: %x:%02x->%02x",
    274      1.29       uch 						    i, inkey[i], prevkey[i]));
    275      1.29       uch 						DPRINTF(("  %x:%02x->%02x\n",
    276      1.29       uch 						    j, inkey[j], prevkey[j]));
    277      1.29       uch 					}
    278      1.25  takemura #endif
    279      1.29       uch 					reskey[i] = prevkey[i];
    280      1.29       uch 					reskey[j] = prevkey[j];
    281      1.29       uch 				}
    282      1.29       uch 			}
    283      1.24      shin 		}
    284      1.24      shin 	}
    285      1.25  takemura #ifdef VRKIUDEBUG
    286      1.25  takemura 	prevmod = modified;
    287      1.25  takemura #endif
    288      1.24      shin }
    289      1.24      shin 
    290      1.25  takemura static void
    291      1.29       uch vrkiu_scan(struct vrkiu_chip* chip)
    292       1.1  takemura {
    293       1.2  takemura 	int i, j, modified, mask;
    294       1.2  takemura 	unsigned short scandata[KIU_NSCANLINE/2];
    295       1.1  takemura 
    296      1.25  takemura 	if (!chip->kc_enabled)
    297      1.25  takemura 		return;
    298      1.25  takemura 
    299       1.1  takemura 	for (i = 0; i < KIU_NSCANLINE / 2; i++) {
    300       1.2  takemura 		scandata[i] = vrkiu_read(chip, KIUDATP + i * 2);
    301       1.1  takemura 	}
    302      1.24      shin 	eliminate_phantom_keys(chip, scandata);
    303       1.1  takemura 
    304       1.2  takemura 	for (i = 0; i < KIU_NSCANLINE / 2; i++) {
    305       1.2  takemura 		modified = scandata[i] ^ chip->kc_scandata[i];
    306      1.16   mycroft 		chip->kc_scandata[i] = scandata[i];
    307       1.2  takemura 		mask = 1;
    308       1.3     enami 		for (j = 0; j < 16; j++, mask <<= 1) {
    309      1.16   mycroft 			/*
    310      1.16   mycroft 			 * Simultaneous keypresses are resolved by registering
    311      1.16   mycroft 			 * the one with the lowest bit index first.
    312      1.16   mycroft 			 */
    313       1.2  takemura 			if (modified & mask) {
    314      1.25  takemura 				int key = i * 16 + j;
    315      1.25  takemura 				DPRINTF(("vrkiu_scan: %s(%d,%d)\n",
    316      1.29       uch 				    (scandata[i] & mask) ? "down" : "up",
    317      1.29       uch 				    i, j));
    318      1.25  takemura 				hpckbd_input(chip->kc_hpckbd,
    319      1.29       uch 				    (scandata[i] & mask), key);
    320       1.1  takemura 			}
    321       1.1  takemura 		}
    322       1.1  takemura 	}
    323       1.1  takemura }
    324       1.1  takemura 
    325      1.23  takemura /* called from bicons.c */
    326       1.1  takemura int
    327       1.1  takemura vrkiu_getc()
    328       1.1  takemura {
    329      1.23  takemura 	static int flag = 1;
    330      1.23  takemura 
    331      1.12  takemura 	/*
    332      1.12  takemura 	 * XXX, currently
    333      1.12  takemura 	 */
    334      1.23  takemura 	if (flag) {
    335      1.23  takemura 		flag = 0;
    336      1.23  takemura 		printf("%s(%d): vrkiu_getc() is not implemented\n",
    337      1.29       uch 		    __FILE__, __LINE__);
    338      1.23  takemura 	}
    339      1.29       uch 	return (0);
    340       1.1  takemura }
    341       1.1  takemura 
    342      1.25  takemura /*
    343      1.25  takemura  * hpckbd interface routines
    344      1.25  takemura  */
    345       1.2  takemura int
    346      1.29       uch vrkiu_input_establish(void *ic, struct hpckbd_if *kbdif)
    347      1.25  takemura {
    348      1.25  takemura 	struct vrkiu_chip *kc = ic;
    349      1.25  takemura 
    350      1.25  takemura 	/* save hpckbd interface */
    351      1.25  takemura 	kc->kc_hpckbd = kbdif;
    352      1.25  takemura 
    353      1.25  takemura 	kc->kc_enabled = 1;
    354       1.2  takemura 
    355      1.29       uch 	return (0);
    356       1.2  takemura }
    357       1.2  takemura 
    358      1.25  takemura int
    359      1.29       uch vrkiu_poll(void *ic)
    360       1.2  takemura {
    361      1.25  takemura 	struct vrkiu_chip *kc = ic;
    362       1.2  takemura 
    363      1.25  takemura #if 1
    364      1.25  takemura 	/* wait until kiu completes keyboard scan. */
    365      1.25  takemura 	while ((vrkiu_read(kc, KIUSCANS) & KIUSCANS_SSTAT_MASK) ==
    366      1.29       uch 	    KIUSCANS_SSTAT_SCANNING)
    367      1.25  takemura 		/* wait until kiu completes keyboard scan */;
    368      1.25  takemura #endif
    369       1.2  takemura 
    370      1.25  takemura 	vrkiu_scan(kc);
    371       1.2  takemura 
    372      1.29       uch 	return (0);
    373       1.2  takemura }
    374       1.2  takemura 
    375       1.2  takemura /*
    376      1.25  takemura  * console support routine
    377       1.2  takemura  */
    378       1.2  takemura int
    379      1.29       uch vrkiu_cnattach(bus_space_tag_t iot, int iobase)
    380       1.2  takemura {
    381       1.2  takemura 	static struct vrkiu_chip vrkiu_consdata_body;
    382       1.2  takemura 	bus_space_handle_t ioh;
    383       1.2  takemura 
    384       1.2  takemura 	if (vrkiu_consdata) {
    385       1.2  takemura 		panic("vrkiu is already attached as the console");
    386       1.2  takemura 	}
    387       1.2  takemura 	if (bus_space_map(iot, iobase, 1, 0, &ioh)) {
    388       1.2  takemura 		printf("%s(%d): can't map bus space\n", __FILE__, __LINE__);
    389      1.29       uch 		return (-1);
    390       1.2  takemura 	}
    391       1.2  takemura 
    392       1.2  takemura 	if (vrkiu_init(&vrkiu_consdata_body, iot, ioh) != 0) {
    393       1.2  takemura 		DPRINTF(("%s(%d): vrkiu_init() failed\n", __FILE__, __LINE__));
    394      1.29       uch 		return (-1);
    395       1.2  takemura 	}
    396       1.2  takemura 	vrkiu_consdata = &vrkiu_consdata_body;
    397       1.2  takemura 
    398      1.25  takemura 	hpckbd_cnattach(&vrkiu_consdata_body.kc_if);
    399       1.2  takemura 
    400       1.2  takemura 	return (0);
    401       1.2  takemura }
    402