Kconfig 2.4 KB
Newer Older
1 2
choice
	prompt "Machine Type"
3
	depends on PPC_85xx
4 5 6 7
	default MPC8540_ADS

config MPC8540_ADS
	bool "Freescale MPC8540 ADS"
8
	select DEFAULT_UIMAGE
9
	help
10
	  This option enables support for the MPC 8540 ADS board
11

12 13 14
config MPC8560_ADS
	bool "Freescale MPC8560 ADS"
	select DEFAULT_UIMAGE
15
	select PPC_CPM_NEW_BINDING
16
	select CPM2
17 18 19
	help
	  This option enables support for the MPC 8560 ADS board

A
Andy Fleming 已提交
20 21 22
config MPC85xx_CDS
	bool "Freescale MPC85xx CDS"
	select DEFAULT_UIMAGE
23
	select PPC_I8259
A
Andy Fleming 已提交
24 25 26
	help
	  This option enables support for the MPC85xx CDS board

27 28
config MPC85xx_MDS
	bool "Freescale MPC85xx MDS"
29
	select DEFAULT_UIMAGE
30
	select QUICC_ENGINE
31
	help
32
	  This option enables support for the MPC85xx MDS board
33

34 35
config MPC85xx_DS
	bool "Freescale MPC85xx DS"
36
	select PPC_I8259
37
	select DEFAULT_UIMAGE
38
	select FSL_ULI1575
39
	help
40
	  This option enables support for the MPC85xx DS (MPC8544 DS) board
41

42 43 44 45 46
config STX_GP3
	bool "Silicon Turnkey Express GP3"
	help
	  This option enables support for the Silicon Turnkey Express GP3
	  board.
47
	select CPM2
48 49 50
	select DEFAULT_UIMAGE
	select PPC_CPM_NEW_BINDING

51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
config TQM8540
	bool "TQ Components TQM8540"
	help
	  This option enables support for the TQ Components TQM8540 board.
	select DEFAULT_UIMAGE
	select PPC_CPM_NEW_BINDING
	select TQM85xx

config TQM8541
	bool "TQ Components TQM8541"
	help
	  This option enables support for the TQ Components TQM8541 board.
	select DEFAULT_UIMAGE
	select PPC_CPM_NEW_BINDING
	select TQM85xx
	select CPM2

config TQM8555
	bool "TQ Components TQM8555"
	help
	  This option enables support for the TQ Components TQM8555 board.
	select DEFAULT_UIMAGE
	select PPC_CPM_NEW_BINDING
	select TQM85xx
	select CPM2

config TQM8560
	bool "TQ Components TQM8560"
	help
	  This option enables support for the TQ Components TQM8560 board.
	select DEFAULT_UIMAGE
	select PPC_CPM_NEW_BINDING
	select TQM85xx
	select CPM2

86 87 88
config SBC8560
	bool "Wind River SBC8560"
	select DEFAULT_UIMAGE
89
	select PPC_CPM_NEW_BINDING if CPM2
90 91 92
	help
	  This option enables support for the Wind River SBC8560 board

93 94
endchoice

95 96 97 98
config TQM85xx
	bool
	select MPC85xx

99 100
config MPC8540
	bool
101 102
	select PPC_UDBG_16550
	select PPC_INDIRECT_PCI
A
Andy Fleming 已提交
103
	default y if MPC8540_ADS || MPC85xx_CDS
104

105 106 107
config MPC85xx
	bool
	select PPC_UDBG_16550
108
	select PPC_INDIRECT_PCI if PCI
109
	select MPIC
110
	select FSL_PCI if PCI
111
	select SERIAL_8250_SHARE_IRQ if SERIAL_8250
112
	default y if MPC8540_ADS || MPC85xx_CDS || MPC8560_ADS \
113
		|| MPC85xx_MDS || MPC85xx_DS || STX_GP3 || SBC8560