Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. menu "Platform support"
  2. depends on PPC_85xx
  3. choice
  4. prompt "Machine Type"
  5. default MPC8540_ADS
  6. config MPC8540_ADS
  7. bool "Freescale MPC8540 ADS"
  8. select DEFAULT_UIMAGE
  9. help
  10. This option enables support for the MPC 8540 ADS board
  11. config MPC8560_ADS
  12. bool "Freescale MPC8560 ADS"
  13. select DEFAULT_UIMAGE
  14. help
  15. This option enables support for the MPC 8560 ADS board
  16. config MPC85xx_CDS
  17. bool "Freescale MPC85xx CDS"
  18. select DEFAULT_UIMAGE
  19. help
  20. This option enables support for the MPC85xx CDS board
  21. endchoice
  22. config MPC8540
  23. bool
  24. select PPC_UDBG_16550
  25. select PPC_INDIRECT_PCI
  26. default y if MPC8540_ADS || MPC85xx_CDS
  27. config MPC8560
  28. bool
  29. select PPC_INDIRECT_PCI
  30. default y if MPC8560_ADS
  31. config PPC_INDIRECT_PCI_BE
  32. bool
  33. depends on PPC_85xx
  34. default y
  35. config MPIC
  36. bool
  37. default y
  38. config CPM2
  39. bool
  40. depends on MPC8560
  41. default y
  42. help
  43. The CPM2 (Communications Processor Module) is a coprocessor on
  44. embedded CPUs made by Motorola. Selecting this option means that
  45. you wish to build a kernel for a machine with a CPM2 coprocessor
  46. on it.
  47. endmenu