1# MDIO configuration options 2 3# Copyright (c) 2021 IP-Logix Inc. 4# SPDX-License-Identifier: Apache-2.0 5 6# 7# MDIO options 8# 9menuconfig MDIO 10 bool "Management Data Input/Output (MDIO) drivers" 11 help 12 Enable MDIO Driver Configuration 13 14if MDIO 15 16config MDIO_SHELL 17 bool "MDIO Shell" 18 default y 19 depends on SHELL 20 help 21 Enable MDIO Shell. 22 23 The MDIO shell currently supports scanning and device 24 read/write. 25 26# Include these first so that any properties (e.g. defaults) below can be 27# overridden (by defining symbols in multiple locations) 28source "drivers/mdio/Kconfig.esp32" 29source "drivers/mdio/Kconfig.sam" 30source "drivers/mdio/Kconfig.nxp_s32" 31source "drivers/mdio/Kconfig.adin2111" 32source "drivers/mdio/Kconfig.gpio" 33 34config MDIO_INIT_PRIORITY 35 int "Init priority" 36 default 60 37 help 38 MDIO device driver initialization priority. 39 40 41module = MDIO 42module-str = mdio 43source "subsys/logging/Kconfig.template.log_config" 44 45endif # MDIO 46