Merge tag 'tpm-030822' of https://source.denx.de/u-boot/custodians/u-boot-tpm
[platform/kernel/u-boot.git] / arch / powerpc / Kconfig
1 menu "PowerPC architecture"
2         depends on PPC
3
4 config SYS_ARCH
5         default "powerpc"
6
7 choice
8         prompt "CPU select"
9         optional
10
11 config MPC83xx
12         bool "MPC83xx"
13         select CREATE_ARCH_SYMLINK
14         select SYS_FSL_HAS_SEC
15         select SYS_FSL_SEC_BE
16         select SYS_FSL_SEC_COMPAT_2
17
18 config MPC85xx
19         bool "MPC85xx"
20         select CREATE_ARCH_SYMLINK
21         select SYS_FSL_DDR
22         select SYS_FSL_DDR_BE
23         select SYS_FSL_IFC_BE
24         select BINMAN if OF_SEPARATE
25         imply CMD_HASH
26         imply CMD_IRQ
27         imply USB_EHCI_HCD if USB
28
29 config MPC8xx
30         bool "MPC8xx"
31         select BOARD_EARLY_INIT_F
32         imply CMD_REGINFO
33         imply WDT_MPC8xx
34
35 endchoice
36
37 config HIGH_BATS
38         bool "Enable high BAT registers"
39         help
40           Enable BATs (block address translation registers) 4-7 on machines
41           that support them.
42
43 source "arch/powerpc/cpu/mpc83xx/Kconfig"
44 source "arch/powerpc/cpu/mpc85xx/Kconfig"
45 source "arch/powerpc/cpu/mpc8xx/Kconfig"
46 source "arch/powerpc/lib/Kconfig"
47
48 endmenu