if_sn_jazzio.c revision 1.14
11.14Srin/* $NetBSD: if_sn_jazzio.c,v 1.14 2021/02/20 09:36:30 rin Exp $ */ 21.1Sthorpej 31.1Sthorpej/*- 41.1Sthorpej * Copyright (c) 2001 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. 91.1Sthorpej * 101.1Sthorpej * Redistribution and use in source and binary forms, with or without 111.1Sthorpej * modification, are permitted provided that the following conditions 121.1Sthorpej * are met: 131.1Sthorpej * 1. Redistributions of source code must retain the above copyright 141.1Sthorpej * notice, this list of conditions and the following disclaimer. 151.1Sthorpej * 2. Redistributions in binary form must reproduce the above copyright 161.1Sthorpej * notice, this list of conditions and the following disclaimer in the 171.1Sthorpej * documentation and/or other materials provided with the distribution. 181.1Sthorpej * 191.1Sthorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 201.1Sthorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 211.1Sthorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 221.1Sthorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 231.1Sthorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 241.1Sthorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 251.1Sthorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 261.1Sthorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 271.1Sthorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 281.1Sthorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 291.1Sthorpej * POSSIBILITY OF SUCH DAMAGE. 301.1Sthorpej */ 311.1Sthorpej 321.1Sthorpej/* 331.1Sthorpej * Microsoft JAZZ front-end for for the National Semiconductor DP83932 341.1Sthorpej * Systems-Oriented Network Interface Controller (SONIC). 351.1Sthorpej */ 361.5Slukem 371.5Slukem#include <sys/cdefs.h> 381.14Srin__KERNEL_RCSID(0, "$NetBSD: if_sn_jazzio.c,v 1.14 2021/02/20 09:36:30 rin Exp $"); 391.1Sthorpej 401.1Sthorpej#include <sys/param.h> 411.1Sthorpej#include <sys/systm.h> 421.1Sthorpej#include <sys/mbuf.h> 431.1Sthorpej#include <sys/malloc.h> 441.1Sthorpej#include <sys/kernel.h> 451.1Sthorpej#include <sys/socket.h> 461.1Sthorpej#include <sys/ioctl.h> 471.1Sthorpej#include <sys/errno.h> 481.1Sthorpej#include <sys/device.h> 491.1Sthorpej#include <sys/kcore.h> 501.1Sthorpej 511.14Srin#include <sys/rndsource.h> 521.14Srin 531.1Sthorpej#include <net/if.h> 541.1Sthorpej#include <net/if_dl.h> 551.1Sthorpej#include <net/if_ether.h> 561.1Sthorpej 571.1Sthorpej#include <machine/autoconf.h> 581.13Sdyoung#include <sys/bus.h> 591.1Sthorpej#include <machine/intr.h> 601.1Sthorpej 611.1Sthorpej#include <dev/ic/dp83932reg.h> 621.1Sthorpej#include <dev/ic/dp83932var.h> 631.1Sthorpej 641.1Sthorpej#include <arc/arc/arcbios.h> 651.1Sthorpej#include <arc/jazz/jazziovar.h> 661.1Sthorpej 671.10Stsutsuiint sonic_jazzio_match(device_t, cfdata_t, void *); 681.10Stsutsuivoid sonic_jazzio_attach(device_t, device_t, void *); 691.1Sthorpej 701.10StsutsuiCFATTACH_DECL_NEW(sn_jazzio, sizeof(struct sonic_softc), 711.3Sthorpej sonic_jazzio_match, sonic_jazzio_attach, NULL, NULL); 721.1Sthorpej 731.1Sthorpejint 741.10Stsutsuisonic_jazzio_match(device_t parent, cfdata_t cf, void *aux) 751.1Sthorpej{ 761.1Sthorpej struct jazzio_attach_args *ja = aux; 771.1Sthorpej 781.4Stsutsui if (strcmp(ja->ja_name, "SONIC") != 0) 791.6Stsutsui return 0; 801.1Sthorpej 811.6Stsutsui return 1; 821.1Sthorpej} 831.1Sthorpej 841.1Sthorpejvoid 851.10Stsutsuisonic_jazzio_attach(device_t parent, device_t self, void *aux) 861.1Sthorpej{ 871.10Stsutsui struct sonic_softc *sc = device_private(self); 881.1Sthorpej struct jazzio_attach_args *ja = aux; 891.1Sthorpej int i; 901.1Sthorpej uint8_t enaddr[ETHER_ADDR_LEN]; 911.1Sthorpej 921.10Stsutsui sc->sc_dev = self; 931.1Sthorpej sc->sc_st = ja->ja_bust; 941.1Sthorpej sc->sc_dmat = ja->ja_dmat; 951.1Sthorpej 961.10Stsutsui aprint_normal(": SONIC Ethernet\n"); 971.1Sthorpej 981.1Sthorpej /* Map the device. */ 991.1Sthorpej if (bus_space_map(sc->sc_st, ja->ja_addr, SONIC_NREGS * 4, 1001.1Sthorpej 0, &sc->sc_sh) != 0) { 1011.10Stsutsui aprint_error_dev(sc->sc_dev, "unable to map SONIC registers\n"); 1021.1Sthorpej return; 1031.1Sthorpej } 1041.1Sthorpej 1051.1Sthorpej /* We run in 32-bit mode. */ 1061.1Sthorpej sc->sc_32bit = 1; 1071.1Sthorpej 1081.1Sthorpej /* BMODE is set for little-endian. */ 1091.1Sthorpej sc->sc_bigendian = 0; 1101.1Sthorpej 1111.1Sthorpej /* Regs are 16-bit, plus 16-bit pad. */ 1121.1Sthorpej for (i = 0; i < SONIC_NREGS; i++) 1131.1Sthorpej sc->sc_regmap[i] = i * 4; 1141.1Sthorpej 1151.1Sthorpej /* 1161.1Sthorpej * Configure DCR: 1171.1Sthorpej * 1181.1Sthorpej * - Latched bug retry 1191.1Sthorpej * - Synchronous bus (memory cycle 2 clocks) 1201.1Sthorpej * - 0 wait states added (WC0,WC1 == 0,0) 1211.8Stsutsui * - 4 byte Rx DMA threshold (RFT0,RFT1 == 0,0) 1221.8Stsutsui * - 28 byte Tx DMA threshold (TFT0,TFT1 == 1,1) 1231.8Stsutsui * XXX There was a comment 1241.8Stsutsui * "XXX RFT & TFT according to MIPS manual" 1251.8Stsutsui * in old MD sys/arch/arc/dev/if_sn.c in Attic. 1261.1Sthorpej */ 1271.8Stsutsui sc->sc_dcr = DCR_LBR | DCR_SBUS | DCR_TFT0 | DCR_TFT1; 1281.1Sthorpej sc->sc_dcr2 = 0; 1291.1Sthorpej 1301.1Sthorpej /* Hook up our interrupt handler. */ 1311.1Sthorpej jazzio_intr_establish(ja->ja_intr, sonic_intr, sc); 1321.1Sthorpej 1331.1Sthorpej /* The Ethernet address is from the product ID. */ 1341.1Sthorpej memcpy(enaddr, arc_product_id, sizeof(enaddr)); 1351.1Sthorpej 1361.1Sthorpej /* Finish off the attach. */ 1371.1Sthorpej sonic_attach(sc, enaddr); 1381.1Sthorpej} 139