Kconfig 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. choice
  2. prompt "83xx Board Type"
  3. depends on PPC_83xx
  4. default MPC834x_MDS
  5. config MPC831x_RDB
  6. bool "Freescale MPC831x 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. config MPC837x_MDS
  45. bool "Freescale MPC837x MDS"
  46. select DEFAULT_UIMAGE
  47. help
  48. This option enables support for the MPC837x MDS Processor Board.
  49. config SBC834x
  50. bool "Wind River SBC834x"
  51. select DEFAULT_UIMAGE
  52. help
  53. This option enables support for the Wind River SBC834x board.
  54. endchoice
  55. config PPC_MPC831x
  56. bool
  57. select PPC_UDBG_16550
  58. select PPC_INDIRECT_PCI
  59. default y if MPC831x_RDB
  60. config PPC_MPC832x
  61. bool
  62. select PPC_UDBG_16550
  63. select PPC_INDIRECT_PCI
  64. default y if MPC832x_MDS || MPC832x_RDB
  65. config MPC834x
  66. bool
  67. select PPC_UDBG_16550
  68. select PPC_INDIRECT_PCI
  69. default y if MPC834x_MDS || MPC834x_ITX || SBC834x
  70. config PPC_MPC836x
  71. bool
  72. select PPC_UDBG_16550
  73. select PPC_INDIRECT_PCI
  74. default y if MPC836x_MDS
  75. config PPC_MPC837x
  76. bool
  77. select PPC_UDBG_16550
  78. select PPC_INDIRECT_PCI
  79. default y if MPC837x_MDS