linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V3] rt2x00: remove MCU requests for SoC platforms
@ 2010-04-01 21:14 Luis Correia
  2010-04-01 21:44 ` Gertjan van Wingerde
       [not found] ` <t2qefe7343f1004030447i9d6f290fvd7dd317c63b5b61@mail.gmail.com>
  0 siblings, 2 replies; 9+ messages in thread
From: Luis Correia @ 2010-04-01 21:14 UTC (permalink / raw)
  To: linux-wireless; +Cc: rt2x00 Users List, Ivo van Doorn, John W. Linville

The ralink SoC platforms do not have an MCU.

Signed-off-by: Luis Correia <luis.f.correia@gmail.com>
---

--- a/drivers/net/wireless/rt2x00/rt2800lib.c   2010-03-26
18:25:50.000000000 +0000
+++ b/drivers/net/wireless/rt2x00/rt2800lib.c   2010-04-01
13:05:18.249747122 +0100
@@ -221,9 +221,9 @@
       u32 reg;

       /*
-        * SOC devices don't support MCU requests.
+        * some devices don't support MCU requests.
        */
-       if (rt2x00_is_soc(rt2x00dev))
+       if (!test_bit(DRIVER_REQUIRE_MCU, &rt2x00dev->flags))
               return;

       mutex_lock(&rt2x00dev->csr_mutex);
--- a/drivers/net/wireless/rt2x00/rt2800pci.c   2010-03-26
18:25:50.000000000 +0000
+++ b/drivers/net/wireless/rt2x00/rt2800pci.c   2010-04-01
13:04:42.453621607 +0100
@@ -59,6 +59,12 @@
 {
       unsigned int i;
       u32 reg;
+
+       /*
+        * some devices don't support MCU requests.
+        */
+       if (!test_bit(DRIVER_REQUIRE_MCU, &rt2x00dev->flags))
+               return;

       for (i = 0; i < 200; i++) {
               rt2800_register_read(rt2x00dev, H2M_MAILBOX_CID, &reg);
@@ -1098,10 +1104,12 @@
       __set_bit(DRIVER_SUPPORT_CONTROL_FILTER_PSPOLL, &rt2x00dev->flags);

       /*
-        * This device requires firmware.
+        * This device requires firmware and MCU access.
        */
-       if (!rt2x00_is_soc(rt2x00dev))
+       if (!rt2x00_is_soc(rt2x00dev)) {
               __set_bit(DRIVER_REQUIRE_FIRMWARE, &rt2x00dev->flags);
+               __set_bit(DRIVER_REQUIRE_MCU, &rt2x00dev->flags);
+       }
       __set_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags);
       __set_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags);
       if (!modparam_nohwcrypt)
--- a/drivers/net/wireless/rt2x00/rt2x00.h      2010-03-26
18:25:50.000000000 +0000
+++ b/drivers/net/wireless/rt2x00/rt2x00.h      2010-04-01
13:01:26.812694036 +0100
@@ -631,6 +631,7 @@
        * Driver requirements
        */
       DRIVER_REQUIRE_FIRMWARE,
+       DRIVER_REQUIRE_MCU,
       DRIVER_REQUIRE_BEACON_GUARD,
       DRIVER_REQUIRE_ATIM_QUEUE,
       DRIVER_REQUIRE_DMA,

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

end of thread, other threads:[~2010-04-06 20:45 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-01 21:14 [PATCH V3] rt2x00: remove MCU requests for SoC platforms Luis Correia
2010-04-01 21:44 ` Gertjan van Wingerde
2010-04-01 21:52   ` Luis Correia
2010-04-02  6:57   ` Ivo Van Doorn
     [not found] ` <t2qefe7343f1004030447i9d6f290fvd7dd317c63b5b61@mail.gmail.com>
2010-04-03 11:49   ` [PATCH V4] " Luis Correia
2010-04-03 11:55     ` Ivo van Doorn
2010-04-03 13:43     ` Gertjan van Wingerde
2010-04-03 14:08       ` Gertjan van Wingerde
2010-04-06 20:44         ` John W. Linville

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).