/linux-4.4.14/drivers/net/wireless/ath/ath10k/ |
D | htc.c | 51 static inline void ath10k_htc_restore_tx_skb(struct ath10k_htc *htc, in ath10k_htc_restore_tx_skb() argument 56 dma_unmap_single(htc->ar->dev, skb_cb->paddr, skb->len, DMA_TO_DEVICE); in ath10k_htc_restore_tx_skb() 63 struct ath10k *ar = ep->htc->ar; in ath10k_htc_notify_tx_completion() 68 ath10k_htc_restore_tx_skb(ep->htc, skb); in ath10k_htc_notify_tx_completion() 76 ep->ep_ops.ep_tx_complete(ep->htc->ar, skb); in ath10k_htc_notify_tx_completion() 91 spin_lock_bh(&ep->htc->tx_lock); in ath10k_htc_prepare_tx_skb() 93 spin_unlock_bh(&ep->htc->tx_lock); in ath10k_htc_prepare_tx_skb() 96 int ath10k_htc_send(struct ath10k_htc *htc, in ath10k_htc_send() argument 100 struct ath10k *ar = htc->ar; in ath10k_htc_send() 101 struct ath10k_htc_ep *ep = &htc->endpoint[eid]; in ath10k_htc_send() [all …]
|
D | htc.h | 306 struct ath10k_htc *htc; member 348 int ath10k_htc_wait_target(struct ath10k_htc *htc); 349 int ath10k_htc_start(struct ath10k_htc *htc); 350 int ath10k_htc_connect_service(struct ath10k_htc *htc, 353 int ath10k_htc_send(struct ath10k_htc *htc, enum ath10k_htc_ep_id eid,
|
D | htt_tx.c | 215 ret = ath10k_htc_send(&htt->ar->htc, htt->eid, skb); in ath10k_htt_h2t_ver_req_msg() 255 ret = ath10k_htc_send(&htt->ar->htc, htt->eid, skb); in ath10k_htt_h2t_stats_req() 298 ret = ath10k_htc_send(&htt->ar->htc, htt->eid, skb); in ath10k_htt_send_frag_desc_bank_cfg() 386 ret = ath10k_htc_send(&htt->ar->htc, htt->eid, skb); in ath10k_htt_send_rx_ring_cfg_ll() 433 ret = ath10k_htc_send(&htt->ar->htc, htt->eid, skb); in ath10k_htt_h2t_aggr_cfg_msg() 508 res = ath10k_htc_send(&htt->ar->htc, htt->eid, txdesc); in ath10k_htt_mgmt_tx() 713 htt->ar->htc.endpoint[htt->eid].ul_pipe_id, in ath10k_htt_tx()
|
D | Makefile | 5 htc.o \
|
D | htt.c | 157 status = ath10k_htc_connect_service(&htt->ar->htc, &conn_req, in ath10k_htt_connect()
|
D | core.c | 1579 ar->htc.htc_ops.target_send_suspend_complete = in ath10k_core_start() 1622 status = ath10k_htc_wait_target(&ar->htc); in ath10k_core_start() 1642 status = ath10k_htc_start(&ar->htc); in ath10k_core_start()
|
D | core.h | 634 struct ath10k_htc htc; member
|
D | wmi.c | 1645 ret = ath10k_htc_send(&ar->htc, ar->wmi.eid, skb); in ath10k_wmi_cmd_send_nowait() 5099 status = ath10k_htc_connect_service(&ar->htc, &conn_req, &conn_resp); in ath10k_wmi_connect()
|
/linux-4.4.14/net/mac80211/ |
D | debugfs_sta.c | 221 struct ieee80211_sta_ht_cap *htc = &sta->sta.ht_cap; in sta_ht_capa_read() local 224 htc->ht_supported ? "" : "not "); in sta_ht_capa_read() 225 if (htc->ht_supported) { in sta_ht_capa_read() 226 p += scnprintf(p, sizeof(buf)+buf-p, "cap: %#.4x\n", htc->cap); in sta_ht_capa_read() 228 PRINT_HT_CAP((htc->cap & BIT(0)), "RX LDPC"); in sta_ht_capa_read() 229 PRINT_HT_CAP((htc->cap & BIT(1)), "HT20/HT40"); in sta_ht_capa_read() 230 PRINT_HT_CAP(!(htc->cap & BIT(1)), "HT20"); in sta_ht_capa_read() 232 PRINT_HT_CAP(((htc->cap >> 2) & 0x3) == 0, "Static SM Power Save"); in sta_ht_capa_read() 233 PRINT_HT_CAP(((htc->cap >> 2) & 0x3) == 1, "Dynamic SM Power Save"); in sta_ht_capa_read() 234 PRINT_HT_CAP(((htc->cap >> 2) & 0x3) == 3, "SM Power Save disabled"); in sta_ht_capa_read() [all …]
|
/linux-4.4.14/drivers/net/wireless/ath/ath9k/ |
D | wmi.c | 249 int ath9k_wmi_connect(struct htc_target *htc, struct wmi *wmi, in ath9k_wmi_connect() argument 255 wmi->htc = htc; in ath9k_wmi_connect() 264 ret = htc_connect_service(htc, &connect, &wmi->ctrl_epid); in ath9k_wmi_connect() 288 return htc_send_epid(wmi->htc, skb, wmi->ctrl_epid); in ath9k_wmi_cmd_issue()
|
D | htc_drv_init.c | 83 if (atomic_read(&priv->htc->tgt_ready) > 0) { in ath9k_htc_wait_for_target() 84 atomic_dec(&priv->htc->tgt_ready); in ath9k_htc_wait_for_target() 89 time_left = wait_for_completion_timeout(&priv->htc->target_wait, HZ); in ath9k_htc_wait_for_target() 95 atomic_dec(&priv->htc->tgt_ready); in ath9k_htc_wait_for_target() 137 return htc_connect_service(priv->htc, &req, ep_id); in ath9k_htc_connect_svc() 146 ret = ath9k_wmi_connect(priv->htc, priv->wmi, &priv->wmi_cmd_ep); in ath9k_init_htc_services() 206 priv->htc->credits = 45; in ath9k_init_htc_services() 208 priv->htc->credits = 33; in ath9k_init_htc_services() 210 ret = htc_init(priv->htc); in ath9k_init_htc_services() 215 priv->htc->credits); in ath9k_init_htc_services() [all …]
|
D | wmi.h | 150 struct htc_target *htc; member 183 int ath9k_wmi_connect(struct htc_target *htc, struct wmi *wmi,
|
D | htc_hst.c | 493 void ath9k_htc_hw_free(struct htc_target *htc) in ath9k_htc_hw_free() argument 495 kfree(htc); in ath9k_htc_hw_free()
|
D | htc_hst.h | 224 void ath9k_htc_hw_free(struct htc_target *htc);
|
D | htc_drv_main.c | 229 htc_start(priv->htc); in ath9k_htc_reset() 308 htc_start(priv->htc); in ath9k_htc_set_channel() 961 htc_start(priv->htc); in ath9k_htc_start() 1353 htc_sta_drain(priv->htc, ista->index); in ath9k_htc_sta_remove()
|
D | htc.h | 455 struct htc_target *htc; member
|
D | htc_drv_beacon.c | 250 ret = htc_send(priv->htc, beacon); in ath9k_htc_send_beacon()
|
D | htc_drv_txrx.c | 384 return htc_send(priv->htc, skb); in ath9k_htc_tx_start() 546 htc_stop(priv->htc); in ath9k_htc_tx_drain()
|
/linux-4.4.14/drivers/mfd/ |
D | Makefile | 20 obj-$(CONFIG_HTC_EGPIO) += htc-egpio.o 21 obj-$(CONFIG_HTC_PASIC3) += htc-pasic3.o 22 obj-$(CONFIG_HTC_I2CPLD) += htc-i2cpld.o
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/ |
D | mac.h | 133 u32 htc:1; member
|
/linux-4.4.14/drivers/staging/rtl8723au/include/ |
D | rtl8723a_xmit.h | 75 u32 htc:1; member
|
D | rtl8723a_hal.h | 455 u32 htc:1; member
|
/linux-4.4.14/drivers/staging/rtl8712/ |
D | rtl871x_recv.h | 72 u8 htc; member
|
D | rtl8712_recv.c | 187 pattrib->htc = (u8)((le32_to_cpu(prxstat->rxdw3) >> 14) & 0x1); in update_recvframe_attrib_from_recvstat() 852 if (prframe->u.hdr.attrib.htc && in query_rx_phy_status()
|
/linux-4.4.14/drivers/net/wireless/realtek/rtl8xxxu/ |
D | rtl8xxxu.h | 107 u32 htc:1; member 170 u32 htc:1;
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723be/ |
D | trx.h | 443 u32 htc:1; member 586 u32 htc:1; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ |
D | trx.h | 438 u32 htc:1; member 581 u32 htc:1; member
|
/linux-4.4.14/drivers/isdn/act2000/ |
D | capi.h | 99 __u16 htc; member
|
D | capi.c | 967 printk(KERN_DEBUG " ncpi.htc = 0x%04x\n", ncpi->htc); in actcapi_debug_ncpi()
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192de/ |
D | trx.h | 574 u32 htc:1; member 713 u32 htc:1; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/ |
D | trx.h | 542 u32 htc:1; member 681 u32 htc:1; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ |
D | trx.h | 557 u32 htc:1; member 696 u32 htc:1; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/ |
D | trx.h | 613 u32 htc:1; member 756 u32 htc:1; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/ |
D | trx.h | 670 u32 htc:1; member 813 u32 htc:1; member
|