123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518 |
- /*
- * Copyright (c) 2011-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.
- */
- /**
- * @file cdp_txrx_ops.h
- * @brief Define the host data path converged API functions
- * called by the host control SW and the OS interface module
- */
- #ifndef _CDP_TXRX_CMN_OPS_H_
- #define _CDP_TXRX_CMN_OPS_H_
- #include <cdp_txrx_cmn_struct.h>
- /******************************************************************************
- *
- * Control Interface (A Interface)
- *
- *****************************************************************************/
- struct cdp_cmn_ops {
- int(*txrx_soc_attach_target)(ol_txrx_soc_handle soc);
- int(*txrx_pdev_attach_target)(void *pdev);
- void *(*txrx_vdev_attach)
- (void *pdev, uint8_t *vdev_mac_addr,
- uint8_t vdev_id, enum wlan_op_mode op_mode);
- void(*txrx_vdev_detach)
- (void *vdev, ol_txrx_vdev_delete_cb callback,
- void *cb_context);
- void *(*txrx_pdev_attach)
- (ol_txrx_soc_handle soc, void *ctrl_pdev,
- HTC_HANDLE htc_pdev, qdf_device_t osdev, uint8_t pdev_id);
- void(*txrx_pdev_detach)(void *pdev, int force);
- void *(*txrx_peer_attach)
- (void *vdev, uint8_t *peer_mac_addr);
- void(*txrx_peer_detach)(void *peer);
- int(*txrx_set_monitor_mode)(void *vdev);
- void(*txrx_set_curchan)(void *pdev, uint32_t chan_mhz);
- void (*txrx_set_privacy_filters)
- (void *vdev, void *filter, uint32_t num);
- /********************************************************************
- * Data Interface (B Interface)
- ********************************************************************/
- void(*txrx_vdev_register)(void *vdev,
- void *osif_vdev, struct ol_txrx_ops *txrx_ops);
- int(*txrx_mgmt_send)(void *vdev,
- qdf_nbuf_t tx_mgmt_frm, uint8_t type);
- int(*txrx_mgmt_send_ext)(void *vdev,
- qdf_nbuf_t tx_mgmt_frm, uint8_t type, uint8_t use_6mbps,
- uint16_t chanfreq);
- /**
- * ol_txrx_mgmt_tx_cb - tx management delivery notification
- * callback function
- */
- void(*txrx_mgmt_tx_cb_set)
- (void *pdev, uint8_t type,
- ol_txrx_mgmt_tx_cb download_cb, ol_txrx_mgmt_tx_cb ota_ack_cb,
- void *ctxt);
- int (*txrx_get_tx_pending)(void *pdev);
- /**
- * ol_txrx_data_tx_cb - Function registered with the data path
- * that is called when tx frames marked as "no free" are
- * done being transmitted
- */
- void(*txrx_data_tx_cb_set)(void *data_vdev,
- ol_txrx_data_tx_cb callback, void *ctxt);
- /*******************************************************************
- * Statistics and Debugging Interface (C Inteface)
- ********************************************************************/
- int(*txrx_aggr_cfg)(void *vdev, int max_subfrms_ampdu,
- int max_subfrms_amsdu);
- int(*txrx_fw_stats_get)(void *vdev,
- struct ol_txrx_stats_req *req, bool response_expected);
- int(*txrx_debug)(void *vdev, int debug_specs);
- void(*txrx_fw_stats_cfg)(void *vdev,
- uint8_t cfg_stats_type, uint32_t cfg_val);
- void(*txrx_print_level_set)(unsigned level);
- /**
- * ol_txrx_get_vdev_mac_addr() - Return mac addr of vdev
- * @vdev: vdev handle
- *
- * Return: vdev mac address
- */
- uint8_t *(*txrx_get_vdev_mac_addr)(void *vdev);
- /**
- * ol_txrx_get_vdev_struct_mac_addr() - Return handle to struct qdf_mac_addr of
- * vdev
- * @vdev: vdev handle
- *
- * Return: Handle to struct qdf_mac_addr
- */
- struct qdf_mac_addr *
- (*txrx_get_vdev_struct_mac_addr)(void *vdev);
- /**
- * ol_txrx_get_pdev_from_vdev() - Return handle to pdev of vdev
- * @vdev: vdev handle
- *
- * Return: Handle to pdev
- */
- void *(*txrx_get_pdev_from_vdev)
- (void *vdev);
- /**
- * ol_txrx_get_ctrl_pdev_from_vdev() - Return control pdev of vdev
- * @vdev: vdev handle
- *
- * Return: Handle to control pdev
- */
- void *
- (*txrx_get_ctrl_pdev_from_vdev)(void *vdev);
- void *
- (*txrx_get_vdev_from_vdev_id)(uint8_t vdev_id);
- void (*txrx_soc_detach)(void *soc);
- };
- struct cdp_ctrl_ops {
- int
- (*txrx_mempools_attach)(void *ctrl_pdev);
- int
- (*txrx_set_filter_neighbour_peers)(
- void *pdev,
- u_int32_t val);
- /**
- * @brief set the safemode of the device
- * @details
- * This flag is used to bypass the encrypt and decrypt processes when
- * send and receive packets. It works like open AUTH mode, HW will
- * ctreate all packets as non-encrypt frames because no key installed.
- * For rx fragmented frames,it bypasses all the rx defragmentaion.
- *
- * @param vdev - the data virtual device object
- * @param val - the safemode state
- * @return - void
- */
- void
- (*txrx_set_safemode)(
- void *vdev,
- u_int32_t val);
- /**
- * @brief configure the drop unencrypted frame flag
- * @details
- * Rx related. When set this flag, all the unencrypted frames
- * received over a secure connection will be discarded
- *
- * @param vdev - the data virtual device object
- * @param val - flag
- * @return - void
- */
- void
- (*txrx_set_drop_unenc)(
- void *vdev,
- u_int32_t val);
- /**
- * @brief set the Tx encapsulation type of the VDEV
- * @details
- * This will be used to populate the HTT desc packet type field
- * during Tx
- * @param vdev - the data virtual device object
- * @param val - the Tx encap type
- * @return - void
- */
- void
- (*txrx_set_tx_encap_type)(
- void *vdev,
- enum htt_pkt_type val);
- /**
- * @brief set the Rx decapsulation type of the VDEV
- * @details
- * This will be used to configure into firmware and hardware
- * which format to decap all Rx packets into, for all peers under
- * the VDEV.
- * @param vdev - the data virtual device object
- * @param val - the Rx decap mode
- * @return - void
- */
- void
- (*txrx_set_vdev_rx_decap_type)(
- void *vdev,
- enum htt_pkt_type val);
- /**
- * @brief get the Rx decapsulation type of the VDEV
- *
- * @param vdev - the data virtual device object
- * @return - the Rx decap type
- */
- enum htt_pkt_type
- (*txrx_get_vdev_rx_decap_type)(void *vdev);
- /* Is this similar to ol_txrx_peer_state_update() in MCL */
- /**
- * @brief Update the authorize peer object at association time
- * @details
- * For the host-based implementation of rate-control, it
- * updates the peer/node-related parameters within rate-control
- * context of the peer at association.
- *
- * @param peer - pointer to the node's object
- * @authorize - either to authorize or unauthorize peer
- *
- * @return none
- */
- void
- (*txrx_peer_authorize)(void *peer,
- u_int32_t authorize);
- bool
- (*txrx_set_inact_params)(void *pdev,
- u_int16_t inact_check_interval,
- u_int16_t inact_normal,
- u_int16_t inact_overload);
- bool
- (*txrx_start_inact_timer)(
- void *pdev,
- bool enable);
- /**
- * @brief Set the overload status of the radio
- * @details
- * Set the overload status of the radio, updating the inactivity
- * threshold and inactivity count for each node.
- *
- * @param pdev - the data physical device object
- * @param overload - whether the radio is overloaded or not
- */
- void (*txrx_set_overload)(
- void *pdev,
- bool overload);
- /**
- * @brief Check the inactivity status of the peer/node
- *
- * @param peer - pointer to the node's object
- * @return true if the node is inactive; otherwise return false
- */
- bool
- (*txrx_peer_is_inact)(void *peer);
- /**
- * @brief Mark inactivity status of the peer/node
- * @details
- * If it becomes active, reset inactivity count to reload value;
- * if the inactivity status changed, notify umac band steering.
- *
- * @param peer - pointer to the node's object
- * @param inactive - whether the node is inactive or not
- */
- void (*txrx_mark_peer_inact)(
- void *peer,
- bool inactive);
- /* Should be ol_txrx_ctrl_api.h */
- void (*txrx_set_mesh_mode)(void *vdev, u_int32_t val);
- void (*tx_flush_buffers)(void *vdev);
- int (*txrx_is_target_ar900b)(void *vdev);
- };
- struct cdp_me_ops {
- #if ATH_SUPPORT_ME_FW_BASED
- u_int16_t (*tx_desc_alloc_and_mark_for_mcast_clone)
- (void *pdev, u_int16_t buf_count)
- u_int16_t (*tx_desc_free_and_unmark_for_mcast_clone)(
- void *pdev,
- u_int16_t buf_count);
- u_int16_t
- (*tx_get_mcast_buf_allocated_marked)
- (void *pdev);
- #else
- void
- (*tx_me_alloc_descriptor)(void *pdev);
- void
- (*tx_me_free_descriptor)(void *pdev);
- uint16_t
- (*tx_me_convert_ucast)(void *vdev,
- qdf_nbuf_t wbuf, u_int8_t newmac[][6],
- uint8_t newmaccnt);
- #endif
- /* Should be a function pointer in ol_txrx_osif_ops{} */
- #if ATH_MCAST_HOST_INSPECT
- /**
- * @brief notify mcast frame indication from FW.
- * @details
- * This notification will be used to convert
- * multicast frame to unicast.
- *
- * @param pdev - handle to the ctrl SW's physical device object
- * @param vdev_id - ID of the virtual device received the special data
- * @param msdu - the multicast msdu returned by FW for host inspect
- */
- int (*mcast_notify)(void *pdev,
- u_int8_t vdev_id, qdf_nbuf_t msdu);
- #endif
- };
- struct cdp_mon_ops {
- void (*txrx_monitor_set_filter_ucast_data)
- (void *, u_int8_t val);
- void (*txrx_monitor_set_filter_mcast_data)
- (void *, u_int8_t val);
- void (*txrx_monitor_set_filter_non_data)
- (void *, u_int8_t val);
- u_int8_t (*txrx_monitor_get_filter_ucast_data)
- (void *vdev_txrx_handle);
- u_int8_t (*txrx_monitor_get_filter_mcast_data)
- (void *vdev_txrx_handle);
- u_int8_t (*txrx_monitor_get_filter_non_data)
- (void *vdev_txrx_handle);
- int (*txrx_reset_monitor_mode)(void *pdev);
- };
- struct cdp_host_stats_ops {
- #if WLAN_FEATURE_FASTPATH
- int (*txrx_host_stats_get)(void *vdev,
- struct ol_txrx_stats_req *req);
- void (*txrx_host_stats_clr)(void *vdev);
- void (*txrx_host_ce_stats)(void *vdev);
- int (*txrx_stats_publish)(void *pdev,
- struct ol_txrx_stats *buf);
- /**
- * @brief Enable enhanced stats functionality.
- *
- * @param pdev - the physical device object
- * @return - void
- */
- void (*txrx_enable_enhanced_stats)(void *pdev);
- /**
- * @brief Disable enhanced stats functionality.
- *
- * @param pdev - the physical device object
- * @return - void
- */
- void (*txrx_disable_enhanced_stats)(void *pdev);
- #if ENHANCED_STATS
- /**
- * @brief Get the desired stats from the message.
- *
- * @param pdev - the physical device object
- * @param stats_base - stats buffer recieved from FW
- * @param type - stats type.
- * @return - pointer to requested stat identified by type
- */
- uint32_t*(*txrx_get_stats_base)(void *pdev,
- uint32_t *stats_base, uint32_t msg_len, uint8_t type);
- #endif
- #endif /* WLAN_FEATURE_FASTPATH*/
- #if (HOST_SW_TSO_ENABLE || HOST_SW_TSO_SG_ENABLE)
- void
- (*tx_print_tso_stats)(void *vdev);
- void
- (*tx_rst_tso_stats)(void *vdev);
- #endif /* HOST_SW_TSO_ENABLE || HOST_SW_TSO_SG_ENABLE */
- #if HOST_SW_SG_ENABLE
- void
- (*tx_print_sg_stats)(void *vdev);
- void
- (*tx_rst_sg_stats)(void *vdev);
- #endif /* HOST_SW_SG_ENABLE */
- #if RX_CHECKSUM_OFFLOAD
- void
- (*print_rx_cksum_stats)(void *vdev);
- void
- (*rst_rx_cksum_stats)(void *vdev);
- #endif /* RX_CHECKSUM_OFFLOAD */
- #if (ATH_SUPPORT_IQUE && WLAN_FEATURE_FASTPATH)
- A_STATUS
- (*txrx_host_me_stats)(void *vdev);
- #endif /* WLAN_FEATURE_FASTPATH */
- #if PEER_FLOW_CONTROL
- void
- (*txrx_per_peer_stats)(void *pdev, char *addr);
- #endif
- #if WLAN_FEATURE_FASTPATH && PEER_FLOW_CONTROL
- int (*txrx_host_msdu_ttl_stats)(void *vdev,
- struct ol_txrx_stats_req *req);
- #endif
- #if HOST_SW_LRO_ENABLE
- void
- (*print_lro_stats)(void *vdev);
- void
- (*reset_lro_stats)(void *vdev);
- #endif /* HOST_SW_LRO_ENABLE */
- };
- struct cdp_wds_ops {
- #if WDS_VENDOR_EXTENSION
- void
- (*txrx_set_wds_rx_policy)(void *vdev,
- u_int32_t val);
- #endif
- };
- struct cdp_raw_ops {
- int (*txrx_get_nwifi_mode)(void *vdev);
- int
- (*rsim_tx_encap)(void *vdev, qdf_nbuf_t *pnbuf);
- };
- struct cdp_pflow_ops {
- #if PEER_FLOW_CONTROL
- uint32_t(*pflow_update_pdev_params)(void *,
- ol_ath_param_t, uint32_t, void *);
- #endif
- };
- struct cdp_mob_drv_ops {
- /* FIXME to be fixed */
- };
- struct ol_if_ops {
- void (*peer_set_default_routing)(void *scn_handle,
- uint8_t *peer_macaddr, uint8_t vdev_id,
- bool hash_based, uint8_t ring_num);
- int (*peer_rx_reorder_queue_setup)(void *ol_soc_handle,
- uint8_t vdev_id, uint8_t *peer_mac,
- qdf_dma_addr_t hw_qdesc, int tid, uint16_t queue_num);
- int (*peer_rx_reorder_queue_remove)(void *ol_soc_handle,
- uint8_t vdev_id, uint8_t *peer_macaddr,
- uint32_t tid_mask);
- /* TODO: Add any other control path calls required to OL_IF/WMA layer */
- };
- struct cdp_ops {
- struct cdp_cmn_ops *cmn_drv_ops;
- struct cdp_ctrl_ops *ctrl_ops;
- struct cdp_me_ops *me_ops;
- struct cdp_mon_ops *mon_ops;
- struct cdp_host_stats_ops *host_stats_ops;
- struct cdp_wds_ops *wds_ops;
- struct cdp_raw_ops *raw_ops;
- struct cdp_pflow_ops *pflow_ops;
- struct cdp_mob_ops *mob_drv_ops;
- };
- #endif
|