Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. menu "Platform support"
  2. depends on PPC_83xx
  3. choice
  4. prompt "Machine Type"
  5. default MPC834x_SYS
  6. config MPC832x_MDS
  7. bool "Freescale MPC832x MDS"
  8. select DEFAULT_UIMAGE
  9. select QUICC_ENGINE
  10. help
  11. This option enables support for the MPC832x MDS evaluation board.
  12. config MPC834x_SYS
  13. bool "Freescale MPC834x SYS"
  14. select DEFAULT_UIMAGE
  15. help
  16. This option enables support for the MPC 834x SYS evaluation board.
  17. Be aware that PCI buses can only function when SYS board is plugged
  18. into the PIB (Platform IO Board) board from Freescale which provide
  19. 3 PCI slots. The PIBs PCI initialization is the bootloader's
  20. responsiblilty.
  21. config MPC834x_ITX
  22. bool "Freescale MPC834x ITX"
  23. select DEFAULT_UIMAGE
  24. help
  25. This option enables support for the MPC 834x ITX evaluation board.
  26. Be aware that PCI initialization is the bootloader's
  27. responsiblilty.
  28. endchoice
  29. config PPC_MPC832x
  30. bool
  31. select PPC_UDBG_16550
  32. select PPC_INDIRECT_PCI
  33. default y if MPC832x_MDS
  34. config MPC834x
  35. bool
  36. select PPC_UDBG_16550
  37. select PPC_INDIRECT_PCI
  38. default y if MPC834x_SYS || MPC834x_ITX
  39. endmenu