Home | History | Annotate | Line # | Download | only in jazz
pckbc_jazzio.c revision 1.11.8.1
      1  1.11.8.1      kent /* $NetBSD: pckbc_jazzio.c,v 1.11.8.1 2005/04/29 11:28:02 kent 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  *
     17       1.1      soda  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     18       1.1      soda  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     19       1.1      soda  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     20       1.1      soda  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     21       1.1      soda  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     22       1.1      soda  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     23       1.1      soda  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     24       1.1      soda  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     25       1.1      soda  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     26       1.1      soda  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27       1.1      soda  */
     28       1.9     lukem 
     29       1.9     lukem #include <sys/cdefs.h>
     30  1.11.8.1      kent __KERNEL_RCSID(0, "$NetBSD: pckbc_jazzio.c,v 1.11.8.1 2005/04/29 11:28:02 kent Exp $");
     31       1.1      soda 
     32       1.1      soda #include <sys/param.h>
     33       1.1      soda #include <sys/systm.h>
     34       1.1      soda #include <sys/kernel.h>
     35       1.1      soda #include <sys/proc.h>
     36       1.1      soda #include <sys/device.h>
     37       1.8   tsutsui #include <sys/malloc.h>
     38       1.1      soda #include <sys/errno.h>
     39       1.1      soda #include <sys/queue.h>
     40       1.1      soda #include <sys/lock.h>
     41       1.1      soda 
     42       1.1      soda #include <machine/autoconf.h>
     43       1.1      soda #include <machine/bus.h>
     44       1.2        ur #include <arc/jazz/pica.h>
     45       1.2        ur #include <arc/jazz/jazziovar.h>
     46       1.1      soda 
     47       1.1      soda #include <dev/ic/i8042reg.h>
     48       1.1      soda #include <dev/ic/pckbcvar.h>
     49       1.1      soda #include <arc/jazz/pckbc_jazzioreg.h>
     50       1.1      soda 
     51       1.3      soda #define PMS_INTR 7	/* XXX - should be obtained from firmware */
     52       1.1      soda #define PICA_KBCMDP	(PICA_SYS_KBD + JAZZIO_KBCMDP)
     53       1.1      soda 
     54  1.11.8.1      kent int	pckbc_jazzio_match(struct device *, struct cfdata *, void *);
     55  1.11.8.1      kent void	pckbc_jazzio_attach(struct device *, struct device *, void *);
     56  1.11.8.1      kent void	pckbc_jazzio_intr_establish(struct pckbc_softc *, pckbc_slot_t);
     57       1.1      soda 
     58       1.1      soda struct pckbc_jazzio_softc {
     59       1.1      soda 	struct pckbc_softc sc_pckbc;
     60       1.1      soda 
     61       1.2        ur 	int sc_intr[PCKBC_NSLOTS];
     62       1.1      soda };
     63       1.1      soda 
     64       1.6   thorpej CFATTACH_DECL(pckbc_jazzio, sizeof(struct pckbc_jazzio_softc),
     65       1.6   thorpej     pckbc_jazzio_match, pckbc_jazzio_attach, NULL, NULL);
     66       1.1      soda 
     67       1.1      soda int
     68       1.1      soda pckbc_jazzio_match(parent, match, aux)
     69       1.1      soda 	struct device *parent;
     70       1.1      soda 	struct cfdata *match;
     71       1.1      soda 	void *aux;
     72       1.1      soda {
     73       1.2        ur 	struct jazzio_attach_args *ja = aux;
     74       1.2        ur 	bus_space_tag_t iot = ja->ja_bust;
     75       1.1      soda 	bus_space_handle_t ioh_d, ioh_c;
     76       1.2        ur 	bus_addr_t addr = ja->ja_addr;
     77       1.1      soda 	int res, ok = 1;
     78       1.1      soda 
     79       1.7   tsutsui 	if (strcmp(ja->ja_name, "I8742") != 0)
     80  1.11.8.1      kent 		return 0;
     81       1.1      soda 
     82       1.1      soda 	if (pckbc_is_console(iot, addr) == 0) {
     83       1.4  jdolecek 		struct pckbc_internal t;
     84       1.4  jdolecek 
     85       1.1      soda 		if (bus_space_map(iot, addr + KBDATAP, 1, 0, &ioh_d))
     86  1.11.8.1      kent 			return 0;
     87       1.1      soda 		if (bus_space_map(iot, PICA_KBCMDP, 1, 0, &ioh_c)) {
     88       1.1      soda 			bus_space_unmap(iot, ioh_d, 1);
     89  1.11.8.1      kent 			return 0;
     90       1.1      soda 		}
     91       1.1      soda 
     92       1.4  jdolecek 		memset(&t, 0, sizeof(t));
     93       1.4  jdolecek 		t.t_iot = iot;
     94       1.4  jdolecek 		t.t_ioh_d = ioh_d;
     95       1.4  jdolecek 		t.t_ioh_c = ioh_c;
     96       1.4  jdolecek 
     97       1.1      soda 		/* flush KBC */
     98  1.11.8.1      kent 		(void)pckbc_poll_data1(&t, PCKBC_KBD_SLOT);
     99       1.1      soda 
    100       1.1      soda 		/* KBC selftest */
    101       1.1      soda 		if (pckbc_send_cmd(iot, ioh_c, KBC_SELFTEST) == 0) {
    102       1.1      soda 			ok = 0;
    103       1.1      soda 			goto out;
    104       1.1      soda 		}
    105      1.10     bjh21 		res = pckbc_poll_data1(&t, PCKBC_KBD_SLOT);
    106       1.1      soda 		if (res != 0x55) {
    107       1.1      soda 			printf("kbc selftest: %x\n", res);
    108       1.1      soda 			ok = 0;
    109       1.1      soda 		}
    110       1.1      soda  out:
    111       1.1      soda 		bus_space_unmap(iot, ioh_d, 1);
    112       1.1      soda 		bus_space_unmap(iot, ioh_c, 1);
    113       1.1      soda 	}
    114       1.1      soda 
    115  1.11.8.1      kent 	return ok;
    116       1.1      soda }
    117       1.1      soda 
    118       1.1      soda void
    119  1.11.8.1      kent pckbc_jazzio_attach(struct device *parent, struct device *self, void *aux)
    120       1.1      soda {
    121       1.2        ur 	struct jazzio_attach_args *ja = aux;
    122       1.1      soda 	struct pckbc_jazzio_softc *jsc = (void *)self;
    123       1.1      soda 	struct pckbc_softc *sc = &jsc->sc_pckbc;
    124       1.1      soda 	struct pckbc_internal *t;
    125       1.2        ur 	bus_space_tag_t iot = ja->ja_bust;
    126       1.1      soda 	bus_space_handle_t ioh_d, ioh_c;
    127       1.2        ur 	bus_addr_t addr = ja->ja_addr;
    128       1.1      soda 
    129       1.1      soda 	sc->intr_establish = pckbc_jazzio_intr_establish;
    130       1.1      soda 
    131       1.1      soda 	/*
    132       1.1      soda 	 * To establish interrupt handler
    133       1.1      soda 	 *
    134       1.1      soda 	 * XXX handcrafting "aux" slot...
    135       1.1      soda 	 */
    136       1.2        ur 	jsc->sc_intr[PCKBC_KBD_SLOT] = ja->ja_intr;
    137       1.3      soda 	jsc->sc_intr[PCKBC_AUX_SLOT] = PMS_INTR;		/* XXX */
    138       1.1      soda 
    139       1.1      soda 	if (pckbc_is_console(iot, addr)) {
    140       1.1      soda 		t = &pckbc_consdata;
    141       1.1      soda 		ioh_d = t->t_ioh_d;
    142       1.1      soda 		ioh_c = t->t_ioh_c;
    143       1.1      soda 		pckbc_console_attached = 1;
    144       1.1      soda 		/* t->t_cmdbyte was initialized by cnattach */
    145       1.1      soda 	} else {
    146       1.1      soda 		if (bus_space_map(iot, addr + KBDATAP, 1, 0, &ioh_d) ||
    147       1.1      soda 		    bus_space_map(iot, PICA_KBCMDP, 1, 0, &ioh_c))
    148       1.1      soda 			panic("pckbc_attach: couldn't map");
    149       1.1      soda 
    150  1.11.8.1      kent 		t = malloc(sizeof(struct pckbc_internal), M_DEVBUF,
    151  1.11.8.1      kent 		    M_WAITOK | M_ZERO);
    152       1.1      soda 		t->t_iot = iot;
    153       1.1      soda 		t->t_ioh_d = ioh_d;
    154       1.1      soda 		t->t_ioh_c = ioh_c;
    155       1.1      soda 		t->t_addr = addr;
    156       1.1      soda 		t->t_cmdbyte = KC8_CPU; /* Enable ports */
    157       1.1      soda 		callout_init(&t->t_cleanup);
    158       1.1      soda 	}
    159       1.1      soda 
    160       1.1      soda 	t->t_sc = sc;
    161       1.1      soda 	sc->id = t;
    162       1.1      soda 
    163       1.1      soda 	printf("\n");
    164       1.1      soda 
    165       1.1      soda 	/* Finish off the attach. */
    166       1.1      soda 	pckbc_attach(sc);
    167       1.1      soda }
    168       1.1      soda 
    169       1.1      soda void
    170  1.11.8.1      kent pckbc_jazzio_intr_establish(struct pckbc_softc *sc, pckbc_slot_t slot)
    171       1.1      soda {
    172       1.1      soda 	struct pckbc_jazzio_softc *jsc = (void *) sc;
    173       1.1      soda 
    174       1.2        ur 	jazzio_intr_establish(jsc->sc_intr[slot], pckbcintr, sc);
    175       1.1      soda }
    176