xref: /openbmc/u-boot/arch/powerpc/cpu/mpc83xx/Kconfig (revision d754254f)
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	imply CMD_IRQ
53
54config TARGET_MPC837XEMDS
55	bool "Support MPC837XEMDS"
56	select BOARD_EARLY_INIT_F
57
58config TARGET_MPC837XERDB
59	bool "Support MPC837XERDB"
60	select BOARD_EARLY_INIT_F
61
62config TARGET_IDS8313
63	bool "Support ids8313"
64	select DM
65
66config TARGET_KM8360
67	bool "Support km8360"
68	imply CMD_CRAMFS
69	imply CMD_DIAG
70	imply FS_CRAMFS
71
72config TARGET_SUVD3
73	bool "Support suvd3"
74	imply CMD_CRAMFS
75	imply FS_CRAMFS
76
77config TARGET_TUXX1
78	bool "Support tuxx1"
79	imply CMD_CRAMFS
80	imply FS_CRAMFS
81
82config TARGET_TQM834X
83	bool "Support TQM834x"
84
85config TARGET_HRCON
86	bool "Support hrcon"
87	select SYS_FSL_ERRATUM_ESDHC111
88
89config TARGET_STRIDER
90	bool "Support strider"
91	select SYS_FSL_ERRATUM_ESDHC111
92
93endchoice
94
95source "board/esd/vme8349/Kconfig"
96source "board/freescale/mpc8308rdb/Kconfig"
97source "board/freescale/mpc8313erdb/Kconfig"
98source "board/freescale/mpc8315erdb/Kconfig"
99source "board/freescale/mpc8323erdb/Kconfig"
100source "board/freescale/mpc832xemds/Kconfig"
101source "board/freescale/mpc8349emds/Kconfig"
102source "board/freescale/mpc8349itx/Kconfig"
103source "board/freescale/mpc837xemds/Kconfig"
104source "board/freescale/mpc837xerdb/Kconfig"
105source "board/ids/ids8313/Kconfig"
106source "board/keymile/km83xx/Kconfig"
107source "board/mpc8308_p1m/Kconfig"
108source "board/sbc8349/Kconfig"
109source "board/tqc/tqm834x/Kconfig"
110source "board/ve8313/Kconfig"
111source "board/gdsys/mpc8308/Kconfig"
112
113endmenu
114