mwifiex: channel switch handling for station
[cascardo/linux.git] / drivers / net / ethernet / stmicro / stmmac / Kconfig
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
14 if STMMAC_ETH
15
16 config STMMAC_PLATFORM
17         bool "STMMAC Platform bus support"
18         depends on STMMAC_ETH
19         default y
20         ---help---
21           This selects the platform specific bus support for
22           the stmmac device driver. This is the driver used
23           on many embedded STM platforms based on ARM and SuperH
24           processors.
25           If you have a controller with this interface, say Y or M here.
26
27           If unsure, say N.
28
29 config STMMAC_PCI
30         bool "STMMAC PCI bus support"
31         depends on STMMAC_ETH && PCI
32         ---help---
33           This is to select the Synopsys DWMAC available on PCI devices,
34           if you have a controller with this interface, say Y or M here.
35
36           This PCI support is tested on XLINX XC2V3000 FF1152AMT0221
37           D1215994A VIRTEX FPGA board.
38
39           If unsure, say N.
40
41 config STMMAC_DEBUG_FS
42         bool "Enable monitoring via sysFS "
43         default n
44         depends on STMMAC_ETH && DEBUG_FS
45         ---help---
46           The stmmac entry in /sys reports DMA TX/RX rings
47           or (if supported) the HW cap register.
48
49 config STMMAC_DA
50         bool "STMMAC DMA arbitration scheme"
51         default n
52         ---help---
53           Selecting this option, rx has priority over Tx (only for Giga
54           Ethernet device).
55           By default, the DMA arbitration scheme is based on Round-robin
56           (rx:tx priority is 1:1).
57
58 endif