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_BUTTONS_POLL_INTERVAL 20
33 static struct mtd_partition all0256n_partitions
[] = {
38 .mask_flags
= MTD_WRITEABLE
,
62 const struct flash_platform_data all0256n_flash
= {
64 .parts
= all0256n_partitions
,
65 .nr_parts
= ARRAY_SIZE(all0256n_partitions
),
68 struct spi_board_info all0256n_spi_slave_info
[] __initdata
= {
71 .platform_data
= &all0256n_flash
,
73 .max_speed_hz
= 10000000,
79 static struct gpio_button all0256n_gpio_buttons
[] __initdata
= {
85 .gpio
= ALL0256N_GPIO_BUTTON_RESET
,
90 static struct gpio_led all0256n_leds_gpio
[] __initdata
= {
92 .name
= "all0256n:green:rssilow",
93 .gpio
= ALL0256N_GPIO_LED_RSSI_LOW
,
96 .name
= "all0256n:green:rssimed",
97 .gpio
= ALL0256N_GPIO_LED_RSSI_MED
,
100 .name
= "all0256n:green:rssihigh",
101 .gpio
= ALL0256N_GPIO_LED_RSSI_HIGH
,
106 static void __init
all0256n_init(void)
108 rt305x_gpio_init(RT305X_GPIO_MODE_GPIO
<< RT305X_GPIO_MODE_UART0_SHIFT
);
109 rt305x_register_spi(all0256n_spi_slave_info
,
110 ARRAY_SIZE(all0256n_spi_slave_info
));
111 rt305x_esw_data
.vlan_config
= RT305X_ESW_VLAN_CONFIG_WLLLL
;
112 rt305x_register_ethernet();
113 ramips_register_gpio_leds(-1, ARRAY_SIZE(all0256n_leds_gpio
),
115 ramips_register_gpio_buttons(-1, ALL0256N_BUTTONS_POLL_INTERVAL
,
116 ARRAY_SIZE(all0256n_gpio_buttons
),
117 all0256n_gpio_buttons
);
118 rt305x_register_wifi();
119 rt305x_register_wdt();
122 MIPS_MACHINE(RAMIPS_MACH_ALL0256N
, "ALL0256N", "Allnet ALL0256N",