All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH u-boot-marvell 00/19] some mvneta changes, cleanups, fixes
@ 2022-04-27 10:41 Marek Behún
  2022-04-27 10:41 ` [PATCH u-boot-marvell 01/19] net: mvneta: Get rid of platdata Marek Behún
                   ` (20 more replies)
  0 siblings, 21 replies; 58+ messages in thread
From: Marek Behún @ 2022-04-27 10:41 UTC (permalink / raw)
  To: Stefan Roese
  Cc: Robert Marko, Pali Rohár, U-Boot-Denx, Ramon Fried,
	Joe Hershberger, Marek Behún, Chris Packham,
	Heinrich Schuchardt, Konstantin Porotchkin, Mario Six,
	Mark Kettenis, Phil Sutter, Rogier Stam, Simon Glass,
	Vladimir Oltean, Vladimir Vid

From: Marek Behún <marek.behun@nic.cz>

Hello Stefan,

here come some refactors, cleanups and fixed for the mvneta driver.

Marek Behún (19):
  net: mvneta: Get rid of platdata
  net: mvneta: Fix 10Mbps speed
  net: mvneta: Use DM MDIO API for connecting PHY
  net: mvneta: Remember fixed link instead of PHY address in priv data
  arm: mvebu: Espressobin: Use DM registered MDIO to configure switch
  net: mdio-uclass: add dm_phy_find_by_ofnode() helper
  arm: mvebu: turris_mox: Use DM registered MDIO
  net: mvneta: Don't register MDIO bus
  net: mvneta: Fix unused variable warning if DM_GPIO is disabled
  net: mvneta: Drop one indentation level in mvneta_adjust_link()
  net: mvneta: Use bool instead of int for boolean variable
  net: mvneta: Drop unnecessary space
  net: mventa: Don't check for CONFIG_PHYLIB
  net: mvneta: Rename CONFIG_NR_CPUS to MVNETA_NR_CPUS
  net: mvneta: Convert to use PHY_FIXED for fixed-link
  net: mvneta: Write PHY address just before enabling HW polling
  net: mvneta: Drop fixed_link member from private struct
  net: mvneta: Disable fixed PHY code if PHY_FIXED is not compiled in
  net: mvneta: Drop unneeded macro

 .../dts/armada-3720-turris-mox-u-boot.dtsi    |  19 -
 board/CZ.NIC/turris_mox/turris_mox.c          |  88 ++---
 board/Marvell/mvebu_armada-37xx/board.c       |  26 +-
 configs/clearfog_defconfig                    |   1 +
 configs/controlcenterdc_defconfig             |   1 +
 configs/db-88f6820-amc_defconfig              |   1 +
 configs/db-88f6820-gp_defconfig               |   1 +
 configs/db-mv784mp-gp_defconfig               |   1 +
 configs/ds414_defconfig                       |   1 +
 configs/helios4_defconfig                     |   1 +
 configs/maxbcm_defconfig                      |   1 +
 configs/mvebu_espressobin-88f3720_defconfig   |   3 +
 configs/theadorable_debug_defconfig           |   1 +
 configs/turris_mox_defconfig                  |   1 +
 configs/turris_omnia_defconfig                |   2 +
 configs/uDPU_defconfig                        |   1 +
 drivers/net/Kconfig                           |   1 +
 drivers/net/mvneta.c                          | 343 ++++--------------
 include/miiphy.h                              |   9 +
 net/mdio-uclass.c                             |  22 ++
 20 files changed, 181 insertions(+), 343 deletions(-)

-- 
2.35.1


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

end of thread, other threads:[~2022-05-04  9:25 UTC | newest]

Thread overview: 58+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-27 10:41 [PATCH u-boot-marvell 00/19] some mvneta changes, cleanups, fixes Marek Behún
2022-04-27 10:41 ` [PATCH u-boot-marvell 01/19] net: mvneta: Get rid of platdata Marek Behún
2022-04-30 23:28   ` Ramon Fried
2022-05-02  6:48   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 02/19] net: mvneta: Fix 10Mbps speed Marek Behún
2022-04-30 23:28   ` Ramon Fried
2022-05-02  6:48   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 03/19] net: mvneta: Use DM MDIO API for connecting PHY Marek Behún
2022-04-30 23:28   ` Ramon Fried
2022-05-02  6:48   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 04/19] net: mvneta: Remember fixed link instead of PHY address in priv data Marek Behún
2022-04-30 23:28   ` Ramon Fried
2022-05-02  6:48   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 05/19] arm: mvebu: Espressobin: Use DM registered MDIO to configure switch Marek Behún
2022-05-02  6:48   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 06/19] net: mdio-uclass: add dm_phy_find_by_ofnode() helper Marek Behún
2022-04-30 23:28   ` Ramon Fried
2022-05-02  7:00   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 07/19] arm: mvebu: turris_mox: Use DM registered MDIO Marek Behún
2022-05-02  7:00   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 08/19] net: mvneta: Don't register MDIO bus Marek Behún
2022-04-30 23:29   ` Ramon Fried
2022-05-02  7:01   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 09/19] net: mvneta: Fix unused variable warning if DM_GPIO is disabled Marek Behún
2022-04-30 23:29   ` Ramon Fried
2022-05-02  7:01   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 10/19] net: mvneta: Drop one indentation level in mvneta_adjust_link() Marek Behún
2022-04-30 23:29   ` Ramon Fried
2022-05-02  7:01   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 11/19] net: mvneta: Use bool instead of int for boolean variable Marek Behún
2022-04-30 23:29   ` Ramon Fried
2022-05-02  7:01   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 12/19] net: mvneta: Drop unnecessary space Marek Behún
2022-04-30 23:30   ` Ramon Fried
2022-05-02  7:01   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 13/19] net: mvneta: Don't check for CONFIG_PHYLIB Marek Behún
2022-04-30 23:30   ` Ramon Fried
2022-05-02  7:02   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 14/19] net: mvneta: Rename CONFIG_NR_CPUS to MVNETA_NR_CPUS Marek Behún
2022-04-30 23:30   ` Ramon Fried
2022-05-02  7:02   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 15/19] net: mvneta: Convert to use PHY_FIXED for fixed-link Marek Behún
2022-04-30 23:31   ` Ramon Fried
2022-05-02  7:02   ` Stefan Roese
2022-04-27 10:41 ` [PATCH u-boot-marvell 16/19] net: mvneta: Write PHY address just before enabling HW polling Marek Behún
2022-04-30 23:31   ` Ramon Fried
2022-05-02  7:03   ` Stefan Roese
2022-04-27 10:42 ` [PATCH u-boot-marvell 17/19] net: mvneta: Drop fixed_link member from private struct Marek Behún
2022-04-30 23:31   ` Ramon Fried
2022-05-02  7:03   ` Stefan Roese
2022-04-27 10:42 ` [PATCH u-boot-marvell 18/19] net: mvneta: Disable fixed PHY code if PHY_FIXED is not compiled in Marek Behún
2022-04-30 23:32   ` Ramon Fried
2022-05-02  7:03   ` Stefan Roese
2022-04-27 10:42 ` [PATCH u-boot-marvell 19/19] net: mvneta: Drop unneeded macro Marek Behún
2022-04-30 23:32   ` Ramon Fried
2022-05-02  7:03   ` Stefan Roese
2022-05-02  5:39 ` [PATCH u-boot-marvell 00/19] some mvneta changes, cleanups, fixes Stefan Roese
2022-05-04  9:25 ` Stefan Roese

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.