From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCH v1 00/20] dts: avoid DT breakage new fancy DTC v1.7.0 syntax
Date: Fri, 17 Feb 2023 18:30:37 +0100 [thread overview]
Message-ID: <20230217173057.1839835-1-a.fatoum@pengutronix.de> (raw)
The fresh v1.7.0 release of the device tree compiler now contains
fancy new syntax:
&{i2c1/at24@50} {
partitions {
/* something */
};
};
instead of &{/soc/bus1/bus2/i2c@12345678/at24@50}, which is overly
verbose or &i2c1 { at24@50 }, which will break once someone renames
it upstream to please the schema checker.
Let's update to this new DTC release and change a lot of non-portable DT
we have to use this new syntax or use existing labels if available or
just absolute paths. This also fixes some breakage, but most of it is
future-proofing.
I did some build testing and fixed the fallout, but Sascha's build of all
configs may turn up some breakage too, which I would fix for v2.
Ahmad Fatoum (20):
scripts/dtc: Update to upstream version v1.7.0
scripts/dtc: update-dts-source.sh: don't fail if libfdt/ exists
Documentation: devicetree: describe new label-relative-path syntax
ARM: dts: use DT labels instead of paths where possible
MIPS: dts: ath79: ar9331: use path references when extending nodes
ARM: dts: tegra: switch to path and label references
ARM: i.MX51: ccmx51: support newer device trees
ARM: i.MX6: gw54xx: rename watchdog nodes
ARM: i.MX6: karo-tx6x: fix now renamed DT nodes
ARM: dts: zii: use phandle-relative paths for extending nodes
ARM: dts: AT91: use label-relative paths for extending nodes
ARM: dts: Layerscape: drop unneeded EEPROM node overriding
ARM: dts: Layerscape: use label-relative paths references
ARM: dts: vf610-zii-cfu1: remove duplicate LED
ARM: dts: i.MX53: ccxmx53: remove unused /memory
ARM: dts: i.MX: use label-relative references
ARM: dts: i.MX: delete now renamed memory nodes as well.
ARM: dts: socfpga: cut down on NAND node duplication
ARM: dts: i.MX8MN: evk: use upstream flash node definition
ARM: dts: i.MX8MN: evk: reduce duplication in barebox-added nodes
Documentation/devicetree/index.rst | 45 +-
arch/arm/boards/ccxmx51/ccxmx51.c | 8 +-
arch/arm/boards/gateworks-ventana/board.c | 5 +
arch/arm/boards/karo-tx6x/board.c | 4 +-
arch/arm/dts/armada-370-mirabox-bb.dts | 2 +-
arch/arm/dts/armada-370-rn104-bb.dts | 2 +-
arch/arm/dts/armada-385-turris-omnia-bb.dts | 2 +-
arch/arm/dts/armada-xp-db-bb.dts | 2 +-
arch/arm/dts/armada-xp-gp-bb.dts | 2 +-
.../arm/dts/armada-xp-openblocks-ax3-4-bb.dts | 2 +-
arch/arm/dts/armada-xp-rn2120-bb.dts | 2 +-
arch/arm/dts/at91-sama5d27_som1.dtsi | 2 +-
arch/arm/dts/at91-sama5d27_som1_ek.dts | 3 +-
arch/arm/dts/at91-skov-arm9cpu.dts | 8 +-
arch/arm/dts/at91sam9263ek.dts | 46 +-
arch/arm/dts/fsl-ls1046a-rdb.dts | 35 +-
arch/arm/dts/fsl-tqmls1046a-mbls10xxa.dts | 16 +-
arch/arm/dts/imx50.dtsi | 2 +-
arch/arm/dts/imx51-genesi-efika-sb.dts | 7 +-
arch/arm/dts/imx51-zii-rdu1.dts | 151 +-
arch/arm/dts/imx53-ccxmx53.dtsi | 7 -
arch/arm/dts/imx6qdl-nitrogen6x.dtsi | 6 +-
arch/arm/dts/imx6qdl-prti6q-nor.dtsi | 14 +-
arch/arm/dts/imx6qdl-skov-imx6.dtsi | 42 +-
arch/arm/dts/imx6qdl-tx6x.dtsi | 6 +-
arch/arm/dts/imx6qdl-zii-rdu2.dtsi | 59 +-
arch/arm/dts/imx6sx-udoo-neo-full.dts | 5 +-
arch/arm/dts/imx6ul-prti6g.dts | 14 +-
arch/arm/dts/imx7d-ddrc.dtsi | 6 +-
arch/arm/dts/imx7d-zii-rmu2.dts | 49 +-
arch/arm/dts/imx8mm-evkb.dts | 4 +-
arch/arm/dts/imx8mn-evk.dts | 83 -
arch/arm/dts/imx8mn-evk.dtsi | 16 +-
arch/arm/dts/imx8mq-zii-ultra.dtsi | 38 +-
arch/arm/dts/socfpga_arria10_achilles.dts | 8 +-
arch/arm/dts/socfpga_arria10_mercury_aa1.dts | 8 +-
arch/arm/dts/socfpga_cyclone5_socdk.dts | 20 +-
arch/arm/dts/socfpga_cyclone5_socrates.dts | 69 +-
arch/arm/dts/tegra124.dtsi | 58 +-
arch/arm/dts/tegra20-colibri-iris.dts | 98 +-
arch/arm/dts/tegra20.dtsi | 8 +-
arch/arm/dts/tegra30-beaver.dts | 1442 ++++++++---------
arch/arm/dts/tegra30.dtsi | 8 +-
arch/arm/dts/vf610-ddrmc.dtsi | 4 +-
arch/arm/dts/vf610-zii-cfu1.dts | 6 -
.../mips/dts/ar9331-dptechnics-dpt-module.dts | 16 +-
arch/mips/dts/ar9331.dtsi | 12 +-
scripts/dtc/checks.c | 293 +++-
scripts/dtc/data.c | 6 +-
scripts/dtc/dtc-lexer.l | 4 +-
scripts/dtc/dtc-parser.y | 32 +-
scripts/dtc/dtc.c | 6 +-
scripts/dtc/dtc.h | 79 +-
scripts/dtc/fdtget.c | 15 +-
scripts/dtc/flattree.c | 21 +-
scripts/dtc/fstree.c | 2 +-
scripts/dtc/libfdt/Makefile.libfdt | 2 +-
scripts/dtc/libfdt/fdt.c | 144 +-
scripts/dtc/libfdt/fdt.h | 4 +-
scripts/dtc/libfdt/fdt_addresses.c | 2 +-
scripts/dtc/libfdt/fdt_overlay.c | 34 +-
scripts/dtc/libfdt/fdt_ro.c | 175 +-
scripts/dtc/libfdt/fdt_rw.c | 64 +-
scripts/dtc/libfdt/fdt_strerror.c | 5 +-
scripts/dtc/libfdt/fdt_sw.c | 50 +-
scripts/dtc/libfdt/fdt_wip.c | 2 +-
scripts/dtc/libfdt/libfdt.h | 175 +-
scripts/dtc/libfdt/libfdt_internal.h | 145 +-
scripts/dtc/livetree.c | 47 +-
scripts/dtc/srcpos.c | 2 +-
scripts/dtc/treesource.c | 56 +-
scripts/dtc/update-dtc-source.sh | 2 +-
scripts/dtc/util.c | 18 +-
scripts/dtc/util.h | 9 +-
scripts/dtc/version_gen.h | 2 +-
scripts/dtc/yamltree.c | 24 +-
76 files changed, 2132 insertions(+), 1740 deletions(-)
--
2.30.2
next reply other threads:[~2023-02-17 17:32 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-17 17:30 Ahmad Fatoum [this message]
2023-02-17 17:30 ` [PATCH v1 01/20] scripts/dtc: Update to upstream version v1.7.0 Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 02/20] scripts/dtc: update-dts-source.sh: don't fail if libfdt/ exists Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 03/20] Documentation: devicetree: describe new label-relative-path syntax Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 04/20] ARM: dts: use DT labels instead of paths where possible Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 05/20] MIPS: dts: ath79: ar9331: use path references when extending nodes Ahmad Fatoum
2023-02-22 10:25 ` Sascha Hauer
2023-02-17 17:30 ` [PATCH v1 06/20] ARM: dts: tegra: switch to path and label references Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 07/20] ARM: i.MX51: ccmx51: support newer device trees Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 08/20] ARM: i.MX6: gw54xx: rename watchdog nodes Ahmad Fatoum
2023-02-17 18:08 ` Jules Maselbas
2023-02-17 17:30 ` [PATCH v1 09/20] ARM: i.MX6: karo-tx6x: fix now renamed DT nodes Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 10/20] ARM: dts: zii: use phandle-relative paths for extending nodes Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 11/20] ARM: dts: AT91: use label-relative " Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 12/20] ARM: dts: Layerscape: drop unneeded EEPROM node overriding Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 13/20] ARM: dts: Layerscape: use label-relative paths references Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 14/20] ARM: dts: vf610-zii-cfu1: remove duplicate LED Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 15/20] ARM: dts: i.MX53: ccxmx53: remove unused /memory Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 16/20] ARM: dts: i.MX: use label-relative references Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 17/20] ARM: dts: i.MX: delete now renamed memory nodes as well Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 18/20] ARM: dts: socfpga: cut down on NAND node duplication Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 19/20] ARM: dts: i.MX8MN: evk: use upstream flash node definition Ahmad Fatoum
2023-02-17 17:30 ` [PATCH v1 20/20] ARM: dts: i.MX8MN: evk: reduce duplication in barebox-added nodes Ahmad Fatoum
2023-02-20 8:48 ` [PATCH v1 00/20] dts: avoid DT breakage new fancy DTC v1.7.0 syntax Marco Felsch
2023-02-20 8:51 ` Ahmad Fatoum
2023-02-21 10:25 ` Sascha Hauer
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=20230217173057.1839835-1-a.fatoum@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox