xref: /openbmc/u-boot/arch/powerpc/cpu/mpc83xx/Kconfig (revision 6bd041f0)
1menu "mpc83xx CPU"
2	depends on MPC83xx
3
4config SYS_CPU
5	default "mpc83xx"
6
7choice
8	prompt "Target select"
9	optional
10
11config TARGET_MPC8308_P1M
12	bool "Support mpc8308_p1m"
13
14config TARGET_SBC8349
15	bool "Support sbc8349"
16
17config TARGET_VE8313
18	bool "Support ve8313"
19
20config TARGET_VME8349
21	bool "Support vme8349"
22
23config TARGET_MPC8308RDB
24	bool "Support MPC8308RDB"
25	select SYS_FSL_ERRATUM_ESDHC111
26
27config TARGET_MPC8313ERDB
28	bool "Support MPC8313ERDB"
29	select SUPPORT_SPL
30	select BOARD_EARLY_INIT_F
31
32config TARGET_MPC8315ERDB
33	bool "Support MPC8315ERDB"
34	select BOARD_EARLY_INIT_F
35
36config TARGET_MPC8323ERDB
37	bool "Support MPC8323ERDB"
38
39config TARGET_MPC832XEMDS
40	bool "Support MPC832XEMDS"
41	select BOARD_EARLY_INIT_F
42
43config TARGET_MPC8349EMDS
44	bool "Support MPC8349EMDS"
45	select SYS_FSL_DDR
46	select SYS_FSL_HAS_DDR2
47	select SYS_FSL_DDR_BE
48	select BOARD_EARLY_INIT_F
49
50config TARGET_MPC8349ITX
51	bool "Support MPC8349ITX"
52
53config TARGET_MPC837XEMDS
54	bool "Support MPC837XEMDS"
55	select BOARD_EARLY_INIT_F
56
57config TARGET_MPC837XERDB
58	bool "Support MPC837XERDB"
59	select BOARD_EARLY_INIT_F
60
61config TARGET_IDS8313
62	bool "Support ids8313"
63	select DM
64
65config TARGET_KM8360
66	bool "Support km8360"
67
68config TARGET_SUVD3
69	bool "Support suvd3"
70
71config TARGET_TUXX1
72	bool "Support tuxx1"
73
74config TARGET_TQM834X
75	bool "Support TQM834x"
76
77config TARGET_HRCON
78	bool "Support hrcon"
79	select SYS_FSL_ERRATUM_ESDHC111
80
81config TARGET_STRIDER
82	bool "Support strider"
83	select SYS_FSL_ERRATUM_ESDHC111
84
85endchoice
86
87source "board/esd/vme8349/Kconfig"
88source "board/freescale/mpc8308rdb/Kconfig"
89source "board/freescale/mpc8313erdb/Kconfig"
90source "board/freescale/mpc8315erdb/Kconfig"
91source "board/freescale/mpc8323erdb/Kconfig"
92source "board/freescale/mpc832xemds/Kconfig"
93source "board/freescale/mpc8349emds/Kconfig"
94source "board/freescale/mpc8349itx/Kconfig"
95source "board/freescale/mpc837xemds/Kconfig"
96source "board/freescale/mpc837xerdb/Kconfig"
97source "board/ids/ids8313/Kconfig"
98source "board/keymile/km83xx/Kconfig"
99source "board/mpc8308_p1m/Kconfig"
100source "board/sbc8349/Kconfig"
101source "board/tqc/tqm834x/Kconfig"
102source "board/ve8313/Kconfig"
103source "board/gdsys/mpc8308/Kconfig"
104
105endmenu
106