1# Copyright 2023 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4config MDIO_NXP_ENET
5	bool "NXP ENET MDIO Driver"
6	default y
7	depends on DT_HAS_NXP_ENET_MDIO_ENABLED
8	select PINCTRL
9	help
10	  Enable NXP ENET MDIO Driver. This Kconfig can be disabled manually
11	  if all ethernet PHYs being used with ENET are not managed by MDIO bus.
12
13if MDIO_NXP_ENET
14
15config MDIO_NXP_ENET_TIMEOUT
16	int "NXP ENET MDIO Timeout time"
17	default 250
18	help
19	  Time in microseconds before an MDIO transaction that has not
20	  finished is considered to have timed out.
21
22endif # MDIO_NXP_ENET
23