mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-24 02:18:18 +07:00
4da722ca19
Pretty much any node can have a status property, so it doesn't need to be in examples. Converted with the following command and removed examples with SoC and board specific splits: git grep -l -E 'status.*=.*' Documentation/devicetree/ | xargs sed -i -E '/\sstatus.*=.*"(disabled|ok|okay)/d' Acked-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Rob Herring <robh@kernel.org>
24 lines
561 B
Plaintext
24 lines
561 B
Plaintext
SMSC LAN87xx Ethernet PHY
|
|
|
|
Some boards require special tuning values. Configure them
|
|
through an Ethernet OF device node.
|
|
|
|
Optional properties:
|
|
|
|
- smsc,disable-energy-detect:
|
|
If set, do not enable energy detect mode for the SMSC phy.
|
|
default: enable energy detect mode
|
|
|
|
Examples:
|
|
smsc phy with disabled energy detect mode on an am335x based board.
|
|
&davinci_mdio {
|
|
pinctrl-names = "default", "sleep";
|
|
pinctrl-0 = <&davinci_mdio_default>;
|
|
pinctrl-1 = <&davinci_mdio_sleep>;
|
|
|
|
ethernetphy0: ethernet-phy@0 {
|
|
reg = <0>;
|
|
smsc,disable-energy-detect;
|
|
};
|
|
};
|