summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-3g300m.c
blob: e4993b303e117b005adbc7e2abb469ec1560f648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
 *  Tenda 3G300M board support
 *
 *  Copyright (C) 2013 Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
 *
 *  This program is free software; you can redistribute it and/or modify it
 *  under the terms of the GNU General Public License version 2 as published
 *  by the Free Software Foundation.
 */

#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/spi/spi.h>
#include <linux/spi/flash.h>
#include <linux/gpio.h>

#include <asm/mach-ralink/machine.h>
#include <asm/mach-ralink/dev-gpio-buttons.h>
#include <asm/mach-ralink/dev-gpio-leds.h>
#include <asm/mach-ralink/rt305x.h>
#include <asm/mach-ralink/rt305x_regs.h>

#include "devices.h"

#define TENDA_3G300M_GPIO_BUTTON_RESET		0
#define TENDA_3G300M_GPIO_BUTTON_MODE		10

#define TENDA_3G300M_GPIO_LED_3GROUTER		11
#define TENDA_3G300M_GPIO_LED_AP		12
#define TENDA_3G300M_GPIO_LED_WISPROUTER	9
#define TENDA_3G300M_GPIO_LED_WIRELESSROUTER	13
#define TENDA_3G300M_GPIO_LED_3G		7
#define TENDA_3G300M_GPIO_LED_WPSRESET		14

#define TENDA_3G300M_KEYS_POLL_INTERVAL	20
#define TENDA_3G300M_KEYS_DEBOUNCE_INTERVAL	(3 * TENDA_3G300M_KEYS_POLL_INTERVAL)

const struct flash_platform_data tenda_3g300m_flash = {
	.type		= "mx25l3205d",
};

struct spi_board_info tenda_3g300m_spi_slave_info[] __initdata = {
	{
		.modalias	= "m25p80",
		.platform_data	= &tenda_3g300m_flash,
		.irq		= -1,
		.max_speed_hz	= 10000000,
		.bus_num	= 0,
		.chip_select	= 0,
	}
};

static struct gpio_led tenda_3g300m_leds_gpio[] __initdata = {
        {
		.name		= "tenda:blue:3grouter",
		.gpio		= TENDA_3G300M_GPIO_LED_3GROUTER,
		.active_low	= 1,
	},{
		.name		= "tenda:blue:ap",
		.gpio		= TENDA_3G300M_GPIO_LED_AP,
		.active_low	= 1,
	},{
		.name		= "tenda:blue:wisprouter",
		.gpio		= TENDA_3G300M_GPIO_LED_WISPROUTER,
		.active_low	= 1,
	},{
		.name		= "tenda:blue:wirelessrouter",
		.gpio		= TENDA_3G300M_GPIO_LED_WIRELESSROUTER,
		.active_low	= 1,
	},{
		.name		= "tenda:blue:3g",
		.gpio		= TENDA_3G300M_GPIO_LED_3G,
		.active_low	= 1,
	},{
		.name		= "tenda:blue:wpsreset",
		.gpio		= TENDA_3G300M_GPIO_LED_WPSRESET,
		.active_low	= 1,
	}
};

static struct gpio_keys_button tenda_3g300m_gpio_buttons[] __initdata = {
	{
		.desc		= "reset",
		.type		= EV_KEY,
		.code		= KEY_RESTART,
		.debounce_interval = TENDA_3G300M_KEYS_DEBOUNCE_INTERVAL,
		.gpio		= TENDA_3G300M_GPIO_BUTTON_RESET,
		.active_low	= 1,
	},{
		.desc		= "mode",
		.type		= EV_KEY,
		.code		= BTN_0,
		.debounce_interval = TENDA_3G300M_KEYS_DEBOUNCE_INTERVAL,
		.gpio		= TENDA_3G300M_GPIO_BUTTON_MODE,
		.active_low	= 1,
	}
};

static void __init tenda_3g300m_init(void)
{
	rt305x_gpio_init((RT305X_GPIO_MODE_GPIO <<
			 RT305X_GPIO_MODE_UART0_SHIFT) |
			 RT305X_GPIO_MODE_JTAG);

	rt305x_register_spi(tenda_3g300m_spi_slave_info,
			ARRAY_SIZE(tenda_3g300m_spi_slave_info));

	ramips_register_gpio_leds(-1, ARRAY_SIZE(tenda_3g300m_leds_gpio),
			tenda_3g300m_leds_gpio);

	ramips_register_gpio_buttons(-1, TENDA_3G300M_KEYS_POLL_INTERVAL,
			ARRAY_SIZE(tenda_3g300m_gpio_buttons),
			tenda_3g300m_gpio_buttons);

	rt305x_esw_data.vlan_config = RT305X_ESW_VLAN_CONFIG_LLLLW;
	rt305x_register_ethernet();

	rt305x_register_wifi();

	rt305x_register_wdt();

	rt305x_register_usb();
}

MIPS_MACHINE(RAMIPS_MACH_3G300M, "3G300M", "Tenda 3G300M",
		tenda_3g300m_init);