/* $NetBSD: if_fta.c,v 1.29 2017/06/22 16:46:53 flxd Exp $ */ /*- * Copyright (c) 1996 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. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission * * 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. * * Id: if_fta.c,v 1.4 1997/03/21 13:45:45 thomas Exp * */ /* * DEC TURBOchannel FDDI Controller; code for BSD derived operating systems * * Written by Matt Thomas * * This module supports the DEC DEFTA TURBOchannel FDDI Controller */ #include __KERNEL_RCSID(0, "$NetBSD: if_fta.c,v 1.29 2017/06/22 16:46:53 flxd Exp $"); #include "opt_inet.h" #include #include #include #include #include #include #include #include #include #include #include #include #ifdef INET #include #include #endif #include #include #include static int pdq_tc_match(device_t parent, cfdata_t match, void *aux) { struct tc_attach_args *ta = aux; if (strncmp("PMAF-F", ta->ta_modname, 6) == 0) return 1; return 0; } static void pdq_tc_attach(device_t parent, device_t self, void *aux) { pdq_softc_t * const sc = device_private(self); struct tc_attach_args * const ta = aux; /* * NOTE: sc_bc is an alias for sc_csrtag and sc_membase is an * alias for sc_csrhandle. sc_iobase is not used in this front-end. */ sc->sc_dev = self; sc->sc_dmatag = ta->ta_dmat; sc->sc_csrtag = ta->ta_memt; memcpy(sc->sc_if.if_xname, device_xname(sc->sc_dev), IFNAMSIZ); sc->sc_if.if_flags = 0; sc->sc_if.if_softc = sc; if (bus_space_map(sc->sc_csrtag, ta->ta_addr + PDQ_TC_CSR_OFFSET, PDQ_TC_CSR_SPACE, 0, &sc->sc_membase)) { aprint_normal("\n"); aprint_error_dev(sc->sc_dev, "can't map card memory!\n"); return; } sc->sc_pdq = pdq_initialize(sc->sc_csrtag, sc->sc_membase, sc->sc_if.if_xname, 0, (void *) sc, PDQ_DEFTA); if (sc->sc_pdq == NULL) { aprint_error_dev(sc->sc_dev, "initialization failed\n"); return; } pdq_ifattach(sc, NULL); tc_intr_establish(parent, ta->ta_cookie, TC_IPL_NET, (int (*)(void *)) pdq_interrupt, sc->sc_pdq); sc->sc_ats = shutdownhook_establish((void (*)(void *)) pdq_hwreset, sc->sc_pdq); if (sc->sc_ats == NULL) aprint_error_dev(self, "warning: couldn't establish shutdown hook\n"); } CFATTACH_DECL_NEW(fta, sizeof(pdq_softc_t), pdq_tc_match, pdq_tc_attach, NULL, NULL);