Home
last modified time | relevance | path

Searched refs:txpd (Results 1 – 15 of 15) sorted by relevance

/linux-6.3-rc2/drivers/net/wireless/marvell/libertas/
A Dtx.c69 struct txpd *txpd; in lbs_hard_start_xmit() local
110 txpd = (void *)priv->tx_pending_buf; in lbs_hard_start_xmit()
111 memset(txpd, 0, sizeof(struct txpd)); in lbs_hard_start_xmit()
116 BUILD_BUG_ON(sizeof(txpd->tx_dest_addr) != ETH_ALEN); in lbs_hard_start_xmit()
131 memcpy(&txpd->tx_dest_addr, p802x_hdr, ETH_ALEN); in lbs_hard_start_xmit()
134 txpd->tx_packet_length = cpu_to_le16(pkt_len); in lbs_hard_start_xmit()
135 txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd)); in lbs_hard_start_xmit()
137 lbs_mesh_set_txpd(priv, dev, txpd); in lbs_hard_start_xmit()
139 lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) &txpd, sizeof(struct txpd)); in lbs_hard_start_xmit()
143 memcpy(&txpd[1], p802x_hdr, le16_to_cpu(txpd->tx_packet_length)); in lbs_hard_start_xmit()
[all …]
A Dmesh.h35 struct txpd;
40 struct net_device *dev, struct txpd *txpd);
69 #define lbs_mesh_set_txpd(priv, dev, txpd) do { } while (0) argument
A Dmesh.c1068 struct net_device *dev, struct txpd *txpd) in lbs_mesh_set_txpd() argument
1072 txpd->tx_control |= cpu_to_le32(TxPD_MESH_FRAME); in lbs_mesh_set_txpd()
1074 txpd->u.bss.bss_num = MESH_IFACE_ID; in lbs_mesh_set_txpd()
A Ddefs.h263 (ETH_FRAME_LEN + sizeof(struct txpd) + EXTRA_LEN)
A Dhost.h292 struct txpd { struct
/linux-6.3-rc2/drivers/net/wireless/marvell/mwifiex/
A Duap_txrx.c449 struct uap_txpd *txpd; in mwifiex_process_uap_txpd() local
469 skb_push(skb, sizeof(*txpd) + pad); in mwifiex_process_uap_txpd()
471 txpd = (struct uap_txpd *)skb->data; in mwifiex_process_uap_txpd()
472 memset(txpd, 0, sizeof(*txpd)); in mwifiex_process_uap_txpd()
473 txpd->bss_num = priv->bss_num; in mwifiex_process_uap_txpd()
474 txpd->bss_type = priv->bss_type; in mwifiex_process_uap_txpd()
475 txpd->tx_pkt_length = cpu_to_le16((u16)(skb->len - (sizeof(*txpd) + in mwifiex_process_uap_txpd()
477 txpd->priority = (u8)skb->priority; in mwifiex_process_uap_txpd()
492 txpd->tx_control = in mwifiex_process_uap_txpd()
496 pkt_offset = sizeof(*txpd) + pad; in mwifiex_process_uap_txpd()
[all …]
A Dsta_tx.c36 struct txpd *local_tx_pd; in mwifiex_process_sta_txpd()
57 local_tx_pd = (struct txpd *) skb->data; in mwifiex_process_sta_txpd()
58 memset(local_tx_pd, 0, sizeof(struct txpd)); in mwifiex_process_sta_txpd()
62 (sizeof(struct txpd) + in mwifiex_process_sta_txpd()
97 pkt_offset = sizeof(struct txpd) + pad; in mwifiex_process_sta_txpd()
125 struct txpd *local_tx_pd; in mwifiex_send_null_packet()
156 (sizeof(struct txpd) + adapter->intf_hdr_len); in mwifiex_send_null_packet()
157 skb_reserve(skb, sizeof(struct txpd) + adapter->intf_hdr_len); in mwifiex_send_null_packet()
158 skb_push(skb, sizeof(struct txpd)); in mwifiex_send_null_packet()
160 local_tx_pd = (struct txpd *) skb->data; in mwifiex_send_null_packet()
[all …]
A D11n_aggr.c90 struct txpd *local_tx_pd; in mwifiex_11n_form_amsdu_txpd()
95 local_tx_pd = (struct txpd *) skb->data; in mwifiex_11n_form_amsdu_txpd()
96 memset(local_tx_pd, 0, sizeof(struct txpd)); in mwifiex_11n_form_amsdu_txpd()
105 local_tx_pd->tx_pkt_offset = cpu_to_le16(sizeof(struct txpd)); in mwifiex_11n_form_amsdu_txpd()
154 struct txpd *ptx_pd = NULL; in mwifiex_11n_aggregate_pkt()
174 skb_reserve(skb_aggr, headroom + sizeof(struct txpd)); in mwifiex_11n_aggregate_pkt()
227 ptx_pd = (struct txpd *)skb_aggr->data; in mwifiex_11n_aggregate_pkt()
238 tx_param.next_pkt_len = skb_src->len + sizeof(struct txpd); in mwifiex_11n_aggregate_pkt()
A Dtxrx.c78 struct txpd *local_tx_pd = NULL; in mwifiex_process_tx()
104 local_tx_pd = (struct txpd *)(head_ptr + hroom); in mwifiex_process_tx()
154 struct txpd *local_tx_pd = NULL; in mwifiex_host_to_card()
171 local_tx_pd = (struct txpd *)(head_ptr + adapter->intf_hdr_len); in mwifiex_host_to_card()
A Dusb.c937 (sizeof(struct txpd) + adapter->intf_hdr_len); in mwifiex_usb_prepare_tx_aggr_skb()
965 struct txpd *local_tx_pd = in mwifiex_usb_aggr_tx_data()
966 (struct txpd *)((u8 *)skb->data + adapter->intf_hdr_len); in mwifiex_usb_aggr_tx_data()
A Dwmm.c1264 sizeof(struct txpd) : 0); in mwifiex_send_single_packet()
1353 sizeof(struct txpd) : 0); in mwifiex_send_processed_packet()
A Dfw.h668 struct txpd { struct
/linux-6.3-rc2/drivers/net/wireless/marvell/libertas_tf/
A Dmain.c202 struct txpd *txpd; in lbtf_tx_work() local
221 txpd = skb_push(skb, sizeof(struct txpd)); in lbtf_tx_work()
229 memset(txpd, 0, sizeof(struct txpd)); in lbtf_tx_work()
231 txpd->tx_control |= cpu_to_le32(MRVL_PER_PACKET_RATE | in lbtf_tx_work()
235 BUILD_BUG_ON(sizeof(txpd->tx_dest_addr) != ETH_ALEN); in lbtf_tx_work()
236 memcpy(&txpd->tx_dest_addr, skb->data + sizeof(struct txpd) + 4, in lbtf_tx_work()
238 txpd->tx_packet_length = cpu_to_le16(len); in lbtf_tx_work()
239 txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd)); in lbtf_tx_work()
576 hw->extra_tx_headroom = sizeof(struct txpd); in lbtf_add_card()
665 skb_pull(priv->tx_skb, sizeof(struct txpd)); in lbtf_send_tx_feedback()
A Dlibertas_tf.h131 (ETH_FRAME_LEN + sizeof(struct txpd) + EXTRA_LEN)
263 struct txpd { struct
/linux-6.3-rc2/drivers/net/ethernet/sfc/falcon/
A Dtxc43128_phy.c375 int txpd = (1 << TXC_ATXCTL_TXPD3_LBN) | (1 << TXC_ATXCTL_TXPD2_LBN) in txc_analog_lane_power() local
383 txctl &= ~txpd; in txc_analog_lane_power()
386 txctl |= txpd; in txc_analog_lane_power()

Completed in 38 milliseconds