]> git.ipfire.org Git - thirdparty/u-boot.git/blob - arch/powerpc/Kconfig
Convert CONFIG_HOSTNAME et al to Kconfig
[thirdparty/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 MPC85XX_HAVE_RESET_VECTOR && 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 FSL_LBC
38 def_bool y
39 depends on (MPC85xx || MPC83xx) && !FSL_IFC
40
41 config HIGH_BATS
42 bool "Enable high BAT registers"
43 help
44 Enable BATs (block address translation registers) 4-7 on machines
45 that support them.
46
47 config SYS_INIT_RAM_LOCK
48 bool "Lock some portion of L1 for initial ram stack"
49 depends on MPC83xx || MPC85xx
50
51 config SYS_SRIO
52 bool "Serial RapidIO support"
53
54 config SRIO1
55 bool "Board has SRIO 1 port available"
56 depends on SYS_SRIO
57
58 config SRIO2
59 bool "Board has SRIO 2 port available"
60 depends on SYS_SRIO
61
62 config SRIO_PCIE_BOOT_MASTER
63 bool "Board can support master function for Boot from SRIO and PCIE"
64 depends on SYS_SRIO
65
66 source "arch/powerpc/cpu/mpc83xx/Kconfig"
67 source "arch/powerpc/cpu/mpc85xx/Kconfig"
68 source "arch/powerpc/cpu/mpc8xx/Kconfig"
69 source "arch/powerpc/lib/Kconfig"
70
71 config USE_UBOOTPATH
72 bool "Set a default 'uboot' value in the environment"
73 help
74 Many default environment scripts will check the "uboot" variable
75 to determine the name of the file to load via tftp that will then
76 be written to flash.
77
78 config UBOOTPATH
79 string "Value of the default 'uboot' value in the environment"
80 depends on USE_UBOOTPATH
81 default "u-boot.bin"
82
83 endmenu