blob: 2d27c49673bb14fcf5f4508ccefa56bd56c415d2 [file] [log] [blame]
Masahiro Yamada82069432014-10-03 19:21:07 +09001menu "Panasonic UniPhier platform"
2 depends on ARCH_UNIPHIER
3
Masahiro Yamada82069432014-10-03 19:21:07 +09004config SYS_CONFIG_NAME
Masahiro Yamada1e72b1c2014-12-06 00:03:22 +09005 default "uniphier"
Masahiro Yamada82069432014-10-03 19:21:07 +09006
Masahiro Yamadaa6185612014-12-06 00:03:20 +09007config UNIPHIER_SMP
8 bool
9
Masahiro Yamada82069432014-10-03 19:21:07 +090010choice
11 prompt "UniPhier SoC select"
Joe Hershbergerf0699602015-05-12 14:46:23 -050012 optional
Masahiro Yamada82069432014-10-03 19:21:07 +090013
14config MACH_PH1_PRO4
15 bool "PH1-Pro4"
Masahiro Yamadaa6185612014-12-06 00:03:20 +090016 select UNIPHIER_SMP
Masahiro Yamada82069432014-10-03 19:21:07 +090017
18config MACH_PH1_LD4
19 bool "PH1-LD4"
20
21config MACH_PH1_SLD8
22 bool "PH1-sLD8"
23
24endchoice
25
Masahiro Yamada39c450d2014-12-06 00:03:21 +090026choice
27 prompt "UniPhier Support Card select"
28 optional
29
30config PFC_MICRO_SUPPORT_CARD
31 bool "Support card with PFC CPLD"
32 help
33 This option provides support for the expansion board with PFC
34 original address mapping.
35
36 Say Y to use the on-board UART, Ether, LED devices.
37
38config DCC_MICRO_SUPPORT_CARD
39 bool "Support card with DCC CPLD"
40 help
41 This option provides support for the expansion board with DCC-
42 arranged address mapping that is compatible with legacy UniPhier
43 reference boards.
44
45 Say Y to use the on-board UART, Ether, LED devices.
46
47endchoice
48
Masahiro Yamada4b5e7e32014-10-20 20:45:22 +090049config CMD_PINMON
50 bool "Enable boot mode pins monitor command"
Masahiro Yamada4b5e7e32014-10-20 20:45:22 +090051 default y
52 help
53 The command "pinmon" shows the state of the boot mode pins.
54 The boot mode pins are latched when the system reset is deasserted
55 and determine which device the system should load a boot image from.
56
Masahiro Yamada8f899ed2014-12-19 20:20:53 +090057config CMD_DDRPHY_DUMP
58 bool "Enable dump command of DDR PHY parameters"
Masahiro Yamada8f899ed2014-12-19 20:20:53 +090059 help
60 The command "ddrphy" shows the resulting parameters of DDR PHY
61 training; it is useful for the evaluation of DDR PHY training.
62
Masahiro Yamadab0c79042014-11-06 20:16:42 +090063choice
64 prompt "DDR3 Frequency select"
Masahiro Yamadab0c79042014-11-06 20:16:42 +090065
66config DDR_FREQ_1600
67 bool "DDR3 1600"
68 depends on MACH_PH1_PRO4 || MACH_PH1_LD4
69
70config DDR_FREQ_1333
71 bool "DDR3 1333"
72 depends on MACH_PH1_LD4 || MACH_PH1_SLD8
73
74endchoice
75
76config DDR_FREQ
77 int
78 default 1333 if DDR_FREQ_1333
79 default 1600 if DDR_FREQ_1600
80
Masahiro Yamada82069432014-10-03 19:21:07 +090081endmenu