/* $NetBSD: pckbc_ofisa.c,v 1.15 2008/03/15 13:23:25 cube Exp $ */ /* * Copyright (c) 1998 * Matthias Drochner. All rights reserved. * Copyright (c) 2001 * Matt Thomas. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include __KERNEL_RCSID(0, "$NetBSD: pckbc_ofisa.c,v 1.15 2008/03/15 13:23:25 cube Exp $"); #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static int pckbc_ofisa_match (device_t, cfdata_t, void *); static void pckbc_ofisa_attach (device_t, device_t, void *); struct pckbc_ofisa_softc { struct pckbc_softc sc_pckbc; isa_chipset_tag_t sc_ic; struct ofisa_intr_desc sc_intr[PCKBC_NSLOTS]; }; CFATTACH_DECL_NEW(pckbc_ofisa, sizeof(struct pckbc_ofisa_softc), pckbc_ofisa_match, pckbc_ofisa_attach, NULL, NULL); static void pckbc_ofisa_intr_establish (struct pckbc_softc *, pckbc_slot_t); static const char *const kb_compatible_strings[] = { "pnpPNP,303", NULL }; static const char *const ms_compatible_strings[] = { "pnpPNP,f03", NULL }; static int pckbc_ofisa_match(device_t parent, cfdata_t match, void *aux) { struct ofisa_attach_args *aa = aux; static const char *const compatible_strings[] = { "INTC,80c42", NULL }; int rv = 0; if (of_compatible(aa->oba.oba_phandle, compatible_strings) != -1) rv = 5; return (rv); } static void pckbc_ofisa_attach(device_t parent, device_t self, void *aux) { struct pckbc_ofisa_softc *osc = device_private(self); struct pckbc_softc *sc = &osc->sc_pckbc; struct ofisa_attach_args *aa = aux; struct pckbc_internal *t; bus_space_tag_t iot; bus_space_handle_t ioh_d, ioh_c; struct ofisa_reg_desc regs[2]; int phandle; int n; sc->sc_dv = self; osc->sc_ic = aa->ic; iot = aa->iot; phandle = OF_child(aa->oba.oba_phandle); while (phandle != 0) { if (of_compatible(phandle, kb_compatible_strings) != -1) { ofisa_intr_get(phandle, &osc->sc_intr[PCKBC_KBD_SLOT], 1); } else if (of_compatible(phandle, ms_compatible_strings) != -1) { ofisa_intr_get(phandle, &osc->sc_intr[PCKBC_AUX_SLOT], 1); } phandle = OF_peer(phandle); } sc->intr_establish = pckbc_ofisa_intr_establish; if (pckbc_is_console(iot, IO_KBD)) { t = &pckbc_consdata; ioh_d = t->t_ioh_d; ioh_c = t->t_ioh_c; pckbc_console_attached = 1; /* t->t_cmdbyte was initialized by cnattach */ } else { n = ofisa_reg_get(aa->oba.oba_phandle, regs, 2); if (n != 2 || regs[0].type != OFISA_REG_TYPE_IO || regs[1].type != OFISA_REG_TYPE_IO || bus_space_map(iot, regs[0].addr, regs[0].len, 0, &ioh_d) || bus_space_map(iot, regs[1].addr, regs[1].len, 0, &ioh_c)) panic("pckbc_attach: couldn't map"); t = malloc(sizeof(struct pckbc_internal), M_DEVBUF, M_WAITOK|M_ZERO); t->t_iot = iot; t->t_ioh_d = ioh_d; t->t_ioh_c = ioh_c; t->t_addr = regs[0].addr; t->t_cmdbyte = KC8_CPU; /* Enable ports */ callout_init(&t->t_cleanup, 0); } t->t_sc = sc; sc->id = t; aprint_normal("\n"); /* Finish off the attach. */ pckbc_attach(sc); } static void pckbc_ofisa_intr_establish(struct pckbc_softc *sc, pckbc_slot_t slot) { struct pckbc_ofisa_softc *osc = (void *) sc; void *rv; rv = isa_intr_establish(osc->sc_ic, osc->sc_intr[slot].irq, osc->sc_intr[slot].share, IPL_TTY, pckbcintr, sc); if (rv == NULL) { aprint_error_dev(sc->sc_dv, "unable to establish interrupt for %s slot\n", pckbc_slot_names[slot]); } else { aprint_normal_dev(sc->sc_dv, "using irq %d for %s slot\n", osc->sc_intr[slot].irq, pckbc_slot_names[slot]); } }