Kconfig 2.3 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 17 18
	help
	  This option enables support for the MPC 8560 ADS board

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

26 27
config MPC85xx_MDS
	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

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

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

49 50 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
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

84 85
endchoice

86 87 88 89
config TQM85xx
	bool
	select MPC85xx

90 91
config MPC8540
	bool
92 93
	select PPC_UDBG_16550
	select PPC_INDIRECT_PCI
A
Andy Fleming 已提交
94
	default y if MPC8540_ADS || MPC85xx_CDS
95

96 97
config MPC8560
	bool
98
	select CPM2
99
	default y if MPC8560_ADS || STX_GP3
100

101 102 103
config MPC85xx
	bool
	select PPC_UDBG_16550
104
	select PPC_INDIRECT_PCI if PCI
105
	select MPIC
106
	select FSL_PCI if PCI
107
	select SERIAL_8250_SHARE_IRQ if SERIAL_8250
108
	default y if MPC8540_ADS || MPC85xx_CDS || MPC8560_ADS \
109
		|| MPC85xx_MDS || MPC85xx_DS || STX_GP3