bus/fslmc: define queues for DPAA2 devices
[dpdk.git] / drivers / bus / fslmc / portal / dpaa2_hw_pvt.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright (c) 2016 Freescale Semiconductor, Inc. All rights reserved.
5  *   Copyright (c) 2016 NXP. 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 Freescale Semiconductor, Inc 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 _DPAA2_HW_PVT_H_
35 #define _DPAA2_HW_PVT_H_
36
37 #include <mc/fsl_mc_sys.h>
38 #include <fsl_qbman_portal.h>
39
40 #define DPAA2_DQRR_RING_SIZE    16
41         /** <Maximum number of slots available in RX ring*/
42
43 #define MC_PORTAL_INDEX         0
44 #define NUM_DPIO_REGIONS        2
45 #define NUM_DQS_PER_QUEUE       2
46
47 /* Maximum release/acquire from QBMAN */
48 #define DPAA2_MBUF_MAX_ACQ_REL  7
49
50 #define MAX_BPID 256
51
52 struct dpaa2_dpio_dev {
53         TAILQ_ENTRY(dpaa2_dpio_dev) next;
54                 /**< Pointer to Next device instance */
55         uint16_t index; /**< Index of a instance in the list */
56         rte_atomic16_t ref_count;
57                 /**< How many thread contexts are sharing this.*/
58         struct fsl_mc_io *dpio; /** handle to DPIO portal object */
59         uint16_t token;
60         struct qbman_swp *sw_portal; /** SW portal object */
61         const struct qbman_result *dqrr[4];
62                 /**< DQRR Entry for this SW portal */
63         void *mc_portal; /**< MC Portal for configuring this device */
64         uintptr_t qbman_portal_ce_paddr;
65                 /**< Physical address of Cache Enabled Area */
66         uintptr_t ce_size; /**< Size of the CE region */
67         uintptr_t qbman_portal_ci_paddr;
68                 /**< Physical address of Cache Inhibit Area */
69         uintptr_t ci_size; /**< Size of the CI region */
70         int32_t vfio_fd; /**< File descriptor received via VFIO */
71         int32_t hw_id; /**< An unique ID of this DPIO device instance */
72 };
73
74 struct dpaa2_dpbp_dev {
75         TAILQ_ENTRY(dpaa2_dpbp_dev) next;
76                 /**< Pointer to Next device instance */
77         struct fsl_mc_io dpbp;  /** handle to DPBP portal object */
78         uint16_t token;
79         rte_atomic16_t in_use;
80         uint32_t dpbp_id; /*HW ID for DPBP object */
81 };
82
83 struct queue_storage_info_t {
84         struct qbman_result *dq_storage[NUM_DQS_PER_QUEUE];
85 };
86
87 struct dpaa2_queue {
88         struct rte_mempool *mb_pool; /**< mbuf pool to populate RX ring. */
89         void *dev;
90         int32_t eventfd;        /*!< Event Fd of this queue */
91         uint32_t fqid;          /*!< Unique ID of this queue */
92         uint8_t tc_index;       /*!< traffic class identifier */
93         uint16_t flow_id;       /*!< To be used by DPAA2 frmework */
94         uint64_t rx_pkts;
95         uint64_t tx_pkts;
96         uint64_t err_pkts;
97         struct queue_storage_info_t *q_storage;
98 };
99
100 /*! Global MCP list */
101 extern void *(*rte_mcp_ptr_list);
102
103 struct dpaa2_dpbp_dev *dpaa2_alloc_dpbp_dev(void);
104 void dpaa2_free_dpbp_dev(struct dpaa2_dpbp_dev *dpbp);
105
106 #endif