d974db0ada
This branch was a major cleanup and rototill of many of the various OEA cpu based PPC ports that focused on sharing as much code as possible between the various ports to eliminate near-identical copies of files in every tree. Additionally there is a new PIC system that unifies the interface to interrupt code for all different OEA ppc arches. The work for this branch was done by a variety of people, too long to list here. TODO: bebox still needs work to complete the transition to -renovation. ofppc still needs a bunch of work, which I will be looking at. ev64260 still needs to be renovated amigappc was not attempted. NOTES: pmppc was removed as an arch, and moved to a evbppc target.
24 lines
722 B
C
24 lines
722 B
C
/* $NetBSD: if_snvar.h,v 1.21 2007/10/17 19:55:13 garbled Exp $ */
|
|
|
|
/*
|
|
* Copyright (c) 1991 Algorithmics Ltd (http://www.algor.co.uk)
|
|
* You may use, copy, and modify this program so long as you retain the
|
|
* copyright line.
|
|
*/
|
|
|
|
/*
|
|
* if_snvar.h -- National Semiconductor DP8393X (SONIC) NetBSD/mac68k vars
|
|
*/
|
|
|
|
/*
|
|
* Vendor types
|
|
*/
|
|
#define SN_VENDOR_UNKNOWN 0xff /* Unknown */
|
|
#define SN_VENDOR_APPLE 0x00 /* Apple Computer/compatible */
|
|
#define SN_VENDOR_DAYNA 0x01 /* Dayna/Kinetics EtherPort */
|
|
#define SN_VENDOR_APPLE16 0x02 /* Apple Twisted Pair NB */
|
|
#define SN_VENDOR_ASANTELC 0x09 /* Asante Macintosh LC Ethernet */
|
|
|
|
void sn_get_enaddr(bus_space_tag_t, bus_space_handle_t, bus_size_t,
|
|
uint8_t *);
|