finally fix the /etc/config/network bug on wgt634u (#214, #215, #219)
[openwrt.git] / openwrt / target / linux / package / wlcompat / wlcompat.c
index 07e8db0..7063c80 100644 (file)
@@ -139,6 +139,7 @@ static int wlcompat_ioctl_getiwrange(struct net_device *dev,
        struct iw_range *range;
 
        range = (struct iw_range *) extra;
+       bzero(extra, sizeof(struct iw_range));
 
        range->we_version_compiled = WIRELESS_EXT;
        range->we_version_source = WIRELESS_EXT;
@@ -169,8 +170,8 @@ static int wlcompat_ioctl_getiwrange(struct net_device *dev,
        range->max_pmt = 65535 * 1000;
 
        range->max_qual.qual = 0;
-       range->max_qual.level = 100;
-       range->max_qual.noise = 100;
+       range->max_qual.level = 0;
+       range->max_qual.noise = 0;
        
        range->min_rts = 0;
        if (wl_ioctl(dev, WLC_GET_RTS, &range->max_rts, sizeof(int)) < 0)
@@ -225,7 +226,7 @@ struct iw_statistics *wlcompat_get_wireless_stats(struct net_device *dev)
 {
        wl_bss_info_t *bss_info = (wl_bss_info_t *) buf;
        get_pktcnt_t pkt;
-       int rssi, noise;
+       unsigned int rssi, noise, ap;
        
        memset(&wstats, 0, sizeof(wstats));
        memset(&pkt, 0, sizeof(pkt));
@@ -234,12 +235,27 @@ struct iw_statistics *wlcompat_get_wireless_stats(struct net_device *dev)
        wl_ioctl(dev, WLC_GET_BSS_INFO, bss_info, WLC_IOCTL_MAXLEN);
        wl_ioctl(dev, WLC_GET_PKTCNTS, &pkt, sizeof(pkt));
 
-       // somehow the structure doesn't fit here
-       noise = buf[0x50];
-       rssi = buf[0x52];
+       rssi = 0;
+       if ((wl_ioctl(dev, WLC_GET_AP, &ap, sizeof(ap)) < 0) || ap) {
+               if (wl_ioctl(dev, WLC_GET_PHY_NOISE, &noise, sizeof(noise)) < 0)
+                       noise = 0;
+       } else {
+               // somehow the structure doesn't fit here
+               rssi = buf[82];
+               noise = buf[84];
+       }
+       rssi = (rssi == 0 ? 1 : rssi);
+       wstats.qual.updated = 0x10;
+       if (rssi <= 1) 
+               wstats.qual.updated |= 0x20;
+       if (noise <= 1)
+               wstats.qual.updated |= 0x40;
+
+       if ((wstats.qual.updated & 0x60) == 0x60)
+               return NULL;
 
        wstats.qual.level = rssi;
-       wstats.qual.noise = -100 + noise;
+       wstats.qual.noise = noise;
        wstats.discard.misc = pkt.rx_bad_pkt;
        wstats.discard.retries = pkt.tx_bad_pkt;
 
@@ -478,14 +494,17 @@ static int wlcompat_ioctl(struct net_device *dev,
                }
                case SIOCGIWTXPOW:
                {
-                       int radio;
+                       int radio, override;
 
                        wl_ioctl(dev, WLC_GET_RADIO, &radio, sizeof(int));
                        
                        if (wl_get_val(dev, "qtxpower", &(wrqu->txpower.value), sizeof(int)) < 0)
                                return -EINVAL;
                        
+                       override = (wrqu->txpower.value & WL_TXPWR_OVERRIDE) == WL_TXPWR_OVERRIDE;
                        wrqu->txpower.value &= ~WL_TXPWR_OVERRIDE;
+                       if (!override && (wrqu->txpower.value > 76))
+                               wrqu->txpower.value = 76;
                        wrqu->txpower.value /= 4;
                                
                        wrqu->txpower.fixed = 0;
@@ -734,10 +753,10 @@ static const iw_handler    wlcompat_handler[] = {
 #define WLCOMPAT_GET_MONITOR           SIOCIWFIRSTPRIV + 1
 #define WLCOMPAT_SET_TXPWR_LIMIT       SIOCIWFIRSTPRIV + 2
 #define WLCOMPAT_GET_TXPWR_LIMIT       SIOCIWFIRSTPRIV + 3
-#define WLCOMPAT_SET_ANTDIV            SIOCIWFIRSTPRIV + 4
-#define WLCOMPAT_GET_ANTDIV            SIOCIWFIRSTPRIV + 5
-#define WLCOMPAT_SET_TXANT             SIOCIWFIRSTPRIV + 6
-#define WLCOMPAT_GET_TXANT             SIOCIWFIRSTPRIV + 7
+#define WLCOMPAT_SET_ANTDIV                    SIOCIWFIRSTPRIV + 4
+#define WLCOMPAT_GET_ANTDIV                    SIOCIWFIRSTPRIV + 5
+#define WLCOMPAT_SET_TXANT                     SIOCIWFIRSTPRIV + 6
+#define WLCOMPAT_GET_TXANT                     SIOCIWFIRSTPRIV + 7
 #define WLCOMPAT_SET_BSS_FORCE         SIOCIWFIRSTPRIV + 8
 #define WLCOMPAT_GET_BSS_FORCE         SIOCIWFIRSTPRIV + 9
 
This page took 0.030438 seconds and 4 git commands to generate.