The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/i386/isa/if_iereg.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  * $FreeBSD: src/sys/i386/isa/if_iereg.h,v 1.1.16.1 1999/09/05 08:12:55 peter Exp $
    3  * definitions for AT&T StarLAN 10 etc...
    4  */
    5 
    6 #define IEATT_RESET     0       /* any write here resets the 586 */
    7 #define IEATT_ATTN      1       /* any write here sends a Chan attn */
    8 #define IEATT_REVISION  6       /* read here to figure out this board */
    9 #define IEATT_ATTRIB    7       /* more information about this board */
   10 
   11 #define SL_BOARD(x) ((x) & 0x0f)
   12 #define SL_REV(x) ((x) >> 4)
   13 
   14 #define SL1_BOARD       0
   15 #define SL10_BOARD      1
   16 #define EN100_BOARD     2
   17 #define SLFIBER_BOARD   3
   18 
   19 #define SL_ATTR_WIDTH   0x04    /* bus width: clear -> 8-bit */
   20 #define SL_ATTR_SPEED   0x08    /* medium speed: clear -> 10 Mbps */
   21 #define SL_ATTR_CODING  0x10    /* encoding: clear -> Manchester */
   22 #define SL_ATTR_HBW     0x20    /* host bus width: clear -> 16-bit */
   23 #define SL_ATTR_TYPE    0x40    /* medium type: clear -> Ethernet */
   24 #define SL_ATTR_BOOTROM 0x80    /* set -> boot ROM present */

Cache object: 90fdf160c62f659cedb38359df51854e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.