mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Antony Pavlov <antonynpavlov@gmail.com>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: barebox@lists.infradead.org, Oleksij Rempel <linux@rempel-privat.de>
Subject: Re: [PATCH v3 00/10] provide ethernet support for ar9344 and ar9331
Date: Mon, 18 Sep 2017 11:36:48 +0300	[thread overview]
Message-ID: <20170918113648.060d621526d832c3b8c03466@gmail.com> (raw)
In-Reply-To: <20170918064103.vnbr2lctmzo335mt@pengutronix.de>

On Mon, 18 Sep 2017 08:41:03 +0200
Sascha Hauer <s.hauer@pengutronix.de> wrote:

> On Thu, Sep 14, 2017 at 10:24:59AM +0200, Oleksij Rempel wrote:
> > changes v3:
> >  - ag71xx_ether_halt had wrong timeout test.
> >  - ag71xx_ether_init should return 0
> > 
> > changes v2:
> >  - merge all ag71xx in to one patch
> >  - make sere all new driver use dev_* instead of printk
> >  - rework miibus functions.
> >  - use it_timedout instead of own implementation
> >  - add comments to the patches.
> > 
> > Oleksij Rempel (9):
> >   add ar9331.dtsi and enable mac0
> >   MIPS: dts: ar9344: add mac0 node
> >   MIPS: dts: tl_wdr4300: enable mac0
> >   MIPS: dts: tl_wdr4300: add alias for spiflash
> >   MIPS: dts: tl_wdr4300: remove RO flag from barebox partition
> >   add phy: ar8327 driver


'add phy: ar8327 driver' -> 'phy: add ar8327 driver' ?



> >   MIPS: dts: tl_wdr4300: rename it to tl_wdr4300 v1.7
> >   MIPS: tplink-wdr4300_defconfig: add network support
> >   MIPS: dts: ar9344: add APB bus
> > 
> > Yegor Yefremov (1):
> >   net: ath79: add ag71xx Ethernet driver
> 
> Applied, thanks
> 
> Sascha
> 
> > 
> >  arch/mips/configs/tplink-wdr4300_defconfig         |  12 +-
> >  arch/mips/dts/ar9331.dtsi                          |  12 +
> >  ...4_tl_wdr4300.dts => ar9344-tl-wdr4300-v1.7.dts} |  10 +-
> >  arch/mips/dts/ar9344.dtsi                          |  44 +-
> >  arch/mips/dts/tplink-mr3020.dts                    |   5 +
> >  arch/mips/mach-ath79/include/mach/ar71xx_regs.h    |  12 +
> >  drivers/net/Kconfig                                |   7 +
> >  drivers/net/Makefile                               |   1 +
> >  drivers/net/ag71xx.c                               | 673 +++++++++++++++++++++
> >  drivers/net/phy/Kconfig                            |   5 +
> >  drivers/net/phy/Makefile                           |   1 +
> >  drivers/net/phy/ar8327.c                           | 280 +++++++++
> >  12 files changed, 1042 insertions(+), 20 deletions(-)
> >  create mode 100644 arch/mips/dts/ar9331.dtsi
> >  rename arch/mips/dts/{ar9344_tl_wdr4300.dts => ar9344-tl-wdr4300-v1.7.dts} (85%)
> >  create mode 100644 drivers/net/ag71xx.c
> >  create mode 100644 drivers/net/phy/ar8327.c
> > 
> > -- 
> > 2.11.0
> > 
> > 
> > _______________________________________________
> > barebox mailing list
> > barebox@lists.infradead.org
> > http://lists.infradead.org/mailman/listinfo/barebox
> > 
> 
> -- 
> Pengutronix e.K.                           |                             |
> Industrial Linux Solutions                 | http://www.pengutronix.de/  |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox


-- 
Best regards,
  Antony Pavlov

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  reply	other threads:[~2017-09-18  8:25 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-14  8:24 Oleksij Rempel
2017-09-14  8:25 ` [PATCH v3 01/10] net: ath79: add ag71xx Ethernet driver Oleksij Rempel
2017-09-14  8:25 ` [PATCH v3 02/10] add ar9331.dtsi and enable mac0 Oleksij Rempel
2017-09-14  8:25 ` [PATCH v3 03/10] MIPS: dts: ar9344: add mac0 node Oleksij Rempel
2017-09-14  8:25 ` [PATCH v3 04/10] MIPS: dts: tl_wdr4300: enable mac0 Oleksij Rempel
2017-09-14  8:25 ` [PATCH v3 05/10] MIPS: dts: tl_wdr4300: add alias for spiflash Oleksij Rempel
2017-09-14  8:25 ` [PATCH v3 06/10] MIPS: dts: tl_wdr4300: remove RO flag from barebox partition Oleksij Rempel
2017-09-14  8:25 ` [PATCH v3 07/10] add phy: ar8327 driver Oleksij Rempel
2017-09-14  8:25 ` [PATCH v3 08/10] MIPS: dts: tl_wdr4300: rename it to tl_wdr4300 v1.7 Oleksij Rempel
2017-09-14  8:25 ` [PATCH v3 09/10] MIPS: tplink-wdr4300_defconfig: add network support Oleksij Rempel
2017-09-14  8:25 ` [PATCH v3 10/10] MIPS: dts: ar9344: add APB bus Oleksij Rempel
2017-09-18  6:41 ` [PATCH v3 00/10] provide ethernet support for ar9344 and ar9331 Sascha Hauer
2017-09-18  8:36   ` Antony Pavlov [this message]
2017-09-20  6:30     ` Sascha Hauer

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=20170918113648.060d621526d832c3b8c03466@gmail.com \
    --to=antonynpavlov@gmail.com \
    --cc=barebox@lists.infradead.org \
    --cc=linux@rempel-privat.de \
    --cc=s.hauer@pengutronix.de \
    /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