2
0
forked from Ivasoft/openwrt

ar71xx: add initial support for RB750GL

SVN-Revision: 31025
This commit is contained in:
Gabor Juhos
2012-03-19 15:57:04 +00:00
parent d19f3dd512
commit 8a2e4b49de
6 changed files with 180 additions and 0 deletions

View File

@@ -50,6 +50,16 @@
#define RB750_LED_BITS (RB750_LED_PORT1 | RB750_LED_PORT2 | RB750_LED_PORT3 | \
RB750_LED_PORT4 | RB750_LED_PORT5 | RB750_LED_ACT)
#define RB7XX_GPIO_NAND_NCE 0
#define RB7XX_GPIO_MON 9
#define RB7XX_GPIO_LED_ACT 11
#define RB7XX_GPIO_USB_POWERON 13
#define RB7XX_NAND_NCE BIT(RB7XX_GPIO_NAND_NCE)
#define RB7XX_LED_ACT BIT(RB7XX_GPIO_LED_ACT)
#define RB7XX_MONITOR BIT(RB7XX_GPIO_MON)
#define RB7XX_USB_POWERON BIT(RB7XX_GPIO_USB_POWERON)
struct rb750_led_data {
char *name;
char *default_trigger;