1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

ar71xx: add initial support for RB750GL

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31025 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg
2012-03-19 15:57:04 +00:00
parent c8aab4b6c2
commit fd48e871d0
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;