Kconfig 1.2 KB

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