Lines Matching refs:tmslow
670 u32 tmslow; in b43legacy_wireless_core_reset() local
679 tmslow = ssb_read32(dev->dev, SSB_TMSLOW); in b43legacy_wireless_core_reset()
680 tmslow |= SSB_TMSLOW_FGC; in b43legacy_wireless_core_reset()
681 tmslow &= ~B43legacy_TMSLOW_PHYRESET; in b43legacy_wireless_core_reset()
682 ssb_write32(dev->dev, SSB_TMSLOW, tmslow); in b43legacy_wireless_core_reset()
685 tmslow &= ~SSB_TMSLOW_FGC; in b43legacy_wireless_core_reset()
686 ssb_write32(dev->dev, SSB_TMSLOW, tmslow); in b43legacy_wireless_core_reset()
2564 u32 tmslow; in b43legacy_put_phy_into_reset() local
2566 tmslow = ssb_read32(sdev, SSB_TMSLOW); in b43legacy_put_phy_into_reset()
2567 tmslow &= ~B43legacy_TMSLOW_GMODE; in b43legacy_put_phy_into_reset()
2568 tmslow |= B43legacy_TMSLOW_PHYRESET; in b43legacy_put_phy_into_reset()
2569 tmslow |= SSB_TMSLOW_FGC; in b43legacy_put_phy_into_reset()
2570 ssb_write32(sdev, SSB_TMSLOW, tmslow); in b43legacy_put_phy_into_reset()
2573 tmslow = ssb_read32(sdev, SSB_TMSLOW); in b43legacy_put_phy_into_reset()
2574 tmslow &= ~SSB_TMSLOW_FGC; in b43legacy_put_phy_into_reset()
2575 tmslow |= B43legacy_TMSLOW_PHYRESET; in b43legacy_put_phy_into_reset()
2576 ssb_write32(sdev, SSB_TMSLOW, tmslow); in b43legacy_put_phy_into_reset()