Imported Upstream version 16.04
[deb_dpdk.git] / drivers / net / enic / base / vnic_enet.h
1 /*
2  * Copyright 2008-2010 Cisco Systems, Inc.  All rights reserved.
3  * Copyright 2007 Nuova Systems, Inc.  All rights reserved.
4  *
5  * Copyright (c) 2014, Cisco Systems, Inc.
6  * 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  *
12  * 1. Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  * notice, this list of conditions and the following disclaimer in
17  * the documentation and/or other materials provided with the
18  * distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #ifndef _VNIC_ENIC_H_
36 #define _VNIC_ENIC_H_
37
38 /* Device-specific region: enet configuration */
39 struct vnic_enet_config {
40         u32 flags;
41         u32 wq_desc_count;
42         u32 rq_desc_count;
43         u16 mtu;
44         u16 intr_timer_deprecated;
45         u8 intr_timer_type;
46         u8 intr_mode;
47         char devname[16];
48         u32 intr_timer_usec;
49         u16 loop_tag;
50         u16 vf_rq_count;
51         u16 num_arfs;
52         u64 mem_paddr;
53 };
54
55 #define VENETF_TSO              0x1     /* TSO enabled */
56 #define VENETF_LRO              0x2     /* LRO enabled */
57 #define VENETF_RXCSUM           0x4     /* RX csum enabled */
58 #define VENETF_TXCSUM           0x8     /* TX csum enabled */
59 #define VENETF_RSS              0x10    /* RSS enabled */
60 #define VENETF_RSSHASH_IPV4     0x20    /* Hash on IPv4 fields */
61 #define VENETF_RSSHASH_TCPIPV4  0x40    /* Hash on TCP + IPv4 fields */
62 #define VENETF_RSSHASH_IPV6     0x80    /* Hash on IPv6 fields */
63 #define VENETF_RSSHASH_TCPIPV6  0x100   /* Hash on TCP + IPv6 fields */
64 #define VENETF_RSSHASH_IPV6_EX  0x200   /* Hash on IPv6 extended fields */
65 #define VENETF_RSSHASH_TCPIPV6_EX 0x400 /* Hash on TCP + IPv6 ext. fields */
66 #define VENETF_LOOP             0x800   /* Loopback enabled */
67 #define VENETF_VMQ              0x4000  /* using VMQ flag for VMware NETQ */
68 #define VENETF_VXLAN    0x10000 /* VxLAN offload */
69 #define VENETF_NVGRE    0x20000 /* NVGRE offload */
70 #define VENET_INTR_TYPE_MIN     0       /* Timer specs min interrupt spacing */
71 #define VENET_INTR_TYPE_IDLE    1       /* Timer specs idle time before irq */
72
73 #define VENET_INTR_MODE_ANY     0       /* Try MSI-X, then MSI, then INTx */
74 #define VENET_INTR_MODE_MSI     1       /* Try MSI then INTx */
75 #define VENET_INTR_MODE_INTX    2       /* Try INTx only */
76
77 #endif /* _VNIC_ENIC_H_ */