1 1.53 thorpej /* $NetBSD: if_fxp_cardbus.c,v 1.53 2022/09/25 17:33:19 thorpej Exp $ */ 2 1.1 haya 3 1.1 haya /* 4 1.3 joda * Copyright (c) 1999 The NetBSD Foundation, Inc. 5 1.3 joda * All rights reserved. 6 1.1 haya * 7 1.9 thorpej * This code is derived from software contributed to The NetBSD Foundation 8 1.9 thorpej * by Johan Danielsson. 9 1.1 haya * 10 1.9 thorpej * Redistribution and use in source and binary forms, with or without 11 1.9 thorpej * modification, are permitted provided that the following conditions 12 1.9 thorpej * are met: 13 1.9 thorpej * 1. Redistributions of source code must retain the above copyright 14 1.9 thorpej * notice, this list of conditions and the following disclaimer. 15 1.9 thorpej * 2. Redistributions in binary form must reproduce the above copyright 16 1.9 thorpej * notice, this list of conditions and the following disclaimer in the 17 1.9 thorpej * documentation and/or other materials provided with the distribution. 18 1.3 joda * 19 1.3 joda * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 1.3 joda * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 1.3 joda * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 1.3 joda * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 1.3 joda * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 1.3 joda * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 1.3 joda * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 1.3 joda * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 1.3 joda * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 1.3 joda * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 1.1 haya * POSSIBILITY OF SUCH DAMAGE. 30 1.1 haya */ 31 1.1 haya 32 1.9 thorpej /* 33 1.9 thorpej * CardBus front-end for the Intel i82557 family of Ethernet chips. 34 1.9 thorpej */ 35 1.13 lukem 36 1.13 lukem #include <sys/cdefs.h> 37 1.53 thorpej __KERNEL_RCSID(0, "$NetBSD: if_fxp_cardbus.c,v 1.53 2022/09/25 17:33:19 thorpej Exp $"); 38 1.1 haya 39 1.1 haya #include "opt_inet.h" 40 1.1 haya 41 1.1 haya #include <sys/param.h> 42 1.1 haya #include <sys/systm.h> 43 1.1 haya #include <sys/mbuf.h> 44 1.1 haya #include <sys/kernel.h> 45 1.1 haya #include <sys/socket.h> 46 1.1 haya #include <sys/ioctl.h> 47 1.1 haya #include <sys/errno.h> 48 1.1 haya #include <sys/device.h> 49 1.1 haya 50 1.1 haya #include <net/if.h> 51 1.1 haya #include <net/if_dl.h> 52 1.1 haya #include <net/if_media.h> 53 1.1 haya #include <net/if_ether.h> 54 1.5 thorpej 55 1.5 thorpej #include <machine/endian.h> 56 1.1 haya 57 1.1 haya #ifdef INET 58 1.1 haya #include <netinet/in.h> 59 1.1 haya #include <netinet/if_inarp.h> 60 1.1 haya #endif 61 1.1 haya 62 1.1 haya 63 1.27 ad #include <sys/bus.h> 64 1.27 ad #include <sys/intr.h> 65 1.1 haya 66 1.1 haya #include <dev/mii/miivar.h> 67 1.1 haya 68 1.3 joda #include <dev/ic/i82557reg.h> 69 1.3 joda #include <dev/ic/i82557var.h> 70 1.1 haya 71 1.1 haya #include <dev/pci/pcivar.h> 72 1.1 haya #include <dev/pci/pcireg.h> 73 1.1 haya #include <dev/pci/pcidevs.h> 74 1.1 haya 75 1.1 haya #include <dev/cardbus/cardbusvar.h> 76 1.18 mycroft #include <dev/pci/pcidevs.h> 77 1.1 haya 78 1.34 joerg static int fxp_cardbus_match(device_t, cfdata_t, void *); 79 1.34 joerg static void fxp_cardbus_attach(device_t, device_t, void *); 80 1.34 joerg static int fxp_cardbus_detach(device_t, int); 81 1.34 joerg static void fxp_cardbus_setup(struct fxp_softc *); 82 1.34 joerg static int fxp_cardbus_enable(struct fxp_softc *); 83 1.34 joerg static void fxp_cardbus_disable(struct fxp_softc *); 84 1.1 haya 85 1.1 haya struct fxp_cardbus_softc { 86 1.9 thorpej struct fxp_softc sc; 87 1.9 thorpej cardbus_devfunc_t ct; 88 1.43 dyoung pcitag_t tag; 89 1.9 thorpej pcireg_t base0_reg; 90 1.9 thorpej pcireg_t base1_reg; 91 1.1 haya }; 92 1.1 haya 93 1.45 dyoung CFATTACH_DECL3_NEW(fxp_cardbus, sizeof(struct fxp_cardbus_softc), 94 1.45 dyoung fxp_cardbus_match, fxp_cardbus_attach, fxp_cardbus_detach, fxp_activate, 95 1.45 dyoung NULL, null_childdetached, DVF_DETACH_SHUTDOWN); 96 1.1 haya 97 1.1 haya #ifdef CBB_DEBUG 98 1.1 haya #define DPRINTF(X) printf X 99 1.1 haya #else 100 1.1 haya #define DPRINTF(X) 101 1.1 haya #endif 102 1.1 haya 103 1.1 haya static int 104 1.52 msaitoh fxp_cardbus_match(device_t parent, cfdata_t match, void *aux) 105 1.1 haya { 106 1.9 thorpej struct cardbus_attach_args *ca = aux; 107 1.9 thorpej 108 1.46 dyoung if (PCI_VENDOR(ca->ca_id) == PCI_VENDOR_INTEL && 109 1.49 msaitoh PCI_PRODUCT(ca->ca_id) == PCI_PRODUCT_INTEL_8255X) 110 1.11 thorpej return (1); 111 1.11 thorpej 112 1.11 thorpej return (0); 113 1.1 haya } 114 1.1 haya 115 1.1 haya static void 116 1.52 msaitoh fxp_cardbus_attach(device_t parent, device_t self, void *aux) 117 1.1 haya { 118 1.23 thorpej struct fxp_cardbus_softc *csc = device_private(self); 119 1.34 joerg struct fxp_softc *sc = &csc->sc; 120 1.9 thorpej struct cardbus_attach_args *ca = aux; 121 1.9 thorpej bus_space_tag_t iot, memt; 122 1.9 thorpej bus_space_handle_t ioh, memh; 123 1.9 thorpej 124 1.9 thorpej bus_addr_t adr; 125 1.9 thorpej 126 1.34 joerg sc->sc_dev = self; 127 1.9 thorpej csc->ct = ca->ca_ct; 128 1.43 dyoung csc->tag = ca->ca_tag; 129 1.9 thorpej 130 1.9 thorpej /* 131 1.9 thorpej * Map control/status registers. 132 1.9 thorpej */ 133 1.46 dyoung if (Cardbus_mapreg_map(csc->ct, PCI_BAR1, 134 1.45 dyoung PCI_MAPREG_TYPE_IO, 0, &iot, &ioh, &adr, &sc->sc_size) == 0) { 135 1.10 veego csc->base1_reg = adr | 1; 136 1.10 veego sc->sc_st = iot; 137 1.10 veego sc->sc_sh = ioh; 138 1.46 dyoung } else if (Cardbus_mapreg_map(csc->ct, PCI_BAR0, 139 1.9 thorpej PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT, 140 1.45 dyoung 0, &memt, &memh, &adr, &sc->sc_size) == 0) { 141 1.9 thorpej csc->base0_reg = adr; 142 1.9 thorpej sc->sc_st = memt; 143 1.9 thorpej sc->sc_sh = memh; 144 1.9 thorpej } else 145 1.34 joerg panic("%s: failed to allocate mem and io space", __func__); 146 1.9 thorpej 147 1.9 thorpej if (ca->ca_cis.cis1_info[0] && ca->ca_cis.cis1_info[1]) 148 1.9 thorpej printf(": %s %s\n", ca->ca_cis.cis1_info[0], 149 1.9 thorpej ca->ca_cis.cis1_info[1]); 150 1.9 thorpej else 151 1.9 thorpej printf("\n"); 152 1.9 thorpej 153 1.46 dyoung sc->sc_rev = PCI_REVISION(ca->ca_class); 154 1.35 mrg if (sc->sc_rev >= FXP_REV_82558_A4) 155 1.35 mrg sc->sc_flags |= FXPF_FC|FXPF_EXT_TXCB; 156 1.37 tsutsui if (sc->sc_rev >= FXP_REV_82559_A0) 157 1.37 tsutsui sc->sc_flags |= FXPF_82559_RXCSUM; 158 1.37 tsutsui if (sc->sc_rev >= FXP_REV_82550) { 159 1.37 tsutsui sc->sc_flags &= ~FXPF_82559_RXCSUM; 160 1.36 mrg sc->sc_flags |= FXPF_EXT_RFA; 161 1.37 tsutsui } 162 1.35 mrg 163 1.9 thorpej sc->sc_dmat = ca->ca_dmat; 164 1.9 thorpej sc->sc_enable = fxp_cardbus_enable; 165 1.9 thorpej sc->sc_disable = fxp_cardbus_disable; 166 1.9 thorpej sc->sc_enabled = 0; 167 1.9 thorpej 168 1.9 thorpej fxp_enable(sc); 169 1.9 thorpej fxp_attach(sc); 170 1.9 thorpej fxp_disable(sc); 171 1.28 jmcneill 172 1.40 tsutsui if (pmf_device_register(self, NULL, NULL)) 173 1.40 tsutsui pmf_class_network_register(self, &sc->sc_ethercom.ec_if); 174 1.40 tsutsui else 175 1.28 jmcneill aprint_error_dev(self, "couldn't establish power handler\n"); 176 1.1 haya } 177 1.1 haya 178 1.1 haya static void 179 1.9 thorpej fxp_cardbus_setup(struct fxp_softc * sc) 180 1.1 haya { 181 1.34 joerg struct fxp_cardbus_softc *csc = (struct fxp_cardbus_softc *)sc; 182 1.9 thorpej pcireg_t command; 183 1.9 thorpej 184 1.43 dyoung pcitag_t tag = csc->tag; 185 1.9 thorpej 186 1.46 dyoung command = Cardbus_conf_read(csc->ct, tag, PCI_COMMAND_STATUS_REG); 187 1.9 thorpej if (csc->base0_reg) { 188 1.9 thorpej Cardbus_conf_write(csc->ct, tag, 189 1.46 dyoung PCI_BAR0, csc->base0_reg); 190 1.46 dyoung command |= PCI_COMMAND_MEM_ENABLE | PCI_COMMAND_MASTER_ENABLE; 191 1.9 thorpej } else if (csc->base1_reg) { 192 1.9 thorpej Cardbus_conf_write(csc->ct, tag, 193 1.46 dyoung PCI_BAR1, csc->base1_reg); 194 1.46 dyoung command |= PCI_COMMAND_IO_ENABLE | PCI_COMMAND_MASTER_ENABLE; 195 1.9 thorpej } 196 1.9 thorpej 197 1.9 thorpej /* enable the card */ 198 1.46 dyoung Cardbus_conf_write(csc->ct, tag, PCI_COMMAND_STATUS_REG, command); 199 1.1 haya } 200 1.1 haya 201 1.1 haya static int 202 1.9 thorpej fxp_cardbus_enable(struct fxp_softc * sc) 203 1.1 haya { 204 1.34 joerg struct fxp_cardbus_softc *csc = (struct fxp_cardbus_softc *)sc; 205 1.47 dyoung cardbus_devfunc_t ct = csc->ct; 206 1.9 thorpej 207 1.9 thorpej Cardbus_function_enable(csc->ct); 208 1.9 thorpej 209 1.9 thorpej fxp_cardbus_setup(sc); 210 1.9 thorpej 211 1.9 thorpej /* Map and establish the interrupt. */ 212 1.9 thorpej 213 1.48 drochner sc->sc_ih = Cardbus_intr_establish(ct, IPL_NET, fxp_intr, sc); 214 1.9 thorpej if (NULL == sc->sc_ih) { 215 1.34 joerg aprint_error_dev(sc->sc_dev, "couldn't establish interrupt\n"); 216 1.9 thorpej return 1; 217 1.9 thorpej } 218 1.1 haya 219 1.9 thorpej return 0; 220 1.1 haya } 221 1.1 haya 222 1.1 haya static void 223 1.9 thorpej fxp_cardbus_disable(struct fxp_softc * sc) 224 1.1 haya { 225 1.34 joerg struct fxp_cardbus_softc *csc = (struct fxp_cardbus_softc *)sc; 226 1.47 dyoung cardbus_devfunc_t ct = csc->ct; 227 1.9 thorpej 228 1.9 thorpej /* Remove interrupt handler. */ 229 1.47 dyoung Cardbus_intr_disestablish(ct, sc->sc_ih); 230 1.9 thorpej 231 1.34 joerg Cardbus_function_disable(csc->ct); 232 1.6 joda } 233 1.6 joda 234 1.6 joda static int 235 1.34 joerg fxp_cardbus_detach(device_t self, int flags) 236 1.6 joda { 237 1.23 thorpej struct fxp_cardbus_softc *csc = device_private(self); 238 1.34 joerg struct fxp_softc *sc = &csc->sc; 239 1.6 joda struct cardbus_devfunc *ct = csc->ct; 240 1.9 thorpej int rv, reg; 241 1.6 joda 242 1.6 joda #ifdef DIAGNOSTIC 243 1.9 thorpej if (ct == NULL) 244 1.34 joerg panic("%s: data structure lacks", device_xname(self)); 245 1.6 joda #endif 246 1.6 joda 247 1.45 dyoung if ((rv = fxp_detach(sc, flags)) != 0) 248 1.45 dyoung return rv; 249 1.45 dyoung /* 250 1.45 dyoung * Unhook the interrupt handler. 251 1.45 dyoung */ 252 1.47 dyoung Cardbus_intr_disestablish(ct, sc->sc_ih); 253 1.45 dyoung 254 1.45 dyoung /* 255 1.45 dyoung * release bus space and close window 256 1.45 dyoung */ 257 1.45 dyoung if (csc->base0_reg) 258 1.46 dyoung reg = PCI_BAR0; 259 1.45 dyoung else 260 1.46 dyoung reg = PCI_BAR1; 261 1.45 dyoung Cardbus_mapreg_unmap(ct, reg, sc->sc_st, sc->sc_sh, sc->sc_size); 262 1.45 dyoung return 0; 263 1.1 haya } 264