blob: ff7228caa7da042b537f81242e6cf822a6436969 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
2 * File: arch/blackfin/mach-bf537/boards/stamp.c
3 * Based on: arch/blackfin/mach-bf533/boards/ezkit.c
4 * Author: Aidan Williams <aidan@nicta.com.au>
5 *
6 * Created:
7 * Description:
8 *
9 * Modified:
10 * Copyright 2005 National ICT Australia (NICTA)
11 * Copyright 2004-2006 Analog Devices Inc.
12 *
13 * Bugs: Enter bugs at http://blackfin.uclinux.org/
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, see the file COPYING, or write
27 * to the Free Software Foundation, Inc.,
28 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
29 */
30
31#include <linux/device.h>
Mike Frysingerfc689112008-06-25 11:41:42 +080032#include <linux/kernel.h>
Bryan Wu1394f032007-05-06 14:50:22 -070033#include <linux/platform_device.h>
34#include <linux/mtd/mtd.h>
Mike Frysingerfc689112008-06-25 11:41:42 +080035#include <linux/mtd/nand.h>
Bryan Wu1394f032007-05-06 14:50:22 -070036#include <linux/mtd/partitions.h>
Mike Frysingerfc689112008-06-25 11:41:42 +080037#include <linux/mtd/plat-ram.h>
Mike Frysingerde8c43f2008-01-24 17:14:04 +080038#include <linux/mtd/physmap.h>
Bryan Wu1394f032007-05-06 14:50:22 -070039#include <linux/spi/spi.h>
40#include <linux/spi/flash.h>
41#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
Mike Frysingerf02bcec2007-11-15 21:29:15 +080042#include <linux/usb/isp1362.h>
Bryan Wu1394f032007-05-06 14:50:22 -070043#endif
Jeff Garzik0a87e3e2008-02-01 18:02:30 -050044#include <linux/ata_platform.h>
Bryan Wu1394f032007-05-06 14:50:22 -070045#include <linux/irq.h>
46#include <linux/interrupt.h>
Bryan Wu81d9c7f2008-03-26 10:02:13 +080047#include <linux/i2c.h>
David Brownell27f5d752007-10-04 18:06:16 -070048#include <linux/usb/sl811.h>
Yi Lif79ea4c2009-01-07 23:14:38 +080049#include <linux/spi/mmc_spi.h>
Bryan Wuc6c4d7b2007-10-11 01:20:06 +080050#include <asm/dma.h>
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080051#include <asm/bfin5xx_spi.h>
Bryan Wuc6c4d7b2007-10-11 01:20:06 +080052#include <asm/reboot.h>
Bryan Wu5d448dd2007-11-12 23:24:42 +080053#include <asm/portmux.h>
Michael Hennerich14b03202008-05-07 11:41:26 +080054#include <asm/dpmc.h>
Bryan Wu1394f032007-05-06 14:50:22 -070055
56/*
57 * Name the Board for the /proc/cpuinfo
58 */
Mike Frysingerfe85cad2008-11-18 17:48:22 +080059const char bfin_board_name[] = "ADI BF537-STAMP";
Bryan Wu1394f032007-05-06 14:50:22 -070060
61/*
62 * Driver needs to know address, irq and flag pin.
63 */
64
Bryan Wu1394f032007-05-06 14:50:22 -070065#if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
Michael Hennerich3f375692008-11-18 17:48:22 +080066#include <linux/usb/isp1760.h>
67static struct resource bfin_isp1760_resources[] = {
Bryan Wu1394f032007-05-06 14:50:22 -070068 [0] = {
Michael Hennerich3f375692008-11-18 17:48:22 +080069 .start = 0x203C0000,
70 .end = 0x203C0000 + 0x000fffff,
Bryan Wu1394f032007-05-06 14:50:22 -070071 .flags = IORESOURCE_MEM,
72 },
73 [1] = {
Michael Hennerich3f375692008-11-18 17:48:22 +080074 .start = IRQ_PF7,
75 .end = IRQ_PF7,
Michael Hennerich6a6be3d2009-01-07 23:14:39 +080076 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
Bryan Wu1394f032007-05-06 14:50:22 -070077 },
78};
79
Michael Hennerich3f375692008-11-18 17:48:22 +080080static struct isp1760_platform_data isp1760_priv = {
81 .is_isp1761 = 0,
82 .port1_disable = 0,
83 .bus_width_16 = 1,
84 .port1_otg = 0,
85 .analog_oc = 0,
86 .dack_polarity_high = 0,
87 .dreq_polarity_high = 0,
88};
89
90static struct platform_device bfin_isp1760_device = {
91 .name = "isp1760-hcd",
Bryan Wu1394f032007-05-06 14:50:22 -070092 .id = 0,
Michael Hennerich3f375692008-11-18 17:48:22 +080093 .dev = {
94 .platform_data = &isp1760_priv,
95 },
96 .num_resources = ARRAY_SIZE(bfin_isp1760_resources),
97 .resource = bfin_isp1760_resources,
Bryan Wu1394f032007-05-06 14:50:22 -070098};
Bryan Wu1394f032007-05-06 14:50:22 -070099#endif
100
Michael Hennerich2463ef22008-01-27 16:49:48 +0800101#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
102#include <linux/input.h>
103#include <linux/gpio_keys.h>
104
105static struct gpio_keys_button bfin_gpio_keys_table[] = {
106 {BTN_0, GPIO_PF2, 1, "gpio-keys: BTN0"},
107 {BTN_1, GPIO_PF3, 1, "gpio-keys: BTN1"},
108 {BTN_2, GPIO_PF4, 1, "gpio-keys: BTN2"},
109 {BTN_3, GPIO_PF5, 1, "gpio-keys: BTN3"},
110};
111
112static struct gpio_keys_platform_data bfin_gpio_keys_data = {
113 .buttons = bfin_gpio_keys_table,
114 .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table),
115};
116
117static struct platform_device bfin_device_gpiokeys = {
118 .name = "gpio-keys",
119 .dev = {
120 .platform_data = &bfin_gpio_keys_data,
121 },
122};
123#endif
124
Mike Frysingercad2ab62008-02-22 17:01:31 +0800125static struct resource bfin_gpios_resources = {
126 .start = 0,
127 .end = MAX_BLACKFIN_GPIOS - 1,
128 .flags = IORESOURCE_IRQ,
129};
130
131static struct platform_device bfin_gpios_device = {
132 .name = "simple-gpio",
133 .id = -1,
134 .num_resources = 1,
135 .resource = &bfin_gpios_resources,
136};
137
Bryan Wu1394f032007-05-06 14:50:22 -0700138#if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
139static struct resource bfin_pcmcia_cf_resources[] = {
140 {
141 .start = 0x20310000, /* IO PORT */
142 .end = 0x20312000,
143 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800144 }, {
Simon Arlottd2d50aa2007-06-11 15:31:30 +0800145 .start = 0x20311000, /* Attribute Memory */
Bryan Wu1394f032007-05-06 14:50:22 -0700146 .end = 0x20311FFF,
147 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800148 }, {
Bryan Wu1394f032007-05-06 14:50:22 -0700149 .start = IRQ_PF4,
150 .end = IRQ_PF4,
151 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800152 }, {
Bryan Wu1394f032007-05-06 14:50:22 -0700153 .start = 6, /* Card Detect PF6 */
154 .end = 6,
155 .flags = IORESOURCE_IRQ,
156 },
157};
158
159static struct platform_device bfin_pcmcia_cf_device = {
160 .name = "bfin_cf_pcmcia",
161 .id = -1,
162 .num_resources = ARRAY_SIZE(bfin_pcmcia_cf_resources),
163 .resource = bfin_pcmcia_cf_resources,
164};
165#endif
166
167#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
168static struct platform_device rtc_device = {
169 .name = "rtc-bfin",
170 .id = -1,
171};
172#endif
173
174#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
175static struct resource smc91x_resources[] = {
176 {
177 .name = "smc91x-regs",
178 .start = 0x20300300,
179 .end = 0x20300300 + 16,
180 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800181 }, {
Bryan Wu1394f032007-05-06 14:50:22 -0700182
183 .start = IRQ_PF7,
184 .end = IRQ_PF7,
185 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
186 },
187};
188static struct platform_device smc91x_device = {
189 .name = "smc91x",
190 .id = 0,
191 .num_resources = ARRAY_SIZE(smc91x_resources),
192 .resource = smc91x_resources,
193};
194#endif
195
Alex Landauf40d24d2007-07-12 12:11:48 +0800196#if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
197static struct resource dm9000_resources[] = {
198 [0] = {
199 .start = 0x203FB800,
200 .end = 0x203FB800 + 8,
201 .flags = IORESOURCE_MEM,
202 },
203 [1] = {
204 .start = IRQ_PF9,
205 .end = IRQ_PF9,
206 .flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE),
207 },
208};
209
210static struct platform_device dm9000_device = {
211 .name = "dm9000",
212 .id = -1,
213 .num_resources = ARRAY_SIZE(dm9000_resources),
214 .resource = dm9000_resources,
215};
216#endif
217
Michael Hennerich561cc182007-11-17 23:56:08 +0800218#if defined(CONFIG_AX88180) || defined(CONFIG_AX88180_MODULE)
219static struct resource ax88180_resources[] = {
220 [0] = {
221 .start = 0x20300000,
222 .end = 0x20300000 + 0x8000,
223 .flags = IORESOURCE_MEM,
224 },
225 [1] = {
226 .start = IRQ_PF7,
227 .end = IRQ_PF7,
228 .flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL),
229 },
230};
231
232static struct platform_device ax88180_device = {
233 .name = "ax88180",
234 .id = -1,
235 .num_resources = ARRAY_SIZE(ax88180_resources),
236 .resource = ax88180_resources,
237};
238#endif
239
Bryan Wu1394f032007-05-06 14:50:22 -0700240#if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
241static struct resource sl811_hcd_resources[] = {
242 {
243 .start = 0x20340000,
244 .end = 0x20340000,
245 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800246 }, {
Bryan Wu1394f032007-05-06 14:50:22 -0700247 .start = 0x20340004,
248 .end = 0x20340004,
249 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800250 }, {
Bryan Wu1394f032007-05-06 14:50:22 -0700251 .start = CONFIG_USB_SL811_BFIN_IRQ,
252 .end = CONFIG_USB_SL811_BFIN_IRQ,
253 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
254 },
255};
256
257#if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
258void sl811_port_power(struct device *dev, int is_on)
259{
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800260 gpio_request(CONFIG_USB_SL811_BFIN_GPIO_VBUS, "usb:SL811_VBUS");
Michael Hennerichacbcd262008-01-22 18:36:20 +0800261 gpio_direction_output(CONFIG_USB_SL811_BFIN_GPIO_VBUS, is_on);
Bryan Wu1394f032007-05-06 14:50:22 -0700262}
263#endif
264
265static struct sl811_platform_data sl811_priv = {
266 .potpg = 10,
267 .power = 250, /* == 500mA */
268#if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
269 .port_power = &sl811_port_power,
270#endif
271};
272
273static struct platform_device sl811_hcd_device = {
274 .name = "sl811-hcd",
275 .id = 0,
276 .dev = {
277 .platform_data = &sl811_priv,
278 },
279 .num_resources = ARRAY_SIZE(sl811_hcd_resources),
280 .resource = sl811_hcd_resources,
281};
282#endif
283
284#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
285static struct resource isp1362_hcd_resources[] = {
286 {
287 .start = 0x20360000,
288 .end = 0x20360000,
289 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800290 }, {
Bryan Wu1394f032007-05-06 14:50:22 -0700291 .start = 0x20360004,
292 .end = 0x20360004,
293 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800294 }, {
Bryan Wu1394f032007-05-06 14:50:22 -0700295 .start = CONFIG_USB_ISP1362_BFIN_GPIO_IRQ,
296 .end = CONFIG_USB_ISP1362_BFIN_GPIO_IRQ,
297 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
298 },
299};
300
301static struct isp1362_platform_data isp1362_priv = {
302 .sel15Kres = 1,
303 .clknotstop = 0,
304 .oc_enable = 0,
305 .int_act_high = 0,
306 .int_edge_triggered = 0,
307 .remote_wakeup_connected = 0,
308 .no_power_switching = 1,
309 .power_switching_mode = 0,
310};
311
312static struct platform_device isp1362_hcd_device = {
313 .name = "isp1362-hcd",
314 .id = 0,
315 .dev = {
316 .platform_data = &isp1362_priv,
317 },
318 .num_resources = ARRAY_SIZE(isp1362_hcd_resources),
319 .resource = isp1362_hcd_resources,
320};
321#endif
322
323#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
Graf Yang65319622009-02-04 16:49:45 +0800324static struct platform_device bfin_mii_bus = {
325 .name = "bfin_mii_bus",
326};
327
Bryan Wu1394f032007-05-06 14:50:22 -0700328static struct platform_device bfin_mac_device = {
329 .name = "bfin_mac",
Graf Yang65319622009-02-04 16:49:45 +0800330 .dev.platform_data = &bfin_mii_bus,
Bryan Wu1394f032007-05-06 14:50:22 -0700331};
332#endif
333
334#if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
335static struct resource net2272_bfin_resources[] = {
336 {
337 .start = 0x20300000,
338 .end = 0x20300000 + 0x100,
339 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800340 }, {
Bryan Wu1394f032007-05-06 14:50:22 -0700341 .start = IRQ_PF7,
342 .end = IRQ_PF7,
343 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
344 },
345};
346
347static struct platform_device net2272_bfin_device = {
348 .name = "net2272",
349 .id = -1,
350 .num_resources = ARRAY_SIZE(net2272_bfin_resources),
351 .resource = net2272_bfin_resources,
352};
353#endif
354
Mike Frysingerfc689112008-06-25 11:41:42 +0800355#if defined(CONFIG_MTD_NAND_PLATFORM) || defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
356#ifdef CONFIG_MTD_PARTITIONS
357const char *part_probes[] = { "cmdlinepart", "RedBoot", NULL };
358
359static struct mtd_partition bfin_plat_nand_partitions[] = {
360 {
Robin Getzaa582972008-08-05 17:47:29 +0800361 .name = "linux kernel(nand)",
Mike Frysingerfc689112008-06-25 11:41:42 +0800362 .size = 0x400000,
363 .offset = 0,
364 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800365 .name = "file system(nand)",
Mike Frysingerfc689112008-06-25 11:41:42 +0800366 .size = MTDPART_SIZ_FULL,
367 .offset = MTDPART_OFS_APPEND,
368 },
369};
370#endif
371
372#define BFIN_NAND_PLAT_CLE 2
373#define BFIN_NAND_PLAT_ALE 1
374static void bfin_plat_nand_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
375{
376 struct nand_chip *this = mtd->priv;
377
378 if (cmd == NAND_CMD_NONE)
379 return;
380
381 if (ctrl & NAND_CLE)
382 writeb(cmd, this->IO_ADDR_W + (1 << BFIN_NAND_PLAT_CLE));
383 else
384 writeb(cmd, this->IO_ADDR_W + (1 << BFIN_NAND_PLAT_ALE));
385}
386
387#define BFIN_NAND_PLAT_READY GPIO_PF3
388static int bfin_plat_nand_dev_ready(struct mtd_info *mtd)
389{
390 return gpio_get_value(BFIN_NAND_PLAT_READY);
391}
392
393static struct platform_nand_data bfin_plat_nand_data = {
394 .chip = {
395 .chip_delay = 30,
396#ifdef CONFIG_MTD_PARTITIONS
397 .part_probe_types = part_probes,
398 .partitions = bfin_plat_nand_partitions,
399 .nr_partitions = ARRAY_SIZE(bfin_plat_nand_partitions),
400#endif
401 },
402 .ctrl = {
403 .cmd_ctrl = bfin_plat_nand_cmd_ctrl,
404 .dev_ready = bfin_plat_nand_dev_ready,
405 },
406};
407
408#define MAX(x, y) (x > y ? x : y)
409static struct resource bfin_plat_nand_resources = {
410 .start = 0x20212000,
411 .end = 0x20212000 + (1 << MAX(BFIN_NAND_PLAT_CLE, BFIN_NAND_PLAT_ALE)),
412 .flags = IORESOURCE_IO,
413};
414
415static struct platform_device bfin_async_nand_device = {
416 .name = "gen_nand",
417 .id = -1,
418 .num_resources = 1,
419 .resource = &bfin_plat_nand_resources,
420 .dev = {
421 .platform_data = &bfin_plat_nand_data,
422 },
423};
424
425static void bfin_plat_nand_init(void)
426{
427 gpio_request(BFIN_NAND_PLAT_READY, "bfin_nand_plat");
428}
429#else
430static void bfin_plat_nand_init(void) {}
431#endif
432
Mike Frysinger793dc272008-03-26 08:09:12 +0800433#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800434static struct mtd_partition stamp_partitions[] = {
435 {
Robin Getzaa582972008-08-05 17:47:29 +0800436 .name = "bootloader(nor)",
Mike Frysingeredf05642008-02-25 11:38:11 +0800437 .size = 0x40000,
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800438 .offset = 0,
439 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800440 .name = "linux kernel(nor)",
Grace Pan6ecb5b62009-01-07 23:14:38 +0800441 .size = 0x180000,
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800442 .offset = MTDPART_OFS_APPEND,
443 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800444 .name = "file system(nor)",
Grace Pan6ecb5b62009-01-07 23:14:38 +0800445 .size = 0x400000 - 0x40000 - 0x180000 - 0x10000,
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800446 .offset = MTDPART_OFS_APPEND,
447 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800448 .name = "MAC Address(nor)",
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800449 .size = MTDPART_SIZ_FULL,
450 .offset = 0x3F0000,
451 .mask_flags = MTD_WRITEABLE,
452 }
453};
454
455static struct physmap_flash_data stamp_flash_data = {
456 .width = 2,
457 .parts = stamp_partitions,
458 .nr_parts = ARRAY_SIZE(stamp_partitions),
459};
460
461static struct resource stamp_flash_resource = {
462 .start = 0x20000000,
463 .end = 0x203fffff,
464 .flags = IORESOURCE_MEM,
465};
466
467static struct platform_device stamp_flash_device = {
468 .name = "physmap-flash",
469 .id = 0,
470 .dev = {
471 .platform_data = &stamp_flash_data,
472 },
473 .num_resources = 1,
474 .resource = &stamp_flash_resource,
475};
Mike Frysinger793dc272008-03-26 08:09:12 +0800476#endif
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800477
Bryan Wu1394f032007-05-06 14:50:22 -0700478#if defined(CONFIG_MTD_M25P80) \
479 || defined(CONFIG_MTD_M25P80_MODULE)
480static struct mtd_partition bfin_spi_flash_partitions[] = {
481 {
Robin Getzaa582972008-08-05 17:47:29 +0800482 .name = "bootloader(spi)",
Mike Frysingeredf05642008-02-25 11:38:11 +0800483 .size = 0x00040000,
Bryan Wu1394f032007-05-06 14:50:22 -0700484 .offset = 0,
485 .mask_flags = MTD_CAP_ROM
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800486 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800487 .name = "linux kernel(spi)",
Grace Pan6ecb5b62009-01-07 23:14:38 +0800488 .size = 0x180000,
Mike Frysingeredf05642008-02-25 11:38:11 +0800489 .offset = MTDPART_OFS_APPEND,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800490 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800491 .name = "file system(spi)",
Mike Frysingeredf05642008-02-25 11:38:11 +0800492 .size = MTDPART_SIZ_FULL,
493 .offset = MTDPART_OFS_APPEND,
Bryan Wu1394f032007-05-06 14:50:22 -0700494 }
495};
496
497static struct flash_platform_data bfin_spi_flash_data = {
498 .name = "m25p80",
499 .parts = bfin_spi_flash_partitions,
500 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
Michael Hennerich88a8078b32008-11-18 17:48:22 +0800501 /* .type = "m25p64", */
Bryan Wu1394f032007-05-06 14:50:22 -0700502};
503
504/* SPI flash chip (m25p64) */
505static struct bfin5xx_spi_chip spi_flash_chip_info = {
506 .enable_dma = 0, /* use dma transfer with this chip*/
507 .bits_per_word = 8,
508};
509#endif
510
Mike Frysingera261eec2009-05-20 14:05:36 +0000511#if defined(CONFIG_BFIN_SPI_ADC) \
512 || defined(CONFIG_BFIN_SPI_ADC_MODULE)
Bryan Wu1394f032007-05-06 14:50:22 -0700513/* SPI ADC chip */
514static struct bfin5xx_spi_chip spi_adc_chip_info = {
515 .enable_dma = 1, /* use dma transfer with this chip*/
516 .bits_per_word = 16,
517};
518#endif
519
520#if defined(CONFIG_SND_BLACKFIN_AD1836) \
521 || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
522static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
523 .enable_dma = 0,
524 .bits_per_word = 16,
525};
526#endif
527
528#if defined(CONFIG_AD9960) || defined(CONFIG_AD9960_MODULE)
529static struct bfin5xx_spi_chip ad9960_spi_chip_info = {
530 .enable_dma = 0,
531 .bits_per_word = 16,
532};
533#endif
534
Yi Lif79ea4c2009-01-07 23:14:38 +0800535#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
536#define MMC_SPI_CARD_DETECT_INT IRQ_PF5
537
538static int bfin_mmc_spi_init(struct device *dev,
539 irqreturn_t (*detect_int)(int, void *), void *data)
540{
541 return request_irq(MMC_SPI_CARD_DETECT_INT, detect_int,
542 IRQF_TRIGGER_FALLING, "mmc-spi-detect", data);
543}
544
545static void bfin_mmc_spi_exit(struct device *dev, void *data)
546{
547 free_irq(MMC_SPI_CARD_DETECT_INT, data);
548}
549
550static struct mmc_spi_platform_data bfin_mmc_spi_pdata = {
551 .init = bfin_mmc_spi_init,
552 .exit = bfin_mmc_spi_exit,
553 .detect_delay = 100, /* msecs */
554};
555
556static struct bfin5xx_spi_chip mmc_spi_chip_info = {
557 .enable_dma = 0,
558 .bits_per_word = 8,
559};
560#endif
561
Bryan Wu1394f032007-05-06 14:50:22 -0700562#if defined(CONFIG_PBX)
563static struct bfin5xx_spi_chip spi_si3xxx_chip_info = {
564 .ctl_reg = 0x4, /* send zero */
565 .enable_dma = 0,
566 .bits_per_word = 8,
567 .cs_change_per_word = 1,
568};
569#endif
570
Bryan Wu1394f032007-05-06 14:50:22 -0700571#if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
Michael Hennerich46aa04f2008-10-13 11:30:17 +0800572#include <linux/spi/ad7877.h>
Bryan Wu1394f032007-05-06 14:50:22 -0700573static struct bfin5xx_spi_chip spi_ad7877_chip_info = {
Bryan Wu1394f032007-05-06 14:50:22 -0700574 .enable_dma = 0,
575 .bits_per_word = 16,
576};
577
578static const struct ad7877_platform_data bfin_ad7877_ts_info = {
579 .model = 7877,
580 .vref_delay_usecs = 50, /* internal, no capacitor */
581 .x_plate_ohms = 419,
582 .y_plate_ohms = 486,
583 .pressure_max = 1000,
584 .pressure_min = 0,
585 .stopacq_polarity = 1,
586 .first_conversion_delay = 3,
587 .acquisition_time = 1,
588 .averaging = 1,
589 .pen_down_acc_interval = 1,
590};
591#endif
592
Michael Hennerich46aa04f2008-10-13 11:30:17 +0800593#if defined(CONFIG_TOUCHSCREEN_AD7879) || defined(CONFIG_TOUCHSCREEN_AD7879_MODULE)
594#include <linux/spi/ad7879.h>
Michael Hennerich46aa04f2008-10-13 11:30:17 +0800595static const struct ad7879_platform_data bfin_ad7879_ts_info = {
596 .model = 7879, /* Model = AD7879 */
597 .x_plate_ohms = 620, /* 620 Ohm from the touch datasheet */
598 .pressure_max = 10000,
599 .pressure_min = 0,
600 .first_conversion_delay = 3, /* wait 512us before do a first conversion */
601 .acquisition_time = 1, /* 4us acquisition time per sample */
602 .median = 2, /* do 8 measurements */
603 .averaging = 1, /* take the average of 4 middle samples */
604 .pen_down_acc_interval = 255, /* 9.4 ms */
605 .gpio_output = 1, /* configure AUX/VBAT/GPIO as GPIO output */
606 .gpio_default = 1, /* During initialization set GPIO = HIGH */
607};
608#endif
609
Michael Hennerichffc4d8b2009-05-29 15:41:18 +0000610#if defined(CONFIG_INPUT_ADXL34X) || defined(CONFIG_INPUT_ADXL34X_MODULE)
611#include <linux/input.h>
612#include <linux/spi/adxl34x.h>
613static const struct adxl34x_platform_data adxl34x_info = {
614 .x_axis_offset = 0,
615 .y_axis_offset = 0,
616 .z_axis_offset = 0,
617 .tap_threshold = 0x31,
618 .tap_duration = 0x10,
619 .tap_latency = 0x60,
620 .tap_window = 0xF0,
621 .tap_axis_control = ADXL_TAP_X_EN | ADXL_TAP_Y_EN | ADXL_TAP_Z_EN,
622 .act_axis_control = 0xFF,
623 .activity_threshold = 5,
624 .inactivity_threshold = 3,
625 .inactivity_time = 4,
626 .free_fall_threshold = 0x7,
627 .free_fall_time = 0x20,
628 .data_rate = 0x8,
629 .data_range = ADXL_FULL_RES,
630
631 .ev_type = EV_ABS,
632 .ev_code_x = ABS_X, /* EV_REL */
633 .ev_code_y = ABS_Y, /* EV_REL */
634 .ev_code_z = ABS_Z, /* EV_REL */
635
636 .ev_code_tap_x = BTN_TOUCH, /* EV_KEY */
637 .ev_code_tap_y = BTN_TOUCH, /* EV_KEY */
638 .ev_code_tap_z = BTN_TOUCH, /* EV_KEY */
639
640/* .ev_code_ff = KEY_F,*/ /* EV_KEY */
641/* .ev_code_act_inactivity = KEY_A,*/ /* EV_KEY */
642 .power_mode = ADXL_AUTO_SLEEP | ADXL_LINK,
643 .fifo_mode = ADXL_FIFO_STREAM,
644};
645#endif
646
Michael Hennerichf5150152008-10-16 23:23:18 +0800647#if defined(CONFIG_TOUCHSCREEN_AD7879_SPI) || defined(CONFIG_TOUCHSCREEN_AD7879_SPI_MODULE)
648static struct bfin5xx_spi_chip spi_ad7879_chip_info = {
649 .enable_dma = 0,
650 .bits_per_word = 16,
651};
652#endif
653
Michael Hennerich6e668932008-02-09 01:54:09 +0800654#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
655static struct bfin5xx_spi_chip spidev_chip_info = {
656 .enable_dma = 0,
657 .bits_per_word = 8,
658};
659#endif
660
Michael Hennerich2043f3f2008-10-13 14:46:30 +0800661#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
662static struct bfin5xx_spi_chip lq035q1_spi_chip_info = {
663 .enable_dma = 0,
664 .bits_per_word = 8,
665};
666#endif
667
Michael Hennerich85a192e2009-01-07 23:14:38 +0800668#if defined(CONFIG_ENC28J60) || defined(CONFIG_ENC28J60_MODULE)
669static struct bfin5xx_spi_chip enc28j60_spi_chip_info = {
670 .enable_dma = 1,
671 .bits_per_word = 8,
672 .cs_gpio = GPIO_PF10,
673};
674#endif
675
Michael Hennerich8e9d5c72008-04-24 08:46:19 +0800676#if defined(CONFIG_MTD_DATAFLASH) \
677 || defined(CONFIG_MTD_DATAFLASH_MODULE)
Michael Hennerichceac2652008-08-25 17:39:11 +0800678
679static struct mtd_partition bfin_spi_dataflash_partitions[] = {
680 {
681 .name = "bootloader(spi)",
682 .size = 0x00040000,
683 .offset = 0,
684 .mask_flags = MTD_CAP_ROM
685 }, {
686 .name = "linux kernel(spi)",
Grace Pan6ecb5b62009-01-07 23:14:38 +0800687 .size = 0x180000,
Michael Hennerichceac2652008-08-25 17:39:11 +0800688 .offset = MTDPART_OFS_APPEND,
689 }, {
690 .name = "file system(spi)",
691 .size = MTDPART_SIZ_FULL,
692 .offset = MTDPART_OFS_APPEND,
693 }
694};
695
696static struct flash_platform_data bfin_spi_dataflash_data = {
697 .name = "SPI Dataflash",
698 .parts = bfin_spi_dataflash_partitions,
699 .nr_parts = ARRAY_SIZE(bfin_spi_dataflash_partitions),
700};
701
Michael Hennerich8e9d5c72008-04-24 08:46:19 +0800702/* DataFlash chip */
703static struct bfin5xx_spi_chip data_flash_chip_info = {
704 .enable_dma = 0, /* use dma transfer with this chip*/
705 .bits_per_word = 8,
706};
707#endif
708
Bryan Wu1394f032007-05-06 14:50:22 -0700709static struct spi_board_info bfin_spi_board_info[] __initdata = {
710#if defined(CONFIG_MTD_M25P80) \
711 || defined(CONFIG_MTD_M25P80_MODULE)
712 {
713 /* the modalias must be the same as spi device driver name */
714 .modalias = "m25p80", /* Name of spi_driver for this device */
715 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800716 .bus_num = 0, /* Framework bus number */
Bryan Wu1394f032007-05-06 14:50:22 -0700717 .chip_select = 1, /* Framework chip select. On STAMP537 it is SPISSEL1*/
718 .platform_data = &bfin_spi_flash_data,
719 .controller_data = &spi_flash_chip_info,
720 .mode = SPI_MODE_3,
721 },
722#endif
Michael Hennerich8e9d5c72008-04-24 08:46:19 +0800723#if defined(CONFIG_MTD_DATAFLASH) \
724 || defined(CONFIG_MTD_DATAFLASH_MODULE)
725 { /* DataFlash chip */
726 .modalias = "mtd_dataflash",
Michael Hennerichceac2652008-08-25 17:39:11 +0800727 .max_speed_hz = 33250000, /* max spi clock (SCK) speed in HZ */
Michael Hennerich8e9d5c72008-04-24 08:46:19 +0800728 .bus_num = 0, /* Framework bus number */
729 .chip_select = 1, /* Framework chip select. On STAMP537 it is SPISSEL1*/
Michael Hennerichceac2652008-08-25 17:39:11 +0800730 .platform_data = &bfin_spi_dataflash_data,
Michael Hennerich8e9d5c72008-04-24 08:46:19 +0800731 .controller_data = &data_flash_chip_info,
732 .mode = SPI_MODE_3,
733 },
734#endif
Mike Frysingera261eec2009-05-20 14:05:36 +0000735#if defined(CONFIG_BFIN_SPI_ADC) \
736 || defined(CONFIG_BFIN_SPI_ADC_MODULE)
Bryan Wu1394f032007-05-06 14:50:22 -0700737 {
738 .modalias = "bfin_spi_adc", /* Name of spi_driver for this device */
739 .max_speed_hz = 6250000, /* max spi clock (SCK) speed in HZ */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800740 .bus_num = 0, /* Framework bus number */
Bryan Wu1394f032007-05-06 14:50:22 -0700741 .chip_select = 1, /* Framework chip select. */
742 .platform_data = NULL, /* No spi_driver specific config */
743 .controller_data = &spi_adc_chip_info,
744 },
745#endif
746
747#if defined(CONFIG_SND_BLACKFIN_AD1836) \
748 || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
749 {
750 .modalias = "ad1836-spi",
751 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800752 .bus_num = 0,
Bryan Wu1394f032007-05-06 14:50:22 -0700753 .chip_select = CONFIG_SND_BLACKFIN_SPI_PFBIT,
754 .controller_data = &ad1836_spi_chip_info,
755 },
756#endif
757#if defined(CONFIG_AD9960) || defined(CONFIG_AD9960_MODULE)
758 {
759 .modalias = "ad9960-spi",
760 .max_speed_hz = 10000000, /* max spi clock (SCK) speed in HZ */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800761 .bus_num = 0,
Bryan Wu1394f032007-05-06 14:50:22 -0700762 .chip_select = 1,
763 .controller_data = &ad9960_spi_chip_info,
764 },
765#endif
Yi Lif79ea4c2009-01-07 23:14:38 +0800766#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
767 {
768 .modalias = "mmc_spi",
769 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
770 .bus_num = 0,
771 .chip_select = 4,
772 .platform_data = &bfin_mmc_spi_pdata,
773 .controller_data = &mmc_spi_chip_info,
774 .mode = SPI_MODE_3,
775 },
776#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700777#if defined(CONFIG_PBX)
778 {
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800779 .modalias = "fxs-spi",
780 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800781 .bus_num = 0,
782 .chip_select = 8 - CONFIG_J11_JUMPER,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800783 .controller_data = &spi_si3xxx_chip_info,
Bryan Wu1394f032007-05-06 14:50:22 -0700784 .mode = SPI_MODE_3,
785 },
786 {
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800787 .modalias = "fxo-spi",
788 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800789 .bus_num = 0,
790 .chip_select = 8 - CONFIG_J19_JUMPER,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800791 .controller_data = &spi_si3xxx_chip_info,
Bryan Wu1394f032007-05-06 14:50:22 -0700792 .mode = SPI_MODE_3,
793 },
794#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700795#if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
796 {
797 .modalias = "ad7877",
798 .platform_data = &bfin_ad7877_ts_info,
799 .irq = IRQ_PF6,
800 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
Michael Hennerichc7d48962007-11-15 21:33:31 +0800801 .bus_num = 0,
Bryan Wu1394f032007-05-06 14:50:22 -0700802 .chip_select = 1,
803 .controller_data = &spi_ad7877_chip_info,
804 },
805#endif
Michael Hennerichf5150152008-10-16 23:23:18 +0800806#if defined(CONFIG_TOUCHSCREEN_AD7879_SPI) || defined(CONFIG_TOUCHSCREEN_AD7879_SPI_MODULE)
Michael Hennerich46aa04f2008-10-13 11:30:17 +0800807 {
808 .modalias = "ad7879",
809 .platform_data = &bfin_ad7879_ts_info,
810 .irq = IRQ_PF7,
811 .max_speed_hz = 5000000, /* max spi clock (SCK) speed in HZ */
812 .bus_num = 0,
813 .chip_select = 1,
814 .controller_data = &spi_ad7879_chip_info,
815 .mode = SPI_CPHA | SPI_CPOL,
816 },
817#endif
Michael Hennerich6e668932008-02-09 01:54:09 +0800818#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
819 {
820 .modalias = "spidev",
821 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
822 .bus_num = 0,
823 .chip_select = 1,
824 .controller_data = &spidev_chip_info,
825 },
826#endif
Michael Hennerich2043f3f2008-10-13 14:46:30 +0800827#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
828 {
829 .modalias = "bfin-lq035q1-spi",
830 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
831 .bus_num = 0,
Michael Hennerich46aa04f2008-10-13 11:30:17 +0800832 .chip_select = 2,
Michael Hennerich2043f3f2008-10-13 14:46:30 +0800833 .controller_data = &lq035q1_spi_chip_info,
834 .mode = SPI_CPHA | SPI_CPOL,
835 },
836#endif
Michael Hennerich85a192e2009-01-07 23:14:38 +0800837#if defined(CONFIG_ENC28J60) || defined(CONFIG_ENC28J60_MODULE)
838 {
839 .modalias = "enc28j60",
840 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
841 .irq = IRQ_PF6,
842 .bus_num = 0,
843 .chip_select = 0, /* GPIO controlled SSEL */
844 .controller_data = &enc28j60_spi_chip_info,
845 .mode = SPI_MODE_0,
846 },
847#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700848};
849
Mike Frysinger5bda2722008-06-07 15:03:01 +0800850#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
Bryan Wu1394f032007-05-06 14:50:22 -0700851/* SPI controller data */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800852static struct bfin5xx_spi_master bfin_spi0_info = {
Bryan Wu1394f032007-05-06 14:50:22 -0700853 .num_chipselect = 8,
854 .enable_dma = 1, /* master has the ability to do dma transfer */
Bryan Wu5d448dd2007-11-12 23:24:42 +0800855 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
Bryan Wu1394f032007-05-06 14:50:22 -0700856};
857
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800858/* SPI (0) */
859static struct resource bfin_spi0_resource[] = {
860 [0] = {
861 .start = SPI0_REGBASE,
862 .end = SPI0_REGBASE + 0xFF,
863 .flags = IORESOURCE_MEM,
864 },
865 [1] = {
866 .start = CH_SPI,
867 .end = CH_SPI,
868 .flags = IORESOURCE_IRQ,
869 },
870};
871
872static struct platform_device bfin_spi0_device = {
873 .name = "bfin-spi",
874 .id = 0, /* Bus number */
875 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
876 .resource = bfin_spi0_resource,
Bryan Wu1394f032007-05-06 14:50:22 -0700877 .dev = {
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800878 .platform_data = &bfin_spi0_info, /* Passed to driver */
Bryan Wu1394f032007-05-06 14:50:22 -0700879 },
880};
881#endif /* spi master and devices */
882
Cliff Cai1e9aa952009-03-28 23:28:51 +0800883#if defined(CONFIG_SPI_BFIN_SPORT) || defined(CONFIG_SPI_BFIN_SPORT_MODULE)
884
885/* SPORT SPI controller data */
886static struct bfin5xx_spi_master bfin_sport_spi0_info = {
887 .num_chipselect = 1, /* master only supports one device */
888 .enable_dma = 0, /* master don't support DMA */
889 .pin_req = {P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_DRPRI,
890 P_SPORT0_RSCLK, P_SPORT0_TFS, P_SPORT0_RFS, 0},
891};
892
893static struct resource bfin_sport_spi0_resource[] = {
894 [0] = {
895 .start = SPORT0_TCR1,
896 .end = SPORT0_TCR1 + 0xFF,
897 .flags = IORESOURCE_MEM,
898 },
899 [1] = {
900 .start = IRQ_SPORT0_ERROR,
901 .end = IRQ_SPORT0_ERROR,
902 .flags = IORESOURCE_IRQ,
903 },
904};
905
906static struct platform_device bfin_sport_spi0_device = {
907 .name = "bfin-sport-spi",
908 .id = 1, /* Bus number */
909 .num_resources = ARRAY_SIZE(bfin_sport_spi0_resource),
910 .resource = bfin_sport_spi0_resource,
911 .dev = {
912 .platform_data = &bfin_sport_spi0_info, /* Passed to driver */
913 },
914};
915
916static struct bfin5xx_spi_master bfin_sport_spi1_info = {
917 .num_chipselect = 1, /* master only supports one device */
918 .enable_dma = 0, /* master don't support DMA */
919 .pin_req = {P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_DRPRI,
920 P_SPORT1_RSCLK, P_SPORT1_TFS, P_SPORT1_RFS, 0},
921};
922
923static struct resource bfin_sport_spi1_resource[] = {
924 [0] = {
925 .start = SPORT1_TCR1,
926 .end = SPORT1_TCR1 + 0xFF,
927 .flags = IORESOURCE_MEM,
928 },
929 [1] = {
930 .start = IRQ_SPORT1_ERROR,
931 .end = IRQ_SPORT1_ERROR,
932 .flags = IORESOURCE_IRQ,
933 },
934};
935
936static struct platform_device bfin_sport_spi1_device = {
937 .name = "bfin-sport-spi",
938 .id = 2, /* Bus number */
939 .num_resources = ARRAY_SIZE(bfin_sport_spi1_resource),
940 .resource = bfin_sport_spi1_resource,
941 .dev = {
942 .platform_data = &bfin_sport_spi1_info, /* Passed to driver */
943 },
944};
945
946#endif /* sport spi master and devices */
947
Bryan Wu1394f032007-05-06 14:50:22 -0700948#if defined(CONFIG_FB_BF537_LQ035) || defined(CONFIG_FB_BF537_LQ035_MODULE)
949static struct platform_device bfin_fb_device = {
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800950 .name = "bf537-lq035",
951};
952#endif
953
954#if defined(CONFIG_FB_BFIN_7393) || defined(CONFIG_FB_BFIN_7393_MODULE)
955static struct platform_device bfin_fb_adv7393_device = {
956 .name = "bfin-adv7393",
Bryan Wu1394f032007-05-06 14:50:22 -0700957};
958#endif
959
Michael Hennerich2043f3f2008-10-13 14:46:30 +0800960#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
961#include <asm/bfin-lq035q1.h>
962
963static struct bfin_lq035q1fb_disp_info bfin_lq035q1_data = {
964 .mode = LQ035_NORM | LQ035_RGB | LQ035_RL | LQ035_TB,
Michael Hennerich46aa04f2008-10-13 11:30:17 +0800965 .use_bl = 0, /* let something else control the LCD Blacklight */
Michael Hennerich2043f3f2008-10-13 14:46:30 +0800966 .gpio_bl = GPIO_PF7,
967};
968
969static struct resource bfin_lq035q1_resources[] = {
970 {
971 .start = IRQ_PPI_ERROR,
972 .end = IRQ_PPI_ERROR,
973 .flags = IORESOURCE_IRQ,
974 },
975};
976
977static struct platform_device bfin_lq035q1_device = {
978 .name = "bfin-lq035q1",
979 .id = -1,
980 .num_resources = ARRAY_SIZE(bfin_lq035q1_resources),
981 .resource = bfin_lq035q1_resources,
982 .dev = {
983 .platform_data = &bfin_lq035q1_data,
984 },
985};
986#endif
987
Bryan Wu1394f032007-05-06 14:50:22 -0700988#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
989static struct resource bfin_uart_resources[] = {
Sonic Zhang233b28a2007-11-21 17:04:41 +0800990#ifdef CONFIG_SERIAL_BFIN_UART0
Bryan Wu1394f032007-05-06 14:50:22 -0700991 {
992 .start = 0xFFC00400,
993 .end = 0xFFC004FF,
994 .flags = IORESOURCE_MEM,
Sonic Zhang233b28a2007-11-21 17:04:41 +0800995 },
996#endif
997#ifdef CONFIG_SERIAL_BFIN_UART1
998 {
Bryan Wu1394f032007-05-06 14:50:22 -0700999 .start = 0xFFC02000,
1000 .end = 0xFFC020FF,
1001 .flags = IORESOURCE_MEM,
1002 },
Sonic Zhang233b28a2007-11-21 17:04:41 +08001003#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001004};
1005
1006static struct platform_device bfin_uart_device = {
1007 .name = "bfin-uart",
1008 .id = 1,
1009 .num_resources = ARRAY_SIZE(bfin_uart_resources),
1010 .resource = bfin_uart_resources,
1011};
1012#endif
1013
Graf Yang5be36d22008-04-25 03:09:15 +08001014#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
Graf Yang5be36d22008-04-25 03:09:15 +08001015#ifdef CONFIG_BFIN_SIR0
Graf Yang42bd8bc2009-01-07 23:14:39 +08001016static struct resource bfin_sir0_resources[] = {
Graf Yang5be36d22008-04-25 03:09:15 +08001017 {
1018 .start = 0xFFC00400,
1019 .end = 0xFFC004FF,
1020 .flags = IORESOURCE_MEM,
1021 },
Graf Yang42bd8bc2009-01-07 23:14:39 +08001022 {
1023 .start = IRQ_UART0_RX,
1024 .end = IRQ_UART0_RX+1,
1025 .flags = IORESOURCE_IRQ,
1026 },
1027 {
1028 .start = CH_UART0_RX,
1029 .end = CH_UART0_RX+1,
1030 .flags = IORESOURCE_DMA,
1031 },
1032};
1033
1034static struct platform_device bfin_sir0_device = {
1035 .name = "bfin_sir",
1036 .id = 0,
1037 .num_resources = ARRAY_SIZE(bfin_sir0_resources),
1038 .resource = bfin_sir0_resources,
1039};
Graf Yang5be36d22008-04-25 03:09:15 +08001040#endif
1041#ifdef CONFIG_BFIN_SIR1
Graf Yang42bd8bc2009-01-07 23:14:39 +08001042static struct resource bfin_sir1_resources[] = {
Graf Yang5be36d22008-04-25 03:09:15 +08001043 {
1044 .start = 0xFFC02000,
1045 .end = 0xFFC020FF,
1046 .flags = IORESOURCE_MEM,
1047 },
Graf Yang42bd8bc2009-01-07 23:14:39 +08001048 {
1049 .start = IRQ_UART1_RX,
1050 .end = IRQ_UART1_RX+1,
1051 .flags = IORESOURCE_IRQ,
1052 },
1053 {
1054 .start = CH_UART1_RX,
1055 .end = CH_UART1_RX+1,
1056 .flags = IORESOURCE_DMA,
1057 },
Graf Yang5be36d22008-04-25 03:09:15 +08001058};
1059
Graf Yang42bd8bc2009-01-07 23:14:39 +08001060static struct platform_device bfin_sir1_device = {
Graf Yang5be36d22008-04-25 03:09:15 +08001061 .name = "bfin_sir",
Graf Yang42bd8bc2009-01-07 23:14:39 +08001062 .id = 1,
1063 .num_resources = ARRAY_SIZE(bfin_sir1_resources),
1064 .resource = bfin_sir1_resources,
Graf Yang5be36d22008-04-25 03:09:15 +08001065};
1066#endif
Graf Yang42bd8bc2009-01-07 23:14:39 +08001067#endif
Graf Yang5be36d22008-04-25 03:09:15 +08001068
Bryan Wu1394f032007-05-06 14:50:22 -07001069#if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001070static struct resource bfin_twi0_resource[] = {
1071 [0] = {
1072 .start = TWI0_REGBASE,
1073 .end = TWI0_REGBASE,
1074 .flags = IORESOURCE_MEM,
1075 },
1076 [1] = {
1077 .start = IRQ_TWI,
1078 .end = IRQ_TWI,
1079 .flags = IORESOURCE_IRQ,
1080 },
1081};
1082
Bryan Wu1394f032007-05-06 14:50:22 -07001083static struct platform_device i2c_bfin_twi_device = {
1084 .name = "i2c-bfin-twi",
1085 .id = 0,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001086 .num_resources = ARRAY_SIZE(bfin_twi0_resource),
1087 .resource = bfin_twi0_resource,
Bryan Wu1394f032007-05-06 14:50:22 -07001088};
1089#endif
1090
Michael Hennerich51ed9ad2009-01-07 23:14:38 +08001091#if defined(CONFIG_KEYBOARD_ADP5588) || defined(CONFIG_KEYBOARD_ADP5588_MODULE)
1092#include <linux/input.h>
1093#include <linux/i2c/adp5588_keys.h>
1094static const unsigned short adp5588_keymap[ADP5588_KEYMAPSIZE] = {
1095 [0] = KEY_GRAVE,
1096 [1] = KEY_1,
1097 [2] = KEY_2,
1098 [3] = KEY_3,
1099 [4] = KEY_4,
1100 [5] = KEY_5,
1101 [6] = KEY_6,
1102 [7] = KEY_7,
1103 [8] = KEY_8,
1104 [9] = KEY_9,
1105 [10] = KEY_0,
1106 [11] = KEY_MINUS,
1107 [12] = KEY_EQUAL,
1108 [13] = KEY_BACKSLASH,
1109 [15] = KEY_KP0,
1110 [16] = KEY_Q,
1111 [17] = KEY_W,
1112 [18] = KEY_E,
1113 [19] = KEY_R,
1114 [20] = KEY_T,
1115 [21] = KEY_Y,
1116 [22] = KEY_U,
1117 [23] = KEY_I,
1118 [24] = KEY_O,
1119 [25] = KEY_P,
1120 [26] = KEY_LEFTBRACE,
1121 [27] = KEY_RIGHTBRACE,
1122 [29] = KEY_KP1,
1123 [30] = KEY_KP2,
1124 [31] = KEY_KP3,
1125 [32] = KEY_A,
1126 [33] = KEY_S,
1127 [34] = KEY_D,
1128 [35] = KEY_F,
1129 [36] = KEY_G,
1130 [37] = KEY_H,
1131 [38] = KEY_J,
1132 [39] = KEY_K,
1133 [40] = KEY_L,
1134 [41] = KEY_SEMICOLON,
1135 [42] = KEY_APOSTROPHE,
1136 [43] = KEY_BACKSLASH,
1137 [45] = KEY_KP4,
1138 [46] = KEY_KP5,
1139 [47] = KEY_KP6,
1140 [48] = KEY_102ND,
1141 [49] = KEY_Z,
1142 [50] = KEY_X,
1143 [51] = KEY_C,
1144 [52] = KEY_V,
1145 [53] = KEY_B,
1146 [54] = KEY_N,
1147 [55] = KEY_M,
1148 [56] = KEY_COMMA,
1149 [57] = KEY_DOT,
1150 [58] = KEY_SLASH,
1151 [60] = KEY_KPDOT,
1152 [61] = KEY_KP7,
1153 [62] = KEY_KP8,
1154 [63] = KEY_KP9,
1155 [64] = KEY_SPACE,
1156 [65] = KEY_BACKSPACE,
1157 [66] = KEY_TAB,
1158 [67] = KEY_KPENTER,
1159 [68] = KEY_ENTER,
1160 [69] = KEY_ESC,
1161 [70] = KEY_DELETE,
1162 [74] = KEY_KPMINUS,
1163 [76] = KEY_UP,
1164 [77] = KEY_DOWN,
1165 [78] = KEY_RIGHT,
1166 [79] = KEY_LEFT,
1167};
1168
1169static struct adp5588_kpad_platform_data adp5588_kpad_data = {
1170 .rows = 8,
1171 .cols = 10,
1172 .keymap = adp5588_keymap,
1173 .keymapsize = ARRAY_SIZE(adp5588_keymap),
1174 .repeat = 0,
1175};
1176#endif
1177
Michael Hennerich3ea57212009-03-28 22:15:07 +08001178#if defined(CONFIG_PMIC_ADP5520) || defined(CONFIG_PMIC_ADP5520_MODULE)
1179#include <linux/mfd/adp5520.h>
1180
1181 /*
1182 * ADP5520/5501 Backlight Data
1183 */
1184
1185static struct adp5520_backlight_platfrom_data adp5520_backlight_data = {
1186 .fade_in = FADE_T_1200ms,
1187 .fade_out = FADE_T_1200ms,
1188 .fade_led_law = BL_LAW_LINEAR,
1189 .en_ambl_sens = 1,
1190 .abml_filt = BL_AMBL_FILT_640ms,
1191 .l1_daylight_max = BL_CUR_mA(15),
1192 .l1_daylight_dim = BL_CUR_mA(0),
1193 .l2_office_max = BL_CUR_mA(7),
1194 .l2_office_dim = BL_CUR_mA(0),
1195 .l3_dark_max = BL_CUR_mA(3),
1196 .l3_dark_dim = BL_CUR_mA(0),
1197 .l2_trip = L2_COMP_CURR_uA(700),
1198 .l2_hyst = L2_COMP_CURR_uA(50),
1199 .l3_trip = L3_COMP_CURR_uA(80),
1200 .l3_hyst = L3_COMP_CURR_uA(20),
1201};
1202
1203 /*
1204 * ADP5520/5501 LEDs Data
1205 */
1206
1207#include <linux/leds.h>
1208
1209static struct led_info adp5520_leds[] = {
1210 {
1211 .name = "adp5520-led1",
1212 .default_trigger = "none",
1213 .flags = FLAG_ID_ADP5520_LED1_ADP5501_LED0 | LED_OFFT_600ms,
1214 },
1215#ifdef ADP5520_EN_ALL_LEDS
1216 {
1217 .name = "adp5520-led2",
1218 .default_trigger = "none",
1219 .flags = FLAG_ID_ADP5520_LED2_ADP5501_LED1,
1220 },
1221 {
1222 .name = "adp5520-led3",
1223 .default_trigger = "none",
1224 .flags = FLAG_ID_ADP5520_LED3_ADP5501_LED2,
1225 },
1226#endif
1227};
1228
1229static struct adp5520_leds_platfrom_data adp5520_leds_data = {
1230 .num_leds = ARRAY_SIZE(adp5520_leds),
1231 .leds = adp5520_leds,
1232 .fade_in = FADE_T_600ms,
1233 .fade_out = FADE_T_600ms,
1234 .led_on_time = LED_ONT_600ms,
1235};
1236
1237 /*
1238 * ADP5520 GPIO Data
1239 */
1240
1241static struct adp5520_gpio_platfrom_data adp5520_gpio_data = {
1242 .gpio_start = 50,
1243 .gpio_en_mask = GPIO_C1 | GPIO_C2 | GPIO_R2,
1244 .gpio_pullup_mask = GPIO_C1 | GPIO_C2 | GPIO_R2,
1245};
1246
1247 /*
1248 * ADP5520 Keypad Data
1249 */
1250
1251#include <linux/input.h>
1252static const unsigned short adp5520_keymap[ADP5520_KEYMAPSIZE] = {
1253 [KEY(0, 0)] = KEY_GRAVE,
1254 [KEY(0, 1)] = KEY_1,
1255 [KEY(0, 2)] = KEY_2,
1256 [KEY(0, 3)] = KEY_3,
1257 [KEY(1, 0)] = KEY_4,
1258 [KEY(1, 1)] = KEY_5,
1259 [KEY(1, 2)] = KEY_6,
1260 [KEY(1, 3)] = KEY_7,
1261 [KEY(2, 0)] = KEY_8,
1262 [KEY(2, 1)] = KEY_9,
1263 [KEY(2, 2)] = KEY_0,
1264 [KEY(2, 3)] = KEY_MINUS,
1265 [KEY(3, 0)] = KEY_EQUAL,
1266 [KEY(3, 1)] = KEY_BACKSLASH,
1267 [KEY(3, 2)] = KEY_BACKSPACE,
1268 [KEY(3, 3)] = KEY_ENTER,
1269};
1270
1271static struct adp5520_keys_platfrom_data adp5520_keys_data = {
1272 .rows_en_mask = ROW_R3 | ROW_R2 | ROW_R1 | ROW_R0,
1273 .cols_en_mask = COL_C3 | COL_C2 | COL_C1 | COL_C0,
1274 .keymap = adp5520_keymap,
1275 .keymapsize = ARRAY_SIZE(adp5520_keymap),
1276 .repeat = 0,
1277};
1278
1279 /*
1280 * ADP5520/5501 Multifuction Device Init Data
1281 */
1282
1283static struct adp5520_subdev_info adp5520_subdevs[] = {
1284 {
1285 .name = "adp5520-backlight",
1286 .id = ID_ADP5520,
1287 .platform_data = &adp5520_backlight_data,
1288 },
1289 {
1290 .name = "adp5520-led",
1291 .id = ID_ADP5520,
1292 .platform_data = &adp5520_leds_data,
1293 },
1294 {
1295 .name = "adp5520-gpio",
1296 .id = ID_ADP5520,
1297 .platform_data = &adp5520_gpio_data,
1298 },
1299 {
1300 .name = "adp5520-keys",
1301 .id = ID_ADP5520,
1302 .platform_data = &adp5520_keys_data,
1303 },
1304};
1305
1306static struct adp5520_platform_data adp5520_pdev_data = {
1307 .num_subdevs = ARRAY_SIZE(adp5520_subdevs),
1308 .subdevs = adp5520_subdevs,
1309};
1310
1311#endif
1312
Bryan Wu81d9c7f2008-03-26 10:02:13 +08001313static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
1314#if defined(CONFIG_JOYSTICK_AD7142) || defined(CONFIG_JOYSTICK_AD7142_MODULE)
1315 {
1316 I2C_BOARD_INFO("ad7142_joystick", 0x2C),
Michael Hennerichf5150152008-10-16 23:23:18 +08001317 .irq = IRQ_PF5,
Bryan Wu81d9c7f2008-03-26 10:02:13 +08001318 },
1319#endif
Mike Frysingera261eec2009-05-20 14:05:36 +00001320#if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_TWI_LCD_MODULE)
Bryan Wu81d9c7f2008-03-26 10:02:13 +08001321 {
1322 I2C_BOARD_INFO("pcf8574_lcd", 0x22),
Bryan Wu81d9c7f2008-03-26 10:02:13 +08001323 },
1324#endif
1325#if defined(CONFIG_TWI_KEYPAD) || defined(CONFIG_TWI_KEYPAD_MODULE)
1326 {
1327 I2C_BOARD_INFO("pcf8574_keypad", 0x27),
Michael Hennerichf5150152008-10-16 23:23:18 +08001328 .irq = IRQ_PG6,
1329 },
1330#endif
1331#if defined(CONFIG_TOUCHSCREEN_AD7879_I2C) || defined(CONFIG_TOUCHSCREEN_AD7879_I2C_MODULE)
1332 {
1333 I2C_BOARD_INFO("ad7879", 0x2F),
1334 .irq = IRQ_PG5,
1335 .platform_data = (void *)&bfin_ad7879_ts_info,
Bryan Wu81d9c7f2008-03-26 10:02:13 +08001336 },
1337#endif
Michael Hennerich51ed9ad2009-01-07 23:14:38 +08001338#if defined(CONFIG_KEYBOARD_ADP5588) || defined(CONFIG_KEYBOARD_ADP5588_MODULE)
1339 {
1340 I2C_BOARD_INFO("adp5588-keys", 0x34),
1341 .irq = IRQ_PG0,
1342 .platform_data = (void *)&adp5588_kpad_data,
1343 },
1344#endif
Michael Hennerich3ea57212009-03-28 22:15:07 +08001345#if defined(CONFIG_PMIC_ADP5520) || defined(CONFIG_PMIC_ADP5520_MODULE)
1346 {
1347 I2C_BOARD_INFO("pmic-adp5520", 0x32),
Mike Frysinger4f84b6e2009-06-10 20:45:48 -04001348 .irq = IRQ_PG0,
Michael Hennerich3ea57212009-03-28 22:15:07 +08001349 .platform_data = (void *)&adp5520_pdev_data,
1350 },
1351#endif
Michael Hennerichffc4d8b2009-05-29 15:41:18 +00001352#if defined(CONFIG_INPUT_ADXL34X_I2C) || defined(CONFIG_INPUT_ADXL34X_I2C_MODULE)
1353 {
1354 I2C_BOARD_INFO("adxl34x", 0x53),
1355 .irq = IRQ_PG3,
1356 .platform_data = (void *)&adxl34x_info,
1357 },
1358#endif
Bryan Wu81d9c7f2008-03-26 10:02:13 +08001359};
Bryan Wu81d9c7f2008-03-26 10:02:13 +08001360
Bryan Wu1394f032007-05-06 14:50:22 -07001361#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
1362static struct platform_device bfin_sport0_uart_device = {
1363 .name = "bfin-sport-uart",
1364 .id = 0,
1365};
1366
1367static struct platform_device bfin_sport1_uart_device = {
1368 .name = "bfin-sport-uart",
1369 .id = 1,
1370};
1371#endif
1372
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001373#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
Michael Hennerich2c8beb22009-03-28 22:13:43 +08001374#define CF_IDE_NAND_CARD_USE_HDD_INTERFACE
1375/* #define CF_IDE_NAND_CARD_USE_CF_IN_COMMON_MEMORY_MODE */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001376
Michael Hennerich2c8beb22009-03-28 22:13:43 +08001377#ifdef CF_IDE_NAND_CARD_USE_HDD_INTERFACE
1378#define PATA_INT IRQ_PF5
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001379static struct pata_platform_info bfin_pata_platform_data = {
1380 .ioport_shift = 1,
Mike Frysinger64e5c512007-10-30 11:56:13 +08001381 .irq_flags = IRQF_TRIGGER_HIGH | IRQF_DISABLED,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001382};
1383
1384static struct resource bfin_pata_resources[] = {
1385 {
1386 .start = 0x20314020,
1387 .end = 0x2031403F,
1388 .flags = IORESOURCE_MEM,
1389 },
1390 {
1391 .start = 0x2031401C,
1392 .end = 0x2031401F,
1393 .flags = IORESOURCE_MEM,
1394 },
1395 {
1396 .start = PATA_INT,
1397 .end = PATA_INT,
1398 .flags = IORESOURCE_IRQ,
1399 },
1400};
Michael Hennerich2c8beb22009-03-28 22:13:43 +08001401#elif defined(CF_IDE_NAND_CARD_USE_CF_IN_COMMON_MEMORY_MODE)
1402static struct pata_platform_info bfin_pata_platform_data = {
1403 .ioport_shift = 0,
1404};
Michael Hennerich648882d2009-04-21 12:05:50 +00001405/* CompactFlash Storage Card Memory Mapped Adressing
1406 * /REG = A11 = 1
1407 */
Michael Hennerich2c8beb22009-03-28 22:13:43 +08001408static struct resource bfin_pata_resources[] = {
1409 {
Michael Hennerich648882d2009-04-21 12:05:50 +00001410 .start = 0x20211800,
1411 .end = 0x20211807,
Michael Hennerich2c8beb22009-03-28 22:13:43 +08001412 .flags = IORESOURCE_MEM,
1413 },
1414 {
Michael Hennerich648882d2009-04-21 12:05:50 +00001415 .start = 0x2021180E, /* Device Ctl */
1416 .end = 0x2021180E,
Michael Hennerich2c8beb22009-03-28 22:13:43 +08001417 .flags = IORESOURCE_MEM,
1418 },
1419};
1420#endif
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001421
1422static struct platform_device bfin_pata_device = {
1423 .name = "pata_platform",
1424 .id = -1,
1425 .num_resources = ARRAY_SIZE(bfin_pata_resources),
1426 .resource = bfin_pata_resources,
1427 .dev = {
1428 .platform_data = &bfin_pata_platform_data,
1429 }
1430};
1431#endif
1432
Michael Hennerich14b03202008-05-07 11:41:26 +08001433static const unsigned int cclk_vlev_datasheet[] =
1434{
1435 VRPAIR(VLEV_085, 250000000),
1436 VRPAIR(VLEV_090, 376000000),
1437 VRPAIR(VLEV_095, 426000000),
1438 VRPAIR(VLEV_100, 426000000),
1439 VRPAIR(VLEV_105, 476000000),
1440 VRPAIR(VLEV_110, 476000000),
1441 VRPAIR(VLEV_115, 476000000),
1442 VRPAIR(VLEV_120, 500000000),
1443 VRPAIR(VLEV_125, 533000000),
1444 VRPAIR(VLEV_130, 600000000),
1445};
1446
1447static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = {
1448 .tuple_tab = cclk_vlev_datasheet,
1449 .tabsize = ARRAY_SIZE(cclk_vlev_datasheet),
1450 .vr_settling_time = 25 /* us */,
1451};
1452
1453static struct platform_device bfin_dpmc = {
1454 .name = "bfin dpmc",
1455 .dev = {
1456 .platform_data = &bfin_dmpc_vreg_data,
1457 },
1458};
1459
Bryan Wu1394f032007-05-06 14:50:22 -07001460static struct platform_device *stamp_devices[] __initdata = {
Michael Hennerich14b03202008-05-07 11:41:26 +08001461
1462 &bfin_dpmc,
1463
Bryan Wu1394f032007-05-06 14:50:22 -07001464#if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
1465 &bfin_pcmcia_cf_device,
1466#endif
1467
1468#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
1469 &rtc_device,
1470#endif
1471
1472#if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
1473 &sl811_hcd_device,
1474#endif
1475
1476#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
1477 &isp1362_hcd_device,
1478#endif
1479
Michael Hennerich3f375692008-11-18 17:48:22 +08001480#if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
1481 &bfin_isp1760_device,
1482#endif
1483
Bryan Wu1394f032007-05-06 14:50:22 -07001484#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
1485 &smc91x_device,
1486#endif
1487
Alex Landauf40d24d2007-07-12 12:11:48 +08001488#if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
1489 &dm9000_device,
1490#endif
1491
Michael Hennerich561cc182007-11-17 23:56:08 +08001492#if defined(CONFIG_AX88180) || defined(CONFIG_AX88180_MODULE)
1493 &ax88180_device,
1494#endif
1495
Bryan Wu1394f032007-05-06 14:50:22 -07001496#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
Graf Yang65319622009-02-04 16:49:45 +08001497 &bfin_mii_bus,
Bryan Wu1394f032007-05-06 14:50:22 -07001498 &bfin_mac_device,
1499#endif
1500
1501#if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
1502 &net2272_bfin_device,
1503#endif
1504
1505#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001506 &bfin_spi0_device,
Bryan Wu1394f032007-05-06 14:50:22 -07001507#endif
1508
Cliff Cai1e9aa952009-03-28 23:28:51 +08001509#if defined(CONFIG_SPI_BFIN_SPORT) || defined(CONFIG_SPI_BFIN_SPORT_MODULE)
1510 &bfin_sport_spi0_device,
1511 &bfin_sport_spi1_device,
1512#endif
1513
Bryan Wu1394f032007-05-06 14:50:22 -07001514#if defined(CONFIG_FB_BF537_LQ035) || defined(CONFIG_FB_BF537_LQ035_MODULE)
1515 &bfin_fb_device,
1516#endif
1517
Michael Hennerich2043f3f2008-10-13 14:46:30 +08001518#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
1519 &bfin_lq035q1_device,
1520#endif
1521
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001522#if defined(CONFIG_FB_BFIN_7393) || defined(CONFIG_FB_BFIN_7393_MODULE)
1523 &bfin_fb_adv7393_device,
1524#endif
1525
Bryan Wu1394f032007-05-06 14:50:22 -07001526#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
1527 &bfin_uart_device,
1528#endif
1529
Graf Yang5be36d22008-04-25 03:09:15 +08001530#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
Graf Yang42bd8bc2009-01-07 23:14:39 +08001531#ifdef CONFIG_BFIN_SIR0
1532 &bfin_sir0_device,
1533#endif
1534#ifdef CONFIG_BFIN_SIR1
1535 &bfin_sir1_device,
1536#endif
Graf Yang5be36d22008-04-25 03:09:15 +08001537#endif
1538
Bryan Wu1394f032007-05-06 14:50:22 -07001539#if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
1540 &i2c_bfin_twi_device,
1541#endif
1542
1543#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
1544 &bfin_sport0_uart_device,
1545 &bfin_sport1_uart_device,
1546#endif
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001547
1548#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
1549 &bfin_pata_device,
1550#endif
Michael Hennerich2463ef22008-01-27 16:49:48 +08001551
1552#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
1553 &bfin_device_gpiokeys,
1554#endif
Mike Frysingercad2ab62008-02-22 17:01:31 +08001555
1556 &bfin_gpios_device,
Mike Frysinger793dc272008-03-26 08:09:12 +08001557
Mike Frysingerfc689112008-06-25 11:41:42 +08001558#if defined(CONFIG_MTD_NAND_PLATFORM) || defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
1559 &bfin_async_nand_device,
1560#endif
1561
Mike Frysinger793dc272008-03-26 08:09:12 +08001562#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
Mike Frysingerde8c43f2008-01-24 17:14:04 +08001563 &stamp_flash_device,
Mike Frysinger793dc272008-03-26 08:09:12 +08001564#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001565};
1566
1567static int __init stamp_init(void)
1568{
Harvey Harrisonb85d8582008-04-23 09:39:01 +08001569 printk(KERN_INFO "%s(): registering device resources\n", __func__);
Bryan Wu81d9c7f2008-03-26 10:02:13 +08001570 i2c_register_board_info(0, bfin_i2c_board_info,
1571 ARRAY_SIZE(bfin_i2c_board_info));
Mike Frysingerfc689112008-06-25 11:41:42 +08001572 bfin_plat_nand_init();
Bryan Wu1394f032007-05-06 14:50:22 -07001573 platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
Mike Frysinger5bda2722008-06-07 15:03:01 +08001574 spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001575
Michael Hennerich648882d2009-04-21 12:05:50 +00001576#if (defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)) \
1577 && defined(PATA_INT)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001578 irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
1579#endif
Bryan Wu81d9c7f2008-03-26 10:02:13 +08001580
Bryan Wu1394f032007-05-06 14:50:22 -07001581 return 0;
1582}
1583
1584arch_initcall(stamp_init);
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001585
1586void native_machine_restart(char *cmd)
1587{
1588 /* workaround reboot hang when booting from SPI */
1589 if ((bfin_read_SYSCR() & 0x7) == 0x3)
Sonic Zhangb52dae32009-02-04 16:49:45 +08001590 bfin_reset_boot_spi_cs(P_DEFAULT_BOOT_SPI_CS);
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001591}
Mike Frysinger137b1522007-11-22 16:07:03 +08001592
1593/*
1594 * Currently the MAC address is saved in Flash by U-Boot
1595 */
1596#define FLASH_MAC 0x203f0000
Mike Frysinger9862cc52007-11-15 21:21:20 +08001597void bfin_get_ether_addr(char *addr)
Mike Frysinger137b1522007-11-22 16:07:03 +08001598{
1599 *(u32 *)(&(addr[0])) = bfin_read32(FLASH_MAC);
1600 *(u16 *)(&(addr[4])) = bfin_read16(FLASH_MAC + 4);
1601}
Mike Frysinger9862cc52007-11-15 21:21:20 +08001602EXPORT_SYMBOL(bfin_get_ether_addr);