Lines Matching refs:tmslow
698 u32 tmslow; in b43legacy_wireless_core_reset() local
707 tmslow = ssb_read32(dev->dev, SSB_TMSLOW); in b43legacy_wireless_core_reset()
708 tmslow |= SSB_TMSLOW_FGC; in b43legacy_wireless_core_reset()
709 tmslow &= ~B43legacy_TMSLOW_PHYRESET; in b43legacy_wireless_core_reset()
710 ssb_write32(dev->dev, SSB_TMSLOW, tmslow); in b43legacy_wireless_core_reset()
713 tmslow &= ~SSB_TMSLOW_FGC; in b43legacy_wireless_core_reset()
714 ssb_write32(dev->dev, SSB_TMSLOW, tmslow); in b43legacy_wireless_core_reset()
2596 u32 tmslow; in b43legacy_put_phy_into_reset() local
2598 tmslow = ssb_read32(sdev, SSB_TMSLOW); in b43legacy_put_phy_into_reset()
2599 tmslow &= ~B43legacy_TMSLOW_GMODE; in b43legacy_put_phy_into_reset()
2600 tmslow |= B43legacy_TMSLOW_PHYRESET; in b43legacy_put_phy_into_reset()
2601 tmslow |= SSB_TMSLOW_FGC; in b43legacy_put_phy_into_reset()
2602 ssb_write32(sdev, SSB_TMSLOW, tmslow); in b43legacy_put_phy_into_reset()
2605 tmslow = ssb_read32(sdev, SSB_TMSLOW); in b43legacy_put_phy_into_reset()
2606 tmslow &= ~SSB_TMSLOW_FGC; in b43legacy_put_phy_into_reset()
2607 tmslow |= B43legacy_TMSLOW_PHYRESET; in b43legacy_put_phy_into_reset()
2608 ssb_write32(sdev, SSB_TMSLOW, tmslow); in b43legacy_put_phy_into_reset()