Kconfig 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. select PPC_CPM_NEW_BINDING
  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. select PPC_I8259
  20. help
  21. This option enables support for the MPC85xx CDS board
  22. config MPC85xx_MDS
  23. bool "Freescale MPC85xx MDS"
  24. select DEFAULT_UIMAGE
  25. select QUICC_ENGINE
  26. help
  27. This option enables support for the MPC85xx MDS board
  28. config MPC85xx_DS
  29. bool "Freescale MPC85xx DS"
  30. select PPC_I8259
  31. select DEFAULT_UIMAGE
  32. select FSL_ULI1575
  33. help
  34. This option enables support for the MPC85xx DS (MPC8544 DS) board
  35. endchoice
  36. config MPC8540
  37. bool
  38. select PPC_UDBG_16550
  39. select PPC_INDIRECT_PCI
  40. default y if MPC8540_ADS || MPC85xx_CDS
  41. config MPC8560
  42. bool
  43. select CPM2
  44. default y if MPC8560_ADS
  45. config MPC85xx
  46. bool
  47. select PPC_UDBG_16550
  48. select PPC_INDIRECT_PCI if PCI
  49. select MPIC
  50. select FSL_PCI if PCI
  51. select SERIAL_8250_SHARE_IRQ if SERIAL_8250
  52. default y if MPC8540_ADS || MPC85xx_CDS || MPC8560_ADS \
  53. || MPC85xx_MDS || MPC85xx_DS