Skip to content

Commit 6269d0f

Browse files
committed
rockchip: add seewo srcm3588/expand support
1 parent 2eb1836 commit 6269d0f

File tree

6 files changed

+938
-2
lines changed

6 files changed

+938
-2
lines changed

package/boot/uboot-rockchip/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,9 @@ define U-Boot/generic-rk3588
299299
$(U-Boot/rk3588/Default)
300300
NAME:=Generic RK3588
301301
BUILD_DEVICES:= \
302-
hinlink_owl-h88k
302+
hinlink_owl-h88k \
303+
seewo_srcm3588-io \
304+
seewo_srcm3588-sw
303305
endef
304306

305307
define U-Boot/nanopc-t6-rk3588

target/linux/rockchip/armv8/base-files/etc/board.d/02_network

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ rockchip_setup_interfaces()
2020
friendlyarm,nanopi-r6c|\
2121
hinlink,opc-h66k|\
2222
rocktech,mpc1903|\
23+
seewo,srcm3588-io|\
2324
sharevdi,h3399pc|\
2425
sharevdi,guangmiao-g4c|\
2526
xunlong,orangepi-r1-plus|\
@@ -46,7 +47,8 @@ rockchip_setup_interfaces()
4647
hinlink,opc-h68k)
4748
ucidef_set_interfaces_lan_wan 'eth0 eth2 eth3' 'eth1'
4849
;;
49-
friendlyarm,nanopi-r6s)
50+
friendlyarm,nanopi-r6s|\
51+
seewo,srcm3588-sw)
5052
ucidef_set_interfaces_lan_wan 'eth0 eth2' 'eth1'
5153
;;
5254
hinlink,opc-h69k|\
@@ -109,6 +111,7 @@ rockchip_setup_macs()
109111
hinlink,opc-h69k|\
110112
rocktech,mpc1903|\
111113
rumu3f,fine-3399|\
114+
seewo,srcm3588-*|\
112115
sharevdi,h3399pc)
113116
wan_mac=$(macaddr_generate_from_mmc_cid mmcblk0)
114117
lan_mac=$(macaddr_add "$wan_mac" +1)
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/sh /etc/rc.common
2+
3+
START=99
4+
5+
boot() {
6+
case $(board_name) in
7+
seewo,srcm3588*)
8+
echo 1 > /sys/bus/pci/rescan
9+
;;
10+
esac
11+
}

0 commit comments

Comments
 (0)