public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH u-boot-marvell 0/9] arm: a37xx: Fix code and update DTS files to upstream version
@ 2022-02-14 10:34 Pali Rohár
  2022-02-14 10:34 ` [PATCH u-boot-marvell 1/9] rtc: ds1307: Add bindings for microchip, mcp7940x Pali Rohár
                   ` (9 more replies)
  0 siblings, 10 replies; 21+ messages in thread
From: Pali Rohár @ 2022-02-14 10:34 UTC (permalink / raw)
  To: Stefan Roese, Konstantin Porotchkin, Marek Behun, Vladimir Vid,
	Luka Perkov, Luis Torres, Scott Roberts, Paul Arola
  Cc: u-boot

Fix Armada 3720 drivers and all Armada 3720 boards (DB, uDPU, Mox and
Espressobin) to be compatible with DTS files from upstream Linux kernel
and update all Armada 3720 DTS files to version which is scheduled for
Linux kernel 5.18.

DTS patches scheduled for unreleased Linux kernel version 5.18 have only
changes which were already in U-Boot DTS files.

With this change U-Boot's Armada 3720 DTS board files finally could be
used for booting Linux kernel.

Tested on Turris Mox.

Pali Rohár (9):
  rtc: ds1307: Add bindings for microchip,mcp7940x
  phy: marvell: a3700: Update compatible string to official DT bindings
  usb: ehci: ehci-marvell: Update compatible string to official DT
    bindings
  watchdog: armada_37xx: Convert to official DT bindings
  arm: mvebu: turris_mox: Remove hardcoded ethernet node names
  arm: a37xx: Update sdhci pointers to official DT bindings
  arm: a37xx: espressobin: Move U-Boot specific partitions node to
    -u-boot.dtsi
  arm: a37xx: espressobin: Explicitly enable eMMC node in -u-boot.dtsi
  arm: a37xx: Update DTS files to version from upstream Linux kernel

 arch/arm/dts/armada-371x.dtsi                 |  38 +-
 arch/arm/dts/armada-3720-db.dts               | 226 +++--
 .../dts/armada-3720-espressobin-u-boot.dtsi   |  31 +
 arch/arm/dts/armada-3720-espressobin.dts      | 189 +----
 arch/arm/dts/armada-3720-espressobin.dtsi     | 218 +++++
 arch/arm/dts/armada-3720-turris-mox.dts       | 776 ++++++++++++++++--
 arch/arm/dts/armada-3720-uDPU-u-boot.dtsi     |   2 +-
 arch/arm/dts/armada-3720-uDPU.dts             | 218 ++---
 arch/arm/dts/armada-372x.dtsi                 |  43 +-
 arch/arm/dts/armada-37xx.dtsi                 | 448 ++++++----
 board/CZ.NIC/turris_mox/turris_mox.c          |  22 +-
 drivers/phy/marvell/comphy_a3700.c            |   2 +-
 drivers/phy/marvell/comphy_core.c             |   3 +-
 drivers/rtc/ds1307.c                          |   1 +
 drivers/usb/host/ehci-marvell.c               |   4 +-
 drivers/watchdog/armada-37xx-wdt.c            |   7 +-
 include/dt-bindings/bus/moxtet.h              |  16 +
 17 files changed, 1575 insertions(+), 669 deletions(-)
 create mode 100644 arch/arm/dts/armada-3720-espressobin-u-boot.dtsi
 create mode 100644 arch/arm/dts/armada-3720-espressobin.dtsi
 create mode 100644 include/dt-bindings/bus/moxtet.h

-- 
2.20.1


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

end of thread, other threads:[~2022-02-17 15:37 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-14 10:34 [PATCH u-boot-marvell 0/9] arm: a37xx: Fix code and update DTS files to upstream version Pali Rohár
2022-02-14 10:34 ` [PATCH u-boot-marvell 1/9] rtc: ds1307: Add bindings for microchip, mcp7940x Pali Rohár
2022-02-15  9:23   ` [PATCH u-boot-marvell 1/9] rtc: ds1307: Add bindings for microchip,mcp7940x Stefan Roese
2022-02-14 10:34 ` [PATCH u-boot-marvell 2/9] phy: marvell: a3700: Update compatible string to official DT bindings Pali Rohár
2022-02-15  9:23   ` Stefan Roese
2022-02-14 10:34 ` [PATCH u-boot-marvell 3/9] usb: ehci: ehci-marvell: " Pali Rohár
2022-02-15  9:24   ` Stefan Roese
2022-02-14 10:34 ` [PATCH u-boot-marvell 4/9] watchdog: armada_37xx: Convert " Pali Rohár
2022-02-15  9:25   ` Stefan Roese
2022-02-14 10:34 ` [PATCH u-boot-marvell 5/9] arm: mvebu: turris_mox: Remove hardcoded ethernet node names Pali Rohár
2022-02-15  9:27   ` Stefan Roese
2022-02-14 10:34 ` [PATCH u-boot-marvell 6/9] arm: a37xx: Update sdhci pointers to official DT bindings Pali Rohár
2022-02-15  9:28   ` Stefan Roese
2022-02-15  9:32     ` Pali Rohár
2022-02-14 10:34 ` [PATCH u-boot-marvell 7/9] arm: a37xx: espressobin: Move U-Boot specific partitions node to -u-boot.dtsi Pali Rohár
2022-02-15  9:28   ` Stefan Roese
2022-02-14 10:34 ` [PATCH u-boot-marvell 8/9] arm: a37xx: espressobin: Explicitly enable eMMC node in -u-boot.dtsi Pali Rohár
2022-02-15  9:29   ` Stefan Roese
2022-02-14 10:34 ` [PATCH u-boot-marvell 9/9] arm: a37xx: Update DTS files to version from upstream Linux kernel Pali Rohár
2022-02-15  9:31   ` Stefan Roese
2022-02-17 15:37 ` [PATCH u-boot-marvell 0/9] arm: a37xx: Fix code and update DTS files to upstream version Stefan Roese

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox