blob: 333779ee5f1e1b7029313ee38096e37128ef3085 [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001choice
2 prompt "Machine Type"
Kumar Galadb947802007-04-12 17:44:07 -05003 depends on PPC_85xx
Paul Mackerras14cf11a2005-09-26 16:04:21 +10004 default MPC8540_ADS
5
6config MPC8540_ADS
7 bool "Freescale MPC8540 ADS"
Kumar Gala9cf8ca32006-03-27 23:44:37 -06008 select DEFAULT_UIMAGE
Paul Mackerras14cf11a2005-09-26 16:04:21 +10009 help
Becky Bruce63dafe52006-01-14 16:57:39 -060010 This option enables support for the MPC 8540 ADS board
Paul Mackerras14cf11a2005-09-26 16:04:21 +100011
Vitaly Bordug902f3922006-09-21 22:31:26 +040012config MPC8560_ADS
13 bool "Freescale MPC8560 ADS"
14 select DEFAULT_UIMAGE
Scott Wood8abc8f52007-10-08 16:08:51 -050015 select PPC_CPM_NEW_BINDING
Paul Gortmakerb8b3caf2008-01-24 18:41:25 -050016 select CPM2
Vitaly Bordug902f3922006-09-21 22:31:26 +040017 help
18 This option enables support for the MPC 8560 ADS board
19
Andy Fleming591f0a42006-04-02 17:42:40 -050020config MPC85xx_CDS
21 bool "Freescale MPC85xx CDS"
22 select DEFAULT_UIMAGE
Randy Vinson3620fc12007-06-06 16:26:15 -070023 select PPC_I8259
Andy Fleming591f0a42006-04-02 17:42:40 -050024 help
25 This option enables support for the MPC85xx CDS board
26
Kumar Gala23f510b2007-02-17 16:29:36 -060027config MPC85xx_MDS
28 bool "Freescale MPC85xx MDS"
Andy Flemingc2882bb2007-02-09 17:28:31 -060029 select DEFAULT_UIMAGE
Anton Vorontsov55f9ed02007-10-05 21:47:38 +040030 select QUICC_ENGINE
Andy Flemingc2882bb2007-02-09 17:28:31 -060031 help
Kumar Gala23f510b2007-02-17 16:29:36 -060032 This option enables support for the MPC85xx MDS board
Andy Flemingc2882bb2007-02-09 17:28:31 -060033
Kumar Gala16d24062007-08-17 09:22:09 -050034config MPC85xx_DS
35 bool "Freescale MPC85xx DS"
Roy Zangf16dab92007-07-13 18:05:08 +080036 select PPC_I8259
Jon Loeligerd93daf82007-03-20 11:19:10 -050037 select DEFAULT_UIMAGE
Kumar Galab66510c2007-08-16 23:55:55 -050038 select FSL_ULI1575
Jon Loeligerd93daf82007-03-20 11:19:10 -050039 help
Kumar Gala16d24062007-08-17 09:22:09 -050040 This option enables support for the MPC85xx DS (MPC8544 DS) board
Jon Loeligerd93daf82007-03-20 11:19:10 -050041
Kumar Gala77e03a22008-01-23 23:42:44 -060042config STX_GP3
43 bool "Silicon Turnkey Express GP3"
44 help
45 This option enables support for the Silicon Turnkey Express GP3
46 board.
Paul Gortmakerb8b3caf2008-01-24 18:41:25 -050047 select CPM2
Kumar Gala77e03a22008-01-23 23:42:44 -060048 select DEFAULT_UIMAGE
49 select PPC_CPM_NEW_BINDING
50
Kumar Gala0052bc52008-01-24 23:53:03 -060051config TQM8540
52 bool "TQ Components TQM8540"
53 help
54 This option enables support for the TQ Components TQM8540 board.
55 select DEFAULT_UIMAGE
56 select PPC_CPM_NEW_BINDING
57 select TQM85xx
58
59config TQM8541
60 bool "TQ Components TQM8541"
61 help
62 This option enables support for the TQ Components TQM8541 board.
63 select DEFAULT_UIMAGE
64 select PPC_CPM_NEW_BINDING
65 select TQM85xx
66 select CPM2
67
68config TQM8555
69 bool "TQ Components TQM8555"
70 help
71 This option enables support for the TQ Components TQM8555 board.
72 select DEFAULT_UIMAGE
73 select PPC_CPM_NEW_BINDING
74 select TQM85xx
75 select CPM2
76
77config TQM8560
78 bool "TQ Components TQM8560"
79 help
80 This option enables support for the TQ Components TQM8560 board.
81 select DEFAULT_UIMAGE
82 select PPC_CPM_NEW_BINDING
83 select TQM85xx
84 select CPM2
85
Paul Gortmaker2c198062008-01-24 18:41:23 -050086config SBC8560
87 bool "Wind River SBC8560"
88 select DEFAULT_UIMAGE
Paul Gortmakerb8b3caf2008-01-24 18:41:25 -050089 select PPC_CPM_NEW_BINDING if CPM2
Paul Gortmaker2c198062008-01-24 18:41:23 -050090 help
91 This option enables support for the Wind River SBC8560 board
92
Paul Mackerras14cf11a2005-09-26 16:04:21 +100093endchoice
94
Kumar Gala0052bc52008-01-24 23:53:03 -060095config TQM85xx
96 bool
97 select MPC85xx
98
Paul Mackerras14cf11a2005-09-26 16:04:21 +100099config MPC8540
100 bool
Becky Bruce63dafe52006-01-14 16:57:39 -0600101 select PPC_UDBG_16550
102 select PPC_INDIRECT_PCI
Andy Fleming591f0a42006-04-02 17:42:40 -0500103 default y if MPC8540_ADS || MPC85xx_CDS
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000104
Andy Flemingc2882bb2007-02-09 17:28:31 -0600105config MPC85xx
106 bool
107 select PPC_UDBG_16550
Roy Zang3f6c5da2007-07-10 18:47:06 +0800108 select PPC_INDIRECT_PCI if PCI
Kumar Galadb947802007-04-12 17:44:07 -0500109 select MPIC
Roy Zang3f6c5da2007-07-10 18:47:06 +0800110 select FSL_PCI if PCI
Kumar Galaf194bda2007-03-07 23:14:57 -0600111 select SERIAL_8250_SHARE_IRQ if SERIAL_8250
Jon Loeligerd93daf82007-03-20 11:19:10 -0500112 default y if MPC8540_ADS || MPC85xx_CDS || MPC8560_ADS \
Paul Gortmaker2c198062008-01-24 18:41:23 -0500113 || MPC85xx_MDS || MPC85xx_DS || STX_GP3 || SBC8560