mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-19 18:57:15 +00:00
This patch adds description for 'fixed-link' node in ethernet DTS node. It supports setting speed and duplex. Signed-off-by: Lukasz Majewski <lukma@denx.de>
19 lines
500 B
YAML
19 lines
500 B
YAML
# Copyright (c) 2020, DENX Software Engineering GmbH
|
|
# Lukasz Majewski <lukma@denx.de>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
child-binding:
|
|
description: Fixed link ethernet node
|
|
properties:
|
|
speed:
|
|
type: int
|
|
required: true
|
|
description: The speed of fixed link
|
|
enum:
|
|
- 100
|
|
- 10
|
|
full-duplex:
|
|
type: boolean
|
|
required: false
|
|
description: The fixed link operates in full duplex mode
|