Kconfig 937 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. menuconfig NET_DSA
  2. bool "Distributed Switch Architecture support"
  3. default n
  4. depends on EXPERIMENTAL
  5. ---help---
  6. This allows you to use hardware switch chips that use
  7. the Distributed Switch Architecture.
  8. if NET_DSA
  9. # tagging formats
  10. config NET_DSA_TAG_DSA
  11. bool
  12. default n
  13. config NET_DSA_TAG_EDSA
  14. bool
  15. default n
  16. # switch drivers
  17. config NET_DSA_MV88E6XXX
  18. bool
  19. default n
  20. config NET_DSA_MV88E6XXX_NEED_PPU
  21. bool
  22. default n
  23. config NET_DSA_MV88E6131
  24. bool "Marvell 88E6131 ethernet switch chip support"
  25. select NET_DSA_MV88E6XXX
  26. select NET_DSA_MV88E6XXX_NEED_PPU
  27. select NET_DSA_TAG_DSA
  28. ---help---
  29. This enables support for the Marvell 88E6131 ethernet switch
  30. chip.
  31. config NET_DSA_MV88E6123_61_65
  32. bool "Marvell 88E6123/6161/6165 ethernet switch chip support"
  33. select NET_DSA_MV88E6XXX
  34. select NET_DSA_TAG_EDSA
  35. ---help---
  36. This enables support for the Marvell 88E6123/6161/6165
  37. ethernet switch chips.
  38. endif