1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /*
- * Copyright (c) 2011, 2014 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 ol_tx_send.h
- * @brief API definitions for the tx sendriptor module within the data SW.
- */
- #ifndef _OL_TX_SEND__H_
- #define _OL_TX_SEND__H_
- #include <cdf_nbuf.h> /* cdf_nbuf_t */
- #include <ol_txrx_types.h> /* ol_tx_send_t */
- /**
- * @flush the ol tx when surprise remove.
- *
- */
- void ol_tx_discard_target_frms(ol_txrx_pdev_handle pdev);
- /**
- * @brief Send a tx frame to the target.
- * @details
- *
- * @param pdev - the phy dev
- * @param vdev - the virtual device sending the data
- * (for specifying the transmitter address for multicast / broadcast data)
- * @param netbuf - the tx frame
- */
- void
- ol_tx_send(struct ol_txrx_pdev_t *pdev,
- struct ol_tx_desc_t *tx_desc, cdf_nbuf_t msdu);
- /**
- * @brief Send a tx batch download to the target.
- * @details
- * This function is different from above in that
- * it accepts a list of msdu's to be downloaded as a batch
- *
- * @param pdev - the phy dev
- * @param msdu_list - the Head pointer to the Tx Batch
- * @param num_msdus - Total msdus chained in msdu_list
- */
- int
- ol_tx_send_batch(struct ol_txrx_pdev_t *pdev,
- cdf_nbuf_t msdu_list, int num_msdus);
- /**
- * @brief Send a tx frame with a non-std header or payload type to the target.
- * @details
- *
- * @param pdev - the phy dev
- * @param vdev - the virtual device sending the data
- * (for specifying the transmitter address for multicast / broadcast data)
- * @param netbuf - the tx frame
- * @param pkt_type - what kind of non-std frame is being sent
- */
- void
- ol_tx_send_nonstd(struct ol_txrx_pdev_t *pdev,
- struct ol_tx_desc_t *tx_desc,
- cdf_nbuf_t msdu, enum htt_pkt_type pkt_type);
- #endif /* _OL_TX_SEND__H_ */
|