aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Reichel <sebastian.reichel@collabora.com>2020-09-02 19:31:44 +0200
committerStefano Babic <sbabic@denx.de>2020-11-01 15:58:47 +0100
commit987b8f614c066478aeb9b4ad869613ec23835fbc (patch)
treeda7623879e770242ada8dc37f120272ddd638869
parent36e3e7deb25773cf8ef2533612361490d175967f (diff)
downloadu-boot-987b8f614c066478aeb9b4ad869613ec23835fbc.tar.gz
board: ge: common: add config option for RTC and VPD feature
While this code is being used by all GE platforms its useful to have it behind a config option for hardware bringup of new platforms. Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
-rw-r--r--board/ge/bx50v3/Kconfig2
-rw-r--r--board/ge/common/Kconfig7
-rw-r--r--board/ge/common/Makefile3
-rw-r--r--board/ge/mx53ppd/Kconfig2
4 files changed, 13 insertions, 1 deletions
diff --git a/board/ge/bx50v3/Kconfig b/board/ge/bx50v3/Kconfig
index 993b055930..05938560ab 100644
--- a/board/ge/bx50v3/Kconfig
+++ b/board/ge/bx50v3/Kconfig
@@ -15,4 +15,6 @@ config SYS_SOC
config SYS_CONFIG_NAME
default "ge_bx50v3"
+source "board/ge/common/Kconfig"
+
endif
diff --git a/board/ge/common/Kconfig b/board/ge/common/Kconfig
new file mode 100644
index 0000000000..323ed1f996
--- /dev/null
+++ b/board/ge/common/Kconfig
@@ -0,0 +1,7 @@
+config GE_VPD
+ bool "Enable GE VPD Support"
+ default y
+
+config GE_RTC
+ bool "Enable GE RTC Support"
+ default y
diff --git a/board/ge/common/Makefile b/board/ge/common/Makefile
index 36bedb1980..8bd44e3c8a 100644
--- a/board/ge/common/Makefile
+++ b/board/ge/common/Makefile
@@ -2,4 +2,5 @@
#
# Copyright 2017 General Electric Company
-obj-y := vpd_reader.o ge_rtc.o
+obj-$(CONFIG_GE_VPD) += vpd_reader.o
+obj-$(CONFIG_GE_RTC) += ge_rtc.o
diff --git a/board/ge/mx53ppd/Kconfig b/board/ge/mx53ppd/Kconfig
index 6dc3818cb7..bebb2fab01 100644
--- a/board/ge/mx53ppd/Kconfig
+++ b/board/ge/mx53ppd/Kconfig
@@ -13,4 +13,6 @@ config SYS_SOC
config SYS_CONFIG_NAME
default "mx53ppd"
+source "board/ge/common/Kconfig"
+
endif