-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dt-bindings: net: Document QCA808x PHYs
Add Documentation for QCA808x PHYs for the additional LED configuration for this PHY. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com> Reviewed-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20240125203702.4552-5-ansuelsmth@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
- Loading branch information
Christian Marangi
authored and
Jakub Kicinski
committed
Jan 27, 2024
1 parent
7ae215e
commit 91e893b
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/net/qca,qca808x.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Qualcomm Atheros QCA808X PHY | ||
|
||
maintainers: | ||
- Christian Marangi <ansuelsmth@gmail.com> | ||
|
||
description: | ||
QCA808X PHYs can have up to 3 LEDs attached. | ||
All 3 LEDs are disabled by default. | ||
2 LEDs have dedicated pins with the 3rd LED having the | ||
double function of Interrupt LEDs/GPIO or additional LED. | ||
|
||
By default this special PIN is set to LED function. | ||
|
||
allOf: | ||
- $ref: ethernet-phy.yaml# | ||
|
||
properties: | ||
compatible: | ||
enum: | ||
- ethernet-phy-id004d.d101 | ||
|
||
unevaluatedProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/leds/common.h> | ||
mdio { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
ethernet-phy@0 { | ||
compatible = "ethernet-phy-id004d.d101"; | ||
reg = <0>; | ||
leds { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
led@0 { | ||
reg = <0>; | ||
color = <LED_COLOR_ID_GREEN>; | ||
function = LED_FUNCTION_WAN; | ||
default-state = "keep"; | ||
}; | ||
}; | ||
}; | ||
}; |