All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wey-Yi Guy <wey-yi.w.guy@intel.com>
To: linville@tuxdriver.com
Cc: linux-wireless@vger.kernel.org,
	ipw3945-devel@lists.sourceforge.net,
	Wey-Yi Guy <wey-yi.w.guy@intel.com>
Subject: [PATCH 09/14] iwlwifi: add hw rev for 2000 series devices
Date: Fri, 21 Jan 2011 16:06:44 -0800	[thread overview]
Message-ID: <1295654809-5790-10-git-send-email-wey-yi.w.guy@intel.com> (raw)
In-Reply-To: <1295654809-5790-1-git-send-email-wey-yi.w.guy@intel.com>

From: Wey-Yi Guy <wey-yi.w.guy@intel.com>

2000 series device has different HW rev, add it

Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
---
 drivers/net/wireless/iwlwifi/iwl-csr.h |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/net/wireless/iwlwifi/iwl-csr.h b/drivers/net/wireless/iwlwifi/iwl-csr.h
index cb77c0f..6c2b2df 100644
--- a/drivers/net/wireless/iwlwifi/iwl-csr.h
+++ b/drivers/net/wireless/iwlwifi/iwl-csr.h
@@ -290,7 +290,7 @@
 
 
 /* HW REV */
-#define CSR_HW_REV_TYPE_MSK            (0x00000F0)
+#define CSR_HW_REV_TYPE_MSK            (0x00001F0)
 #define CSR_HW_REV_TYPE_3945           (0x00000D0)
 #define CSR_HW_REV_TYPE_4965           (0x0000000)
 #define CSR_HW_REV_TYPE_5300           (0x0000020)
@@ -303,7 +303,12 @@
 #define CSR_HW_REV_TYPE_6150           (0x0000084)
 #define CSR_HW_REV_TYPE_6x05	       (0x00000B0)
 #define CSR_HW_REV_TYPE_6x30	       CSR_HW_REV_TYPE_6x05
-#define CSR_HW_REV_TYPE_NONE           (0x00000F0)
+#define CSR_HW_REV_TYPE_6x35	       CSR_HW_REV_TYPE_6x05
+#define CSR_HW_REV_TYPE_2x30	       (0x00000C0)
+#define CSR_HW_REV_TYPE_2x00	       (0x0000100)
+#define CSR_HW_REV_TYPE_200	       (0x0000110)
+#define CSR_HW_REV_TYPE_230	       (0x0000120)
+#define CSR_HW_REV_TYPE_NONE           (0x00001F0)
 
 /* EEPROM REG */
 #define CSR_EEPROM_REG_READ_VALID_MSK	(0x00000001)
-- 
1.7.0.4


  parent reply	other threads:[~2011-01-22  0:18 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-22  0:06 [PATCH 00/14] update for 2.6.39 Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 01/14] iwlwifi: use mac80211 throughput trigger Wey-Yi Guy
2011-01-23  9:05   ` Johannes Berg
2011-01-23 18:05     ` Guy, Wey-Yi
2011-01-22  0:06 ` [PATCH 02/14] iwlagn: remove reference to gen2a and gen2b Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 03/14] iwlagn: add 2000 series EEPROM version Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 04/14] iwlagn: 2000 series devices support Wey-Yi Guy
2011-01-22  1:56   ` [ipw3945-devel] " Gábor Stefanik
2011-01-22  2:12     ` Daniel Halperin
2011-01-22  2:37       ` Gábor Stefanik
2011-01-22  2:37         ` Gábor Stefanik
2011-01-22  3:07           ` Daniel Halperin
2011-01-22  3:55             ` Gábor Stefanik
2011-01-23 11:25   ` Bernhard Schmidt
2011-01-23 18:12     ` Guy, Wey-Yi
2011-01-22  0:06 ` [PATCH 05/14] iwlagn: add 2000 series pci id Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 06/14] iwlagn: add 2000 series to Kconfig Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 07/14] iwlagn: remove Gen2 from Kconfig Wey-Yi Guy
2011-01-22  1:54   ` [ipw3945-devel] " Gábor Stefanik
2011-01-22  0:06 ` [PATCH 08/14] iwlwifi: remove g2 from csr hw rev Wey-Yi Guy
2011-01-22  0:06 ` Wey-Yi Guy [this message]
2011-01-22  0:06 ` [PATCH 10/14] iwlwifi: correct debugfs data dumped from sram Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 11/14] iwlagn: Enable idle powersave mode in 1000 series Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 12/14] iwlwifi: implement remain-on-channel Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 13/14] iwlwifi: replace minimum slot time constant Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 14/14] iwlwifi: initial P2P support Wey-Yi Guy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1295654809-5790-10-git-send-email-wey-yi.w.guy@intel.com \
    --to=wey-yi.w.guy@intel.com \
    --cc=ipw3945-devel@lists.sourceforge.net \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linville@tuxdriver.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.