| # Copyright (c) 2021 IP-Logix Inc. |
| # SPDX-License-Identifier: Apache-2.0 |
| |
| # Common fields for MIIPHY devices |
| |
| description: Generic MII PHY |
| |
| compatible: "ethernet-phy" |
| |
| include: ethernet-phy-common.yaml |
| |
| properties: |
| no-reset: |
| type: boolean |
| description: Do not reset the PHY during initialization |
| fixed-link: |
| type: string |
| description: This link is fixed and does not require PHY configuration |
| enum: |
| - "10BASE-T Half-Duplex" |
| - "10BASE-T Full-Duplex" |
| - "100BASE-T Half-Duplex" |
| - "100BASE-T Full-Duplex" |
| - "1000BASE-T Half-Duplex" |
| - "1000BASE-T Full-Duplex" |
| default-speeds: |
| default: ["10BASE Half-Duplex", "10BASE Full-Duplex", "100BASE Half-Duplex", |
| "100BASE Full-Duplex", "1000BASE Half-Duplex", "1000BASE Full-Duplex"] |