x86: add Gowin 1U Rack Mount Router Server
authorTil Kaiser <mail@tk154.de>
Sun, 29 Sep 2024 14:56:26 +0000 (16:56 +0200)
committerHauke Mehrtens <hauke@hauke-m.de>
Sat, 19 Oct 2024 17:10:56 +0000 (19:10 +0200)
There are three variants of that board:

--- Hardware Highlights ---
GW-BS-1UR1-10G:
 - CPU: Intel® Alder Lake N100 quad-core 3.4GHz
 - RAM: 16GB DDR5 4800MHz
 - Storage: Onboard 128GB eMMC, 2x NVME slots, 2x SATA slots
 - Ports: 2x 2.5G, 2x 1G, 1x POE, 2x 10G SFP+, 1x RJ45 Serial Port
 - WIFI: 1x M.2 slot
 - 4G/5G: 1x M.2 slot
 - USB: 2x 3.0, 2x 2.0
 - Button: 1x Power Button
 - Video: 1x HDMI, 1x VGA
 - LEDs: 4x

GW-BS-1UR2-10G:
 - CPU: Intel® Core™ i3-N305 octa-core 3.8GHz
 - RAM: 32GB DDR5 4800MHz
 - Storage: Onboard 128GB eMMC, 2x NVME slots, 2x SATA slots
 - Ports: 2x 2.5G, 2x 1G, 1x POE, 2x 10G SFP+, 1x RJ45 Serial Port
 - WIFI: 1x M.2 slot
 - 4G/5G: 1x M.2 slot
 - USB: 2x 3.0, 2x 2.0
 - Button: 1x Power Button
 - Video: 1x HDMI, 1x VGA
 - LEDs: 4x

GW-BS-1UR2-25G:
 - CPU: Intel® Core™ i3-N305 octa-core 3.8GHz
 - RAM: 32GB DDR5 4800MHz
 - Storage: Onboard 128GB eMMC, 2x NVME slots, 2x SATA slots
 - Ports: 2x 2.5G, 2x 1G, 1x POE, 2x 25G SFP+, 1x RJ45 Serial Port
 - WIFI: 1x M.2 slot
 - 4G/5G: 1x M.2 slot
 - USB: 2x 3.0, 2x 2.0
 - Button: 1x Power Button
 - Video: 1x HDMI, 1x VGA
 - LEDs: 4x

Signed-off-by: Til Kaiser <mail@tk154.de>
Link: https://github.com/openwrt/openwrt/pull/16560
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
target/linux/x86/base-files/etc/board.d/02_network

index c4c2d3fa21670850e0f8056683f4e87f8ab5f58e..dc744db05d63157109c3c91f49326d1fe3a77d07 100644 (file)
@@ -34,6 +34,32 @@ cisco-mx100-hw)
 dell-emc-edge620)
        ucidef_set_interfaces_lan_wan "eth0 eth1 eth2 eth3 eth7" "eth6"
        ;;
+gowin-solution-co-ltd-gw-mb-u01)
+       ucidef_set_network_device_path "eth1" "pci0000:00/0000:00:1c.0/0000:01:00.0/0000:02:02.0/0000:04:00.0"
+       ucidef_set_network_device_path "eth2" "pci0000:00/0000:00:1c.0/0000:01:00.0/0000:02:00.0/0000:03:00.0"
+       ucidef_set_network_device_path "eth3" "pci0000:00/0000:00:1c.2/0000:07:00.0/0000:08:02.0/0000:0a:00.0"
+       ucidef_set_network_device_path "eth4" "pci0000:00/0000:00:1c.2/0000:07:00.0/0000:08:00.0/0000:09:00.0"
+       ucidef_set_network_device_path "poe"  "pci0000:00/0000:00:1c.2/0000:07:00.0/0000:08:06.0/0000:0b:00.0"
+
+       sfp_device="pci0000:00/0000:00:1d.0"
+       sfp_device_path="/sys/devices/$sfp_device"
+
+       pci_count="$(ls -d $sfp_device_path/0000:*:00.* 2>/dev/null | wc -l)"
+       if [ "$pci_count" -eq 2 ]; then
+               sfp_port1="$(basename $sfp_device_path/0000:*:00.1)"
+               sfp_port2="$(basename $sfp_device_path/0000:*:00.0)"
+
+               ucidef_set_network_device_path "sfp1" "$sfp_device/$sfp_port1"
+               ucidef_set_network_device_path "sfp2" "$sfp_device/$sfp_port2"
+       elif [ "$pci_count" -eq 1 ]; then
+               sfp_port="$(basename $sfp_device_path/0000:*:00.0)"
+
+               ucidef_set_network_device_path_port "sfp1" "$sfp_device/$sfp_port" "1"
+               ucidef_set_network_device_path_port "sfp2" "$sfp_device/$sfp_port" "0"
+       fi
+
+       ucidef_set_interface_lan "eth1 eth2 eth3 eth4"
+       ;;
 pc-engines-apu1|pc-engines-apu2|pc-engines-apu3)
        ucidef_set_interfaces_lan_wan "eth1 eth2" "eth0"
        ;;