Kconfig 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. help
  15. This option enables support for the MPC 8560 ADS board
  16. config MPC85xx_CDS
  17. bool "Freescale MPC85xx CDS"
  18. select DEFAULT_UIMAGE
  19. select PPC_I8259
  20. help
  21. This option enables support for the MPC85xx CDS board
  22. config MPC85xx_MDS
  23. bool "Freescale MPC85xx MDS"
  24. select DEFAULT_UIMAGE
  25. select QUICC_ENGINE
  26. help
  27. This option enables support for the MPC85xx MDS board
  28. config MPC85xx_DS
  29. bool "Freescale MPC85xx DS"
  30. select PPC_I8259
  31. select DEFAULT_UIMAGE
  32. select FSL_ULI1575
  33. help
  34. This option enables support for the MPC85xx DS (MPC8544 DS) board
  35. config STX_GP3
  36. bool "Silicon Turnkey Express GP3"
  37. help
  38. This option enables support for the Silicon Turnkey Express GP3
  39. board.
  40. select DEFAULT_UIMAGE
  41. select PPC_CPM_NEW_BINDING
  42. config TQM8540
  43. bool "TQ Components TQM8540"
  44. help
  45. This option enables support for the TQ Components TQM8540 board.
  46. select DEFAULT_UIMAGE
  47. select PPC_CPM_NEW_BINDING
  48. select TQM85xx
  49. config TQM8541
  50. bool "TQ Components TQM8541"
  51. help
  52. This option enables support for the TQ Components TQM8541 board.
  53. select DEFAULT_UIMAGE
  54. select PPC_CPM_NEW_BINDING
  55. select TQM85xx
  56. select CPM2
  57. config TQM8555
  58. bool "TQ Components TQM8555"
  59. help
  60. This option enables support for the TQ Components TQM8555 board.
  61. select DEFAULT_UIMAGE
  62. select PPC_CPM_NEW_BINDING
  63. select TQM85xx
  64. select CPM2
  65. config TQM8560
  66. bool "TQ Components TQM8560"
  67. help
  68. This option enables support for the TQ Components TQM8560 board.
  69. select DEFAULT_UIMAGE
  70. select PPC_CPM_NEW_BINDING
  71. select TQM85xx
  72. select CPM2
  73. endchoice
  74. config TQM85xx
  75. bool
  76. select MPC85xx
  77. config MPC8540
  78. bool
  79. select PPC_UDBG_16550
  80. select PPC_INDIRECT_PCI
  81. default y if MPC8540_ADS || MPC85xx_CDS
  82. config MPC8560
  83. bool
  84. select CPM2
  85. default y if MPC8560_ADS || STX_GP3
  86. config MPC85xx
  87. bool
  88. select PPC_UDBG_16550
  89. select PPC_INDIRECT_PCI if PCI
  90. select MPIC
  91. select FSL_PCI if PCI
  92. select SERIAL_8250_SHARE_IRQ if SERIAL_8250
  93. default y if MPC8540_ADS || MPC85xx_CDS || MPC8560_ADS \
  94. || MPC85xx_MDS || MPC85xx_DS || STX_GP3