Imported Upstream version 16.07-rc1
[deb_dpdk.git] / drivers / net / bnxt / bnxt_txr.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) Broadcom Limited.
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  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Broadcom Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef _BNXT_TXR_H_
35 #define _BNXT_TXR_H_
36
37 #define MAX_TX_RINGS    16
38 #define BNXT_TX_PUSH_THRESH 92
39
40 #define B_TX_DB(db, prod)                                               \
41                 (*(uint32_t *)db = (DB_KEY_TX | prod))
42
43 struct bnxt_tx_ring_info {
44         uint16_t                tx_prod;
45         uint16_t                tx_cons;
46         void                    *tx_doorbell;
47
48         struct tx_bd_long       *tx_desc_ring;
49         struct bnxt_sw_tx_bd    *tx_buf_ring;
50
51         phys_addr_t             tx_desc_mapping;
52
53 #define BNXT_DEV_STATE_CLOSING  0x1
54         uint32_t                dev_state;
55
56         struct bnxt_ring        *tx_ring_struct;
57 };
58
59 struct bnxt_sw_tx_bd {
60         struct rte_mbuf         *mbuf; /* mbuf associated with TX descriptor */
61         uint8_t                 is_gso;
62         unsigned short          nr_bds;
63 };
64
65 void bnxt_free_tx_rings(struct bnxt *bp);
66 int bnxt_init_one_tx_ring(struct bnxt_tx_queue *txq);
67 int bnxt_init_tx_ring_struct(struct bnxt_tx_queue *txq, unsigned int socket_id);
68 uint16_t bnxt_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
69                                uint16_t nb_pkts);
70
71 #endif