From: Michal Simek <michal.simek@amd.com>
To: "Rob Herring (Arm)" <robh@kernel.org>
Cc: "moderated list:ARM/ZYNQ ARCHITECTURE"
<linux-arm-kernel@lists.infradead.org>,
Conor Dooley <conor+dt@kernel.org>,
linux-kernel@vger.kernel.org,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
"open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS"
<devicetree@vger.kernel.org>,
michal.simek@xilinx.com, monstr@monstr.eu, git@xilinx.com
Subject: Re: [PATCH 00/15] ARM: zynq: Sync DTs with U-Boot
Date: Thu, 12 Dec 2024 08:12:34 +0100 [thread overview]
Message-ID: <0335793c-4606-43dd-b1ab-8f67785f5629@amd.com> (raw)
In-Reply-To: <173393224728.3091150.11085112233542602601.robh@kernel.org>
On 12/11/24 16:54, Rob Herring (Arm) wrote:
>
> On Wed, 11 Dec 2024 13:41:19 +0100, Michal Simek wrote:
>> Hi,
>>
>> over years there were some changes pushed to U-Boot which were never merged
>> back to Linux. U-Boot introduced new option OF_UPSTREAM and start to sync
>> up DTs from Linux back to U-Boot.
>> This series is addressing differences.
>> There are still 3 more differences but they should be addressed separately.
>>
>> Thanks,
>> Michal
>>
>>
>> Michal Simek (14):
>> ARM: zynq: Remove deprecated device_type property
>> ARM: zynq: DT: List OCM memory for all platforms
>> ARM: zynq: Mark boot-phase-specific device nodes
>> ARM: zynq: Do not define address/size-cells for nand-controller
>> ARM: zynq: Wire smcc with nand/nor memories on zc770 platform
>> ARM: zynq: Add ethernet phy reset information to DT(zc702)
>> ARM: zynq: Define u-boot bootscrip addr via DT
>> ARM: zynq: Point via nvmem0 alias to eeprom on zc702/zc706
>> ARM: zynq: Define rtc alias on zc702/zc706
>> ARM: zynq: Rename i2c?-gpio to i2c?-gpio-grp
>> ARM: zynq: Fix fpga region DT nodes name
>> ARM: zynq: Enable QSPIs on platforms
>> ARM: zynq: Add sdhci to alias node
>> ARM: zynq: Remove ethernet0 alias from Microzed
>>
>> Sai Krishna Potthuri (1):
>> ARM: zynq: Replace 'io-standard' with 'power-source' property
>>
>> arch/arm/boot/dts/xilinx/zynq-7000.dtsi | 33 ++++++-
>> arch/arm/boot/dts/xilinx/zynq-cc108.dts | 41 ++++++++-
>> arch/arm/boot/dts/xilinx/zynq-microzed.dts | 10 ++-
>> arch/arm/boot/dts/xilinx/zynq-parallella.dts | 1 -
>> arch/arm/boot/dts/xilinx/zynq-zc702.dts | 87 +++++++++++++------
>> arch/arm/boot/dts/xilinx/zynq-zc706.dts | 67 +++++++++++---
>> arch/arm/boot/dts/xilinx/zynq-zc770-xm010.dts | 39 ++++++++-
>> arch/arm/boot/dts/xilinx/zynq-zc770-xm011.dts | 31 +++++++
>> arch/arm/boot/dts/xilinx/zynq-zc770-xm012.dts | 35 ++++++++
>> arch/arm/boot/dts/xilinx/zynq-zc770-xm013.dts | 41 ++++++++-
>> arch/arm/boot/dts/xilinx/zynq-zed.dts | 43 ++++++++-
>> .../boot/dts/xilinx/zynq-zturn-common.dtsi | 8 ++
>> arch/arm/boot/dts/xilinx/zynq-zybo-z7.dts | 10 ++-
>> arch/arm/boot/dts/xilinx/zynq-zybo.dts | 9 +-
>> 14 files changed, 404 insertions(+), 51 deletions(-)
>>
>> --
>> 2.43.0
>>
>>
>>
>
>
> My bot found new DTB warnings on the .dts files added or changed in this
> series.
>
> Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings
> are fixed by another series. Ultimately, it is up to the platform
> maintainer whether these warnings are acceptable or not. No need to reply
> unless the platform maintainer has comments.
>
> If you already ran DT checks and didn't see these error(s), then
> make sure dt-schema is up to date:
>
> pip3 install dtschema --upgrade
>
>
> New warnings running 'make CHECK_DTBS=y xilinx/zynq-cc108.dtb xilinx/zynq-microzed.dtb xilinx/zynq-parallella.dtb xilinx/zynq-zc702.dtb xilinx/zynq-zc706.dtb xilinx/zynq-zc770-xm010.dtb xilinx/zynq-zc770-xm011.dtb xilinx/zynq-zc770-xm012.dtb xilinx/zynq-zc770-xm013.dtb xilinx/zynq-zed.dtb xilinx/zynq-zybo-z7.dtb xilinx/zynq-zybo.dtb' for cover.1733920873.git.michal.simek@amd.com:
>
> arch/arm/boot/dts/xilinx/zynq-parallella.dtb: ethernet@e000b000: ethernet-phy@0: Unevaluated properties are not allowed ('marvell,reg-init' was unexpected)
> from schema $id: http://devicetree.org/schemas/net/cdns,macb.yaml#
This is not issue caused by this series.
> arch/arm/boot/dts/xilinx/zynq-zc702.dtb: ethernet@e000b000: Unevaluated properties are not allowed ('phy-reset-active-low', 'phy-reset-gpio' were unexpected)
> from schema $id: http://devicetree.org/schemas/net/cdns,macb.yaml#
This has been reported by Andrew already and the patch will be removed.
Thanks,
Michal
next prev parent reply other threads:[~2024-12-12 7:12 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-11 12:41 [PATCH 00/15] ARM: zynq: Sync DTs with U-Boot Michal Simek
2024-12-11 12:41 ` [PATCH 01/15] ARM: zynq: Replace 'io-standard' with 'power-source' property Michal Simek
2024-12-11 12:41 ` [PATCH 02/15] ARM: zynq: Remove deprecated device_type property Michal Simek
2024-12-11 12:41 ` [PATCH 03/15] ARM: zynq: DT: List OCM memory for all platforms Michal Simek
2024-12-11 12:41 ` [PATCH 04/15] ARM: zynq: Mark boot-phase-specific device nodes Michal Simek
2024-12-11 12:41 ` [PATCH 05/15] ARM: zynq: Do not define address/size-cells for nand-controller Michal Simek
2024-12-11 12:41 ` [PATCH 06/15] ARM: zynq: Wire smcc with nand/nor memories on zc770 platform Michal Simek
2024-12-11 12:41 ` [PATCH 07/15] ARM: zynq: Add ethernet phy reset information to DT(zc702) Michal Simek
2024-12-11 13:45 ` Andrew Lunn
2024-12-11 14:04 ` Michal Simek
2024-12-11 14:21 ` Andrew Lunn
2024-12-11 14:37 ` Michal Simek
2024-12-11 12:41 ` [PATCH 08/15] ARM: zynq: Define u-boot bootscrip addr via DT Michal Simek
2024-12-11 12:41 ` [PATCH 09/15] ARM: zynq: Point via nvmem0 alias to eeprom on zc702/zc706 Michal Simek
2024-12-11 12:41 ` [PATCH 10/15] ARM: zynq: Define rtc alias " Michal Simek
2024-12-11 12:41 ` [PATCH 11/15] ARM: zynq: Rename i2c?-gpio to i2c?-gpio-grp Michal Simek
2024-12-11 12:41 ` [PATCH 12/15] ARM: zynq: Fix fpga region DT nodes name Michal Simek
2024-12-11 12:41 ` [PATCH 13/15] ARM: zynq: Enable QSPIs on platforms Michal Simek
2024-12-11 12:41 ` [PATCH 14/15] ARM: zynq: Add sdhci to alias node Michal Simek
2024-12-11 12:41 ` [PATCH 15/15] ARM: zynq: Remove ethernet0 alias from Microzed Michal Simek
2024-12-11 15:54 ` [PATCH 00/15] ARM: zynq: Sync DTs with U-Boot Rob Herring (Arm)
2024-12-12 7:12 ` Michal Simek [this message]
2025-01-06 14:52 ` Michal Simek
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=0335793c-4606-43dd-b1ab-8f67785f5629@amd.com \
--to=michal.simek@amd.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=git@xilinx.com \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=michal.simek@xilinx.com \
--cc=monstr@monstr.eu \
--cc=robh@kernel.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