Home
last modified time | relevance | path

Searched refs:tx_path (Results 1 – 9 of 9) sorted by relevance

/linux-6.1.9/drivers/net/wireless/realtek/rtw88/
Drtw8822b.c20 static void rtw8822b_config_trx_mode(struct rtw_dev *rtwdev, u8 tx_path,
719 static void rtw8822b_config_trx_mode(struct rtw_dev *rtwdev, u8 tx_path, in rtw8822b_config_trx_mode() argument
734 if ((tx_path | rx_path) & BB_PATH_A) in rtw8822b_config_trx_mode()
739 if ((tx_path | rx_path) & BB_PATH_B) in rtw8822b_config_trx_mode()
748 if (tx_path & BB_PATH_A) { in rtw8822b_config_trx_mode()
751 } else if (tx_path & BB_PATH_B) { in rtw8822b_config_trx_mode()
756 if (tx_path == BB_PATH_A || tx_path == BB_PATH_B) in rtw8822b_config_trx_mode()
761 tx_path_sel = (tx_path << 4) | tx_path; in rtw8822b_config_trx_mode()
764 if (tx_path != BB_PATH_A && tx_path != BB_PATH_B) { in rtw8822b_config_trx_mode()
Drtw8822c.c23 static void rtw8822c_config_trx_mode(struct rtw_dev *rtwdev, u8 tx_path,
2460 static void rtw8822c_config_cck_tx_path(struct rtw_dev *rtwdev, u8 tx_path, in rtw8822c_config_cck_tx_path() argument
2463 if (tx_path == BB_PATH_A) { in rtw8822c_config_cck_tx_path()
2465 } else if (tx_path == BB_PATH_B) { in rtw8822c_config_cck_tx_path()
2476 static void rtw8822c_config_ofdm_tx_path(struct rtw_dev *rtwdev, u8 tx_path, in rtw8822c_config_ofdm_tx_path() argument
2479 if (tx_path == BB_PATH_A) { in rtw8822c_config_ofdm_tx_path()
2482 } else if (tx_path == BB_PATH_B) { in rtw8822c_config_ofdm_tx_path()
2500 static void rtw8822c_config_tx_path(struct rtw_dev *rtwdev, u8 tx_path, in rtw8822c_config_tx_path() argument
2506 rtw8822c_config_ofdm_tx_path(rtwdev, tx_path, tx_path_sel_1ss); in rtw8822c_config_tx_path()
2510 static void rtw8822c_config_trx_mode(struct rtw_dev *rtwdev, u8 tx_path, in rtw8822c_config_trx_mode() argument
[all …]
Dmain.h868 void (*config_tx_path)(struct rtw_dev *rtwdev, u8 tx_path,
872 void (*config_txrx_mode)(struct rtw_dev *rtwdev, u8 tx_path,
/linux-6.1.9/drivers/net/wireless/realtek/rtw89/
Drtw8852a.h107 void rtw8852a_bb_cfg_tx_path(struct rtw89_dev *rtwdev, u8 tx_path);
Drtw8852a.c1684 void rtw8852a_bb_cfg_tx_path(struct rtw89_dev *rtwdev, u8 tx_path) in rtw8852a_bb_cfg_tx_path() argument
1691 rtw89_debug(rtwdev, RTW89_DBG_TSSI, "PMAC CFG Tx Path = %d", tx_path); in rtw8852a_bb_cfg_tx_path()
1693 if (tx_path == RF_PATH_A) { in rtw8852a_bb_cfg_tx_path()
1698 } else if (tx_path == RF_PATH_B) { in rtw8852a_bb_cfg_tx_path()
1703 } else if (tx_path == RF_PATH_AB) { in rtw8852a_bb_cfg_tx_path()
1723 if (tx_path == RF_PATH_A) { in rtw8852a_bb_cfg_tx_path()
Drtw8852c.c161 static void rtw8852c_ctrl_tx_path_tmac(struct rtw89_dev *rtwdev, u8 tx_path,
2397 static void rtw8852c_ctrl_tx_path_tmac(struct rtw89_dev *rtwdev, u8 tx_path, in rtw8852c_ctrl_tx_path_tmac() argument
2428 if (tx_path == RF_A) { in rtw8852c_ctrl_tx_path_tmac()
2434 } else if (tx_path == RF_B) { in rtw8852c_ctrl_tx_path_tmac()
2440 } else if (tx_path == RF_AB) { in rtw8852c_ctrl_tx_path_tmac()
2447 rtw89_warn(rtwdev, "[Invalid Tx Path]Tx Path: %d\n", tx_path); in rtw8852c_ctrl_tx_path_tmac()
/linux-6.1.9/drivers/thunderbolt/
Dtunnel.c1153 const struct tb_path *tx_path = NULL, *rx_path = NULL; in tb_tunnel_match_dma() local
1166 tx_path = path; in tb_tunnel_match_dma()
1172 if (!tx_path) in tb_tunnel_match_dma()
1175 (tx_path->hops[0].in_hop_index != transmit_ring)) in tb_tunnel_match_dma()
1178 (tx_path->hops[tx_path->path_length - 1].next_hop_index != transmit_path)) in tb_tunnel_match_dma()
/linux-6.1.9/net/core/
Ddev.c3355 static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path) in skb_needs_check() argument
3357 if (tx_path) in skb_needs_check()
3378 netdev_features_t features, bool tx_path) in __skb_gso_segment() argument
3382 if (unlikely(skb_needs_check(skb, tx_path))) { in __skb_gso_segment()
3415 if (segs != skb && unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs))) in __skb_gso_segment()
/linux-6.1.9/include/linux/
Dnetdevice.h4760 netdev_features_t features, bool tx_path);