File tree 4 files changed +31
-0
lines changed
4 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,10 @@ config PLATFORM_ANDES_AE350
32
32
bool "Andes AE350 support"
33
33
default n
34
34
35
+ config PLATFORM_RENESAS_RZFIVE
36
+ bool "Renesas RZ/Five support"
37
+ default n
38
+
35
39
config PLATFORM_SIFIVE_FU540
36
40
bool "SiFive FU540 support"
37
41
default n
Original file line number Diff line number Diff line change 1
1
CONFIG_PLATFORM_ALLWINNER_D1=y
2
2
CONFIG_PLATFORM_ANDES_AE350=y
3
+ CONFIG_PLATFORM_RENESAS_RZFIVE=y
3
4
CONFIG_PLATFORM_SIFIVE_FU540=y
4
5
CONFIG_PLATFORM_SIFIVE_FU740=y
5
6
CONFIG_FDT_GPIO=y
@@ -24,6 +25,7 @@ CONFIG_FDT_SERIAL=y
24
25
CONFIG_FDT_SERIAL_CADENCE=y
25
26
CONFIG_FDT_SERIAL_GAISLER=y
26
27
CONFIG_FDT_SERIAL_HTIF=y
28
+ CONFIG_FDT_SERIAL_RENESAS_SCIF=y
27
29
CONFIG_FDT_SERIAL_SHAKTI=y
28
30
CONFIG_FDT_SERIAL_SIFIVE=y
29
31
CONFIG_FDT_SERIAL_LITEX=y
Original file line number Diff line number Diff line change
1
+ #
2
+ # SPDX-License-Identifier: BSD-2-Clause
3
+ #
4
+ # Copyright (C) 2022 Renesas Electronics Corp.
5
+ #
6
+
7
+ carray-platform_override_modules-$(CONFIG_PLATFORM_RENESAS_RZFIVE) += renesas_rzfive
8
+ platform-objs-$(CONFIG_PLATFORM_RENESAS_RZFIVE) += renesas/rzfive/rzfive.o
Original file line number Diff line number Diff line change
1
+ // SPDX-License-Identifier: GPL-2.0
2
+ /*
3
+ * Copyright (C) 2022 Renesas Electronics Corp.
4
+ *
5
+ */
6
+
7
+ #include <platform_override.h>
8
+ #include <sbi_utils/fdt/fdt_helper.h>
9
+
10
+ static const struct fdt_match renesas_rzfive_match [] = {
11
+ { .compatible = "renesas,r9a07g043f01" },
12
+ { /* sentinel */ }
13
+ };
14
+
15
+ const struct platform_override renesas_rzfive = {
16
+ .match_table = renesas_rzfive_match ,
17
+ };
You can’t perform that action at this time.
0 commit comments