2 * Atheros AP81 board support
4 * Copyright (C) 2009 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2009 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-ar913x-wmac.h"
21 #include "dev-gpio-buttons.h"
22 #include "dev-leds-gpio.h"
25 #define AP81_GPIO_LED_STATUS 1
26 #define AP81_GPIO_LED_AOSS 3
27 #define AP81_GPIO_LED_WLAN 6
28 #define AP81_GPIO_LED_POWER 14
30 #define AP81_GPIO_BTN_SW4 12
31 #define AP81_GPIO_BTN_SW1 21
33 #define AP81_BUTTONS_POLL_INTERVAL 20
35 #ifdef CONFIG_MTD_PARTITIONS
36 static struct mtd_partition ap81_partitions
[] = {
41 .mask_flags
= MTD_WRITEABLE
,
58 .mask_flags
= MTD_WRITEABLE
,
61 #endif /* CONFIG_MTD_PARTITIONS */
63 static struct flash_platform_data ap81_flash_data
= {
64 #ifdef CONFIG_MTD_PARTITIONS
65 .parts
= ap81_partitions
,
66 .nr_parts
= ARRAY_SIZE(ap81_partitions
),
70 static struct gpio_led ap81_leds_gpio
[] __initdata
= {
72 .name
= "ap81:green:status",
73 .gpio
= AP81_GPIO_LED_STATUS
,
76 .name
= "ap81:amber:aoss",
77 .gpio
= AP81_GPIO_LED_AOSS
,
80 .name
= "ap81:green:wlan",
81 .gpio
= AP81_GPIO_LED_WLAN
,
84 .name
= "ap81:green:power",
85 .gpio
= AP81_GPIO_LED_POWER
,
90 static struct gpio_button ap81_gpio_buttons
[] __initdata
= {
96 .gpio
= AP81_GPIO_BTN_SW1
,
103 .gpio
= AP81_GPIO_BTN_SW4
,
108 static void __init
ap81_setup(void)
110 u8
*mac
= (u8
*) KSEG1ADDR(0x1fff1000);
112 ar71xx_set_mac_base(mac
);
113 ar71xx_add_device_mdio(0x0);
115 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
116 ar71xx_eth0_data
.phy_mask
= 0xf;
117 ar71xx_eth0_data
.speed
= SPEED_100
;
118 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
119 ar71xx_eth0_data
.has_ar8216
= 1;
121 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
122 ar71xx_eth1_data
.phy_mask
= 0x10;
124 ar71xx_add_device_eth(0);
125 ar71xx_add_device_eth(1);
127 ar71xx_add_device_usb();
129 ar71xx_add_device_m25p80(&ap81_flash_data
);
131 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(ap81_leds_gpio
),
134 ar71xx_add_device_gpio_buttons(-1, AP81_BUTTONS_POLL_INTERVAL
,
135 ARRAY_SIZE(ap81_gpio_buttons
),
138 ar913x_add_device_wmac();
141 MIPS_MACHINE(AR71XX_MACH_AP81
, "Atheros AP81", ap81_setup
);