2 * Atheros DB120 board (WASP SoC) support
4 * Copyright (C) 2010-2011 Jaiganesh Narayanan <jnarayanan@atheros.com>
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.
11 #include <linux/mtd/mtd.h>
12 #include <linux/mtd/partitions.h>
14 #include <asm/mach-ar71xx/ar71xx.h>
18 #include "dev-m25p80.h"
19 #include "dev-gpio-buttons.h"
20 #include "dev-leds-gpio.h"
22 #include "dev-ar9xxx-wmac.h"
23 #include "dev-db120-pci.h"
25 #define DB120_GPIO_LED_USB 11
26 #define DB120_GPIO_LED_WLAN_5G 12
27 #define DB120_GPIO_LED_WLAN_2G 13
28 #define DB120_GPIO_LED_STATUS 14
29 #define DB120_GPIO_LED_WPS 15
31 #define DB120_GPIO_BTN_SW1 16
33 #define DB120_MAC0_OFFSET 0
34 #define DB120_MAC1_OFFSET 6
35 #define DB120_CALDATA_OFFSET 0x1000
36 #define DB120_WMAC_MAC_OFFSET 0x1002
38 #define DB120_KEYS_POLL_INTERVAL 20 /* msecs */
39 #define DB120_KEYS_DEBOUNCE_INTERVAL (3 * DB120_KEYS_POLL_INTERVAL)
41 #ifdef CONFIG_MTD_PARTITIONS
42 static struct mtd_partition db120_partitions[] = {
47 .mask_flags = MTD_WRITEABLE,
68 .mask_flags = MTD_WRITEABLE,
71 #endif /* CONFIG_MTD_PARTITIONS */
73 static struct flash_platform_data db120_flash_data = {
74 #ifdef CONFIG_MTD_PARTITIONS
75 .parts = db120_partitions,
76 .nr_parts = ARRAY_SIZE(db120_partitions),
80 static struct gpio_led db120_leds_gpio[] __initdata = {
82 .name = "db120:green:status",
83 .gpio = DB120_GPIO_LED_STATUS,
86 .name = "db120:green:wps",
87 .gpio = DB120_GPIO_LED_WPS,
90 .name = "db120:green:wlan-5g",
91 .gpio = DB120_GPIO_LED_WLAN_5G,
94 .name = "db120:green:wlan-2g",
95 .gpio = DB120_GPIO_LED_WLAN_2G,
98 .name = "db120:green:usb",
99 .gpio = DB120_GPIO_LED_USB,
104 static struct gpio_keys_button db120_gpio_keys[] __initdata = {
109 .debounce_interval = DB120_KEYS_DEBOUNCE_INTERVAL,
110 .gpio = DB120_GPIO_BTN_SW1,
115 static void __init db120_setup(void)
117 u8 *art = (u8 *) KSEG1ADDR(0x1fff0000);
119 ar71xx_add_device_usb();
121 ar71xx_add_device_m25p80(&db120_flash_data);
123 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(db120_leds_gpio),
126 ar71xx_register_gpio_keys_polled(-1, DB120_KEYS_POLL_INTERVAL,
127 ARRAY_SIZE(db120_gpio_keys),
130 /* GMAC0 is connected to an AR8327 switch */
131 ar71xx_init_mac(ar71xx_eth0_data.mac_addr, art + DB120_MAC0_OFFSET, 0);
132 ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
133 ar71xx_eth0_data.speed = SPEED_1000;
134 ar71xx_eth0_data.duplex = DUPLEX_FULL;
136 ar71xx_add_device_eth(0);
138 ar9xxx_add_device_wmac(art + DB120_CALDATA_OFFSET,
139 art + DB120_WMAC_MAC_OFFSET);
144 MIPS_MACHINE(AR71XX_MACH_DB120, "DB120", "Atheros DB120", db120_setup);