mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
00952fb0ca
Replace "320-MIPS-BCM47XX-Devices-database-update-for-4.x.patch" with upstream patches: - 320-v5.17-MIPS-BCM47XX-Add-board-entry-for-Linksys-WRT320N-v1.patch - 321-v5.17-MIPS-BCM47XX-Add-support-for-Netgear-R6300-v1.patch - 322-v5.17-MIPS-BCM47XX-Add-support-for-Netgear-WN2500RP-v1-v2.patch - 323-v6.0-MIPS-BCM47XX-Add-support-for-Netgear-WNR3500L-v2.patch - 324-v5.17-MIPS-BCM47XX-Add-LEDs-and-buttons-for-Asus-RTN-10U.patch - 325-v5.17-MIPS-BCM47XX-Define-Linksys-WRT310N-V2-buttons.patch Signed-off-by: Nick Hainke <vincent@systemli.org>
68 lines
2.2 KiB
Diff
68 lines
2.2 KiB
Diff
From aecf89f2f8e8a604c33085c230a1f04ea325de64 Mon Sep 17 00:00:00 2001
|
|
From: Florian Fainelli <f.fainelli@gmail.com>
|
|
Date: Thu, 6 Jan 2022 19:51:39 -0800
|
|
Subject: [PATCH] MIPS: BCM47XX: Add LEDs and buttons for Asus RTN-10U
|
|
|
|
Add the definitions for the buttons and LEDs used on the Asus RTN-10U
|
|
router.
|
|
|
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
|
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
|
|
---
|
|
arch/mips/bcm47xx/buttons.c | 9 +++++++++
|
|
arch/mips/bcm47xx/leds.c | 11 +++++++++++
|
|
2 files changed, 20 insertions(+)
|
|
|
|
--- a/arch/mips/bcm47xx/buttons.c
|
|
+++ b/arch/mips/bcm47xx/buttons.c
|
|
@@ -27,6 +27,12 @@
|
|
/* Asus */
|
|
|
|
static const struct gpio_keys_button
|
|
+bcm47xx_buttons_asus_rtn10u[] __initconst = {
|
|
+ BCM47XX_GPIO_KEY(20, KEY_WPS_BUTTON),
|
|
+ BCM47XX_GPIO_KEY(21, KEY_RESTART),
|
|
+};
|
|
+
|
|
+static const struct gpio_keys_button
|
|
bcm47xx_buttons_asus_rtn12[] __initconst = {
|
|
BCM47XX_GPIO_KEY(0, KEY_WPS_BUTTON),
|
|
BCM47XX_GPIO_KEY(1, KEY_RESTART),
|
|
@@ -502,6 +508,9 @@ int __init bcm47xx_buttons_register(void
|
|
int err;
|
|
|
|
switch (board) {
|
|
+ case BCM47XX_BOARD_ASUS_RTN10U:
|
|
+ err = bcm47xx_copy_bdata(bcm47xx_buttons_asus_rtn10u);
|
|
+ break;
|
|
case BCM47XX_BOARD_ASUS_RTN12:
|
|
err = bcm47xx_copy_bdata(bcm47xx_buttons_asus_rtn12);
|
|
break;
|
|
--- a/arch/mips/bcm47xx/leds.c
|
|
+++ b/arch/mips/bcm47xx/leds.c
|
|
@@ -30,6 +30,14 @@
|
|
/* Asus */
|
|
|
|
static const struct gpio_led
|
|
+bcm47xx_leds_asus_rtn10u[] __initconst = {
|
|
+ BCM47XX_GPIO_LED(5, "green", "wlan", 0, LEDS_GPIO_DEFSTATE_OFF),
|
|
+ BCM47XX_GPIO_LED(6, "green", "power", 1, LEDS_GPIO_DEFSTATE_ON),
|
|
+ BCM47XX_GPIO_LED(7, "green", "wps", 0, LEDS_GPIO_DEFSTATE_OFF),
|
|
+ BCM47XX_GPIO_LED(8, "green", "usb", 0, LEDS_GPIO_DEFSTATE_OFF),
|
|
+};
|
|
+
|
|
+static const struct gpio_led
|
|
bcm47xx_leds_asus_rtn12[] __initconst = {
|
|
BCM47XX_GPIO_LED(2, "unk", "power", 1, LEDS_GPIO_DEFSTATE_ON),
|
|
BCM47XX_GPIO_LED(7, "unk", "wlan", 0, LEDS_GPIO_DEFSTATE_OFF),
|
|
@@ -571,6 +579,9 @@ void __init bcm47xx_leds_register(void)
|
|
enum bcm47xx_board board = bcm47xx_board_get();
|
|
|
|
switch (board) {
|
|
+ case BCM47XX_BOARD_ASUS_RTN10U:
|
|
+ bcm47xx_set_pdata(bcm47xx_leds_asus_rtn10u);
|
|
+ break;
|
|
case BCM47XX_BOARD_ASUS_RTN12:
|
|
bcm47xx_set_pdata(bcm47xx_leds_asus_rtn12);
|
|
break;
|