Kconfig 3.3 KB

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