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/isa/if_ieatt.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 /*      $OpenBSD: if_ieatt.h,v 1.2 1997/11/07 08:06:58 niklas Exp $     */
    2 /*      $NetBSD: if_ieatt.h,v 1.2 1994/10/27 04:17:40 cgd Exp $ */
    3 
    4 /*
    5  * definitions for AT&T StarLAN 10 etc...
    6  */
    7 
    8 #define IEATT_RESET     0       /* any write here resets the 586 */
    9 #define IEATT_ATTN      1       /* any write here sends a Chan attn */
   10 #define IEATT_REVISION  6       /* read here to figure out this board */
   11 #define IEATT_ATTRIB    7       /* more information about this board */
   12 
   13 #define SL_BOARD(x) ((x) & 0x0f)
   14 #define SL_REV(x) ((x) >> 4)
   15 
   16 #define SL1_BOARD       0
   17 #define SL10_BOARD      1
   18 #define EN100_BOARD     2
   19 #define SLFIBER_BOARD   3
   20 
   21 #define SL_ATTR_WIDTH   0x04    /* bus width: clear -> 8-bit */
   22 #define SL_ATTR_SPEED   0x08    /* medium speed: clear -> 10 Mbps */
   23 #define SL_ATTR_CODING  0x10    /* encoding: clear -> Manchester */
   24 #define SL_ATTR_HBW     0x20    /* host bus width: clear -> 16-bit */
   25 #define SL_ATTR_TYPE    0x40    /* medium type: clear -> Ethernet */
   26 #define SL_ATTR_BOOTROM 0x80    /* set -> boot ROM present */

Cache object: 81e4282e98610735d6a427b6f2dc78b8


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