]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/uniphier/Kconfig
kconfig: switch to single .config configuration
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / uniphier / Kconfig
1 menu "Panasonic UniPhier platform"
2         depends on ARCH_UNIPHIER
3
4 config SYS_SOC
5         default "uniphier"
6
7 config SYS_CONFIG_NAME
8         default "uniphier"
9
10 config UNIPHIER_SMP
11         bool
12
13 choice
14         prompt "UniPhier SoC select"
15
16 config MACH_PH1_PRO4
17         bool "PH1-Pro4"
18         select UNIPHIER_SMP
19
20 config MACH_PH1_LD4
21         bool "PH1-LD4"
22
23 config MACH_PH1_SLD8
24         bool "PH1-sLD8"
25
26 endchoice
27
28 choice
29         prompt "UniPhier Support Card select"
30         optional
31
32 config PFC_MICRO_SUPPORT_CARD
33         bool "Support card with PFC CPLD"
34         help
35           This option provides support for the expansion board with PFC
36           original address mapping.
37
38           Say Y to use the on-board UART, Ether, LED devices.
39
40 config DCC_MICRO_SUPPORT_CARD
41         bool "Support card with DCC CPLD"
42         help
43           This option provides support for the expansion board with DCC-
44           arranged address mapping that is compatible with legacy UniPhier
45           reference boards.
46
47           Say Y to use the on-board UART, Ether, LED devices.
48
49 endchoice
50
51 config SYS_MALLOC_F
52         default y
53
54 config SYS_MALLOC_F_LEN
55         default 0x400
56
57 config CMD_PINMON
58         bool "Enable boot mode pins monitor command"
59         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
65 config CMD_DDRPHY_DUMP
66         bool "Enable dump command of DDR PHY parameters"
67         depends on !SPL_BUILD
68         help
69           The command "ddrphy" shows the resulting parameters of DDR PHY
70           training; it is useful for the evaluation of DDR PHY training.
71
72 choice
73         prompt "DDR3 Frequency select"
74
75 config DDR_FREQ_1600
76         bool "DDR3 1600"
77         depends on MACH_PH1_PRO4 || MACH_PH1_LD4
78
79 config DDR_FREQ_1333
80         bool "DDR3 1333"
81         depends on MACH_PH1_LD4 || MACH_PH1_SLD8
82
83 endchoice
84
85 config DDR_FREQ
86         int
87         default 1333 if DDR_FREQ_1333
88         default 1600 if DDR_FREQ_1600
89
90 endmenu