Kconfig 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. choice
  2. prompt "Machine Type"
  3. depends on PPC_85xx
  4. default MPC8540_ADS
  5. config MPC8540_ADS
  6. bool "Freescale MPC8540 ADS"
  7. select DEFAULT_UIMAGE
  8. help
  9. This option enables support for the MPC 8540 ADS board
  10. config MPC8560_ADS
  11. bool "Freescale MPC8560 ADS"
  12. select DEFAULT_UIMAGE
  13. select PPC_CPM_NEW_BINDING
  14. select CPM2
  15. help
  16. This option enables support for the MPC 8560 ADS board
  17. config MPC85xx_CDS
  18. bool "Freescale MPC85xx CDS"
  19. select DEFAULT_UIMAGE
  20. select PPC_I8259
  21. help
  22. This option enables support for the MPC85xx CDS board
  23. config MPC85xx_MDS
  24. bool "Freescale MPC85xx MDS"
  25. select DEFAULT_UIMAGE
  26. select QUICC_ENGINE
  27. help
  28. This option enables support for the MPC85xx MDS board
  29. config MPC85xx_DS
  30. bool "Freescale MPC85xx DS"
  31. select PPC_I8259
  32. select DEFAULT_UIMAGE
  33. select FSL_ULI1575
  34. help
  35. This option enables support for the MPC85xx DS (MPC8544 DS) 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. select CPM2
  42. select DEFAULT_UIMAGE
  43. select PPC_CPM_NEW_BINDING
  44. config TQM8540
  45. bool "TQ Components TQM8540"
  46. help
  47. This option enables support for the TQ Components TQM8540 board.
  48. select DEFAULT_UIMAGE
  49. select PPC_CPM_NEW_BINDING
  50. select TQM85xx
  51. config TQM8541
  52. bool "TQ Components TQM8541"
  53. help
  54. This option enables support for the TQ Components TQM8541 board.
  55. select DEFAULT_UIMAGE
  56. select PPC_CPM_NEW_BINDING
  57. select TQM85xx
  58. select CPM2
  59. config TQM8555
  60. bool "TQ Components TQM8555"
  61. help
  62. This option enables support for the TQ Components TQM8555 board.
  63. select DEFAULT_UIMAGE
  64. select PPC_CPM_NEW_BINDING
  65. select TQM85xx
  66. select CPM2
  67. config TQM8560
  68. bool "TQ Components TQM8560"
  69. help
  70. This option enables support for the TQ Components TQM8560 board.
  71. select DEFAULT_UIMAGE
  72. select PPC_CPM_NEW_BINDING
  73. select TQM85xx
  74. select CPM2
  75. config SBC8560
  76. bool "Wind River SBC8560"
  77. select DEFAULT_UIMAGE
  78. select PPC_CPM_NEW_BINDING if CPM2
  79. help
  80. This option enables support for the Wind River SBC8560 board
  81. endchoice
  82. config TQM85xx
  83. bool
  84. select MPC85xx
  85. config MPC8540
  86. bool
  87. select PPC_UDBG_16550
  88. select PPC_INDIRECT_PCI
  89. default y if MPC8540_ADS || MPC85xx_CDS
  90. config MPC85xx
  91. bool
  92. select PPC_UDBG_16550
  93. select PPC_INDIRECT_PCI if PCI
  94. select MPIC
  95. select FSL_PCI if PCI
  96. select SERIAL_8250_SHARE_IRQ if SERIAL_8250
  97. default y if MPC8540_ADS || MPC85xx_CDS || MPC8560_ADS \
  98. || MPC85xx_MDS || MPC85xx_DS || STX_GP3 || SBC8560