Joe Hershberger | 05c3e68 | 2015-03-22 17:09:10 -0500 | [diff] [blame] | 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. |
Joe Hershberger | 3ea143a | 2015-03-22 17:09:13 -0500 | [diff] [blame] | 10 | |
| 11 | menuconfig NETDEVICES |
| 12 | bool "Network device support" |
| 13 | depends on NET |
Joe Hershberger | ef0f2f5 | 2015-06-22 16:15:30 -0500 | [diff] [blame] | 14 | default y if DM_ETH |
Joe Hershberger | 3ea143a | 2015-03-22 17:09:13 -0500 | [diff] [blame] | 15 | help |
| 16 | You must select Y to enable any network device support |
| 17 | Generally if you have any networking support this is a given |
| 18 | |
| 19 | If unsure, say Y |
| 20 | |
| 21 | if NETDEVICES |
| 22 | |
| 23 | config ETH_SANDBOX |
| 24 | depends on DM_ETH && SANDBOX |
| 25 | default y |
| 26 | bool "Sandbox: Mocked Ethernet driver" |
| 27 | help |
| 28 | This driver simply responds with fake ARP replies and ping |
| 29 | replies that are used to verify network stack functionality |
| 30 | |
| 31 | This driver is particularly useful in the test/dm/eth.c tests |
| 32 | |
Joe Hershberger | a346ca7 | 2015-03-22 17:09:21 -0500 | [diff] [blame] | 33 | config ETH_SANDBOX_RAW |
| 34 | depends on DM_ETH && SANDBOX |
| 35 | default y |
| 36 | bool "Sandbox: Bridge to Linux Raw Sockets" |
| 37 | help |
| 38 | This driver is a bridge from the bottom of the network stack |
| 39 | in U-Boot to the RAW AF_PACKET API in Linux. This allows real |
| 40 | network traffic to be tested from within sandbox. See |
| 41 | board/sandbox/README.sandbox for more details. |
| 42 | |
Simon Glass | ef48f6d | 2015-04-05 16:07:34 -0600 | [diff] [blame] | 43 | config ETH_DESIGNWARE |
| 44 | bool "Synopsys Designware Ethernet MAC" |
| 45 | help |
| 46 | This MAC is present in SoCs from various vendors. It supports |
| 47 | 100Mbit and 1 Gbit operation. You must enable CONFIG_PHYLIB to |
| 48 | provide the PHY (physical media interface). |
| 49 | |
Joe Hershberger | 3ea143a | 2015-03-22 17:09:13 -0500 | [diff] [blame] | 50 | endif # NETDEVICES |