All in tree device drivers on a bus use some form of DEVICE_DT_GET so we no longer need to require label properties. Signed-off-by: Kumar Gala <galak@kernel.org>
25 lines
616 B
YAML
25 lines
616 B
YAML
# Copyright (c) 2021 IP-Logix Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Common fields for MDIO controllers
|
|
|
|
include: base.yaml
|
|
|
|
bus: mdio
|
|
|
|
properties:
|
|
protocol:
|
|
required: false
|
|
type: string
|
|
description: |
|
|
MDIO bus framing protocol to use for communication. Most devices
|
|
support clause 22.
|
|
|
|
- clause 22: IEEE802.3 clause 22 frame format
|
|
- clause 45: IEEE802.3 clause 45 frame format
|
|
- micrel SMI: Micrel Serial Management Interface frame format
|
|
enum:
|
|
- "clause 22"
|
|
- "clause 45"
|
|
- "micrel SMI"
|
|
default: "clause 22"
|