From f50b0627a23493877f17f0e55dd6e6f9d2795526 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Thu, 9 Mar 2023 19:30:57 +0000 Subject: [PATCH] gl-mt300n-v2: initialize switch & define networkInterfaces It booted and mounted rootfs the first time I tried, which was nice. Wireless doesn't work yet, it needs firmware --- devices/gl-mt300n-v2/default.nix | 57 ++++++++++++++++++++++++++++++-- 1 file changed, 54 insertions(+), 3 deletions(-) diff --git a/devices/gl-mt300n-v2/default.nix b/devices/gl-mt300n-v2/default.nix index c232689..140569b 100644 --- a/devices/gl-mt300n-v2/default.nix +++ b/devices/gl-mt300n-v2/default.nix @@ -11,8 +11,10 @@ }; }; - module = { pkgs, ...}: + module = { pkgs, config, ...}: let + inherit (pkgs.liminix.networking) interface; + inherit (pkgs.liminix.services) oneshot; openwrt = pkgs.fetchFromGitHub { name = "openwrt-source"; repo = "openwrt"; @@ -20,24 +22,64 @@ rev = "a5265497a4f6da158e95d6a450cb2cb6dc085cab"; hash = "sha256-YYi4gkpLjbOK7bM2MGQjAyEBuXJ9JNXoz/JEmYf8xE8="; }; + mac80211 = pkgs.mac80211.override { + drivers = ["mt7603e"]; + klibBuild = config.outputs.kernel.modulesupport; + }; in { hardware = { defaultOutput = "tftproot"; loadAddress = "0x80000000"; entryPoint = "0x80000000"; - radios = ["mt7603e"]; dts = { src = "${openwrt}/target/linux/ramips/dts/mt7628an_glinet_gl-mt300n-v2.dts"; includes = [ "${openwrt}/target/linux/ramips/dts" ]; }; + networkInterfaces = rec { + # lan and wan ports are both behind a switch on eth0 + eth = + let swconfig = oneshot { + name = "swconfig"; + up = '' + PATH=${pkgs.swconfig}/bin:$PATH + swconfig dev switch0 set reset + swconfig dev switch0 set enable_vlan 1 + swconfig dev switch0 vlan 1 set ports '1 2 3 4 6t' + swconfig dev switch0 vlan 2 set ports '0 6t' + swconfig dev switch0 set apply + ''; + down = "swconfig dev switch0 set reset"; + }; + in interface { + device = "eth0"; + dependencies = [swconfig]; + }; + lan = interface { + type = "vlan"; + device = "eth0.1"; + link = "eth0"; + id = "1"; + dependencies = [eth]; + }; + wan = interface { + type = "vlan"; + device = "eth0.2"; + id = "2"; + link = "eth0"; + dependencies = [eth]; + }; + wlan = interface { + device = "wlan0"; + dependencies = [ mac80211 ]; + }; + }; }; boot.tftp = { loadAddress = "0x00A00000"; }; - kernel = { src = pkgs.fetchurl { name = "linux.tar.gz"; @@ -101,9 +143,18 @@ NET_RALINK_RT3050 = "y"; NET_RALINK_SOC="y"; + # both the ethernet ports on this device (lan and wan) + # are behind a switch, so we need VLANs to do anything + # useful with them + + VLAN_8021Q = "y"; SWCONFIG = "y"; SWPHY = "y"; + BRIDGE = "y"; + BRIDGE_VLAN_FILTERING = "y"; + BRIDGE_IGMP_SNOOPING = "y"; + GPIOLIB="y"; GPIO_MT7621 = "y";