|
@@ -1189,9 +1189,95 @@ dp_srng_mem_alloc(struct dp_soc *soc, struct dp_srng *srng, uint32_t align,
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
+#ifdef WLAN_DP_PER_RING_TYPE_CONFIG
|
|
|
+/**
|
|
|
+ * dp_srng_configure_interrupt_thresholds() - Retrieve interrupt
|
|
|
+ * threshold values from the wlan_srng_cfg table for each ring type
|
|
|
+ * @soc: device handle
|
|
|
+ * @ring_params: per ring specific parameters
|
|
|
+ * @ring_type: Ring type
|
|
|
+ * @ring_num: Ring number for a given ring type
|
|
|
+ *
|
|
|
+ * Fill the ring params with the interrupt threshold
|
|
|
+ * configuration parameters available in the per ring type wlan_srng_cfg
|
|
|
+ * table.
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+static void
|
|
|
+dp_srng_configure_interrupt_thresholds(struct dp_soc *soc,
|
|
|
+ struct hal_srng_params *ring_params,
|
|
|
+ int ring_type, int ring_num,
|
|
|
+ int num_entries)
|
|
|
+{
|
|
|
+ if (ring_type == WBM2SW_RELEASE && (ring_num == 3)) {
|
|
|
+ ring_params->intr_timer_thres_us =
|
|
|
+ wlan_cfg_get_int_timer_threshold_other(soc->wlan_cfg_ctx);
|
|
|
+ ring_params->intr_batch_cntr_thres_entries =
|
|
|
+ wlan_cfg_get_int_batch_threshold_other(soc->wlan_cfg_ctx);
|
|
|
+ } else {
|
|
|
+ ring_params->intr_timer_thres_us =
|
|
|
+ soc->wlan_srng_cfg[ring_type].timer_threshold;
|
|
|
+ ring_params->intr_batch_cntr_thres_entries =
|
|
|
+ soc->wlan_srng_cfg[ring_type].batch_count_threshold;
|
|
|
+ }
|
|
|
+ ring_params->low_threshold =
|
|
|
+ soc->wlan_srng_cfg[ring_type].low_threshold;
|
|
|
|
|
|
-/*
|
|
|
- * dp_setup_srng - Internal function to setup SRNG rings used by data path
|
|
|
+ if (ring_params->low_threshold)
|
|
|
+ ring_params->flags |= HAL_SRNG_LOW_THRES_INTR_ENABLE;
|
|
|
+}
|
|
|
+#else
|
|
|
+static void
|
|
|
+dp_srng_configure_interrupt_thresholds(struct dp_soc *soc,
|
|
|
+ struct hal_srng_params *ring_params,
|
|
|
+ int ring_type, int ring_num,
|
|
|
+ int num_entries)
|
|
|
+{
|
|
|
+ if (ring_type == REO_DST) {
|
|
|
+ ring_params->intr_timer_thres_us =
|
|
|
+ wlan_cfg_get_int_timer_threshold_rx(soc->wlan_cfg_ctx);
|
|
|
+ ring_params->intr_batch_cntr_thres_entries =
|
|
|
+ wlan_cfg_get_int_batch_threshold_rx(soc->wlan_cfg_ctx);
|
|
|
+ } else if (ring_type == WBM2SW_RELEASE && (ring_num < 3)) {
|
|
|
+ ring_params->intr_timer_thres_us =
|
|
|
+ wlan_cfg_get_int_timer_threshold_tx(soc->wlan_cfg_ctx);
|
|
|
+ ring_params->intr_batch_cntr_thres_entries =
|
|
|
+ wlan_cfg_get_int_batch_threshold_tx(soc->wlan_cfg_ctx);
|
|
|
+ } else {
|
|
|
+ ring_params->intr_timer_thres_us =
|
|
|
+ wlan_cfg_get_int_timer_threshold_other(soc->wlan_cfg_ctx);
|
|
|
+ ring_params->intr_batch_cntr_thres_entries =
|
|
|
+ wlan_cfg_get_int_batch_threshold_other(soc->wlan_cfg_ctx);
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Enable low threshold interrupts for rx buffer rings (regular and
|
|
|
+ * monitor buffer rings.
|
|
|
+ * TODO: See if this is required for any other ring
|
|
|
+ */
|
|
|
+ if ((ring_type == RXDMA_BUF) || (ring_type == RXDMA_MONITOR_BUF) ||
|
|
|
+ (ring_type == RXDMA_MONITOR_STATUS)) {
|
|
|
+ /* TODO: Setting low threshold to 1/8th of ring size
|
|
|
+ * see if this needs to be configurable
|
|
|
+ */
|
|
|
+ ring_params->low_threshold = num_entries >> 3;
|
|
|
+ ring_params->intr_timer_thres_us =
|
|
|
+ wlan_cfg_get_int_timer_threshold_rx(soc->wlan_cfg_ctx);
|
|
|
+ ring_params->flags |= HAL_SRNG_LOW_THRES_INTR_ENABLE;
|
|
|
+ ring_params->intr_batch_cntr_thres_entries = 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_srng_setup() - Internal function to setup SRNG rings used by data path
|
|
|
+ * @soc: datapath soc handle
|
|
|
+ * @srng: srng handle
|
|
|
+ * @ring_type: ring that needs to be configured
|
|
|
+ * @mac_id: mac number
|
|
|
+ * @num_entries: Total number of entries for a given ring
|
|
|
+ *
|
|
|
+ * Return: non-zero - failure/zero - success
|
|
|
*/
|
|
|
static int dp_srng_setup(struct dp_soc *soc, struct dp_srng *srng,
|
|
|
int ring_type, int ring_num, int mac_id,
|
|
@@ -1254,42 +1340,9 @@ static int dp_srng_setup(struct dp_soc *soc, struct dp_srng *srng,
|
|
|
ring_type, ring_num);
|
|
|
}
|
|
|
|
|
|
- /*
|
|
|
- * Setup interrupt timer and batch counter thresholds for
|
|
|
- * interrupt mitigation based on ring type
|
|
|
- */
|
|
|
- if (ring_type == REO_DST) {
|
|
|
- ring_params.intr_timer_thres_us =
|
|
|
- wlan_cfg_get_int_timer_threshold_rx(soc->wlan_cfg_ctx);
|
|
|
- ring_params.intr_batch_cntr_thres_entries =
|
|
|
- wlan_cfg_get_int_batch_threshold_rx(soc->wlan_cfg_ctx);
|
|
|
- } else if (ring_type == WBM2SW_RELEASE && (ring_num < 3)) {
|
|
|
- ring_params.intr_timer_thres_us =
|
|
|
- wlan_cfg_get_int_timer_threshold_tx(soc->wlan_cfg_ctx);
|
|
|
- ring_params.intr_batch_cntr_thres_entries =
|
|
|
- wlan_cfg_get_int_batch_threshold_tx(soc->wlan_cfg_ctx);
|
|
|
- } else {
|
|
|
- ring_params.intr_timer_thres_us =
|
|
|
- wlan_cfg_get_int_timer_threshold_other(soc->wlan_cfg_ctx);
|
|
|
- ring_params.intr_batch_cntr_thres_entries =
|
|
|
- wlan_cfg_get_int_batch_threshold_other(soc->wlan_cfg_ctx);
|
|
|
- }
|
|
|
-
|
|
|
- /* Enable low threshold interrupts for rx buffer rings (regular and
|
|
|
- * monitor buffer rings.
|
|
|
- * TODO: See if this is required for any other ring
|
|
|
- */
|
|
|
- if ((ring_type == RXDMA_BUF) || (ring_type == RXDMA_MONITOR_BUF) ||
|
|
|
- (ring_type == RXDMA_MONITOR_STATUS)) {
|
|
|
- /* TODO: Setting low threshold to 1/8th of ring size
|
|
|
- * see if this needs to be configurable
|
|
|
- */
|
|
|
- ring_params.low_threshold = num_entries >> 3;
|
|
|
- ring_params.flags |= HAL_SRNG_LOW_THRES_INTR_ENABLE;
|
|
|
- ring_params.intr_timer_thres_us =
|
|
|
- wlan_cfg_get_int_timer_threshold_rx(soc->wlan_cfg_ctx);
|
|
|
- ring_params.intr_batch_cntr_thres_entries = 0;
|
|
|
- }
|
|
|
+ dp_srng_configure_interrupt_thresholds(soc, &ring_params,
|
|
|
+ ring_type, ring_num,
|
|
|
+ num_entries);
|
|
|
|
|
|
if (cached) {
|
|
|
ring_params.flags |= HAL_SRNG_CACHED_DESC;
|
|
@@ -9407,6 +9460,8 @@ dp_soc_attach(void *ctrl_psoc, HTC_HANDLE htc_handle, qdf_device_t qdf_osdev,
|
|
|
soc->osdev = qdf_osdev;
|
|
|
soc->num_hw_dscp_tid_map = HAL_MAX_HW_DSCP_TID_MAPS;
|
|
|
|
|
|
+ wlan_set_srng_cfg(&soc->wlan_srng_cfg);
|
|
|
+
|
|
|
soc->wlan_cfg_ctx = wlan_cfg_soc_attach(soc->ctrl_psoc);
|
|
|
if (!soc->wlan_cfg_ctx) {
|
|
|
dp_err("wlan_cfg_ctx failed\n");
|