mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
ccbda9e680
The correct name for the property is "qca,clk-out-frequency", so fix it accordingly. Signed-off-by: Fabio Estevam <festevam@gmail.com> Reviewed-by: Michael Walle <michael@walle.cc>
35 lines
1,003 B
Text
35 lines
1,003 B
Text
* Qualcomm Atheros PHY Device Tree binding
|
|
|
|
Required properties:
|
|
- reg: PHY address
|
|
|
|
Optional properties:
|
|
- qca,clk-out-frequency: Clock frequency of the CLK_25M pin in Hz.
|
|
Either 25000000, 50000000, 62500000 or 125000000.
|
|
- qca,clk-out-strength: Clock output buffer driver strength.
|
|
Supported values are defined in dt-bindings/net/qca-ar803x.h
|
|
- qca,keep-pll-enabled: Keep the PLL running if no link is present.
|
|
Don't go into hibernation mode.
|
|
Only supported on the AR8031/AR8033.
|
|
- vddio-supply: RGMII I/O voltage regulator
|
|
Only supported on the AR8031/AR8033.
|
|
|
|
Optional subnodes:
|
|
- vddio-regulator: Initial data for the VDDIO regulator, as covered
|
|
doc/device-tree-bindings/regulator/regulator.txt
|
|
|
|
Example:
|
|
#include <dt-bindings/net/qca-ar803x.h>
|
|
|
|
ethernet-phy@0 {
|
|
reg = <0>;
|
|
qca,clk-out-frequency = <125000000>;
|
|
qca,keep-pll-enabled;
|
|
|
|
vddio-supply = <&vddio>;
|
|
|
|
vddio: vddio-regulator {
|
|
regulator-min-microvolt = <1800000>;
|
|
regulator-max-microvolt = <1800000>;
|
|
};
|
|
};
|