Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. menu "Platform support"
  2. depends on PPC_83xx
  3. choice
  4. prompt "Machine Type"
  5. default MPC834x_MDS
  6. config MPC8313_RDB
  7. bool "Freescale MPC8313 RDB"
  8. select DEFAULT_UIMAGE
  9. help
  10. This option enables support for the MPC8313 RDB board.
  11. config MPC832x_MDS
  12. bool "Freescale MPC832x MDS"
  13. select DEFAULT_UIMAGE
  14. select QUICC_ENGINE
  15. help
  16. This option enables support for the MPC832x MDS evaluation board.
  17. config MPC832x_RDB
  18. bool "Freescale MPC832x RDB"
  19. select DEFAULT_UIMAGE
  20. select QUICC_ENGINE
  21. help
  22. This option enables support for the MPC8323 RDB board.
  23. config MPC834x_MDS
  24. bool "Freescale MPC834x MDS"
  25. select DEFAULT_UIMAGE
  26. help
  27. This option enables support for the MPC 834x MDS evaluation board.
  28. Be aware that PCI buses can only function when MDS board is plugged
  29. into the PIB (Platform IO Board) board from Freescale which provide
  30. 3 PCI slots. The PIBs PCI initialization is the bootloader's
  31. responsibility.
  32. config MPC834x_ITX
  33. bool "Freescale MPC834x ITX"
  34. select DEFAULT_UIMAGE
  35. help
  36. This option enables support for the MPC 834x ITX evaluation board.
  37. Be aware that PCI initialization is the bootloader's
  38. responsibility.
  39. config MPC836x_MDS
  40. bool "Freescale MPC836x MDS"
  41. select DEFAULT_UIMAGE
  42. select QUICC_ENGINE
  43. help
  44. This option enables support for the MPC836x MDS Processor Board.
  45. endchoice
  46. config PPC_MPC831x
  47. bool
  48. select PPC_UDBG_16550
  49. select PPC_INDIRECT_PCI
  50. default y if MPC8313_RDB
  51. config PPC_MPC832x
  52. bool
  53. select PPC_UDBG_16550
  54. select PPC_INDIRECT_PCI
  55. default y if MPC832x_MDS || MPC832x_RDB
  56. config MPC834x
  57. bool
  58. select PPC_UDBG_16550
  59. select PPC_INDIRECT_PCI
  60. default y if MPC834x_MDS || MPC834x_ITX
  61. config PPC_MPC836x
  62. bool
  63. select PPC_UDBG_16550
  64. select PPC_INDIRECT_PCI
  65. default y if MPC836x_MDS
  66. endmenu