2019-06-25 11:12:58 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
2017-04-21 10:43:26 +00:00
|
|
|
*
|
2018-05-15 09:49:22 +00:00
|
|
|
* Copyright (c) 2016 Freescale Semiconductor, Inc. All rights reserved.
|
2019-06-25 11:12:58 +00:00
|
|
|
* Copyright 2016 NXP
|
2017-04-21 10:43:26 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-05-15 09:49:22 +00:00
|
|
|
#ifndef _DPAA2_HW_DPIO_H_
|
|
|
|
#define _DPAA2_HW_DPIO_H_
|
2017-04-21 10:43:26 +00:00
|
|
|
|
2018-05-15 09:49:22 +00:00
|
|
|
#include <mc/fsl_dpio.h>
|
|
|
|
#include <mc/fsl_mc_sys.h>
|
2017-04-21 10:43:26 +00:00
|
|
|
|
2018-05-15 09:49:22 +00:00
|
|
|
struct dpaa2_io_portal_t {
|
|
|
|
struct dpaa2_dpio_dev *dpio_dev;
|
2019-06-25 11:12:58 +00:00
|
|
|
struct dpaa2_dpio_dev *ethrx_dpio_dev;
|
2018-05-15 09:49:22 +00:00
|
|
|
uint64_t net_tid;
|
|
|
|
uint64_t sec_tid;
|
|
|
|
void *eventdev;
|
2017-04-21 10:43:26 +00:00
|
|
|
};
|
|
|
|
|
2018-05-15 09:49:22 +00:00
|
|
|
/*! Global per thread DPIO portal */
|
|
|
|
RTE_DECLARE_PER_LCORE(struct dpaa2_io_portal_t, _dpaa2_io);
|
|
|
|
|
|
|
|
#define DPAA2_PER_LCORE_DPIO RTE_PER_LCORE(_dpaa2_io).dpio_dev
|
|
|
|
#define DPAA2_PER_LCORE_PORTAL DPAA2_PER_LCORE_DPIO->sw_portal
|
|
|
|
|
2019-06-25 11:12:58 +00:00
|
|
|
#define DPAA2_PER_LCORE_ETHRX_DPIO RTE_PER_LCORE(_dpaa2_io).ethrx_dpio_dev
|
|
|
|
#define DPAA2_PER_LCORE_ETHRX_PORTAL DPAA2_PER_LCORE_ETHRX_DPIO->sw_portal
|
|
|
|
|
|
|
|
/* Variable to store DPAA2 platform type */
|
|
|
|
extern uint32_t dpaa2_svr_family;
|
|
|
|
/* Variable to store DPAA2 DQRR size */
|
|
|
|
extern uint8_t dpaa2_dqrr_size;
|
|
|
|
/* Variable to store DPAA2 EQCR size */
|
|
|
|
extern uint8_t dpaa2_eqcr_size;
|
2018-05-15 09:49:22 +00:00
|
|
|
|
|
|
|
extern struct dpaa2_io_portal_t dpaa2_io_portal[RTE_MAX_LCORE];
|
2017-04-21 10:43:26 +00:00
|
|
|
|
2018-05-15 09:49:22 +00:00
|
|
|
struct dpaa2_dpio_dev *dpaa2_get_qbman_swp(int cpu_id);
|
2017-04-21 10:43:26 +00:00
|
|
|
|
2018-05-15 09:49:22 +00:00
|
|
|
/* Affine a DPIO portal to current processing thread */
|
|
|
|
int dpaa2_affine_qbman_swp(void);
|
2017-04-21 10:43:26 +00:00
|
|
|
|
2018-05-15 09:49:22 +00:00
|
|
|
/* Affine additional DPIO portal to current crypto processing thread */
|
2019-06-25 11:12:58 +00:00
|
|
|
int dpaa2_affine_qbman_ethrx_swp(void);
|
2017-04-21 10:43:26 +00:00
|
|
|
|
2018-05-15 09:49:22 +00:00
|
|
|
/* allocate memory for FQ - dq storage */
|
|
|
|
int
|
|
|
|
dpaa2_alloc_dq_storage(struct queue_storage_info_t *q_storage);
|
2017-04-21 10:43:26 +00:00
|
|
|
|
2018-05-15 09:49:22 +00:00
|
|
|
/* free memory for FQ- dq storage */
|
|
|
|
void
|
|
|
|
dpaa2_free_dq_storage(struct queue_storage_info_t *q_storage);
|
2017-04-21 10:43:26 +00:00
|
|
|
|
2018-05-15 09:49:22 +00:00
|
|
|
#endif /* _DPAA2_HW_DPIO_H_ */
|