diff options
author | Tom Rini <trini@konsulko.com> | 2023-09-13 18:02:28 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-09-13 18:02:28 -0400 |
commit | 3cba5a115ff8b5aeca62e5ae7dfad6bacb32e9fd (patch) | |
tree | e44e6637e47d41e4f3926fa14c81785bc92ac76a /arch/sandbox/dts | |
parent | ce67ba1e30da583d03bf3cdd5b6ee75174c75f0a (diff) | |
parent | 565f556d0ba7f36def70dc36422d8730ff70f7a9 (diff) |
Merge branch '2023-09-13-phy-improvements' into next
- YT8511 and BCM54210E PHY support, cleanup and then use
generic_phy_valid more, and then further clean up
generic_{setup,shutdown}_phy()
Diffstat (limited to 'arch/sandbox/dts')
-rw-r--r-- | arch/sandbox/dts/test.dts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts index b48456aebe..63fda15da7 100644 --- a/arch/sandbox/dts/test.dts +++ b/arch/sandbox/dts/test.dts @@ -433,6 +433,11 @@ #phy-cells = <0>; }; + phy_provider3: gen_phy@3 { + compatible = "sandbox,phy"; + #phy-cells = <2>; + }; + gen_phy_user: gen_phy_user { compatible = "simple-bus"; phys = <&phy_provider0 0>, <&phy_provider0 1>, <&phy_provider1>; @@ -445,6 +450,12 @@ phy-names = "phy1", "phy2"; }; + gen_phy_user2: gen_phy_user2 { + compatible = "simple-bus"; + phys = <&phy_provider3 0 0>; + phy-names = "phy1"; + }; + some-bus { #address-cells = <1>; #size-cells = <0>; |