All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL] u-boot-sh/net
@ 2020-07-27 10:34 Marek Vasut
  2020-07-27 15:13 ` Tom Rini
  2020-07-27 17:57 ` Joe Hershberger
  0 siblings, 2 replies; 6+ messages in thread
From: Marek Vasut @ 2020-07-27 10:34 UTC (permalink / raw)
  To: u-boot

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

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [PULL] u-boot-sh/net
@ 2020-06-20 17:18 Marek Vasut
  2020-06-22 12:23 ` Tom Rini
  0 siblings, 1 reply; 6+ messages in thread
From: Marek Vasut @ 2020-06-20 17:18 UTC (permalink / raw)
  To: u-boot

Below is another networking PR for u-boot/next (!). It's more DM
conversion of the PCI networking drivers.

Any news on Joe ?

The following changes since commit 7a81989b7b04bd87d1e684f2bafdc92a9c16fecc:

  common: hash: Remove a debug printf statement (2020-06-16 11:36:30 -0400)

are available in the Git repository at:

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

for you to fetch changes up to d789a8259e3b3b77e3eb2b090373ab2cbc225629:

  net: pcnet: Add Kconfig entries (2020-06-18 19:34:41 +0200)

----------------------------------------------------------------
Marek Vasut (45):
      net: eepro100: Remove EEPRO100_SROM_WRITE
      net: eepro100: Clean up comments
      net: eepro100: Use plain debug()
      net: eepro100: Fix spacing
      net: eepro100: Fix braces
      net: eepro100: Fix parenthesis alignment
      net: eepro100: Fix pointer location
      net: eepro100: Fix indented label
      net: eepro100: Fix remaining checkpatch issues
      net: eepro100: Fix camelcase
      net: eepro100: Use standard I/O accessors
      net: eepro100: Replace purge_tx_ring() with memset()
      net: eepro100: Factor out tx_ring command issuing
      net: eepro100: Add cache management
      net: eepro100: Remove volatile misuse
      net: eepro100: Reorder functions in the driver
      net: eepro100: Use PCI_DEVICE() to define PCI device compat list
      net: eepro100: Switch from malloc()+memset() to calloc()
      net: eepro100: Factor out MII registration
      net: eepro100: Fix EE_*_CMD macros
      net: eepro100: Drop inline keyword
      net: eepro100: Pass PCI BDF into bus_to_phys()/phys_to_bus()
      net: eepro100: Introduce device private data
      net: eepro100: Pass device private data around
      net: eepro100: Pass device private data into mdiobus
      net: eepro100: Add RX/TX rings into the private data
      net: eepro100: Drop bd_t pointer from read_hw_addr()
      net: eepro100: Split common parts of non-DM functions out
      net: eepro100: Add DM support
      net: eepro100: Add Kconfig entries
      net: pcnet: Drop typedef struct pcnet_priv_t
      net: pcnet: Drop PCNET_HAS_PROM
      net: pcnet: Use PCI_DEVICE() to define PCI device compat list
      net: pcnet: Simplify private data allocation
      net: pcnet: Replace memset+malloc with calloc
      net: pcnet: Move private data allocation to initialize
      net: pcnet: Move initialize function at the end
      net: pcnet: Drop useless forward declarations
      net: pcnet: Wrap devbusfn into private data
      net: pcnet: Pass private data through dev->priv
      net: pcnet: Wrap iobase into private data
      net: pcnet: Wrap name and enetaddr into private data
      net: pcnet: Split common and non-DM functions
      net: pcnet: Add DM support
      net: pcnet: Add Kconfig entries

 README                                  |    5 -
 configs/MPC8315ERDB_defconfig           |    1 +
 configs/TQM834x_defconfig               |    1 +
 configs/integratorap_cm720t_defconfig   |    1 +
 configs/integratorap_cm920t_defconfig   |    1 +
 configs/integratorap_cm926ejs_defconfig |    1 +
 configs/integratorap_cm946es_defconfig  |    1 +
 configs/malta64_defconfig               |    1 +
 configs/malta64el_defconfig             |    1 +
 configs/malta_defconfig                 |    1 +
 configs/maltael_defconfig               |    1 +
 drivers/net/Kconfig                     |   12 +
 drivers/net/eepro100.c                  | 1271
+++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------
 drivers/net/pcnet.c                     |  618
+++++++++++++++++++++++++++------------------
 include/configs/MPC8315ERDB.h           |    1 -
 include/configs/MPC8323ERDB.h           |    1 -
 include/configs/MPC832XEMDS.h           |    1 -
 include/configs/MPC8349EMDS.h           |    1 -
 include/configs/MPC8349EMDS_SDRAM.h     |    1 -
 include/configs/MPC837XEMDS.h           |    1 -
 include/configs/MPC8536DS.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               |    2 -
 include/configs/caddy2.h                |    1 -
 include/configs/integratorap.h          |    1 -
 include/configs/malta.h                 |    2 -
 include/configs/sbc8349.h               |    1 -
 include/configs/sbc8548.h               |    1 -
 include/configs/sbc8641d.h              |    1 -
 include/configs/vme8349.h               |    1 -
 scripts/config_whitelist.txt            |    2 -
 40 files changed, 1075 insertions(+), 870 deletions(-)

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

end of thread, other threads:[~2020-07-27 18:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-27 10:34 [PULL] u-boot-sh/net Marek Vasut
2020-07-27 15:13 ` Tom Rini
2020-07-27 17:57 ` Joe Hershberger
2020-07-27 18:06   ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2020-06-20 17:18 Marek Vasut
2020-06-22 12:23 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.