Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. #
  2. # MPC8xx Communication options
  3. #
  4. menu "MPC8xx CPM Options"
  5. depends on 8xx
  6. config SCC_ENET
  7. bool "CPM SCC Ethernet"
  8. depends on NET_ETHERNET
  9. help
  10. Enable Ethernet support via the Motorola MPC8xx serial
  11. communications controller.
  12. choice
  13. prompt "SCC used for Ethernet"
  14. depends on SCC_ENET
  15. default SCC1_ENET
  16. config SCC1_ENET
  17. bool "SCC1"
  18. help
  19. Use MPC8xx serial communications controller 1 to drive Ethernet
  20. (default).
  21. config SCC2_ENET
  22. bool "SCC2"
  23. help
  24. Use MPC8xx serial communications controller 2 to drive Ethernet.
  25. config SCC3_ENET
  26. bool "SCC3"
  27. help
  28. Use MPC8xx serial communications controller 3 to drive Ethernet.
  29. endchoice
  30. config FEC_ENET
  31. bool "860T FEC Ethernet"
  32. depends on NET_ETHERNET
  33. help
  34. Enable Ethernet support via the Fast Ethernet Controller (FCC) on
  35. the Motorola MPC8260.
  36. config USE_MDIO
  37. bool "Use MDIO for PHY configuration"
  38. depends on FEC_ENET
  39. help
  40. On some boards the hardware configuration of the ethernet PHY can be
  41. used without any software interaction over the MDIO interface, so
  42. all MII code can be omitted. Say N here if unsure or if you don't
  43. need link status reports.
  44. config FEC_AM79C874
  45. bool "Support AMD79C874 PHY"
  46. depends on USE_MDIO
  47. config FEC_LXT970
  48. bool "Support LXT970 PHY"
  49. depends on USE_MDIO
  50. config FEC_LXT971
  51. bool "Support LXT971 PHY"
  52. depends on USE_MDIO
  53. config FEC_QS6612
  54. bool "Support QS6612 PHY"
  55. depends on USE_MDIO
  56. config ENET_BIG_BUFFERS
  57. bool "Use Big CPM Ethernet Buffers"
  58. depends on SCC_ENET || FEC_ENET
  59. help
  60. Allocate large buffers for MPC8xx Ethernet. Increases throughput
  61. and decreases the likelihood of dropped packets, but costs memory.
  62. # This doesn't really belong here, but it is convenient to ask
  63. # 8xx specific questions.
  64. comment "Generic MPC8xx Options"
  65. config 8xx_COPYBACK
  66. bool "Copy-Back Data Cache (else Writethrough)"
  67. help
  68. Saying Y here will cause the cache on an MPC8xx processor to be used
  69. in Copy-Back mode. If you say N here, it is used in Writethrough
  70. mode.
  71. If in doubt, say Y here.
  72. config 8xx_CPU6
  73. bool "CPU6 Silicon Errata (860 Pre Rev. C)"
  74. help
  75. MPC860 CPUs, prior to Rev C have some bugs in the silicon, which
  76. require workarounds for Linux (and most other OSes to work). If you
  77. get a BUG() very early in boot, this might fix the problem. For
  78. more details read the document entitled "MPC860 Family Device Errata
  79. Reference" on Motorola's website. This option also incurs a
  80. performance hit.
  81. If in doubt, say N here.
  82. choice
  83. prompt "Microcode patch selection"
  84. default NO_UCODE_PATCH
  85. help
  86. Help not implemented yet, coming soon.
  87. config NO_UCODE_PATCH
  88. bool "None"
  89. config USB_SOF_UCODE_PATCH
  90. bool "USB SOF patch"
  91. help
  92. Help not implemented yet, coming soon.
  93. config I2C_SPI_UCODE_PATCH
  94. bool "I2C/SPI relocation patch"
  95. help
  96. Help not implemented yet, coming soon.
  97. config I2C_SPI_SMC1_UCODE_PATCH
  98. bool "I2C/SPI/SMC1 relocation patch"
  99. help
  100. Help not implemented yet, coming soon.
  101. endchoice
  102. config UCODE_PATCH
  103. bool
  104. default y
  105. depends on !NO_UCODE_PATCH
  106. endmenu