]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-uniphier/Kconfig
imx: timer: don't clear the GPT control register multiple times
[u-boot] / arch / arm / mach-uniphier / Kconfig
1 if ARCH_UNIPHIER
2
3 config SYS_CONFIG_NAME
4         default "uniphier"
5
6 config ARCH_UNIPHIER_32BIT
7         bool
8         select CPU_V7
9         select CPU_V7_HAS_NONSEC
10         select ARMV7_NONSEC
11         select ARCH_SUPPORT_PSCI
12         imply NAND
13
14 choice
15         prompt "UniPhier SoC select"
16         default ARCH_UNIPHIER_PRO4
17
18 config ARCH_UNIPHIER_LD4_SLD8
19         bool "UniPhier LD4/sLD8 SoCs"
20         select ARCH_UNIPHIER_32BIT
21
22 config ARCH_UNIPHIER_PRO4
23         bool "UniPhier Pro4 SoC"
24         select ARCH_UNIPHIER_32BIT
25
26 config ARCH_UNIPHIER_PRO5_PXS2_LD6B
27         bool "UniPhier Pro5/PXs2/LD6b SoCs"
28         select ARCH_UNIPHIER_32BIT
29
30 config ARCH_UNIPHIER_V8_MULTI
31         bool "UniPhier V8 SoCs"
32         depends on !SPL
33         select ARM64
34         select CMD_UNZIP
35
36 endchoice
37
38 config ARCH_UNIPHIER_LD4
39         bool "Enable UniPhier LD4 SoC support"
40         depends on ARCH_UNIPHIER_LD4_SLD8
41         default y
42
43 config ARCH_UNIPHIER_SLD8
44         bool "Enable UniPhier sLD8 SoC support"
45         depends on ARCH_UNIPHIER_LD4_SLD8
46         default y
47
48 config ARCH_UNIPHIER_PRO5
49         bool "Enable UniPhier Pro5 SoC support"
50         depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
51         default y
52
53 config ARCH_UNIPHIER_PXS2
54         bool "Enable UniPhier Pxs2 SoC support"
55         depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
56         default y
57
58 config ARCH_UNIPHIER_LD6B
59         bool "Enable UniPhier LD6b SoC support"
60         depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
61         default y
62
63 config ARCH_UNIPHIER_LD11
64         bool "Enable UniPhier LD11 SoC support"
65         depends on ARCH_UNIPHIER_V8_MULTI
66         default y
67
68 config ARCH_UNIPHIER_LD20
69         bool "Enable UniPhier LD20 SoC support"
70         depends on ARCH_UNIPHIER_V8_MULTI
71         select OF_BOARD_SETUP
72         default y
73
74 config ARCH_UNIPHIER_PXS3
75         bool "Enable UniPhier PXs3 SoC support"
76         depends on ARCH_UNIPHIER_V8_MULTI
77         default y
78
79 config CACHE_UNIPHIER
80         bool "Enable the UniPhier L2 cache controller"
81         depends on ARCH_UNIPHIER_32BIT
82         select SYS_CACHE_SHIFT_7
83         default y
84         help
85           This option allows to use the UniPhier System Cache as L2 cache.
86
87 config MICRO_SUPPORT_CARD
88         bool "Use Micro Support Card"
89         help
90           This option provides support for the expansion board, available
91           on some UniPhier reference boards.
92
93           Say Y to use the on-board UART, Ether, LED devices.
94
95 config CMD_PINMON
96         bool "Enable boot mode pins monitor command"
97         default y
98         help
99           The command "pinmon" shows the state of the boot mode pins.
100           The boot mode pins are latched when the system reset is deasserted
101           and determine which device the system should load a boot image from.
102
103 config CMD_DDRPHY_DUMP
104         bool "Enable dump command of DDR PHY parameters"
105         depends on ARCH_UNIPHIER_LD4 || ARCH_UNIPHIER_PRO4 || \
106                 ARCH_UNIPHIER_SLD8 || ARCH_UNIPHIER_LD11
107         default y
108         help
109           The command "ddrphy" shows the resulting parameters of DDR PHY
110           training; it is useful for the evaluation of DDR PHY training.
111
112 config CMD_DDRMPHY_DUMP
113         bool "Enable dump command of DDR Multi PHY parameters"
114         depends on ARCH_UNIPHIER_PXS2 || ARCH_UNIPHIER_LD6B
115         default y
116         help
117           The command "ddrmphy" shows the resulting parameters of DDR Multi PHY
118           training; it is useful for the evaluation of DDR Multi PHY training.
119
120 endif