Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. config STMMAC_ETH
  2. tristate "STMicroelectronics 10/100/1000 Ethernet driver"
  3. depends on HAS_IOMEM
  4. select NET_CORE
  5. select MII
  6. select PHYLIB
  7. select CRC32
  8. select PTP_1588_CLOCK
  9. ---help---
  10. This is the driver for the Ethernet IPs are built around a
  11. Synopsys IP Core and only tested on the STMicroelectronics
  12. platforms.
  13. if STMMAC_ETH
  14. config STMMAC_PLATFORM
  15. bool "STMMAC Platform bus support"
  16. depends on STMMAC_ETH
  17. default y
  18. ---help---
  19. This selects the platform specific bus support for
  20. the stmmac device driver. This is the driver used
  21. on many embedded STM platforms based on ARM and SuperH
  22. processors.
  23. If you have a controller with this interface, say Y or M here.
  24. If unsure, say N.
  25. config STMMAC_PCI
  26. bool "STMMAC PCI bus support"
  27. depends on STMMAC_ETH && PCI
  28. ---help---
  29. This is to select the Synopsys DWMAC available on PCI devices,
  30. if you have a controller with this interface, say Y or M here.
  31. This PCI support is tested on XLINX XC2V3000 FF1152AMT0221
  32. D1215994A VIRTEX FPGA board.
  33. If unsure, say N.
  34. config STMMAC_DEBUG_FS
  35. bool "Enable monitoring via sysFS "
  36. default n
  37. depends on STMMAC_ETH && DEBUG_FS
  38. ---help---
  39. The stmmac entry in /sys reports DMA TX/RX rings
  40. or (if supported) the HW cap register.
  41. config STMMAC_DA
  42. bool "STMMAC DMA arbitration scheme"
  43. default n
  44. ---help---
  45. Selecting this option, rx has priority over Tx (only for Giga
  46. Ethernet device).
  47. By default, the DMA arbitration scheme is based on Round-robin
  48. (rx:tx priority is 1:1).
  49. endif