netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] e1000: Add device IDs of blade version of the 82571 quad port
@ 2007-08-30 18:23 Auke Kok
  2007-09-20 21:41 ` Jeff Garzik
  2007-09-28  3:38 ` Jeff Garzik
  0 siblings, 2 replies; 4+ messages in thread
From: Auke Kok @ 2007-08-30 18:23 UTC (permalink / raw)
  To: jeff; +Cc: netdev, john.ronciak, auke-jan.h.kok

This blade-specific board form factor is identical to the 82571EB
board.

Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
---

 drivers/net/e1000/e1000_ethtool.c |    1 +
 drivers/net/e1000/e1000_hw.c      |    1 +
 drivers/net/e1000/e1000_hw.h      |    1 +
 drivers/net/e1000/e1000_main.c    |    2 ++
 4 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/drivers/net/e1000/e1000_ethtool.c b/drivers/net/e1000/e1000_ethtool.c
index 4c3785c..9ecc3ad 100644
--- a/drivers/net/e1000/e1000_ethtool.c
+++ b/drivers/net/e1000/e1000_ethtool.c
@@ -1726,6 +1726,7 @@ static int e1000_wol_exclusion(struct e1000_adapter *adapter, struct ethtool_wol
 	case E1000_DEV_ID_82571EB_QUAD_COPPER:
 	case E1000_DEV_ID_82571EB_QUAD_FIBER:
 	case E1000_DEV_ID_82571EB_QUAD_COPPER_LOWPROFILE:
+	case E1000_DEV_ID_82571PT_QUAD_COPPER:
 	case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
 		/* quad port adapters only support WoL on port A */
 		if (!adapter->quad_port_a) {
diff --git a/drivers/net/e1000/e1000_hw.c b/drivers/net/e1000/e1000_hw.c
index ba120f7..8604adb 100644
--- a/drivers/net/e1000/e1000_hw.c
+++ b/drivers/net/e1000/e1000_hw.c
@@ -387,6 +387,7 @@ e1000_set_mac_type(struct e1000_hw *hw)
 	case E1000_DEV_ID_82571EB_SERDES_DUAL:
 	case E1000_DEV_ID_82571EB_SERDES_QUAD:
 	case E1000_DEV_ID_82571EB_QUAD_COPPER:
+	case E1000_DEV_ID_82571PT_QUAD_COPPER:
 	case E1000_DEV_ID_82571EB_QUAD_FIBER:
 	case E1000_DEV_ID_82571EB_QUAD_COPPER_LOWPROFILE:
 		hw->mac_type = e1000_82571;
diff --git a/drivers/net/e1000/e1000_hw.h b/drivers/net/e1000/e1000_hw.h
index fe87146..07f0ea7 100644
--- a/drivers/net/e1000/e1000_hw.h
+++ b/drivers/net/e1000/e1000_hw.h
@@ -475,6 +475,7 @@ int32_t e1000_check_phy_reset_block(struct e1000_hw *hw);
 #define E1000_DEV_ID_82571EB_FIBER       0x105F
 #define E1000_DEV_ID_82571EB_SERDES      0x1060
 #define E1000_DEV_ID_82571EB_QUAD_COPPER 0x10A4
+#define E1000_DEV_ID_82571PT_QUAD_COPPER 0x10D5
 #define E1000_DEV_ID_82571EB_QUAD_FIBER  0x10A5
 #define E1000_DEV_ID_82571EB_QUAD_COPPER_LOWPROFILE  0x10BC
 #define E1000_DEV_ID_82571EB_SERDES_DUAL 0x10D9
diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c
index 4a22595..e7c8951 100644
--- a/drivers/net/e1000/e1000_main.c
+++ b/drivers/net/e1000/e1000_main.c
@@ -108,6 +108,7 @@ static struct pci_device_id e1000_pci_tbl[] = {
 	INTEL_E1000_ETHERNET_DEVICE(0x10BC),
 	INTEL_E1000_ETHERNET_DEVICE(0x10C4),
 	INTEL_E1000_ETHERNET_DEVICE(0x10C5),
+	INTEL_E1000_ETHERNET_DEVICE(0x10D5),
 	INTEL_E1000_ETHERNET_DEVICE(0x10D9),
 	INTEL_E1000_ETHERNET_DEVICE(0x10DA),
 	/* required last entry */
@@ -1101,6 +1102,7 @@ e1000_probe(struct pci_dev *pdev,
 	case E1000_DEV_ID_82571EB_QUAD_COPPER:
 	case E1000_DEV_ID_82571EB_QUAD_FIBER:
 	case E1000_DEV_ID_82571EB_QUAD_COPPER_LOWPROFILE:
+	case E1000_DEV_ID_82571PT_QUAD_COPPER:
 		/* if quad port adapter, disable WoL on all but port A */
 		if (global_quad_port_a != 0)
 			adapter->eeprom_wol = 0;

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

* Re: [PATCH] e1000: Add device IDs of blade version of the 82571 quad port
  2007-08-30 18:23 [PATCH] e1000: Add device IDs of blade version of the 82571 quad port Auke Kok
@ 2007-09-20 21:41 ` Jeff Garzik
  2007-09-20 23:33   ` Kok, Auke
  2007-09-28  3:38 ` Jeff Garzik
  1 sibling, 1 reply; 4+ messages in thread
From: Jeff Garzik @ 2007-09-20 21:41 UTC (permalink / raw)
  To: Auke Kok; +Cc: netdev, john.ronciak

Auke Kok wrote:
> This blade-specific board form factor is identical to the 82571EB
> board.
> 
> Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
> ---
> 
>  drivers/net/e1000/e1000_ethtool.c |    1 +
>  drivers/net/e1000/e1000_hw.c      |    1 +
>  drivers/net/e1000/e1000_hw.h      |    1 +
>  drivers/net/e1000/e1000_main.c    |    2 ++
>  4 files changed, 5 insertions(+), 0 deletions(-)

I just found this buried in a dusty corner of my inbox.  is this still 
needed?

	Jeff




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

* Re: [PATCH] e1000: Add device IDs of blade version of the 82571 quad port
  2007-09-20 21:41 ` Jeff Garzik
@ 2007-09-20 23:33   ` Kok, Auke
  0 siblings, 0 replies; 4+ messages in thread
From: Kok, Auke @ 2007-09-20 23:33 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: netdev, john.ronciak

Jeff Garzik wrote:
> Auke Kok wrote:
>> This blade-specific board form factor is identical to the 82571EB
>> board.
>>
>> Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
>> ---
>>
>>  drivers/net/e1000/e1000_ethtool.c |    1 +
>>  drivers/net/e1000/e1000_hw.c      |    1 +
>>  drivers/net/e1000/e1000_hw.h      |    1 +
>>  drivers/net/e1000/e1000_main.c    |    2 ++
>>  4 files changed, 5 insertions(+), 0 deletions(-)
> 
> I just found this buried in a dusty corner of my inbox.  is this still
> needed?

yes absolutely, this is a rather good selling part afaik and it's nothing but a
new board with the same silicon (2x 82571 Fiber dual port behind a pci-e bridge).

Auke

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

* Re: [PATCH] e1000: Add device IDs of blade version of the 82571 quad port
  2007-08-30 18:23 [PATCH] e1000: Add device IDs of blade version of the 82571 quad port Auke Kok
  2007-09-20 21:41 ` Jeff Garzik
@ 2007-09-28  3:38 ` Jeff Garzik
  1 sibling, 0 replies; 4+ messages in thread
From: Jeff Garzik @ 2007-09-28  3:38 UTC (permalink / raw)
  To: Auke Kok; +Cc: netdev, john.ronciak

Auke Kok wrote:
> This blade-specific board form factor is identical to the 82571EB
> board.
> 
> Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
> ---
> 
>  drivers/net/e1000/e1000_ethtool.c |    1 +
>  drivers/net/e1000/e1000_hw.c      |    1 +
>  drivers/net/e1000/e1000_hw.h      |    1 +
>  drivers/net/e1000/e1000_main.c    |    2 ++
>  4 files changed, 5 insertions(+), 0 deletions(-)

applied



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

end of thread, other threads:[~2007-09-28  3:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-30 18:23 [PATCH] e1000: Add device IDs of blade version of the 82571 quad port Auke Kok
2007-09-20 21:41 ` Jeff Garzik
2007-09-20 23:33   ` Kok, Auke
2007-09-28  3:38 ` Jeff Garzik

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