From: Stefan Wahren <stefan.wahren@i2se.com>
To: davem@davemloft.net, robh+dt@kernel.org, pawel.moll@arm.org,
mark.rutland@arm.org, ijc+devicetree@hellion.org.uk,
galak@codeaurora.org
Cc: f.fainelli@gmail.com, netdev@vger.kernel.org, devicetree@vger.kernel.org
Subject: [PATCH RFC 0/2] add Qualcomm QCA7000 ethernet driver
Date: Mon, 28 Apr 2014 19:54:55 +0200 [thread overview]
Message-ID: <1398707697-43785-1-git-send-email-stefan.wahren@i2se.com> (raw)
This patch series adds support for the Qualcomm QCA7000 Homeplug GreenPHY.
The QCA7000 is serial-to-powerline bridge with two interfaces: UART and SPI.
These patches handles only the last one, with an Ethernet over SPI protocol
driver.
This driver based on the Qualcomm code [1], but contains a lot of changes
since last year:
* devictree support
* DebugFS support
* ethtool support
* better error handling
* performance improvements
* code cleanup
For more details look at our git repository [2].
The code has been tested only on Freescale i.MX28 boards, but should work
on other platforms.
Any comments about the code are welcome.
[1] - https://github.com/IoE/qca7000
[2] - https://github.com/I2SE/qca7000/tree/linux-mainline
Stefan Wahren (2):
Documentation: add Device tree bindings for QCA7000
net: qualcomm: new Ethernet over SPI driver for QCA7000
.../devicetree/bindings/net/qca-qca7000-spi.txt | 51 +
drivers/net/ethernet/Kconfig | 1 +
drivers/net/ethernet/Makefile | 1 +
drivers/net/ethernet/qualcomm/Kconfig | 30 +
drivers/net/ethernet/qualcomm/Makefile | 6 +
drivers/net/ethernet/qualcomm/qca_7k.c | 149 +++
drivers/net/ethernet/qualcomm/qca_7k.h | 72 ++
drivers/net/ethernet/qualcomm/qca_debug.c | 231 +++++
drivers/net/ethernet/qualcomm/qca_debug.h | 32 +
drivers/net/ethernet/qualcomm/qca_framing.c | 155 +++
drivers/net/ethernet/qualcomm/qca_framing.h | 134 +++
drivers/net/ethernet/qualcomm/qca_spi.c | 1030 ++++++++++++++++++++
drivers/net/ethernet/qualcomm/qca_spi.h | 108 ++
13 files changed, 2000 insertions(+)
create mode 100644 Documentation/devicetree/bindings/net/qca-qca7000-spi.txt
create mode 100644 drivers/net/ethernet/qualcomm/Kconfig
create mode 100644 drivers/net/ethernet/qualcomm/Makefile
create mode 100644 drivers/net/ethernet/qualcomm/qca_7k.c
create mode 100644 drivers/net/ethernet/qualcomm/qca_7k.h
create mode 100644 drivers/net/ethernet/qualcomm/qca_debug.c
create mode 100644 drivers/net/ethernet/qualcomm/qca_debug.h
create mode 100644 drivers/net/ethernet/qualcomm/qca_framing.c
create mode 100644 drivers/net/ethernet/qualcomm/qca_framing.h
create mode 100644 drivers/net/ethernet/qualcomm/qca_spi.c
create mode 100644 drivers/net/ethernet/qualcomm/qca_spi.h
--
1.7.10.4
next reply other threads:[~2014-04-28 19:43 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-28 17:54 Stefan Wahren [this message]
2014-04-28 17:54 ` [PATCH RFC 1/2] Documentation: add Device tree bindings for QCA7000 Stefan Wahren
2014-04-28 19:57 ` Arnd Bergmann
2014-04-29 6:30 ` Stefan Wahren
2014-04-29 7:57 ` Arnd Bergmann
2014-04-29 22:36 ` Mark Rutland
2014-04-30 7:30 ` Stefan Wahren
2014-04-28 17:54 ` [PATCH RFC 2/2] net: qualcomm: new Ethernet over SPI driver " Stefan Wahren
2014-04-28 20:09 ` Arnd Bergmann
2014-04-29 6:51 ` Stefan Wahren
2014-04-29 8:14 ` Arnd Bergmann
2014-04-29 15:54 ` Stefan Wahren
2014-04-29 18:14 ` Arnd Bergmann
2014-04-30 8:09 ` Stefan Wahren
2014-04-30 9:32 ` Arnd Bergmann
2014-04-30 15:36 ` Stefan Wahren
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=1398707697-43785-1-git-send-email-stefan.wahren@i2se.com \
--to=stefan.wahren@i2se.com \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=f.fainelli@gmail.com \
--cc=galak@codeaurora.org \
--cc=ijc+devicetree@hellion.org.uk \
--cc=mark.rutland@arm.org \
--cc=netdev@vger.kernel.org \
--cc=pawel.moll@arm.org \
--cc=robh+dt@kernel.org \
/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 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).