ethernet driver This driver is capable of supporting basic features of synposys dwc-xgmac ethernet MAC IP. Basic features includes, 1. Tx and Rx, multiple Tx and Rx DMA channels, multiple Tx and Rx queues 2. Check Sum Offloading on Tx and Rx for IPv4, IPv6, TCP, UDP and ICMP packets 3. 10M/100M/1G speeds, Autonegotiation, Link speed configuration, Promiscuous mode, Full/Half duplex configuration 4. Added source files for synopsys dwc xgmac mdio driver. synopsys dwc xgmac mdio driver fetures includes: It supports clause 22 of IEEE 802.3 for ethernet PHY devices management. 5. Extended mdio shell support for dwcxgmac mdio driver. Signed-off-by: Santosh Male <santosh.male@intel.com>
52 lines
1.2 KiB
Plaintext
52 lines
1.2 KiB
Plaintext
# MDIO configuration options
|
|
|
|
# Copyright (c) 2021 IP-Logix Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
# MDIO options
|
|
#
|
|
menuconfig MDIO
|
|
bool "Management Data Input/Output (MDIO) drivers"
|
|
help
|
|
Enable MDIO Driver Configuration
|
|
|
|
if MDIO
|
|
|
|
config MDIO_SHELL
|
|
bool "MDIO Shell"
|
|
depends on SHELL
|
|
help
|
|
Enable MDIO Shell.
|
|
|
|
The MDIO shell currently supports scanning and device
|
|
read/write.
|
|
|
|
# Include these first so that any properties (e.g. defaults) below can be
|
|
# overridden (by defining symbols in multiple locations)
|
|
source "drivers/mdio/Kconfig.esp32"
|
|
source "drivers/mdio/Kconfig.sam"
|
|
source "drivers/mdio/Kconfig.nxp_s32_netc"
|
|
source "drivers/mdio/Kconfig.nxp_s32_gmac"
|
|
source "drivers/mdio/Kconfig.adin2111"
|
|
source "drivers/mdio/Kconfig.gpio"
|
|
source "drivers/mdio/Kconfig.litex"
|
|
source "drivers/mdio/Kconfig.nxp_enet"
|
|
source "drivers/mdio/Kconfig.stm32_hal"
|
|
source "drivers/mdio/Kconfig.xmc4xxx"
|
|
source "drivers/mdio/Kconfig.nxp_enet_qos"
|
|
source "drivers/mdio/Kconfig.dwcxgmac"
|
|
|
|
config MDIO_INIT_PRIORITY
|
|
int "Init priority"
|
|
default 60
|
|
help
|
|
MDIO device driver initialization priority.
|
|
|
|
|
|
module = MDIO
|
|
module-str = mdio
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
endif # MDIO
|