Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. config 85xx
  2. bool
  3. depends on E500
  4. default y
  5. config PPC_INDIRECT_PCI_BE
  6. bool
  7. depends on 85xx
  8. default y
  9. menu "Freescale 85xx options"
  10. depends on E500
  11. choice
  12. prompt "Machine Type"
  13. depends on 85xx
  14. default MPC8540_ADS
  15. config MPC8540_ADS
  16. bool "Freescale MPC8540 ADS"
  17. help
  18. This option enables support for the MPC 8540 ADS evaluation board.
  19. config MPC8548_CDS
  20. bool "Freescale MPC8548 CDS"
  21. help
  22. This option enablese support for the MPC8548 CDS evaluation board.
  23. config MPC8555_CDS
  24. bool "Freescale MPC8555 CDS"
  25. help
  26. This option enablese support for the MPC8555 CDS evaluation board.
  27. config MPC8560_ADS
  28. bool "Freescale MPC8560 ADS"
  29. help
  30. This option enables support for the MPC 8560 ADS evaluation board.
  31. config SBC8560
  32. bool "WindRiver PowerQUICC III SBC8560"
  33. help
  34. This option enables support for the WindRiver PowerQUICC III
  35. SBC8560 board.
  36. config STX_GP3
  37. bool "Silicon Turnkey Express GP3"
  38. help
  39. This option enables support for the Silicon Turnkey Express GP3
  40. board.
  41. endchoice
  42. # It's often necessary to know the specific 85xx processor type.
  43. # Fortunately, it is implied (so far) from the board type, so we
  44. # don't need to ask more redundant questions.
  45. config MPC8540
  46. bool
  47. depends on MPC8540_ADS
  48. default y
  49. config MPC8548
  50. bool
  51. depends on MPC8548_CDS
  52. default y
  53. config MPC8555
  54. bool
  55. depends on MPC8555_CDS
  56. default y
  57. config MPC8560
  58. bool
  59. depends on SBC8560 || MPC8560_ADS || STX_GP3
  60. default y
  61. config 85xx_PCI2
  62. bool "Supprt for 2nd PCI host controller"
  63. depends on MPC8555_CDS
  64. default y
  65. config PPC_GEN550
  66. bool
  67. depends on MPC8540 || SBC8560 || MPC8555
  68. default y
  69. endmenu