All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Marek Behún" <kabel@kernel.org>
To: Stefan Roese <sr@denx.de>
Cc: u-boot@lists.denx.de, "Pali Rohár" <pali@kernel.org>,
	"Marek Behún" <marek.behun@nic.cz>,
	"Aaron Williams" <awilliams@marvell.com>,
	"Andy Shevchenko" <andriy.shevchenko@linux.intel.com>,
	"Grzegorz Jaszczyk" <jaz@semihalf.com>,
	"hui.song" <hui.song_1@nxp.com>,
	"Ioana Ciornei" <ioana.ciornei@nxp.com>,
	"Konstantin Porotchkin" <kostap@marvell.com>,
	"Luka Perkov" <luka.perkov@sartura.hr>,
	"Marcin Wojtas" <mw@semihalf.com>,
	"Meenakshi Aggarwal" <meenakshi.aggarwal@nxp.com>,
	"Michael Walle" <michael@walle.cc>,
	"Pratyush Yadav" <p.yadav@ti.com>,
	"Priyanka Jain" <priyanka.jain@nxp.com>,
	"Ramon Fried" <rfried.dev@gmail.com>,
	"Robert Marko" <robert.marko@sartura.hr>,
	"Simon Glass" <sjg@chromium.org>,
	"Tim Harvey" <tharvey@gateworks.com>,
	"Vladimir Oltean" <vladimir.oltean@nxp.com>
Subject: [PATCH u-boot-marvell RESEND 00/11] Some mvebu comphy + mox + fdt_support changes
Date: Fri, 26 Nov 2021 14:57:04 +0100	[thread overview]
Message-ID: <20211126135715.26485-1-kabel@kernel.org> (raw)

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

Hello Stefan,

as requested I am resending this series with board maintainers added
in Ccs.

Original message:

Pali prepared patches that convert A3720 comphy driver to use Linux'
DT bindings. (Yes, I have patches that convert the whole driver into
using SMC calls into ATF, but haven't found time yet to rebase them
since last year, and Pali has done this in the meantime :-D Maybe I'll
look into my old patches sometimes, but this is now usable.)

These patches needed some changes in Turris MOX board code, and I added
some more changes to handling device-tree fixups, and this lead to
adding some code into fdt_support, which can hopefully be used by other
people as well.

Marek

Marek Behún (8):
  treewide: Use fdt_create_phandle() where appropriate
  fdt_support: Remove fdt_alloc_phandle() in favor of
    fdt_generate_phandle()
  fdt_support: Remove FDT_STATUS_FAIL_ERROR_CODE
  fdt_support: Fix comment for fdt_create_phandle()
  fdt_support: Add some useful functions
  arm: mvebu: turris_mox: Find DT nodes by compatible or alias instead
    of path
  arm: mvebu: turris_mox: Fix unstable board topology reading
  fdt_support: Add fdt_delete_disabled_nodes() and use in Turris MOX

Pali Rohár (3):
  include/linux/byteorder: Fix compilation of __constant_cpu_to_be32()
  arm: mvebu: turris_mox: Enable eth1 in U-Boot if a network module is
    present
  phy: marvell: a3700: Convert to official DT bindings in COMPHY driver

 arch/arm/cpu/armv7/ls102xa/fdt.c         |   6 +-
 arch/arm/dts/armada-3720-espressobin.dts |  21 +--
 arch/arm/dts/armada-3720-turris-mox.dts  |  25 +--
 arch/arm/dts/armada-3720-uDPU.dts        |  23 +--
 arch/arm/dts/armada-37xx.dtsi            |  20 +-
 board/CZ.NIC/turris_mox/turris_mox.c     | 223 ++++++++---------------
 board/Marvell/octeon_ebb7304/board.c     |   5 +-
 board/freescale/lx2160a/eth_lx2160aqds.c |   8 +-
 board/freescale/lx2160a/eth_lx2162aqds.c |   8 +-
 board/gateworks/gw_ventana/common.c      |   3 +-
 board/kontron/sl28/sl28.c                |   2 +-
 common/fdt_support.c                     | 174 +++++++++++++++---
 drivers/misc/fsl_portals.c               |  10 +-
 drivers/pci/pcie_layerscape_fixup.c      |   8 +-
 drivers/pci/pcie_layerscape_gen4_fixup.c |   8 +-
 drivers/phy/marvell/comphy_a3700.c       | 133 ++++++++++++++
 drivers/phy/marvell/comphy_core.c        |  59 +-----
 drivers/phy/marvell/comphy_core.h        |  23 +++
 drivers/phy/marvell/comphy_cp110.c       |  58 ++++++
 include/fdt_support.h                    |  51 ++++--
 include/linux/byteorder/swab.h           |   4 +
 21 files changed, 551 insertions(+), 321 deletions(-)

-- 
2.32.0


             reply	other threads:[~2021-11-26 13:57 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-26 13:57 Marek Behún [this message]
2021-11-26 13:57 ` [PATCH u-boot-marvell RESEND 01/11] include/linux/byteorder: Fix compilation of __constant_cpu_to_be32() Marek Behún
2021-11-26 13:57 ` [PATCH u-boot-marvell RESEND 02/11] treewide: Use fdt_create_phandle() where appropriate Marek Behún
2021-11-26 13:57 ` [PATCH u-boot-marvell RESEND 03/11] fdt_support: Remove fdt_alloc_phandle() in favor of fdt_generate_phandle() Marek Behún
2021-12-03  3:31   ` Simon Glass
2021-11-26 13:57 ` [PATCH u-boot-marvell RESEND 04/11] fdt_support: Remove FDT_STATUS_FAIL_ERROR_CODE Marek Behún
2021-12-03  3:31   ` Simon Glass
2021-11-26 13:57 ` [PATCH u-boot-marvell RESEND 05/11] fdt_support: Fix comment for fdt_create_phandle() Marek Behún
2021-11-26 13:57 ` [PATCH u-boot-marvell RESEND 06/11] fdt_support: Add some useful functions Marek Behún
2021-11-26 13:57 ` [PATCH u-boot-marvell RESEND 07/11] arm: mvebu: turris_mox: Find DT nodes by compatible or alias instead of path Marek Behún
2021-11-26 13:57 ` [PATCH u-boot-marvell RESEND 08/11] arm: mvebu: turris_mox: Enable eth1 in U-Boot if a network module is present Marek Behún
2021-11-26 13:57 ` [PATCH u-boot-marvell RESEND 09/11] phy: marvell: a3700: Convert to official DT bindings in COMPHY driver Marek Behún
2021-11-30  6:18   ` Stefan Roese
2021-11-26 13:57 ` [PATCH u-boot-marvell RESEND 10/11] arm: mvebu: turris_mox: Fix unstable board topology reading Marek Behún
2021-11-26 13:57 ` [PATCH u-boot-marvell RESEND 11/11] fdt_support: Add fdt_delete_disabled_nodes() and use in Turris MOX Marek Behún
2021-12-16 11:15 ` [PATCH u-boot-marvell RESEND 00/11] Some mvebu comphy + mox + fdt_support changes Pali Rohár
2021-12-18 13:46 ` Stefan Roese

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=20211126135715.26485-1-kabel@kernel.org \
    --to=kabel@kernel.org \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=awilliams@marvell.com \
    --cc=hui.song_1@nxp.com \
    --cc=ioana.ciornei@nxp.com \
    --cc=jaz@semihalf.com \
    --cc=kostap@marvell.com \
    --cc=luka.perkov@sartura.hr \
    --cc=marek.behun@nic.cz \
    --cc=meenakshi.aggarwal@nxp.com \
    --cc=michael@walle.cc \
    --cc=mw@semihalf.com \
    --cc=p.yadav@ti.com \
    --cc=pali@kernel.org \
    --cc=priyanka.jain@nxp.com \
    --cc=rfried.dev@gmail.com \
    --cc=robert.marko@sartura.hr \
    --cc=sjg@chromium.org \
    --cc=sr@denx.de \
    --cc=tharvey@gateworks.com \
    --cc=u-boot@lists.denx.de \
    --cc=vladimir.oltean@nxp.com \
    /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 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.