Kconfig 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. config MPC85xx_MDS
  22. bool "Freescale MPC85xx MDS"
  23. select DEFAULT_UIMAGE
  24. # select QUICC_ENGINE
  25. help
  26. This option enables support for the MPC85xx MDS board
  27. endchoice
  28. config MPC8540
  29. bool
  30. select PPC_UDBG_16550
  31. select PPC_INDIRECT_PCI
  32. default y if MPC8540_ADS || MPC85xx_CDS
  33. config MPC8560
  34. bool
  35. select PPC_INDIRECT_PCI
  36. default y if MPC8560_ADS
  37. config MPC85xx
  38. bool
  39. select PPC_UDBG_16550
  40. select PPC_INDIRECT_PCI
  41. default y if MPC8540_ADS || MPC85xx_CDS || MPC8560_ADS || MPC85xx_MDS
  42. config PPC_INDIRECT_PCI_BE
  43. bool
  44. depends on PPC_85xx
  45. default y
  46. config MPIC
  47. bool
  48. default y
  49. config CPM2
  50. bool
  51. depends on MPC8560
  52. default y
  53. help
  54. The CPM2 (Communications Processor Module) is a coprocessor on
  55. embedded CPUs made by Motorola. Selecting this option means that
  56. you wish to build a kernel for a machine with a CPM2 coprocessor
  57. on it.
  58. endmenu