xref: /rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/Kconfig (revision ca620cd149f616950a647ea1e7c428d5e2df3efa)
1menu "mpc8xx CPU"
2	depends on 8xx
3
4config SYS_CPU
5	default "mpc8xx"
6
7choice
8	prompt "Target select"
9
10config TARGET_COGENT_MPC8XX
11	bool "Support cogent_mpc8xx"
12
13config TARGET_ESTEEM192E
14	bool "Support ESTEEM192E"
15
16config TARGET_IP860
17	bool "Support IP860"
18
19config TARGET_TQM823L
20	bool "Support TQM823L"
21
22config TARGET_TQM823M
23	bool "Support TQM823M"
24
25config TARGET_TQM850L
26	bool "Support TQM850L"
27
28config TARGET_TQM850M
29	bool "Support TQM850M"
30
31config TARGET_TQM855L
32	bool "Support TQM855L"
33
34config TARGET_TQM855M
35	bool "Support TQM855M"
36
37config TARGET_TQM860L
38	bool "Support TQM860L"
39
40config TARGET_TQM860M
41	bool "Support TQM860M"
42
43config TARGET_TQM862L
44	bool "Support TQM862L"
45
46config TARGET_TQM862M
47	bool "Support TQM862M"
48
49config TARGET_TQM866M
50	bool "Support TQM866M"
51
52config TARGET_TQM885D
53	bool "Support TQM885D"
54
55endchoice
56
57source "board/cogent/Kconfig"
58source "board/esteem192e/Kconfig"
59source "board/ip860/Kconfig"
60source "board/tqc/tqm8xx/Kconfig"
61
62endmenu
63