]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/net/Kconfig
dm: eth: Add basic driver model support to Ethernet stack
[karo-tx-uboot.git] / drivers / net / Kconfig
1 config DM_ETH
2         bool "Enable Driver Model for Ethernet drivers"
3         depends on DM
4         help
5           Enable driver model for Ethernet.
6
7           The eth_*() interface will be implemented by the UC_ETH class
8           This is currently implemented in net/eth.c
9           Look in include/net.h for details.
10
11 menuconfig NETDEVICES
12         bool "Network device support"
13         depends on NET
14
15 if NETDEVICES
16
17 config MII
18         bool
19
20 config FEC_MXC
21         bool "Freescale FEC ethernet controller"
22         select MII
23
24 config GET_FEC_MAC_ADDR_FROM_IIM
25         bool "Read FEC MAC address from fuses"
26         depends on FEC_MXC
27
28 if FEC_MXC
29
30 config FEC_MXC_PHYADDR
31         int "FEC Ethernet PHY address"
32         default 0
33         depends on !FEC_MXC_MULTI
34
35 endif
36
37 source "drivers/net/phy/Kconfig"
38
39 endif