You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
667 B
37 lines
667 B
2 years ago
|
/dts-v1/;
|
||
|
/ {
|
||
|
bar: bar {
|
||
|
ports {
|
||
|
#address-cells = <1>;
|
||
|
#size-cells = <1>; // should always be 0
|
||
|
port@1 {
|
||
|
reg = <1 2>; // should always contain only a single cell
|
||
|
bar_con: endpoint {
|
||
|
remote-endpoint = <&foo_con>;
|
||
|
};
|
||
|
};
|
||
|
port@2 {
|
||
|
reg = <2>;
|
||
|
bar_con2: endpoint {
|
||
|
remote-endpoint = <&foo_con2>;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
foo {
|
||
|
port {
|
||
|
#address-cells = <1>;
|
||
|
#size-cells = <1>; // should always be 0
|
||
|
foo_con: endpoint@1 {
|
||
|
reg = <1 2>; // should always contain only a single cell
|
||
|
remote-endpoint = <&bar_con>;
|
||
|
};
|
||
|
foo_con2: endpoint@2 {
|
||
|
reg = <2>;
|
||
|
remote-endpoint = <&bar_con2>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
};
|
||
|
};
|