Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. select SERIAL_8250_SHARE_IRQ if SERIAL_8250
  42. default y if MPC8540_ADS || MPC85xx_CDS || MPC8560_ADS || MPC85xx_MDS
  43. config PPC_INDIRECT_PCI_BE
  44. bool
  45. depends on PPC_85xx
  46. default y
  47. config MPIC
  48. bool
  49. default y
  50. config CPM2
  51. bool
  52. depends on MPC8560
  53. default y
  54. help
  55. The CPM2 (Communications Processor Module) is a coprocessor on
  56. embedded CPUs made by Motorola. Selecting this option means that
  57. you wish to build a kernel for a machine with a CPM2 coprocessor
  58. on it.
  59. endmenu