mbox series

[PULL] u-boot-sh/net

Message ID f369fe75-7260-ce60-5a68-4b87a8faa5a8@denx.de
State Accepted
Delegated to: Tom Rini
Headers show
Series [PULL] u-boot-sh/net | expand

Pull-request

git://git.denx.de/u-boot-sh.git net

Message

Marek Vasut July 27, 2020, 10:34 a.m. UTC
More networking DM conversion (this is the last driver).
Any news on Joe ?

The following changes since commit ada61f1ee2a4eaa1b29d699b5ba940483171df8a:

  Merge https://gitlab.denx.de/u-boot/custodians/u-boot-riscv
(2020-07-24 08:43:08 -0400)

are available in the Git repository at:

  git://git.denx.de/u-boot-sh.git net

for you to fetch changes up to f23a785cfb451f3fcb457ed1f9141907dce7dd77:

  net: dc2114x: Add DM support (2020-07-25 14:20:56 +0200)

----------------------------------------------------------------
Marek Vasut (12):
      net: dc2114x: Use PCI_DEVICE() to define PCI device compat list
      net: dc2114x: Support all DC2114x
      net: dc2114x: Add Kconfig entries
      net: dc2114x: Drop update_srom()
      net: dc2114x: Use standard I/O accessors
      net: dc2114x: Introduce private data
      net: dc2114x: Pass private data around
      net: dc2114x: Pass PCI BDF into phys_to_bus()
      net: dc2114x: Add RX/TX rings into the private data
      net: dc2114x: Split RX path
      net: dc2114x: Split common parts of non-DM functions out
      net: dc2114x: Add DM support

 README                                  |   3 -
 configs/integratorap_cm720t_defconfig   |   1 +
 configs/integratorap_cm920t_defconfig   |   1 +
 configs/integratorap_cm926ejs_defconfig |   1 +
 configs/integratorap_cm946es_defconfig  |   1 +
 drivers/net/Kconfig                     |   6 +
 drivers/net/dc2114x.c                   | 611
++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------
 include/configs/MPC8349EMDS.h           |   1 -
 include/configs/MPC8349EMDS_SDRAM.h     |   1 -
 include/configs/MPC8540ADS.h            |   1 -
 include/configs/MPC8541CDS.h            |   1 -
 include/configs/MPC8544DS.h             |   1 -
 include/configs/MPC8548CDS.h            |   1 -
 include/configs/MPC8555CDS.h            |   1 -
 include/configs/MPC8560ADS.h            |   1 -
 include/configs/MPC8568MDS.h            |   1 -
 include/configs/MPC8569MDS.h            |   1 -
 include/configs/MPC8572DS.h             |   1 -
 include/configs/MPC8641HPCN.h           |   1 -
 include/configs/TQM834x.h               |   1 -
 include/configs/caddy2.h                |   1 -
 include/configs/integratorap.h          |   1 -
 include/configs/sbc8349.h               |   1 -
 include/configs/sbc8548.h               |   1 -
 include/configs/sbc8641d.h              |   1 -
 include/configs/vme8349.h               |   1 -
 scripts/config_whitelist.txt            |   1 -
 27 files changed, 366 insertions(+), 278 deletions(-)

Comments

Tom Rini July 27, 2020, 3:13 p.m. UTC | #1
On Mon, Jul 27, 2020 at 12:34:40PM +0200, Marek Vasut wrote:

> More networking DM conversion (this is the last driver).
> Any news on Joe ?
> 
> The following changes since commit ada61f1ee2a4eaa1b29d699b5ba940483171df8a:
> 
>   Merge https://gitlab.denx.de/u-boot/custodians/u-boot-riscv
> (2020-07-24 08:43:08 -0400)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-sh.git net
> 
> for you to fetch changes up to f23a785cfb451f3fcb457ed1f9141907dce7dd77:
> 
>   net: dc2114x: Add DM support (2020-07-25 14:20:56 +0200)
> 

Applied to u-boot/master, thanks!
Joe Hershberger July 27, 2020, 5:57 p.m. UTC | #2
On Mon, Jul 27, 2020 at 5:40 AM Marek Vasut <marex@denx.de> wrote:
>
> More networking DM conversion (this is the last driver).
> Any news on Joe ?

Sorry, guys, I'm back home in Texas now and have had a lot going on
keeping me swamped.

I aim to get caught up soon.

Any idea how accurate my patchwork queue is?

Also, I'd like to get some assistance getting a gitlab validation
workflow going. Travis was not helping me be very efficient in testing
changes.

Thanks,
-Joe


> The following changes since commit ada61f1ee2a4eaa1b29d699b5ba940483171df8a:
>
>   Merge https://gitlab.denx.de/u-boot/custodians/u-boot-riscv
> (2020-07-24 08:43:08 -0400)
>
> are available in the Git repository at:
>
>   git://git.denx.de/u-boot-sh.git net
>
> for you to fetch changes up to f23a785cfb451f3fcb457ed1f9141907dce7dd77:
>
>   net: dc2114x: Add DM support (2020-07-25 14:20:56 +0200)
>
> ----------------------------------------------------------------
> Marek Vasut (12):
>       net: dc2114x: Use PCI_DEVICE() to define PCI device compat list
>       net: dc2114x: Support all DC2114x
>       net: dc2114x: Add Kconfig entries
>       net: dc2114x: Drop update_srom()
>       net: dc2114x: Use standard I/O accessors
>       net: dc2114x: Introduce private data
>       net: dc2114x: Pass private data around
>       net: dc2114x: Pass PCI BDF into phys_to_bus()
>       net: dc2114x: Add RX/TX rings into the private data
>       net: dc2114x: Split RX path
>       net: dc2114x: Split common parts of non-DM functions out
>       net: dc2114x: Add DM support
>
>  README                                  |   3 -
>  configs/integratorap_cm720t_defconfig   |   1 +
>  configs/integratorap_cm920t_defconfig   |   1 +
>  configs/integratorap_cm926ejs_defconfig |   1 +
>  configs/integratorap_cm946es_defconfig  |   1 +
>  drivers/net/Kconfig                     |   6 +
>  drivers/net/dc2114x.c                   | 611
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------
>  include/configs/MPC8349EMDS.h           |   1 -
>  include/configs/MPC8349EMDS_SDRAM.h     |   1 -
>  include/configs/MPC8540ADS.h            |   1 -
>  include/configs/MPC8541CDS.h            |   1 -
>  include/configs/MPC8544DS.h             |   1 -
>  include/configs/MPC8548CDS.h            |   1 -
>  include/configs/MPC8555CDS.h            |   1 -
>  include/configs/MPC8560ADS.h            |   1 -
>  include/configs/MPC8568MDS.h            |   1 -
>  include/configs/MPC8569MDS.h            |   1 -
>  include/configs/MPC8572DS.h             |   1 -
>  include/configs/MPC8641HPCN.h           |   1 -
>  include/configs/TQM834x.h               |   1 -
>  include/configs/caddy2.h                |   1 -
>  include/configs/integratorap.h          |   1 -
>  include/configs/sbc8349.h               |   1 -
>  include/configs/sbc8548.h               |   1 -
>  include/configs/sbc8641d.h              |   1 -
>  include/configs/vme8349.h               |   1 -
>  scripts/config_whitelist.txt            |   1 -
>  27 files changed, 366 insertions(+), 278 deletions(-)
Tom Rini July 27, 2020, 6:06 p.m. UTC | #3
On Mon, Jul 27, 2020 at 12:57:33PM -0500, Joe Hershberger wrote:
> On Mon, Jul 27, 2020 at 5:40 AM Marek Vasut <marex@denx.de> wrote:
> >
> > More networking DM conversion (this is the last driver).
> > Any news on Joe ?
> 
> Sorry, guys, I'm back home in Texas now and have had a lot going on
> keeping me swamped.

Good to know you made it back home.

> I aim to get caught up soon.
> 
> Any idea how accurate my patchwork queue is?

Somewhat?  Marek has picked some of the DM migrations he did and I've
picked some other stuff, both networking and environment.

> Also, I'd like to get some assistance getting a gitlab validation
> workflow going. Travis was not helping me be very efficient in testing
> changes.

It should be fairly straight-forward to get runs happen automatically.
To get emails on passes you do have to check one of the preference
boxes.  And GitLab also has the occasional "runner made a mistake, job
failed for no good reason", but less often than Travis and there's a
re-run all jobs button.

Azure for CI is also good in general, but right now the windows host
tools jobs are both failing for reasons out of our control and I've
asked Bin to look at fixing that (it's a documented thing I just didn't
quite see the best way to do).