Home | History | Annotate | Line # | Download | only in jazz
pckbc_jazzio.c revision 1.2
      1  1.2    ur /* $NetBSD: pckbc_jazzio.c,v 1.2 2000/12/24 09:25:29 ur Exp $ */
      2  1.1  soda /* NetBSD: pckbc_isa.c,v 1.2 2000/03/23 07:01:35 thorpej Exp  */
      3  1.1  soda 
      4  1.1  soda /*
      5  1.1  soda  * Copyright (c) 1998
      6  1.1  soda  *	Matthias Drochner.  All rights reserved.
      7  1.1  soda  *
      8  1.1  soda  * Redistribution and use in source and binary forms, with or without
      9  1.1  soda  * modification, are permitted provided that the following conditions
     10  1.1  soda  * are met:
     11  1.1  soda  * 1. Redistributions of source code must retain the above copyright
     12  1.1  soda  *    notice, this list of conditions and the following disclaimer.
     13  1.1  soda  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.1  soda  *    notice, this list of conditions and the following disclaimer in the
     15  1.1  soda  *    documentation and/or other materials provided with the distribution.
     16  1.1  soda  * 3. All advertising materials mentioning features or use of this software
     17  1.1  soda  *    must display the following acknowledgement:
     18  1.1  soda  *	This product includes software developed for the NetBSD Project
     19  1.1  soda  *	by Matthias Drochner.
     20  1.1  soda  * 4. The name of the author may not be used to endorse or promote products
     21  1.1  soda  *    derived from this software without specific prior written permission.
     22  1.1  soda  *
     23  1.1  soda  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     24  1.1  soda  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25  1.1  soda  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26  1.1  soda  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     27  1.1  soda  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     28  1.1  soda  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     29  1.1  soda  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     30  1.1  soda  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     31  1.1  soda  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     32  1.1  soda  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33  1.1  soda  */
     34  1.1  soda 
     35  1.1  soda #include <sys/param.h>
     36  1.1  soda #include <sys/systm.h>
     37  1.1  soda #include <sys/kernel.h>
     38  1.1  soda #include <sys/proc.h>
     39  1.1  soda #include <sys/device.h>
     40  1.1  soda #include <sys/malloc.h>
     41  1.1  soda #include <sys/errno.h>
     42  1.1  soda #include <sys/queue.h>
     43  1.1  soda #include <sys/lock.h>
     44  1.1  soda 
     45  1.1  soda #include <machine/autoconf.h>
     46  1.1  soda #include <machine/bus.h>
     47  1.2    ur #include <arc/jazz/pica.h>
     48  1.2    ur #include <arc/jazz/jazziovar.h>
     49  1.1  soda 
     50  1.1  soda #include <dev/ic/i8042reg.h>
     51  1.1  soda #include <dev/ic/pckbcvar.h>
     52  1.1  soda #include <arc/jazz/pckbc_jazzioreg.h>
     53  1.1  soda 
     54  1.1  soda #define PICA_KBCMDP	(PICA_SYS_KBD + JAZZIO_KBCMDP)
     55  1.1  soda 
     56  1.1  soda int	pckbc_jazzio_match __P((struct device *, struct cfdata *, void *));
     57  1.1  soda void	pckbc_jazzio_attach __P((struct device *, struct device *, void *));
     58  1.1  soda void	pckbc_jazzio_intr_establish __P((struct pckbc_softc *, pckbc_slot_t));
     59  1.1  soda 
     60  1.1  soda struct pckbc_jazzio_softc {
     61  1.1  soda 	struct pckbc_softc sc_pckbc;
     62  1.1  soda 
     63  1.2    ur 	int sc_intr[PCKBC_NSLOTS];
     64  1.1  soda };
     65  1.1  soda 
     66  1.1  soda struct cfattach pckbc_jazzio_ca = {
     67  1.1  soda 	sizeof(struct pckbc_jazzio_softc),
     68  1.1  soda 	pckbc_jazzio_match, pckbc_jazzio_attach,
     69  1.1  soda };
     70  1.1  soda 
     71  1.1  soda int
     72  1.1  soda pckbc_jazzio_match(parent, match, aux)
     73  1.1  soda 	struct device *parent;
     74  1.1  soda 	struct cfdata *match;
     75  1.1  soda 	void *aux;
     76  1.1  soda {
     77  1.2    ur 	struct jazzio_attach_args *ja = aux;
     78  1.2    ur 	bus_space_tag_t iot = ja->ja_bust;
     79  1.1  soda 	bus_space_handle_t ioh_d, ioh_c;
     80  1.2    ur 	bus_addr_t addr = ja->ja_addr;
     81  1.1  soda 	int res, ok = 1;
     82  1.1  soda 
     83  1.2    ur 	if (strcmp(ja->ja_name, "pckbd") != 0)
     84  1.1  soda 		return(0);
     85  1.1  soda 
     86  1.1  soda 	if (pckbc_is_console(iot, addr) == 0) {
     87  1.1  soda 		if (bus_space_map(iot, addr + KBDATAP, 1, 0, &ioh_d))
     88  1.1  soda 			return (0);
     89  1.1  soda 		if (bus_space_map(iot, PICA_KBCMDP, 1, 0, &ioh_c)) {
     90  1.1  soda 			bus_space_unmap(iot, ioh_d, 1);
     91  1.1  soda 			return (0);
     92  1.1  soda 		}
     93  1.1  soda 
     94  1.1  soda 		/* flush KBC */
     95  1.1  soda 		(void) pckbc_poll_data1(iot, ioh_d, ioh_c, PCKBC_KBD_SLOT, 0);
     96  1.1  soda 
     97  1.1  soda 		/* KBC selftest */
     98  1.1  soda 		if (pckbc_send_cmd(iot, ioh_c, KBC_SELFTEST) == 0) {
     99  1.1  soda 			ok = 0;
    100  1.1  soda 			goto out;
    101  1.1  soda 		}
    102  1.1  soda 		res = pckbc_poll_data1(iot, ioh_d, ioh_c, PCKBC_KBD_SLOT, 0);
    103  1.1  soda 		if (res != 0x55) {
    104  1.1  soda 			printf("kbc selftest: %x\n", res);
    105  1.1  soda 			ok = 0;
    106  1.1  soda 		}
    107  1.1  soda  out:
    108  1.1  soda 		bus_space_unmap(iot, ioh_d, 1);
    109  1.1  soda 		bus_space_unmap(iot, ioh_c, 1);
    110  1.1  soda 	}
    111  1.1  soda 
    112  1.1  soda 	return (ok);
    113  1.1  soda }
    114  1.1  soda 
    115  1.1  soda void
    116  1.1  soda pckbc_jazzio_attach(parent, self, aux)
    117  1.1  soda 	struct device *parent, *self;
    118  1.1  soda 	void *aux;
    119  1.1  soda {
    120  1.2    ur 	struct jazzio_attach_args *ja = aux;
    121  1.1  soda 	struct pckbc_jazzio_softc *jsc = (void *)self;
    122  1.1  soda 	struct pckbc_softc *sc = &jsc->sc_pckbc;
    123  1.1  soda 	struct pckbc_internal *t;
    124  1.2    ur 	bus_space_tag_t iot = ja->ja_bust;
    125  1.1  soda 	bus_space_handle_t ioh_d, ioh_c;
    126  1.2    ur 	bus_addr_t addr = ja->ja_addr;
    127  1.1  soda 
    128  1.1  soda 	sc->intr_establish = pckbc_jazzio_intr_establish;
    129  1.1  soda 
    130  1.1  soda 	/*
    131  1.1  soda 	 * To establish interrupt handler
    132  1.1  soda 	 *
    133  1.1  soda 	 * XXX handcrafting "aux" slot...
    134  1.1  soda 	 */
    135  1.2    ur 	jsc->sc_intr[PCKBC_KBD_SLOT] = ja->ja_intr;
    136  1.2    ur 	jsc->sc_intr[PCKBC_AUX_SLOT] = 8;		/* XXX */
    137  1.1  soda 
    138  1.1  soda 	if (pckbc_is_console(iot, addr)) {
    139  1.1  soda 		t = &pckbc_consdata;
    140  1.1  soda 		ioh_d = t->t_ioh_d;
    141  1.1  soda 		ioh_c = t->t_ioh_c;
    142  1.1  soda 		pckbc_console_attached = 1;
    143  1.1  soda 		/* t->t_cmdbyte was initialized by cnattach */
    144  1.1  soda 	} else {
    145  1.1  soda 		if (bus_space_map(iot, addr + KBDATAP, 1, 0, &ioh_d) ||
    146  1.1  soda 		    bus_space_map(iot, PICA_KBCMDP, 1, 0, &ioh_c))
    147  1.1  soda 			panic("pckbc_attach: couldn't map");
    148  1.1  soda 
    149  1.1  soda 		t = malloc(sizeof(struct pckbc_internal), M_DEVBUF, M_WAITOK);
    150  1.1  soda 		bzero(t, sizeof(struct pckbc_internal));
    151  1.1  soda 		t->t_iot = iot;
    152  1.1  soda 		t->t_ioh_d = ioh_d;
    153  1.1  soda 		t->t_ioh_c = ioh_c;
    154  1.1  soda 		t->t_addr = addr;
    155  1.1  soda 		t->t_cmdbyte = KC8_CPU; /* Enable ports */
    156  1.1  soda 		callout_init(&t->t_cleanup);
    157  1.1  soda 	}
    158  1.1  soda 
    159  1.1  soda 	t->t_sc = sc;
    160  1.1  soda 	sc->id = t;
    161  1.1  soda 
    162  1.1  soda 	printf("\n");
    163  1.1  soda 
    164  1.1  soda 	/* Finish off the attach. */
    165  1.1  soda 	pckbc_attach(sc);
    166  1.1  soda }
    167  1.1  soda 
    168  1.1  soda void
    169  1.1  soda pckbc_jazzio_intr_establish(sc, slot)
    170  1.1  soda 	struct pckbc_softc *sc;
    171  1.1  soda 	pckbc_slot_t slot;
    172  1.1  soda {
    173  1.1  soda 	struct pckbc_jazzio_softc *jsc = (void *) sc;
    174  1.1  soda 
    175  1.2    ur 	jazzio_intr_establish(jsc->sc_intr[slot], pckbcintr, sc);
    176  1.1  soda }
    177