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()
2562 u32 tmslow; in b43legacy_put_phy_into_reset() local
2564 tmslow = ssb_read32(sdev, SSB_TMSLOW); in b43legacy_put_phy_into_reset()
2565 tmslow &= ~B43legacy_TMSLOW_GMODE; in b43legacy_put_phy_into_reset()
2566 tmslow |= B43legacy_TMSLOW_PHYRESET; in b43legacy_put_phy_into_reset()
2567 tmslow |= SSB_TMSLOW_FGC; in b43legacy_put_phy_into_reset()
2568 ssb_write32(sdev, SSB_TMSLOW, tmslow); in b43legacy_put_phy_into_reset()
2571 tmslow = ssb_read32(sdev, SSB_TMSLOW); in b43legacy_put_phy_into_reset()
2572 tmslow &= ~SSB_TMSLOW_FGC; in b43legacy_put_phy_into_reset()
2573 tmslow |= B43legacy_TMSLOW_PHYRESET; in b43legacy_put_phy_into_reset()
2574 ssb_write32(sdev, SSB_TMSLOW, tmslow); in b43legacy_put_phy_into_reset()