b43: N-PHY: report signal to mac80211
authorRafał Miłecki <zajec5@gmail.com>
Wed, 12 Oct 2011 21:18:15 +0000 (23:18 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 14 Oct 2011 18:48:20 +0000 (14:48 -0400)
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/b43/xmit.c
drivers/net/wireless/b43/xmit.h

index b8de62c22479409a3d57904d41e8871d1ff4a716..c73e8600d218673b28838e898bba1d903a6c493b 100644 (file)
@@ -735,16 +735,22 @@ void b43_rx(struct b43_wldev *dev, struct sk_buff *skb, const void *_rxhdr)
        }
 
        /* Link quality statistics */
-       if ((chanstat & B43_RX_CHAN_PHYTYPE) == B43_PHYTYPE_N) {
-//             s8 rssi = max(rxhdr->power0, rxhdr->power1);
-               //TODO: Find out what the rssi value is (dBm or percentage?)
-               //      and also find out what the maximum possible value is.
-               //      Fill status.ssi and status.signal fields.
-       } else {
+       switch (chanstat & B43_RX_CHAN_PHYTYPE) {
+       case B43_PHYTYPE_N:
+               if (rxhdr->power0 == 16 || rxhdr->power0 == 32)
+                       status.signal = max(rxhdr->power1, rxhdr->power2);
+               else
+                       status.signal = max(rxhdr->power0, rxhdr->power1);
+               break;
+       case B43_PHYTYPE_A:
+       case B43_PHYTYPE_B:
+       case B43_PHYTYPE_G:
+       case B43_PHYTYPE_LP:
                status.signal = b43_rssi_postprocess(dev, rxhdr->jssi,
                                                  (phystat0 & B43_RX_PHYST0_OFDM),
                                                  (phystat0 & B43_RX_PHYST0_GAINCTL),
                                                  (phystat3 & B43_RX_PHYST3_TRSTATE));
+               break;
        }
 
        if (phystat0 & B43_RX_PHYST0_OFDM)
index f6e8bc436d5a20028818e155369600279db285af..16c514d54afabb6be6f57c078e631e5a7d4c8647 100644 (file)
@@ -248,7 +248,15 @@ struct b43_rxhdr_fw4 {
                        __s8 power1;    /* PHY RX Status 1: Power 1 */
                } __packed;
        } __packed;
-       __le16 phy_status2;     /* PHY RX Status 2 */
+       union {
+               /* RSSI for N-PHYs */
+               struct {
+                       __s8 power2;
+                       PAD_BYTES(1);
+               } __packed;
+
+               __le16 phy_status2;     /* PHY RX Status 2 */
+       } __packed;
        __le16 phy_status3;     /* PHY RX Status 3 */
        union {
                /* Tested with 598.314, 644.1001 and 666.2 */