mirror of
https://github.com/openwrt/openwrt.git
synced 2025-04-24 04:56:12 +00:00
Siflower SF21A6826/SF21H8898 are a family of RISC-V SoCs with: * Quad-core T-Head C908 (1.125G for SF21A6826, 1.25G for SF21H8898) * DDR3/DDR4 memory controller * 1 QSGMII 4x1G * 1 SGMII/2500Base-X 2.5G * 1 additional RGMII on SF21H8898 * Network offloading engine for L2 switching and L3 NAT * 2 PCIE Gen2 lanes, operating in either one PCIE Gen2x2 or two PCIE Gen2x1 mode * 1 USB2.0 Link: https://github.com/openwrt/openwrt/pull/17115 Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
#include "sf21.dtsi"
|
|
/ {
|
|
compatible = "siflower,sf21h8898";
|
|
soc {
|
|
xgmac5: ethernet@8014000 {
|
|
compatible = "siflower,sf21-xgmac";
|
|
reg = <0x0 0x8014000 0x0 0x4000>;
|
|
dmas = <&edma>;
|
|
ethsys = <ðsys>;
|
|
clocks = <&topcrm CLK_SERDES_CSR>, <&topcrm CLK_GMAC_BYP_REF>;
|
|
clock-names = "csr", "rgmii";
|
|
phy-mode = "rgmii";
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&rgmii_pins>;
|
|
interrupts = <5 IRQ_TYPE_LEVEL_HIGH>, <25 IRQ_TYPE_LEVEL_HIGH>, <31 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-names = "sbd", "lpi", "pmt";
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|
|
|
|
&cpus {
|
|
timebase-frequency = <1250000000>;
|
|
};
|
|
|
|
&topcrm {
|
|
assigned-clocks = <&topcrm CLK_CMNPLL_VCO>, <&topcrm CLK_PIC>, <&topcrm CLK_AXI>,
|
|
<&topcrm CLK_AHB>, <&topcrm CLK_APB>, <&topcrm CLK_UART>,
|
|
<&topcrm CLK_IRAM>, <&topcrm CLK_NPU>, <&topcrm CLK_ETHTSU>,
|
|
<&topcrm CLK_GMAC_BYP_REF>, <&topcrm CLK_USB>, <&topcrm CLK_USBPHY>,
|
|
<&topcrm CLK_SERDES_CSR>, <&topcrm CLK_CRYPT_CSR>, <&topcrm CLK_CRYPT_APP>,
|
|
<&topcrm CLK_IROM>;
|
|
assigned-clock-rates = <2500000000>, <416666666>, <416666666>,
|
|
<250000000>, <178571428>, <89285714>,
|
|
<416666666>, <416666666>, <89285714>,
|
|
<250000000>, <250000000>, <50000000>,
|
|
<89285714>, <73529411>, <312500000>,
|
|
<312500000>;
|
|
};
|