mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-31 23:27:20 +00:00

The Xunlong Orange Pi 3B is a single-board computer based on the Rockchip RK3566 SoC. Add initial support for eMMC, SD-card, Ethernet, HDMI, PCIe and USB. Signed-off-by: Jonas Karlman <jonas@kwiboo.se> Link: https://lore.kernel.org/r/20240626230319.1425316-3-jonas@kwiboo.se Signed-off-by: Heiko Stuebner <heiko@sntech.de>
29 lines
548 B
Text
29 lines
548 B
Text
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
|
|
/dts-v1/;
|
|
|
|
#include "rk3566-orangepi-3b.dtsi"
|
|
|
|
/ {
|
|
model = "Xunlong Orange Pi 3B v1.1";
|
|
compatible = "xunlong,orangepi-3b-v1.1", "xunlong,orangepi-3b", "rockchip,rk3566";
|
|
};
|
|
|
|
&pmu_io_domains {
|
|
vccio5-supply = <&vcc_3v3>;
|
|
};
|
|
|
|
&gmac1 {
|
|
phy-handle = <&rgmii_phy1>;
|
|
status = "okay";
|
|
};
|
|
|
|
&mdio1 {
|
|
rgmii_phy1: ethernet-phy@1 {
|
|
compatible = "ethernet-phy-ieee802.3-c22";
|
|
reg = <1>;
|
|
reset-assert-us = <20000>;
|
|
reset-deassert-us = <50000>;
|
|
reset-gpios = <&gpio3 RK_PC2 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|