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()
2565 u32 tmslow; in b43legacy_put_phy_into_reset() local
2567 tmslow = ssb_read32(sdev, SSB_TMSLOW); in b43legacy_put_phy_into_reset()
2568 tmslow &= ~B43legacy_TMSLOW_GMODE; in b43legacy_put_phy_into_reset()
2569 tmslow |= B43legacy_TMSLOW_PHYRESET; in b43legacy_put_phy_into_reset()
2570 tmslow |= SSB_TMSLOW_FGC; in b43legacy_put_phy_into_reset()
2571 ssb_write32(sdev, SSB_TMSLOW, tmslow); in b43legacy_put_phy_into_reset()
2574 tmslow = ssb_read32(sdev, SSB_TMSLOW); in b43legacy_put_phy_into_reset()
2575 tmslow &= ~SSB_TMSLOW_FGC; in b43legacy_put_phy_into_reset()
2576 tmslow |= B43legacy_TMSLOW_PHYRESET; in b43legacy_put_phy_into_reset()
2577 ssb_write32(sdev, SSB_TMSLOW, tmslow); in b43legacy_put_phy_into_reset()