Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. choice
  2. prompt "Machine Type"
  3. depends on PPC_85xx
  4. default MPC8540_ADS
  5. config MPC8540_ADS
  6. bool "Freescale MPC8540 ADS"
  7. select DEFAULT_UIMAGE
  8. help
  9. This option enables support for the MPC 8540 ADS board
  10. config MPC8560_ADS
  11. bool "Freescale MPC8560 ADS"
  12. select DEFAULT_UIMAGE
  13. help
  14. This option enables support for the MPC 8560 ADS board
  15. config MPC85xx_CDS
  16. bool "Freescale MPC85xx CDS"
  17. select DEFAULT_UIMAGE
  18. help
  19. This option enables support for the MPC85xx CDS board
  20. config MPC85xx_MDS
  21. bool "Freescale MPC85xx MDS"
  22. select DEFAULT_UIMAGE
  23. # select QUICC_ENGINE
  24. help
  25. This option enables support for the MPC85xx MDS board
  26. config MPC8544_DS
  27. bool "Freescale MPC8544 DS"
  28. select DEFAULT_UIMAGE
  29. help
  30. This option enables support for the MPC8544 DS board
  31. endchoice
  32. config MPC8540
  33. bool
  34. select PPC_UDBG_16550
  35. select PPC_INDIRECT_PCI
  36. default y if MPC8540_ADS || MPC85xx_CDS
  37. config MPC8560
  38. bool
  39. select CPM2
  40. default y if MPC8560_ADS
  41. config MPC85xx
  42. bool
  43. select PPC_UDBG_16550
  44. select PPC_INDIRECT_PCI
  45. select PPC_INDIRECT_PCI_BE
  46. select MPIC
  47. select SERIAL_8250_SHARE_IRQ if SERIAL_8250
  48. default y if MPC8540_ADS || MPC85xx_CDS || MPC8560_ADS \
  49. || MPC85xx_MDS || MPC8544_DS