Kconfig 622 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. select PPC_I8259 if PCI
  15. help
  16. This option enables support for the MPC85xx CDS board
  17. endchoice
  18. config MPC8540
  19. bool
  20. select PPC_UDBG_16550
  21. select PPC_INDIRECT_PCI
  22. default y if MPC8540_ADS || MPC85xx_CDS
  23. config PPC_INDIRECT_PCI_BE
  24. bool
  25. depends on PPC_85xx
  26. default y
  27. config MPIC
  28. bool
  29. default y
  30. endmenu