2019-11-01 13:45:29 +01:00
|
|
|
# Ethernet drivers configuration options
|
2015-10-26 16:38:13 -07:00
|
|
|
|
|
|
|
# Copyright (c) 2015 Intel Corporation
|
2017-01-18 17:01:01 -08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2015-10-26 16:38:13 -07:00
|
|
|
|
2016-12-20 10:30:40 +00:00
|
|
|
menu "Ethernet Drivers"
|
2018-12-27 19:10:14 +01:00
|
|
|
depends on NET_L2_ETHERNET
|
2016-12-20 10:30:40 +00:00
|
|
|
|
2018-10-05 15:14:58 +03:00
|
|
|
module = ETHERNET
|
|
|
|
module-dep = LOG
|
|
|
|
module-str = Log level for Ethernet driver
|
|
|
|
module-help = Sets log level for Ethernet Device Drivers.
|
2018-07-09 12:51:28 +03:00
|
|
|
source "subsys/net/Kconfig.template.log_config.net"
|
2016-05-07 15:50:27 -04:00
|
|
|
|
2016-11-19 00:22:05 +02:00
|
|
|
config ETH_INIT_PRIORITY
|
2018-08-14 16:19:20 +02:00
|
|
|
int "Ethernet driver init priority"
|
2016-11-19 00:22:05 +02:00
|
|
|
default 80
|
|
|
|
help
|
|
|
|
Ethernet device driver initialization priority.
|
|
|
|
Do not mess with it unless you know what you are doing.
|
|
|
|
Note that the priority needs to be lower than the net stack
|
|
|
|
so that it can start before the networking sub-system.
|
|
|
|
|
2020-02-21 15:41:55 +02:00
|
|
|
config ETH_QEMU_IFACE_NAME
|
|
|
|
string "Network interface name for QEMU"
|
|
|
|
default "zeth"
|
|
|
|
depends on NET_QEMU_ETHERNET
|
|
|
|
help
|
|
|
|
The network interface name for QEMU. This value is given as
|
|
|
|
a parameter to -nic qemu command line option. The network
|
|
|
|
interface must be created before starting QEMU. The net-setup.sh
|
|
|
|
script from net-tools project can be used to create the network
|
|
|
|
interface.
|
|
|
|
|
2020-05-08 15:25:03 +03:00
|
|
|
config ETH_QEMU_EXTRA_ARGS
|
|
|
|
string "Extra arguments to QEMU -nic option"
|
|
|
|
depends on NET_QEMU_ETHERNET
|
|
|
|
default ""
|
|
|
|
help
|
|
|
|
Extra arguments passed to QEMU -nic option when Ethernet Networking
|
|
|
|
is enabled. Typically this is used to set the network MAC address of
|
|
|
|
Zephyr instance. This option can contain multiple QEMU option
|
|
|
|
arguments. Each QEMU argument must be separated by comma "," and no
|
|
|
|
spaces between arguments. Example: "mac=02:03:04:f0:0d:01" or
|
|
|
|
"mac=02:03:04:f0:0d:01,downscript=no"
|
|
|
|
|
2016-07-08 14:52:03 -05:00
|
|
|
source "drivers/ethernet/Kconfig.enc28j60"
|
2019-08-16 00:57:20 +02:00
|
|
|
source "drivers/ethernet/Kconfig.enc424j600"
|
2017-01-02 14:03:19 -06:00
|
|
|
source "drivers/ethernet/Kconfig.mcux"
|
2018-07-31 12:44:34 +03:00
|
|
|
source "drivers/ethernet/Kconfig.e1000"
|
2016-12-24 03:58:38 +01:00
|
|
|
source "drivers/ethernet/Kconfig.sam_gmac"
|
2017-06-23 13:03:51 +02:00
|
|
|
source "drivers/ethernet/Kconfig.stm32_hal"
|
2019-01-10 18:52:13 +02:00
|
|
|
source "drivers/ethernet/Kconfig.smsc911x"
|
2018-02-21 16:18:35 +02:00
|
|
|
source "drivers/ethernet/Kconfig.native_posix"
|
2018-09-19 15:21:47 +05:30
|
|
|
source "drivers/ethernet/Kconfig.stellaris"
|
2019-07-10 07:57:52 +02:00
|
|
|
source "drivers/ethernet/Kconfig.liteeth"
|
2019-11-29 21:34:31 +01:00
|
|
|
source "drivers/ethernet/Kconfig.gecko"
|
2016-12-20 10:30:40 +00:00
|
|
|
|
2018-12-27 19:10:14 +01:00
|
|
|
endmenu # "Ethernet Drivers"
|