Searched refs:phystat (Results 1 – 8 of 8) sorted by relevance
/Linux-v6.1/drivers/net/wireless/realtek/rtw89/ |
D | phy.c | 2574 ewma_thermal_read(&rtwdev->phystat.avg_thermal[0])); in rtw89_phy_cfo_track() 2598 struct rtw89_phy_stat *phystat = &rtwdev->phystat; in rtw89_phy_stat_thermal_update() local 2605 ewma_thermal_add(&phystat->avg_thermal[i], th); in rtw89_phy_stat_thermal_update() 2609 ewma_thermal_read(&phystat->avg_thermal[i])); in rtw89_phy_stat_thermal_update() 2659 struct rtw89_phy_stat *phystat = &rtwdev->phystat; in rtw89_phy_stat_init() local 2663 ewma_thermal_init(&phystat->avg_thermal[i]); in rtw89_phy_stat_init() 2667 memset(&phystat->cur_pkt_stat, 0, sizeof(phystat->cur_pkt_stat)); in rtw89_phy_stat_init() 2668 memset(&phystat->last_pkt_stat, 0, sizeof(phystat->last_pkt_stat)); in rtw89_phy_stat_init() 2673 struct rtw89_phy_stat *phystat = &rtwdev->phystat; in rtw89_phy_stat_track() local 2678 phystat->last_pkt_stat = phystat->cur_pkt_stat; in rtw89_phy_stat_track() [all …]
|
D | rtw8852c_rfk.c | 1234 ewma_thermal_read(&rtwdev->phystat.avg_thermal[path]); in _iqk_info_iqk() 2632 cur_ther = ewma_thermal_read(&rtwdev->phystat.avg_thermal[path]); in _dpk_track() 3015 ewma_thermal_read(&rtwdev->phystat.avg_thermal[i]); in _tssi_enable() 3750 ewma_thermal_read(&rtwdev->phystat.avg_thermal[path]); in _lck_keep_thermal() 3787 ewma_thermal_read(&rtwdev->phystat.avg_thermal[path]); in rtw8852c_lck_track() 3901 rx_dck->thermal[path] = ewma_thermal_read(&rtwdev->phystat.avg_thermal[path]); in rtw8852c_rx_dck() 3921 ewma_thermal_read(&rtwdev->phystat.avg_thermal[path]); in rtw8852c_rx_dck_track()
|
D | rtw8852a_rfk.c | 1288 ewma_thermal_read(&rtwdev->phystat.avg_thermal[path]); in _iqk_info_iqk() 1552 cur_ther = ewma_thermal_read(&rtwdev->phystat.avg_thermal[path]); in _iqk_track() 2046 ewma_thermal_read(&rtwdev->phystat.avg_thermal[path]); in _dpk_get_thermal() 2758 cur_ther = ewma_thermal_read(&rtwdev->phystat.avg_thermal[path]); in _dpk_track() 3150 ewma_thermal_read(&rtwdev->phystat.avg_thermal[i]); in _tssi_enable()
|
D | debug.c | 2428 struct rtw89_pkt_stat *pkt_stat = &rtwdev->phystat.last_pkt_stat; in rtw89_debug_priv_phy_info_get()
|
D | core.c | 1395 struct rtw89_pkt_stat *pkt_stat = &rtwdev->phystat.cur_pkt_stat; in rtw89_vif_rx_stats_iter()
|
D | core.h | 3477 struct rtw89_phy_stat phystat; member
|
/Linux-v6.1/drivers/net/ethernet/marvell/ |
D | skge.c | 2350 u16 istatus, phystat; in yukon_phy_intr() local 2353 phystat = gm_phy_read(hw, port, PHY_MARV_PHY_STAT); in yukon_phy_intr() 2356 "phy interrupt status 0x%x 0x%x\n", istatus, phystat); in yukon_phy_intr() 2370 if (!(phystat & PHY_M_PS_SPDUP_RES)) { in yukon_phy_intr() 2375 skge->duplex = (phystat & PHY_M_PS_FULL_DUP) in yukon_phy_intr() 2377 skge->speed = yukon_speed(hw, phystat); in yukon_phy_intr() 2380 switch (phystat & PHY_M_PS_PAUSE_MSK) { in yukon_phy_intr() 2404 skge->speed = yukon_speed(hw, phystat); in yukon_phy_intr() 2407 skge->duplex = (phystat & PHY_M_PS_FULL_DUP) ? DUPLEX_FULL : DUPLEX_HALF; in yukon_phy_intr() 2409 if (phystat & PHY_M_PS_LINK_UP) in yukon_phy_intr()
|
D | sky2.c | 2301 u16 istatus, phystat; in sky2_phy_intr() local 2308 phystat = gm_phy_read(hw, port, PHY_MARV_PHY_STAT); in sky2_phy_intr() 2311 istatus, phystat); in sky2_phy_intr() 2314 if (sky2_autoneg_done(sky2, phystat) == 0 && in sky2_phy_intr() 2321 sky2->speed = sky2_phy_speed(hw, phystat); in sky2_phy_intr() 2325 (phystat & PHY_M_PS_FULL_DUP) ? DUPLEX_FULL : DUPLEX_HALF; in sky2_phy_intr() 2328 if (phystat & PHY_M_PS_LINK_UP) in sky2_phy_intr()
|