1# Copyright 2023 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig MDIO_NXP_S32_GMAC
5	bool "NXP S32 GMAC MDIO driver"
6	default y
7	depends on DT_HAS_NXP_S32_GMAC_MDIO_ENABLED
8	select CLOCK_CONTROL
9	select NOCACHE_MEMORY if ARCH_HAS_NOCACHE_MEMORY_SUPPORT
10	help
11	  Enable GMAC MDIO driver for NXP S32 SoCs.
12
13if MDIO_NXP_S32_GMAC
14
15config MDIO_NXP_S32_TIMEOUT
16	int "Timeout for read/write operations in milliseconds"
17	default 2
18	help
19	  Timeout (in milliseconds) for read/write operations over MDIO.
20
21endif # MDIO_NXP_S32_GMAC
22