mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 06:32:24 +00:00
MDIO is part of the ETH IP, but some phy chip may need a specific phy driver to set up certain vendor registers enabling particular features. Add support for stm32 mdio access. Signed-off-by: Angelo Dureghello <adureghello@baylibre.com>
12 lines
298 B
Plaintext
12 lines
298 B
Plaintext
# Copyright (c) 2024 BayLibre, SAS
|
|
# Copyright (c) 2024 Analog Devices Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config MDIO_ST_STM32_HAL
|
|
bool "STM32 MDIO controller driver"
|
|
default y
|
|
depends on ETH_STM32_HAL_API_V2
|
|
depends on DT_HAS_ST_STM32_MDIO_ENABLED
|
|
help
|
|
Enable STM32 MDIO support.
|