aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ubicom32/files/arch/ubicom32/mach-ip7k/board-ip7500iap.c
blob: f565cdda17aefba4ee20e7c12d47ca0b54af448f (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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
/*
 * arch/ubicom32/mach-ip7k/board-ip7500iap.c
 *   Support for IP7500 Internet Audio Player
 *
 * This file supports the IP7500 Internet Audio Player:
 *	8007-1110  Rev 1.0
 *
 * (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/>.
 */
#include <linux/device.h>
#include <linux/gpio.h>
#include <asm/board.h>

#include <linux/delay.h>

#include <linux/platform_device.h>
#include <asm/audio.h>
#include <linux/i2c.h>
#include <linux/i2c-gpio.h>

#include <asm/ubicom32sd.h>
#include <asm/sd_tio.h>

#include <asm/ubicom32bl.h>

#include <asm/machdep.h>

/******************************************************************************
 * SD/IO Port F (Slot 1) platform data
 */
static struct resource ip7500iap_portf_sd_resources[] = {
	/*
	 * Send IRQ
	 */
	[0] = {
		/*
		 * The init routine will query the devtree and fill this in
		 */
		.flags	= IORESOURCE_IRQ,
	},

	/*
	 * Receive IRQ
	 */
	[1] = {
		/*
		 * The init routine will query the devtree and fill this in
		 */
		.flags	= IORESOURCE_IRQ,
	},

	/*
	 * Memory Mapped Registers
	 */
	[2] = {
		/*
		 * The init routine will query the devtree and fill this in
		 */
		.flags	= IORESOURCE_MEM,
	},
};

static struct ubicom32sd_card ip7500iap_portf_sd_cards[] = {
	[0] = {
		.pin_wp		= GPIO_RF_7,
		.wp_polarity	= 1,
		.pin_pwr	= GPIO_RF_8,
		.pin_cd		= GPIO_RF_6,
	},
};

static struct ubicom32sd_platform_data ip7500iap_portf_sd_platform_data = {
	.ncards		= 1,
	.cards		= ip7500iap_portf_sd_cards,
};

static struct platform_device ip7500iap_portf_sd_device = {
	.name		= "ubicom32sd",
	.id		= 0,
	.resource	= ip7500iap_portf_sd_resources,
	.num_resources	= ARRAY_SIZE(ip7500iap_portf_sd_resources),
	.dev		= {
			.platform_data = &ip7500iap_portf_sd_platform_data,
	},

};

/*
 * ip7500iap_portf_sd_init
 */
static void ip7500iap_portf_sd_init(void)
{
	/*
	 * Check the device tree for the sd_tio
	 */
	struct sd_tio_node *sd_node = (struct sd_tio_node *)devtree_find_node("portf_sd");
	if (!sd_node) {
		printk(KERN_INFO "PortF SDTIO not found\n");
		return;
	}

	/*
	 * Fill in the resources and platform data from devtree information
	 */
	ip7500iap_portf_sd_resources[0].start = sd_node->dn.sendirq;
	ip7500iap_portf_sd_resources[1].start = sd_node->dn.recvirq;
	ip7500iap_portf_sd_resources[2].start = (u32_t)&(sd_node->regs);
	ip7500iap_portf_sd_resources[2].end = (u32_t)&(sd_node->regs) + sizeof(sd_node->regs);

	platform_device_register(&ip7500iap_portf_sd_device);
}

/******************************************************************************
 * SD/IO Port B (Slot 2) platform data
 */
static struct resource ip7500iap_portb_sd_resources[] = {
	/*
	 * Send IRQ
	 */
	[0] = {
		/*
		 * The init routine will query the devtree and fill this in
		 */
		.flags	= IORESOURCE_IRQ,
	},

	/*
	 * Receive IRQ
	 */
	[1] = {
		/*
		 * The init routine will query the devtree and fill this in
		 */
		.flags	= IORESOURCE_IRQ,
	},

	/*
	 * Memory Mapped Registers
	 */
	[2] = {
		/*
		 * The init routine will query the devtree and fill this in
		 */
		.flags	= IORESOURCE_MEM,
	},
};

static struct ubicom32sd_card ip7500iap_portb_sd_cards[] = {
	[0] = {
		.pin_wp		= GPIO_RB_13,
		.wp_polarity	= 1,
		.pin_pwr	= GPIO_RB_11,
		.pin_cd		= GPIO_RB_12,
	},
};

static struct ubicom32sd_platform_data ip7500iap_portb_sd_platform_data = {
	.ncards		= 1,
	.cards		= ip7500iap_portb_sd_cards,
};

static struct platform_device ip7500iap_portb_sd_device = {
	.name		= "ubicom32sd",
	.id		= 1,
	.resource	= ip7500iap_portb_sd_resources,
	.num_resources	= ARRAY_SIZE(ip7500iap_portb_sd_resources),
	.dev		= {
			.platform_data = &ip7500iap_portb_sd_platform_data,
	},

};

/*
 * ip7500iap_portb_sd_init
 */
static void ip7500iap_portb_sd_init(void)
{
	/*
	 * Check the device tree for the sd_tio
	 */
	struct sd_tio_node *sd_node = (struct sd_tio_node *)devtree_find_node("portb_sd");
	if (!sd_node) {
		printk(KERN_INFO "PortB SDTIO not found\n");
		return;
	}

	/*
	 * Fill in the resources and platform data from devtree information
	 */
	ip7500iap_portb_sd_resources[0].start = sd_node->dn.sendirq;
	ip7500iap_portb_sd_resources[1].start = sd_node->dn.recvirq;
	ip7500iap_portb_sd_resources[2].start = (u32_t)&(sd_node->regs);
	ip7500iap_portb_sd_resources[2].end = (u32_t)&(sd_node->regs) + sizeof(sd_node->regs);

	platform_device_register(&ip7500iap_portb_sd_device);
}

/******************************************************************************
 * Touch controller
 *
 * Connected via I2C bus, interrupt on PA6
 */
#include <linux/i2c/tsc2007.h>

/*
 * ip7500iap_tsc2007_exit_platform_hw
 */
static void ip7500iap_tsc2007_exit_platform_hw(void)
{
	UBICOM32_IO_PORT(RA)->ctl0 &= ~(0x03 << 19);
	gpio_free(GPIO_RA_6);
}

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

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

/*
 * ip7500iap_tsc2007_get_pendown_state
 */
static int ip7500iap_tsc2007_get_pendown_state(void)
{
	return !gpio_get_value(GPIO_RA_6);
}

static struct tsc2007_platform_data ip7500iap_tsc2007_data = {
	.model			= 2007,
	.x_plate_ohms		= 350,
	.get_pendown_state	= ip7500iap_tsc2007_get_pendown_state,
	.init_platform_hw	= ip7500iap_tsc2007_init_platform_hw,
	.exit_platform_hw	= ip7500iap_tsc2007_exit_platform_hw,
};

/******************************************************************************
 * i2c devices
 *
 * DO NOT CHANGE THE ORDER HERE unless you know how this works.  There
 * are hardcoded indicies which refer to the order of drivers listed here.
 */
static struct i2c_board_info __initdata ip7500iap_i2c_board_info[] = {
	/*
	 * U6, CS4350 DAC, address 0x4B
	 */
	{
		.type		= "cs4350",
		.addr		= 0x4B,
	},

	/*
	 * U20, S35390A RTC, address 0x30
	 */
	{
		.type           = "s35390a",
		.addr           = 0x30,
	},

	/*
	 * U9, TSC2007 Touch screen controller, address 0x49, irq RA6
	 */
	{
		.type		= "tsc2007",
		.addr		= 0x49,
		.irq		= 46,
		.platform_data	= &ip7500iap_tsc2007_data,
	},
};

/*
 * I2C bus on the board, SDA PE4, SCL PE5
 */
static struct i2c_gpio_platform_data ip7500iap_i2c_data = {
	.sda_pin		= GPIO_RF_14,
	.scl_pin		= GPIO_RF_13,
	.sda_is_open_drain	= 0,
	.scl_is_open_drain	= 0,
	.udelay			= 50,
};

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

/******************************************************************************
 * Backlight on the board PD0, hardware PWM
 */
static struct ubicom32bl_platform_data ip7500iap_backlight_data = {
	.type			= UBICOM32BL_TYPE_PWM,
	.pwm_channel		= 2,
	.pwm_prescale		= 15,
	.pwm_period		= 60,
	.default_intensity	= 0x80,
};

static struct platform_device ip7500iap_backlight_device = {
	.name	= "ubicom32bl",
	.id	= -1,
	.dev	= {
		.platform_data = &ip7500iap_backlight_data,
	},
};

/******************************************************************************
 * Devices on this board
 */
static struct platform_device *ip7500iap_devices[] __initdata = {
	&ip7500iap_i2c_device,
	&ip7500iap_backlight_device,
};

/*
 * ip7500iap_power_off
 *	Called to turn the power off for this board
 */
static void ip7500iap_power_off(void)
{
	gpio_set_value(GPIO_RF_11, 0);
}

/*
 * ip7500iap_init
 *	Called to add the devices which we have on this board
 */
static int __init ip7500iap_init(void)
{
	struct platform_device *audio_dev;
	struct platform_device *audio_dev2;
	int ret;

	board_init();

	ubi_gpio_init();

	/*
	 * Hold the POWER_HOLD line
	 */
	ret = gpio_request(GPIO_RF_11, "POWER_HOLD");
	if (ret) {
		printk(KERN_ERR "%s: could not request POWER_HOLD GPIO\n", __FUNCTION__);
	}
	gpio_direction_output(GPIO_RF_11, 1);
	mach_power_off = ip7500iap_power_off;

	/*
	 * DAC nRESET line
	 */
	ret = gpio_request(GPIO_RE_7, "DAC_nRESET");
	if (ret) {
		printk(KERN_ERR "%s: could not request DAC_nRESET GPIO\n", __FUNCTION__);
	}
	gpio_direction_output(GPIO_RE_7, 0);
	udelay(1);
	gpio_set_value(GPIO_RE_7, 1);

	/*
	 * Bring up any SDIO slots
	 */
	ip7500iap_portb_sd_init();
	ip7500iap_portf_sd_init();

	/*
	 * Bring up audio devices
	 */
	platform_add_devices(ip7500iap_devices, ARRAY_SIZE(ip7500iap_devices));

	audio_dev = audio_device_alloc("snd-ubi32-cs4350", "audio", "audio-i2sout", 0);
	if (audio_dev) {
		ip7500iap_i2c_board_info[0].platform_data = audio_dev;
	}

	audio_dev2 = audio_device_alloc("snd-ubi32-generic", "audio", "audio-spdifout", 0);
	if (audio_dev2) {
		platform_device_register(audio_dev2);
	}

	printk(KERN_INFO "%s: registering i2c resources\n", __FUNCTION__);
	i2c_register_board_info(0, ip7500iap_i2c_board_info, ARRAY_SIZE(ip7500iap_i2c_board_info));

	printk(KERN_INFO "IP7500 Internet Audio Player\n");

	return 0;
}

arch_initcall(ip7500iap_init);