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/pci/if_fxpvar.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  * Copyright (c) 1995, David Greenman
    3  * All rights reserved.
    4  *              
    5  * Modifications to support NetBSD:
    6  * Copyright (c) 1997 Jason R. Thorpe.  All rights reserved.
    7  *                  
    8  * Redistribution and use in source and binary forms, with or without
    9  * modification, are permitted provided that the following conditions
   10  * are met:             
   11  * 1. Redistributions of source code must retain the above copyright
   12  *    notice unmodified, this list of conditions, and the following
   13  *    disclaimer.  
   14  * 2. Redistributions in binary form must reproduce the above copyright
   15  *    notice, this list of conditions and the following disclaimer in the
   16  *    documentation and/or other materials provided with the distribution.
   17  *
   18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   28  * SUCH DAMAGE.
   29  *
   30  * $FreeBSD: src/sys/pci/if_fxpvar.h,v 1.3.2.2 1999/09/05 08:21:08 peter Exp $
   31  */
   32 
   33 /*
   34  * Misc. defintions for the Intel EtherExpress Pro/100B PCI Fast
   35  * Ethernet driver
   36  */
   37 
   38 struct fxp_softc {
   39 #if defined(__NetBSD__)
   40         struct device sc_dev;           /* generic device structures */
   41         void *sc_ih;                    /* interrupt handler cookie */
   42         bus_space_tag_t sc_st;          /* bus space tag */
   43         bus_space_handle_t sc_sh;       /* bus space handle */
   44         struct ethercom sc_ethercom;    /* ethernet common part */
   45 #else
   46         struct arpcom arpcom;           /* per-interface network data */
   47         caddr_t csr;                    /* control/status registers */
   48 #endif /* __NetBSD__ */
   49         struct ifmedia sc_media;        /* media information */
   50         struct fxp_cb_tx *cbl_base;     /* base of TxCB list */
   51         struct fxp_cb_tx *cbl_first;    /* first active TxCB in list */
   52         struct fxp_cb_tx *cbl_last;     /* last active TxCB in list */
   53         struct mbuf *rfa_headm;         /* first mbuf in receive frame area */
   54         struct mbuf *rfa_tailm;         /* last mbuf in receive frame area */
   55         struct fxp_stats *fxp_stats;    /* Pointer to interface stats */
   56         int tx_queued;                  /* # of active TxCB's */
   57         int promisc_mode;               /* promiscuous mode enabled */
   58         int phy_primary_addr;           /* address of primary PHY */
   59         int phy_primary_device;         /* device type of primary PHY */
   60         int phy_10Mbps_only;            /* PHY is 10Mbps-only device */
   61         int rx_idle_secs;               /* # of seconds RX has been idle */
   62         int need_mcsetup;               /* multicast filter needs programming */
   63         int all_mcasts;                 /* receive all multicasts */
   64         struct fxp_cb_mcs *mcsp;        /* Pointer to mcast setup descriptor */
   65 };
   66 
   67 /* Macros to ease CSR access. */
   68 #if defined(__NetBSD__)
   69 #define CSR_READ_1(sc, reg)                                             \
   70         bus_space_read_1((sc)->sc_st, (sc)->sc_sh, (reg))
   71 #define CSR_READ_2(sc, reg)                                             \
   72         bus_space_read_2((sc)->sc_st, (sc)->sc_sh, (reg))
   73 #define CSR_READ_4(sc, reg)                                             \
   74         bus_space_read_4((sc)->sc_st, (sc)->sc_sh, (reg))
   75 #define CSR_WRITE_1(sc, reg, val)                                       \
   76         bus_space_write_1((sc)->sc_st, (sc)->sc_sh, (reg), (val))
   77 #define CSR_WRITE_2(sc, reg, val)                                       \
   78         bus_space_write_2((sc)->sc_st, (sc)->sc_sh, (reg), (val))
   79 #define CSR_WRITE_4(sc, reg, val)                                       \
   80         bus_space_write_4((sc)->sc_st, (sc)->sc_sh, (reg), (val))
   81 #else
   82 #define CSR_READ_1(sc, reg)                                             \
   83         (*((u_int8_t *)((sc)->csr + (reg))))
   84 #define CSR_READ_2(sc, reg)                                             \
   85         (*((u_int16_t *)((sc)->csr + (reg))))
   86 #define CSR_READ_4(sc, reg)                                             \
   87         (*((u_int32_t *)((sc)->csr + (reg))))
   88 #define CSR_WRITE_1(sc, reg, val)                                       \
   89         (*((u_int8_t *)((sc)->csr + (reg)))) = (val)
   90 #define CSR_WRITE_2(sc, reg, val)                                       \
   91         (*((u_int16_t *)((sc)->csr + (reg)))) = (val)
   92 #define CSR_WRITE_4(sc, reg, val)                                       \
   93         (*((u_int32_t *)((sc)->csr + (reg)))) = (val)
   94 #endif /* __NetBSD__ */
   95 
   96 /* Deal with slight differences in software interfaces. */
   97 #if defined(__NetBSD__)
   98 #define sc_if                   sc_ethercom.ec_if
   99 #define FXP_FORMAT              "%s"
  100 #define FXP_ARGS(sc)            (sc)->sc_dev.dv_xname
  101 #define FXP_INTR_TYPE           int
  102 #define FXP_IOCTLCMD_TYPE       u_long
  103 #define FXP_BPFTAP_ARG(ifp)     (ifp)->if_bpf
  104 #else /* __FreeBSD__ */
  105 #define sc_if                   arpcom.ac_if
  106 #define FXP_FORMAT              "fxp%d"
  107 #define FXP_ARGS(sc)            (sc)->arpcom.ac_if.if_unit
  108 #define FXP_INTR_TYPE           void
  109 #define FXP_IOCTLCMD_TYPE       int
  110 #define FXP_BPFTAP_ARG(ifp)     ifp
  111 #endif /* __NetBSD__ */

Cache object: 359d9a3f9b89bc8c0bb5b5e92d82f8de


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