1/*
2 *  ZyXEL Prestige P-334WT 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 "p-33x.h"
13
14static struct gpio_led p334wt_gpio_leds[] __initdata = {
15	GPIO_LED_INV(ADM5120_GPIO_PIN2, "power",	NULL),
16	GPIO_LED_INV(ADM5120_GPIO_P3L0, "lan1",		NULL),
17	GPIO_LED_INV(ADM5120_GPIO_P2L0, "lan2",		NULL),
18	GPIO_LED_INV(ADM5120_GPIO_P1L0, "lan3",		NULL),
19	GPIO_LED_INV(ADM5120_GPIO_P0L0, "lan4",		NULL),
20	GPIO_LED_INV(ADM5120_GPIO_P4L0, "wan",		NULL),
21	GPIO_LED_INV(ADM5120_GPIO_P4L2, "wlan",		NULL),
22	GPIO_LED_INV(ADM5120_GPIO_P2L2, "otist",	NULL),
23	GPIO_LED_INV(ADM5120_GPIO_P1L2, "hidden",	NULL),
24};
25
26static void __init p334wt_setup(void)
27{
28	p33x_generic_setup();
29	adm5120_add_device_gpio_leds(ARRAY_SIZE(p334wt_gpio_leds),
30					p334wt_gpio_leds);
31}
32
33MIPS_MACHINE(MACH_ADM5120_P334WT, "P-334WT", "ZyXEL Prestige 334WT",
34	     p334wt_setup);
35