1# Copyright (c) 2021 IP-Logix Inc.
2# SPDX-License-Identifier: Apache-2.0
3
4# Common fields for MIIPHY devices
5
6description: Generic MII PHY
7
8compatible: "ethernet-phy"
9
10include: phy.yaml
11
12properties:
13  reg:
14    required: true
15    description: PHY address
16  no-reset:
17    type: boolean
18    description: Do not reset the PHY during initialization
19  fixed-link:
20    type: string
21    description: This link is fixed and does not require PHY configuration
22    enum:
23      - "10BASE-T Half-Duplex"
24      - "10BASE-T Full-Duplex"
25      - "100BASE-T Half-Duplex"
26      - "100BASE-T Full-Duplex"
27