2 * Allnet ALL0256N board support
4 * Copyright (C) 2012 Daniel Golle <dgolle@allnet.de>
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/init.h>
12 #include <linux/platform_device.h>
13 #include <linux/spi/spi.h>
14 #include <linux/spi/flash.h>
15 #include <linux/mtd/mtd.h>
16 #include <linux/mtd/partitions.h>
17 #include <linux/mtd/physmap.h>
19 #include <asm/mach-ralink/machine.h>
20 #include <asm/mach-ralink/dev-gpio-buttons.h>
21 #include <asm/mach-ralink/dev-gpio-leds.h>
22 #include <asm/mach-ralink/rt305x.h>
23 #include <asm/mach-ralink/rt305x_regs.h>
27 #define ALL0256N_GPIO_BUTTON_RESET 0
28 #define ALL0256N_GPIO_LED_RSSI_LOW 14
29 #define ALL0256N_GPIO_LED_RSSI_MED 12
30 #define ALL0256N_GPIO_LED_RSSI_HIGH 13
31 #define ALL0256N_KEYS_POLL_INTERVAL 20
32 #define ALL0256N_KEYS_DEBOUNCE_INTERVAL (3 * ALL0256N_KEYS_POLL_INTERVAL)
34 static struct mtd_partition all0256n_partitions
[] = {
39 .mask_flags
= MTD_WRITEABLE
,
63 const struct flash_platform_data all0256n_flash
= {
65 .parts
= all0256n_partitions
,
66 .nr_parts
= ARRAY_SIZE(all0256n_partitions
),
69 struct spi_board_info all0256n_spi_slave_info
[] __initdata
= {
72 .platform_data
= &all0256n_flash
,
74 .max_speed_hz
= 10000000,
80 static struct gpio_keys_button all0256n_gpio_buttons
[] __initdata
= {
85 .debounce_interval
= ALL0256N_KEYS_DEBOUNCE_INTERVAL
,
86 .gpio
= ALL0256N_GPIO_BUTTON_RESET
,
91 static struct gpio_led all0256n_leds_gpio
[] __initdata
= {
93 .name
= "all0256n:green:rssilow",
94 .gpio
= ALL0256N_GPIO_LED_RSSI_LOW
,
97 .name
= "all0256n:green:rssimed",
98 .gpio
= ALL0256N_GPIO_LED_RSSI_MED
,
101 .name
= "all0256n:green:rssihigh",
102 .gpio
= ALL0256N_GPIO_LED_RSSI_HIGH
,
107 static void __init
all0256n_init(void)
109 rt305x_gpio_init(RT305X_GPIO_MODE_GPIO
<< RT305X_GPIO_MODE_UART0_SHIFT
);
110 rt305x_register_spi(all0256n_spi_slave_info
,
111 ARRAY_SIZE(all0256n_spi_slave_info
));
112 rt305x_esw_data
.vlan_config
= RT305X_ESW_VLAN_CONFIG_WLLLL
;
113 rt305x_register_ethernet();
114 ramips_register_gpio_leds(-1, ARRAY_SIZE(all0256n_leds_gpio
),
116 ramips_register_gpio_buttons(-1, ALL0256N_KEYS_POLL_INTERVAL
,
117 ARRAY_SIZE(all0256n_gpio_buttons
),
118 all0256n_gpio_buttons
);
119 rt305x_register_wifi();
120 rt305x_register_wdt();
123 MIPS_MACHINE(RAMIPS_MACH_ALL0256N
, "ALL0256N", "Allnet ALL0256N",