Kconfig 1.2 KB

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