blob: 22ab798b969c4dc1deff494a38dfdb7fd5a7b748 [file] [log] [blame]
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +09001if ARCH_UNIPHIER
Masahiro Yamada66cba042014-10-03 19:21:07 +09002
Masahiro Yamada66cba042014-10-03 19:21:07 +09003config SYS_CONFIG_NAME
Masahiro Yamadaf5d0b9b2014-12-06 00:03:22 +09004 default "uniphier"
Masahiro Yamada66cba042014-10-03 19:21:07 +09005
Masahiro Yamada84b35842014-12-06 00:03:20 +09006config UNIPHIER_SMP
7 bool
8
Masahiro Yamada8497ccc2015-09-22 00:27:34 +09009config ARCH_UNIPHIER_PH1_SLD3
Masahiro Yamada323d1f92015-09-22 00:27:39 +090010 bool "UniPhier PH1-sLD3 SoC"
Masahiro Yamada84b35842014-12-06 00:03:20 +090011 select UNIPHIER_SMP
Masahiro Yamada323d1f92015-09-22 00:27:39 +090012 help
13 This enables support for UniPhier PH1-sLD3 SoC.
Masahiro Yamada66cba042014-10-03 19:21:07 +090014
Masahiro Yamada8497ccc2015-09-22 00:27:34 +090015config ARCH_UNIPHIER_PH1_LD4
Masahiro Yamada323d1f92015-09-22 00:27:39 +090016 bool "UniPhier PH1-LD4 SoC"
17 depends on !ARCH_UNIPHIER_PH1_SLD3
18 help
19 This enables support for UniPhier PH1-LD4 SoC.
Masahiro Yamada66cba042014-10-03 19:21:07 +090020
Masahiro Yamada8497ccc2015-09-22 00:27:34 +090021config ARCH_UNIPHIER_PH1_PRO4
Masahiro Yamada323d1f92015-09-22 00:27:39 +090022 bool "UniPhier PH1-Pro4 SoC"
Masahiro Yamada3365b4e2015-07-21 14:04:22 +090023 select UNIPHIER_SMP
Masahiro Yamada323d1f92015-09-22 00:27:39 +090024 depends on !ARCH_UNIPHIER_PH1_SLD3 && \
25 !ARCH_UNIPHIER_PH1_LD4 && \
26 !ARCH_UNIPHIER_PH1_SLD8
27 help
28 This enables support for UniPhier PH1-Pro4 SoC.
Masahiro Yamada3365b4e2015-07-21 14:04:22 +090029
Masahiro Yamada8497ccc2015-09-22 00:27:34 +090030config ARCH_UNIPHIER_PH1_SLD8
Masahiro Yamada323d1f92015-09-22 00:27:39 +090031 bool "UniPhier PH1-sLD8 SoC"
32 depends on !ARCH_UNIPHIER_PH1_SLD3
33 help
34 This enables support for UniPhier PH1-sLD8 SoC.
Masahiro Yamada66cba042014-10-03 19:21:07 +090035
Masahiro Yamada28f40d42015-09-22 00:27:40 +090036config ARCH_UNIPHIER_PH1_PRO5
37 bool "UniPhier PH1-Pro5 SoC"
38 select UNIPHIER_SMP
39 depends on !ARCH_UNIPHIER_PH1_SLD3 && \
40 !ARCH_UNIPHIER_PH1_LD4 && \
41 !ARCH_UNIPHIER_PH1_SLD8
42 help
43 This enables support for UniPhier PH1-Pro5 SoC.
44
Masahiro Yamada019df872015-09-22 00:27:41 +090045config ARCH_UNIPHIER_PROXSTREAM2
46 bool "UniPhier ProXstream2 SoC"
47 select UNIPHIER_SMP
48 depends on !ARCH_UNIPHIER_PH1_SLD3 && \
49 !ARCH_UNIPHIER_PH1_LD4 && \
50 !ARCH_UNIPHIER_PH1_SLD8
51 help
52 This enables support for UniPhier ProXstream2 SoC.
53
54config ARCH_UNIPHIER_PH1_LD6B
55 bool "UniPhier PH1-LD6b SoC"
56 select UNIPHIER_SMP
57 depends on !ARCH_UNIPHIER_PH1_SLD3 && \
58 !ARCH_UNIPHIER_PH1_LD4 && \
59 !ARCH_UNIPHIER_PH1_SLD8
60 help
61 This enables support for UniPhier PH1-LD6b SoC.
62
Masahiro Yamada98798422015-09-11 20:17:45 +090063config MICRO_SUPPORT_CARD
64 bool "Use Micro Support Card"
Masahiro Yamada32014552014-12-06 00:03:21 +090065 help
Masahiro Yamada98798422015-09-11 20:17:45 +090066 This option provides support for the expansion board, available
67 on some UniPhier reference boards.
Masahiro Yamada32014552014-12-06 00:03:21 +090068
69 Say Y to use the on-board UART, Ether, LED devices.
70
Masahiro Yamada59ca5532014-10-20 20:45:22 +090071config CMD_PINMON
72 bool "Enable boot mode pins monitor command"
Masahiro Yamada59ca5532014-10-20 20:45:22 +090073 default y
74 help
75 The command "pinmon" shows the state of the boot mode pins.
76 The boot mode pins are latched when the system reset is deasserted
77 and determine which device the system should load a boot image from.
78
Masahiro Yamadac67b2af2014-12-19 20:20:53 +090079config CMD_DDRPHY_DUMP
80 bool "Enable dump command of DDR PHY parameters"
Masahiro Yamadac67b2af2014-12-19 20:20:53 +090081 help
82 The command "ddrphy" shows the resulting parameters of DDR PHY
83 training; it is useful for the evaluation of DDR PHY training.
84
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +090085endif