1menu "Platform support" 2 depends on PPC_82xx 3 4choice 5 prompt "Machine Type" 6 default MPC82xx_ADS 7 8config MPC82xx_ADS 9 bool "Freescale MPC82xx ADS" 10 select DEFAULT_UIMAGE 11 select PQ2ADS 12 select 8272 13 select 8260 14 select CPM2 15 select FSL_SOC 16 help 17 This option enables support for the MPC8272 ADS board 18 19endchoice 20 21config PQ2ADS 22 bool 23 depends on ADS8272 24 default y 25 26config ADS8272 27 bool 28 29config 8260 30 bool "CPM2 Support" if WILLOW 31 depends on 6xx 32 default y if PQ2FADS 33 help 34 The MPC8260 is a typical embedded CPU made by Motorola. Selecting 35 this option means that you wish to build a kernel for a machine with 36 an 8260 class CPU. 37 38config 8272 39 bool 40 depends on 6xx 41 default y if ADS8272 42 select 8260 43 help 44 The MPC8272 CPM has a different internal dpram setup than other CPM2 45 devices 46 47config CPM2 48 bool 49 depends on 8260 || MPC8560 || MPC8555 50 default y 51 help 52 The CPM2 (Communications Processor Module) is a coprocessor on 53 embedded CPUs made by Motorola. Selecting this option means that 54 you wish to build a kernel for a machine with a CPM2 coprocessor 55 on it (826x, 827x, 8560). 56endmenu 57