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/dev/ie/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: releng/6.4/sys/dev/ie/if_iereg.h 112790 2003-03-29 13:36:41Z mdodd $
    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       0x00
   15 #define SL10_BOARD      0x01
   16 #define EN100_BOARD     0x02
   17 #define SLFIBER_BOARD   0x03
   18 #define NI5210_BOARD    0x55
   19 
   20 #define SL_ATTR_WIDTH   0x04    /* bus width: clear -> 8-bit */
   21 #define SL_ATTR_SPEED   0x08    /* medium speed: clear -> 10 Mbps */
   22 #define SL_ATTR_CODING  0x10    /* encoding: clear -> Manchester */
   23 #define SL_ATTR_HBW     0x20    /* host bus width: clear -> 16-bit */
   24 #define SL_ATTR_TYPE    0x40    /* medium type: clear -> Ethernet */
   25 #define SL_ATTR_BOOTROM 0x80    /* set -> boot ROM present */

Cache object: 9341f32260a9f24b81537210db345abe


[ 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.