]> Pileus Git - ~andy/linux/commitdiff
b43: HT-PHY: do some extra TSSI setup after configuring TX
authorRafał Miłecki <zajec5@gmail.com>
Sat, 16 Mar 2013 22:57:10 +0000 (23:57 +0100)
committerRafał Miłecki <zajec5@gmail.com>
Tue, 23 Apr 2013 10:27:55 +0000 (12:27 +0200)
After b43_phy_ht_tx_power_ctl_setup there are some extra radio ops:
 radio_read(0x08bf) -> 0x0001
radio_write(0x08bf) <- 0x0001
radio_write(0x0159) <- 0x0011
On N-PHY we write 0x11 to TSSI regs, so it's probably sth similar.

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
drivers/net/wireless/b43/phy_ht.c

index fd9e249e95b8aa53a17d7b85069ad464a1f33392..1caeedc8f6863f6a77269c89646a690a14a9e2a6 100644 (file)
@@ -562,6 +562,18 @@ static void b43_phy_ht_tx_power_ctl_idle_tssi(struct b43_wldev *dev)
        }
 }
 
+static void b43_phy_ht_tssi_setup(struct b43_wldev *dev)
+{
+       static const u16 routing[] = { R2059_C1, R2059_C2, R2059_C3, };
+       int core;
+
+       /* 0x159 is probably TX_SSI_MUX or TSSIG (by comparing to N-PHY) */
+       for (core = 0; core < 3; core++) {
+               b43_radio_set(dev, 0x8bf, 0x1);
+               b43_radio_write(dev, routing[core] | 0x0159, 0x0011);
+       }
+}
+
 static void b43_phy_ht_tx_power_ctl_setup(struct b43_wldev *dev)
 {
        struct b43_phy_ht *phy_ht = dev->phy.ht;
@@ -955,6 +967,7 @@ static int b43_phy_ht_op_init(struct b43_wldev *dev)
        b43_phy_ht_tx_power_ctl(dev, false);
        b43_phy_ht_tx_power_ctl_idle_tssi(dev);
        b43_phy_ht_tx_power_ctl_setup(dev);
+       b43_phy_ht_tssi_setup(dev);
        b43_phy_ht_tx_power_ctl(dev, saved_tx_pwr_ctl);
 
        return 0;