mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-29 18:19:02 +00:00
6da3194127
This patch adds supports for the NETGEAR R6200 V1 This device is mainlined in Linux as of 5.4 Specification: - SOC: Broadcom BCM4718A1 (480 MHz) - Flash: 16MB (Macronix MX25L128) - RAM: 128MB DDR2 - SWITCH: BCM53125 - Ethernet: 5x GE (1 WAN + 4 LAN, Inverted order) - WLAN 2.4G: In SOC - WLAN 5GHz: miniPCIe card, BCM4352 (ID: 4360) - USB: 1x USB 2.0 port (Type A) - Buttons: Reset, WLAN, WPS - LED: Amber for Power, others need a workaround - UART: 1x UART on PCB LED Issues: They are controlled by a 74HC164 via bit banging(GPIO 6/7) Firmware Install Instructions ============================= Using the device specific .chk, use that file to perform a normal device upgrade in the OEM admin page. Signed-off-by: Edward Matijevic <motolav@gmail.com>
47 lines
1.9 KiB
Diff
47 lines
1.9 KiB
Diff
--- a/arch/mips/bcm47xx/board.c
|
|
+++ b/arch/mips/bcm47xx/board.c
|
|
@@ -160,6 +160,7 @@ struct bcm47xx_board_type_list1 bcm47xx_board_list_board_id[] __initconst = {
|
|
{{BCM47XX_BOARD_LUXUL_XVW_P30_V1, "Luxul XVW-P30 V1"}, "luxul_xvwp30_v1"},
|
|
{{BCM47XX_BOARD_LUXUL_XWR_600_V1, "Luxul XWR-600 V1"}, "luxul_xwr600_v1"},
|
|
{{BCM47XX_BOARD_LUXUL_XWR_1750_V1, "Luxul XWR-1750 V1"}, "luxul_xwr1750_v1"},
|
|
+ {{BCM47XX_BOARD_NETGEAR_R6200_V1, "Netgear R6200 V1"}, "U12H192T00_NETGEAR"},
|
|
{{BCM47XX_BOARD_NETGEAR_WGR614V8, "Netgear WGR614 V8"}, "U12H072T00_NETGEAR"},
|
|
{{BCM47XX_BOARD_NETGEAR_WGR614V9, "Netgear WGR614 V9"}, "U12H094T00_NETGEAR"},
|
|
{{BCM47XX_BOARD_NETGEAR_WGR614_V10, "Netgear WGR614 V10"}, "U12H139T01_NETGEAR"},
|
|
--- a/arch/mips/bcm47xx/buttons.c
|
|
+++ b/arch/mips/bcm47xx/buttons.c
|
|
@@ -384,6 +384,13 @@ bcm47xx_buttons_motorola_wr850gv2v3[] __initconst = {
|
|
|
|
/* Netgear */
|
|
|
|
+static const struct gpio_keys_button
|
|
+bcm47xx_buttons_netgear_r6200_v1[] __initconst = {
|
|
+ BCM47XX_GPIO_KEY(2, KEY_RFKILL),
|
|
+ BCM47XX_GPIO_KEY(3, KEY_RESTART),
|
|
+ BCM47XX_GPIO_KEY(4, KEY_WPS_BUTTON),
|
|
+};
|
|
+
|
|
static const struct gpio_keys_button
|
|
bcm47xx_buttons_netgear_wndr3400v1[] __initconst = {
|
|
BCM47XX_GPIO_KEY(4, KEY_RESTART),
|
|
@@ -664,6 +671,9 @@ int __init bcm47xx_buttons_register(void)
|
|
err = bcm47xx_copy_bdata(bcm47xx_buttons_motorola_wr850gv2v3);
|
|
break;
|
|
|
|
+ case BCM47XX_BOARD_NETGEAR_R6200_V1:
|
|
+ err = bcm47xx_copy_bdata(bcm47xx_buttons_netgear_r6200_v1);
|
|
+ break;
|
|
case BCM47XX_BOARD_NETGEAR_WNDR3400V1:
|
|
err = bcm47xx_copy_bdata(bcm47xx_buttons_netgear_wndr3400v1);
|
|
break;
|
|
--- a/arch/mips/include/asm/mach-bcm47xx/bcm47xx_board.h
|
|
+++ b/arch/mips/include/asm/mach-bcm47xx/bcm47xx_board.h
|
|
@@ -98,6 +98,7 @@ enum bcm47xx_board {
|
|
BCM47XX_BOARD_MOTOROLA_WR850GP,
|
|
BCM47XX_BOARD_MOTOROLA_WR850GV2V3,
|
|
|
|
+ BCM47XX_BOARD_NETGEAR_R6200_V1,
|
|
BCM47XX_BOARD_NETGEAR_WGR614V8,
|
|
BCM47XX_BOARD_NETGEAR_WGR614V9,
|
|
BCM47XX_BOARD_NETGEAR_WGR614_V10,
|