Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[linux-btrfs-devel.git] / drivers / net / ethernet / stmicro / stmmac / Kconfig
blobac6f190743dd3227e269d8e05f9df894681e626f
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         ---help---
9           This is the driver for the Ethernet IPs are built around a
10           Synopsys IP Core and only tested on the STMicroelectronics
11           platforms.
13 if STMMAC_ETH
15 config STMMAC_DEBUG_FS
16         bool "Enable monitoring via sysFS "
17         default n
18         depends on STMMAC_ETH && DEBUG_FS
19         -- help
20           The stmmac entry in /sys reports DMA TX/RX rings
21           or (if supported) the HW cap register.
23 config STMMAC_DA
24         bool "STMMAC DMA arbitration scheme"
25         default n
26         ---help---
27           Selecting this option, rx has priority over Tx (only for Giga
28           Ethernet device).
29           By default, the DMA arbitration scheme is based on Round-robin
30           (rx:tx priority is 1:1).
32 config STMMAC_DUAL_MAC
33         bool "STMMAC: dual mac support (EXPERIMENTAL)"
34         default n
35         depends on EXPERIMENTAL && STMMAC_ETH && !STMMAC_TIMER
36         ---help---
37           Some ST SoCs (for example the stx7141 and stx7200c2) have two
38           Ethernet Controllers. This option turns on the second Ethernet
39           device on this kind of platforms.
41 config STMMAC_TIMER
42         bool "STMMAC Timer optimisation"
43         default n
44         depends on RTC_HCTOSYS_DEVICE
45         ---help---
46           Use an external timer for mitigating the number of network
47           interrupts. Currently, for SH architectures, it is possible
48           to use the TMU channel 2 and the SH-RTC device.
50 choice
51         prompt "Select Timer device"
52         depends on STMMAC_TIMER
54 config STMMAC_TMU_TIMER
55         bool "TMU channel 2"
56         depends on CPU_SH4
57         ---help---
59 config STMMAC_RTC_TIMER
60         bool "Real time clock"
61         depends on RTC_CLASS
62         ---help---
64 endchoice
66 choice
67         prompt "Select the DMA TX/RX descriptor operating modes"
68         depends on STMMAC_ETH
69         ---help---
70           This driver supports DMA descriptor to operate both in dual buffer
71           (RING) and linked-list(CHAINED) mode. In RING mode each descriptor
72           points to two data buffer pointers whereas in CHAINED mode they
73           points to only one data buffer pointer.
75 config STMMAC_RING
76         bool "Enable Descriptor Ring Mode"
78 config STMMAC_CHAINED
79         bool "Enable Descriptor Chained Mode"
81 endchoice
84 endif