From: Lothar Rubusch <l.rubusch@gmail.com>
To: robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org,
dinguyen@kernel.org, marex@denx.de, s.trumtrar@pengutronix.de
Cc: l.rubusch@gmail.com, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH 1/8] ARM: dts: socfpga: fix dtschema issues
Date: Mon, 7 Oct 2024 13:31:08 +0000 [thread overview]
Message-ID: <20241007133115.1482619-2-l.rubusch@gmail.com> (raw)
In-Reply-To: <20241007133115.1482619-1-l.rubusch@gmail.com>
Fix several warnings of dtbs_check in the socfpga.dtsi and
socfpga_arria10.dtsi.
Signed-off-by: Lothar Rubusch <l.rubusch@gmail.com>
---
arch/arm/boot/dts/intel/socfpga/socfpga.dtsi | 6 +++---
arch/arm/boot/dts/intel/socfpga/socfpga_arria10.dtsi | 10 ++++++----
2 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/arch/arm/boot/dts/intel/socfpga/socfpga.dtsi b/arch/arm/boot/dts/intel/socfpga/socfpga.dtsi
index 35be14150..1562669b3 100644
--- a/arch/arm/boot/dts/intel/socfpga/socfpga.dtsi
+++ b/arch/arm/boot/dts/intel/socfpga/socfpga.dtsi
@@ -62,13 +62,13 @@ soc {
interrupt-parent = <&intc>;
ranges;
- amba {
+ bus {
compatible = "simple-bus";
#address-cells = <1>;
#size-cells = <1>;
ranges;
- pdma: pdma@ffe01000 {
+ pdma: dma-controller@ffe01000 {
compatible = "arm,pl330", "arm,primecell";
reg = <0xffe01000 0x1000>;
interrupts = <0 104 4>,
@@ -87,7 +87,7 @@ pdma: pdma@ffe01000 {
};
};
- base_fpga_region {
+ fpga-region {
compatible = "fpga-region";
fpga-mgr = <&fpgamgr0>;
diff --git a/arch/arm/boot/dts/intel/socfpga/socfpga_arria10.dtsi b/arch/arm/boot/dts/intel/socfpga/socfpga_arria10.dtsi
index 6b6e77596..32464e3d1 100644
--- a/arch/arm/boot/dts/intel/socfpga/socfpga_arria10.dtsi
+++ b/arch/arm/boot/dts/intel/socfpga/socfpga_arria10.dtsi
@@ -54,13 +54,13 @@ soc {
interrupt-parent = <&intc>;
ranges;
- amba {
+ bus {
compatible = "simple-bus";
#address-cells = <1>;
#size-cells = <1>;
ranges;
- pdma: pdma@ffda1000 {
+ pdma: dma-controller@ffda1000 {
compatible = "arm,pl330", "arm,primecell";
reg = <0xffda1000 0x1000>;
interrupts = <0 83 IRQ_TYPE_LEVEL_HIGH>,
@@ -80,7 +80,7 @@ pdma: pdma@ffda1000 {
};
};
- base_fpga_region {
+ fpga-region {
#address-cells = <0x1>;
#size-cells = <0x1>;
@@ -88,7 +88,7 @@ base_fpga_region {
fpga-mgr = <&fpga_mgr>;
};
- clkmgr@ffd04000 {
+ clkmgr: clkmgr@ffd04000 {
compatible = "altr,clk-mgr";
reg = <0xffd04000 0x1000>;
@@ -685,6 +685,8 @@ nand: nand-controller@ffb90000 {
ocram: sram@ffe00000 {
compatible = "mmio-sram";
+ #address-cells = <1>;
+ #size-cells = <1>;
reg = <0xffe00000 0x40000>;
};
--
2.25.1
next prev parent reply other threads:[~2024-10-07 13:31 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-07 13:31 [PATCH 0/8] Add Enclustra Arria10 and Cyclone5 SoMs Lothar Rubusch
2024-10-07 13:31 ` Lothar Rubusch [this message]
2024-10-07 13:31 ` [PATCH 2/8] ARM: dts: socfpga: add Enclustra boot-mode dtsi Lothar Rubusch
2024-10-07 13:31 ` [PATCH 3/8] ARM: dts: socfpga: add Enclustra base-board dtsi Lothar Rubusch
2024-10-07 13:31 ` [PATCH 4/8] ARM: dts: socfpga: add Enclustra Mercury SA1 Lothar Rubusch
2024-10-07 18:26 ` Rob Herring
2024-10-07 13:31 ` [PATCH 5/8] ARM: dts: socfpga: add Enclustra Mercury+ SA2 Lothar Rubusch
2024-10-07 13:31 ` [PATCH 6/8] ARM: dts: socfpga: update Enclustra Mercury+ AA1 Lothar Rubusch
2024-10-07 13:31 ` [PATCH 7/8] ARM: dts: socfpga: remove of generic PE1 dts Lothar Rubusch
2024-10-07 13:31 ` [PATCH 8/8] ARM: dts: socfpga: add Enclustra SoM dts files Lothar Rubusch
2024-10-07 18:44 ` [PATCH 0/8] Add Enclustra Arria10 and Cyclone5 SoMs Rob Herring (Arm)
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=20241007133115.1482619-2-l.rubusch@gmail.com \
--to=l.rubusch@gmail.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dinguyen@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marex@denx.de \
--cc=robh@kernel.org \
--cc=s.trumtrar@pengutronix.de \
/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;
as well as URLs for NNTP newsgroup(s).