]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
b43: add more devices to the bands database
authorRafał Miłecki <zajec5@gmail.com>
Mon, 19 May 2014 21:18:55 +0000 (23:18 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 20 May 2014 14:34:28 +0000 (10:34 -0400)
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/b43/main.c

index a2f403687183a0ec8e0ffb2914a97c167e798f62..36383c48352807780a670fb03ba874aac3bec7c4 100644 (file)
@@ -5084,21 +5084,52 @@ static void b43_supported_bands(struct b43_wldev *dev, bool *have_2ghz_phy,
 {
        u16 dev_id = 0;
 
+#ifdef CONFIG_B43_BCMA
+       if (dev->dev->bus_type == B43_BUS_BCMA &&
+           dev->dev->bdev->bus->hosttype == BCMA_HOSTTYPE_PCI)
+               dev_id = dev->dev->bdev->bus->host_pci->device;
+#endif
 #ifdef CONFIG_B43_SSB
        if (dev->dev->bus_type == B43_BUS_SSB &&
            dev->dev->sdev->bus->bustype == SSB_BUSTYPE_PCI)
                dev_id = dev->dev->sdev->bus->host_pci->device;
 #endif
+       /* Override with SPROM value if available */
+       if (dev->dev->bus_sprom->dev_id)
+               dev_id = dev->dev->bus_sprom->dev_id;
 
        /* Note: below IDs can be "virtual" (not maching e.g. real PCI ID) */
        switch (dev_id) {
        case 0x4324: /* BCM4306 */
        case 0x4312: /* BCM4311 */
        case 0x4319: /* BCM4318 */
+       case 0x4328: /* BCM4321 */
+       case 0x432b: /* BCM4322 */
+       case 0x4350: /* BCM43222 */
+       case 0x4353: /* BCM43224 */
+       case 0x0576: /* BCM43224 */
+       case 0x435f: /* BCM6362 */
+       case 0x4331: /* BCM4331 */
+       case 0x4359: /* BCM43228 */
+       case 0x43a0: /* BCM4360 */
+       case 0x43b1: /* BCM4352 */
                /* Dual band devices */
                *have_2ghz_phy = true;
                *have_5ghz_phy = true;
                return;
+       case 0x4321: /* BCM4306 */
+       case 0x4313: /* BCM4311 */
+       case 0x431a: /* BCM4318 */
+       case 0x432a: /* BCM4321 */
+       case 0x432d: /* BCM4322 */
+       case 0x4352: /* BCM43222 */
+       case 0x4333: /* BCM4331 */
+       case 0x43a2: /* BCM4360 */
+       case 0x43b3: /* BCM4352 */
+               /* 5 GHz only devices */
+               *have_2ghz_phy = false;
+               *have_5ghz_phy = true;
+               return;
        }
 
        /* As a fallback, try to guess using PHY type */
@@ -5177,6 +5208,7 @@ static int b43_wireless_core_attach(struct b43_wldev *dev)
        case B43_PHYTYPE_A:
        case B43_PHYTYPE_N:
        case B43_PHYTYPE_LP:
+       case B43_PHYTYPE_HT:
                b43warn(wl, "5 GHz band is unsupported on this PHY\n");
                have_5ghz_phy = false;
        }