]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/dpdk/drivers/mempool/dpaa2/dpaa2_hw_mempool.h
import 15.2.0 Octopus source
[ceph.git] / ceph / src / spdk / dpdk / drivers / mempool / dpaa2 / dpaa2_hw_mempool.h
CommitLineData
11fdf7f2
TL
1/* SPDX-License-Identifier: BSD-3-Clause
2 *
3 * Copyright (c) 2016 Freescale Semiconductor, Inc. All rights reserved.
4 * Copyright 2016 NXP
5 *
6 */
7
8#ifndef _DPAA2_HW_DPBP_H_
9#define _DPAA2_HW_DPBP_H_
10
11#define DPAA2_MAX_BUF_POOLS 8
12
13#define DPAA2_INVALID_MBUF_SEQN 0
14
15struct buf_pool_cfg {
16 void *addr;
17 /**< The address from where DPAA2 will carve out the buffers */
18 rte_iova_t phys_addr;
19 /**< Physical address of the memory provided in addr */
20 uint32_t num;
21 /**< Number of buffers */
22 uint32_t size;
23 /**< Size including headroom for each buffer */
24 uint16_t align;
25 /**< Buffer alignment (in bytes) */
26 uint16_t bpid;
27 /**< Autogenerated buffer pool ID for internal use */
28};
29
30struct buf_pool {
31 uint32_t size; /**< Size of the Pool */
32 uint32_t num_bufs; /**< Number of buffers in Pool */
33 uint16_t bpid; /**< Pool ID, from pool configuration */
34 uint8_t *h_bpool_mem; /**< Internal context data */
35 struct dpaa2_dpbp_dev *dpbp_node; /**< Hardware context */
36};
37
38/*!
39 * Buffer pool list configuration structure. User need to give DPAA2 the
40 * valid number of 'num_buf_pools'.
41 */
42struct dpaa2_bp_list_cfg {
43 struct buf_pool_cfg buf_pool; /* Configuration of each buffer pool*/
44};
45
46struct dpaa2_bp_list {
47 struct dpaa2_bp_list *next;
48 struct rte_mempool *mp; /**< DPDK RTE EAL pool reference */
49 int32_t dpaa2_ops_index; /**< Index into DPDK Mempool ops table */
50 struct buf_pool buf_pool;
51};
52
53struct dpaa2_bp_info {
54 uint32_t meta_data_size;
55 uint32_t bpid;
56 struct dpaa2_bp_list *bp_list;
57};
58
59#define mempool_to_bpinfo(mp) ((struct dpaa2_bp_info *)(mp)->pool_data)
60#define mempool_to_bpid(mp) ((mempool_to_bpinfo(mp))->bpid)
61
9f95a23c 62extern struct dpaa2_bp_info *rte_dpaa2_bpid_info;
11fdf7f2
TL
63
64int rte_dpaa2_mbuf_alloc_bulk(struct rte_mempool *pool,
65 void **obj_table, unsigned int count);
66
67#endif /* _DPAA2_HW_DPBP_H_ */