summaryrefslogtreecommitdiffstats
path: root/target/linux/ifxmips/files-2.6.33/arch/mips/ifxmips/danube/mach-arv452.c
blob: 1b76c73d7b9aefd38d13b6c69f8c3b21fe6334d3 (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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/leds.h>
#include <linux/gpio.h>
#include <linux/gpio_buttons.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/partitions.h>
#include <linux/mtd/physmap.h>
#include <linux/input.h>

#include <machine.h>
#include <ifxmips_prom.h>

#include "arcaydian.h"
#include "devices.h"

#define ARV452_EBU_GPIO_START	0x14000000
#define ARV452_EBU_GPIO_SIZE	0x00001000

#define ARV452_GPIO_BUTTON_RESET		14
#define ARV452_BUTTONS_POLL_INTERVAL	20

#define ARV452_LATCH_SWITCH				(1 << 10)

#ifdef CONFIG_MTD_PARTITIONS
static struct mtd_partition arv452_partitions[] =
{
	{
		.name	= "uboot",
		.offset	= 0x0,
		.size	= 0x20000,
	},
	{
		.name	= "uboot_env",
		.offset	= 0x20000,
		.size	= 0x0,
	},
	{
		.name	= "kernel",
		.offset	= 0x0,
		.size	= 0x0,
	},
	{
		.name	= "rootfs",
		.offset	= 0x0,
		.size	= 0x0,
	},
	{
		.name	= "board_config",
		.offset	= 0x3f0000,
		.size	= 0x10000,
	},
	{
		.name	= "openwrt",
		.offset	= 0x0,
		.size	= 0x0,
	},
};
#endif

static struct physmap_flash_data arv452_flash_data = {
#ifdef CONFIG_MTD_PARTITIONS
	.nr_parts	= ARRAY_SIZE(arv452_partitions),
	.parts		= arv452_partitions,
#endif
};

static struct gpio_led
arv452_leds_gpio[] __initdata = {
/*
	{ .name = "ifx0", .gpio = 0, .active_low = 1, },
	{ .name = "ifx1", .gpio = 1, .active_low = 1, },
	{ .name = "ifx2", .gpio = 2, .active_low = 1, },
*/
	{ .name = "ifx:blue:power", .gpio = 3, .active_low = 1, },
	{ .name = "ifx:blue:adsl", .gpio = 4, .active_low = 1, },
	{ .name = "ifx:blue:internet", .gpio = 5, .active_low = 1, },
	{ .name = "ifx:red:power", .gpio = 6, .active_low = 1, },
	{ .name = "ifx:yello:wps", .gpio = 7, .active_low = 1, },
	{ .name = "ifx:red:wps", .gpio = 9, .active_low = 1, },
/*
	{ .name = "ifx10", .gpio = 10, .active_low = 1, },
	{ .name = "ifx11", .gpio = 11, .active_low = 1, },
	{ .name = "ifx12", .gpio = 12, .active_low = 1, },
	{ .name = "ifx13", .gpio = 13, .active_low = 1, },
	{ .name = "ifx14", .gpio = 14, .active_low = 1, },
	{ .name = "ifx15", .gpio = 15, .active_low = 1, },
	{ .name = "ifx16", .gpio = 16, .active_low = 1, },
	{ .name = "ifx17", .gpio = 17, .active_low = 1, },
	{ .name = "ifx18", .gpio = 18, .active_low = 1, },
	{ .name = "ifx19", .gpio = 19, .active_low = 1, },
	{ .name = "ifx20", .gpio = 20, .active_low = 1, },
	{ .name = "ifx21", .gpio = 21, .active_low = 1, },
	{ .name = "ifx22", .gpio = 22, .active_low = 1, },
	{ .name = "ifx23", .gpio = 23, .active_low = 1, },
	{ .name = "ifx24", .gpio = 24, .active_low = 1, },
	{ .name = "ifx25", .gpio = 25, .active_low = 1, },
	{ .name = "ifx26", .gpio = 26, .active_low = 1, },
	{ .name = "ifx27", .gpio = 27, .active_low = 1, },
	{ .name = "ifx28", .gpio = 28, .active_low = 1, },
	{ .name = "ifx29", .gpio = 29, .active_low = 1, },
	{ .name = "ifx30", .gpio = 30, .active_low = 1, },
	{ .name = "ifx31", .gpio = 31, .active_low = 1, },
*/
	{ .name = "ifx:blue:voip", .gpio = 32, .active_low = 1, },
	{ .name = "ifx:blue:fxs1", .gpio = 33, .active_low = 1, },
	{ .name = "ifx:blue:fxs2", .gpio = 34, .active_low = 1, },
	{ .name = "ifx:blue:fxo", .gpio = 35, .active_low = 1, },
	{ .name = "ifx:blue:voice", .gpio = 36, .active_low = 1, },
	{ .name = "ifx:blue:usb", .gpio = 37, .active_low = 1, },
	{ .name = "ifx:blue:wlan", .gpio = 38, .active_low = 1, },
/*	{ .name = "ifx39", .gpio = 39, .active_low = 1, },
	{ .name = "ifx40", .gpio = 40, .active_low = 1, },
	{ .name = "ifx41", .gpio = 41, .active_low = 1, },
	{ .name = "ifx42", .gpio = 42, .active_low = 1, },
	{ .name = "ifx43", .gpio = 43, .active_low = 1, },
	{ .name = "ifx44", .gpio = 44, .active_low = 1, },
	{ .name = "ifx45", .gpio = 45, .active_low = 1, },
	{ .name = "ifx46", .gpio = 46, .active_low = 1, },
	{ .name = "ifx47", .gpio = 47, .active_low = 1, },
*/
};

static struct gpio_button
arv452_gpio_buttons[] __initdata = {
	{
		.desc		= "reset",
		.type		= EV_KEY,
		.code		= BTN_0,
		.threshold	= 3,
		.gpio		= ARV452_GPIO_BUTTON_RESET,
		.active_low	= 1,
	}
};

static struct resource arv452_ebu_resource =
{
	.name	= "ebu-gpio",
	.start	= ARV452_EBU_GPIO_START,
	.end	= ARV452_EBU_GPIO_START + ARV452_EBU_GPIO_SIZE - 1,
	.flags	= IORESOURCE_MEM,
};

static void __init
arv452_init(void)
{
	unsigned char mac[6] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
	ifxmips_find_brn_mac(mac);

	ifxmips_register_gpio();

	danube_register_ebu_gpio(&arv452_ebu_resource, ARV452_LATCH_SWITCH);

	ifxmips_register_mtd(&arv452_flash_data);

	danube_register_pci(PCI_CLOCK_EXT, 0);

	ifxmips_register_wdt();

	ifxmips_register_gpio_leds(arv452_leds_gpio, ARRAY_SIZE(arv452_leds_gpio));

	danube_register_ethernet(mac);

	danube_register_usb();
}

MIPS_MACHINE(IFXMIPS_MACH_ARV452,
			"ARV452",
			"Airties WAV-281, Arcor A800",
		     arv452_init);