2018-02-06 08:44:34 +00:00
|
|
|
if ARCH_MX23
|
|
|
|
|
|
|
|
config MX23
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "MX23 board select"
|
|
|
|
optional
|
|
|
|
|
|
|
|
config TARGET_MX23_OLINUXINO
|
|
|
|
bool "Support mx23_olinuxino"
|
|
|
|
select BOARD_EARLY_INIT_F
|
|
|
|
|
|
|
|
config TARGET_MX23EVK
|
|
|
|
bool "Support mx23evk"
|
|
|
|
select BOARD_EARLY_INIT_F
|
|
|
|
|
|
|
|
config TARGET_XFI3
|
|
|
|
bool "Support xfi3"
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config SYS_SOC
|
|
|
|
default "mxs"
|
|
|
|
|
|
|
|
source "board/olimex/mx23_olinuxino/Kconfig"
|
|
|
|
source "board/freescale/mx23evk/Kconfig"
|
|
|
|
|
|
|
|
endif
|
2018-02-06 08:44:35 +00:00
|
|
|
|
|
|
|
if ARCH_MX28
|
|
|
|
|
|
|
|
config MX28
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "MX28 board select"
|
|
|
|
optional
|
|
|
|
|
|
|
|
config TARGET_MX28EVK
|
|
|
|
bool "Support mx28evk"
|
|
|
|
select BOARD_EARLY_INIT_F
|
|
|
|
|
2019-12-08 21:06:56 +00:00
|
|
|
config TARGET_XEA
|
|
|
|
bool "Support XEA"
|
|
|
|
|
2018-02-06 08:44:35 +00:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config SYS_SOC
|
|
|
|
default "mxs"
|
|
|
|
|
2023-05-09 14:32:39 +00:00
|
|
|
config SPL_MXS_PMU_MINIMAL_VDD5V_CURRENT
|
|
|
|
bool "Force minimal current draw from VDD5V by MX28 PMU"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
After setting this option, the current drawn from VDD5V
|
|
|
|
by the PMU is reduced to zero - the DCDC_BATT is used as
|
|
|
|
the main power source for PMU.
|
|
|
|
|
2018-02-06 08:44:35 +00:00
|
|
|
source "board/freescale/mx28evk/Kconfig"
|
2019-12-08 21:06:56 +00:00
|
|
|
source "board/liebherr/xea/Kconfig"
|
2018-02-06 08:44:35 +00:00
|
|
|
|
|
|
|
endif
|