Kconfig 1.2 KB

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