aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ubicom32/files/arch/ubicom32/mach-ip7k/board-ip7160rgw.c
blob: 4d50375a7dffd3c2ee241c9e8a1e2d7c672f9631 (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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/*
 * arch/ubicom32/mach-ip7k/board-ip7160rgw.c
 *   Platform initialization for ip7160rgw board.
 *
 * (C) Copyright 2009, Ubicom, Inc.
 *
 * This file is part of the Ubicom32 Linux Kernel Port.
 *
 * The Ubicom32 Linux Kernel Port is free software: you can redistribute
 * it and/or modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation, either version 2 of the
 * License, or (at your option) any later version.
 *
 * The Ubicom32 Linux Kernel Port is distributed in the hope that it
 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
 * the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with the Ubicom32 Linux Kernel Port.  If not,
 * see <http://www.gnu.org/licenses/>.
 *
 * Ubicom32 implementation derived from (with many thanks):
 *   arch/m68knommu
 *   arch/blackfin
 *   arch/parisc
 */
#include <linux/device.h>
#include <linux/platform_device.h>
#include <linux/gpio.h>
#include <linux/leds.h>
#include <linux/delay.h>
#include <linux/input.h>
#include <linux/spi/spi.h>

#include <asm/board.h>
#include <asm/machdep.h>
#include <asm/ubicom32input.h>

#ifdef CONFIG_SERIAL_UBI32_SERDES
#include <asm/ubicom32suart.h>
#endif

#include <asm/ubicom32-spi-gpio.h>
#include <asm/switch-dev.h>

#ifdef CONFIG_IP7160RGWLCD
#include <linux/i2c.h>
#include <linux/i2c-gpio.h>
/*
 * LCD Adapter board 8007-092x support
 *
 * Touch controller
 *
 * Connected via I2C bus, interrupt on PA6
 */
#include <linux/i2c/tsc2007.h>

/*
 * ip7160rgwlcd_tsc2007_exit_platform_hw
 */
static void ip7160rgwlcd_tsc2007_exit_platform_hw(void)
{
	UBICOM32_IO_PORT(RA)->ctl0 &= ~(0x03 << 17);
	gpio_free(GPIO_RA_5);
}

/*
 * ip7160rgwlcd_tsc2007_init_platform_hw
 */
static int ip7160rgwlcd_tsc2007_init_platform_hw(void)
{
	int res = gpio_request(GPIO_RA_5, "TSC2007_IRQ");
	if (res) {
		return res;
	}

	UBICOM32_IO_PORT(RA)->ctl0 &= ~(0x03 << 17);
	UBICOM32_IO_PORT(RA)->ctl0 |= (0x02 << 17);
	return 0;
}

/*
 * ip7160rgwlcd_tsc2007_get_pendown_state
 */
static int ip7160rgwlcd_tsc2007_get_pendown_state(void)
{
	return !gpio_get_value(GPIO_RA_5);
}

static struct tsc2007_platform_data ip7160rgwlcd_tsc2007_data = {
	.model			= 2007,
	.x_plate_ohms		= 350,
	.get_pendown_state	= ip7160rgwlcd_tsc2007_get_pendown_state,
	.init_platform_hw	= ip7160rgwlcd_tsc2007_init_platform_hw,
	.exit_platform_hw	= ip7160rgwlcd_tsc2007_exit_platform_hw,
};

/******************************************************************************
 * I2C bus on the board, SDA PI14, SCL PI13
 */
static struct i2c_gpio_platform_data ip7160rgwlcd_i2c_data = {
	.sda_pin		= GPIO_RI_14,
	.scl_pin		= GPIO_RI_13,
	.sda_is_open_drain	= 0,
	.scl_is_open_drain	= 0,
	.udelay			= 50,
};

static struct platform_device ip7160rgwlcd_i2c_device = {
	.name	= "i2c-gpio",
	.id	= 0,
	.dev	= {
		.platform_data = &ip7160rgwlcd_i2c_data,
	},
};

static struct i2c_board_info __initdata ip7160rgwlcd_i2c_board_info[] = {
	{
		.type = "tsc2007",
		.addr = 0x48,
		.irq = 45, // RA5
		.platform_data = &ip7160rgwlcd_tsc2007_data,
	},
};

#endif

/*
 * SPI bus over GPIO for Gigabit Ethernet Switch
 *	U58:
 *		MOSI	PE0
 *		MISO	PE1
 *		CLK	PE3
 *		CS	PE2
 */
static struct ubicom32_spi_gpio_platform_data ip7160rgw_spi_gpio_data = {
	.pin_mosi	= GPIO_RE_0,
	.pin_miso	= GPIO_RE_1,
	.pin_clk	= GPIO_RE_3,
	.bus_num	= 0,		// We'll call this SPI bus 0
	.num_chipselect	= 1,		// only one device on this SPI bus
	.clk_default	= 1,
};

static struct platform_device ip7160rgw_spi_gpio_device = {
	.name	= "ubicom32-spi-gpio",
	.id	= 0,
	.dev	= {
		.platform_data = &ip7160rgw_spi_gpio_data,
	},
};

static struct ubicom32_spi_gpio_controller_data ip7160rgw_bcm539x_controller_data = {
	.pin_cs = GPIO_RE_2,
};

static struct switch_core_platform_data ip7160rgw_bcm539x_platform_data = {
	.flags		= SWITCH_DEV_FLAG_HW_RESET,
	.pin_reset	= GPIO_RE_4,
	.name		= "bcm539x",
};

static struct spi_board_info ip7160rgw_spi_board_info[] = {
	{
		.modalias		= "bcm539x-spi",
		.bus_num		= 0,
		.chip_select		= 0,
		.max_speed_hz		= 2000000,
		.platform_data		= &ip7160rgw_bcm539x_platform_data,
		.controller_data	= &ip7160rgw_bcm539x_controller_data,
		.mode			= SPI_MODE_3,
	}
};

/*
 * LEDs
 *
 * WLAN1		PD0	(PWM capable)
 * WLAN2		PD1
 * USB2.0		PD2
 * Status		PD3
 * WPS			PD4
 *
 * TODO: check triggers, are they generic?
 */
static struct gpio_led ip7160rgw_gpio_leds[] = {
	{
		.name			= "d53:green:WLAN1",
		.default_trigger	= "WLAN1",
		.gpio			= GPIO_RD_0,
		.active_low		= 1,
	},
	{
		.name			= "d54:green:WLAN2",
		.default_trigger	= "WLAN2",
		.gpio			= GPIO_RD_1,
		.active_low		= 1,
	},
	{
		.name			= "d55:green:USB",
		.default_trigger	= "USB",
		.gpio			= GPIO_RD_2,
		.active_low		= 1,
	},
	{
		.name			= "d56:green:Status",
		.default_trigger	= "Status",
		.gpio			= GPIO_RD_3,
		.active_low		= 1,
	},
	{
		.name			= "d57:green:WPS",
		.default_trigger	= "WPS",
		.gpio			= GPIO_RD_4,
		.active_low		= 1,
	},
};

static struct gpio_led_platform_data ip7160rgw_gpio_led_platform_data = {
	.num_leds	= 5,
	.leds		= ip7160rgw_gpio_leds,
};

static struct platform_device ip7160rgw_gpio_leds_device = {
	.name		= "leds-gpio",
	.id		= -1,
	.dev = {
		.platform_data = &ip7160rgw_gpio_led_platform_data,
	},
};

/*
 * Use ubicom32input driver to monitor the various pushbuttons on this board.
 *
 * WPS			PD5
 * FACT_DEFAULT		PD6
 *
 * TODO: pick some ubicom understood EV_xxx define for WPS and Fact Default
 */
static struct ubicom32input_button ip7160rgw_ubicom32input_buttons[] = {
	{
		.type		= EV_KEY,
		.code		= KEY_FN_F1,
		.gpio		= GPIO_RD_5,
		.desc		= "WPS",
		.active_low	= 1,
	},
	{
		.type		= EV_KEY,
		.code		= KEY_FN_F2,
		.gpio		= GPIO_RD_6,
		.desc		= "Factory Default",
		.active_low	= 1,
	},
};

static struct ubicom32input_platform_data ip7160rgw_ubicom32input_data = {
	.buttons	= ip7160rgw_ubicom32input_buttons,
	.nbuttons	= ARRAY_SIZE(ip7160rgw_ubicom32input_buttons),
};

static struct platform_device ip7160rgw_ubicom32input_device = {
	.name	= "ubicom32input",
	.id	= -1,
	.dev	= {
		.platform_data = &ip7160rgw_ubicom32input_data,
	},
};

#ifdef CONFIG_SERIAL_UBI32_SERDES
static struct resource ip7160rgw_ubicom32_suart_resources[] = {
	{
		.start	= RE,
		.end	= RE,
		.flags	= IORESOURCE_MEM,
	},
	{
		.start	= PORT_OTHER_INT(RE),
		.end	= PORT_OTHER_INT(RE),
		.flags	= IORESOURCE_IRQ,
	},
	{
		.start	= 250000000,
		.end	= 250000000,
		.flags	= UBICOM32_SUART_IORESOURCE_CLOCK,
	},
};

static struct platform_device ip7160rgw_ubicom32_suart_device = {
	.name		= "ubicom32suart",
	.id		= -1,
	.num_resources	= ARRAY_SIZE(ip7160rgw_ubicom32_suart_resources),
	.resource	= ip7160rgw_ubicom32_suart_resources,
};
#endif

/*
 * List of all devices in our system
 */
static struct platform_device *ip7160rgw_devices[] __initdata = {
#ifdef CONFIG_SERIAL_UBI32_SERDES
	&ip7160rgw_ubicom32_suart_device,
#endif
	&ip7160rgw_ubicom32input_device,
	&ip7160rgw_gpio_leds_device,
	&ip7160rgw_spi_gpio_device,
#ifdef CONFIG_IP7160RGWLCD
	&ip7160rgwlcd_i2c_device,
#endif
};

/*
 * ip7160rgw_init
 *	Called to add the devices which we have on this board
 */
static int __init ip7160rgw_init(void)
{
	board_init();

	/*
	 * Rev 1.2 boards have spi in a different place than 1.1/1.0
	 */
	if (strcmp(board_get_revision(), "1.2") == 0) {
		ip7160rgw_spi_gpio_data.pin_mosi = GPIO_RD_7;
	}

	ubi_gpio_init();

	/*
	 * Reserve switch SPI CS on behalf on switch driver
	 */
	if (gpio_request(ip7160rgw_bcm539x_controller_data.pin_cs, "switch-bcm539x-cs")) {
		printk(KERN_WARNING "Could not request cs of switch SPI I/F\n");
		return -EIO;
	}
	gpio_direction_output(ip7160rgw_bcm539x_controller_data.pin_cs, 1);

	printk(KERN_INFO "%s: registering device resources\n", __FUNCTION__);
	platform_add_devices(ip7160rgw_devices, ARRAY_SIZE(ip7160rgw_devices));

	printk(KERN_INFO "%s: registering SPI resources\n", __FUNCTION__);
	spi_register_board_info(ip7160rgw_spi_board_info, ARRAY_SIZE(ip7160rgw_spi_board_info));

#ifdef CONFIG_IP7160RGWLCD
	printk(KERN_INFO "%s: registering i2c resources\n", __FUNCTION__);
	i2c_register_board_info(0, ip7160rgwlcd_i2c_board_info, ARRAY_SIZE(ip7160rgwlcd_i2c_board_info));
	printk(KERN_INFO "IP7160 RGW + LCD\n");
#else
	printk(KERN_INFO "IP7160 RGW\n");
#endif
	return 0;
}

arch_initcall(ip7160rgw_init);