Home
last modified time | relevance | path

Searched refs:MT_TXD_SIZE (Results 1 – 14 of 14) sorted by relevance

/drivers/net/wireless/mediatek/mt76/mt7615/
Dpci_mac.c59 tx_info->buf[0].len = MT_TXD_SIZE + sizeof(*txp); in mt7615_write_hw_txp()
107 tx_info->buf[0].len = MT_TXD_SIZE + sizeof(*txp); in mt7615_write_fw_txp()
174 txp = txwi + MT_TXD_SIZE; in mt7615_tx_prepare_skb()
Dmac.h158 #define MT_TXD_SIZE (8 * 4) macro
160 #define MT_USB_TXD_SIZE (MT_TXD_SIZE + 8 * 4)
430 return (struct mt7615_txp_common *)(txwi + MT_TXD_SIZE); in mt7615_txwi_to_txp()
Dmmio.c176 .txwi_size = MT_TXD_SIZE + sizeof(struct mt7615_txp_common), in mt7615_mmio_probe()
Dmcu.c736 if (skb->len > 512 - MT_TXD_SIZE) { in mt7615_mcu_add_beacon_offload()
749 memcpy(req.pkt + MT_TXD_SIZE, skb->data, skb->len); in mt7615_mcu_add_beacon_offload()
750 req.pkt_len = cpu_to_le16(MT_TXD_SIZE + skb->len); in mt7615_mcu_add_beacon_offload()
751 req.tim_ie_pos = cpu_to_le16(MT_TXD_SIZE + offs.tim_offset); in mt7615_mcu_add_beacon_offload()
755 csa_offs = MT_TXD_SIZE + offs.cntdwn_counter_offs[0] - 4; in mt7615_mcu_add_beacon_offload()
1807 if (skb->len > 512 - MT_TXD_SIZE) { in mt7615_mcu_uni_add_beacon_offload()
1815 memcpy(req.beacon_tlv.pkt + MT_TXD_SIZE, skb->data, skb->len); in mt7615_mcu_uni_add_beacon_offload()
1816 req.beacon_tlv.pkt_len = cpu_to_le16(MT_TXD_SIZE + skb->len); in mt7615_mcu_uni_add_beacon_offload()
1817 req.beacon_tlv.tim_ie_pos = cpu_to_le16(MT_TXD_SIZE + offs.tim_offset); in mt7615_mcu_uni_add_beacon_offload()
1822 csa_offs = MT_TXD_SIZE + offs.cntdwn_counter_offs[0] - 4; in mt7615_mcu_uni_add_beacon_offload()
Dmac.c540 u32 val, sz_txd = is_mmio ? MT_TXD_SIZE : MT_USB_TXD_SIZE; in mt7615_mac_write_txwi()
/drivers/net/wireless/mediatek/mt76/mt7603/
Ddma.c51 if (skb->len < MT_TXD_SIZE + sizeof(struct ieee80211_hdr)) in mt7603_rx_loopback_skb()
72 hdr = (struct ieee80211_hdr *)&skb->data[MT_TXD_SIZE]; in mt7603_rx_loopback_skb()
Dmac.h128 #define MT_TXD_SIZE (8 * 4) macro
Dinit.c9 .txwi_size = MT_TXD_SIZE,
Dmain.c414 hdr = (struct ieee80211_hdr *)&skb->data[MT_TXD_SIZE]; in mt7603_ps_set_more_data()
Dmac.c932 val = FIELD_PREP(MT_TXD0_TX_BYTES, skb->len + MT_TXD_SIZE) | in mt7603_mac_write_txwi()
/drivers/net/wireless/mediatek/mt76/mt7915/
Dmac.h164 #define MT_TXD_SIZE (8 * 4) macro
326 return (struct mt7915_txp *)(txwi + MT_TXD_SIZE); in mt7915_txwi_to_txp()
Dpci.c102 .txwi_size = MT_TXD_SIZE + sizeof(struct mt7915_txp), in mt7915_pci_probe()
Dmac.c625 val = FIELD_PREP(MT_TXD0_TX_BYTES, skb->len + MT_TXD_SIZE) | in mt7915_mac_write_txwi()
731 txp = (struct mt7915_txp *)(txwi + MT_TXD_SIZE); in mt7915_tx_prepare_skb()
Dmcu.c2404 int len = sizeof(*cont) + MT_TXD_SIZE + skb->len; in mt7915_mcu_beacon_cont()
2410 cont->pkt_len = cpu_to_le16(MT_TXD_SIZE + skb->len); in mt7915_mcu_beacon_cont()
2419 memcpy(buf + MT_TXD_SIZE, skb->data, skb->len); in mt7915_mcu_beacon_cont()
2440 if (skb->len > MAX_BEACON_SIZE - MT_TXD_SIZE) { in mt7915_mcu_add_beacon()