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/qlxgb/qla_os.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  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
    3  *
    4  * Copyright (c) 2011-2013 Qlogic Corporation
    5  * All rights reserved.
    6  *
    7  *  Redistribution and use in source and binary forms, with or without
    8  *  modification, are permitted provided that the following conditions
    9  *  are met:
   10  *
   11  *  1. Redistributions of source code must retain the above copyright
   12  *     notice, this list of conditions and the following disclaimer.
   13  *  2. Redistributions in binary form must reproduce the above copyright
   14  *     notice, this list of conditions and the following disclaimer in the
   15  *     documentation and/or other materials provided with the distribution.
   16  *
   17  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   18  *  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   19  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   20  *  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   21  *  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   22  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   23  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   24  *  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   25  *  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   26  *  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   27  *  POSSIBILITY OF SUCH DAMAGE.
   28  *
   29  * $FreeBSD$
   30  */
   31 /*
   32  * File: qla_os.h
   33  * Author : David C Somayajulu, Qlogic Corporation, Aliso Viejo, CA 92656.
   34  */
   35 
   36 #ifndef _QLA_OS_H_
   37 #define _QLA_OS_H_
   38 
   39 #include "opt_inet.h"
   40 
   41 #include <sys/param.h>
   42 #include <sys/systm.h>
   43 #include <sys/mbuf.h>
   44 #include <sys/protosw.h>
   45 #include <sys/socket.h>
   46 #include <sys/malloc.h>
   47 #include <sys/module.h>
   48 #include <sys/kernel.h>
   49 #include <sys/sockio.h>
   50 #include <sys/types.h>
   51 #include <machine/atomic.h>
   52 #include <sys/conf.h>
   53 
   54 #if __FreeBSD_version < 700112
   55 #error FreeBSD Version not supported - use version >= 700112
   56 #endif
   57 
   58 #include <net/if.h>
   59 #include <net/if_var.h>
   60 #include <net/if_arp.h>
   61 #include <net/ethernet.h>
   62 #include <net/if_dl.h>
   63 #include <net/if_media.h>
   64 #include <net/bpf.h>
   65 #include <net/if_types.h>
   66 #include <net/if_vlan_var.h>
   67 
   68 #include <netinet/in_systm.h>
   69 #include <netinet/in.h>
   70 #include <netinet/if_ether.h>
   71 #include <netinet/ip.h>
   72 #include <netinet/ip6.h>
   73 #include <netinet/tcp.h>
   74 #include <netinet/udp.h>
   75 #include <netinet/in_var.h>
   76 #include <netinet/tcp_lro.h>
   77 
   78 #include <sys/bus.h>
   79 #include <machine/bus.h>
   80 #include <sys/rman.h>
   81 #include <machine/resource.h>
   82 #include <dev/pci/pcireg.h>
   83 #include <dev/pci/pcivar.h>
   84 #include <sys/mutex.h>
   85 #include <sys/condvar.h>
   86 #include <sys/proc.h>
   87 #include <sys/sysctl.h>
   88 #include <sys/endian.h>
   89 #include <sys/taskqueue.h>
   90 #include <sys/pcpu.h>
   91 
   92 #include <sys/unistd.h>
   93 #include <sys/kthread.h>
   94 
   95 #define QLA_USEC_DELAY(usec)    DELAY(usec)
   96 
   97 static __inline int qla_ms_to_hz(int ms)
   98 {
   99         int qla_hz;
  100 
  101         struct timeval t;
  102 
  103         t.tv_sec = ms / 1000;
  104         t.tv_usec = (ms % 1000) * 1000;
  105 
  106         qla_hz = tvtohz(&t);
  107 
  108         if (qla_hz < 0)
  109                 qla_hz = 0x7fffffff;
  110         if (!qla_hz)
  111                 qla_hz = 1;
  112 
  113         return (qla_hz);
  114 }
  115 
  116 static __inline int qla_sec_to_hz(int sec)
  117 {
  118         struct timeval t;
  119 
  120         t.tv_sec = sec;
  121         t.tv_usec = 0;
  122 
  123         return (tvtohz(&t));
  124 }
  125 
  126 #define qla_host_to_le16(x)     htole16(x)
  127 #define qla_host_to_le32(x)     htole32(x)
  128 #define qla_host_to_le64(x)     htole64(x)
  129 #define qla_host_to_be16(x)     htobe16(x)
  130 #define qla_host_to_be32(x)     htobe32(x)
  131 #define qla_host_to_be64(x)     htobe64(x)
  132 
  133 #define qla_le16_to_host(x)     le16toh(x)
  134 #define qla_le32_to_host(x)     le32toh(x)
  135 #define qla_le64_to_host(x)     le64toh(x)
  136 #define qla_be16_to_host(x)     be16toh(x)
  137 #define qla_be32_to_host(x)     be32toh(x)
  138 #define qla_be64_to_host(x)     be64toh(x)
  139 
  140 MALLOC_DECLARE(M_QLA8XXXBUF);
  141 
  142 #define qla_mdelay(fn, msecs)   \
  143         {\
  144                 if (cold) \
  145                         DELAY((msecs * 1000)); \
  146                 else  \
  147                         pause(fn, qla_ms_to_hz(msecs)); \
  148         }
  149 
  150 /*
  151  * Locks
  152  */
  153 #define QLA_LOCK(ha, str) qla_lock(ha, str);
  154 #define QLA_UNLOCK(ha, str) qla_unlock(ha, str)
  155 
  156 #define QLA_TX_LOCK(ha)         mtx_lock(&ha->tx_lock);
  157 #define QLA_TX_UNLOCK(ha)       mtx_unlock(&ha->tx_lock);
  158 
  159 #define QLA_RX_LOCK(ha)         mtx_lock(&ha->rx_lock);
  160 #define QLA_RX_UNLOCK(ha)       mtx_unlock(&ha->rx_lock);
  161 
  162 #define QLA_RXJ_LOCK(ha)        mtx_lock(&ha->rxj_lock);
  163 #define QLA_RXJ_UNLOCK(ha)      mtx_unlock(&ha->rxj_lock);
  164 
  165 /*
  166  * structure encapsulating a DMA buffer
  167  */
  168 struct qla_dma {
  169         bus_size_t              alignment;
  170         uint32_t                size;
  171         void                    *dma_b;
  172         bus_addr_t              dma_addr;
  173         bus_dmamap_t            dma_map;
  174         bus_dma_tag_t           dma_tag;
  175 };
  176 typedef struct qla_dma qla_dma_t;
  177 
  178 #define QL_ASSERT(x, y) if (!x) panic y
  179 
  180 #endif /* #ifndef _QLA_OS_H_ */

Cache object: 56cb292053a8267a3726dce2fa27ba5e


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