mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-12 14:46:49 +07:00
d88ecb373b
On some boards the energy enable detect mode leads in trouble with some switches, so make the enabling of this mode configurable through DT. Signed-off-by: Heiko Schocher <hs@denx.de> Signed-off-by: David S. Miller <davem@davemloft.net>
25 lines
579 B
Plaintext
25 lines
579 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>;
|
|
status = "okay";
|
|
|
|
ethernetphy0: ethernet-phy@0 {
|
|
reg = <0>;
|
|
smsc,disable-energy-detect;
|
|
};
|
|
};
|