2021-05-03 08:49:04 +08:00
|
|
|
# MDIO configuration options
|
|
|
|
|
|
|
|
# Copyright (c) 2021 IP-Logix Inc.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
#
|
|
|
|
# MDIO options
|
|
|
|
#
|
|
|
|
menuconfig MDIO
|
|
|
|
bool "MDIO Drivers"
|
|
|
|
help
|
|
|
|
Enable MDIO Driver Configuration
|
|
|
|
|
|
|
|
if MDIO
|
|
|
|
|
2021-05-03 08:59:07 +08:00
|
|
|
config MDIO_SHELL
|
2022-03-09 19:05:12 +08:00
|
|
|
bool "MDIO Shell"
|
2021-05-03 08:59:07 +08:00
|
|
|
default y
|
|
|
|
depends on SHELL
|
|
|
|
help
|
|
|
|
Enable MDIO Shell.
|
|
|
|
|
|
|
|
The MDIO shell currently supports scanning and device
|
|
|
|
read/write.
|
|
|
|
|
2021-05-03 08:49:04 +08:00
|
|
|
# Include these first so that any properties (e.g. defaults) below can be
|
|
|
|
# overridden (by defining symbols in multiple locations)
|
2021-05-03 08:58:22 +08:00
|
|
|
source "drivers/mdio/Kconfig.sam"
|
2021-05-03 08:49:04 +08:00
|
|
|
|
|
|
|
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
|