2 * Compex WP543/WPJ543 board support
4 * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published
9 * by the Free Software Foundation.
12 #include <linux/mtd/mtd.h>
13 #include <linux/mtd/partitions.h>
15 #include <asm/mach-ar71xx/ar71xx.h>
19 #include "dev-m25p80.h"
20 #include "dev-pb42-pci.h"
21 #include "dev-gpio-buttons.h"
22 #include "dev-leds-gpio.h"
25 #define WP543_GPIO_SW6 2
26 #define WP543_GPIO_LED_1 3
27 #define WP543_GPIO_LED_2 4
28 #define WP543_GPIO_LED_WLAN 5
29 #define WP543_GPIO_LED_CONN 6
30 #define WP543_GPIO_LED_DIAG 7
31 #define WP543_GPIO_SW4 8
33 #define WP543_KEYS_POLL_INTERVAL 20 /* msecs */
34 #define WP543_KEYS_DEBOUNCE_INTERVAL (3 * WP543_KEYS_POLL_INTERVAL)
36 static struct gpio_led wp543_leds_gpio
[] __initdata
= {
38 .name
= "wp543:green:led1",
39 .gpio
= WP543_GPIO_LED_1
,
42 .name
= "wp543:green:led2",
43 .gpio
= WP543_GPIO_LED_2
,
46 .name
= "wp543:green:wlan",
47 .gpio
= WP543_GPIO_LED_WLAN
,
50 .name
= "wp543:green:conn",
51 .gpio
= WP543_GPIO_LED_CONN
,
54 .name
= "wp543:green:diag",
55 .gpio
= WP543_GPIO_LED_DIAG
,
60 static struct gpio_keys_button wp543_gpio_keys
[] __initdata
= {
65 .debounce_interval
= WP543_KEYS_DEBOUNCE_INTERVAL
,
66 .gpio
= WP543_GPIO_SW6
,
71 .debounce_interval
= WP543_KEYS_DEBOUNCE_INTERVAL
,
72 .gpio
= WP543_GPIO_SW4
,
76 static void __init
wp543_setup(void)
78 ar71xx_add_device_m25p80(NULL
);
80 ar71xx_add_device_mdio(0, 0xfffffff7);
82 ar71xx_init_mac(ar71xx_eth0_data
.mac_addr
, ar71xx_mac_base
, 0);
83 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_MII
;
84 ar71xx_eth0_data
.phy_mask
= 0x08;
85 ar71xx_eth0_data
.reset_bit
= RESET_MODULE_GE0_MAC
|
87 ar71xx_add_device_eth(0);
89 ar71xx_add_device_usb();
93 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(wp543_leds_gpio
),
96 ar71xx_register_gpio_keys_polled(-1, WP543_KEYS_POLL_INTERVAL
,
97 ARRAY_SIZE(wp543_gpio_keys
),
101 MIPS_MACHINE(AR71XX_MACH_WP543
, "WP543", "Compex WP543", wp543_setup
);