On 06/04/2022 04:58, Jacky Huang wrote:
Don't add things at the end of files but rather in respective placeI would add the following to end of arch/arm64/Kconfig.platforms,diff --git a/arch/arm64/boot/dts/Makefile b/arch/arm64/boot/dts/MakefileARCH_NUVOTON does not exist.
index 639e01a4d855..28e01442094f 100644
--- a/arch/arm64/boot/dts/Makefile
+++ b/arch/arm64/boot/dts/Makefile
@@ -30,3 +30,4 @@ subdir-y += synaptics
subdir-y += ti
subdir-y += toshiba
subdir-y += xilinx
+subdir-y += nuvoton
diff --git a/arch/arm64/boot/dts/nuvoton/Makefile b/arch/arm64/boot/dts/nuvoton/Makefile
new file mode 100644
index 000000000000..e1e0c466bf5e
--- /dev/null
+++ b/arch/arm64/boot/dts/nuvoton/Makefile
@@ -0,0 +1,2 @@
+# SPDX-License-Identifier: GPL-2.0
+dtb-$(CONFIG_ARCH_NUVOTON) += ma35d1-evb.dtb
without messing the order.
andWe do not add options for specific SoCs, but for entire families, so
add the
modification to this patch series.
config ARCH_MA35D1
bool "Nuvoton MA35D1 SOC Family"
ARCH_NUVOTON is correct.
select PINCTRLYes
select PINCTRL_MA35D1
select PM
select GPIOLIB
select SOC_BUS
select VIDEOMODE_HELPERS
select FB_MODE_HELPERS
help
This enables support for Nuvoton MA35D1 SOC Family.
OK, I would modify it as:diff --git a/arch/arm64/boot/dts/nuvoton/ma35d1-evb.dts b/arch/arm64/boot/dts/nuvoton/ma35d1-evb.dtsNo bootargs. "chosen", please.
new file mode 100644
index 000000000000..38e4f734da0f
--- /dev/null
+++ b/arch/arm64/boot/dts/nuvoton/ma35d1-evb.dts
@@ -0,0 +1,23 @@
+// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
+/*
+ * Device Tree Source for MA35D1 Evaluation Board (EVB)
+ *
+ * Copyright (C) 2021 Nuvoton Technology Corp.
+ */
+
+/dts-v1/;
+#include "ma35d1.dtsi"
+
+/ {
+ model = "Nuvoton MA35D1-EVB";
+
+ chosen {
+ bootargs = "console=ttyS0,115200n8";
chosen {
stdout-path = "serial0:115200n8";
};
I will add the compatible here+ };You need compatible and bindings.
compatible = "nuvoton,ma35d1-evb", "nuvoton,ma35d1"
And, I should create a new binding file
Documentation/devicetree/bindings/arm/nuvoton.yaml to this patch series.
And the property would be:
properties:
compatible:
description: Nuvoton MA35D1-EVB
items:
- const: nuvoton,ma35d1-evb
- const: nuvoton,ma35d1
Is it OK?
Best regards,
Krzysztof