xref: /openbmc/u-boot/arch/powerpc/Kconfig (revision 29974f77)
1menu "PowerPC architecture"
2	depends on PPC
3
4config SYS_ARCH
5	default "powerpc"
6
7choice
8	prompt "CPU select"
9	optional
10
11config MPC512X
12	bool "MPC512X"
13
14config 5xx
15	bool "MPC5xx"
16
17config MPC5xxx
18	bool "MPC5xxx"
19
20config MPC8260
21	bool "MPC8260"
22
23config MPC83xx
24	bool "MPC83xx"
25	select CREATE_ARCH_SYMLINK
26
27config MPC85xx
28	bool "MPC85xx"
29	select CREATE_ARCH_SYMLINK
30
31config MPC86xx
32	bool "MPC86xx"
33
34config 8xx
35	bool "MPC8xx"
36
37config 4xx
38	bool "PPC4xx"
39	select CREATE_ARCH_SYMLINK
40
41endchoice
42
43source "arch/powerpc/cpu/mpc512x/Kconfig"
44source "arch/powerpc/cpu/mpc5xx/Kconfig"
45source "arch/powerpc/cpu/mpc5xxx/Kconfig"
46source "arch/powerpc/cpu/mpc8260/Kconfig"
47source "arch/powerpc/cpu/mpc83xx/Kconfig"
48source "arch/powerpc/cpu/mpc85xx/Kconfig"
49source "arch/powerpc/cpu/mpc86xx/Kconfig"
50source "arch/powerpc/cpu/mpc8xx/Kconfig"
51source "arch/powerpc/cpu/ppc4xx/Kconfig"
52
53endmenu
54