Root/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c

1/*
2 * Compex WP543/WPJ543 board support
3 *
4 * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6 *
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.
10 */
11
12#include <linux/mtd/mtd.h>
13#include <linux/mtd/partitions.h>
14
15#include <asm/mach-ar71xx/ar71xx.h>
16
17#include "machtype.h"
18#include "devices.h"
19#include "dev-m25p80.h"
20#include "dev-pb42-pci.h"
21#include "dev-gpio-buttons.h"
22#include "dev-leds-gpio.h"
23#include "dev-usb.h"
24
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
32
33#define WP543_BUTTONS_POLL_INTERVAL 20
34
35static struct gpio_led wp543_leds_gpio[] __initdata = {
36    {
37        .name = "wp543:green:led1",
38        .gpio = WP543_GPIO_LED_1,
39        .active_low = 1,
40    }, {
41        .name = "wp543:green:led2",
42        .gpio = WP543_GPIO_LED_2,
43        .active_low = 1,
44    }, {
45        .name = "wp543:green:wlan",
46        .gpio = WP543_GPIO_LED_WLAN,
47        .active_low = 1,
48    }, {
49        .name = "wp543:green:conn",
50        .gpio = WP543_GPIO_LED_CONN,
51        .active_low = 1,
52    }, {
53        .name = "wp543:green:diag",
54        .gpio = WP543_GPIO_LED_DIAG,
55        .active_low = 1,
56    }
57};
58
59static struct gpio_button wp543_gpio_buttons[] __initdata = {
60    {
61        .desc = "sw6",
62        .type = EV_KEY,
63        .code = BTN_0,
64        .threshold = 3,
65        .gpio = WP543_GPIO_SW6,
66    }, {
67        .desc = "sw4",
68        .type = EV_KEY,
69        .code = BTN_1,
70        .threshold = 3,
71        .gpio = WP543_GPIO_SW4,
72    }
73};
74
75static void __init wp543_setup(void)
76{
77    ar71xx_add_device_m25p80(NULL);
78
79    ar71xx_add_device_mdio(0xfffffff7);
80
81    ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
82    ar71xx_eth0_data.phy_mask = 0x08;
83    ar71xx_eth0_data.reset_bit = RESET_MODULE_GE0_MAC |
84                     RESET_MODULE_GE0_PHY;
85    ar71xx_add_device_eth(0);
86
87    ar71xx_add_device_usb();
88
89    pb42_pci_init();
90
91    ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(wp543_leds_gpio),
92                    wp543_leds_gpio);
93
94    ar71xx_add_device_gpio_buttons(-1, WP543_BUTTONS_POLL_INTERVAL,
95                    ARRAY_SIZE(wp543_gpio_buttons),
96                    wp543_gpio_buttons);
97}
98
99MIPS_MACHINE(AR71XX_MACH_WP543, "WP543", "Compex WP543", wp543_setup);
100

Archive Download this file



interactive