bus/fslmc: add dpio portal driver
[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
41 #define MC_PORTAL_INDEX         0
42 #define NUM_DPIO_REGIONS        2
43
44 struct dpaa2_dpio_dev {
45         TAILQ_ENTRY(dpaa2_dpio_dev) next;
46                 /**< Pointer to Next device instance */
47         uint16_t index; /**< Index of a instance in the list */
48         rte_atomic16_t ref_count;
49                 /**< How many thread contexts are sharing this.*/
50         struct fsl_mc_io *dpio; /** handle to DPIO portal object */
51         uint16_t token;
52         struct qbman_swp *sw_portal; /** SW portal object */
53         const struct qbman_result *dqrr[4];
54                 /**< DQRR Entry for this SW portal */
55         void *mc_portal; /**< MC Portal for configuring this device */
56         uintptr_t qbman_portal_ce_paddr;
57                 /**< Physical address of Cache Enabled Area */
58         uintptr_t ce_size; /**< Size of the CE region */
59         uintptr_t qbman_portal_ci_paddr;
60                 /**< Physical address of Cache Inhibit Area */
61         uintptr_t ci_size; /**< Size of the CI region */
62         int32_t vfio_fd; /**< File descriptor received via VFIO */
63         int32_t hw_id; /**< An unique ID of this DPIO device instance */
64 };
65
66 /*! Global MCP list */
67 extern void *(*rte_mcp_ptr_list);
68 #endif