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()
2594 u32 tmslow; in b43legacy_put_phy_into_reset() local
2596 tmslow = ssb_read32(sdev, SSB_TMSLOW); in b43legacy_put_phy_into_reset()
2597 tmslow &= ~B43legacy_TMSLOW_GMODE; in b43legacy_put_phy_into_reset()
2598 tmslow |= B43legacy_TMSLOW_PHYRESET; in b43legacy_put_phy_into_reset()
2599 tmslow |= SSB_TMSLOW_FGC; in b43legacy_put_phy_into_reset()
2600 ssb_write32(sdev, SSB_TMSLOW, tmslow); in b43legacy_put_phy_into_reset()
2603 tmslow = ssb_read32(sdev, SSB_TMSLOW); in b43legacy_put_phy_into_reset()
2604 tmslow &= ~SSB_TMSLOW_FGC; in b43legacy_put_phy_into_reset()
2605 tmslow |= B43legacy_TMSLOW_PHYRESET; in b43legacy_put_phy_into_reset()
2606 ssb_write32(sdev, SSB_TMSLOW, tmslow); in b43legacy_put_phy_into_reset()