2012-03-25 08:51:08 +00:00
|
|
|
--- a/drivers/net/wireless/ath/ath9k/eeprom_def.c
|
|
|
|
+++ b/drivers/net/wireless/ath/ath9k/eeprom_def.c
|
2012-09-08 11:10:54 +00:00
|
|
|
@@ -266,7 +266,7 @@ static int ath9k_hw_def_check_eeprom(str
|
|
|
|
{
|
|
|
|
struct ar5416_eeprom_def *eep = &ah->eeprom.def;
|
2012-03-25 08:51:08 +00:00
|
|
|
struct ath_common *common = ath9k_hw_common(ah);
|
|
|
|
- u16 *eepdata, temp, magic, magic2;
|
|
|
|
+ u16 *eepdata, temp, magic;
|
|
|
|
u32 sum = 0, el;
|
|
|
|
bool need_swap = false;
|
|
|
|
int i, addr, size;
|
2012-09-08 11:10:54 +00:00
|
|
|
@@ -276,27 +276,16 @@ static int ath9k_hw_def_check_eeprom(str
|
2012-03-25 08:51:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (!ath9k_hw_use_flash(ah)) {
|
|
|
|
- ath_dbg(common, EEPROM, "Read Magic = 0x%04X\n", magic);
|
|
|
|
-
|
|
|
|
- if (magic != AR5416_EEPROM_MAGIC) {
|
|
|
|
- magic2 = swab16(magic);
|
|
|
|
-
|
|
|
|
- if (magic2 == AR5416_EEPROM_MAGIC) {
|
|
|
|
- size = sizeof(struct ar5416_eeprom_def);
|
|
|
|
- need_swap = true;
|
|
|
|
- eepdata = (u16 *) (&ah->eeprom);
|
|
|
|
-
|
|
|
|
- for (addr = 0; addr < size / sizeof(u16); addr++) {
|
|
|
|
- temp = swab16(*eepdata);
|
|
|
|
- *eepdata = temp;
|
|
|
|
- eepdata++;
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- ath_err(common,
|
|
|
|
- "Invalid EEPROM Magic. Endianness mismatch.\n");
|
|
|
|
- return -EINVAL;
|
|
|
|
- }
|
2012-03-27 13:21:53 +00:00
|
|
|
+ if (swab16(magic) == AR5416_EEPROM_MAGIC &&
|
|
|
|
+ !(ah->ah_flags & AH_NO_EEP_SWAP)) {
|
2012-03-25 08:51:08 +00:00
|
|
|
+ size = sizeof(struct ar5416_eeprom_def);
|
|
|
|
+ need_swap = true;
|
|
|
|
+ eepdata = (u16 *) (&ah->eeprom);
|
|
|
|
+
|
|
|
|
+ for (addr = 0; addr < size / sizeof(u16); addr++) {
|
|
|
|
+ temp = swab16(*eepdata);
|
|
|
|
+ *eepdata = temp;
|
|
|
|
+ eepdata++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-27 13:21:53 +00:00
|
|
|
--- a/drivers/net/wireless/ath/ath9k/eeprom_4k.c
|
|
|
|
+++ b/drivers/net/wireless/ath/ath9k/eeprom_4k.c
|
2012-09-08 11:10:54 +00:00
|
|
|
@@ -195,7 +195,7 @@ static int ath9k_hw_4k_check_eeprom(stru
|
2012-03-27 13:21:53 +00:00
|
|
|
int i, addr;
|
|
|
|
|
|
|
|
|
|
|
|
- if (!ath9k_hw_use_flash(ah)) {
|
|
|
|
+ if (!(ah->ah_flags & AH_NO_EEP_SWAP)) {
|
|
|
|
if (!ath9k_hw_nvram_read(common, AR5416_EEPROM_MAGIC_OFFSET,
|
|
|
|
&magic)) {
|
|
|
|
ath_err(common, "Reading Magic # failed\n");
|
|
|
|
--- a/drivers/net/wireless/ath/ath9k/eeprom_9287.c
|
|
|
|
+++ b/drivers/net/wireless/ath/ath9k/eeprom_9287.c
|
|
|
|
@@ -189,7 +189,7 @@ static int ath9k_hw_ar9287_check_eeprom(
|
|
|
|
struct ar9287_eeprom *eep = &ah->eeprom.map9287;
|
|
|
|
struct ath_common *common = ath9k_hw_common(ah);
|
|
|
|
|
|
|
|
- if (!ath9k_hw_use_flash(ah)) {
|
|
|
|
+ if (!(ah->ah_flags & AH_NO_EEP_SWAP)) {
|
|
|
|
if (!ath9k_hw_nvram_read(common, AR5416_EEPROM_MAGIC_OFFSET,
|
|
|
|
&magic)) {
|
|
|
|
ath_err(common, "Reading Magic # failed\n");
|
|
|
|
--- a/drivers/net/wireless/ath/ath9k/hw.h
|
|
|
|
+++ b/drivers/net/wireless/ath/ath9k/hw.h
|
2012-12-07 16:46:04 +00:00
|
|
|
@@ -704,6 +704,7 @@ enum ath_cal_list {
|
2012-03-27 13:21:53 +00:00
|
|
|
#define AH_USE_EEPROM 0x1
|
|
|
|
#define AH_UNPLUGGED 0x2 /* The card has been physically removed. */
|
|
|
|
#define AH_FASTCC 0x4
|
|
|
|
+#define AH_NO_EEP_SWAP 0x8 /* Do not swap EEPROM data */
|
|
|
|
|
|
|
|
struct ath_hw {
|
|
|
|
struct ath_ops reg_ops;
|
|
|
|
--- a/drivers/net/wireless/ath/ath9k/init.c
|
|
|
|
+++ b/drivers/net/wireless/ath/ath9k/init.c
|
2012-12-07 16:46:04 +00:00
|
|
|
@@ -541,6 +541,8 @@ static int ath9k_init_softc(u16 devid, s
|
2012-03-27 13:21:53 +00:00
|
|
|
ah->is_clk_25mhz = pdata->is_clk_25mhz;
|
|
|
|
ah->get_mac_revision = pdata->get_mac_revision;
|
|
|
|
ah->external_reset = pdata->external_reset;
|
|
|
|
+ if (!pdata->endian_check)
|
|
|
|
+ ah->ah_flags |= AH_NO_EEP_SWAP;
|
|
|
|
}
|
|
|
|
|
|
|
|
common = ath9k_hw_common(ah);
|
|
|
|
--- a/include/linux/ath9k_platform.h
|
|
|
|
+++ b/include/linux/ath9k_platform.h
|
|
|
|
@@ -29,6 +29,7 @@ struct ath9k_platform_data {
|
|
|
|
u32 gpio_mask;
|
|
|
|
u32 gpio_val;
|
|
|
|
|
|
|
|
+ bool endian_check;
|
|
|
|
bool is_clk_25mhz;
|
|
|
|
int (*get_mac_revision)(void);
|
|
|
|
int (*external_reset)(void);
|