aboutsummaryrefslogtreecommitdiff
path: root/board/renesas/v3msk/Makefile
diff options
context:
space:
mode:
authorValentine Barshak2019-04-23 23:44:57 +0300
committerMarek Vasut2023-06-08 22:26:52 +0200
commit5f4e26964cba6c7f36b240792e52e67427c195f0 (patch)
treee5f87dd18d805956d75753b26fe182bd384ad5dc /board/renesas/v3msk/Makefile
parentf2a21a8c240041d760074b4ebbf2ef5c08322079 (diff)
ARM: renesas: Add R8A77970 V3MSK board and CPLD code
Add board code for the R8A77970 V3MSK board. Add CPLD sysreset driver to the R-Car V3M SK board. Extracted from a larger patch by Valentine Barshak. Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Signed-off-by: Valentine Barshak <valentine.barshak@cogentembedded.com> Signed-off-by: Hai Pham <hai.pham.ud@renesas.com> Signed-off-by: Tam Nguyen <tam.nguyen.xa@renesas.com> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> [Marek: Sync configs and board code with V3M Eagle, squash CPLD driver in]
Diffstat (limited to 'board/renesas/v3msk/Makefile')
-rw-r--r--board/renesas/v3msk/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/board/renesas/v3msk/Makefile b/board/renesas/v3msk/Makefile
new file mode 100644
index 00000000000..ec493e572f1
--- /dev/null
+++ b/board/renesas/v3msk/Makefile
@@ -0,0 +1,15 @@
+#
+# board/renesas/v3msk/Makefile
+#
+# Copyright (C) 2019 Renesas Electronics Corporation
+# Copyright (C) 2019 Cogent Embedded, Inc.
+#
+# SPDX-License-Identifier: GPL-2.0+
+#
+
+ifdef CONFIG_SPL_BUILD
+obj-y := ../rcar-common/gen3-spl.o
+else
+obj-y := ../rcar-common/v3-common.o ../rcar-common/common.o
+obj-$(CONFIG_SYSRESET) += cpld.o
+endif