u-boot-brain/arch/arm/mach-imx/mxs/Kconfig

102 lines
1.7 KiB
Plaintext
Raw Normal View History

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
if ARCH_MX28
config MX28
bool
default y
choice
prompt "MX28 board select"
optional
config TARGET_BG0900
bool "Support bg0900"
config TARGET_MX28EVK
bool "Support mx28evk"
select BOARD_EARLY_INIT_F
config TARGET_XEA
bool "Support XEA"
2020-10-25 22:55:01 +09:00
config TARGET_PWSH1
bool "Support PW-SH1"
select BOARD_EARLY_INIT_F
2020-11-01 20:20:24 +09:00
config TARGET_PWSH2
bool "Support PW-SH2"
select BOARD_EARLY_INIT_F
2020-11-01 21:09:00 +09:00
config TARGET_PWSH3
bool "Support PW-SH3"
select BOARD_EARLY_INIT_F
2020-11-01 21:18:25 +09:00
config TARGET_PWSH4
bool "Support PW-SH4"
select BOARD_EARLY_INIT_F
2020-11-01 21:24:27 +09:00
config TARGET_PWSH5
bool "Support PW-SH5"
select BOARD_EARLY_INIT_F
2020-11-01 21:29:37 +09:00
config TARGET_PWSH6
bool "Support PW-SH6"
select BOARD_EARLY_INIT_F
2021-03-22 04:03:30 +09:00
config TARGET_PWSH7
bool "Support PW-SH7"
select BOARD_EARLY_INIT_F
2021-05-31 02:21:21 +09:00
config TARGET_PWA7200
2022-11-13 19:32:51 +09:00
bool "Support PW-A7200 series"
2021-03-09 22:07:11 +09:00
select BOARD_EARLY_INIT_F
endchoice
config SYS_SOC
default "mxs"
source "board/freescale/mx28evk/Kconfig"
source "board/liebherr/xea/Kconfig"
source "board/ppcag/bg0900/Kconfig"
2020-10-25 22:55:01 +09:00
source "board/sharp/pwsh1/Kconfig"
2020-11-01 20:20:24 +09:00
source "board/sharp/pwsh2/Kconfig"
2020-11-01 21:09:00 +09:00
source "board/sharp/pwsh3/Kconfig"
2020-11-01 21:18:25 +09:00
source "board/sharp/pwsh4/Kconfig"
2020-11-01 21:24:27 +09:00
source "board/sharp/pwsh5/Kconfig"
2020-11-01 21:29:37 +09:00
source "board/sharp/pwsh6/Kconfig"
2021-03-22 04:03:30 +09:00
source "board/sharp/pwsh7/Kconfig"
2021-05-31 02:21:21 +09:00
source "board/sharp/pwa7200/Kconfig"
endif