Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. config FADS
  2. bool
  3. config CPM1
  4. bool
  5. choice
  6. prompt "8xx Machine Type"
  7. depends on PPC_8xx
  8. depends on 8xx
  9. default MPC885ADS
  10. config MPC8XXFADS
  11. bool "FADS"
  12. select FADS
  13. config MPC86XADS
  14. bool "MPC86XADS"
  15. select CPM1
  16. help
  17. MPC86x Application Development System by Freescale Semiconductor.
  18. The MPC86xADS is meant to serve as a platform for s/w and h/w
  19. development around the MPC86X processor families.
  20. config MPC885ADS
  21. bool "MPC885ADS"
  22. select CPM1
  23. help
  24. Freescale Semiconductor MPC885 Application Development System (ADS).
  25. Also known as DUET.
  26. The MPC885ADS is meant to serve as a platform for s/w and h/w
  27. development around the MPC885 processor family.
  28. endchoice
  29. menu "Freescale Ethernet driver platform-specific options"
  30. depends on (FS_ENET && MPC885ADS)
  31. config MPC8xx_SECOND_ETH
  32. bool "Second Ethernet channel"
  33. depends on MPC885ADS
  34. default y
  35. help
  36. This enables support for second Ethernet on MPC885ADS and MPC86xADS boards.
  37. The latter will use SCC1, for 885ADS you can select it below.
  38. choice
  39. prompt "Second Ethernet channel"
  40. depends on MPC8xx_SECOND_ETH
  41. default MPC8xx_SECOND_ETH_FEC2
  42. config MPC8xx_SECOND_ETH_FEC2
  43. bool "FEC2"
  44. depends on MPC885ADS
  45. help
  46. Enable FEC2 to serve as 2-nd Ethernet channel. Note that SMC2
  47. (often 2-nd UART) will not work if this is enabled.
  48. config MPC8xx_SECOND_ETH_SCC3
  49. bool "SCC3"
  50. depends on MPC885ADS
  51. help
  52. Enable SCC3 to serve as 2-nd Ethernet channel. Note that SMC1
  53. (often 1-nd UART) will not work if this is enabled.
  54. endchoice
  55. endmenu
  56. #
  57. # MPC8xx Communication options
  58. #
  59. menu "MPC8xx CPM Options"
  60. depends on 8xx
  61. # This doesn't really belong here, but it is convenient to ask
  62. # 8xx specific questions.
  63. comment "Generic MPC8xx Options"
  64. config 8xx_COPYBACK
  65. bool "Copy-Back Data Cache (else Writethrough)"
  66. help
  67. Saying Y here will cause the cache on an MPC8xx processor to be used
  68. in Copy-Back mode. If you say N here, it is used in Writethrough
  69. mode.
  70. If in doubt, say Y here.
  71. config 8xx_CPU6
  72. bool "CPU6 Silicon Errata (860 Pre Rev. C)"
  73. help
  74. MPC860 CPUs, prior to Rev C have some bugs in the silicon, which
  75. require workarounds for Linux (and most other OSes to work). If you
  76. get a BUG() very early in boot, this might fix the problem. For
  77. more details read the document entitled "MPC860 Family Device Errata
  78. Reference" on Freescale's website. This option also incurs a
  79. performance hit.
  80. If in doubt, say N here.
  81. choice
  82. prompt "Microcode patch selection"
  83. default NO_UCODE_PATCH
  84. help
  85. Help not implemented yet, coming soon.
  86. config NO_UCODE_PATCH
  87. bool "None"
  88. config USB_SOF_UCODE_PATCH
  89. bool "USB SOF patch"
  90. help
  91. Help not implemented yet, coming soon.
  92. config I2C_SPI_UCODE_PATCH
  93. bool "I2C/SPI relocation patch"
  94. help
  95. Help not implemented yet, coming soon.
  96. config I2C_SPI_SMC1_UCODE_PATCH
  97. bool "I2C/SPI/SMC1 relocation patch"
  98. help
  99. Help not implemented yet, coming soon.
  100. endchoice
  101. config UCODE_PATCH
  102. bool
  103. default y
  104. depends on !NO_UCODE_PATCH
  105. endmenu