linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC/RFT] rt2x00: Add dynamic detection of eFuse EEPROM in rt2800pci.
@ 2009-11-08 11:30 Gertjan van Wingerde
  2009-11-08 12:39 ` Ivo van Doorn
  2009-11-08 12:40 ` Bartlomiej Zolnierkiewicz
  0 siblings, 2 replies; 3+ messages in thread
From: Gertjan van Wingerde @ 2009-11-08 11:30 UTC (permalink / raw)
  To: users, linux-wireless; +Cc: Gertjan van Wingerde

Instead of assuming that all rt3090 devices will have an eFuse EEPROM, do as the legacy Ralink driver,
and detect at run-time whether an eFuse EEPROM is present.

Signed-off-by: Gertjan van Wingerde <gwingerde@gmail.com>
---
I only had the possibilitye to test this on a rt2890 device without eFuse EEPROM.
It would be good if someone can test this on a rt3090 device with eFuse EEPROM.
---
 drivers/net/wireless/rt2x00/rt2800pci.c |   22 ++++++++++++++++++----
 drivers/net/wireless/rt2x00/rt2800pci.h |    1 +
 2 files changed, 19 insertions(+), 4 deletions(-)

diff --git a/drivers/net/wireless/rt2x00/rt2800pci.c b/drivers/net/wireless/rt2x00/rt2800pci.c
index bff8707..2f284a6 100644
--- a/drivers/net/wireless/rt2x00/rt2800pci.c
+++ b/drivers/net/wireless/rt2x00/rt2800pci.c
@@ -145,6 +145,15 @@ static void rt2800pci_read_eeprom_pci(struct rt2x00_dev *rt2x00dev)
 			       EEPROM_SIZE / sizeof(u16));
 }
 
+static int rt2800pci_efuse_detect(struct rt2x00_dev *rt2x00dev)
+{
+	u32 reg;
+
+	rt2800_register_read(rt2x00dev, EFUSE_CTRL, &reg);
+
+	return rt2x00_get_field32(reg, EFUSE_CTRL_PRESENT);
+}
+
 static void rt2800pci_efuse_read(struct rt2x00_dev *rt2x00dev,
 				 unsigned int i)
 {
@@ -182,6 +191,11 @@ static inline void rt2800pci_read_eeprom_pci(struct rt2x00_dev *rt2x00dev)
 {
 }
 
+static inline int rt2800pci_efuse_detect(struct rt2x00_dev *rt2x00dev)
+{
+	return 0;
+}
+
 static inline void rt2800pci_read_eeprom_efuse(struct rt2x00_dev *rt2x00dev)
 {
 }
@@ -1091,11 +1105,11 @@ static int rt2800pci_validate_eeprom(struct rt2x00_dev *rt2x00dev)
 	case RT3052:
 		rt2800pci_read_eeprom_soc(rt2x00dev);
 		break;
-	case RT3090:
-		rt2800pci_read_eeprom_efuse(rt2x00dev);
-		break;
 	default:
-		rt2800pci_read_eeprom_pci(rt2x00dev);
+		if (rt2800pci_efuse_detect(rt2x00dev))
+			rt2800pci_read_eeprom_efuse(rt2x00dev);
+		else
+			rt2800pci_read_eeprom_pci(rt2x00dev);
 		break;
 	}
 
diff --git a/drivers/net/wireless/rt2x00/rt2800pci.h b/drivers/net/wireless/rt2x00/rt2800pci.h
index 1dbf132..8f944ee 100644
--- a/drivers/net/wireless/rt2x00/rt2800pci.h
+++ b/drivers/net/wireless/rt2x00/rt2800pci.h
@@ -62,6 +62,7 @@
 #define EFUSE_CTRL_ADDRESS_IN		FIELD32(0x03fe0000)
 #define EFUSE_CTRL_MODE			FIELD32(0x000000c0)
 #define EFUSE_CTRL_KICK			FIELD32(0x40000000)
+#define EFUSE_CTRL_PRESENT		FIELD32(0x80000000)
 
 /*
  * EFUSE_DATA0
-- 
1.6.5.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [RFC/RFT] rt2x00: Add dynamic detection of eFuse EEPROM in rt2800pci.
  2009-11-08 11:30 [RFC/RFT] rt2x00: Add dynamic detection of eFuse EEPROM in rt2800pci Gertjan van Wingerde
@ 2009-11-08 12:39 ` Ivo van Doorn
  2009-11-08 12:40 ` Bartlomiej Zolnierkiewicz
  1 sibling, 0 replies; 3+ messages in thread
From: Ivo van Doorn @ 2009-11-08 12:39 UTC (permalink / raw)
  To: Gertjan van Wingerde; +Cc: users, linux-wireless

On Sunday 08 November 2009, Gertjan van Wingerde wrote:
> Instead of assuming that all rt3090 devices will have an eFuse EEPROM, do as the legacy Ralink driver,
> and detect at run-time whether an eFuse EEPROM is present.
> 
> Signed-off-by: Gertjan van Wingerde <gwingerde@gmail.com>

Acked-by: Ivo van Doorn <IvDoorn@gmail.com>

> ---
> I only had the possibilitye to test this on a rt2890 device without eFuse EEPROM.
> It would be good if someone can test this on a rt3090 device with eFuse EEPROM.
> ---
>  drivers/net/wireless/rt2x00/rt2800pci.c |   22 ++++++++++++++++++----
>  drivers/net/wireless/rt2x00/rt2800pci.h |    1 +
>  2 files changed, 19 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/net/wireless/rt2x00/rt2800pci.c b/drivers/net/wireless/rt2x00/rt2800pci.c
> index bff8707..2f284a6 100644
> --- a/drivers/net/wireless/rt2x00/rt2800pci.c
> +++ b/drivers/net/wireless/rt2x00/rt2800pci.c
> @@ -145,6 +145,15 @@ static void rt2800pci_read_eeprom_pci(struct rt2x00_dev *rt2x00dev)
>  			       EEPROM_SIZE / sizeof(u16));
>  }
>  
> +static int rt2800pci_efuse_detect(struct rt2x00_dev *rt2x00dev)
> +{
> +	u32 reg;
> +
> +	rt2800_register_read(rt2x00dev, EFUSE_CTRL, &reg);
> +
> +	return rt2x00_get_field32(reg, EFUSE_CTRL_PRESENT);
> +}
> +
>  static void rt2800pci_efuse_read(struct rt2x00_dev *rt2x00dev,
>  				 unsigned int i)
>  {
> @@ -182,6 +191,11 @@ static inline void rt2800pci_read_eeprom_pci(struct rt2x00_dev *rt2x00dev)
>  {
>  }
>  
> +static inline int rt2800pci_efuse_detect(struct rt2x00_dev *rt2x00dev)
> +{
> +	return 0;
> +}
> +
>  static inline void rt2800pci_read_eeprom_efuse(struct rt2x00_dev *rt2x00dev)
>  {
>  }
> @@ -1091,11 +1105,11 @@ static int rt2800pci_validate_eeprom(struct rt2x00_dev *rt2x00dev)
>  	case RT3052:
>  		rt2800pci_read_eeprom_soc(rt2x00dev);
>  		break;
> -	case RT3090:
> -		rt2800pci_read_eeprom_efuse(rt2x00dev);
> -		break;
>  	default:
> -		rt2800pci_read_eeprom_pci(rt2x00dev);
> +		if (rt2800pci_efuse_detect(rt2x00dev))
> +			rt2800pci_read_eeprom_efuse(rt2x00dev);
> +		else
> +			rt2800pci_read_eeprom_pci(rt2x00dev);
>  		break;
>  	}
>  
> diff --git a/drivers/net/wireless/rt2x00/rt2800pci.h b/drivers/net/wireless/rt2x00/rt2800pci.h
> index 1dbf132..8f944ee 100644
> --- a/drivers/net/wireless/rt2x00/rt2800pci.h
> +++ b/drivers/net/wireless/rt2x00/rt2800pci.h
> @@ -62,6 +62,7 @@
>  #define EFUSE_CTRL_ADDRESS_IN		FIELD32(0x03fe0000)
>  #define EFUSE_CTRL_MODE			FIELD32(0x000000c0)
>  #define EFUSE_CTRL_KICK			FIELD32(0x40000000)
> +#define EFUSE_CTRL_PRESENT		FIELD32(0x80000000)
>  
>  /*
>   * EFUSE_DATA0



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [RFC/RFT] rt2x00: Add dynamic detection of eFuse EEPROM in rt2800pci.
  2009-11-08 11:30 [RFC/RFT] rt2x00: Add dynamic detection of eFuse EEPROM in rt2800pci Gertjan van Wingerde
  2009-11-08 12:39 ` Ivo van Doorn
@ 2009-11-08 12:40 ` Bartlomiej Zolnierkiewicz
  1 sibling, 0 replies; 3+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2009-11-08 12:40 UTC (permalink / raw)
  To: Gertjan van Wingerde; +Cc: users, linux-wireless

On Sunday 08 November 2009 12:30:35 Gertjan van Wingerde wrote:
> Instead of assuming that all rt3090 devices will have an eFuse EEPROM, do as the legacy Ralink driver,
> and detect at run-time whether an eFuse EEPROM is present.
> 
> Signed-off-by: Gertjan van Wingerde <gwingerde@gmail.com>

Acked-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>

Incidentally I made a very similar patch on Friday as a preparation for
other changes but this version is a bit more readable (cause it adds
rt2800pci_efuse_detect() helper) so I'll replace my version by your patch.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-11-08 12:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-08 11:30 [RFC/RFT] rt2x00: Add dynamic detection of eFuse EEPROM in rt2800pci Gertjan van Wingerde
2009-11-08 12:39 ` Ivo van Doorn
2009-11-08 12:40 ` Bartlomiej Zolnierkiewicz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).