Kconfig 4.1 KB

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