xref: /linux/arch/powerpc/platforms/85xx/Kconfig (revision c537b994505099b7197e7d3125b942ecbcc51eb6)
1menu "Platform support"
2	depends on PPC_85xx
3
4choice
5	prompt "Machine Type"
6	default MPC8540_ADS
7
8config MPC8540_ADS
9	bool "Freescale MPC8540 ADS"
10	select DEFAULT_UIMAGE
11	help
12	  This option enables support for the MPC 8540 ADS board
13
14config MPC8560_ADS
15	bool "Freescale MPC8560 ADS"
16	select DEFAULT_UIMAGE
17	help
18	  This option enables support for the MPC 8560 ADS board
19
20config MPC85xx_CDS
21	bool "Freescale MPC85xx CDS"
22	select DEFAULT_UIMAGE
23	help
24	  This option enables support for the MPC85xx CDS board
25
26config MPC85xx_MDS
27	bool "Freescale MPC85xx MDS"
28	select DEFAULT_UIMAGE
29#	select QUICC_ENGINE
30	help
31	  This option enables support for the MPC85xx MDS board
32
33endchoice
34
35config MPC8540
36	bool
37	select PPC_UDBG_16550
38	select PPC_INDIRECT_PCI
39	default y if MPC8540_ADS || MPC85xx_CDS
40
41config MPC8560
42	bool
43	select PPC_INDIRECT_PCI
44	default y if MPC8560_ADS
45
46config MPC85xx
47	bool
48	select PPC_UDBG_16550
49	select PPC_INDIRECT_PCI
50	select SERIAL_8250_SHARE_IRQ if SERIAL_8250
51	default y if MPC8540_ADS || MPC85xx_CDS || MPC8560_ADS || MPC85xx_MDS
52
53config PPC_INDIRECT_PCI_BE
54	bool
55	depends on PPC_85xx
56	default y
57
58config MPIC
59	bool
60	default y
61
62config CPM2
63	bool
64	depends on MPC8560
65	default y
66	help
67	  The CPM2 (Communications Processor Module) is a coprocessor on
68	  embedded CPUs made by Motorola.  Selecting this option means that
69	  you wish to build a kernel for a machine with a CPM2 coprocessor
70	  on it.
71
72endmenu
73