Kconfig 1.7 KB

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