mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 06:39:05 +00:00

One of four USB-A ports on the Pine64 Star64 is USB 3.0 which requires to disable PCIE0 and change the mode of PCIE0 PHY to USB3.0 operation. The remaining three USB-A ports are USB 2.0 with the USB0 PHY and do not conflict with any of PCIE0 or PCIE1. PCIE1 (1-lane) routes to a PCIe X4 connector. Signed-off-by: E Shattow <e@freeshell.de> Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
108 lines
1.9 KiB
Plaintext
108 lines
1.9 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0 OR MIT
|
|
/*
|
|
* Copyright (C) 2024 Henry Bell <dmoo_dv@protonmail.com>
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include "jh7110-common.dtsi"
|
|
|
|
/ {
|
|
model = "Pine64 Star64";
|
|
compatible = "pine64,star64", "starfive,jh7110";
|
|
aliases {
|
|
ethernet1 = &gmac1;
|
|
};
|
|
};
|
|
|
|
&gmac0 {
|
|
starfive,tx-use-rgmii-clk;
|
|
assigned-clocks = <&aoncrg JH7110_AONCLK_GMAC0_TX>;
|
|
assigned-clock-parents = <&aoncrg JH7110_AONCLK_GMAC0_RMII_RTX>;
|
|
status = "okay";
|
|
};
|
|
|
|
&gmac1 {
|
|
phy-handle = <&phy1>;
|
|
phy-mode = "rgmii-id";
|
|
starfive,tx-use-rgmii-clk;
|
|
assigned-clocks = <&syscrg JH7110_SYSCLK_GMAC1_TX>;
|
|
assigned-clock-parents = <&syscrg JH7110_SYSCLK_GMAC1_RMII_RTX>;
|
|
status = "okay";
|
|
|
|
mdio {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
compatible = "snps,dwmac-mdio";
|
|
|
|
phy1: ethernet-phy@1 {
|
|
reg = <1>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&i2c0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&pcie1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&phy0 {
|
|
rx-internal-delay-ps = <1500>;
|
|
motorcomm,rx-clk-drv-microamp = <2910>;
|
|
motorcomm,rx-data-drv-microamp = <2910>;
|
|
motorcomm,tx-clk-adj-enabled;
|
|
motorcomm,tx-clk-10-inverted;
|
|
motorcomm,tx-clk-100-inverted;
|
|
motorcomm,tx-clk-1000-inverted;
|
|
};
|
|
|
|
&phy1 {
|
|
rx-internal-delay-ps = <0>;
|
|
tx-internal-delay-ps = <300>;
|
|
motorcomm,rx-clk-drv-microamp = <2910>;
|
|
motorcomm,rx-data-drv-microamp = <2910>;
|
|
motorcomm,tx-clk-adj-enabled;
|
|
motorcomm,tx-clk-10-inverted;
|
|
motorcomm,tx-clk-100-inverted;
|
|
};
|
|
|
|
&pwm {
|
|
status = "okay";
|
|
};
|
|
|
|
&pwmdac {
|
|
status = "okay";
|
|
};
|
|
|
|
&spi0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&sysgpio {
|
|
usb0_pins: usb0-0 {
|
|
vbus-pins {
|
|
pinmux = <GPIOMUX(25, GPOUT_SYS_USB_DRIVE_VBUS,
|
|
GPOEN_ENABLE,
|
|
GPI_NONE)>;
|
|
bias-disable;
|
|
input-disable;
|
|
input-schmitt-disable;
|
|
slew-rate = <0>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&usb0 {
|
|
dr_mode = "host";
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&usb0_pins>;
|
|
status = "okay";
|
|
};
|
|
|
|
&usb_cdns3 {
|
|
phys = <&usbphy0>, <&pciephy0>;
|
|
phy-names = "cdns3,usb2-phy", "cdns3,usb3-phy";
|
|
};
|