/* $OpenBSD: if_le_vme.c,v 1.4 2013/09/24 20:14:34 miod Exp $ */ /*- * Copyright (c) 1982, 1992, 1993 * The Regents of the University of California. 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. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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. * * @(#)if_le.c 8.2 (Berkeley) 10/30/93 */ #include #include #include #include #include #include #include #include #ifdef INET #include #include #endif #include #include #include #include #include #include #include #include #include #include struct le_softc { struct am7990_softc sc_am7990; /* glue to MI code */ bus_space_tag_t sc_memt; /* dual-ported memory access */ bus_space_handle_t sc_memh; bus_space_tag_t sc_iot; /* short io access */ bus_space_handle_t sc_ioh; struct intrhand sc_ih; /* interrupt vectoring */ u_int sc_csr; /* CSR image */ u_int sc_ipl; u_int sc_vec; }; void le_vme_attach(struct device *, struct device *, void *); int le_vme_match(struct device *, void *, void *); struct cfattach le_vme_ca = { sizeof(struct le_softc), le_vme_match, le_vme_attach }; void le_vme_wrcsr(struct lance_softc *, uint16_t, uint16_t); uint16_t le_vme_rdcsr(struct lance_softc *, uint16_t); void nvram_cmd(struct lance_softc *, u_int, u_int); uint16_t nvram_read(struct lance_softc *, u_int); void le_vme_etheraddr(struct lance_softc *); void le_vme_init(struct lance_softc *); void le_vme_reset(struct lance_softc *); int le_vme_intr(void *); #if 0 void le_vme_copyfrombuf_contig(struct lance_softc *, void *, int, int); void le_vme_copytobuf_contig(struct lance_softc *, void *, int, int); void le_vme_zerobuf_contig(struct lance_softc *, int, int); #endif /* send command to the nvram controller */ void nvram_cmd(struct lance_softc *sc, u_int cmd, u_int addr) { struct le_softc *lesc = (void *)sc; int i; for (i = 0; i < 8; i++) { bus_space_write_2(lesc->sc_iot, lesc->sc_ioh, LEREG_EAR, (cmd | (addr << 1)) >> i); CDELAY; } } /* read nvram one bit at a time */ uint16_t nvram_read(struct lance_softc *sc, u_int nvram_addr) { struct le_softc *lesc = (void *)sc; u_int val = 0, mask = 0x04000; uint16_t wbit; lesc->sc_csr = HW_RS | NVRAM_EN | 0x07; ENABLE_NVRAM; nvram_cmd(sc, NVRAM_RCL, 0); DISABLE_NVRAM; CDELAY; ENABLE_NVRAM; nvram_cmd(sc, NVRAM_READ, nvram_addr); for (wbit = 0; wbit < 15; wbit++) { if (bus_space_read_2(lesc->sc_iot, lesc->sc_ioh, LEREG_EAR) & 0x01) val |= mask; else val &= ~mask; mask = mask >> 1; CDELAY; } if (bus_space_read_2(lesc->sc_iot, lesc->sc_ioh, LEREG_EAR) & 0x01) val |= 0x8000; else val &= 0x7fff; CDELAY; DISABLE_NVRAM; return (val); } void le_vme_etheraddr(struct lance_softc *sc) { u_char *cp = sc->sc_arpcom.ac_enaddr; uint16_t ival[3]; int i; for (i = 0; i < 3; i++) { ival[i] = nvram_read(sc, i); } memcpy(cp, &ival[0], 6); } void le_vme_wrcsr(struct lance_softc *sc, uint16_t port, uint16_t val) { struct le_softc *lesc = (void *)sc; bus_space_write_2(lesc->sc_iot, lesc->sc_ioh, LEREG_RAP, port); bus_space_write_2(lesc->sc_iot, lesc->sc_ioh, LEREG_RDP, val); } uint16_t le_vme_rdcsr(struct lance_softc *sc, uint16_t port) { struct le_softc *lesc = (void *)sc; bus_space_write_2(lesc->sc_iot, lesc->sc_ioh, LEREG_RAP, port); return (bus_space_read_2(lesc->sc_iot, lesc->sc_ioh, LEREG_RDP)); } /* init board, set ipl and vec */ void le_vme_init(struct lance_softc *sc) { struct le_softc *lesc = (void *)sc; lesc->sc_csr = 0x4f; WRITE_CSR_AND(lesc->sc_ipl); SET_VEC(lesc->sc_vec); return; } /* board reset */ void le_vme_reset(struct lance_softc *sc) { struct le_softc *lesc = (void *)sc; RESET_HW; #ifdef LEDEBUG if (sc->sc_debug) printf("%s: hardware reset\n", sc->sc_dev.dv_xname); #endif SYSFAIL_CL; } int le_vme_intr(void *arg) { struct le_softc *lesc = arg; struct lance_softc *sc = &lesc->sc_am7990.lsc; int rc; rc = am7990_intr(sc); ENABLE_INTR; return (rc); } #if 0 void le_vme_copytobuf_contig(struct lance_softc *sc, void *from, int boff, int len) { struct le_softc *lesc = (void *)sc; bus_space_write_region_1(lesc->sc_memt, lesc->sc_memh, boff, from, len); } void le_vme_copyfrombuf_contig(struct lance_softc *sc, void *to, int boff, int len) { struct le_softc *lesc = (void *)sc; bus_space_read_region_1(lesc->sc_memt, lesc->sc_memh, boff, to, len); } void le_vme_zerobuf_contig(struct lance_softc *sc, int boff, int len) { struct le_softc *lesc = (void *)sc; bus_space_set_region_1(lesc->sc_memt, lesc->sc_memh, boff, 0, len); } #endif int le_vme_match(struct device *parent, void *vcf, void *args) { struct vme_attach_args *vaa = args; bus_space_tag_t iot, memt; bus_space_handle_t ioh; int rc; /* we expect a32 and a16 locators */ if (vaa->vaa_addr_a16 == (vme_addr_t)-1 || vaa->vaa_addr_a32 == (vme_addr_t)-1) return (0); /* check the dual ported memory */ if (vmebus_get_bst(parent, VME_A32, VME_D32, &memt) != 0) return (0); if (bus_space_map(memt, vaa->vaa_addr_a32, PAGE_SIZE, 0, &ioh) != 0) return (0); rc = badaddr((vaddr_t)bus_space_vaddr(memt, ioh), 2); bus_space_unmap(memt, ioh, PAGE_SIZE); vmebus_release_bst(parent, memt); /* check the control space */ if (vmebus_get_bst(parent, VME_A16, VME_D16, &iot) != 0) return (0); if (bus_space_map(iot, vaa->vaa_addr_a16, PAGE_SIZE, 0, &ioh) != 0) return (0); rc |= badaddr((vaddr_t)bus_space_vaddr(iot, ioh), 2); bus_space_unmap(iot, ioh, PAGE_SIZE); vmebus_release_bst(parent, iot); return (rc == 0); } void le_vme_attach(struct device *parent, struct device *self, void *aux) { struct le_softc *lesc = (struct le_softc *)self; struct lance_softc *sc = &lesc->sc_am7990.lsc; struct vme_attach_args *vaa = aux; /* * Allocate an interrupt vector. */ lesc->sc_ipl = vaa->vaa_ipl == 0 ? IPL_NET : vaa->vaa_ipl; if (vmeintr_allocate(1, VMEINTR_ANY | VMEINTR_SHARED, lesc->sc_ipl, &lesc->sc_vec) != 0) { printf(": no more interrupts!\n"); return; } printf(" vec %x", lesc->sc_vec); /* * Map the dual-ported memory. */ if (vmebus_get_bst(parent, VME_A32, VME_D32, &lesc->sc_memt) != 0) { printf(": can't map memory\n"); return; } if (bus_space_map(lesc->sc_memt, vaa->vaa_addr_a32, VLEMEMSIZE, BUS_SPACE_MAP_LINEAR, &lesc->sc_memh) != 0) { printf(": can't map memory\n"); goto fail3; } /* * Map the control space. */ if (vmebus_get_bst(parent, VME_A16, VME_D16, &lesc->sc_iot) != 0) { printf(": can't map registers\n"); goto fail2; } if (bus_space_map(lesc->sc_iot, vaa->vaa_addr_a16, PAGE_SIZE, 0, &lesc->sc_ioh) != 0) { printf(": can't map registers\n"); goto fail1; } sc->sc_mem = (void *)bus_space_vaddr(lesc->sc_memt, lesc->sc_memh); sc->sc_memsize = VLEMEMSIZE; sc->sc_addr = vaa->vaa_addr_a32 & 0x00ffffff; sc->sc_conf3 = LE_C3_BSWP; sc->sc_hwreset = le_vme_reset; sc->sc_rdcsr = le_vme_rdcsr; sc->sc_wrcsr = le_vme_wrcsr; sc->sc_hwinit = le_vme_init; #if 0 sc->sc_copytodesc = le_vme_copytobuf_contig; sc->sc_copyfromdesc = le_vme_copyfrombuf_contig; sc->sc_copytobuf = le_vme_copytobuf_contig; sc->sc_copyfrombuf = le_vme_copyfrombuf_contig; sc->sc_zerobuf = le_vme_zerobuf_contig; #else sc->sc_copytodesc = lance_copytobuf_contig; sc->sc_copyfromdesc = lance_copyfrombuf_contig; sc->sc_copytobuf = lance_copytobuf_contig; sc->sc_copyfrombuf = lance_copyfrombuf_contig; sc->sc_zerobuf = lance_zerobuf_contig; #endif /* get Ethernet address */ le_vme_etheraddr(sc); am7990_config(&lesc->sc_am7990); /* connect the interrupt */ lesc->sc_ih.ih_fn = le_vme_intr; lesc->sc_ih.ih_arg = sc; lesc->sc_ih.ih_flags = 0; lesc->sc_ih.ih_ipl = lesc->sc_ipl; vmeintr_establish(lesc->sc_vec, &lesc->sc_ih, self->dv_xname); return; fail1: vmebus_release_bst(parent, lesc->sc_iot); fail2: bus_space_unmap(lesc->sc_memt, lesc->sc_memh, VLEMEMSIZE); fail3: vmebus_release_bst(parent, lesc->sc_memt); }