mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
d94d14a5ed
Radxa ROCK 3A is a credit card sized SBC with rich interfaces[1] using the Rockchip RK3328 SoC. Hardware -------- - Rockchip RK3568 SoC - Quad Cortex-A55 CPU - Mail G52 GPU - 1 TOPs NPU - 2/4/8GB LPDDR4 RAM - 1x eMMC connector - 1x M.2 M Key (2-lane PCIe 3.0) supporting NVMe SSD - 1x Micro SD card slot - 1x 1000M Ethernet with PoE support (additional PoE HAT required) - 1x USB 3.0 Type-A port (Host) - 1x USB 3.0 Type-A port (OTG) - 2x USB 2.0 Type-A ports (Host) - 40 pin color GPIO header [1] https://radxa.com/products/rock3/3a Installation ------------ Uncompress the OpenWrt sysupgrade and write it to a micro SD card or internal eMMC using dd. Signed-off-by: FUKAUMI Naoki <naoki@radxa.com> Link: https://github.com/openwrt/openwrt/pull/15985 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
30 lines
764 B
Diff
30 lines
764 B
Diff
--- a/arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dts
|
|
+++ b/arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dts
|
|
@@ -15,6 +15,10 @@
|
|
ethernet0 = &gmac1;
|
|
mmc0 = &sdhci;
|
|
mmc1 = &sdmmc0;
|
|
+ led-boot = &led_blue;
|
|
+ led-failsafe = &led_blue;
|
|
+ led-running = &led_blue;
|
|
+ led-upgrade = &led_blue;
|
|
};
|
|
|
|
chosen: chosen {
|
|
@@ -42,11 +46,11 @@
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
- led_user: led-0 {
|
|
- gpios = <&gpio0 RK_PB7 GPIO_ACTIVE_HIGH>;
|
|
- function = LED_FUNCTION_HEARTBEAT;
|
|
+ led_blue: led-0 {
|
|
color = <LED_COLOR_ID_BLUE>;
|
|
- linux,default-trigger = "heartbeat";
|
|
+ default-state = "on";
|
|
+ function = LED_FUNCTION_HEARTBEAT;
|
|
+ gpios = <&gpio0 RK_PB7 GPIO_ACTIVE_HIGH>;
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&led_user_en>;
|
|
};
|