blob: b8f53d57a2994c0972a07f80fdbf923f6b736ca1 [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>
Arnd Bergmanna3b29242012-08-24 15:12:11 +020038#include <linux/platform_data/video-ep93xx.h>
39#include <linux/platform_data/spi-ep93xx.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
Ryan Mallon258249e2012-01-11 09:06:08 +110046#include "soc.h"
Hartley Sweeten583ddaf2009-07-06 17:39:50 +010047
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010048static void __init edb93xx_register_flash(void)
49{
50 if (machine_is_edb9307() || machine_is_edb9312() ||
51 machine_is_edb9315()) {
Hartley Sweeten16bcf782010-06-10 16:19:08 +010052 ep93xx_register_flash(4, EP93XX_CS6_PHYS_BASE, SZ_32M);
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010053 } else {
Hartley Sweeten16bcf782010-06-10 16:19:08 +010054 ep93xx_register_flash(2, EP93XX_CS6_PHYS_BASE, SZ_16M);
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010055 }
56}
57
Hartley Sweetenb370e082010-03-18 18:04:06 +010058static struct ep93xx_eth_data __initdata edb93xx_eth_data = {
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010059 .phy_id = 1,
60};
61
Hartley Sweeten6531a992009-10-08 00:45:00 +010062
63/*************************************************************************
64 * EDB93xx i2c peripheral handling
65 *************************************************************************/
Hartley Sweetenb370e082010-03-18 18:04:06 +010066static struct i2c_gpio_platform_data __initdata edb93xx_i2c_gpio_data = {
Hartley Sweeten6531a992009-10-08 00:45:00 +010067 .sda_pin = EP93XX_GPIO_LINE_EEDAT,
68 .sda_is_open_drain = 0,
69 .scl_pin = EP93XX_GPIO_LINE_EECLK,
70 .scl_is_open_drain = 0,
71 .udelay = 0, /* default to 100 kHz */
72 .timeout = 0, /* default to 100 ms */
73};
74
75static struct i2c_board_info __initdata edb93xxa_i2c_board_info[] = {
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010076 {
77 I2C_BOARD_INFO("isl1208", 0x6f),
78 },
79};
80
Hartley Sweeten6531a992009-10-08 00:45:00 +010081static struct i2c_board_info __initdata edb93xx_i2c_board_info[] = {
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010082 {
83 I2C_BOARD_INFO("ds1337", 0x68),
84 },
85};
86
87static void __init edb93xx_register_i2c(void)
88{
89 if (machine_is_edb9302a() || machine_is_edb9307a() ||
90 machine_is_edb9315a()) {
Hartley Sweeten6531a992009-10-08 00:45:00 +010091 ep93xx_register_i2c(&edb93xx_i2c_gpio_data,
92 edb93xxa_i2c_board_info,
93 ARRAY_SIZE(edb93xxa_i2c_board_info));
Todor Colov688df8f2012-06-10 15:44:08 +030094 } else if (machine_is_edb9302() || machine_is_edb9307()
95 || machine_is_edb9312() || machine_is_edb9315()) {
Hartley Sweeten3d977c02009-10-14 01:56:10 +010096 ep93xx_register_i2c(&edb93xx_i2c_gpio_data,
Hartley Sweeten6531a992009-10-08 00:45:00 +010097 edb93xx_i2c_board_info,
98 ARRAY_SIZE(edb93xx_i2c_board_info));
Hartley Sweetena2bd40d2009-05-04 19:09:25 +010099 }
100}
101
Hartley Sweeten1fbd9722010-01-11 21:38:00 +0100102
103/*************************************************************************
Alexander Sverdlin31bb68a2011-03-03 10:53:52 +0100104 * EDB93xx SPI peripheral handling
105 *************************************************************************/
106static struct cs4271_platform_data edb93xx_cs4271_data = {
107 .gpio_nreset = -EINVAL, /* filled in later */
108};
109
110static int edb93xx_cs4271_hw_setup(struct spi_device *spi)
111{
112 return gpio_request_one(EP93XX_GPIO_LINE_EGPIO6,
113 GPIOF_OUT_INIT_HIGH, spi->modalias);
114}
115
116static void edb93xx_cs4271_hw_cleanup(struct spi_device *spi)
117{
118 gpio_free(EP93XX_GPIO_LINE_EGPIO6);
119}
120
121static void edb93xx_cs4271_hw_cs_control(struct spi_device *spi, int value)
122{
123 gpio_set_value(EP93XX_GPIO_LINE_EGPIO6, value);
124}
125
126static struct ep93xx_spi_chip_ops edb93xx_cs4271_hw = {
127 .setup = edb93xx_cs4271_hw_setup,
128 .cleanup = edb93xx_cs4271_hw_cleanup,
129 .cs_control = edb93xx_cs4271_hw_cs_control,
130};
131
132static struct spi_board_info edb93xx_spi_board_info[] __initdata = {
133 {
134 .modalias = "cs4271",
135 .platform_data = &edb93xx_cs4271_data,
136 .controller_data = &edb93xx_cs4271_hw,
137 .max_speed_hz = 6000000,
138 .bus_num = 0,
139 .chip_select = 0,
140 .mode = SPI_MODE_3,
141 },
142};
143
144static struct ep93xx_spi_info edb93xx_spi_info __initdata = {
145 .num_chipselect = ARRAY_SIZE(edb93xx_spi_board_info),
146};
147
148static void __init edb93xx_register_spi(void)
149{
150 if (machine_is_edb9301() || machine_is_edb9302())
151 edb93xx_cs4271_data.gpio_nreset = EP93XX_GPIO_LINE_EGPIO1;
152 else if (machine_is_edb9302a() || machine_is_edb9307a())
153 edb93xx_cs4271_data.gpio_nreset = EP93XX_GPIO_LINE_H(2);
154 else if (machine_is_edb9315a())
155 edb93xx_cs4271_data.gpio_nreset = EP93XX_GPIO_LINE_EGPIO14;
156
157 ep93xx_register_spi(&edb93xx_spi_info, edb93xx_spi_board_info,
158 ARRAY_SIZE(edb93xx_spi_board_info));
159}
160
161
162/*************************************************************************
163 * EDB93xx I2S
164 *************************************************************************/
Mika Westerberg075b20b2011-09-11 12:28:54 +0300165static struct platform_device edb93xx_audio_device = {
166 .name = "edb93xx-audio",
167 .id = -1,
168};
169
Alexander Sverdlin31bb68a2011-03-03 10:53:52 +0100170static int __init edb93xx_has_audio(void)
171{
172 return (machine_is_edb9301() || machine_is_edb9302() ||
173 machine_is_edb9302a() || machine_is_edb9307a() ||
174 machine_is_edb9315a());
175}
176
177static void __init edb93xx_register_i2s(void)
178{
179 if (edb93xx_has_audio()) {
180 ep93xx_register_i2s();
Mika Westerberg075b20b2011-09-11 12:28:54 +0300181 platform_device_register(&edb93xx_audio_device);
Alexander Sverdlin31bb68a2011-03-03 10:53:52 +0100182 }
183}
184
185
186/*************************************************************************
Hartley Sweeten1fbd9722010-01-11 21:38:00 +0100187 * EDB93xx pwm
188 *************************************************************************/
189static void __init edb93xx_register_pwm(void)
190{
191 if (machine_is_edb9301() ||
192 machine_is_edb9302() || machine_is_edb9302a()) {
193 /* EP9301 and EP9302 only have pwm.1 (EGPIO14) */
194 ep93xx_register_pwm(0, 1);
195 } else if (machine_is_edb9307() || machine_is_edb9307a()) {
196 /* EP9307 only has pwm.0 (PWMOUT) */
197 ep93xx_register_pwm(1, 0);
198 } else {
199 /* EP9312 and EP9315 have both */
200 ep93xx_register_pwm(1, 1);
201 }
202}
203
204
Hartley Sweeten13055192011-01-27 17:50:53 +0100205/*************************************************************************
206 * EDB93xx framebuffer
207 *************************************************************************/
208static struct ep93xxfb_mach_info __initdata edb93xxfb_info = {
209 .num_modes = EP93XXFB_USE_MODEDB,
210 .bpp = 16,
211 .flags = 0,
212};
213
214static int __init edb93xx_has_fb(void)
215{
216 /* These platforms have an ep93xx with video capability */
217 return machine_is_edb9307() || machine_is_edb9307a() ||
218 machine_is_edb9312() || machine_is_edb9315() ||
219 machine_is_edb9315a();
220}
221
222static void __init edb93xx_register_fb(void)
223{
224 if (!edb93xx_has_fb())
225 return;
226
227 if (machine_is_edb9307a() || machine_is_edb9315a())
228 edb93xxfb_info.flags |= EP93XXFB_USE_SDCSN0;
229 else
230 edb93xxfb_info.flags |= EP93XXFB_USE_SDCSN3;
231
232 ep93xx_register_fb(&edb93xxfb_info);
233}
234
235
Rafal Prylowski762be292012-04-12 14:15:15 +0200236/*************************************************************************
237 * EDB93xx IDE
238 *************************************************************************/
239static int __init edb93xx_has_ide(void)
240{
241 /*
242 * Although EDB9312 and EDB9315 do have IDE capability, they have
243 * INTRQ line wired as pull-up, which makes using IDE interface
244 * problematic.
245 */
246 return machine_is_edb9312() || machine_is_edb9315() ||
247 machine_is_edb9315a();
248}
249
250static void __init edb93xx_register_ide(void)
251{
252 if (!edb93xx_has_ide())
253 return;
254
255 ep93xx_register_ide();
256}
257
258
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100259static void __init edb93xx_init_machine(void)
260{
261 ep93xx_init_devices();
262 edb93xx_register_flash();
263 ep93xx_register_eth(&edb93xx_eth_data, 1);
264 edb93xx_register_i2c();
Alexander Sverdlin31bb68a2011-03-03 10:53:52 +0100265 edb93xx_register_spi();
266 edb93xx_register_i2s();
Hartley Sweeten1fbd9722010-01-11 21:38:00 +0100267 edb93xx_register_pwm();
Hartley Sweeten13055192011-01-27 17:50:53 +0100268 edb93xx_register_fb();
Rafal Prylowski762be292012-04-12 14:15:15 +0200269 edb93xx_register_ide();
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100270}
271
272
273#ifdef CONFIG_MACH_EDB9301
274MACHINE_START(EDB9301, "Cirrus Logic EDB9301 Evaluation Board")
275 /* Maintainer: H Hartley Sweeten <hsweeten@visionengravers.com> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400276 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100277 .map_io = ep93xx_map_io,
278 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100279 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100280 .timer = &ep93xx_timer,
281 .init_machine = edb93xx_init_machine,
Shawn Guoc9142832012-04-26 10:05:15 +0800282 .init_late = ep93xx_init_late,
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_EDB9302
288MACHINE_START(EDB9302, "Cirrus Logic EDB9302 Evaluation Board")
289 /* Maintainer: George Kashperko <george@chas.com.ua> */
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,
Shawn Guoc9142832012-04-26 10:05:15 +0800296 .init_late = ep93xx_init_late,
Russell King32751662011-11-05 09:54:14 +0000297 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100298MACHINE_END
299#endif
300
301#ifdef CONFIG_MACH_EDB9302A
302MACHINE_START(EDB9302A, "Cirrus Logic EDB9302A Evaluation Board")
303 /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400304 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100305 .map_io = ep93xx_map_io,
306 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100307 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100308 .timer = &ep93xx_timer,
309 .init_machine = edb93xx_init_machine,
Shawn Guoc9142832012-04-26 10:05:15 +0800310 .init_late = ep93xx_init_late,
Russell King32751662011-11-05 09:54:14 +0000311 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100312MACHINE_END
313#endif
314
315#ifdef CONFIG_MACH_EDB9307
316MACHINE_START(EDB9307, "Cirrus Logic EDB9307 Evaluation Board")
317 /* Maintainer: Herbert Valerio Riedel <hvr@gnu.org> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400318 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100319 .map_io = ep93xx_map_io,
320 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100321 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100322 .timer = &ep93xx_timer,
323 .init_machine = edb93xx_init_machine,
Shawn Guoc9142832012-04-26 10:05:15 +0800324 .init_late = ep93xx_init_late,
Russell King32751662011-11-05 09:54:14 +0000325 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100326MACHINE_END
327#endif
328
329#ifdef CONFIG_MACH_EDB9307A
330MACHINE_START(EDB9307A, "Cirrus Logic EDB9307A Evaluation Board")
331 /* Maintainer: H Hartley Sweeten <hsweeten@visionengravers.com> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400332 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100333 .map_io = ep93xx_map_io,
334 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100335 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100336 .timer = &ep93xx_timer,
337 .init_machine = edb93xx_init_machine,
Shawn Guoc9142832012-04-26 10:05:15 +0800338 .init_late = ep93xx_init_late,
Russell King32751662011-11-05 09:54:14 +0000339 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100340MACHINE_END
341#endif
342
343#ifdef CONFIG_MACH_EDB9312
344MACHINE_START(EDB9312, "Cirrus Logic EDB9312 Evaluation Board")
345 /* Maintainer: Toufeeq Hussain <toufeeq_hussain@infosys.com> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400346 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100347 .map_io = ep93xx_map_io,
348 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100349 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100350 .timer = &ep93xx_timer,
351 .init_machine = edb93xx_init_machine,
Shawn Guoc9142832012-04-26 10:05:15 +0800352 .init_late = ep93xx_init_late,
Russell King32751662011-11-05 09:54:14 +0000353 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100354MACHINE_END
355#endif
356
357#ifdef CONFIG_MACH_EDB9315
358MACHINE_START(EDB9315, "Cirrus Logic EDB9315 Evaluation Board")
359 /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400360 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100361 .map_io = ep93xx_map_io,
362 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100363 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100364 .timer = &ep93xx_timer,
365 .init_machine = edb93xx_init_machine,
Shawn Guoc9142832012-04-26 10:05:15 +0800366 .init_late = ep93xx_init_late,
Russell King32751662011-11-05 09:54:14 +0000367 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100368MACHINE_END
369#endif
370
371#ifdef CONFIG_MACH_EDB9315A
372MACHINE_START(EDB9315A, "Cirrus Logic EDB9315A Evaluation Board")
373 /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400374 .atag_offset = 0x100,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100375 .map_io = ep93xx_map_io,
376 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100377 .handle_irq = vic_handle_irq,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100378 .timer = &ep93xx_timer,
379 .init_machine = edb93xx_init_machine,
Shawn Guoc9142832012-04-26 10:05:15 +0800380 .init_late = ep93xx_init_late,
Russell King32751662011-11-05 09:54:14 +0000381 .restart = ep93xx_restart,
Hartley Sweetena2bd40d2009-05-04 19:09:25 +0100382MACHINE_END
383#endif