netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: add QCA alx Ethernet driver
@ 2012-02-29  1:50 Luis R. Rodriguez
  2012-02-29  1:50 ` [PATCH] net: add new QCA alx ethernet driver which supercedes atl1c Luis R. Rodriguez
                   ` (4 more replies)
  0 siblings, 5 replies; 23+ messages in thread
From: Luis R. Rodriguez @ 2012-02-29  1:50 UTC (permalink / raw)
  To: davem, netdev, linux-kernel, mcgrof
  Cc: qca-linux-team, nic-devel, kgiori, chris.snook, mathieu, bryanh

From: Luis R. Rodriguez <mcgrof@frijolero.org>

The next patch adds the new QCA alx Ethernet driver that
supercedes the atl1c Ethernet driver. For details please
read the commit log of the patch. Given the size you can
download the patch from:

http://bombadil.infradead.org/~mcgrof/2012/02/28/add-alx-next-20120228.patch
sha1sum: 8a8f7b6f1cbe737e70ec3b3eda483a6925fd9bd6

Many thanks to our QCA Networking engineering team for their hard
work on getting this driver polished, well tested against atl1c,
and also to Joe and Hao-Ran for their patches.

If you'd like to quickly install this on any system even with older
kernels you can get this tarball which has the driver backported
for older kernels:

http://www.orbit-lab.org/kernel/compat-wireless/2012/02/compat-wireless-2012-02-28-p.tar.bz2
sha1sum: 7c083fc568900fbeefed021d009620830f866819

The "-p" postfix annotates that we have applied a patch in this tarball
from the linux-next-pending/ directory. For more details see:

http://wireless.kernel.org/en/users/Download/stable/#Additional_patches_to_stable_releases

To only compile and install the alx driver you can do:

./scripts/driver-select alx
make
sudo make install

The install will disable atl1c in preference for alx. To revert back
to atl1c you can simply do:

./scripts/alx-enable atl1c

This is part of today's release of compat-wireless with the following
code metrics:

compat-wireless code metrics

    828230 - Total upstream lines of code being pulled
      2492 - backport code changes
      2137 - backport code additions
       355 - backport code deletions
      9015 - backport from compat module
     11507 - total backport code
    1.3893 - % of code consists of backport work
     13428 - Code changes posted but not yet merged
     13407 - Code additions posted but not yet merged
        21 - Code deletions posted but not yet merged
    1.6213 - % of code not yet merged

Base tree: linux-next.git
Base tree version: next-20120228
compat-wireless release: compat-wireless-2012-02-28-p

Luis R. Rodriguez (1):
  alx: add new QCA ethernet driver which supercedes atl1c

 MAINTAINERS                                    |   11 +
 drivers/net/ethernet/atheros/Kconfig           |   42 +-
 drivers/net/ethernet/atheros/Makefile          |    1 +
 drivers/net/ethernet/atheros/alx/Makefile      |    3 +
 drivers/net/ethernet/atheros/alx/alc_cb.c      |  912 ++++++
 drivers/net/ethernet/atheros/alx/alc_hw.c      | 1087 +++++++
 drivers/net/ethernet/atheros/alx/alc_hw.h      | 1324 ++++++++
 drivers/net/ethernet/atheros/alx/alf_cb.c      | 1187 +++++++
 drivers/net/ethernet/atheros/alx/alf_hw.c      |  918 ++++++
 drivers/net/ethernet/atheros/alx/alf_hw.h      | 2098 +++++++++++++
 drivers/net/ethernet/atheros/alx/alx.h         |  670 ++++
 drivers/net/ethernet/atheros/alx/alx_ethtool.c |  519 ++++
 drivers/net/ethernet/atheros/alx/alx_hwcom.h   |  187 ++
 drivers/net/ethernet/atheros/alx/alx_main.c    | 3899 ++++++++++++++++++++++++
 drivers/net/ethernet/atheros/alx/alx_sw.h      |  493 +++
 15 files changed, 13350 insertions(+), 1 deletions(-)
 create mode 100644 drivers/net/ethernet/atheros/alx/Makefile
 create mode 100644 drivers/net/ethernet/atheros/alx/alc_cb.c
 create mode 100644 drivers/net/ethernet/atheros/alx/alc_hw.c
 create mode 100644 drivers/net/ethernet/atheros/alx/alc_hw.h
 create mode 100644 drivers/net/ethernet/atheros/alx/alf_cb.c
 create mode 100644 drivers/net/ethernet/atheros/alx/alf_hw.c
 create mode 100644 drivers/net/ethernet/atheros/alx/alf_hw.h
 create mode 100644 drivers/net/ethernet/atheros/alx/alx.h
 create mode 100644 drivers/net/ethernet/atheros/alx/alx_ethtool.c
 create mode 100644 drivers/net/ethernet/atheros/alx/alx_hwcom.h
 create mode 100644 drivers/net/ethernet/atheros/alx/alx_main.c
 create mode 100644 drivers/net/ethernet/atheros/alx/alx_sw.h

-- 
1.7.4.15.g7811d

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

end of thread, other threads:[~2012-03-30 20:52 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-29  1:50 [PATCH] net: add QCA alx Ethernet driver Luis R. Rodriguez
2012-02-29  1:50 ` [PATCH] net: add new QCA alx ethernet driver which supercedes atl1c Luis R. Rodriguez
2012-02-29  1:58   ` David Miller
2012-02-29  1:53 ` [PATCH] net: add QCA alx Ethernet driver David Miller
2012-02-29  2:12   ` Luis R. Rodriguez
2012-02-29  2:15     ` David Miller
2012-02-29  2:19     ` Huang, Xiong
2012-02-29  2:28       ` David Miller
2012-02-29  3:11         ` Huang, Xiong
2012-02-29  3:32           ` David Miller
2012-02-29  7:30             ` Huang, Xiong
2012-02-29  9:38               ` Luis R. Rodriguez
2012-03-22  1:28             ` Luis R. Rodriguez
2012-03-22  9:27               ` Francois Romieu
2012-03-22 13:38                 ` Luis R. Rodriguez
2012-03-30 17:10               ` Luis R. Rodriguez
2012-03-30 20:45                 ` David Miller
2012-03-30 20:52                   ` Luis R. Rodriguez
2012-02-29  3:32 ` Stephen Hemminger
2012-03-01 23:40   ` Francois Romieu
2012-03-02  0:56     ` Joe Perches
2012-02-29  3:52 ` Joe Perches
     [not found] ` <CAA93jw4NwHaLazxK2Eo6a6TuvF3svqdZjTpHUwOyEHv-Q=busQ@mail.gmail.com>
2012-03-30 18:31   ` Luis R. Rodriguez

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