Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Christian Marangi and committed by
Jakub Kicinski
91e893b4 7ae215ee

+54
+54
Documentation/devicetree/bindings/net/qca,qca808x.yaml
··· 1 + # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/net/qca,qca808x.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Qualcomm Atheros QCA808X PHY 8 + 9 + maintainers: 10 + - Christian Marangi <ansuelsmth@gmail.com> 11 + 12 + description: 13 + QCA808X PHYs can have up to 3 LEDs attached. 14 + All 3 LEDs are disabled by default. 15 + 2 LEDs have dedicated pins with the 3rd LED having the 16 + double function of Interrupt LEDs/GPIO or additional LED. 17 + 18 + By default this special PIN is set to LED function. 19 + 20 + allOf: 21 + - $ref: ethernet-phy.yaml# 22 + 23 + properties: 24 + compatible: 25 + enum: 26 + - ethernet-phy-id004d.d101 27 + 28 + unevaluatedProperties: false 29 + 30 + examples: 31 + - | 32 + #include <dt-bindings/leds/common.h> 33 + 34 + mdio { 35 + #address-cells = <1>; 36 + #size-cells = <0>; 37 + 38 + ethernet-phy@0 { 39 + compatible = "ethernet-phy-id004d.d101"; 40 + reg = <0>; 41 + 42 + leds { 43 + #address-cells = <1>; 44 + #size-cells = <0>; 45 + 46 + led@0 { 47 + reg = <0>; 48 + color = <LED_COLOR_ID_GREEN>; 49 + function = LED_FUNCTION_WAN; 50 + default-state = "keep"; 51 + }; 52 + }; 53 + }; 54 + };