[adm5120] add 2.6.26 specific files
[openwrt/svn-archive/archive.git] / target / linux / adm5120 / files-2.6.26 / arch / mips / adm5120 / mikrotik / rb-11x.c
1 /*
2 * Mikrotik RouterBOARD 111/112 support
3 *
4 * Copyright (C) 2007-2008 Gabor Juhos <juhosg@openwrt.org>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 */
11
12 #include "rb-1xx.h"
13
14 static struct gpio_led rb11x_gpio_leds[] __initdata = {
15 GPIO_LED_STD(ADM5120_GPIO_PIN3, "user", NULL),
16 GPIO_LED_INV(ADM5120_GPIO_P0L1, "lan_speed", NULL),
17 GPIO_LED_INV(ADM5120_GPIO_P0L0, "lan_lnkact", NULL),
18 };
19
20 static u8 rb11x_vlans[6] __initdata = {
21 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00
22 };
23
24 static void __init rb11x_setup(void)
25 {
26 rb1xx_generic_setup();
27 rb1xx_add_device_nand();
28
29 adm5120_add_device_switch(1, rb11x_vlans);
30 adm5120_add_device_gpio(0);
31 adm5120_add_device_gpio_leds(ARRAY_SIZE(rb11x_gpio_leds),
32 rb11x_gpio_leds);
33 }
34
35 ADM5120_BOARD(MACH_ADM5120_RB_11X, "Mikrotik RouterBOARD 111/112", rb11x_setup);