| /* |
| * Copyright (c) 2013, The Linux Foundation. All rights reserved. |
| * |
| * Previously licensed under the ISC license by Qualcomm Atheros, Inc. |
| * |
| * |
| * 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. |
| */ |
| |
| /* |
| * This file was originally distributed by Qualcomm Atheros, Inc. |
| * under proprietary terms before Copyright ownership was assigned |
| * to the Linux Foundation. |
| */ |
| |
| /** |
| * @file htt_tx.c |
| * @brief Implement transmit aspects of HTT. |
| * @details |
| * This file contains three categories of HTT tx code: |
| * 1. An abstraction of the tx descriptor, to hide the |
| * differences between the HL vs. LL tx descriptor. |
| * 2. Functions for allocating and freeing HTT tx descriptors. |
| * 3. The function that accepts a tx frame from txrx and sends the |
| * tx frame to HTC. |
| */ |
| #include <osdep.h> /* u_int32_t, offsetof, etc. */ |
| #include <adf_os_types.h> /* adf_os_dma_addr_t */ |
| #include <adf_os_mem.h> /* adf_os_mem_alloc_consistent,free_consistent */ |
| #include <adf_nbuf.h> /* adf_nbuf_t, etc. */ |
| #include <adf_os_time.h> /* adf_os_mdelay */ |
| |
| #include <htt.h> /* htt_tx_msdu_desc_t */ |
| #include <htc.h> /* HTC_HDR_LENGTH */ |
| #include <htc_api.h> /* HTCFlushSurpriseRemove */ |
| #include <ol_cfg.h> /* ol_cfg_netbuf_frags_max, etc. */ |
| #include <ol_htt_tx_api.h> /* HTT_TX_DESC_VADDR_OFFSET */ |
| #include <ol_txrx_htt_api.h> /* ol_tx_msdu_id_storage */ |
| #include <htt_internal.h> |
| |
| /*--- setup / tear-down functions -------------------------------------------*/ |
| |
| int |
| htt_tx_attach(struct htt_pdev_t *pdev, int desc_pool_elems) |
| { |
| int i, pool_size; |
| u_int32_t **p; |
| adf_os_dma_addr_t pool_paddr; |
| |
| if (pdev->cfg.is_high_latency) { |
| pdev->tx_descs.size = sizeof(struct htt_host_tx_desc_t); |
| } else { |
| pdev->tx_descs.size = |
| /* |
| * Start with the size of the base struct |
| * that actually gets downloaded. |
| */ |
| sizeof(struct htt_host_tx_desc_t) |
| /* |
| * Add the fragmentation descriptor elements. |
| * Add the most that the OS may deliver, plus one more in |
| * case the txrx code adds a prefix fragment (for TSO or |
| * audio interworking SNAP header) |
| */ |
| + (ol_cfg_netbuf_frags_max(pdev->ctrl_pdev)+1) * 8 // 2x u_int32_t |
| + 4; /* u_int32_t fragmentation list terminator */ |
| } |
| if (pdev->tx_descs.size < sizeof(u_int32_t *)) { |
| pdev->tx_descs.size = sizeof(u_int32_t *); |
| } |
| /* |
| * Make sure tx_descs.size is a multiple of 4-bytes. |
| * It should be, but round up just to be sure. |
| */ |
| pdev->tx_descs.size = (pdev->tx_descs.size + 3) & (~0x3); |
| |
| pdev->tx_descs.pool_elems = desc_pool_elems; |
| pdev->tx_descs.alloc_cnt = 0; |
| |
| pool_size = pdev->tx_descs.pool_elems * pdev->tx_descs.size; |
| |
| pdev->tx_descs.pool_vaddr = adf_os_mem_alloc_consistent( |
| pdev->osdev, pool_size, &pool_paddr, |
| adf_os_get_dma_mem_context((&pdev->tx_descs), memctx)); |
| pdev->tx_descs.pool_paddr = pool_paddr; |
| |
| if (!pdev->tx_descs.pool_vaddr) { |
| return 1; /* failure */ |
| } |
| |
| /* link tx descriptors into a freelist */ |
| pdev->tx_descs.freelist = (u_int32_t *) pdev->tx_descs.pool_vaddr; |
| p = (u_int32_t **) pdev->tx_descs.freelist; |
| for (i = 0; i < desc_pool_elems - 1; i++) { |
| *p = (u_int32_t *) (((char *) p) + pdev->tx_descs.size); |
| p = (u_int32_t **) *p; |
| } |
| *p = NULL; |
| |
| return 0; /* success */ |
| } |
| |
| void |
| htt_tx_detach(struct htt_pdev_t *pdev) |
| { |
| adf_os_mem_free_consistent( |
| pdev->osdev, |
| pdev->tx_descs.pool_elems * pdev->tx_descs.size, /* pool_size */ |
| pdev->tx_descs.pool_vaddr, |
| pdev->tx_descs.pool_paddr, |
| adf_os_get_dma_mem_context((&pdev->tx_descs), memctx)); |
| } |
| |
| /*--- descriptor allocation functions ---------------------------------------*/ |
| |
| void * |
| htt_tx_desc_alloc(htt_pdev_handle pdev, u_int32_t *paddr_lo) |
| { |
| struct htt_host_tx_desc_t *htt_host_tx_desc; /* includes HTC hdr space */ |
| struct htt_tx_msdu_desc_t *htt_tx_desc; /* doesn't include HTC hdr */ |
| |
| htt_host_tx_desc = (struct htt_host_tx_desc_t *) pdev->tx_descs.freelist; |
| if (! htt_host_tx_desc) { |
| return NULL; /* pool is exhausted */ |
| } |
| htt_tx_desc = &htt_host_tx_desc->align32.tx_desc; |
| |
| if (pdev->tx_descs.freelist) { |
| pdev->tx_descs.freelist = *((u_int32_t **) pdev->tx_descs.freelist); |
| pdev->tx_descs.alloc_cnt++; |
| } |
| /* |
| * For LL, set up the fragmentation descriptor address. |
| * Currently, this HTT tx desc allocation is performed once up front. |
| * If this is changed to have the allocation done during tx, then it |
| * would be helpful to have separate htt_tx_desc_alloc functions for |
| * HL vs. LL, to remove the below conditional branch. |
| */ |
| if (!pdev->cfg.is_high_latency) { |
| u_int32_t *fragmentation_descr_field_ptr; |
| |
| fragmentation_descr_field_ptr = (u_int32_t *) |
| ((u_int32_t *) htt_tx_desc) + |
| HTT_TX_DESC_FRAGS_DESC_PADDR_OFFSET_DWORD; |
| /* |
| * The fragmentation descriptor is allocated from consistent mem. |
| * Therefore, we can use the address directly rather than having |
| * to map it from a virtual/CPU address to a physical/bus address. |
| */ |
| *fragmentation_descr_field_ptr = |
| HTT_TX_DESC_PADDR(pdev, htt_tx_desc) + HTT_TX_DESC_LEN; |
| } |
| /* |
| * Include the headroom for the HTC frame header when specifying the |
| * physical address for the HTT tx descriptor. |
| */ |
| *paddr_lo = (u_int32_t) HTT_TX_DESC_PADDR(pdev, htt_host_tx_desc); |
| /* |
| * The allocated tx descriptor space includes headroom for a |
| * HTC frame header. Hide this headroom, so that we don't have |
| * to jump past the headroom each time we program a field within |
| * the tx desc, but only once when we download the tx desc (and |
| * the headroom) to the target via HTC. |
| * Skip past the headroom and return the address of the HTT tx desc. |
| */ |
| return (void *) htt_tx_desc; |
| } |
| |
| void |
| htt_tx_desc_free(htt_pdev_handle pdev, void *tx_desc) |
| { |
| char *htt_host_tx_desc = tx_desc; |
| /* rewind over the HTC frame header space */ |
| htt_host_tx_desc -= offsetof(struct htt_host_tx_desc_t, align32.tx_desc); |
| *((u_int32_t **) htt_host_tx_desc) = pdev->tx_descs.freelist; |
| pdev->tx_descs.freelist = (u_int32_t *) htt_host_tx_desc; |
| pdev->tx_descs.alloc_cnt--; |
| } |
| |
| /*--- descriptor field access methods ---------------------------------------*/ |
| |
| void htt_tx_desc_frags_table_set( |
| htt_pdev_handle pdev, |
| void *htt_tx_desc, |
| u_int32_t paddr, |
| int reset) |
| { |
| u_int32_t *fragmentation_descr_field_ptr; |
| |
| /* fragments table only applies to LL systems */ |
| if (pdev->cfg.is_high_latency) { |
| return; |
| } |
| fragmentation_descr_field_ptr = (u_int32_t *) |
| ((u_int32_t *) htt_tx_desc) + HTT_TX_DESC_FRAGS_DESC_PADDR_OFFSET_DWORD; |
| if (reset) { |
| *fragmentation_descr_field_ptr = |
| HTT_TX_DESC_PADDR(pdev, htt_tx_desc) + HTT_TX_DESC_LEN; |
| } else { |
| *fragmentation_descr_field_ptr = paddr; |
| } |
| } |
| |
| /* PUT THESE AS INLINE IN ol_htt_tx_api.h */ |
| |
| void |
| htt_tx_desc_flag_postponed(htt_pdev_handle pdev, void *desc) |
| { |
| } |
| |
| #if !defined(CONFIG_HL_SUPPORT) |
| void |
| htt_tx_pending_discard(htt_pdev_handle pdev) |
| { |
| HTCFlushSurpriseRemove(pdev->htc_pdev); |
| } |
| #endif |
| |
| void |
| htt_tx_desc_flag_batch_more(htt_pdev_handle pdev, void *desc) |
| { |
| } |
| |
| /*--- tx send function ------------------------------------------------------*/ |
| |
| #if ATH_11AC_TXCOMPACT |
| |
| /* Scheduling the Queued packets in HTT which could not be sent out because of No CE desc*/ |
| void |
| htt_tx_sched(htt_pdev_handle pdev) |
| { |
| adf_nbuf_t msdu; |
| int download_len = pdev->download_len; |
| int packet_len; |
| |
| HTT_TX_NBUF_QUEUE_REMOVE(pdev, msdu); |
| while (msdu != NULL){ |
| int not_accepted; |
| /* packet length includes HTT tx desc frag added above */ |
| packet_len = adf_nbuf_len(msdu); |
| if (packet_len < download_len) { |
| /* |
| * This case of packet length being less than the nominal download |
| * length can happen for a couple reasons: |
| * In HL, the nominal download length is a large artificial value. |
| * In LL, the frame may not have the optional header fields |
| * accounted for in the nominal download size (LLC/SNAP header, |
| * IPv4 or IPv6 header). |
| */ |
| download_len = packet_len; |
| } |
| |
| |
| not_accepted = HTCSendDataPkt( |
| pdev->htc_pdev, msdu, pdev->htc_endpoint, download_len); |
| if (not_accepted) { |
| HTT_TX_NBUF_QUEUE_INSERT_HEAD(pdev, msdu); |
| return; |
| } |
| HTT_TX_NBUF_QUEUE_REMOVE(pdev, msdu); |
| } |
| } |
| |
| |
| int |
| htt_tx_send_std( |
| htt_pdev_handle pdev, |
| adf_nbuf_t msdu, |
| u_int16_t msdu_id) |
| { |
| |
| int download_len = pdev->download_len; |
| |
| int packet_len; |
| |
| /* packet length includes HTT tx desc frag added above */ |
| packet_len = adf_nbuf_len(msdu); |
| if (packet_len < download_len) { |
| /* |
| * This case of packet length being less than the nominal download |
| * length can happen for a couple reasons: |
| * In HL, the nominal download length is a large artificial value. |
| * In LL, the frame may not have the optional header fields |
| * accounted for in the nominal download size (LLC/SNAP header, |
| * IPv4 or IPv6 header). |
| */ |
| download_len = packet_len; |
| } |
| |
| if (adf_nbuf_queue_len(&pdev->txnbufq) > 0) { |
| HTT_TX_NBUF_QUEUE_ADD(pdev, msdu); |
| htt_tx_sched(pdev); |
| return 0; |
| } |
| if (HTCSendDataPkt(pdev->htc_pdev, msdu, pdev->htc_endpoint, download_len)){ |
| HTT_TX_NBUF_QUEUE_ADD(pdev, msdu); |
| } |
| |
| return 0; /* success */ |
| |
| } |
| |
| adf_nbuf_t |
| htt_tx_send_batch(htt_pdev_handle pdev, adf_nbuf_t head_msdu, int num_msdus) |
| { |
| adf_os_print("*** %s curently only applies for HL systems\n", __func__); |
| adf_os_assert(0); |
| return head_msdu; |
| |
| } |
| |
| int |
| htt_tx_send_nonstd( |
| htt_pdev_handle pdev, |
| adf_nbuf_t msdu, |
| u_int16_t msdu_id, |
| enum htt_pkt_type pkt_type) |
| { |
| int download_len; |
| |
| /* |
| * The pkt_type could be checked to see what L2 header type is present, |
| * and then the L2 header could be examined to determine its length. |
| * But for simplicity, just use the maximum possible header size, |
| * rather than computing the actual header size. |
| */ |
| download_len = |
| sizeof(struct htt_host_tx_desc_t) + |
| HTT_TX_HDR_SIZE_OUTER_HDR_MAX + /* worst case */ |
| HTT_TX_HDR_SIZE_802_1Q + |
| HTT_TX_HDR_SIZE_LLC_SNAP + |
| ol_cfg_tx_download_size(pdev->ctrl_pdev); |
| adf_os_assert(download_len <= pdev->download_len); |
| return htt_tx_send_std(pdev, msdu, msdu_id); |
| } |
| |
| #else /*ATH_11AC_TXCOMPACT*/ |
| |
| static inline int |
| htt_tx_send_base( |
| htt_pdev_handle pdev, |
| adf_nbuf_t msdu, |
| u_int16_t msdu_id, |
| int download_len) |
| { |
| struct htt_host_tx_desc_t *htt_host_tx_desc; |
| struct htt_htc_pkt *pkt; |
| int packet_len; |
| |
| /* |
| * The HTT tx descriptor was attached as the prefix fragment to the |
| * msdu netbuf during the call to htt_tx_desc_init. |
| * Retrieve it so we can provide its HTC header space to HTC. |
| */ |
| htt_host_tx_desc = (struct htt_host_tx_desc_t *) |
| adf_nbuf_get_frag_vaddr(msdu, 0); |
| |
| pkt = htt_htc_pkt_alloc(pdev); |
| if (!pkt) { |
| return 1; /* failure */ |
| } |
| |
| pkt->msdu_id = msdu_id; |
| pkt->pdev_ctxt = pdev->txrx_pdev; |
| |
| /* packet length includes HTT tx desc frag added above */ |
| packet_len = adf_nbuf_len(msdu); |
| if (packet_len < download_len) { |
| /* |
| * This case of packet length being less than the nominal download |
| * length can happen for a couple reasons: |
| * In HL, the nominal download length is a large artificial value. |
| * In LL, the frame may not have the optional header fields |
| * accounted for in the nominal download size (LLC/SNAP header, |
| * IPv4 or IPv6 header). |
| */ |
| download_len = packet_len; |
| } |
| |
| SET_HTC_PACKET_INFO_TX( |
| &pkt->htc_pkt, |
| pdev->tx_send_complete_part2, |
| (unsigned char *) htt_host_tx_desc, |
| download_len - HTC_HDR_LENGTH, |
| pdev->htc_endpoint, |
| 1); /* tag - not relevant here */ |
| |
| SET_HTC_PACKET_NET_BUF_CONTEXT(&pkt->htc_pkt, msdu); |
| |
| HTCSendDataPkt(pdev->htc_pdev, &pkt->htc_pkt); |
| |
| return 0; /* success */ |
| } |
| |
| adf_nbuf_t |
| htt_tx_send_batch( |
| htt_pdev_handle pdev, |
| adf_nbuf_t head_msdu, int num_msdus) |
| { |
| adf_nbuf_t rejected = NULL; |
| u_int16_t *msdu_id_storage; |
| u_int16_t msdu_id; |
| adf_nbuf_t msdu; |
| |
| /* |
| * FOR NOW, iterate through the batch, sending the frames singly. |
| * Eventually HTC and HIF should be able to accept a batch of |
| * data frames rather than singles. |
| */ |
| msdu = head_msdu; |
| while (num_msdus--) |
| { |
| adf_nbuf_t next_msdu = adf_nbuf_next(msdu); |
| msdu_id_storage = ol_tx_msdu_id_storage(msdu); |
| msdu_id = *msdu_id_storage; |
| /* htt_tx_send_base returns 0 as success and 1 as failure */ |
| if (htt_tx_send_base(pdev, msdu, msdu_id, pdev->download_len)) { |
| adf_nbuf_set_next(msdu, rejected); |
| rejected = msdu; |
| } |
| msdu = next_msdu; |
| } |
| return rejected; |
| } |
| |
| int |
| htt_tx_send_nonstd( |
| htt_pdev_handle pdev, |
| adf_nbuf_t msdu, |
| u_int16_t msdu_id, |
| enum htt_pkt_type pkt_type) |
| { |
| int download_len; |
| |
| /* |
| * The pkt_type could be checked to see what L2 header type is present, |
| * and then the L2 header could be examined to determine its length. |
| * But for simplicity, just use the maximum possible header size, |
| * rather than computing the actual header size. |
| */ |
| download_len = |
| sizeof(struct htt_host_tx_desc_t) + |
| HTT_TX_HDR_SIZE_OUTER_HDR_MAX + /* worst case */ |
| HTT_TX_HDR_SIZE_802_1Q + |
| HTT_TX_HDR_SIZE_LLC_SNAP + |
| ol_cfg_tx_download_size(pdev->ctrl_pdev); |
| return htt_tx_send_base(pdev, msdu, msdu_id, download_len); |
| } |
| |
| int |
| htt_tx_send_std( |
| htt_pdev_handle pdev, |
| adf_nbuf_t msdu, |
| u_int16_t msdu_id) |
| { |
| return htt_tx_send_base(pdev, msdu, msdu_id, pdev->download_len); |
| } |
| |
| #endif /*ATH_11AC_TXCOMPACT*/ |
| #ifdef HTT_DBG |
| void |
| htt_tx_desc_display(void *tx_desc) |
| { |
| struct htt_tx_msdu_desc_t *htt_tx_desc; |
| |
| htt_tx_desc = (struct htt_tx_msdu_desc_t *) tx_desc; |
| |
| /* only works for little-endian */ |
| adf_os_print("HTT tx desc (@ %p):\n", htt_tx_desc); |
| adf_os_print(" msg type = %d\n", htt_tx_desc->msg_type); |
| adf_os_print(" pkt subtype = %d\n", htt_tx_desc->pkt_subtype); |
| adf_os_print(" pkt type = %d\n", htt_tx_desc->pkt_type); |
| adf_os_print(" vdev ID = %d\n", htt_tx_desc->vdev_id); |
| adf_os_print(" ext TID = %d\n", htt_tx_desc->ext_tid); |
| adf_os_print(" postponed = %d\n", htt_tx_desc->postponed); |
| adf_os_print(" batch more = %d\n", htt_tx_desc->more_in_batch); |
| adf_os_print(" length = %d\n", htt_tx_desc->len); |
| adf_os_print(" id = %d\n", htt_tx_desc->id); |
| adf_os_print(" frag desc addr = %#x\n", htt_tx_desc->frags_desc_ptr); |
| if (htt_tx_desc->frags_desc_ptr) { |
| int frag = 0; |
| u_int32_t *base; |
| u_int32_t addr; |
| u_int32_t len; |
| do { |
| base = ((u_int32_t *) htt_tx_desc->frags_desc_ptr) + (frag * 2); |
| addr = *base; |
| len = *(base + 1); |
| if (addr) { |
| adf_os_print( |
| " frag %d: addr = %#x, len = %d\n", frag, addr, len); |
| } |
| frag++; |
| } while (addr); |
| } |
| } |
| #endif |