From e52c57bb1b30375e0bcc5523db76a672a4a8b4a4 Mon Sep 17 00:00:00 2001 From: Til Kaiser Date: Sun, 29 Sep 2024 16:56:26 +0200 Subject: [PATCH] x86: add Gowin 1U Rack Mount Router Server MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 Link: https://github.com/openwrt/openwrt/pull/16560 Signed-off-by: Hauke Mehrtens --- .../x86/base-files/etc/board.d/02_network | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/target/linux/x86/base-files/etc/board.d/02_network b/target/linux/x86/base-files/etc/board.d/02_network index c4c2d3fa21..dc744db05d 100644 --- a/target/linux/x86/base-files/etc/board.d/02_network +++ b/target/linux/x86/base-files/etc/board.d/02_network @@ -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" ;; -- 2.30.2