blob: d115653edca3e3cd9632fcfb14ebb616dad7a985 [file] [log] [blame]
Hartley Sweetena2bd40d2009-05-04 19:09:25 +01001/*
2 * arch/arm/mach-ep93xx/edb93xx.c
3 * Cirrus Logic EDB93xx Development Board support.
4 *
5 * EDB93XX, EDB9301, EDB9307A
6 * Copyright (C) 2008-2009 H Hartley Sweeten <hsweeten@visionengravers.com>
7 *
8 * EDB9302
9 * Copyright (C) 2006 George Kashperko <george@chas.com.ua>
10 *
11 * EDB9302A, EDB9315, EDB9315A
12 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
13 *
14 * EDB9307
15 * Copyright (C) 2007 Herbert Valerio Riedel <hvr@gnu.org>
16 *
17 * EDB9312
18 * Copyright (C) 2006 Infosys Technologies Limited
19 * Toufeeq Hussain <toufeeq_hussain@infosys.com>
20 *
21 * This program is free software; you can redistribute it and/or modify
22 * it under the terms of the GNU General Public License as published by
23 * the Free Software Foundation; either version 2 of the License, or (at
24 * your option) any later version.
25 */
26
27#include <linux/kernel.h>
28#include <linux/init.h>
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010029#include <linux/platform_device.h>
Hartley Sweeten6531a992009-10-08 00:45:00 +010030#include <linux/gpio.h>
31#include <linux/i2c.h>
32#include <linux/i2c-gpio.h>
Alexander Sverdlin31bb68a2011-03-03 10:53:52 +010033#include <linux/spi/spi.h>
34
35#include <sound/cs4271.h>
Hartley Sweeten583ddaf2009-07-06 17:39:50 +010036
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010037#include <mach/hardware.h>
Hartley Sweeten13055192011-01-27 17:50:53 +010038#include <mach/fb.h>
Alexander Sverdlin31bb68a2011-03-03 10:53:52 +010039#include <mach/ep93xx_spi.h>
Linus Walleijbd5f12a2011-09-22 08:07:00 +010040#include <mach/gpio-ep93xx.h>
Hartley Sweeten583ddaf2009-07-06 17:39:50 +010041
Jamie Iles9a6879b2011-09-27 20:07:05 +010042#include <asm/hardware/vic.h>
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010043#include <asm/mach-types.h>
44#include <asm/mach/arch.h>
45
Hartley Sweeten583ddaf2009-07-06 17:39:50 +010046
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010047static void __init edb93xx_register_flash(void)
48{
49 if (machine_is_edb9307() || machine_is_edb9312() ||
50 machine_is_edb9315()) {
Hartley Sweeten16bcf782010-06-10 16:19:08 +010051 ep93xx_register_flash(4, EP93XX_CS6_PHYS_BASE, SZ_32M);
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010052 } else {
Hartley Sweeten16bcf782010-06-10 16:19:08 +010053 ep93xx_register_flash(2, EP93XX_CS6_PHYS_BASE, SZ_16M);
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010054 }
55}
56
Hartley Sweetenb370e082010-03-18 18:04:06 +010057static struct ep93xx_eth_data __initdata edb93xx_eth_data = {
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010058 .phy_id = 1,
59};
60
Hartley Sweeten6531a992009-10-08 00:45:00 +010061
62/*************************************************************************
63 * EDB93xx i2c peripheral handling
64 *************************************************************************/
Hartley Sweetenb370e082010-03-18 18:04:06 +010065static struct i2c_gpio_platform_data __initdata edb93xx_i2c_gpio_data = {
Hartley Sweeten6531a992009-10-08 00:45:00 +010066 .sda_pin = EP93XX_GPIO_LINE_EEDAT,
67 .sda_is_open_drain = 0,
68 .scl_pin = EP93XX_GPIO_LINE_EECLK,
69 .scl_is_open_drain = 0,
70 .udelay = 0, /* default to 100 kHz */
71 .timeout = 0, /* default to 100 ms */
72};
73
74static struct i2c_board_info __initdata edb93xxa_i2c_board_info[] = {
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010075 {
76 I2C_BOARD_INFO("isl1208", 0x6f),
77 },
78};
79
Hartley Sweeten6531a992009-10-08 00:45:00 +010080static struct i2c_board_info __initdata edb93xx_i2c_board_info[] = {
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010081 {
82 I2C_BOARD_INFO("ds1337", 0x68),
83 },
84};
85
86static void __init edb93xx_register_i2c(void)
87{
88 if (machine_is_edb9302a() || machine_is_edb9307a() ||
89 machine_is_edb9315a()) {
Hartley Sweeten6531a992009-10-08 00:45:00 +010090 ep93xx_register_i2c(&edb93xx_i2c_gpio_data,
91 edb93xxa_i2c_board_info,
92 ARRAY_SIZE(edb93xxa_i2c_board_info));
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010093 } else if (machine_is_edb9307() || machine_is_edb9312() ||
94 machine_is_edb9315()) {
Hartley Sweeten3d977c02009-10-14 01:56:10 +010095 ep93xx_register_i2c(&edb93xx_i2c_gpio_data,
Hartley Sweeten6531a992009-10-08 00:45:00 +010096 edb93xx_i2c_board_info,
97 ARRAY_SIZE(edb93xx_i2c_board_info));
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010098 }
99}
100
Hartley Sweeten1fbd9722010-01-11 21:38:00 +0100101
102/*************************************************************************
Alexander Sverdlin31bb68a2011-03-03 10:53:52 +0100103 * EDB93xx SPI peripheral handling
104 *************************************************************************/
105static struct cs4271_platform_data edb93xx_cs4271_data = {
106 .gpio_nreset = -EINVAL, /* filled in later */
107};
108
109static int edb93xx_cs4271_hw_setup(struct spi_device *spi)
110{
111 return gpio_request_one(EP93XX_GPIO_LINE_EGPIO6,
112 GPIOF_OUT_INIT_HIGH, spi->modalias);
113}
114
115static void edb93xx_cs4271_hw_cleanup(struct spi_device *spi)
116{
117 gpio_free(EP93XX_GPIO_LINE_EGPIO6);
118}
119
120static void edb93xx_cs4271_hw_cs_control(struct spi_device *spi, int value)
121{
122 gpio_set_value(EP93XX_GPIO_LINE_EGPIO6, value);
123}
124
125static struct ep93xx_spi_chip_ops edb93xx_cs4271_hw = {
126 .setup = edb93xx_cs4271_hw_setup,
127 .cleanup = edb93xx_cs4271_hw_cleanup,
128 .cs_control = edb93xx_cs4271_hw_cs_control,
129};
130
131static struct spi_board_info edb93xx_spi_board_info[] __initdata = {
132 {
133 .modalias = "cs4271",
134 .platform_data = &edb93xx_cs4271_data,
135 .controller_data = &edb93xx_cs4271_hw,
136 .max_speed_hz = 6000000,
137 .bus_num = 0,
138 .chip_select = 0,
139 .mode = SPI_MODE_3,
140 },
141};
142
143static struct ep93xx_spi_info edb93xx_spi_info __initdata = {
144 .num_chipselect = ARRAY_SIZE(edb93xx_spi_board_info),
145};
146
147static void __init edb93xx_register_spi(void)
148{
149 if (machine_is_edb9301() || machine_is_edb9302())
150 edb93xx_cs4271_data.gpio_nreset = EP93XX_GPIO_LINE_EGPIO1;
151 else if (machine_is_edb9302a() || machine_is_edb9307a())
152 edb93xx_cs4271_data.gpio_nreset = EP93XX_GPIO_LINE_H(2);
153 else if (machine_is_edb9315a())
154 edb93xx_cs4271_data.gpio_nreset = EP93XX_GPIO_LINE_EGPIO14;
155
156 ep93xx_register_spi(&edb93xx_spi_info, edb93xx_spi_board_info,
157 ARRAY_SIZE(edb93xx_spi_board_info));
158}
159
160
161/*************************************************************************
162 * EDB93xx I2S
163 *************************************************************************/
Mika Westerberg075b20b2011-09-11 12:28:54 +0300164static struct platform_device edb93xx_audio_device = {
165 .name = "edb93xx-audio",
166 .id = -1,
167};
168
Alexander Sverdlin31bb68a2011-03-03 10:53:52 +0100169static int __init edb93xx_has_audio(void)
170{
171 return (machine_is_edb9301() || machine_is_edb9302() ||
172 machine_is_edb9302a() || machine_is_edb9307a() ||
173 machine_is_edb9315a());
174}
175
176static void __init edb93xx_register_i2s(void)
177{
178 if (edb93xx_has_audio()) {
179 ep93xx_register_i2s();
Mika Westerberg075b20b2011-09-11 12:28:54 +0300180 platform_device_register(&edb93xx_audio_device);
Alexander Sverdlin31bb68a2011-03-03 10:53:52 +0100181 }
182}
183
184
185/*************************************************************************
Hartley Sweeten1fbd9722010-01-11 21:38:00 +0100186 * EDB93xx pwm
187 *************************************************************************/
188static void __init edb93xx_register_pwm(void)
189{
190 if (machine_is_edb9301() ||
191 machine_is_edb9302() || machine_is_edb9302a()) {
192 /* EP9301 and EP9302 only have pwm.1 (EGPIO14) */
193 ep93xx_register_pwm(0, 1);
194 } else if (machine_is_edb9307() || machine_is_edb9307a()) {
195 /* EP9307 only has pwm.0 (PWMOUT) */
196 ep93xx_register_pwm(1, 0);
197 } else {
198 /* EP9312 and EP9315 have both */
199 ep93xx_register_pwm(1, 1);
200 }
201}
202
203
Hartley Sweeten13055192011-01-27 17:50:53 +0100204/*************************************************************************
205 * EDB93xx framebuffer
206 *************************************************************************/
207static struct ep93xxfb_mach_info __initdata edb93xxfb_info = {
208 .num_modes = EP93XXFB_USE_MODEDB,
209 .bpp = 16,
210 .flags = 0,
211};
212
213static int __init edb93xx_has_fb(void)
214{
215 /* These platforms have an ep93xx with video capability */
216 return machine_is_edb9307() || machine_is_edb9307a() ||
217 machine_is_edb9312() || machine_is_edb9315() ||
218 machine_is_edb9315a();
219}
220
221static void __init edb93xx_register_fb(void)
222{
223 if (!edb93xx_has_fb())
224 return;
225
226 if (machine_is_edb9307a() || machine_is_edb9315a())
227 edb93xxfb_info.flags |= EP93XXFB_USE_SDCSN0;
228 else
229 edb93xxfb_info.flags |= EP93XXFB_USE_SDCSN3;
230
231 ep93xx_register_fb(&edb93xxfb_info);
232}
233
234
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100235static void __init edb93xx_init_machine(void)
236{
237 ep93xx_init_devices();
238 edb93xx_register_flash();
239 ep93xx_register_eth(&edb93xx_eth_data, 1);
240 edb93xx_register_i2c();
Alexander Sverdlin31bb68a2011-03-03 10:53:52 +0100241 edb93xx_register_spi();
242 edb93xx_register_i2s();
Hartley Sweeten1fbd9722010-01-11 21:38:00 +0100243 edb93xx_register_pwm();
Hartley Sweeten13055192011-01-27 17:50:53 +0100244 edb93xx_register_fb();
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100245}
246
247
248#ifdef CONFIG_MACH_EDB9301
249MACHINE_START(EDB9301, "Cirrus Logic EDB9301 Evaluation Board")
250 /* Maintainer: H Hartley Sweeten <hsweeten@visionengravers.com> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400251 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100252 .map_io = ep93xx_map_io,
253 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100254 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100255 .timer = &ep93xx_timer,
256 .init_machine = edb93xx_init_machine,
Russell King32751662011-11-05 09:54:14 +0000257 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100258MACHINE_END
259#endif
260
261#ifdef CONFIG_MACH_EDB9302
262MACHINE_START(EDB9302, "Cirrus Logic EDB9302 Evaluation Board")
263 /* Maintainer: George Kashperko <george@chas.com.ua> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400264 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100265 .map_io = ep93xx_map_io,
266 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100267 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100268 .timer = &ep93xx_timer,
269 .init_machine = edb93xx_init_machine,
Russell King32751662011-11-05 09:54:14 +0000270 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100271MACHINE_END
272#endif
273
274#ifdef CONFIG_MACH_EDB9302A
275MACHINE_START(EDB9302A, "Cirrus Logic EDB9302A Evaluation Board")
276 /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400277 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100278 .map_io = ep93xx_map_io,
279 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100280 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100281 .timer = &ep93xx_timer,
282 .init_machine = edb93xx_init_machine,
Russell King32751662011-11-05 09:54:14 +0000283 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100284MACHINE_END
285#endif
286
287#ifdef CONFIG_MACH_EDB9307
288MACHINE_START(EDB9307, "Cirrus Logic EDB9307 Evaluation Board")
289 /* Maintainer: Herbert Valerio Riedel <hvr@gnu.org> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400290 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100291 .map_io = ep93xx_map_io,
292 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100293 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100294 .timer = &ep93xx_timer,
295 .init_machine = edb93xx_init_machine,
Russell King32751662011-11-05 09:54:14 +0000296 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100297MACHINE_END
298#endif
299
300#ifdef CONFIG_MACH_EDB9307A
301MACHINE_START(EDB9307A, "Cirrus Logic EDB9307A Evaluation Board")
302 /* Maintainer: H Hartley Sweeten <hsweeten@visionengravers.com> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400303 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100304 .map_io = ep93xx_map_io,
305 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100306 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100307 .timer = &ep93xx_timer,
308 .init_machine = edb93xx_init_machine,
Russell King32751662011-11-05 09:54:14 +0000309 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100310MACHINE_END
311#endif
312
313#ifdef CONFIG_MACH_EDB9312
314MACHINE_START(EDB9312, "Cirrus Logic EDB9312 Evaluation Board")
315 /* Maintainer: Toufeeq Hussain <toufeeq_hussain@infosys.com> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400316 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100317 .map_io = ep93xx_map_io,
318 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100319 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100320 .timer = &ep93xx_timer,
321 .init_machine = edb93xx_init_machine,
Russell King32751662011-11-05 09:54:14 +0000322 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100323MACHINE_END
324#endif
325
326#ifdef CONFIG_MACH_EDB9315
327MACHINE_START(EDB9315, "Cirrus Logic EDB9315 Evaluation Board")
328 /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400329 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100330 .map_io = ep93xx_map_io,
331 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100332 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100333 .timer = &ep93xx_timer,
334 .init_machine = edb93xx_init_machine,
Russell King32751662011-11-05 09:54:14 +0000335 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100336MACHINE_END
337#endif
338
339#ifdef CONFIG_MACH_EDB9315A
340MACHINE_START(EDB9315A, "Cirrus Logic EDB9315A Evaluation Board")
341 /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400342 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100343 .map_io = ep93xx_map_io,
344 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100345 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100346 .timer = &ep93xx_timer,
347 .init_machine = edb93xx_init_machine,
Russell King32751662011-11-05 09:54:14 +0000348 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100349MACHINE_END
350#endif