From patchwork Sat Dec 19 01:28:35 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Debashis Dutt X-Patchwork-Id: 41451 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 1C7EEB6EEA for ; Sat, 19 Dec 2009 12:28:53 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755386AbZLSB2m (ORCPT ); Fri, 18 Dec 2009 20:28:42 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755663AbZLSB2i (ORCPT ); Fri, 18 Dec 2009 20:28:38 -0500 Received: from hq-exedge.brocade.com ([66.243.153.82]:46474 "EHLO hq-exedge.brocade.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755543AbZLSB2h (ORCPT ); Fri, 18 Dec 2009 20:28:37 -0500 Received: from hq-exchfe-5.corp.brocade.com (192.168.39.134) by HQ-EXEDGE-1.corp.brocade.com (192.168.39.207) with Microsoft SMTP Server (TLS) id 8.2.213.0; Fri, 18 Dec 2009 17:28:33 -0800 Received: from blasphemy.brocade.com (192.168.38.107) by SJ-hub-1.brocade.com (192.168.39.225) with Microsoft SMTP Server id 8.2.213.0; Fri, 18 Dec 2009 17:28:35 -0800 Received: from blc-10-2.brocade.com (blc-10-2.brocade.com [10.2.2.237]) by blasphemy.brocade.com (Postfix) with ESMTP id A7331142C6; Fri, 18 Dec 2009 17:28:35 -0800 (PST) Received: from blc-10-2.brocade.com (localhost.localdomain [127.0.0.1]) by blc-10-2.brocade.com (8.13.1/8.13.1) with ESMTP id nBJ1SZCx015459; Fri, 18 Dec 2009 17:28:35 -0800 Received: (from ddutt@localhost) by blc-10-2.brocade.com (8.13.1/8.13.1/Submit) id nBJ1SZVr015450; Fri, 18 Dec 2009 17:28:35 -0800 Date: Fri, 18 Dec 2009 17:28:35 -0800 From: Debashis Dutt Message-ID: <200912190128.nBJ1SZVr015450@blc-10-2.brocade.com> To: Subject: Subject: [PATCH 6/6] bna: Brocade 10Gb Ethernet device driver CC: MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Debashis Dutt 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 --- Kconfig | 15 +++++++++++++++ Makefile | 1 + bna/Makefile | 14 ++++++++++++++ 3 files changed, 30 insertions(+) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff -ruP net-next-2.6-orig/drivers/net/bna/Makefile net-next-2.6-mod/drivers/net/bna/Makefile --- net-next-2.6-orig/drivers/net/bna/Makefile 1969-12-31 16:00:00.000000000 -0800 +++ net-next-2.6-mod/drivers/net/bna/Makefile 2009-12-18 16:55:55.000000000 -0800 @@ -0,0 +1,14 @@ +# +# Copyright (c) 2006-2009 Brocade Communications Systems, Inc. +# All rights reserved. +# + +obj-$(CONFIG_BNA) += bna.o + +bna-objs := bnad.o bnad_ethtool.o bna_fn.o bna_if.o bna_queue.o +bna-objs += bfad_fwimg.o bfa_csdebug.o bfa_sm.o bfa_ioc.o bfa_ioc_ct.o +bna-objs += bfa_timer.o bfa_cee.o + +EXTRA_CFLAGS := -Idrivers/net/bna -Idrivers/net/bna/include/cee +EXTRA_CFLAGS += -Idrivers/net/bna/include -Idrivers/net/bna/include/cs +EXTRA_CFLAGS += -Idrivers/net/bna/include/cna/pstats diff -ruP net-next-2.6-orig/drivers/net/Kconfig net-next-2.6-mod/drivers/net/Kconfig --- net-next-2.6-orig/drivers/net/Kconfig 2009-10-31 00:44:29.000000000 -0700 +++ net-next-2.6-mod/drivers/net/Kconfig 2009-12-18 16:55:55.000000000 -0800 @@ -2757,6 +2757,21 @@ 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: + + + source "drivers/net/sfc/Kconfig" source "drivers/net/benet/Kconfig" diff -ruP net-next-2.6-orig/drivers/net/Makefile net-next-2.6-mod/drivers/net/Makefile --- net-next-2.6-orig/drivers/net/Makefile 2009-10-31 00:44:29.000000000 -0700 +++ net-next-2.6-mod/drivers/net/Makefile 2009-12-18 16:55:55.000000000 -0800 @@ -31,6 +31,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 \