MIPS: add BMIPS Netgear DGND3700v2 board

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
diff --git a/arch/mips/dts/Makefile b/arch/mips/dts/Makefile
index 840dbf1..e80905c 100644
--- a/arch/mips/dts/Makefile
+++ b/arch/mips/dts/Makefile
@@ -15,6 +15,7 @@
 dtb-$(CONFIG_BOARD_COMTREND_WAP5813N) += comtrend,wap-5813n.dtb
 dtb-$(CONFIG_BOARD_HUAWEI_HG556A) += huawei,hg556a.dtb
 dtb-$(CONFIG_BOARD_NETGEAR_CG3100D) += netgear,cg3100d.dtb
+dtb-$(CONFIG_BOARD_NETGEAR_DGND3700V2) += netgear,dgnd3700v2.dtb
 dtb-$(CONFIG_BOARD_SAGEM_FAST1704) += sagem,f@st1704.dtb
 dtb-$(CONFIG_BOARD_TPLINK_WDR4300) += tplink_wdr4300.dtb
 
diff --git a/arch/mips/dts/netgear,dgnd3700v2.dts b/arch/mips/dts/netgear,dgnd3700v2.dts
new file mode 100644
index 0000000..9792e06
--- /dev/null
+++ b/arch/mips/dts/netgear,dgnd3700v2.dts
@@ -0,0 +1,121 @@
+/*
+ * Copyright (C) 2018 Álvaro Fernández Rojas <noltari@gmail.com>
+ *
+ * SPDX-License-Identifier:	GPL-2.0+
+ */
+
+/dts-v1/;
+
+#include "brcm,bcm6362.dtsi"
+
+/ {
+	model = "Netgear DGND3700v2";
+	compatible = "netgear,dgnd3700v2", "brcm,bcm6362";
+
+	aliases {
+		serial0 = &uart0;
+	};
+
+	chosen {
+		stdout-path = "serial0:115200n8";
+	};
+
+	gpio-leds {
+		compatible = "gpio-leds";
+
+		inet_green {
+			label = "DGND3700v2:green:inet";
+			gpios = <&gpio0 1 GPIO_ACTIVE_LOW>;
+		};
+
+		dsl_green {
+			label = "DGND3700v2:green:dsl";
+			gpios = <&gpio0 28 GPIO_ACTIVE_LOW>;
+		};
+
+		power_amber {
+			label = "DGND3700v2:red:power";
+			gpios = <&gpio1 2 GPIO_ACTIVE_LOW>;
+		};
+	};
+};
+
+&gpio0 {
+	status = "okay";
+};
+
+&gpio1 {
+	status = "okay";
+};
+
+&leds {
+	status = "okay";
+	brcm,serial-leds;
+	brcm,serial-dat-low;
+	brcm,serial-shift-inv;
+	brcm,serial-mux;
+
+	led@8 {
+		reg = <8>;
+		label = "DGND3700v2:green:power";
+	};
+
+	led@9 {
+		reg = <9>;
+		active-low;
+		label = "DGND3700v2:green:wps";
+	};
+
+	led@10 {
+		reg = <10>;
+		active-low;
+		label = "DGND3700v2:green:usb1";
+	};
+
+	led@11 {
+		reg = <11>;
+		active-low;
+		label = "DGND3700v2:green:usb2";
+	};
+
+	led@12 {
+		reg = <12>;
+		active-low;
+		label = "DGND3700v2:amber:inet";
+	};
+
+	led@13 {
+		reg = <13>;
+		active-low;
+		label = "DGND3700v2:green:ethernet";
+	};
+
+	led@14 {
+		reg = <14>;
+		active-low;
+		label = "DGND3700v2:amber:dsl";
+	};
+
+	led@16 {
+		reg = <16>;
+		active-low;
+		label = "DGND3700v2:amber:usb1";
+	};
+
+	led@17 {
+		reg = <17>;
+		active-low;
+		label = "DGND3700v2:amber:usb2";
+	};
+
+	led@18 {
+		reg = <18>;
+		active-low;
+		label = "DGND3700v2:amber:ethernet";
+	};
+};
+
+&uart0 {
+	u-boot,dm-pre-reloc;
+	status = "okay";
+};
diff --git a/arch/mips/mach-bmips/Kconfig b/arch/mips/mach-bmips/Kconfig
index 2cc6a6a..10900bf 100644
--- a/arch/mips/mach-bmips/Kconfig
+++ b/arch/mips/mach-bmips/Kconfig
@@ -200,6 +200,17 @@
 	  ethernet ports, 1 UART, GPIO buttons and LEDs, and a BCM43225
 	  (miniPCIe).
 
+config BOARD_NETGEAR_DGND3700V2
+	bool "Netgear DGND3700v2"
+	depends on SOC_BMIPS_BCM6362
+	select BMIPS_SUPPORTS_BOOT_RAM
+	help
+	  Netgear DGND3700v2 boards have a BCM6362 SoC with 64 MB of RAM and
+	  32 MB of flash (NAND).
+	  Between its different peripherals there's a BCM53125 switch with 5
+	  ethernet ports, 2 USB ports, 1 UART, GPIO buttons and LEDs, and a
+	  BCM43228 (miniPCIe).
+
 config BOARD_SAGEM_FAST1704
 	bool "Sagem F@ST1704"
 	depends on SOC_BMIPS_BCM6338
@@ -247,6 +258,7 @@
 source "board/comtrend/wap5813n/Kconfig"
 source "board/huawei/hg556a/Kconfig"
 source "board/netgear/cg3100d/Kconfig"
+source "board/netgear/dgnd3700v2/Kconfig"
 source "board/sagem/f@st1704/Kconfig"
 source "board/sfr/nb4_ser/Kconfig"