qcacmn: Add API to change Rx Fragment DST ring

Add API to change the Rx Fragment DST ring based on the SoC NSS
config
CRs-Fixed: 2175933

Change-Id: I2e3f0b82d301538f54d9790d55eeccdd0f6fa154
This commit is contained in:
Aniruddha Paul
2018-01-08 11:24:34 +05:30
committed by snandini
parent 6c40b760d5
commit 91dfd50160
4 changed files with 52 additions and 6 deletions

View File

@@ -1003,12 +1003,16 @@ extern void hal_setup_link_idle_list(void *hal_soc,
/* REO parameters to be passed to hal_reo_setup */
struct hal_reo_params {
/* rx hash steering enabled or disabled */
/** rx hash steering enabled or disabled */
bool rx_hash_enabled;
/* reo remap 1 register */
/** reo remap 1 register */
uint32_t remap1;
/* reo remap 2 register */
/** reo remap 2 register */
uint32_t remap2;
/** fragment destination ring */
uint8_t frag_dst_ring;
/** padding */
uint8_t padding[3];
};
/**