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>
This commit is contained in:
Sebastian Reichel 2020-09-02 19:31:44 +02:00 committed by Stefano Babic
parent 36e3e7deb2
commit 987b8f614c
4 changed files with 13 additions and 1 deletions

View File

@ -15,4 +15,6 @@ config SYS_SOC
config SYS_CONFIG_NAME
default "ge_bx50v3"
source "board/ge/common/Kconfig"
endif

7
board/ge/common/Kconfig Normal file
View File

@ -0,0 +1,7 @@
config GE_VPD
bool "Enable GE VPD Support"
default y
config GE_RTC
bool "Enable GE RTC Support"
default y

View File

@ -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

View File

@ -13,4 +13,6 @@ config SYS_SOC
config SYS_CONFIG_NAME
default "mx53ppd"
source "board/ge/common/Kconfig"
endif