100 lines
1.6 KiB
Plaintext
100 lines
1.6 KiB
Plaintext
|
|
// SPDX-License-Identifier: GPL-2.0 OR MIT
|
||
|
|
/*
|
||
|
|
* Copyright (C) 2024 Yangyu Chen <cyy@cyyself.name>
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "k1.dtsi"
|
||
|
|
#include "k1-pinctrl.dtsi"
|
||
|
|
|
||
|
|
/ {
|
||
|
|
model = "Banana Pi BPI-F3";
|
||
|
|
compatible = "bananapi,bpi-f3", "spacemit,k1";
|
||
|
|
|
||
|
|
aliases {
|
||
|
|
ethernet0 = ð0;
|
||
|
|
ethernet1 = ð1;
|
||
|
|
serial0 = &uart0;
|
||
|
|
};
|
||
|
|
|
||
|
|
chosen {
|
||
|
|
stdout-path = "serial0";
|
||
|
|
};
|
||
|
|
|
||
|
|
leds {
|
||
|
|
compatible = "gpio-leds";
|
||
|
|
|
||
|
|
led1 {
|
||
|
|
label = "sys-led";
|
||
|
|
gpios = <&gpio K1_GPIO(96) GPIO_ACTIVE_HIGH>;
|
||
|
|
linux,default-trigger = "heartbeat";
|
||
|
|
default-state = "on";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
&emmc {
|
||
|
|
bus-width = <8>;
|
||
|
|
mmc-hs400-1_8v;
|
||
|
|
mmc-hs400-enhanced-strobe;
|
||
|
|
non-removable;
|
||
|
|
no-sd;
|
||
|
|
no-sdio;
|
||
|
|
status = "okay";
|
||
|
|
};
|
||
|
|
|
||
|
|
ð0 {
|
||
|
|
phy-handle = <&rgmii0>;
|
||
|
|
phy-mode = "rgmii-id";
|
||
|
|
pinctrl-names = "default";
|
||
|
|
pinctrl-0 = <&gmac0_cfg>;
|
||
|
|
rx-internal-delay-ps = <0>;
|
||
|
|
tx-internal-delay-ps = <0>;
|
||
|
|
status = "okay";
|
||
|
|
|
||
|
|
mdio-bus {
|
||
|
|
#address-cells = <0x1>;
|
||
|
|
#size-cells = <0x0>;
|
||
|
|
|
||
|
|
reset-gpios = <&gpio K1_GPIO(110) GPIO_ACTIVE_LOW>;
|
||
|
|
reset-delay-us = <10000>;
|
||
|
|
reset-post-delay-us = <100000>;
|
||
|
|
|
||
|
|
rgmii0: phy@1 {
|
||
|
|
reg = <0x1>;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
ð1 {
|
||
|
|
phy-handle = <&rgmii1>;
|
||
|
|
phy-mode = "rgmii-id";
|
||
|
|
pinctrl-names = "default";
|
||
|
|
pinctrl-0 = <&gmac1_cfg>;
|
||
|
|
rx-internal-delay-ps = <0>;
|
||
|
|
tx-internal-delay-ps = <250>;
|
||
|
|
status = "okay";
|
||
|
|
|
||
|
|
mdio-bus {
|
||
|
|
#address-cells = <0x1>;
|
||
|
|
#size-cells = <0x0>;
|
||
|
|
|
||
|
|
reset-gpios = <&gpio K1_GPIO(115) GPIO_ACTIVE_LOW>;
|
||
|
|
reset-delay-us = <10000>;
|
||
|
|
reset-post-delay-us = <100000>;
|
||
|
|
|
||
|
|
rgmii1: phy@1 {
|
||
|
|
reg = <0x1>;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
&pdma {
|
||
|
|
status = "okay";
|
||
|
|
};
|
||
|
|
|
||
|
|
&uart0 {
|
||
|
|
pinctrl-names = "default";
|
||
|
|
pinctrl-0 = <&uart0_2_cfg>;
|
||
|
|
status = "okay";
|
||
|
|
};
|