Implement lan865x mdio driver to provide interface between lan865x MAC driver and internal PHY driver phy_microchip_t1s.c. This driver is needed to support the driver architecture followed. Signed-off-by: Parthiban Veerasooran <parthiban.veerasooran@microchip.com>
20 lines
421 B
Text
20 lines
421 B
Text
# Copyright 2024 Microchip Technology Inc
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig MDIO_LAN865X
|
|
bool "LAN865X MDIO driver"
|
|
default y
|
|
depends on DT_HAS_MICROCHIP_LAN865X_MDIO_ENABLED
|
|
depends on ETH_LAN865X
|
|
help
|
|
Enable LAN865X MDIO driver.
|
|
|
|
if MDIO_LAN865X
|
|
|
|
config MDIO_LAN865X_INIT_PRIORITY
|
|
int "LAN865X MDIO init priority"
|
|
default 81
|
|
help
|
|
LAN865X MDIO device driver initialization priority.
|
|
|
|
endif
|