numam-dpdk/drivers/baseband/acc/rte_acc_common_cfg.h
Nicolas Chautru c1407bfa05 baseband/acc200: add PF configuration
Added configure function notably to configure the device from
the PF within DPDK and bbdev-test (without external dependency).
That function is kept common to all ACC devices.

Signed-off-by: Nicolas Chautru <nicolas.chautru@intel.com>
Acked-by: Hernan Vargas <hernan.vargas@intel.com>
2022-10-29 13:01:39 +02:00

102 lines
2.9 KiB
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2022 Intel Corporation
*/
#ifndef _RTE_ACC_COMMON_CFG_H_
#define _RTE_ACC_COMMON_CFG_H_
/**
* @file rte_acc_common_cfg.h
*
* Functions for configuring ACC HW, exposed directly to applications.
* Configuration related to encoding/decoding is done through the
* librte_bbdev library.
*
* @warning
* @b EXPERIMENTAL: this API may change without prior notice
*/
#include <stdint.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
/**< Maximum number of Virtual Functions ACC may support */
#define RTE_ACC_NUM_VFS 64
/**
* Definition of Queue Topology for ACC Configuration
* Some level of details is abstracted out to expose a clean interface
* given that comprehensive flexibility is not required
*/
struct rte_acc_queue_topology {
/** Number of QGroups in incremental order of priority */
uint16_t num_qgroups;
/**
* All QGroups have the same number of AQs here.
* Note : Could be made a 16-array if more flexibility is really
* required
*/
uint16_t num_aqs_per_groups;
/**
* Depth of the AQs is the same of all QGroups here. Log2 Enum : 2^N
* Note : Could be made a 16-array if more flexibility is really
* required
*/
uint16_t aq_depth_log2;
/**
* Index of the first Queue Group Index - assuming contiguity
* Initialized as -1
*/
int8_t first_qgroup_index;
};
/**
* Definition of Arbitration related parameters for ACC Configuration
*/
struct rte_acc_arbitration {
/** Default Weight for VF Fairness Arbitration */
uint16_t round_robin_weight;
uint32_t gbr_threshold1; /**< Guaranteed Bitrate Threshold 1 */
uint32_t gbr_threshold2; /**< Guaranteed Bitrate Threshold 2 */
};
/**
* Structure to pass ACC configuration.
* Note: all VF Bundles will have the same configuration.
*/
struct rte_acc_conf {
bool pf_mode_en; /**< 1 if PF is used for dataplane, 0 for VFs */
/** 1 if input '1' bit is represented by a positive LLR value, 0 if '1'
* bit is represented by a negative value.
*/
bool input_pos_llr_1_bit;
/** 1 if output '1' bit is represented by a positive value, 0 if '1'
* bit is represented by a negative value.
*/
bool output_pos_llr_1_bit;
uint16_t num_vf_bundles; /**< Number of VF bundles to setup */
/** Queue topology for each operation type */
struct rte_acc_queue_topology q_ul_4g;
struct rte_acc_queue_topology q_dl_4g;
struct rte_acc_queue_topology q_ul_5g;
struct rte_acc_queue_topology q_dl_5g;
struct rte_acc_queue_topology q_fft;
struct rte_acc_queue_topology q_mld;
/** Arbitration configuration for each operation type */
struct rte_acc_arbitration arb_ul_4g[RTE_ACC_NUM_VFS];
struct rte_acc_arbitration arb_dl_4g[RTE_ACC_NUM_VFS];
struct rte_acc_arbitration arb_ul_5g[RTE_ACC_NUM_VFS];
struct rte_acc_arbitration arb_dl_5g[RTE_ACC_NUM_VFS];
struct rte_acc_arbitration arb_fft[RTE_ACC_NUM_VFS];
struct rte_acc_arbitration arb_mld[RTE_ACC_NUM_VFS];
};
#ifdef __cplusplus
}
#endif
#endif /* _RTE_ACC_COMMON_CFG_H_ */