]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
ath9k_hw: move mac name and rf name helpers to hw code
authorLuis R. Rodriguez <lrodriguez@atheros.com>
Tue, 27 Oct 2009 16:59:33 +0000 (12:59 -0400)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 30 Oct 2009 20:49:18 +0000 (16:49 -0400)
These are shared between ath9k and the future ath9k_htc driver.

Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath9k/ahb.c
drivers/net/wireless/ath/ath9k/hw.c
drivers/net/wireless/ath/ath9k/hw.h
drivers/net/wireless/ath/ath9k/main.c
drivers/net/wireless/ath/ath9k/pci.c

index 25531f231b6746db22260333dc7093f7a1303a2c..41422c44969683944bc0cf8889f6ebe270fd8ec1 100644 (file)
@@ -137,9 +137,10 @@ static int ath_ahb_probe(struct platform_device *pdev)
               "%s: Atheros AR%s MAC/BB Rev:%x, "
               "AR%s RF Rev:%x, mem=0x%lx, irq=%d\n",
               wiphy_name(hw->wiphy),
-              ath_mac_bb_name(ah->hw_version.macVersion),
+              ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
               ah->hw_version.macRev,
-              ath_rf_name((ah->hw_version.analog5GhzRev & AR_RADIO_SREV_MAJOR)),
+              ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
+                                AR_RADIO_SREV_MAJOR)),
               ah->hw_version.phyRev,
               (unsigned long)mem, irq);
 
index cab17c6c8a37a2885e798f26db557045532aae52..bba923135b0e5b14756d0cfd14374fba021db080 100644 (file)
@@ -4350,3 +4350,65 @@ void ath_gen_timer_isr(struct ath_hw *ah)
        }
 }
 EXPORT_SYMBOL(ath_gen_timer_isr);
+
+static struct {
+       u32 version;
+       const char * name;
+} ath_mac_bb_names[] = {
+       /* Devices with external radios */
+       { AR_SREV_VERSION_5416_PCI,     "5416" },
+       { AR_SREV_VERSION_5416_PCIE,    "5418" },
+       { AR_SREV_VERSION_9100,         "9100" },
+       { AR_SREV_VERSION_9160,         "9160" },
+       /* Single-chip solutions */
+       { AR_SREV_VERSION_9280,         "9280" },
+       { AR_SREV_VERSION_9285,         "9285" },
+       { AR_SREV_VERSION_9287,         "9287" }
+};
+
+/* For devices with external radios */
+static struct {
+       u16 version;
+       const char * name;
+} ath_rf_names[] = {
+       { 0,                            "5133" },
+       { AR_RAD5133_SREV_MAJOR,        "5133" },
+       { AR_RAD5122_SREV_MAJOR,        "5122" },
+       { AR_RAD2133_SREV_MAJOR,        "2133" },
+       { AR_RAD2122_SREV_MAJOR,        "2122" }
+};
+
+/*
+ * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
+ */
+const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
+{
+       int i;
+
+       for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
+               if (ath_mac_bb_names[i].version == mac_bb_version) {
+                       return ath_mac_bb_names[i].name;
+               }
+       }
+
+       return "????";
+}
+EXPORT_SYMBOL(ath9k_hw_mac_bb_name);
+
+/*
+ * Return the RF name. "????" is returned if the RF is unknown.
+ * Used for devices with external radios.
+ */
+const char *ath9k_hw_rf_name(u16 rf_version)
+{
+       int i;
+
+       for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
+               if (ath_rf_names[i].version == rf_version) {
+                       return ath_rf_names[i].name;
+               }
+       }
+
+       return "????";
+}
+EXPORT_SYMBOL(ath9k_hw_rf_name);
index cdaec526db3565eeeb08fc5d7e8409e466544bc8..979a594f93d1360577e8c18ced956311d7779c17 100644 (file)
@@ -704,6 +704,9 @@ void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer);
 void ath_gen_timer_isr(struct ath_hw *hw);
 u32 ath9k_hw_gettsf32(struct ath_hw *ah);
 
+const char *ath9k_hw_mac_bb_name(u32 mac_bb_version);
+const char *ath9k_hw_rf_name(u16 rf_version);
+
 #define ATH_PCIE_CAP_LINK_CTRL 0x70
 #define ATH_PCIE_CAP_LINK_L0S  1
 #define ATH_PCIE_CAP_LINK_L1   2
index 69cf702b18c2109afe3ff2241b485cb01f3cd666..9fefc51aec17f6ebc877d197236c871baca4bc84 100644 (file)
@@ -3191,64 +3191,6 @@ struct ieee80211_ops ath9k_ops = {
        .rfkill_poll        = ath9k_rfkill_poll_state,
 };
 
-static struct {
-       u32 version;
-       const char * name;
-} ath_mac_bb_names[] = {
-       { AR_SREV_VERSION_5416_PCI,     "5416" },
-       { AR_SREV_VERSION_5416_PCIE,    "5418" },
-       { AR_SREV_VERSION_9100,         "9100" },
-       { AR_SREV_VERSION_9160,         "9160" },
-       { AR_SREV_VERSION_9280,         "9280" },
-       { AR_SREV_VERSION_9285,         "9285" },
-       { AR_SREV_VERSION_9287,         "9287" }
-};
-
-static struct {
-       u16 version;
-       const char * name;
-} ath_rf_names[] = {
-       { 0,                            "5133" },
-       { AR_RAD5133_SREV_MAJOR,        "5133" },
-       { AR_RAD5122_SREV_MAJOR,        "5122" },
-       { AR_RAD2133_SREV_MAJOR,        "2133" },
-       { AR_RAD2122_SREV_MAJOR,        "2122" }
-};
-
-/*
- * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
- */
-const char *
-ath_mac_bb_name(u32 mac_bb_version)
-{
-       int i;
-
-       for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
-               if (ath_mac_bb_names[i].version == mac_bb_version) {
-                       return ath_mac_bb_names[i].name;
-               }
-       }
-
-       return "????";
-}
-
-/*
- * Return the RF name. "????" is returned if the RF is unknown.
- */
-const char *
-ath_rf_name(u16 rf_version)
-{
-       int i;
-
-       for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
-               if (ath_rf_names[i].version == rf_version) {
-                       return ath_rf_names[i].name;
-               }
-       }
-
-       return "????";
-}
-
 static int __init ath9k_init(void)
 {
        int error;
index 63059b6a90da1165283d36e50e54b4012db617ed..76f3890d0a9c1da42745be8f7c101784b36fa4b9 100644 (file)
@@ -222,9 +222,10 @@ static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
               "%s: Atheros AR%s MAC/BB Rev:%x "
               "AR%s RF Rev:%x: mem=0x%lx, irq=%d\n",
               wiphy_name(hw->wiphy),
-              ath_mac_bb_name(ah->hw_version.macVersion),
+              ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
               ah->hw_version.macRev,
-              ath_rf_name((ah->hw_version.analog5GhzRev & AR_RADIO_SREV_MAJOR)),
+              ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
+                                AR_RADIO_SREV_MAJOR)),
               ah->hw_version.phyRev,
               (unsigned long)mem, pdev->irq);