Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. config HTDMSOUND
  63. bool "Embedded Planet HIOX Audio"
  64. depends on SOUND=y
  65. # This doesn't really belong here, but it is convenient to ask
  66. # 8xx specific questions.
  67. comment "Generic MPC8xx Options"
  68. config 8xx_COPYBACK
  69. bool "Copy-Back Data Cache (else Writethrough)"
  70. help
  71. Saying Y here will cause the cache on an MPC8xx processor to be used
  72. in Copy-Back mode. If you say N here, it is used in Writethrough
  73. mode.
  74. If in doubt, say Y here.
  75. config 8xx_CPU6
  76. bool "CPU6 Silicon Errata (860 Pre Rev. C)"
  77. help
  78. MPC860 CPUs, prior to Rev C have some bugs in the silicon, which
  79. require workarounds for Linux (and most other OSes to work). If you
  80. get a BUG() very early in boot, this might fix the problem. For
  81. more details read the document entitled "MPC860 Family Device Errata
  82. Reference" on Motorola's website. This option also incurs a
  83. performance hit.
  84. If in doubt, say N here.
  85. choice
  86. prompt "Microcode patch selection"
  87. default NO_UCODE_PATCH
  88. help
  89. Help not implemented yet, coming soon.
  90. config NO_UCODE_PATCH
  91. bool "None"
  92. config USB_SOF_UCODE_PATCH
  93. bool "USB SOF patch"
  94. help
  95. Help not implemented yet, coming soon.
  96. config I2C_SPI_UCODE_PATCH
  97. bool "I2C/SPI relocation patch"
  98. help
  99. Help not implemented yet, coming soon.
  100. config I2C_SPI_SMC1_UCODE_PATCH
  101. bool "I2C/SPI/SMC1 relocation patch"
  102. help
  103. Help not implemented yet, coming soon.
  104. endchoice
  105. config UCODE_PATCH
  106. bool
  107. default y
  108. depends on !NO_UCODE_PATCH
  109. endmenu