Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. select PPC_I8259
  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 PPC_I8259
  30. select DEFAULT_UIMAGE
  31. select FSL_ULI1575
  32. help
  33. This option enables support for the MPC8544 DS board
  34. endchoice
  35. config MPC8540
  36. bool
  37. select PPC_UDBG_16550
  38. select PPC_INDIRECT_PCI
  39. default y if MPC8540_ADS || MPC85xx_CDS
  40. config MPC8560
  41. bool
  42. select CPM2
  43. default y if MPC8560_ADS
  44. config MPC85xx
  45. bool
  46. select PPC_UDBG_16550
  47. select PPC_INDIRECT_PCI if PCI
  48. select MPIC
  49. select FSL_PCI if PCI
  50. select SERIAL_8250_SHARE_IRQ if SERIAL_8250
  51. default y if MPC8540_ADS || MPC85xx_CDS || MPC8560_ADS \
  52. || MPC85xx_MDS || MPC8544_DS