|
@@ -0,0 +1,1441 @@
|
|
|
+/*
|
|
|
+ * Copyright (c) 2016 The Linux Foundation. All rights reserved.
|
|
|
+ *
|
|
|
+ * Permission to use, copy, modify, and/or distribute this software for
|
|
|
+ * any purpose with or without fee is hereby granted, provided that the
|
|
|
+ * above copyright notice and this permission notice appear in all
|
|
|
+ * copies.
|
|
|
+ *
|
|
|
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
|
|
+ * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
|
|
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
|
|
|
+ * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
|
+ * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
+ * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
+ * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
+ * PERFORMANCE OF THIS SOFTWARE.
|
|
|
+ */
|
|
|
+
|
|
|
+#include "htt.h"
|
|
|
+#include "dp_tx.h"
|
|
|
+#include "dp_tx_desc.h"
|
|
|
+#include "dp_types.h"
|
|
|
+#include "hal_tx.h"
|
|
|
+#include "qdf_mem.h"
|
|
|
+#include "qdf_nbuf.h"
|
|
|
+#include "wlan_cfg.h"
|
|
|
+
|
|
|
+#ifdef TX_CORE_ALIGNED_SEND
|
|
|
+#define DP_TX_GET_DESC_POOL_ID(vdev) qdf_get_cpu()
|
|
|
+#define DP_TX_GET_RING_ID(vdev) qdf_get_cpu()
|
|
|
+#else
|
|
|
+#define DP_TX_GET_DESC_POOL_ID(vdev) (vdev->vdev_id)
|
|
|
+#define DP_TX_GET_RING_ID(vdev) (vdev->pdev->pdev_id)
|
|
|
+#endif /* TX_CORE_ALIGNED_SEND */
|
|
|
+
|
|
|
+/* TODO Add support in TSO */
|
|
|
+#define DP_DESC_NUM_FRAG(x) 0
|
|
|
+
|
|
|
+/*
|
|
|
+ * default_dscp_tid_map - Default DSCP-TID mapping
|
|
|
+ *
|
|
|
+ * DSCP TID AC
|
|
|
+ * 000000 0 WME_AC_BE
|
|
|
+ * 001000 1 WME_AC_BK
|
|
|
+ * 010000 1 WME_AC_BK
|
|
|
+ * 011000 0 WME_AC_BE
|
|
|
+ * 100000 5 WME_AC_VI
|
|
|
+ * 101000 5 WME_AC_VI
|
|
|
+ * 110000 6 WME_AC_VO
|
|
|
+ * 111000 6 WME_AC_VO
|
|
|
+ */
|
|
|
+static uint8_t default_dscp_tid_map[64] = {
|
|
|
+ 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
+ 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
+ 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
+ 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
+ 5, 5, 5, 5, 5, 5, 5, 5,
|
|
|
+ 5, 5, 5, 5, 5, 5, 5, 5,
|
|
|
+ 6, 6, 6, 6, 6, 6, 6, 6,
|
|
|
+ 6, 6, 6, 6, 6, 6, 6, 6,
|
|
|
+};
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_get_queue() - Returns Tx queue IDs to be used for this Tx frame
|
|
|
+ * @vdev: DP Virtual device handle
|
|
|
+ * @nbuf: Buffer pointer
|
|
|
+ * @queue: queue ids container for nbuf
|
|
|
+ *
|
|
|
+ * TX packet queue has 2 instances, software descriptors id and dma ring id
|
|
|
+ * Based on tx feature and hardware configuration queue id combination could be
|
|
|
+ * different.
|
|
|
+ * For example -
|
|
|
+ * With XPS enabled,all TX descriptor pools and dma ring are assigned per cpu id
|
|
|
+ * With no XPS,lock based resource protection, Descriptor pool ids are different
|
|
|
+ * for each vdev, dma ring id will be same as single pdev id
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+static inline void dp_tx_get_queue(struct dp_vdev *vdev,
|
|
|
+ qdf_nbuf_t nbuf, struct dp_tx_queue *queue)
|
|
|
+{
|
|
|
+ queue->desc_pool_id = DP_TX_GET_DESC_POOL_ID(vdev);
|
|
|
+ queue->ring_id = DP_TX_GET_RING_ID(vdev);
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s, pool_id:%d ring_id: %d\n",
|
|
|
+ __func__, queue->desc_pool_id, queue->ring_id);
|
|
|
+
|
|
|
+ return;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_desc_release() - Release Tx Descriptor
|
|
|
+ * @vdev: DP vdev handle
|
|
|
+ * @tx_desc : Tx Descriptor
|
|
|
+ * @desc_pool_id: Descriptor Pool ID
|
|
|
+ *
|
|
|
+ * Deallocate all resources attached to Tx descriptor and free the Tx
|
|
|
+ * descriptor.
|
|
|
+ *
|
|
|
+ * Return:
|
|
|
+ */
|
|
|
+void dp_tx_desc_release(struct dp_vdev *vdev, struct dp_tx_desc_s *tx_desc,
|
|
|
+ uint8_t desc_pool_id)
|
|
|
+{
|
|
|
+ struct dp_pdev *pdev = vdev->pdev;
|
|
|
+ struct dp_soc *soc = pdev->soc;
|
|
|
+
|
|
|
+ if (tx_desc->flags & DP_TX_DESC_FLAG_FRAG)
|
|
|
+ dp_tx_ext_desc_free(soc, tx_desc->msdu_ext_desc, desc_pool_id);
|
|
|
+
|
|
|
+ vdev->num_tx_outstanding--;
|
|
|
+ pdev->num_tx_outstanding--;
|
|
|
+
|
|
|
+ if (tx_desc->flags & DP_TX_DESC_FLAG_TO_FW)
|
|
|
+ pdev->num_tx_exception--;
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "Tx Completion Release desc %d\n", tx_desc->id);
|
|
|
+
|
|
|
+ dp_tx_desc_free(soc, tx_desc, desc_pool_id);
|
|
|
+ return;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_htt_metadata_prepare() - Prepare HTT metadata for special frames
|
|
|
+ * @vdev: DP vdev Handle
|
|
|
+ * @nbuf: skb
|
|
|
+ * @align_pad: Alignment Pad bytes to be added in frame header before adding HTT
|
|
|
+ * metadata
|
|
|
+ *
|
|
|
+ * Prepares and fills HTT metadata in the frame pre-header for special frames
|
|
|
+ * that should be transmitted using varying transmit parameters.
|
|
|
+ * There are 2 VDEV modes that currently needs this special metadata -
|
|
|
+ * 1) Mesh Mode
|
|
|
+ * 2) DSRC Mode
|
|
|
+ *
|
|
|
+ * Return: HTT metadata size
|
|
|
+ *
|
|
|
+ */
|
|
|
+uint8_t dp_tx_prepare_htt_metadata(struct dp_vdev *vdev, qdf_nbuf_t nbuf,
|
|
|
+ uint8_t align_pad)
|
|
|
+{
|
|
|
+ uint8_t htt_desc_size = 0;
|
|
|
+ struct htt_tx_msdu_desc_ext2_t desc_ext;
|
|
|
+ uint8_t *hdr;
|
|
|
+ uint8_t ratecode;
|
|
|
+ uint8_t noqos;
|
|
|
+ struct meta_hdr_s *mhdr;
|
|
|
+
|
|
|
+ qdf_nbuf_unshare(nbuf);
|
|
|
+
|
|
|
+ HTT_TX_TCL_METADATA_VALID_HTT_SET(vdev->htt_tcl_metadata, 1);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Metadata - HTT MSDU Extension header
|
|
|
+ */
|
|
|
+ htt_desc_size = sizeof(struct htt_tx_msdu_desc_ext2_t);
|
|
|
+ memset(&desc_ext, 0, htt_desc_size);
|
|
|
+
|
|
|
+ if (vdev->mesh_vdev) {
|
|
|
+ /* Extract the mesh metaheader */
|
|
|
+ mhdr = (struct meta_hdr_s *)qdf_nbuf_data(nbuf);
|
|
|
+ qdf_nbuf_pull_head(nbuf, sizeof(struct meta_hdr_s));
|
|
|
+
|
|
|
+ /*use auto rate*/
|
|
|
+ if (!(mhdr->flags & METAHDR_FLAG_AUTO_RATE)) {
|
|
|
+ ratecode = mhdr->rates[0];
|
|
|
+ /* TODO - check the conversion logic here */
|
|
|
+ desc_ext.mcs_mask = (1 << (ratecode + 4));
|
|
|
+ desc_ext.valid_mcs_mask = 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Fill and add HTT metaheader */
|
|
|
+ hdr = qdf_nbuf_push_head(nbuf, htt_desc_size + align_pad);
|
|
|
+
|
|
|
+ desc_ext.power = mhdr->power;
|
|
|
+ desc_ext.retry_limit = mhdr->max_tries[0];
|
|
|
+ desc_ext.key_flags = mhdr->keyix & 0x3;
|
|
|
+
|
|
|
+ if (mhdr->flags & METAHDR_FLAG_NOENCRYPT) {
|
|
|
+ desc_ext.encrypt_type = 0;
|
|
|
+ desc_ext.valid_encrypt_type = 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ desc_ext.valid_pwr = 1;
|
|
|
+ desc_ext.valid_mcs_mask = 1;
|
|
|
+ desc_ext.valid_key_flags = 1;
|
|
|
+ desc_ext.valid_retries = 1;
|
|
|
+
|
|
|
+ if (mhdr->flags & METAHDR_FLAG_NOQOS) {
|
|
|
+ noqos = 1;
|
|
|
+ /*
|
|
|
+ * TODO - send this TID info to hw_enqueue function
|
|
|
+ * tid = HTT_NON_QOS_TID;
|
|
|
+ */
|
|
|
+ }
|
|
|
+
|
|
|
+ qdf_mem_copy(hdr, &desc_ext, htt_desc_size);
|
|
|
+
|
|
|
+ } else if (vdev->opmode == wlan_op_mode_ocb) {
|
|
|
+ /* Todo - Add support for DSRC */
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ return htt_desc_size;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_prepare_ext_desc() - Allocate and prepare MSDU extension descriptor
|
|
|
+ * @vdev: DP Vdev handle
|
|
|
+ * @msdu_info: MSDU info to be setup in MSDU extension descriptor
|
|
|
+ * @desc_pool_id: Descriptor Pool ID
|
|
|
+ *
|
|
|
+ * Return:
|
|
|
+ */
|
|
|
+struct dp_tx_ext_desc_elem_s *dp_tx_prepare_ext_desc(struct dp_vdev *vdev,
|
|
|
+ struct dp_tx_msdu_info_s *msdu_info, uint8_t desc_pool_id)
|
|
|
+{
|
|
|
+ uint8_t i;
|
|
|
+ uint8_t cached_ext_desc[HAL_TX_EXTENSION_DESC_LEN_BYTES];
|
|
|
+ struct dp_tx_seg_info_s *seg_info;
|
|
|
+ struct dp_tx_ext_desc_elem_s *msdu_ext_desc;
|
|
|
+ struct dp_soc *soc = vdev->pdev->soc;
|
|
|
+
|
|
|
+ /* Allocate an extension descriptor */
|
|
|
+ msdu_ext_desc = dp_tx_ext_desc_alloc(soc, desc_pool_id);
|
|
|
+ if (!msdu_ext_desc)
|
|
|
+ return NULL;
|
|
|
+
|
|
|
+ switch (msdu_info->frm_type) {
|
|
|
+ case dp_tx_frm_sg:
|
|
|
+ case dp_tx_frm_me:
|
|
|
+ case dp_tx_frm_raw:
|
|
|
+ seg_info = msdu_info->u.sg_info.curr_seg;
|
|
|
+ /* Update the buffer pointers in MSDU Extension Descriptor */
|
|
|
+ for (i = 0; i < seg_info->frag_cnt; i++) {
|
|
|
+ hal_tx_ext_desc_set_buffer(&cached_ext_desc[0], i,
|
|
|
+ seg_info->frags[i].paddr_lo,
|
|
|
+ seg_info->frags[i].paddr_hi,
|
|
|
+ seg_info->frags[i].len);
|
|
|
+ }
|
|
|
+
|
|
|
+ hal_tx_ext_desc_sync(&cached_ext_desc[0],
|
|
|
+ msdu_ext_desc->vaddr);
|
|
|
+ break;
|
|
|
+
|
|
|
+ case dp_tx_frm_tso:
|
|
|
+ /* Todo add support for TSO */
|
|
|
+ break;
|
|
|
+
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ return msdu_ext_desc;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_desc_prepare_single - Allocate and prepare Tx descriptor
|
|
|
+ * @vdev: DP vdev handle
|
|
|
+ * @nbuf: skb
|
|
|
+ * @desc_pool_id: Descriptor pool ID
|
|
|
+ * Allocate and prepare Tx descriptor with msdu information.
|
|
|
+ *
|
|
|
+ * Return: Pointer to Tx Descriptor on success,
|
|
|
+ * NULL on failure
|
|
|
+ */
|
|
|
+struct dp_tx_desc_s *dp_tx_prepare_desc_single(struct dp_vdev *vdev,
|
|
|
+ qdf_nbuf_t nbuf, uint8_t desc_pool_id)
|
|
|
+{
|
|
|
+ QDF_STATUS status;
|
|
|
+ uint8_t align_pad;
|
|
|
+ uint8_t htt_hdr_size;
|
|
|
+ struct ether_header *eh;
|
|
|
+ struct dp_tx_desc_s *tx_desc;
|
|
|
+ struct dp_pdev *pdev = vdev->pdev;
|
|
|
+ struct dp_soc *soc = pdev->soc;
|
|
|
+
|
|
|
+ /* Flow control/Congestion Control processing */
|
|
|
+ status = dp_tx_flow_control(vdev);
|
|
|
+ if (QDF_STATUS_E_RESOURCES == status) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s Tx Resource Full\n", __func__);
|
|
|
+ /* TODO Stop Tx Queues */
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Allocate software Tx descriptor */
|
|
|
+ tx_desc = dp_tx_desc_alloc(soc, desc_pool_id);
|
|
|
+
|
|
|
+ if (qdf_unlikely(!tx_desc)) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "%s Tx Desc Alloc Failed\n", __func__);
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Flow control/Congestion Control counters */
|
|
|
+ vdev->num_tx_outstanding++;
|
|
|
+ pdev->num_tx_outstanding++;
|
|
|
+
|
|
|
+ /* Initialize the SW tx descriptor */
|
|
|
+ tx_desc->nbuf = nbuf;
|
|
|
+ tx_desc->frm_type = dp_tx_frm_std;
|
|
|
+ tx_desc->tx_encap_type = vdev->tx_encap_type;
|
|
|
+ tx_desc->vdev = vdev;
|
|
|
+ tx_desc->flags = 0;
|
|
|
+ tx_desc->msdu_ext_desc = NULL;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * For non-scatter regular frames, buffer pointer is directly
|
|
|
+ * programmed in TCL input descriptor instead of using an MSDU extension
|
|
|
+ * descriptor.For the direct buffer pointer case, HW requirement is that
|
|
|
+ * descriptor should always point to a 8-byte aligned address.
|
|
|
+ */
|
|
|
+ align_pad = ((uint32_t) (qdf_nbuf_data(nbuf)) & 0x7);
|
|
|
+ tx_desc->pkt_offset = align_pad;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * For special modes (vdev_type == ocb or mesh), data frames should be
|
|
|
+ * transmitted using varying transmit parameters (tx spec) which include
|
|
|
+ * transmit rate, power, priority, channel, channel bandwidth , nss etc.
|
|
|
+ * These are filled in HTT MSDU descriptor and sent in frame pre-header.
|
|
|
+ * These frames are sent as exception packets to firmware.
|
|
|
+ */
|
|
|
+ if (qdf_unlikely(vdev->mesh_vdev || (vdev->opmode == wlan_op_mode_ocb))) {
|
|
|
+ htt_hdr_size = dp_tx_prepare_htt_metadata(vdev, nbuf,
|
|
|
+ align_pad);
|
|
|
+ tx_desc->pkt_offset += htt_hdr_size;
|
|
|
+ tx_desc->flags |= DP_TX_DESC_FLAG_TO_FW;
|
|
|
+ pdev->num_tx_exception++;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (qdf_unlikely(vdev->nawds_enabled)) {
|
|
|
+ eh = (struct ether_header *) qdf_nbuf_data(nbuf);
|
|
|
+ if (DP_FRAME_IS_MULTICAST((eh)->ether_dhost)) {
|
|
|
+ tx_desc->flags |= DP_TX_DESC_FLAG_TO_FW;
|
|
|
+ pdev->num_tx_exception++;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (qdf_nbuf_map_nbytes_single(soc->osdev, nbuf,
|
|
|
+ QDF_DMA_TO_DEVICE, qdf_nbuf_len(nbuf)
|
|
|
+ != QDF_STATUS_SUCCESS)) {
|
|
|
+ /* Handle failure */
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "qdf_nbuf_map_nbytes_single failed\n");
|
|
|
+ goto failure;
|
|
|
+ }
|
|
|
+
|
|
|
+ return tx_desc;
|
|
|
+
|
|
|
+failure:
|
|
|
+ dp_tx_desc_release(vdev, tx_desc, desc_pool_id);
|
|
|
+ return NULL;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_desc_prepare- Allocate and prepare Tx descriptor for multisegment frame
|
|
|
+ * @vdev: DP vdev handle
|
|
|
+ * @nbuf: skb
|
|
|
+ * @msdu_info: Info to be setup in MSDU descriptor and MSDU extension descriptor
|
|
|
+ * @desc_pool_id : Descriptor Pool ID
|
|
|
+ *
|
|
|
+ * Allocate and prepare Tx descriptor with msdu and fragment descritor
|
|
|
+ * information. For frames wth fragments, allocate and prepare
|
|
|
+ * an MSDU extension descriptor
|
|
|
+ *
|
|
|
+ * Return: Pointer to Tx Descriptor on success,
|
|
|
+ * NULL on failure
|
|
|
+ */
|
|
|
+struct dp_tx_desc_s *dp_tx_prepare_desc(struct dp_vdev *vdev,
|
|
|
+ qdf_nbuf_t nbuf, struct dp_tx_msdu_info_s *msdu_info,
|
|
|
+ uint8_t desc_pool_id)
|
|
|
+{
|
|
|
+ struct dp_tx_desc_s *tx_desc;
|
|
|
+ QDF_STATUS status;
|
|
|
+ struct dp_tx_ext_desc_elem_s *msdu_ext_desc;
|
|
|
+ struct dp_pdev *pdev = vdev->pdev;
|
|
|
+ struct dp_soc *soc = pdev->soc;
|
|
|
+
|
|
|
+ /* Flow control/Congestion Control processing */
|
|
|
+ status = dp_tx_flow_control(vdev);
|
|
|
+ if (QDF_STATUS_E_RESOURCES == status) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s Tx Resource Full\n", __func__);
|
|
|
+ /* TODO Stop Tx Queues */
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Allocate software Tx descriptor */
|
|
|
+ tx_desc = dp_tx_desc_alloc(soc, desc_pool_id);
|
|
|
+ if (!tx_desc)
|
|
|
+ return NULL;
|
|
|
+
|
|
|
+ tx_desc->flags |= DP_TX_DESC_FLAG_ALLOCATED;
|
|
|
+
|
|
|
+ /* Flow control/Congestion Control counters */
|
|
|
+ vdev->num_tx_outstanding++;
|
|
|
+ pdev->num_tx_outstanding++;
|
|
|
+
|
|
|
+ /* Initialize the SW tx descriptor */
|
|
|
+ tx_desc->nbuf = nbuf;
|
|
|
+ tx_desc->frm_type = msdu_info->frm_type;
|
|
|
+ tx_desc->tx_encap_type = vdev->tx_encap_type;
|
|
|
+ tx_desc->vdev = vdev;
|
|
|
+ tx_desc->pkt_offset = 0;
|
|
|
+
|
|
|
+ /* Handle scattered frames - TSO/SG/ME */
|
|
|
+ /* Allocate and prepare an extension descriptor for scattered frames */
|
|
|
+ msdu_ext_desc = dp_tx_prepare_ext_desc(vdev, msdu_info, desc_pool_id);
|
|
|
+ if (!msdu_ext_desc) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s Tx Extension Descriptor Alloc Fail\n",
|
|
|
+ __func__);
|
|
|
+ goto failure;
|
|
|
+ }
|
|
|
+
|
|
|
+ tx_desc->msdu_ext_desc = msdu_ext_desc;
|
|
|
+ tx_desc->flags |= DP_TX_DESC_FLAG_FRAG;
|
|
|
+
|
|
|
+ return tx_desc;
|
|
|
+failure:
|
|
|
+ dp_tx_desc_release(vdev, tx_desc, desc_pool_id);
|
|
|
+ return NULL;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_prepare_send_raw() - Prepare RAW packet TX
|
|
|
+ * @vdev: DP vdev handle
|
|
|
+ * @nbuf: buffer pointer
|
|
|
+ * @msdu_info: MSDU info to be setup in MSDU descriptor and MSDU extension
|
|
|
+ * descriptor
|
|
|
+ *
|
|
|
+ * Return:
|
|
|
+ */
|
|
|
+qdf_nbuf_t dp_tx_prepare_raw(struct dp_vdev *vdev, qdf_nbuf_t nbuf,
|
|
|
+ struct dp_tx_msdu_info_s *msdu_info)
|
|
|
+{
|
|
|
+ return nbuf;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_hw_enqueue() - Enqueue to TCL HW for transmit
|
|
|
+ * @soc: DP Soc Handle
|
|
|
+ * @vdev: DP vdev handle
|
|
|
+ * @tx_desc: Tx Descriptor Handle
|
|
|
+ * @tid: TID from HLOS for overriding default DSCP-TID mapping
|
|
|
+ * @fw_metadata: Metadata to send to Target Firmware along with frame
|
|
|
+ * @ring_id: Ring ID of H/W ring to which we enqueue the packet
|
|
|
+ *
|
|
|
+ * Gets the next free TCL HW DMA descriptor and sets up required parameters
|
|
|
+ * from software Tx descriptor
|
|
|
+ *
|
|
|
+ * Return:
|
|
|
+ */
|
|
|
+QDF_STATUS dp_tx_hw_enqueue(struct dp_soc *soc, struct dp_vdev *vdev,
|
|
|
+ struct dp_tx_desc_s *tx_desc, uint8_t tid,
|
|
|
+ uint16_t fw_metadata, uint8_t ring_id)
|
|
|
+{
|
|
|
+ uint8_t type;
|
|
|
+ uint16_t length;
|
|
|
+ void *hal_tx_desc, *hal_tx_desc_cached;
|
|
|
+ qdf_dma_addr_t dma_addr;
|
|
|
+ uint8_t cached_desc[HAL_TX_DESC_LEN_BYTES];
|
|
|
+
|
|
|
+ /* Return Buffer Manager ID */
|
|
|
+ uint8_t bm_id = ring_id;
|
|
|
+ void *hal_srng = soc->tcl_data_ring[ring_id].hal_srng;
|
|
|
+
|
|
|
+ hal_tx_desc_cached = (void *) cached_desc;
|
|
|
+ qdf_mem_zero_outline(hal_tx_desc_cached, HAL_TX_DESC_LEN_BYTES);
|
|
|
+
|
|
|
+ if (tx_desc->flags & DP_TX_DESC_FLAG_FRAG) {
|
|
|
+ length = HAL_TX_EXTENSION_DESC_LEN_BYTES;
|
|
|
+ type = HAL_TX_BUF_TYPE_EXT_DESC;
|
|
|
+ dma_addr = tx_desc->msdu_ext_desc->paddr;
|
|
|
+ } else {
|
|
|
+ length = qdf_nbuf_len(tx_desc->nbuf);
|
|
|
+ type = HAL_TX_BUF_TYPE_BUFFER;
|
|
|
+ dma_addr = qdf_nbuf_mapped_paddr_get(tx_desc->nbuf);
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Address given to TCL should always be 8-byte aligned.
|
|
|
+ * Alignment bytes are already accounted in length as pkt_offset
|
|
|
+ */
|
|
|
+ dma_addr -= ((uint32_t) dma_addr & 0x7);
|
|
|
+
|
|
|
+ hal_tx_desc_set_fw_metadata(hal_tx_desc_cached, fw_metadata);
|
|
|
+ hal_tx_desc_set_buf_addr(hal_tx_desc_cached,
|
|
|
+ dma_addr , bm_id, tx_desc->id, type);
|
|
|
+ hal_tx_desc_set_buf_length(hal_tx_desc_cached, length);
|
|
|
+ hal_tx_desc_set_buf_offset(hal_tx_desc_cached, tx_desc->pkt_offset);
|
|
|
+ hal_tx_desc_set_encap_type(hal_tx_desc_cached, tx_desc->tx_encap_type);
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s length:%d , type = %d, dma_addr %p, offset %d\n",
|
|
|
+ __func__, length, type, dma_addr, tx_desc->pkt_offset);
|
|
|
+
|
|
|
+ if (tx_desc->flags & DP_TX_DESC_FLAG_TO_FW)
|
|
|
+ hal_tx_desc_set_to_fw(hal_tx_desc_cached, 1);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * TODO
|
|
|
+ * Fix this , this should be based on vdev opmode (AP or STA)
|
|
|
+ * Enable both AddrX and AddrY flags for now
|
|
|
+ */
|
|
|
+ hal_tx_desc_set_addr_search_flags(hal_tx_desc_cached,
|
|
|
+ HAL_TX_DESC_ADDRX_EN | HAL_TX_DESC_ADDRY_EN);
|
|
|
+
|
|
|
+ if (qdf_nbuf_get_tx_cksum(tx_desc->nbuf) == QDF_NBUF_TX_CKSUM_TCP_UDP)
|
|
|
+ hal_tx_desc_set_l4_checksum_en(hal_tx_desc_cached, 1);
|
|
|
+
|
|
|
+ if (tid != HTT_TX_EXT_TID_INVALID)
|
|
|
+ hal_tx_desc_set_hlos_tid(hal_tx_desc_cached, tid);
|
|
|
+
|
|
|
+ if (tx_desc->flags & DP_TX_DESC_FLAG_MESH)
|
|
|
+ hal_tx_desc_set_mesh_en(hal_tx_desc_cached, 1);
|
|
|
+
|
|
|
+
|
|
|
+ /* Sync cached descriptor with HW */
|
|
|
+ hal_tx_desc = hal_srng_src_get_next(soc->hal_soc, hal_srng);
|
|
|
+
|
|
|
+ if (!hal_tx_desc) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
|
|
|
+ "%s TCL ring full ring_id:%d\n", __func__, ring_id);
|
|
|
+ DP_STATS_ADD(soc, tx.tcl_ring_full[ring_id], 1);
|
|
|
+ hal_srng_access_end(soc->hal_soc,
|
|
|
+ soc->tcl_data_ring[ring_id].hal_srng);
|
|
|
+ return QDF_STATUS_E_RESOURCES;
|
|
|
+ }
|
|
|
+
|
|
|
+ tx_desc->flags |= DP_TX_DESC_FLAG_QUEUED_TX;
|
|
|
+
|
|
|
+ hal_tx_desc_sync(hal_tx_desc_cached, hal_tx_desc);
|
|
|
+
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_classify_tid() - Obtain TID to be used for this frame
|
|
|
+ * @vdev: DP vdev handle
|
|
|
+ * @nbuf: skb
|
|
|
+ *
|
|
|
+ * Extract the DSCP or PCP information from frame and map into TID value.
|
|
|
+ * Software based TID classification is required when more than 2 DSCP-TID
|
|
|
+ * mapping tables are needed.
|
|
|
+ * Hardware supports 2 DSCP-TID mapping tables.
|
|
|
+ *
|
|
|
+ * Return:
|
|
|
+ */
|
|
|
+int dp_tx_classify_tid(struct dp_vdev *vdev, qdf_nbuf_t nbuf,
|
|
|
+ struct dp_tx_msdu_info_s *msdu_info)
|
|
|
+{
|
|
|
+ /* TODO */
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_send_msdu_single() - Setup descriptor and enqueue single MSDU to TCL
|
|
|
+ * @vdev: DP vdev handle
|
|
|
+ * @nbuf: skb
|
|
|
+ * @tid: TID from HLOS for overriding default DSCP-TID mapping
|
|
|
+ * @tx_q: Tx queue to be used for this Tx frame
|
|
|
+ *
|
|
|
+ * Return: NULL on success,
|
|
|
+ * nbuf when it fails to send
|
|
|
+ */
|
|
|
+qdf_nbuf_t dp_tx_send_msdu_single(struct dp_vdev *vdev, qdf_nbuf_t nbuf,
|
|
|
+ uint8_t tid, struct dp_tx_queue *tx_q)
|
|
|
+{
|
|
|
+ struct dp_pdev *pdev = vdev->pdev;
|
|
|
+ struct dp_soc *soc = pdev->soc;
|
|
|
+ struct dp_tx_desc_s *tx_desc;
|
|
|
+ QDF_STATUS status;
|
|
|
+ void *hal_srng = soc->tcl_data_ring[tx_q->ring_id].hal_srng;
|
|
|
+
|
|
|
+ /* Setup Tx descriptor for an MSDU, and MSDU extension descriptor */
|
|
|
+ tx_desc = dp_tx_prepare_desc_single(vdev, nbuf, tx_q->desc_pool_id);
|
|
|
+ if (!tx_desc) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "%s Tx_desc prepare Fail vdev %p queue %d\n",
|
|
|
+ __func__, vdev, tx_q->desc_pool_id);
|
|
|
+ goto fail_return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (qdf_unlikely(hal_srng_access_start(soc->hal_soc, hal_srng))) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "%s %d : HAL RING Access Failed -- %lu\n",
|
|
|
+ __func__, __LINE__, hal_srng);
|
|
|
+ goto fail_return;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Enqueue the Tx MSDU descriptor to HW for transmit */
|
|
|
+ status = dp_tx_hw_enqueue(soc, vdev, tx_desc, tid,
|
|
|
+ vdev->htt_tcl_metadata, tx_q->ring_id);
|
|
|
+
|
|
|
+ if (status != QDF_STATUS_SUCCESS) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "%s Tx_hw_enqueue Fail tx_desc %p queue %d\n",
|
|
|
+ __func__, tx_desc, tx_q->ring_id);
|
|
|
+ dp_tx_desc_release(vdev, tx_desc, tx_q->desc_pool_id);
|
|
|
+ goto fail_return;
|
|
|
+ }
|
|
|
+
|
|
|
+ hal_srng_access_end(soc->hal_soc, hal_srng);
|
|
|
+
|
|
|
+ return NULL;
|
|
|
+
|
|
|
+fail_return:
|
|
|
+ return nbuf;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_send_msdu_multiple() - Enqueue multiple MSDUs
|
|
|
+ * @vdev: DP vdev handle
|
|
|
+ * @nbuf: skb
|
|
|
+ * @msdu_info: MSDU info to be setup in MSDU extension descriptor
|
|
|
+ *
|
|
|
+ * Prepare descriptors for multiple MSDUs (TSO segments) and enqueue to TCL
|
|
|
+ *
|
|
|
+ * Return: NULL on success,
|
|
|
+ * nbuf when it fails to send
|
|
|
+ */
|
|
|
+qdf_nbuf_t dp_tx_send_msdu_multiple(struct dp_vdev *vdev, qdf_nbuf_t nbuf,
|
|
|
+ struct dp_tx_msdu_info_s *msdu_info)
|
|
|
+{
|
|
|
+ uint8_t i;
|
|
|
+ struct dp_pdev *pdev = vdev->pdev;
|
|
|
+ struct dp_soc *soc = pdev->soc;
|
|
|
+ struct dp_tx_desc_s *tx_desc;
|
|
|
+ QDF_STATUS status;
|
|
|
+
|
|
|
+ struct dp_tx_queue *tx_q = &msdu_info->tx_queue;
|
|
|
+ void *hal_srng = soc->tcl_data_ring[tx_q->ring_id].hal_srng;
|
|
|
+
|
|
|
+ if (qdf_unlikely(hal_srng_access_start(soc->hal_soc, hal_srng))) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "%s %d : HAL RING Access Failed -- %lu\n",
|
|
|
+ __func__, __LINE__, hal_srng);
|
|
|
+ return nbuf;
|
|
|
+ }
|
|
|
+
|
|
|
+ i = 0;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * For each segment (maps to 1 MSDU) , prepare software and hardware
|
|
|
+ * descriptors using information in msdu_info
|
|
|
+ */
|
|
|
+ while (i < msdu_info->num_seg) {
|
|
|
+ /*
|
|
|
+ * Setup Tx descriptor for an MSDU, and MSDU extension
|
|
|
+ * descriptor
|
|
|
+ */
|
|
|
+ tx_desc = dp_tx_prepare_desc(vdev, nbuf, msdu_info,
|
|
|
+ tx_q->desc_pool_id);
|
|
|
+
|
|
|
+ if (!tx_desc) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "%s Tx_desc prepare Fail vdev %p queue %d\n",
|
|
|
+ __func__, vdev, tx_q->desc_pool_id);
|
|
|
+
|
|
|
+ goto done;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Enqueue the Tx MSDU descriptor to HW for transmit
|
|
|
+ */
|
|
|
+ status = dp_tx_hw_enqueue(soc, vdev, tx_desc, msdu_info->tid,
|
|
|
+ vdev->htt_tcl_metadata, tx_q->ring_id);
|
|
|
+
|
|
|
+ if (status != QDF_STATUS_SUCCESS) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "%s Tx_hw_enqueue Fail tx_desc %p queue %d\n",
|
|
|
+ __func__, tx_desc, tx_q->ring_id);
|
|
|
+
|
|
|
+ dp_tx_desc_release(vdev, tx_desc, tx_q->desc_pool_id);
|
|
|
+ goto done;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ * TODO
|
|
|
+ * if tso_info structure can be modified to have curr_seg
|
|
|
+ * as first element, following 2 blocks of code (for TSO and SG)
|
|
|
+ * can be combined into 1
|
|
|
+ */
|
|
|
+
|
|
|
+ /*
|
|
|
+ * For frames with multiple segments (TSO, ME), jump to next
|
|
|
+ * segment.
|
|
|
+ */
|
|
|
+ if (msdu_info->frm_type == dp_tx_frm_tso) {
|
|
|
+ if (msdu_info->u.tso_info.curr_seg->next) {
|
|
|
+ msdu_info->u.tso_info.curr_seg =
|
|
|
+ msdu_info->u.tso_info.curr_seg->next;
|
|
|
+ /* Check with MCL if this is needed */
|
|
|
+ /* nbuf = msdu_info->u.tso_info.curr_seg->nbuf; */
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ * For Multicast-Unicast converted packets,
|
|
|
+ * each converted frame (for a client) is represented as
|
|
|
+ * 1 segment
|
|
|
+ */
|
|
|
+ if (msdu_info->frm_type == dp_tx_frm_sg) {
|
|
|
+ if (msdu_info->u.sg_info.curr_seg->next) {
|
|
|
+ msdu_info->u.sg_info.curr_seg =
|
|
|
+ msdu_info->u.sg_info.curr_seg->next;
|
|
|
+ nbuf = msdu_info->u.sg_info.curr_seg->nbuf;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ i++;
|
|
|
+ }
|
|
|
+
|
|
|
+ nbuf = NULL;
|
|
|
+
|
|
|
+done:
|
|
|
+ hal_srng_access_end(soc->hal_soc, hal_srng);
|
|
|
+
|
|
|
+ return nbuf;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_prepare_sg()- Extract SG info from NBUF and prepare msdu_info
|
|
|
+ * for SG frames
|
|
|
+ * @vdev: DP vdev handle
|
|
|
+ * @nbuf: skb
|
|
|
+ * @seg_info: Pointer to Segment info Descriptor to be prepared
|
|
|
+ * @msdu_info: MSDU info to be setup in MSDU descriptor and MSDU extension desc.
|
|
|
+ *
|
|
|
+ * Return: NULL on success,
|
|
|
+ * nbuf when it fails to send
|
|
|
+ */
|
|
|
+qdf_nbuf_t dp_tx_prepare_sg(struct dp_vdev *vdev, qdf_nbuf_t nbuf,
|
|
|
+ struct dp_tx_seg_info_s *seg_info, struct dp_tx_msdu_info_s *msdu_info)
|
|
|
+{
|
|
|
+ uint32_t cur_frag, nr_frags;
|
|
|
+ qdf_dma_addr_t paddr;
|
|
|
+ struct dp_tx_sg_info_s *sg_info;
|
|
|
+
|
|
|
+ sg_info = &msdu_info->u.sg_info;
|
|
|
+ nr_frags = qdf_nbuf_get_nr_frags(nbuf);
|
|
|
+
|
|
|
+ if (QDF_STATUS_SUCCESS != qdf_nbuf_map_nbytes_single(vdev->osdev, nbuf,
|
|
|
+ QDF_DMA_TO_DEVICE,
|
|
|
+ qdf_nbuf_headlen(nbuf))) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "dma map error\n");
|
|
|
+
|
|
|
+ qdf_nbuf_free(nbuf);
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ seg_info->frags[0].paddr_lo = qdf_nbuf_get_frag_paddr(nbuf, 0);
|
|
|
+ seg_info->frags[0].paddr_hi = 0;
|
|
|
+ seg_info->frags[0].len = qdf_nbuf_headlen(nbuf);
|
|
|
+ seg_info->frags[0].vaddr = (void *) nbuf;
|
|
|
+
|
|
|
+ for (cur_frag = 0; cur_frag < nr_frags; cur_frag++) {
|
|
|
+ if (QDF_STATUS_E_FAILURE == qdf_nbuf_frag_map(vdev->osdev,
|
|
|
+ nbuf, 0, QDF_DMA_TO_DEVICE, cur_frag)) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "frag dma map error\n");
|
|
|
+ qdf_nbuf_free(nbuf);
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ paddr = qdf_nbuf_get_frag_paddr(nbuf, 0);
|
|
|
+ seg_info->frags[cur_frag + 1].paddr_lo = paddr;
|
|
|
+ seg_info->frags[cur_frag + 1].paddr_hi =
|
|
|
+ ((uint64_t) paddr) >> 32;
|
|
|
+ seg_info->frags[cur_frag + 1].len =
|
|
|
+ qdf_nbuf_get_frag_size(nbuf, cur_frag);
|
|
|
+ }
|
|
|
+
|
|
|
+ seg_info->frag_cnt = (cur_frag + 1);
|
|
|
+ seg_info->total_len = qdf_nbuf_len(nbuf);
|
|
|
+ seg_info->next = NULL;
|
|
|
+
|
|
|
+ sg_info->curr_seg = seg_info;
|
|
|
+
|
|
|
+ msdu_info->frm_type = dp_tx_frm_sg;
|
|
|
+ msdu_info->num_seg = 1;
|
|
|
+
|
|
|
+ return nbuf;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_send() - Transmit a frame on a given VAP
|
|
|
+ * @vap_dev: DP vdev handle
|
|
|
+ * @nbuf: skb
|
|
|
+ *
|
|
|
+ * Entry point for Core Tx layer (DP_TX) invoked from
|
|
|
+ * hard_start_xmit in OSIF/HDD or from dp_rx_process for intravap forwarding
|
|
|
+ * cases
|
|
|
+ *
|
|
|
+ * Return: NULL on success,
|
|
|
+ * nbuf when it fails to send
|
|
|
+ */
|
|
|
+qdf_nbuf_t dp_tx_send(void *vap_dev, qdf_nbuf_t nbuf)
|
|
|
+{
|
|
|
+ struct ether_header *eh;
|
|
|
+ struct dp_tx_msdu_info_s msdu_info;
|
|
|
+ struct dp_tx_seg_info_s seg_info;
|
|
|
+ struct dp_vdev *vdev = (struct dp_vdev *) vap_dev;
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
|
|
|
+ "Entering %s , skb %0x:%0x:%0x:%0x:%0x:%0x\n",
|
|
|
+ __func__, nbuf->data[0], nbuf->data[1], nbuf->data[2],
|
|
|
+ nbuf->data[1], nbuf->data[2], nbuf->data[3]);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Get HW Queue to use for this frame.
|
|
|
+ * TCL supports upto 4 DMA rings, out of which 3 rings are
|
|
|
+ * dedicated for data and 1 for command.
|
|
|
+ * "queue_id" maps to one hardware ring.
|
|
|
+ * With each ring, we also associate a unique Tx descriptor pool
|
|
|
+ * to minimize lock contention for these resources.
|
|
|
+ */
|
|
|
+ dp_tx_get_queue(vdev, nbuf, &msdu_info.tx_queue);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * TCL H/W supports 2 DSCP-TID mapping tables.
|
|
|
+ * Table 1 - Default DSCP-TID mapping table
|
|
|
+ * Table 2 - 1 DSCP-TID override table
|
|
|
+ *
|
|
|
+ * If we need a different DSCP-TID mapping for this vap,
|
|
|
+ * call tid_classify to extract DSCP/ToS from frame and
|
|
|
+ * map to a TID and store in msdu_info. This is later used
|
|
|
+ * to fill in TCL Input descriptor (per-packet TID override).
|
|
|
+ */
|
|
|
+ if (vdev->dscp_tid_map_id > 1)
|
|
|
+ dp_tx_classify_tid(vdev, nbuf, &msdu_info);
|
|
|
+
|
|
|
+ /* Reset the control block */
|
|
|
+ qdf_nbuf_reset_ctxt(nbuf);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Classify the frame and call corresponding
|
|
|
+ * "prepare" function which extracts the segment (TSO)
|
|
|
+ * and fragmentation information (for TSO , SG, ME, or Raw)
|
|
|
+ * into MSDU_INFO structure which is later used to fill
|
|
|
+ * SW and HW descriptors.
|
|
|
+ */
|
|
|
+ if (qdf_nbuf_is_tso(nbuf)) {
|
|
|
+ /* dp_tx_prepare_tso(vdev, nbuf, &seg_info, &msdu_info); */
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
|
|
|
+ "%s TSO frame %p\n", __func__, vdev);
|
|
|
+ DP_STATS_MSDU_INCR(soc, tx.tso.tso_pkts, nbuf);
|
|
|
+
|
|
|
+ goto send_multiple;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* SG */
|
|
|
+ if (qdf_unlikely(qdf_nbuf_is_nonlinear(nbuf))) {
|
|
|
+ nbuf = dp_tx_prepare_sg(vdev, nbuf, &seg_info, &msdu_info);
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
|
|
|
+ "%s non-TSO SG frame %p\n", __func__, vdev);
|
|
|
+
|
|
|
+ DP_STATS_MSDU_INCR(soc, tx.sg.sg_pkts, nbuf);
|
|
|
+
|
|
|
+ goto send_multiple;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Mcast to Ucast Conversion*/
|
|
|
+ if (qdf_unlikely(vdev->mcast_enhancement_en == 1)) {
|
|
|
+ eh = (struct ether_header *)qdf_nbuf_data(nbuf);
|
|
|
+ if (DP_FRAME_IS_MULTICAST((eh)->ether_dhost)) {
|
|
|
+ nbuf = dp_tx_prepare_me(vdev, nbuf, &msdu_info);
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
|
|
|
+ "%s Mcast frm for ME %p\n", __func__, vdev);
|
|
|
+
|
|
|
+ DP_STATS_MSDU_INCR(soc, tx.mcast.pkts, nbuf);
|
|
|
+
|
|
|
+ goto send_multiple;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /* RAW */
|
|
|
+ if (qdf_unlikely(vdev->tx_encap_type == htt_pkt_type_raw)) {
|
|
|
+ nbuf = dp_tx_prepare_raw(vdev, nbuf, &msdu_info);
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
|
|
|
+ "%s Raw frame %p\n", __func__, vdev);
|
|
|
+
|
|
|
+ DP_STATS_MSDU_INCR(soc, tx.raw.pkts, nbuf);
|
|
|
+
|
|
|
+ goto send_multiple;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Single linear frame */
|
|
|
+ /*
|
|
|
+ * If nbuf is a simple linear frame, use send_single function to
|
|
|
+ * prepare direct-buffer type TCL descriptor and enqueue to TCL
|
|
|
+ * SRNG. There is no need to setup a MSDU extension descriptor.
|
|
|
+ */
|
|
|
+ nbuf = dp_tx_send_msdu_single(vdev, nbuf, msdu_info.tid,
|
|
|
+ &msdu_info.tx_queue);
|
|
|
+
|
|
|
+ return nbuf;
|
|
|
+
|
|
|
+send_multiple:
|
|
|
+ nbuf = dp_tx_send_msdu_multiple(vdev, nbuf, &msdu_info);
|
|
|
+
|
|
|
+ return nbuf;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_reinject_handler() - Tx Reinject Handler
|
|
|
+ * @tx_desc: software descriptor head pointer
|
|
|
+ * @status : Tx completion status from HTT descriptor
|
|
|
+ *
|
|
|
+ * This function reinjects frames back to Target.
|
|
|
+ * Todo - Host queue needs to be added
|
|
|
+ *
|
|
|
+ * Return: none
|
|
|
+ */
|
|
|
+void dp_tx_reinject_handler(struct dp_tx_desc_s *tx_desc, uint8_t *status)
|
|
|
+{
|
|
|
+ struct dp_vdev *vdev;
|
|
|
+
|
|
|
+ vdev = tx_desc->vdev;
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s Tx reinject path\n",
|
|
|
+ __func__);
|
|
|
+
|
|
|
+ DP_STATS_MSDU_INCR(soc, tx.reinject.pkts, tx_desc->nbuf);
|
|
|
+
|
|
|
+ dp_tx_send(vdev, tx_desc->nbuf);
|
|
|
+ dp_tx_desc_release(vdev, tx_desc, tx_desc->pool_id);
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_inspect_handler() - Tx Inspect Handler
|
|
|
+ * @tx_desc: software descriptor head pointer
|
|
|
+ * @status : Tx completion status from HTT descriptor
|
|
|
+ *
|
|
|
+ * Handles Tx frames sent back to Host for inspection
|
|
|
+ * (ProxyARP)
|
|
|
+ *
|
|
|
+ * Return: none
|
|
|
+ */
|
|
|
+void dp_tx_inspect_handler(struct dp_tx_desc_s *tx_desc, uint8_t *status)
|
|
|
+{
|
|
|
+
|
|
|
+ struct dp_soc *soc;
|
|
|
+ struct dp_vdev *vdev;
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s Tx inspect path\n",
|
|
|
+ __func__);
|
|
|
+
|
|
|
+ vdev = tx_desc->vdev;
|
|
|
+ soc = vdev->pdev->soc;
|
|
|
+
|
|
|
+ DP_STATS_MSDU_INCR(soc, tx.inspect.pkts, tx_desc->nbuf);
|
|
|
+
|
|
|
+ DP_TX_FREE_SINGLE_BUF(soc, vdev, tx_desc->nbuf);
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_process_htt_completion() - Tx HTT Completion Indication Handler
|
|
|
+ * @tx_desc: software descriptor head pointer
|
|
|
+ * @status : Tx completion status from HTT descriptor
|
|
|
+ *
|
|
|
+ * This function will process HTT Tx indication messages from Target
|
|
|
+ *
|
|
|
+ * Return: none
|
|
|
+ */
|
|
|
+void dp_tx_process_htt_completion(struct dp_tx_desc_s *tx_desc, uint8_t *status)
|
|
|
+{
|
|
|
+ uint8_t tx_status;
|
|
|
+ struct dp_vdev *vdev;
|
|
|
+ struct dp_pdev *pdev;
|
|
|
+ struct dp_soc *soc;
|
|
|
+ uint32_t *htt_status_word = (uint32_t *) status;
|
|
|
+
|
|
|
+ vdev = tx_desc->vdev;
|
|
|
+ pdev = vdev->pdev;
|
|
|
+ soc = pdev->soc;
|
|
|
+
|
|
|
+ tx_status = HTT_TX_WBM_COMPLETION_TX_STATUS_GET(htt_status_word[0]);
|
|
|
+
|
|
|
+ switch (tx_status) {
|
|
|
+ case HTT_TX_FW2WBM_TX_STATUS_OK:
|
|
|
+ {
|
|
|
+ pdev->num_tx_exception--;
|
|
|
+ DP_TX_FREE_SINGLE_BUF(soc, vdev,
|
|
|
+ tx_desc->nbuf);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case HTT_TX_FW2WBM_TX_STATUS_DROP:
|
|
|
+ case HTT_TX_FW2WBM_TX_STATUS_TTL:
|
|
|
+ {
|
|
|
+ DP_TX_FREE_SINGLE_BUF(soc, vdev,
|
|
|
+ tx_desc->nbuf);
|
|
|
+ pdev->num_tx_exception--;
|
|
|
+ DP_STATS_MSDU_INCR(soc, tx.dropped.pkts, tx_desc->nbuf);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case HTT_TX_FW2WBM_TX_STATUS_REINJECT:
|
|
|
+ {
|
|
|
+ dp_tx_reinject_handler(tx_desc, status);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case HTT_TX_FW2WBM_TX_STATUS_INSPECT:
|
|
|
+ {
|
|
|
+ dp_tx_inspect_handler(tx_desc, status);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ default:
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "%s Invalid HTT tx_status %d\n",
|
|
|
+ __func__, tx_status);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_comp_process_desc() - Tx complete software descriptor handler
|
|
|
+ * @soc: core txrx main context
|
|
|
+ * @comp_head: software descriptor head pointer
|
|
|
+ *
|
|
|
+ * This function will process batch of descriptors reaped by dp_tx_comp_handler
|
|
|
+ * and release the software descriptors after processing is complete
|
|
|
+ *
|
|
|
+ * Return: none
|
|
|
+ */
|
|
|
+void dp_tx_comp_process_desc(struct dp_soc *soc,
|
|
|
+ struct dp_tx_desc_s *comp_head)
|
|
|
+{
|
|
|
+ struct dp_tx_desc_s *desc;
|
|
|
+ struct dp_tx_desc_s *next;
|
|
|
+ struct dp_vdev *vdev;
|
|
|
+
|
|
|
+ desc = comp_head;
|
|
|
+
|
|
|
+ while (desc) {
|
|
|
+
|
|
|
+ /* Error Handling */
|
|
|
+ if (hal_tx_comp_get_buffer_source(&desc->comp) ==
|
|
|
+ HAL_TX_COMP_RELEASE_SOURCE_FW) {
|
|
|
+ dp_tx_comp_process_exception(desc);
|
|
|
+ desc = desc->next;
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Process Tx status in descriptor */
|
|
|
+ if (soc->process_tx_status)
|
|
|
+ dp_tx_comp_process_tx_status(desc);
|
|
|
+
|
|
|
+ vdev = desc->vdev;
|
|
|
+
|
|
|
+ /* 0 : MSDU buffer, 1 : MLE */
|
|
|
+ if (desc->msdu_ext_desc) {
|
|
|
+ /* TSO free */
|
|
|
+ if (hal_tx_ext_desc_get_tso_enable(
|
|
|
+ desc->msdu_ext_desc->vaddr)) {
|
|
|
+ /* If remaining number of segment is 0
|
|
|
+ * actual TSO may unmap and free */
|
|
|
+ if (!DP_DESC_NUM_FRAG(desc)) {
|
|
|
+ qdf_nbuf_unmap(soc->osdev, desc->nbuf,
|
|
|
+ QDF_DMA_TO_DEVICE);
|
|
|
+ qdf_nbuf_free(desc->nbuf);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ /* SG free */
|
|
|
+ /* Free buffer */
|
|
|
+ qdf_nbuf_unmap(soc->osdev, desc->nbuf,
|
|
|
+ QDF_DMA_TO_DEVICE);
|
|
|
+ qdf_nbuf_free(desc->nbuf);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ qdf_nbuf_unmap(soc->osdev, desc->nbuf,
|
|
|
+ QDF_DMA_TO_DEVICE);
|
|
|
+ qdf_nbuf_free(desc->nbuf);
|
|
|
+ }
|
|
|
+
|
|
|
+ next = desc->next;
|
|
|
+ dp_tx_desc_release(vdev, desc, desc->pool_id);
|
|
|
+ desc = next;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_comp_handler() - Tx completion handler
|
|
|
+ * @soc: core txrx main context
|
|
|
+ * @ring_id: completion ring id
|
|
|
+ * @budget: No. of packets/descriptors that can be serviced in one loop
|
|
|
+ *
|
|
|
+ * This function will collect hardware release ring element contents and
|
|
|
+ * handle descriptor contents. Based on contents, free packet or handle error
|
|
|
+ * conditions
|
|
|
+ *
|
|
|
+ * Return: none
|
|
|
+ */
|
|
|
+uint32_t dp_tx_comp_handler(struct dp_soc *soc, uint32_t ring_id,
|
|
|
+ uint32_t budget)
|
|
|
+{
|
|
|
+ void *tx_comp_hal_desc;
|
|
|
+ uint8_t buffer_src;
|
|
|
+ uint8_t pool_id;
|
|
|
+ uint32_t tx_desc_id;
|
|
|
+ struct dp_tx_desc_s *tx_desc = NULL;
|
|
|
+ struct dp_tx_desc_s *head_desc = NULL;
|
|
|
+ struct dp_tx_desc_s *tail_desc = NULL;
|
|
|
+ uint32_t num_processed;
|
|
|
+ void *hal_srng = soc->tx_comp_ring[ring_id].hal_srng;
|
|
|
+
|
|
|
+ if (qdf_unlikely(hal_srng_access_start(soc->hal_soc, hal_srng))) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "%s %d : HAL RING Access Failed -- %lu\n",
|
|
|
+ __func__, __LINE__, hal_srng);
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ num_processed = 0;
|
|
|
+
|
|
|
+ /* Find head descriptor from completion ring */
|
|
|
+ while (qdf_likely(tx_comp_hal_desc =
|
|
|
+ hal_srng_dst_get_next(soc->hal_soc, hal_srng))) {
|
|
|
+
|
|
|
+ buffer_src = hal_tx_comp_get_buffer_source(tx_comp_hal_desc);
|
|
|
+
|
|
|
+ /* If this buffer was not released by TQM or FW, then it is not
|
|
|
+ * Tx completion indication, skip to next descriptor */
|
|
|
+ if ((buffer_src != HAL_TX_COMP_RELEASE_SOURCE_TQM) &&
|
|
|
+ (buffer_src != HAL_TX_COMP_RELEASE_SOURCE_FW)) {
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP,
|
|
|
+ QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "Tx comp release_src != TQM | FW");
|
|
|
+
|
|
|
+ /* TODO Handle Freeing of the buffer in descriptor */
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Get descriptor id */
|
|
|
+ tx_desc_id = hal_tx_comp_get_desc_id(tx_comp_hal_desc);
|
|
|
+ pool_id = (tx_desc_id & DP_TX_DESC_ID_POOL_MASK) >>
|
|
|
+ DP_TX_DESC_ID_POOL_OS;
|
|
|
+
|
|
|
+ /* Pool ID is out of limit. Error */
|
|
|
+ if (pool_id > wlan_cfg_get_num_tx_desc_pool(
|
|
|
+ soc->wlan_cfg_ctx)) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP,
|
|
|
+ QDF_TRACE_LEVEL_FATAL,
|
|
|
+ "TX COMP pool id %d not valid",
|
|
|
+ pool_id);
|
|
|
+
|
|
|
+ /* Check if assert aborts execution, if not handle
|
|
|
+ * return here */
|
|
|
+ QDF_ASSERT(0);
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Find Tx descriptor */
|
|
|
+ tx_desc = dp_tx_desc_find(soc, pool_id,
|
|
|
+ (tx_desc_id & DP_TX_DESC_ID_PAGE_MASK) >>
|
|
|
+ DP_TX_DESC_ID_PAGE_OS,
|
|
|
+ (tx_desc_id & DP_TX_DESC_ID_OFFSET_MASK) >>
|
|
|
+ DP_TX_DESC_ID_OFFSET_OS);
|
|
|
+
|
|
|
+ /* Pool id is not matching. Error */
|
|
|
+ if (tx_desc && (tx_desc->pool_id != pool_id)) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP,
|
|
|
+ QDF_TRACE_LEVEL_FATAL,
|
|
|
+ "Tx Comp pool id %d not matched %d",
|
|
|
+ pool_id, tx_desc->pool_id);
|
|
|
+
|
|
|
+ /* Check if assert aborts execution, if not handle
|
|
|
+ * return here */
|
|
|
+ QDF_ASSERT(0);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!(tx_desc->flags & DP_TX_DESC_FLAG_ALLOCATED) ||
|
|
|
+ !(tx_desc->flags & DP_TX_DESC_FLAG_QUEUED_TX)) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP,
|
|
|
+ QDF_TRACE_LEVEL_FATAL,
|
|
|
+ "Txdesc invalid, flgs = %x,id = %d",
|
|
|
+ tx_desc->flags, tx_desc_id);
|
|
|
+
|
|
|
+ /* TODO Handle Freeing of the buffer in this invalid
|
|
|
+ * descriptor */
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ * If the release source is FW, process the HTT
|
|
|
+ * status
|
|
|
+ */
|
|
|
+ if (qdf_unlikely(buffer_src ==
|
|
|
+ HAL_TX_COMP_RELEASE_SOURCE_FW)) {
|
|
|
+ uint8_t htt_tx_status[HAL_TX_COMP_HTT_STATUS_LEN];
|
|
|
+ hal_tx_comp_get_htt_desc(tx_comp_hal_desc,
|
|
|
+ htt_tx_status);
|
|
|
+ dp_tx_process_htt_completion(tx_desc,
|
|
|
+ htt_tx_status);
|
|
|
+ } else {
|
|
|
+ tx_desc->next = NULL;
|
|
|
+
|
|
|
+ /* First ring descriptor on the cycle */
|
|
|
+ if (!head_desc) {
|
|
|
+ head_desc = tx_desc;
|
|
|
+ tail_desc = tx_desc;
|
|
|
+ }
|
|
|
+
|
|
|
+ tail_desc->next = tx_desc;
|
|
|
+
|
|
|
+ /* Collect hw completion contents */
|
|
|
+ hal_tx_comp_desc_sync(tx_comp_hal_desc,
|
|
|
+ &tx_desc->comp, soc->process_tx_status);
|
|
|
+ }
|
|
|
+
|
|
|
+ tail_desc = tx_desc;
|
|
|
+ num_processed++;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Processed packet count is more than given quota
|
|
|
+ * stop to processing
|
|
|
+ */
|
|
|
+ if (num_processed >= budget)
|
|
|
+ break;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ hal_srng_access_end(soc->hal_soc, hal_srng);
|
|
|
+
|
|
|
+ /* Process the reaped descriptors */
|
|
|
+ if (head_desc)
|
|
|
+ dp_tx_comp_process_desc(soc, head_desc);
|
|
|
+
|
|
|
+ return num_processed;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_vdev_attach() - attach vdev to dp tx
|
|
|
+ * @vdev: virtual device instance
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS_SUCCESS: success
|
|
|
+ * QDF_STATUS_E_RESOURCES: Error return
|
|
|
+ */
|
|
|
+QDF_STATUS dp_tx_vdev_attach(struct dp_vdev *vdev)
|
|
|
+{
|
|
|
+
|
|
|
+ vdev->num_tx_outstanding = 0;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Fill HTT TCL Metadata with Vdev ID and MAC ID
|
|
|
+ */
|
|
|
+ HTT_TX_TCL_METADATA_TYPE_SET(vdev->htt_tcl_metadata,
|
|
|
+ HTT_TCL_METADATA_TYPE_VDEV_BASED);
|
|
|
+
|
|
|
+ HTT_TX_TCL_METADATA_VDEV_ID_SET(vdev->htt_tcl_metadata,
|
|
|
+ vdev->vdev_id);
|
|
|
+
|
|
|
+ HTT_TX_TCL_METADATA_PDEV_ID_SET(vdev->htt_tcl_metadata,
|
|
|
+ vdev->pdev->pdev_id);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Set HTT Extension Valid bit to 0 by default
|
|
|
+ */
|
|
|
+ HTT_TX_TCL_METADATA_VALID_HTT_SET(vdev->htt_tcl_metadata, 0);
|
|
|
+
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_vdev_detach() - detach vdev from dp tx
|
|
|
+ * @vdev: virtual device instance
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS_SUCCESS: success
|
|
|
+ * QDF_STATUS_E_RESOURCES: Error return
|
|
|
+ */
|
|
|
+QDF_STATUS dp_tx_vdev_detach(struct dp_vdev *vdev)
|
|
|
+{
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_pdev_attach() - attach pdev to dp tx
|
|
|
+ * @pdev: physical device instance
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS_SUCCESS: success
|
|
|
+ * QDF_STATUS_E_RESOURCES: Error return
|
|
|
+ */
|
|
|
+QDF_STATUS dp_tx_pdev_attach(struct dp_pdev *pdev)
|
|
|
+{
|
|
|
+ struct dp_soc *soc = pdev->soc;
|
|
|
+
|
|
|
+ /* Initialize Flow control counters */
|
|
|
+ pdev->num_tx_exception = 0;
|
|
|
+ pdev->num_tx_outstanding = 0;
|
|
|
+
|
|
|
+ if (wlan_cfg_per_pdev_tx_ring(soc->wlan_cfg_ctx)) {
|
|
|
+ /* Initialize descriptors in TCL Ring */
|
|
|
+ hal_tx_init_data_ring(soc->hal_soc,
|
|
|
+ soc->tcl_data_ring[pdev->pdev_id].hal_srng);
|
|
|
+ }
|
|
|
+
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_pdev_detach() - detach pdev from dp tx
|
|
|
+ * @pdev: physical device instance
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS_SUCCESS: success
|
|
|
+ * QDF_STATUS_E_RESOURCES: Error return
|
|
|
+ */
|
|
|
+QDF_STATUS dp_tx_pdev_detach(struct dp_pdev *pdev)
|
|
|
+{
|
|
|
+ /* What should do here? */
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_soc_detach() - detach soc from dp tx
|
|
|
+ * @soc: core txrx main context
|
|
|
+ *
|
|
|
+ * This function will detach dp tx into main device context
|
|
|
+ * will free dp tx resource and initialize resources
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS_SUCCESS: success
|
|
|
+ * QDF_STATUS_E_RESOURCES: Error return
|
|
|
+ */
|
|
|
+QDF_STATUS dp_tx_soc_detach(struct dp_soc *soc)
|
|
|
+{
|
|
|
+ uint8_t num_pool;
|
|
|
+ uint8_t num_desc;
|
|
|
+ uint8_t num_ext_desc;
|
|
|
+ uint8_t i;
|
|
|
+
|
|
|
+ num_pool = wlan_cfg_get_num_tx_desc_pool(soc->wlan_cfg_ctx);
|
|
|
+ num_desc = wlan_cfg_get_num_tx_desc(soc->wlan_cfg_ctx);
|
|
|
+ num_ext_desc = wlan_cfg_get_num_tx_ext_desc(soc->wlan_cfg_ctx);
|
|
|
+
|
|
|
+ for (i = 0; i < num_pool; i++) {
|
|
|
+ if (dp_tx_desc_pool_free(soc, i)) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s Tx Desc Pool Free failed\n",
|
|
|
+ __func__);
|
|
|
+ return QDF_STATUS_E_RESOURCES;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s Tx Desc Pool Free num_pool = %d, descs = %d\n",
|
|
|
+ __func__, num_pool, num_desc);
|
|
|
+
|
|
|
+ for (i = 0; i < num_pool; i++) {
|
|
|
+ if (dp_tx_ext_desc_pool_free(soc, i)) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s Tx Ext Desc Pool Free failed\n",
|
|
|
+ __func__);
|
|
|
+ return QDF_STATUS_E_RESOURCES;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s MSDU Ext Desc Pool Free descs = %d\n",
|
|
|
+ __func__, num_pool, num_ext_desc);
|
|
|
+
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * dp_tx_soc_attach() - attach soc to dp tx
|
|
|
+ * @soc: core txrx main context
|
|
|
+ *
|
|
|
+ * This function will attach dp tx into main device context
|
|
|
+ * will allocate dp tx resource and initialize resources
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS_SUCCESS: success
|
|
|
+ * QDF_STATUS_E_RESOURCES: Error return
|
|
|
+ */
|
|
|
+QDF_STATUS dp_tx_soc_attach(struct dp_soc *soc)
|
|
|
+{
|
|
|
+ uint8_t num_pool;
|
|
|
+ uint32_t num_desc;
|
|
|
+ uint32_t num_ext_desc;
|
|
|
+ uint8_t i;
|
|
|
+
|
|
|
+ num_pool = wlan_cfg_get_num_tx_desc_pool(soc->wlan_cfg_ctx);
|
|
|
+ num_desc = wlan_cfg_get_num_tx_desc(soc->wlan_cfg_ctx);
|
|
|
+ num_ext_desc = wlan_cfg_get_num_tx_ext_desc(soc->wlan_cfg_ctx);
|
|
|
+
|
|
|
+ /* Allocate software Tx descriptor pools */
|
|
|
+ for (i = 0; i < num_pool; i++) {
|
|
|
+ if (dp_tx_desc_pool_alloc(soc, i, num_desc)) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "%s Tx Desc Pool alloc %d failed %p\n",
|
|
|
+ __func__, i, soc);
|
|
|
+ goto fail;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s Tx Desc Alloc num_pool = %d, descs = %d\n",
|
|
|
+ __func__, num_pool, num_desc);
|
|
|
+
|
|
|
+ /* Allocate extension tx descriptor pools */
|
|
|
+ for (i = 0; i < num_pool; i++) {
|
|
|
+ if (dp_tx_ext_desc_pool_alloc(soc, i, num_ext_desc)) {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
|
|
|
+ "MSDU Ext Desc Pool alloc %d failed %p\n",
|
|
|
+ i, soc);
|
|
|
+
|
|
|
+ goto fail;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s MSDU Ext Desc Alloc , descs = %d\n",
|
|
|
+ __func__, num_pool, num_ext_desc);
|
|
|
+
|
|
|
+ /* Initialize descriptors in TCL Rings */
|
|
|
+ if (!wlan_cfg_per_pdev_tx_ring(soc->wlan_cfg_ctx)) {
|
|
|
+ for (i = 0; i < soc->num_tcl_data_rings; i++) {
|
|
|
+ hal_tx_init_data_ring(soc->hal_soc,
|
|
|
+ soc->tcl_data_ring[i].hal_srng);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Initialize Default DSCP-TID mapping table in TCL */
|
|
|
+ hal_tx_set_dscp_tid_map(soc->hal_soc, default_dscp_tid_map,
|
|
|
+ HAL_TX_DSCP_TID_MAP_TABLE_DEFAULT);
|
|
|
+
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
|
|
|
+ "%s HAL Tx init Success\n", __func__);
|
|
|
+
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+
|
|
|
+fail:
|
|
|
+ /* Detach will take care of freeing only allocated resources */
|
|
|
+ dp_tx_soc_detach(soc);
|
|
|
+ return QDF_STATUS_E_RESOURCES;
|
|
|
+}
|