* [PATCH v2 0/3] Add overlays for imx8mp
@ 2024-08-20 17:18 Yashwanth Varakala
2024-08-20 17:18 ` [PATCH v2 1/3] arm64: dts: freescale: imx8mp-phycore: Add no-rtc overlay Yashwanth Varakala
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Yashwanth Varakala @ 2024-08-20 17:18 UTC (permalink / raw)
To: shawnguo, s.hauer, kernel, festevam, robh, krzk+dt, conor+dt
Cc: imx, linux-arm-kernel, devicetree, linux-kernel, upstream,
y.varakala
Add no-rtc, no-spi flash, remoteproc overlays for the imx8mp
and Update Makefile.
Link to v1:
https://lore.kernel.org/all/20240725094457.37739-2-y.varakala@phytec.de/
This patch series is dependent on this no-eth overlay patch:
https://lore.kernel.org/all/20240710-bspimx8m-3180-v3-1-8ef55381172c@phytec.de/
Regards,
yashwanth.
Yashwanth Varakala (3):
arm64: dts: freescale: imx8mp-phycore: Add no-rtc overlay
arm64: boot: dts: freescale: Add no-spiflash overlay
arm64: dts: Add phyBOARD-Pollux dtso for rpmsg
arch/arm64/boot/dts/freescale/Makefile | 6 ++
.../dts/freescale/imx8mp-phycore-no-rtc.dtso | 12 ++++
.../freescale/imx8mp-phycore-no-spiflash.dtso | 16 ++++++
.../dts/freescale/imx8mp-phycore-rpmsg.dtso | 55 +++++++++++++++++++
4 files changed, 89 insertions(+)
create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-phycore-no-rtc.dtso
create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-phycore-no-spiflash.dtso
create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-phycore-rpmsg.dtso
--
2.34.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2 1/3] arm64: dts: freescale: imx8mp-phycore: Add no-rtc overlay
2024-08-20 17:18 [PATCH v2 0/3] Add overlays for imx8mp Yashwanth Varakala
@ 2024-08-20 17:18 ` Yashwanth Varakala
2024-08-20 17:18 ` [PATCH v2 2/3] arm64: boot: dts: freescale: Add no-spiflash overlay Yashwanth Varakala
2024-08-20 17:18 ` [PATCH v2 3/3] arm64: dts: Add phyBOARD-Pollux dtso for rpmsg Yashwanth Varakala
2 siblings, 0 replies; 5+ messages in thread
From: Yashwanth Varakala @ 2024-08-20 17:18 UTC (permalink / raw)
To: shawnguo, s.hauer, kernel, festevam, robh, krzk+dt, conor+dt
Cc: imx, linux-arm-kernel, devicetree, linux-kernel, upstream,
y.varakala
Add devicetree overlay to disable rtc for boards that are
not supported.
Signed-off-by: Yashwanth Varakala <y.varakala@phytec.de>
---
Changes in v2:
- Updated license
- Updated with TAB space in devicetree property
arch/arm64/boot/dts/freescale/Makefile | 2 ++
.../boot/dts/freescale/imx8mp-phycore-no-rtc.dtso | 12 ++++++++++++
2 files changed, 14 insertions(+)
create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-phycore-no-rtc.dtso
diff --git a/arch/arm64/boot/dts/freescale/Makefile b/arch/arm64/boot/dts/freescale/Makefile
index c1fca1fcedc5..8f41db93c3d9 100644
--- a/arch/arm64/boot/dts/freescale/Makefile
+++ b/arch/arm64/boot/dts/freescale/Makefile
@@ -175,7 +175,9 @@ dtb-$(CONFIG_ARCH_MXC) += imx8mp-msc-sm2s-ep1.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-navqp.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-phyboard-pollux-rdk.dtb
imx8mp-phyboard-pollux-rdk-no-eth-dtbs += imx8mp-phyboard-pollux-rdk.dtb imx8mp-phycore-no-eth.dtbo
+imx8mp-phyboard-pollux-rdk-no-rtc-dtbs += imx8mp-phyboard-pollux-rdk.dtb imx8mp-phycore-no-rtc.dtbo
dtb-$(CONFIG_ARCH_MXC) += imx8mp-phyboard-pollux-rdk-no-eth.dtb
+dtb-$(CONFIG_ARCH_MXC) += imx8mp-phyboard-pollux-rdk-no-rtc.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-skov-revb-hdmi.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-skov-revb-lt6.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-skov-revb-mi1010ait-1cp1.dtb
diff --git a/arch/arm64/boot/dts/freescale/imx8mp-phycore-no-rtc.dtso b/arch/arm64/boot/dts/freescale/imx8mp-phycore-no-rtc.dtso
new file mode 100644
index 000000000000..5715404b39d4
--- /dev/null
+++ b/arch/arm64/boot/dts/freescale/imx8mp-phycore-no-rtc.dtso
@@ -0,0 +1,12 @@
+// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
+/*
+ * Copyright (C) 2024 PHYTEC Messtechnik GmbH
+ * Author: Cem Tenruh <c.tenruh@phytec.de>
+ */
+
+/dts-v1/;
+/plugin/;
+
+&rv3028 {
+ status = "disabled";
+};
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v2 2/3] arm64: boot: dts: freescale: Add no-spiflash overlay
2024-08-20 17:18 [PATCH v2 0/3] Add overlays for imx8mp Yashwanth Varakala
2024-08-20 17:18 ` [PATCH v2 1/3] arm64: dts: freescale: imx8mp-phycore: Add no-rtc overlay Yashwanth Varakala
@ 2024-08-20 17:18 ` Yashwanth Varakala
2024-08-20 17:18 ` [PATCH v2 3/3] arm64: dts: Add phyBOARD-Pollux dtso for rpmsg Yashwanth Varakala
2 siblings, 0 replies; 5+ messages in thread
From: Yashwanth Varakala @ 2024-08-20 17:18 UTC (permalink / raw)
To: shawnguo, s.hauer, kernel, festevam, robh, krzk+dt, conor+dt
Cc: imx, linux-arm-kernel, devicetree, linux-kernel, upstream,
y.varakala
Add devicetree overlay to disable SPI NOR if the module does
not supports or not equipped with SPI NOR flash.
Signed-off-by: Yashwanth Varakala <y.varakala@phytec.de>
---
Changes in v2:
- Updated license
- Updated with TAB space in devicetree property
arch/arm64/boot/dts/freescale/Makefile | 2 ++
.../freescale/imx8mp-phycore-no-spiflash.dtso | 16 ++++++++++++++++
2 files changed, 18 insertions(+)
create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-phycore-no-spiflash.dtso
diff --git a/arch/arm64/boot/dts/freescale/Makefile b/arch/arm64/boot/dts/freescale/Makefile
index 8f41db93c3d9..dedea4b5c319 100644
--- a/arch/arm64/boot/dts/freescale/Makefile
+++ b/arch/arm64/boot/dts/freescale/Makefile
@@ -176,8 +176,10 @@ dtb-$(CONFIG_ARCH_MXC) += imx8mp-navqp.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-phyboard-pollux-rdk.dtb
imx8mp-phyboard-pollux-rdk-no-eth-dtbs += imx8mp-phyboard-pollux-rdk.dtb imx8mp-phycore-no-eth.dtbo
imx8mp-phyboard-pollux-rdk-no-rtc-dtbs += imx8mp-phyboard-pollux-rdk.dtb imx8mp-phycore-no-rtc.dtbo
+imx8mp-phyboard-pollux-rdk-no-spiflash-dtbs += imx8mp-phyboard-pollux-rdk.dtb imx8mp-phycore-no-spiflash.dtbo
dtb-$(CONFIG_ARCH_MXC) += imx8mp-phyboard-pollux-rdk-no-eth.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-phyboard-pollux-rdk-no-rtc.dtb
+dtb-$(CONFIG_ARCH_MXC) += imx8mp-phyboard-pollux-rdk-no-spiflash.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-skov-revb-hdmi.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-skov-revb-lt6.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-skov-revb-mi1010ait-1cp1.dtb
diff --git a/arch/arm64/boot/dts/freescale/imx8mp-phycore-no-spiflash.dtso b/arch/arm64/boot/dts/freescale/imx8mp-phycore-no-spiflash.dtso
new file mode 100644
index 000000000000..2ad1312113f0
--- /dev/null
+++ b/arch/arm64/boot/dts/freescale/imx8mp-phycore-no-spiflash.dtso
@@ -0,0 +1,16 @@
+// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
+/*
+ * Copyright (C) 2024 PHYTEC Messtechnik GmbH
+ * Author: Cem Tenruh <c.tenruh@phytec.de>
+ */
+
+/dts-v1/;
+/plugin/;
+
+&flexspi {
+ status = "disabled";
+};
+
+&som_flash {
+ status = "disabled";
+};
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v2 3/3] arm64: dts: Add phyBOARD-Pollux dtso for rpmsg
2024-08-20 17:18 [PATCH v2 0/3] Add overlays for imx8mp Yashwanth Varakala
2024-08-20 17:18 ` [PATCH v2 1/3] arm64: dts: freescale: imx8mp-phycore: Add no-rtc overlay Yashwanth Varakala
2024-08-20 17:18 ` [PATCH v2 2/3] arm64: boot: dts: freescale: Add no-spiflash overlay Yashwanth Varakala
@ 2024-08-20 17:18 ` Yashwanth Varakala
2024-09-01 7:30 ` Shawn Guo
2 siblings, 1 reply; 5+ messages in thread
From: Yashwanth Varakala @ 2024-08-20 17:18 UTC (permalink / raw)
To: shawnguo, s.hauer, kernel, festevam, robh, krzk+dt, conor+dt
Cc: imx, linux-arm-kernel, devicetree, linux-kernel, upstream,
y.varakala
Adds a devicetree containing reserved memory regions used for intercore
communication between A53 and M7 cores.
Signed-off-by: Yashwanth Varakala <y.varakala@phytec.de>
---
Changes in v2:
- Updated license.
- Updated devicetree properties.
- Replaced imx8mp-cm7 with core-m7 node name.
- Updated reserved-memory node unit addresses in ascending order.
arch/arm64/boot/dts/freescale/Makefile | 2 +
.../dts/freescale/imx8mp-phycore-rpmsg.dtso | 55 +++++++++++++++++++
2 files changed, 57 insertions(+)
create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-phycore-rpmsg.dtso
diff --git a/arch/arm64/boot/dts/freescale/Makefile b/arch/arm64/boot/dts/freescale/Makefile
index dedea4b5c319..80cc87d50301 100644
--- a/arch/arm64/boot/dts/freescale/Makefile
+++ b/arch/arm64/boot/dts/freescale/Makefile
@@ -177,9 +177,11 @@ dtb-$(CONFIG_ARCH_MXC) += imx8mp-phyboard-pollux-rdk.dtb
imx8mp-phyboard-pollux-rdk-no-eth-dtbs += imx8mp-phyboard-pollux-rdk.dtb imx8mp-phycore-no-eth.dtbo
imx8mp-phyboard-pollux-rdk-no-rtc-dtbs += imx8mp-phyboard-pollux-rdk.dtb imx8mp-phycore-no-rtc.dtbo
imx8mp-phyboard-pollux-rdk-no-spiflash-dtbs += imx8mp-phyboard-pollux-rdk.dtb imx8mp-phycore-no-spiflash.dtbo
+imx8mp-phyboard-pollux-rdk-rpmsg-dtbs += imx8mp-phyboard-pollux-rdk.dtb imx8mp-phycore-rpmsg.dtbo
dtb-$(CONFIG_ARCH_MXC) += imx8mp-phyboard-pollux-rdk-no-eth.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-phyboard-pollux-rdk-no-rtc.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-phyboard-pollux-rdk-no-spiflash.dtb
+dtb-$(CONFIG_ARCH_MXC) += imx8mp-phyboard-pollux-rdk-rpmsg.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-skov-revb-hdmi.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-skov-revb-lt6.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-skov-revb-mi1010ait-1cp1.dtb
diff --git a/arch/arm64/boot/dts/freescale/imx8mp-phycore-rpmsg.dtso b/arch/arm64/boot/dts/freescale/imx8mp-phycore-rpmsg.dtso
new file mode 100644
index 000000000000..f9fba558dcb0
--- /dev/null
+++ b/arch/arm64/boot/dts/freescale/imx8mp-phycore-rpmsg.dtso
@@ -0,0 +1,55 @@
+// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
+/*
+ * Copyright (C) 2024 PHYTEC Messtechnik GmbH
+ * Author: Dominik Haller <d.haller@phytec.de>
+ * Cem Tenruh <c.tenruh@phytec.de>
+ */
+
+/dts-v1/;
+/plugin/;
+
+#include <dt-bindings/clock/imx8mp-clock.h>
+
+&{/} {
+ core-m7 {
+ compatible = "fsl,imx8mn-cm7";
+ clocks = <&clk IMX8MP_CLK_M7_DIV>;
+ mboxes = <&mu 0 1>,
+ <&mu 1 1>,
+ <&mu 3 1>;
+ mbox-names = "tx", "rx", "rxdb";
+ memory-region = <&vdevbuffer>, <&vdev0vring0>, <&vdev0vring1>, <&rsc_table>;
+ };
+
+ reserved-memory {
+ ranges;
+ #address-cells = <2>;
+ #size-cells = <2>;
+
+ vdev0vring0: vdev0vring0@55000000 {
+ no-map;
+ reg = <0 0x55000000 0 0x8000>;
+ };
+
+ vdev0vring1: vdev0vring1@55008000 {
+ no-map;
+ reg = <0 0x55008000 0 0x8000>;
+ };
+
+ rsc_table: rsc-table@550ff000 {
+ no-map;
+ reg = <0 0x550ff000 0 0x1000>;
+ };
+
+ vdevbuffer: vdevbuffer@55400000 {
+ compatible = "shared-dma-pool";
+ no-map;
+ reg = <0 0x55400000 0 0x100000>;
+ };
+
+ m7_reserved: m7@80000000 {
+ no-map;
+ reg = <0 0x80000000 0 0x1000000>;
+ };
+ };
+};
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2 3/3] arm64: dts: Add phyBOARD-Pollux dtso for rpmsg
2024-08-20 17:18 ` [PATCH v2 3/3] arm64: dts: Add phyBOARD-Pollux dtso for rpmsg Yashwanth Varakala
@ 2024-09-01 7:30 ` Shawn Guo
0 siblings, 0 replies; 5+ messages in thread
From: Shawn Guo @ 2024-09-01 7:30 UTC (permalink / raw)
To: Yashwanth Varakala
Cc: shawnguo, s.hauer, kernel, festevam, robh, krzk+dt, conor+dt, imx,
linux-arm-kernel, devicetree, linux-kernel, upstream
On Tue, Aug 20, 2024 at 07:18:48PM +0200, Yashwanth Varakala wrote:
> Adds a devicetree containing reserved memory regions used for intercore
> communication between A53 and M7 cores.
>
> Signed-off-by: Yashwanth Varakala <y.varakala@phytec.de>
I'm getting these warnings.
arch/arm64/boot/dts/freescale/imx8mp-phycore-rpmsg.dtso:25.3-10: Warning (ranges_format): /fragment@0/__overlay__/reserved-memory:ranges: empty "ranges" property but its #size-cells (2) differs from /fragment@0/__overlay__ (1)
arch/arm64/boot/dts/freescale/imx8mp-phycore-rpmsg.dtso:24.18-54.4: Warning (avoid_default_addr_size): /fragment@0/__overlay__/reserved-memory: Relying on default #address-cells value
arch/arm64/boot/dts/freescale/imx8mp-phycore-rpmsg.dtso:24.18-54.4: Warning (avoid_default_addr_size): /fragment@0/__overlay__/reserved-memory: Relying on default #size-cells value
Shawn
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-09-01 7:31 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-20 17:18 [PATCH v2 0/3] Add overlays for imx8mp Yashwanth Varakala
2024-08-20 17:18 ` [PATCH v2 1/3] arm64: dts: freescale: imx8mp-phycore: Add no-rtc overlay Yashwanth Varakala
2024-08-20 17:18 ` [PATCH v2 2/3] arm64: boot: dts: freescale: Add no-spiflash overlay Yashwanth Varakala
2024-08-20 17:18 ` [PATCH v2 3/3] arm64: dts: Add phyBOARD-Pollux dtso for rpmsg Yashwanth Varakala
2024-09-01 7:30 ` Shawn Guo
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).