]> git.sur5r.net Git - u-boot/blob - arch/arm/cpu/armv7/uniphier/Kconfig
ARM: UniPhier: make pinmon command optional
[u-boot] / arch / arm / cpu / armv7 / uniphier / Kconfig
1 menu "Panasonic UniPhier platform"
2         depends on ARCH_UNIPHIER
3
4 config SYS_CPU
5         string
6         default "armv7"
7
8 config SYS_SOC
9         string
10         default "uniphier"
11
12 config SYS_CONFIG_NAME
13         string
14         default "ph1_pro4" if MACH_PH1_PRO4
15         default "ph1_ld4" if MACH_PH1_LD4
16         default "ph1_sld8" if MACH_PH1_SLD8
17
18 choice
19         prompt "UniPhier SoC select"
20
21 config MACH_PH1_PRO4
22         bool "PH1-Pro4"
23
24 config MACH_PH1_LD4
25         bool "PH1-LD4"
26
27 config MACH_PH1_SLD8
28         bool "PH1-sLD8"
29
30 endchoice
31
32 config CMD_PINMON
33         bool "Enable boot mode pins monitor command"
34         depends on !SPL_BUILD
35         default y
36         help
37           The command "pinmon" shows the state of the boot mode pins.
38           The boot mode pins are latched when the system reset is deasserted
39           and determine which device the system should load a boot image from.
40
41 endmenu