ar71xx: register extra leds behind the wireless mac on wzr-hp-g450h
SVN-Revision: 29531
This commit is contained in:
parent
e3017bc05e
commit
b878f4a927
3 changed files with 26 additions and 0 deletions
|
@ -42,6 +42,12 @@ static int ap91_pci_plat_dev_init(struct pci_dev *dev)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
__init void ap91_pci_setup_wmac_leds(struct gpio_led *leds, int num_leds)
|
||||||
|
{
|
||||||
|
ap91_wmac_data.leds = leds;
|
||||||
|
ap91_wmac_data.num_leds = num_leds;
|
||||||
|
}
|
||||||
|
|
||||||
__init void ap91_pci_setup_wmac_led_pin(int pin)
|
__init void ap91_pci_setup_wmac_led_pin(int pin)
|
||||||
{
|
{
|
||||||
ap91_wmac_data.led_pin = pin;
|
ap91_wmac_data.led_pin = pin;
|
||||||
|
|
|
@ -11,14 +11,18 @@
|
||||||
#ifndef _AR71XX_DEV_AP91_PCI_H
|
#ifndef _AR71XX_DEV_AP91_PCI_H
|
||||||
#define _AR71XX_DEV_AP91_PCI_H
|
#define _AR71XX_DEV_AP91_PCI_H
|
||||||
|
|
||||||
|
#include <linux/leds.h>
|
||||||
|
|
||||||
#if defined(CONFIG_AR71XX_DEV_AP91_PCI)
|
#if defined(CONFIG_AR71XX_DEV_AP91_PCI)
|
||||||
void ap91_pci_init(u8 *cal_data, u8 *mac_addr) __init;
|
void ap91_pci_init(u8 *cal_data, u8 *mac_addr) __init;
|
||||||
void ap91_pci_setup_wmac_led_pin(int pin) __init;
|
void ap91_pci_setup_wmac_led_pin(int pin) __init;
|
||||||
void ap91_pci_setup_wmac_gpio(u32 mask, u32 val) __init;
|
void ap91_pci_setup_wmac_gpio(u32 mask, u32 val) __init;
|
||||||
|
void ap91_pci_setup_wmac_leds(struct gpio_led *leds, int num_leds) __init;
|
||||||
#else
|
#else
|
||||||
static inline void ap91_pci_init(u8 *cal_data, u8 *mac_addr) { }
|
static inline void ap91_pci_init(u8 *cal_data, u8 *mac_addr) { }
|
||||||
static inline void ap91_pci_setup_wmac_led_pin(int pin) { }
|
static inline void ap91_pci_setup_wmac_led_pin(int pin) { }
|
||||||
static inline void ap91_pci_setup_wmac_gpio(u32 mask, u32 gpio) { }
|
static inline void ap91_pci_setup_wmac_gpio(u32 mask, u32 gpio) { }
|
||||||
|
static inline void ap91_pci_setup_wmac_leds(struct gpio_led *leds, int num_leds) { };
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* _AR71XX_DEV_AP91_PCI_H */
|
#endif /* _AR71XX_DEV_AP91_PCI_H */
|
||||||
|
|
|
@ -82,6 +82,20 @@ static struct gpio_led wzrhpg450h_leds_gpio[] __initdata = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
static struct gpio_led wzrhpg450h_wmac_leds_gpio[] = {
|
||||||
|
{
|
||||||
|
.name = "buffalo:blue:movie_engine",
|
||||||
|
.gpio = 13,
|
||||||
|
.active_low = 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.name = "buffalo:green:router",
|
||||||
|
.gpio = 14,
|
||||||
|
.active_low = 1,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
static struct gpio_keys_button wzrhpg450h_gpio_keys[] __initdata = {
|
static struct gpio_keys_button wzrhpg450h_gpio_keys[] __initdata = {
|
||||||
{
|
{
|
||||||
.desc = "reset",
|
.desc = "reset",
|
||||||
|
@ -151,6 +165,8 @@ static void __init wzrhpg450h_init(void)
|
||||||
|
|
||||||
ap91_pci_init(ee, NULL);
|
ap91_pci_init(ee, NULL);
|
||||||
ap91_pci_setup_wmac_led_pin(15);
|
ap91_pci_setup_wmac_led_pin(15);
|
||||||
|
ap91_pci_setup_wmac_leds(wzrhpg450h_wmac_leds_gpio,
|
||||||
|
ARRAY_SIZE(wzrhpg450h_wmac_leds_gpio));
|
||||||
}
|
}
|
||||||
|
|
||||||
MIPS_MACHINE(AR71XX_MACH_WZR_HP_G450H, "WZR-HP-G450H", "Buffalo WZR-HP-G450H",
|
MIPS_MACHINE(AR71XX_MACH_WZR_HP_G450H, "WZR-HP-G450H", "Buffalo WZR-HP-G450H",
|
||||||
|
|
Loading…
Reference in a new issue