qcacmn: add HAL APIs to configure FSE in CMEM

Adding HAL APIs for adding and reading flow search entries(FSEs)
in CMEM.

Change-Id: If8282c8be38a85e2344bb55ffa4e63a7577daa20
CRs-Fixed: 2771198
这个提交包含在:
Manikanta Pubbisetty
2020-09-04 18:43:22 +05:30
提交者 snandini
父节点 1a4e3a96c7
当前提交 3433cf4974
修改 4 个文件,包含 323 行新增53 行删除

查看文件

@@ -612,6 +612,14 @@ struct hal_hw_txrx_ops {
uint32_t num_rings,
uint32_t *remap1,
uint32_t *remap2);
uint32_t (*hal_rx_flow_setup_cmem_fse)(
struct hal_soc *soc, uint32_t cmem_ba,
uint32_t table_offset, uint8_t *rx_flow);
uint32_t (*hal_rx_flow_get_cmem_fse_ts)(struct hal_soc *soc,
uint32_t fse_offset);
void (*hal_rx_flow_get_cmem_fse)(struct hal_soc *soc,
uint32_t fse_offset,
uint32_t *fse, qdf_size_t len);
};
/**