1# Copyright 2025 Microchip Technology Inc.
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig PHY_MICROCHIP_T1S
5	bool "Microchip 10BASE-T1S Ethernet PHYs Driver"
6	default y
7	depends on DT_HAS_MICROCHIP_T1S_PHY_ENABLED
8	depends on MDIO
9	select PHY_OA_TC14_PLCA_LIB
10	help
11	  Enable Microchip's LAN8650/1 Rev.B0/B1 Internal PHYs and
12	  LAN8670/1/2 Rev.C1/C2 PHYs Driver.
13
14if PHY_MICROCHIP_T1S
15
16config PHY_MICROCHIP_T1S_INIT_PRIORITY
17	int "Microchip T1S PHY init priority"
18	default 82
19	help
20	  Microchip T1S phy device driver initialization priority.
21
22endif
23