Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #
  2. # CPM2 Communication options
  3. #
  4. menu "CPM2 Options"
  5. depends on CPM2
  6. config SCC_ENET
  7. bool "CPM SCC Ethernet"
  8. depends on NET_ETHERNET
  9. #
  10. # CONFIG_FEC_ENET is only used to get netdevices to call our init
  11. # function. Any combination of FCC1,2,3 are supported.
  12. #
  13. config FEC_ENET
  14. bool "FCC Ethernet"
  15. depends on NET_ETHERNET
  16. config FCC1_ENET
  17. bool "Ethernet on FCC1"
  18. depends on FEC_ENET
  19. help
  20. Use CPM2 fast Ethernet controller 1 to drive Ethernet (default).
  21. config FCC2_ENET
  22. bool "Ethernet on FCC2"
  23. depends on FEC_ENET
  24. help
  25. Use CPM2 fast Ethernet controller 2 to drive Ethernet.
  26. config FCC3_ENET
  27. bool "Ethernet on FCC3"
  28. depends on FEC_ENET
  29. help
  30. Use CPM2 fast Ethernet controller 3 to drive Ethernet.
  31. config USE_MDIO
  32. bool "Use MDIO for PHY configuration"
  33. depends on FEC_ENET
  34. choice
  35. prompt "Type of PHY"
  36. depends on 8260 && USE_MDIO
  37. default FCC_GENERIC_PHY
  38. config FCC_LXT970
  39. bool "LXT970"
  40. config FCC_LXT971
  41. bool "LXT971"
  42. config FCC_QS6612
  43. bool "QS6612"
  44. config FCC_DM9131
  45. bool "DM9131"
  46. config FCC_DM9161
  47. bool "DM9161"
  48. config FCC_GENERIC_PHY
  49. bool "Generic"
  50. endchoice
  51. endmenu