Kconfig 1.5 KB

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