Kconfig 597 B

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "Platform support"
  2. depends on PPC_85xx
  3. choice
  4. prompt "Machine Type"
  5. default MPC8540_ADS
  6. config MPC8540_ADS
  7. bool "Freescale MPC8540 ADS"
  8. select DEFAULT_UIMAGE
  9. help
  10. This option enables support for the MPC 8540 ADS board
  11. config MPC85xx_CDS
  12. bool "Freescale MPC85xx CDS"
  13. select DEFAULT_UIMAGE
  14. help
  15. This option enables support for the MPC85xx CDS board
  16. endchoice
  17. config MPC8540
  18. bool
  19. select PPC_UDBG_16550
  20. select PPC_INDIRECT_PCI
  21. default y if MPC8540_ADS || MPC85xx_CDS
  22. config PPC_INDIRECT_PCI_BE
  23. bool
  24. depends on PPC_85xx
  25. default y
  26. config MPIC
  27. bool
  28. default y
  29. endmenu