if_tlp_eisa.c revision 1.22
11.22Scegger/* $NetBSD: if_tlp_eisa.c,v 1.22 2009/04/17 10:20:32 cegger Exp $ */ 21.1Sthorpej 31.1Sthorpej/*- 41.6Sthorpej * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc. 51.1Sthorpej * All rights reserved. 61.1Sthorpej * 71.1Sthorpej * This code is derived from software contributed to The NetBSD Foundation 81.1Sthorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility, 91.1Sthorpej * NASA Ames Research Center. 101.1Sthorpej * 111.1Sthorpej * Redistribution and use in source and binary forms, with or without 121.1Sthorpej * modification, are permitted provided that the following conditions 131.1Sthorpej * are met: 141.1Sthorpej * 1. Redistributions of source code must retain the above copyright 151.1Sthorpej * notice, this list of conditions and the following disclaimer. 161.1Sthorpej * 2. Redistributions in binary form must reproduce the above copyright 171.1Sthorpej * notice, this list of conditions and the following disclaimer in the 181.1Sthorpej * documentation and/or other materials provided with the distribution. 191.1Sthorpej * 201.1Sthorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 211.1Sthorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 221.1Sthorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 231.1Sthorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 241.1Sthorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 251.1Sthorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 261.1Sthorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 271.1Sthorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 281.1Sthorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 291.1Sthorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 301.1Sthorpej * POSSIBILITY OF SUCH DAMAGE. 311.1Sthorpej */ 321.1Sthorpej 331.1Sthorpej/* 341.1Sthorpej * EISA bus front-end for the Digital Semiconductor ``Tulip'' (21x4x) 351.1Sthorpej * Ethernet controller family driver. 361.1Sthorpej */ 371.7Slukem 381.7Slukem#include <sys/cdefs.h> 391.22Scegger__KERNEL_RCSID(0, "$NetBSD: if_tlp_eisa.c,v 1.22 2009/04/17 10:20:32 cegger Exp $"); 401.1Sthorpej 411.1Sthorpej#include "opt_inet.h" 421.1Sthorpej#include "bpfilter.h" 431.1Sthorpej 441.1Sthorpej#include <sys/param.h> 451.13Sperry#include <sys/systm.h> 461.13Sperry#include <sys/mbuf.h> 471.1Sthorpej#include <sys/malloc.h> 481.1Sthorpej#include <sys/kernel.h> 491.1Sthorpej#include <sys/socket.h> 501.1Sthorpej#include <sys/ioctl.h> 511.1Sthorpej#include <sys/errno.h> 521.1Sthorpej#include <sys/device.h> 531.4Sthorpej 541.4Sthorpej#include <machine/endian.h> 551.13Sperry 561.1Sthorpej#include <net/if.h> 571.1Sthorpej#include <net/if_dl.h> 581.1Sthorpej#include <net/if_media.h> 591.1Sthorpej#include <net/if_ether.h> 601.1Sthorpej 611.13Sperry#if NBPFILTER > 0 621.1Sthorpej#include <net/bpf.h> 631.13Sperry#endif 641.1Sthorpej 651.1Sthorpej#ifdef INET 661.13Sperry#include <netinet/in.h> 671.1Sthorpej#include <netinet/if_inarp.h> 681.1Sthorpej#endif 691.1Sthorpej 701.1Sthorpej 711.19Sad#include <sys/bus.h> 721.19Sad#include <sys/intr.h> 731.1Sthorpej 741.1Sthorpej#include <dev/mii/miivar.h> 751.3Sthorpej#include <dev/mii/mii_bitbang.h> 761.1Sthorpej 771.1Sthorpej#include <dev/ic/tulipreg.h> 781.1Sthorpej#include <dev/ic/tulipvar.h> 791.1Sthorpej 801.1Sthorpej#include <dev/eisa/eisareg.h> 811.1Sthorpej#include <dev/eisa/eisavar.h> 821.1Sthorpej#include <dev/eisa/eisadevs.h> 831.1Sthorpej 841.1Sthorpej#include <dev/pci/pcireg.h> 851.1Sthorpej 861.1Sthorpej/* 871.1Sthorpej * DE425 configuration registers; literal offsets from CSR base. 881.1Sthorpej * This is effectively the 21040 PCI configuration space interleaved 891.1Sthorpej * into the CSR space (CSRs are space 16 bytes on the DE425). 901.1Sthorpej * 911.1Sthorpej * What a cool address decoder hack they must have on that board... 921.1Sthorpej */ 931.1Sthorpej#define DE425_CFID 0x08 /* Configuration ID */ 941.1Sthorpej#define DE425_CFCS 0x0c /* Configuration Command-Status */ 951.1Sthorpej#define DE425_CFRV 0x18 /* Configuration Revision */ 961.1Sthorpej#define DE425_CFLT 0x1c /* Configuration Latency Timer */ 971.1Sthorpej#define DE425_CBIO 0x28 /* Configuration Base I/O Address */ 981.1Sthorpej#define DE425_CFDA 0x2c /* Configuration Driver Area */ 991.1Sthorpej#define DE425_ENETROM 0xc90 /* Offset in I/O space for ENETROM */ 1001.1Sthorpej#define DE425_CFG0 0xc88 /* IRQ Configuration Register */ 1011.1Sthorpej 1021.1Sthorpejstruct tulip_eisa_softc { 1031.1Sthorpej struct tulip_softc sc_tulip; /* real Tulip softc */ 1041.1Sthorpej 1051.1Sthorpej /* EISA-specific goo. */ 1061.1Sthorpej void *sc_ih; /* interrupt handle */ 1071.1Sthorpej}; 1081.1Sthorpej 1091.22Sceggerstatic int tlp_eisa_match(device_t, cfdata_t, void *); 1101.22Sceggerstatic void tlp_eisa_attach(device_t, device_t, void *); 1111.1Sthorpej 1121.22SceggerCFATTACH_DECL_NEW(tlp_eisa, sizeof(struct tulip_eisa_softc), 1131.11Sthorpej tlp_eisa_match, tlp_eisa_attach, NULL, NULL); 1141.1Sthorpej 1151.12Sthorpejstatic const int tlp_eisa_irqs[] = { 5, 9, 10, 11 }; 1161.1Sthorpej 1171.12Sthorpejstatic const struct tulip_eisa_product { 1181.1Sthorpej const char *tep_eisaid; /* EISA ID */ 1191.1Sthorpej const char *tep_name; /* device name */ 1201.1Sthorpej tulip_chip_t tep_chip; /* base Tulip chip type */ 1211.1Sthorpej} tlp_eisa_products[] = { 1221.1Sthorpej { "DEC4250", "DEC DE425", 1231.1Sthorpej TULIP_CHIP_DE425 }, 1241.1Sthorpej 1251.1Sthorpej { NULL, NULL, 1261.1Sthorpej TULIP_CHIP_INVALID }, 1271.1Sthorpej}; 1281.1Sthorpej 1291.12Sthorpejstatic const struct tulip_eisa_product * 1301.12Sthorpejtlp_eisa_lookup(const struct eisa_attach_args *ea) 1311.1Sthorpej{ 1321.1Sthorpej const struct tulip_eisa_product *tep; 1331.1Sthorpej 1341.1Sthorpej for (tep = tlp_eisa_products; 1351.1Sthorpej tep->tep_chip != TULIP_CHIP_INVALID; tep++) 1361.1Sthorpej if (strcmp(ea->ea_idstring, tep->tep_eisaid) == 0) 1371.1Sthorpej return (tep); 1381.1Sthorpej return (NULL); 1391.1Sthorpej} 1401.1Sthorpej 1411.12Sthorpejstatic int 1421.22Sceggertlp_eisa_match(device_t parent, cfdata_t match, 1431.17Schristos void *aux) 1441.1Sthorpej{ 1451.1Sthorpej struct eisa_attach_args *ea = aux; 1461.1Sthorpej 1471.1Sthorpej if (tlp_eisa_lookup(ea) != NULL) 1481.1Sthorpej return (1); 1491.1Sthorpej 1501.1Sthorpej return (0); 1511.1Sthorpej} 1521.1Sthorpej 1531.12Sthorpejstatic void 1541.22Sceggertlp_eisa_attach(device_t parent, device_t self, void *aux) 1551.1Sthorpej{ 1561.1Sthorpej static const u_int8_t testpat[] = 1571.1Sthorpej { 0xff, 0, 0x55, 0xaa, 0xff, 0, 0x55, 0xaa }; 1581.15Sthorpej struct tulip_eisa_softc *esc = device_private(self); 1591.1Sthorpej struct tulip_softc *sc = &esc->sc_tulip; 1601.1Sthorpej struct eisa_attach_args *ea = aux; 1611.1Sthorpej eisa_chipset_tag_t ec = ea->ea_ec; 1621.1Sthorpej eisa_intr_handle_t ih; 1631.1Sthorpej bus_space_tag_t iot = ea->ea_iot; 1641.1Sthorpej bus_space_handle_t ioh; 1651.1Sthorpej const char *intrstr; 1661.1Sthorpej const struct tulip_eisa_product *tep; 1671.1Sthorpej u_int8_t enaddr[ETHER_ADDR_LEN], tmpbuf[sizeof(testpat)]; 1681.1Sthorpej u_int32_t val; 1691.1Sthorpej int irq, i, cnt; 1701.1Sthorpej 1711.1Sthorpej /* 1721.1Sthorpej * Map the device. 1731.1Sthorpej */ 1741.1Sthorpej if (bus_space_map(iot, EISA_SLOT_ADDR(ea->ea_slot), 1751.1Sthorpej EISA_SLOT_SIZE, 0, &ioh)) { 1761.1Sthorpej printf(": unable to map I/O space\n"); 1771.1Sthorpej return; 1781.1Sthorpej } 1791.1Sthorpej 1801.22Scegger sc->sc_dev = self; 1811.1Sthorpej sc->sc_st = iot; 1821.1Sthorpej sc->sc_sh = ioh; 1831.1Sthorpej 1841.1Sthorpej tep = tlp_eisa_lookup(ea); 1851.1Sthorpej if (tep == NULL) { 1861.1Sthorpej printf("\n"); 1871.1Sthorpej panic("tlp_eisa_attach: impossible"); 1881.1Sthorpej } 1891.1Sthorpej sc->sc_chip = tep->tep_chip; 1901.1Sthorpej 1911.1Sthorpej /* 1921.1Sthorpej * DE425's registers are 16 bytes long; the PCI configuration 1931.1Sthorpej * space registers are interleaved in the I/O space. 1941.1Sthorpej */ 1951.1Sthorpej sc->sc_regshift = 4; 1961.5Sthorpej 1971.5Sthorpej /* 1981.5Sthorpej * No power management hooks. 1991.5Sthorpej */ 2001.5Sthorpej sc->sc_flags |= TULIPF_ENABLED; 2011.1Sthorpej 2021.1Sthorpej /* 2031.1Sthorpej * CBIO must map the EISA slot, and I/O access and Bus Mastering 2041.1Sthorpej * must be enabled. 2051.1Sthorpej */ 2061.1Sthorpej bus_space_write_4(iot, ioh, DE425_CBIO, EISA_SLOT_ADDR(ea->ea_slot)); 2071.1Sthorpej bus_space_write_4(iot, ioh, DE425_CFCS, 2081.1Sthorpej bus_space_read_4(iot, ioh, DE425_CFCS) | 2091.1Sthorpej PCI_COMMAND_IO_ENABLE | PCI_COMMAND_MASTER_ENABLE); 2101.1Sthorpej 2111.1Sthorpej /* 2121.1Sthorpej * Get revision info. 2131.1Sthorpej */ 2141.1Sthorpej sc->sc_rev = bus_space_read_4(iot, ioh, DE425_CFRV) & 0xff; 2151.1Sthorpej 2161.1Sthorpej printf(": %s Ethernet, pass %d.%d\n", 2171.1Sthorpej tep->tep_name, (sc->sc_rev >> 4) & 0xf, sc->sc_rev & 0xf); 2181.1Sthorpej 2191.1Sthorpej sc->sc_dmat = ea->ea_dmat; 2201.1Sthorpej 2211.1Sthorpej /* 2221.1Sthorpej * EISA doesn't have a cache line register. 2231.1Sthorpej */ 2241.1Sthorpej sc->sc_cacheline = 0; 2251.1Sthorpej 2261.1Sthorpej /* 2271.1Sthorpej * Find the beginning of the Ethernet Address ROM. 2281.1Sthorpej */ 2291.1Sthorpej for (i = 0, cnt = 0; i < sizeof(testpat) && cnt < 32; cnt++) { 2301.1Sthorpej tmpbuf[i] = bus_space_read_1(iot, ioh, DE425_ENETROM); 2311.1Sthorpej if (tmpbuf[i] == testpat[i]) 2321.1Sthorpej i++; 2331.1Sthorpej else 2341.1Sthorpej i = 0; 2351.1Sthorpej } 2361.1Sthorpej 2371.1Sthorpej /* 2381.1Sthorpej * ...and now read the contents of the Ethernet Address ROM. 2391.1Sthorpej */ 2401.8Stsutsui sc->sc_srom = malloc(32, M_DEVBUF, M_WAITOK|M_ZERO); 2411.1Sthorpej for (i = 0; i < 32; i++) 2421.1Sthorpej sc->sc_srom[i] = bus_space_read_1(iot, ioh, DE425_ENETROM); 2431.1Sthorpej 2441.1Sthorpej /* 2451.1Sthorpej * None of the DE425 boards have the new-style SROMs. 2461.1Sthorpej */ 2471.1Sthorpej if (tlp_parse_old_srom(sc, enaddr) == 0) { 2481.22Scegger aprint_error_dev(self, "unable to decode old-style SROM\n"); 2491.1Sthorpej return; 2501.1Sthorpej } 2511.1Sthorpej 2521.1Sthorpej /* 2531.1Sthorpej * All DE425 boards use the 21040 media switch. 2541.1Sthorpej */ 2551.1Sthorpej sc->sc_mediasw = &tlp_21040_mediasw; 2561.1Sthorpej 2571.1Sthorpej /* 2581.1Sthorpej * Figure out which IRQ we want to use, and determine of it's 2591.1Sthorpej * edge- or level-triggered. 2601.1Sthorpej */ 2611.1Sthorpej val = bus_space_read_4(iot, ioh, DE425_CFG0); 2621.1Sthorpej irq = tlp_eisa_irqs[(val >> 1) & 0x03]; 2631.1Sthorpej 2641.1Sthorpej /* 2651.1Sthorpej * Map and establish our interrupt. 2661.1Sthorpej */ 2671.1Sthorpej if (eisa_intr_map(ec, irq, &ih)) { 2681.22Scegger aprint_error_dev(self, "unable to map interrupt (%u)\n", 2691.20Scegger irq); 2701.1Sthorpej return; 2711.1Sthorpej } 2721.1Sthorpej intrstr = eisa_intr_string(ec, ih); 2731.1Sthorpej esc->sc_ih = eisa_intr_establish(ec, ih, 2741.1Sthorpej (val & 0x01) ? IST_EDGE : IST_LEVEL, IPL_NET, tlp_intr, sc); 2751.1Sthorpej if (esc->sc_ih == NULL) { 2761.22Scegger aprint_error_dev(self, "unable to establish interrupt"); 2771.1Sthorpej if (intrstr != NULL) 2781.1Sthorpej printf(" at %s", intrstr); 2791.1Sthorpej printf("\n"); 2801.1Sthorpej return; 2811.1Sthorpej } 2821.1Sthorpej if (intrstr != NULL) 2831.22Scegger printf("%s: interrupting at %s\n", device_xname(self), 2841.1Sthorpej intrstr); 2851.1Sthorpej 2861.1Sthorpej /* 2871.1Sthorpej * Finish off the attach. 2881.1Sthorpej */ 2891.2Sthorpej tlp_attach(sc, enaddr); 2901.1Sthorpej} 291