Home | History | Annotate | Line # | Download | only in obio
if_sn_obio.c revision 1.5
      1 /*	$NetBSD: if_sn_obio.c,v 1.5 1997/03/30 19:51:49 briggs Exp $	*/
      2 
      3 /*
      4  * Copyright (C) 1997 Allen Briggs
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. All advertising materials mentioning features or use of this software
     16  *    must display the following acknowledgement:
     17  *      This product includes software developed by Allen Briggs
     18  * 4. The name of the author may not be used to endorse or promote products
     19  *    derived from this software without specific prior written permission.
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  */
     32 
     33 #include <sys/param.h>
     34 #include <sys/device.h>
     35 #include <sys/errno.h>
     36 #include <sys/ioctl.h>
     37 #include <sys/socket.h>
     38 #include <sys/syslog.h>
     39 #include <sys/systm.h>
     40 
     41 #include <net/if.h>
     42 #include <net/if_ether.h>
     43 
     44 #if 0 /* XXX this shouldn't be necessary... else reinsert */
     45 #ifdef INET
     46 #include <netinet/in.h>
     47 #include <netinet/if_ether.h>
     48 #endif
     49 #endif
     50 
     51 #include <machine/bus.h>
     52 #include <machine/cpu.h>
     53 #include <machine/viareg.h>
     54 
     55 #include "obiovar.h"
     56 #include "if_snreg.h"
     57 #include "if_snvar.h"
     58 
     59 #define SONIC_REG_BASE	0x50F0A000
     60 #define SONIC_PROM_BASE	0x50F08000
     61 
     62 static int	sn_obio_match __P((struct device *, struct cfdata *, void *));
     63 static void	sn_obio_attach __P((struct device *, struct device *, void *));
     64 static void	sn_obio_getaddr __P((struct sn_softc *, u_int8_t *));
     65 
     66 struct cfattach sn_obio_ca = {
     67 	sizeof(struct sn_softc), sn_obio_match, sn_obio_attach
     68 };
     69 
     70 static int
     71 sn_obio_match(parent, cf, aux)
     72 	struct device *parent;
     73 	struct cfdata *cf;
     74 	void *aux;
     75 {
     76 	if (mac68k_machine.sonic)
     77 		return 1;
     78 
     79 	return 0;
     80 }
     81 
     82 /*
     83  * Install interface into kernel networking data structures
     84  */
     85 static void
     86 sn_obio_attach(parent, self, aux)
     87 	struct device *parent, *self;
     88 	void   *aux;
     89 {
     90 	struct obio_attach_args *oa = (struct obio_attach_args *) aux;
     91         struct sn_softc	*sc = (void *)self;
     92 	u_int8_t	myaddr[ETHER_ADDR_LEN];
     93 	int		i;
     94 
     95         sc->snr_dcr = DCR_SYNC | DCR_WAIT0 | DCR_DMABLOCK |
     96 		DCR_RFT16 | DCR_TFT16;
     97 	sc->snr_dcr2 = 0;
     98 
     99         switch (current_mac_model->machineid) {
    100         case MACH_MACQ700:	/* only tested on Q700 */
    101         case MACH_MACQ900:
    102 	case MACH_MACQ950:
    103                 sc->snr_dcr |= DCR_LBR | DCR_DW32;
    104 		sc->bitmode = 1;
    105                 break;
    106 
    107 	case MACH_MACQ800:
    108 	case MACH_MACQ650:
    109 	case MACH_MACC650:
    110 	case MACH_MACC610:
    111 	case MACH_MACQ610:
    112 		sc->snr_dcr |= DCR_EXBUS | DCR_DW32;
    113 		sc->bitmode = 1;
    114 		break;
    115 
    116         case MACH_MACPB500:
    117                 sc->snr_dcr |= DCR_LBR | DCR_DW16;
    118 		sc->bitmode = 0;
    119                 break;
    120 
    121 	default:
    122 		printf("unsupported machine type\n");
    123 		return;
    124         }
    125 
    126 	sc->sc_regt = oa->oa_tag;
    127 	if (bus_space_map(sc->sc_regt, SONIC_REG_BASE, SN_REGSIZE,
    128 				0, &sc->sc_regh)) {
    129 		panic("failed to map space for SONIC regs.\n");
    130 	}
    131 
    132 	sc->slotno = 9;
    133 
    134 	sn_obio_getaddr(sc, myaddr);
    135 
    136 	/* regs are addressed as words, big-endian. */
    137 	for (i = 0; i < SN_NREGS; i++) {
    138 		sc->sc_reg_map[i] = (bus_size_t)((i * 4) + 2);
    139 	}
    140 
    141 	/* snsetup returns 1 if something fails */
    142 	if (snsetup(sc, myaddr)) {
    143 		bus_space_unmap(sc->sc_regt, sc->sc_regh, SN_REGSIZE);
    144 		return;
    145 	}
    146 
    147 	add_nubus_intr(sc->slotno, snintr, (void *)sc);
    148 }
    149 
    150 static u_char bbr4[] = {0,8,4,12,2,10,6,14,1,9,5,13,3,11,7,15};
    151 #define bbr(v)	((bbr4[(v)&0xf] << 4) | bbr4[((v)>>4) & 0xf])
    152 
    153 static void
    154 sn_obio_getaddr(sc, lladdr)
    155 	struct sn_softc	*sc;
    156 	u_int8_t *lladdr;
    157 {
    158 	bus_space_handle_t	bsh;
    159 	int			i, do_bbr;
    160 	u_char			b;
    161 
    162 	if (bus_space_map(sc->sc_regt, SONIC_PROM_BASE, NBPG, 0, &bsh)) {
    163 		panic("failed to map space to read SONIC address.\n");
    164 	}
    165 
    166 	/*
    167 	 * For reasons known only to Apple, MAC addresses in the ethernet
    168 	 * PROM are stored in Token Ring (IEEE 802.5) format, that is
    169 	 * with all of the bits in each byte reversed (canonical bit format).
    170 	 * When the address is read out it must be reversed to ethernet format
    171 	 * before use.
    172 	 *
    173 	 * Apple has been assigned OUI's 00:08:07 and 00:a0:40. All onboard
    174 	 * ethernet addresses on 68K machines should be in one of these
    175 	 * two ranges.
    176 	 *
    177 	 * Here is where it gets complicated.
    178 	 *
    179 	 * The PMac 7200, 7500, 8500, and 9500 accidentally had the PROM
    180 	 * written in standard ethernet format. The MacOS accounted for this
    181 	 * in these systems, and did not reverse the bytes. Some other
    182 	 * networking utilities were not so forgiving, and got confused.
    183 	 * "Some" of Apple's Nubus ethernet cards also had their bits
    184 	 * burned in ethernet format.
    185 	 *
    186 	 * Apple petitioned the IEEE and was granted the 00:05:02 (bit reversal
    187 	 * of 00:a0:40) as well. As of OpenTransport 1.1.1, Apple removed
    188 	 * their workaround and now reverses the bits regardless of
    189 	 * what kind of machine it is. So PMac systems and the affected
    190 	 * Nubus cards now use 00:05:02, instead of the 00:a0:40 for which they
    191 	 * were intended.
    192 	 *
    193 	 * See Apple Techinfo article TECHINFO-0020552, "OpenTransport 1.1.1
    194 	 * and MacOS System 7.5.3 FAQ (10/96)" for more details.
    195 	 */
    196 	do_bbr = 0;
    197 	b = bus_space_read_1(sc->sc_regt, bsh, 0);
    198 	if (b == 0x10)
    199 		do_bbr = 1;
    200 	lladdr[0] = (do_bbr) ? bbr(b) : b;
    201 
    202 	for (i = 1 ; i < ETHER_ADDR_LEN ; i++) {
    203 		b = bus_space_read_1(sc->sc_regt, bsh, i);
    204 		lladdr[i] = (do_bbr) ? bbr(b) : b;
    205 	}
    206 
    207 	bus_space_unmap(sc->sc_regt, bsh, NBPG);
    208 }
    209