Netdev List
 help / color / mirror / Atom feed
* [PATCH 6/6] bna: Brocade 10Gb Ethernet device driver
@ 2010-08-04  5:45 Rasesh Mody
  0 siblings, 0 replies; 3+ messages in thread
From: Rasesh Mody @ 2010-08-04  5:45 UTC (permalink / raw)
  To: netdev; +Cc: ddutt, huangj

From: Rasesh Mody <rmody@brocade.com>

This is patch 6/6 which contains linux driver source for
Brocade's BR1010/BR1020 10Gb CEE capable ethernet adapter.
Source is based against net-next-2.6.

We wish this patch to be considered for inclusion in net-next-2.6

Signed-off-by: Rasesh Mody <rmody@brocade.com>
---
 drivers/net/Kconfig      |   14 ++++++++++++++
 drivers/net/Makefile     |    1 +
 drivers/net/bna/Makefile |   11 +++++++++++
 include/linux/pci_ids.h  |    3 +++
 4 files changed, 29 insertions(+)

diff -ruP net-next-2.6.35-rc1-orig/drivers/net/bna/Makefile net-next-2.6.35-rc1-mod/drivers/net/bna/Makefile
--- net-next-2.6.35-rc1-orig/drivers/net/bna/Makefile	1969-12-31 16:00:00.000000000 -0800
+++ net-next-2.6.35-rc1-mod/drivers/net/bna/Makefile	2010-08-02 17:26:50.137486000 -0700
@@ -0,0 +1,11 @@
+#
+# Copyright (c) 2006-2009 Brocade Communications Systems, Inc.
+# All rights reserved.
+#
+
+obj-$(CONFIG_BNA) += bna.o
+
+bna-objs := bnad.o bnad_ethtool.o bna_ctrl.o bna_txrx.o
+bna-objs += bfa_ioc.o bfa_ioc_ct.o bfa_cee.o cna_fwimg.o
+
+EXTRA_CFLAGS := -Idrivers/net/bna
diff -ruP net-next-2.6.35-rc1-orig/drivers/net/Kconfig net-next-2.6.35-rc1-mod/drivers/net/Kconfig
--- net-next-2.6.35-rc1-orig/drivers/net/Kconfig	2010-07-22 19:10:00.000000000 -0700
+++ net-next-2.6.35-rc1-mod/drivers/net/Kconfig	2010-08-02 17:26:50.047478000 -0700
@@ -2859,6 +2859,20 @@
 	  To compile this driver as a module, choose M here: the module
 	  will be called qlge.
 
+config BNA
+        tristate "Brocade 1010/1020 10Gb Ethernet Driver support"
+        depends on PCI
+        ---help---
+          This driver supports Brocade 1010/1020 10Gb CEE capable Ethernet
+          cards.
+          To compile this driver as a module, choose M here: the module
+          will be called bna.
+
+          For general information and support, go to the Brocade support
+          website at:
+
+          <http://support.brocade.com>
+
 source "drivers/net/sfc/Kconfig"
 
 source "drivers/net/benet/Kconfig"
diff -ruP net-next-2.6.35-rc1-orig/drivers/net/Makefile net-next-2.6.35-rc1-mod/drivers/net/Makefile
--- net-next-2.6.35-rc1-orig/drivers/net/Makefile	2010-07-22 19:10:00.000000000 -0700
+++ net-next-2.6.35-rc1-mod/drivers/net/Makefile	2010-08-02 17:26:50.067481000 -0700
@@ -34,6 +34,7 @@
 obj-$(CONFIG_JME) += jme.o
 obj-$(CONFIG_BE2NET) += benet/
 obj-$(CONFIG_VMXNET3) += vmxnet3/
+obj-$(CONFIG_BNA) += bna/
 
 gianfar_driver-objs := gianfar.o \
 		gianfar_ethtool.o \
diff -ruP net-next-2.6.35-rc1-orig/include/linux/pci_ids.h net-next-2.6.35-rc1-mod/include/linux/pci_ids.h
--- net-next-2.6.35-rc1-orig/include/linux/pci_ids.h	2010-07-22 19:10:10.000000000 -0700
+++ net-next-2.6.35-rc1-mod/include/linux/pci_ids.h	2010-08-02 17:26:50.117478000 -0700
@@ -2188,6 +2188,9 @@
 #define PCI_VENDOR_ID_ARIMA		0x161f
 
 #define PCI_VENDOR_ID_BROCADE		0x1657
+#define PCI_DEVICE_ID_BROCADE_CT	0x0014
+#define PCI_DEVICE_ID_BROCADE_FC_8G1P	0x0017
+#define PCI_DEVICE_ID_BROCADE_CT_FC	0x0021
 
 #define PCI_VENDOR_ID_SIBYTE		0x166d
 #define PCI_DEVICE_ID_BCM1250_PCI	0x0001

^ permalink raw reply	[flat|nested] 3+ messages in thread
* [PATCH 6/6] bna: Brocade 10Gb Ethernet device driver
@ 2010-08-11  4:54 Rasesh Mody
  0 siblings, 0 replies; 3+ messages in thread
From: Rasesh Mody @ 2010-08-11  4:54 UTC (permalink / raw)
  To: netdev; +Cc: adapter_linux_open_src_team

From: Rasesh Mody <rmody@brocade.com>

This is patch 6/6 which contains linux driver source for
Brocade's BR1010/BR1020 10Gb CEE capable ethernet adapter.
Source is based against net-next-2.6.

We wish this patch to be considered for inclusion in net-next-2.6

Signed-off-by: Rasesh Mody <rmody@brocade.com>
---
 drivers/net/Kconfig      |   14 ++++++++++++++
 drivers/net/Makefile     |    1 +
 drivers/net/bna/Makefile |   11 +++++++++++
 include/linux/pci_ids.h  |    3 +++
 4 files changed, 29 insertions(+)

diff -ruP net-next-2.6.35-rc1-orig/drivers/net/Kconfig net-next-2.6.35-rc1-mod/drivers/net/Kconfig
--- net-next-2.6.35-rc1-orig/drivers/net/Kconfig	2010-07-22 19:10:00.000000000 -0700
+++ net-next-2.6.35-rc1-mod/drivers/net/Kconfig	2010-08-10 12:31:30.238653000 -0700
@@ -2859,6 +2859,20 @@
 	  To compile this driver as a module, choose M here: the module
 	  will be called qlge.
 
+config BNA
+        tristate "Brocade 1010/1020 10Gb Ethernet Driver support"
+        depends on PCI
+        ---help---
+          This driver supports Brocade 1010/1020 10Gb CEE capable Ethernet
+          cards.
+          To compile this driver as a module, choose M here: the module
+          will be called bna.
+
+          For general information and support, go to the Brocade support
+          website at:
+
+          <http://support.brocade.com>
+
 source "drivers/net/sfc/Kconfig"
 
 source "drivers/net/benet/Kconfig"
diff -ruP net-next-2.6.35-rc1-orig/drivers/net/Makefile net-next-2.6.35-rc1-mod/drivers/net/Makefile
--- net-next-2.6.35-rc1-orig/drivers/net/Makefile	2010-07-22 19:10:00.000000000 -0700
+++ net-next-2.6.35-rc1-mod/drivers/net/Makefile	2010-08-10 12:31:30.245640000 -0700
@@ -34,6 +34,7 @@
 obj-$(CONFIG_JME) += jme.o
 obj-$(CONFIG_BE2NET) += benet/
 obj-$(CONFIG_VMXNET3) += vmxnet3/
+obj-$(CONFIG_BNA) += bna/
 
 gianfar_driver-objs := gianfar.o \
 		gianfar_ethtool.o \
diff -ruP net-next-2.6.35-rc1-orig/drivers/net/bna/Makefile net-next-2.6.35-rc1-mod/drivers/net/bna/Makefile
--- net-next-2.6.35-rc1-orig/drivers/net/bna/Makefile	1969-12-31 16:00:00.000000000 -0800
+++ net-next-2.6.35-rc1-mod/drivers/net/bna/Makefile	2010-08-10 12:31:30.264641000 -0700
@@ -0,0 +1,11 @@
+#
+# Copyright (c) 2006-2009 Brocade Communications Systems, Inc.
+# All rights reserved.
+#
+
+obj-$(CONFIG_BNA) += bna.o
+
+bna-objs := bnad.o bnad_ethtool.o bna_ctrl.o bna_txrx.o
+bna-objs += bfa_ioc.o bfa_ioc_ct.o bfa_cee.o cna_fwimg.o
+
+EXTRA_CFLAGS := -Idrivers/net/bna
diff -ruP net-next-2.6.35-rc1-orig/include/linux/pci_ids.h net-next-2.6.35-rc1-mod/include/linux/pci_ids.h
--- net-next-2.6.35-rc1-orig/include/linux/pci_ids.h	2010-07-22 19:10:10.000000000 -0700
+++ net-next-2.6.35-rc1-mod/include/linux/pci_ids.h	2010-08-10 12:31:30.259639000 -0700
@@ -2188,6 +2188,9 @@
 #define PCI_VENDOR_ID_ARIMA		0x161f
 
 #define PCI_VENDOR_ID_BROCADE		0x1657
+#define PCI_DEVICE_ID_BROCADE_CT	0x0014
+#define PCI_DEVICE_ID_BROCADE_FC_8G1P	0x0017
+#define PCI_DEVICE_ID_BROCADE_CT_FC	0x0021
 
 #define PCI_VENDOR_ID_SIBYTE		0x166d
 #define PCI_DEVICE_ID_BCM1250_PCI	0x0001

^ permalink raw reply	[flat|nested] 3+ messages in thread
* [PATCH 6/6] bna: Brocade 10Gb Ethernet device driver
@ 2010-08-23 21:29 Rasesh Mody
  0 siblings, 0 replies; 3+ messages in thread
From: Rasesh Mody @ 2010-08-23 21:29 UTC (permalink / raw)
  To: netdev; +Cc: amathur, ddutt, huangj, rmody

From: Rasesh Mody <rmody@brocade.com>

This is patch 6/6 which contains linux driver source for
Brocade's BR1010/BR1020 10Gb CEE capable ethernet adapter.
Source is based against net-next-2.6.

We wish this patch to be considered for inclusion in net-next-2.6

Signed-off-by: Debashis Dutt <ddutt@brocade.com>
Signed-off-by: Rasesh Mody <rmody@brocade.com>
---
 MAINTAINERS              |    7 +++++++
 drivers/net/Kconfig      |   14 ++++++++++++++
 drivers/net/Makefile     |    1 +
 drivers/net/bna/Makefile |   11 +++++++++++
 include/linux/pci_ids.h  |    3 +++
 5 files changed, 36 insertions(+)

diff -ruP net-next-2.6.35-rc1-orig/MAINTAINERS net-next-2.6.35-rc1-mod/MAINTAINERS
--- net-next-2.6.35-rc1-orig/MAINTAINERS	2010-07-22 19:09:52.000000000 -0700
+++ net-next-2.6.35-rc1-mod/MAINTAINERS	2010-08-23 13:33:12.605094000 -0700
@@ -1380,6 +1380,13 @@
 S:	Supported
 F:	drivers/scsi/bfa/
 
+BROCADE BNA 10 GIGABIT ETHERNET DRIVER
+M:	Rasesh Mody <rmody@brocade.com>
+M:	Debashis Dutt <ddutt@brocade.com>
+L:	netdev@vger.kernel.org
+S:	Supported
+F:	drivers/net/bna/
+
 BSG (block layer generic sg v4 driver)
 M:	FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
 L:	linux-scsi@vger.kernel.org
diff -ruP net-next-2.6.35-rc1-orig/drivers/net/Kconfig net-next-2.6.35-rc1-mod/drivers/net/Kconfig
--- net-next-2.6.35-rc1-orig/drivers/net/Kconfig	2010-07-22 19:10:00.000000000 -0700
+++ net-next-2.6.35-rc1-mod/drivers/net/Kconfig	2010-08-23 13:33:12.597086000 -0700
@@ -2859,6 +2859,20 @@
 	  To compile this driver as a module, choose M here: the module
 	  will be called qlge.
 
+config BNA
+        tristate "Brocade 1010/1020 10Gb Ethernet Driver support"
+        depends on PCI
+        ---help---
+          This driver supports Brocade 1010/1020 10Gb CEE capable Ethernet
+          cards.
+          To compile this driver as a module, choose M here: the module
+          will be called bna.
+
+          For general information and support, go to the Brocade support
+          website at:
+
+          <http://support.brocade.com>
+
 source "drivers/net/sfc/Kconfig"
 
 source "drivers/net/benet/Kconfig"
diff -ruP net-next-2.6.35-rc1-orig/drivers/net/Makefile net-next-2.6.35-rc1-mod/drivers/net/Makefile
--- net-next-2.6.35-rc1-orig/drivers/net/Makefile	2010-07-22 19:10:00.000000000 -0700
+++ net-next-2.6.35-rc1-mod/drivers/net/Makefile	2010-08-23 13:33:12.612088000 -0700
@@ -34,6 +34,7 @@
 obj-$(CONFIG_JME) += jme.o
 obj-$(CONFIG_BE2NET) += benet/
 obj-$(CONFIG_VMXNET3) += vmxnet3/
+obj-$(CONFIG_BNA) += bna/
 
 gianfar_driver-objs := gianfar.o \
 		gianfar_ethtool.o \
diff -ruP net-next-2.6.35-rc1-orig/drivers/net/bna/Makefile net-next-2.6.35-rc1-mod/drivers/net/bna/Makefile
--- net-next-2.6.35-rc1-orig/drivers/net/bna/Makefile	1969-12-31 16:00:00.000000000 -0800
+++ net-next-2.6.35-rc1-mod/drivers/net/bna/Makefile	2010-08-23 13:33:12.626088000 -0700
@@ -0,0 +1,11 @@
+#
+# Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
+# All rights reserved.
+#
+
+obj-$(CONFIG_BNA) += bna.o
+
+bna-objs := bnad.o bnad_ethtool.o bna_ctrl.o bna_txrx.o
+bna-objs += bfa_ioc.o bfa_ioc_ct.o bfa_cee.o cna_fwimg.o
+
+EXTRA_CFLAGS := -Idrivers/net/bna
diff -ruP net-next-2.6.35-rc1-orig/include/linux/pci_ids.h net-next-2.6.35-rc1-mod/include/linux/pci_ids.h
--- net-next-2.6.35-rc1-orig/include/linux/pci_ids.h	2010-07-22 19:10:10.000000000 -0700
+++ net-next-2.6.35-rc1-mod/include/linux/pci_ids.h	2010-08-23 13:33:12.621088000 -0700
@@ -2188,6 +2188,9 @@
 #define PCI_VENDOR_ID_ARIMA		0x161f
 
 #define PCI_VENDOR_ID_BROCADE		0x1657
+#define PCI_DEVICE_ID_BROCADE_CT	0x0014
+#define PCI_DEVICE_ID_BROCADE_FC_8G1P	0x0017
+#define PCI_DEVICE_ID_BROCADE_CT_FC	0x0021
 
 #define PCI_VENDOR_ID_SIBYTE		0x166d
 #define PCI_DEVICE_ID_BCM1250_PCI	0x0001

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

end of thread, other threads:[~2010-08-23 21:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-04  5:45 [PATCH 6/6] bna: Brocade 10Gb Ethernet device driver Rasesh Mody
  -- strict thread matches above, loose matches on Subject: below --
2010-08-11  4:54 Rasesh Mody
2010-08-23 21:29 Rasesh Mody

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox