mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
65 lines
985 B
Text
65 lines
985 B
Text
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
/*
|
||
|
* Device Tree Source for the Silicon Linux sub board for CAT874 (CAT875)
|
||
|
*
|
||
|
* Copyright (C) 2021 Renesas Electronics Corp.
|
||
|
*/
|
||
|
|
||
|
/ {
|
||
|
model = "Silicon Linux sub board for CAT874 (CAT875)";
|
||
|
|
||
|
aliases {
|
||
|
ethernet0 = &avb;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&avb {
|
||
|
pinctrl-0 = <&avb_pins>;
|
||
|
pinctrl-names = "default";
|
||
|
renesas,no-ether-link;
|
||
|
phy-handle = <&phy0>;
|
||
|
status = "okay";
|
||
|
|
||
|
phy0: ethernet-phy@0 {
|
||
|
reg = <0>;
|
||
|
interrupt-parent = <&gpio2>;
|
||
|
interrupts = <21 IRQ_TYPE_LEVEL_LOW>;
|
||
|
reset-gpios = <&gpio1 20 GPIO_ACTIVE_LOW>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&can0 {
|
||
|
pinctrl-0 = <&can0_pins>;
|
||
|
pinctrl-names = "default";
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
&can1 {
|
||
|
pinctrl-0 = <&can1_pins>;
|
||
|
pinctrl-names = "default";
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
&pciec0 {
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
&pfc {
|
||
|
avb_pins: avb {
|
||
|
mux {
|
||
|
groups = "avb_mii";
|
||
|
function = "avb";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
can0_pins: can0 {
|
||
|
groups = "can0_data";
|
||
|
function = "can0";
|
||
|
};
|
||
|
|
||
|
can1_pins: can1 {
|
||
|
groups = "can1_data";
|
||
|
function = "can1";
|
||
|
};
|
||
|
};
|