blob: e859ca3adad0ea9befe9cc9771f037321d6af3a7 [file] [log] [blame]
Masahiro Yamada563ee4c2015-05-29 17:30:01 +09001if ARCH_UNIPHIER
Masahiro Yamada82069432014-10-03 19:21:07 +09002
Masahiro Yamada82069432014-10-03 19:21:07 +09003config SYS_CONFIG_NAME
Masahiro Yamada1e72b1c2014-12-06 00:03:22 +09004 default "uniphier"
Masahiro Yamada82069432014-10-03 19:21:07 +09005
Masahiro Yamada89c0b152016-02-26 18:59:42 +09006choice
7 prompt "UniPhier SoC select"
8 default ARCH_UNIPHIER_PH1_PRO4
9
Masahiro Yamada1fa0b012015-09-22 00:27:34 +090010config ARCH_UNIPHIER_PH1_SLD3
Masahiro Yamada75f16f82015-09-22 00:27:39 +090011 bool "UniPhier PH1-sLD3 SoC"
Masahiro Yamada82069432014-10-03 19:21:07 +090012
Masahiro Yamada89c0b152016-02-26 18:59:42 +090013config ARCH_UNIPHIER_LD4_SLD8
14 bool "UniPhier PH1-LD4/PH1-sLD8 SoC"
Masahiro Yamada82069432014-10-03 19:21:07 +090015
Masahiro Yamada1fa0b012015-09-22 00:27:34 +090016config ARCH_UNIPHIER_PH1_PRO4
Masahiro Yamada75f16f82015-09-22 00:27:39 +090017 bool "UniPhier PH1-Pro4 SoC"
Masahiro Yamada89c0b152016-02-26 18:59:42 +090018
19config ARCH_UNIPHIER_PRO5_PXS2_LD6B
20 bool "UniPhier PH1-Pro5/ProXstream2/PH1-LD6b SoC"
21
22endchoice
23
24config ARCH_UNIPHIER_PH1_LD4
25 bool "Enable UniPhier PH1-LD4 SoC support"
26 depends on ARCH_UNIPHIER_LD4_SLD8
27 default y
Masahiro Yamadafa714412015-07-21 14:04:22 +090028
Masahiro Yamada1fa0b012015-09-22 00:27:34 +090029config ARCH_UNIPHIER_PH1_SLD8
Masahiro Yamada89c0b152016-02-26 18:59:42 +090030 bool "Enable UniPhier PH1-sLD8 SoC support"
31 depends on ARCH_UNIPHIER_LD4_SLD8
32 default y
Masahiro Yamada82069432014-10-03 19:21:07 +090033
Masahiro Yamadad5167d52015-09-22 00:27:40 +090034config ARCH_UNIPHIER_PH1_PRO5
Masahiro Yamada89c0b152016-02-26 18:59:42 +090035 bool "Enable UniPhier PH1-Pro5 SoC support"
36 depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
37 default y
Masahiro Yamadad5167d52015-09-22 00:27:40 +090038
Masahiro Yamada1fe65d32015-09-22 00:27:41 +090039config ARCH_UNIPHIER_PROXSTREAM2
Masahiro Yamada89c0b152016-02-26 18:59:42 +090040 bool "Enable UniPhier ProXstream2 SoC support"
41 depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
42 default y
Masahiro Yamada1fe65d32015-09-22 00:27:41 +090043
44config ARCH_UNIPHIER_PH1_LD6B
Masahiro Yamada89c0b152016-02-26 18:59:42 +090045 bool "Enable UniPhier PH1-LD6b SoC support"
46 depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
47 default y
Masahiro Yamada1fe65d32015-09-22 00:27:41 +090048
Masahiro Yamada4903b6d2015-09-11 20:17:45 +090049config MICRO_SUPPORT_CARD
50 bool "Use Micro Support Card"
Masahiro Yamada39c450d2014-12-06 00:03:21 +090051 help
Masahiro Yamada4903b6d2015-09-11 20:17:45 +090052 This option provides support for the expansion board, available
53 on some UniPhier reference boards.
Masahiro Yamada39c450d2014-12-06 00:03:21 +090054
55 Say Y to use the on-board UART, Ether, LED devices.
56
Masahiro Yamada4b5e7e32014-10-20 20:45:22 +090057config CMD_PINMON
58 bool "Enable boot mode pins monitor command"
Masahiro Yamada4b5e7e32014-10-20 20:45:22 +090059 default y
60 help
61 The command "pinmon" shows the state of the boot mode pins.
62 The boot mode pins are latched when the system reset is deasserted
63 and determine which device the system should load a boot image from.
64
Masahiro Yamada8f899ed2014-12-19 20:20:53 +090065config CMD_DDRPHY_DUMP
66 bool "Enable dump command of DDR PHY parameters"
Masahiro Yamadabfffa2c2016-01-09 01:51:15 +090067 depends on ARCH_UNIPHIER_PH1_LD4 || ARCH_UNIPHIER_PH1_PRO4 || \
68 ARCH_UNIPHIER_PH1_SLD8
Masahiro Yamada8f899ed2014-12-19 20:20:53 +090069 help
70 The command "ddrphy" shows the resulting parameters of DDR PHY
71 training; it is useful for the evaluation of DDR PHY training.
72
Masahiro Yamadabfffa2c2016-01-09 01:51:15 +090073config CMD_DDRMPHY_DUMP
74 bool "Enable dump command of DDR Multi PHY parameters"
75 depends on ARCH_UNIPHIER_PROXSTREAM2 || ARCH_UNIPHIER_PH1_LD6B
76 help
77 The command "ddrmphy" shows the resulting parameters of DDR Multi PHY
78 training; it is useful for the evaluation of DDR Multi PHY training.
79
Masahiro Yamada563ee4c2015-05-29 17:30:01 +090080endif