Hardware -------- RockChip RK3568 ARM64 (4 cores) RGB LED 1/2/4/8GB LPDDR4 RAM 2x 2500 Base-T 2/16/32/64/128GB eMMC on-board M.2 Slot miniPCIe Slot Micro-SD Slot USB 3.0 Port Type-C PD Power Installation ------------ Uncompress the OpenWrt sysupgrade and write it to a micro SD card or internal eMMC using dd. Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
105 lines
2.7 KiB
Diff
105 lines
2.7 KiB
Diff
From d1824cf9579924737da64b3eba5ad3129ad67f28 Mon Sep 17 00:00:00 2001
|
|
From: Sebastian Reichel <sebastian.reichel@collabora.com>
|
|
Date: Mon, 9 Jan 2023 16:58:00 +0100
|
|
Subject: [PATCH] arm64: dts: rockchip: Add rock-5a board
|
|
|
|
Add board file for the RK3588s Rock 5A board. While the hardware
|
|
offers plenty of peripherals and connectivity this basic implementation
|
|
just handles things required to access eMMC, UART and Ethernet (i.e.
|
|
enough to successfully boot Linux).
|
|
|
|
Reviewed-by: Michael Riesch <michael.riesch@wolfvision.net>
|
|
Tested-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
|
|
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
|
|
Link: https://lore.kernel.org/r/20230109155801.51642-7-sebastian.reichel@collabora.com
|
|
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
|
|
---
|
|
arch/arm64/boot/dts/rockchip/Makefile | 1 +
|
|
.../boot/dts/rockchip/rk3588s-rock-5a.dts | 73 +++++++++++++++++++
|
|
2 files changed, 74 insertions(+)
|
|
create mode 100644 arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts
|
|
|
|
--- a/arch/arm64/boot/dts/rockchip/Makefile
|
|
+++ b/arch/arm64/boot/dts/rockchip/Makefile
|
|
@@ -84,3 +84,4 @@ dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3568-ra
|
|
dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3568-roc-pc.dtb
|
|
dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3568-rock-3a.dtb
|
|
dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3588-evb1-v10.dtb
|
|
+dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3588s-rock-5a.dtb
|
|
--- /dev/null
|
|
+++ b/arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts
|
|
@@ -0,0 +1,73 @@
|
|
+// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
+
|
|
+/dts-v1/;
|
|
+
|
|
+#include <dt-bindings/gpio/gpio.h>
|
|
+#include <dt-bindings/pinctrl/rockchip.h>
|
|
+#include "rk3588s.dtsi"
|
|
+
|
|
+/ {
|
|
+ model = "Radxa ROCK 5 Model A";
|
|
+ compatible = "radxa,rock-5a", "rockchip,rk3588s";
|
|
+
|
|
+ aliases {
|
|
+ mmc1 = &sdhci;
|
|
+ serial2 = &uart2;
|
|
+ };
|
|
+
|
|
+ chosen {
|
|
+ stdout-path = "serial2:1500000n8";
|
|
+ };
|
|
+};
|
|
+
|
|
+&gmac1 {
|
|
+ clock_in_out = "output";
|
|
+ phy-handle = <&rgmii_phy1>;
|
|
+ phy-mode = "rgmii-rxid";
|
|
+ pinctrl-0 = <&gmac1_miim
|
|
+ &gmac1_tx_bus2
|
|
+ &gmac1_rx_bus2
|
|
+ &gmac1_rgmii_clk
|
|
+ &gmac1_rgmii_bus>;
|
|
+ pinctrl-names = "default";
|
|
+ tx_delay = <0x3a>;
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
+&mdio1 {
|
|
+ rgmii_phy1: ethernet-phy@1 {
|
|
+ /* RTL8211F */
|
|
+ compatible = "ethernet-phy-id001c.c916";
|
|
+ reg = <0x1>;
|
|
+ pinctrl-names = "default";
|
|
+ pinctrl-0 = <&rtl8211f_rst>;
|
|
+ reset-assert-us = <20000>;
|
|
+ reset-deassert-us = <100000>;
|
|
+ reset-gpios = <&gpio3 RK_PB7 GPIO_ACTIVE_LOW>;
|
|
+ };
|
|
+};
|
|
+
|
|
+&pinctrl {
|
|
+ rtl8211f {
|
|
+ rtl8211f_rst: rtl8211f-rst {
|
|
+ rockchip,pins = <3 RK_PB7 RK_FUNC_GPIO &pcfg_pull_none>;
|
|
+ };
|
|
+
|
|
+ };
|
|
+};
|
|
+
|
|
+&sdhci {
|
|
+ bus-width = <8>;
|
|
+ no-sdio;
|
|
+ no-sd;
|
|
+ non-removable;
|
|
+ max-frequency = <200000000>;
|
|
+ mmc-hs400-1_8v;
|
|
+ mmc-hs400-enhanced-strobe;
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
+&uart2 {
|
|
+ pinctrl-0 = <&uart2m0_xfer>;
|
|
+ status = "okay";
|
|
+};
|