a1e2fdcc4d
Add MDIO driver that works through GPIO pins. This driver is useful when a microcontroller doesn't have MDIO bus or when multiple separate MDIO buses are required. The driver provides access to the MDIO bus through GPIO pins for any SoC that has GPIO pin control available. Signed-off-by: Aleksandr Senin <al@meshium.net>
10 lines
268 B
Plaintext
10 lines
268 B
Plaintext
# Copyright (c) 2023, Aleksandr Senin
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config MDIO_GPIO
|
|
bool "GPIO bitbang MDIO controller driver"
|
|
default y
|
|
depends on DT_HAS_ZEPHYR_MDIO_GPIO_ENABLED
|
|
help
|
|
Enable software driven (bit banging) MDIO support using GPIO pins
|