Kconfig 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. config CPM1
  2. bool
  3. select CPM
  4. choice
  5. prompt "8xx Machine Type"
  6. depends on PPC_8xx
  7. depends on 8xx
  8. default MPC885ADS
  9. config MPC8XXFADS
  10. bool "FADS"
  11. config MPC86XADS
  12. bool "MPC86XADS"
  13. select CPM1
  14. help
  15. MPC86x Application Development System by Freescale Semiconductor.
  16. The MPC86xADS is meant to serve as a platform for s/w and h/w
  17. development around the MPC86X processor families.
  18. config MPC885ADS
  19. bool "MPC885ADS"
  20. select CPM1
  21. select OF_DYNAMIC
  22. help
  23. Freescale Semiconductor MPC885 Application Development System (ADS).
  24. Also known as DUET.
  25. The MPC885ADS is meant to serve as a platform for s/w and h/w
  26. development around the MPC885 processor family.
  27. config PPC_EP88XC
  28. bool "Embedded Planet EP88xC (a.k.a. CWH-PPC-885XN-VE)"
  29. select CPM1
  30. help
  31. This enables support for the Embedded Planet EP88xC board.
  32. This board is also resold by Freescale as the QUICCStart
  33. MPC885 Evaluation System and/or the CWH-PPC-885XN-VE.
  34. config PPC_ADDER875
  35. bool "Analogue & Micro Adder 875"
  36. select CPM1
  37. help
  38. This enables support for the Analogue & Micro Adder 875
  39. board.
  40. config TQM8XX
  41. bool "TQM8XX"
  42. select CPM1
  43. help
  44. support for the mpc8xx based boards from TQM.
  45. endchoice
  46. menu "Freescale Ethernet driver platform-specific options"
  47. depends on (FS_ENET && MPC885ADS)
  48. config MPC8xx_SECOND_ETH
  49. bool "Second Ethernet channel"
  50. depends on MPC885ADS
  51. default y
  52. help
  53. This enables support for second Ethernet on MPC885ADS and MPC86xADS boards.
  54. The latter will use SCC1, for 885ADS you can select it below.
  55. choice
  56. prompt "Second Ethernet channel"
  57. depends on MPC8xx_SECOND_ETH
  58. default MPC8xx_SECOND_ETH_FEC2
  59. config MPC8xx_SECOND_ETH_FEC2
  60. bool "FEC2"
  61. depends on MPC885ADS
  62. help
  63. Enable FEC2 to serve as 2-nd Ethernet channel. Note that SMC2
  64. (often 2-nd UART) will not work if this is enabled.
  65. config MPC8xx_SECOND_ETH_SCC3
  66. bool "SCC3"
  67. depends on MPC885ADS
  68. help
  69. Enable SCC3 to serve as 2-nd Ethernet channel. Note that SMC1
  70. (often 1-nd UART) will not work if this is enabled.
  71. endchoice
  72. endmenu
  73. #
  74. # MPC8xx Communication options
  75. #
  76. menu "MPC8xx CPM Options"
  77. depends on 8xx
  78. # This doesn't really belong here, but it is convenient to ask
  79. # 8xx specific questions.
  80. comment "Generic MPC8xx Options"
  81. config 8xx_COPYBACK
  82. bool "Copy-Back Data Cache (else Writethrough)"
  83. help
  84. Saying Y here will cause the cache on an MPC8xx processor to be used
  85. in Copy-Back mode. If you say N here, it is used in Writethrough
  86. mode.
  87. If in doubt, say Y here.
  88. config 8xx_GPIO
  89. bool "GPIO API Support"
  90. select ARCH_REQUIRE_GPIOLIB
  91. help
  92. Saying Y here will cause the ports on an MPC8xx processor to be used
  93. with the GPIO API. If you say N here, the kernel needs less memory.
  94. If in doubt, say Y here.
  95. config 8xx_CPU6
  96. bool "CPU6 Silicon Errata (860 Pre Rev. C)"
  97. help
  98. MPC860 CPUs, prior to Rev C have some bugs in the silicon, which
  99. require workarounds for Linux (and most other OSes to work). If you
  100. get a BUG() very early in boot, this might fix the problem. For
  101. more details read the document entitled "MPC860 Family Device Errata
  102. Reference" on Freescale's website. This option also incurs a
  103. performance hit.
  104. If in doubt, say N here.
  105. config 8xx_CPU15
  106. bool "CPU15 Silicon Errata"
  107. default y
  108. help
  109. This enables a workaround for erratum CPU15 on MPC8xx chips.
  110. This bug can cause incorrect code execution under certain
  111. circumstances. This workaround adds some overhead (a TLB miss
  112. every time execution crosses a page boundary), and you may wish
  113. to disable it if you have worked around the bug in the compiler
  114. (by not placing conditional branches or branches to LR or CTR
  115. in the last word of a page, with a target of the last cache
  116. line in the next page), or if you have used some other
  117. workaround.
  118. If in doubt, say Y here.
  119. choice
  120. prompt "Microcode patch selection"
  121. default NO_UCODE_PATCH
  122. help
  123. Help not implemented yet, coming soon.
  124. config NO_UCODE_PATCH
  125. bool "None"
  126. config USB_SOF_UCODE_PATCH
  127. bool "USB SOF patch"
  128. help
  129. Help not implemented yet, coming soon.
  130. config I2C_SPI_UCODE_PATCH
  131. bool "I2C/SPI relocation patch"
  132. help
  133. Help not implemented yet, coming soon.
  134. config I2C_SPI_SMC1_UCODE_PATCH
  135. bool "I2C/SPI/SMC1 relocation patch"
  136. help
  137. Help not implemented yet, coming soon.
  138. endchoice
  139. config UCODE_PATCH
  140. bool
  141. default y
  142. depends on !NO_UCODE_PATCH
  143. endmenu