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-ar934x-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_CALDATA_OFFSET 0x1000
34 #define DB120_WMAC_MAC_OFFSET 0x1003
36 #define DB120_BUTTONS_POLL_INTERVAL 20
38 #ifdef CONFIG_MTD_PARTITIONS
39 static struct mtd_partition db120_partitions
[] = {
44 .mask_flags
= MTD_WRITEABLE
,
65 .mask_flags
= MTD_WRITEABLE
,
68 #endif /* CONFIG_MTD_PARTITIONS */
70 static struct flash_platform_data db120_flash_data
= {
71 #ifdef CONFIG_MTD_PARTITIONS
72 .parts
= db120_partitions
,
73 .nr_parts
= ARRAY_SIZE(db120_partitions
),
77 static struct gpio_led db120_leds_gpio
[] __initdata
= {
79 .name
= "db120:green:status",
80 .gpio
= DB120_GPIO_LED_STATUS
,
83 .name
= "db120:green:wps",
84 .gpio
= DB120_GPIO_LED_WPS
,
87 .name
= "db120:green:wlan-5g",
88 .gpio
= DB120_GPIO_LED_WLAN_5G
,
91 .name
= "db120:green:wlan-2g",
92 .gpio
= DB120_GPIO_LED_WLAN_2G
,
95 .name
= "db120:green:usb",
96 .gpio
= DB120_GPIO_LED_USB
,
101 static struct gpio_button db120_gpio_buttons
[] __initdata
= {
107 .gpio
= DB120_GPIO_BTN_SW1
,
112 static void __init
db120_setup(void)
114 u8
*art
= (u8
*) KSEG1ADDR(0x1fff0000);
116 ar71xx_add_device_usb();
118 ar71xx_add_device_m25p80(&db120_flash_data
);
120 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(db120_leds_gpio
),
123 ar71xx_add_device_gpio_buttons(-1, DB120_BUTTONS_POLL_INTERVAL
,
124 ARRAY_SIZE(db120_gpio_buttons
),
127 ar934x_add_device_wmac(art
+ DB120_CALDATA_OFFSET
,
128 art
+ DB120_WMAC_MAC_OFFSET
);
133 MIPS_MACHINE(AR71XX_MACH_DB120
, "DB120", "Atheros DB120", db120_setup
);