[Blackfin] arch: add board resources for new simple-gpio char driver
[linux-2.6/openmoko-kernel.git] / arch / blackfin / mach-bf537 / boards / stamp.c
blob7a5629a0c374f1bf11932339fb08eeaa20d40aab
1 /*
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>
6 * Created:
7 * Description:
9 * Modified:
10 * Copyright 2005 National ICT Australia (NICTA)
11 * Copyright 2004-2006 Analog Devices Inc.
13 * Bugs: Enter bugs at http://blackfin.uclinux.org/
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.
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.
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
31 #include <linux/device.h>
32 #include <linux/platform_device.h>
33 #include <linux/mtd/mtd.h>
34 #include <linux/mtd/partitions.h>
35 #include <linux/mtd/physmap.h>
36 #include <linux/spi/spi.h>
37 #include <linux/spi/flash.h>
38 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
39 #include <linux/usb/isp1362.h>
40 #endif
41 #include <linux/ata_platform.h>
42 #include <linux/irq.h>
43 #include <linux/interrupt.h>
44 #include <linux/usb/sl811.h>
45 #include <asm/dma.h>
46 #include <asm/bfin5xx_spi.h>
47 #include <asm/reboot.h>
48 #include <asm/portmux.h>
49 #include <linux/spi/ad7877.h>
52 * Name the Board for the /proc/cpuinfo
54 const char bfin_board_name[] = "ADDS-BF537-STAMP";
57 * Driver needs to know address, irq and flag pin.
60 #define ISP1761_BASE 0x203C0000
61 #define ISP1761_IRQ IRQ_PF7
63 #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
64 static struct resource bfin_isp1761_resources[] = {
65 [0] = {
66 .name = "isp1761-regs",
67 .start = ISP1761_BASE + 0x00000000,
68 .end = ISP1761_BASE + 0x000fffff,
69 .flags = IORESOURCE_MEM,
71 [1] = {
72 .start = ISP1761_IRQ,
73 .end = ISP1761_IRQ,
74 .flags = IORESOURCE_IRQ,
78 static struct platform_device bfin_isp1761_device = {
79 .name = "isp1761",
80 .id = 0,
81 .num_resources = ARRAY_SIZE(bfin_isp1761_resources),
82 .resource = bfin_isp1761_resources,
85 static struct platform_device *bfin_isp1761_devices[] = {
86 &bfin_isp1761_device,
89 int __init bfin_isp1761_init(void)
91 unsigned int num_devices = ARRAY_SIZE(bfin_isp1761_devices);
93 printk(KERN_INFO "%s(): registering device resources\n", __FUNCTION__);
94 set_irq_type(ISP1761_IRQ, IRQF_TRIGGER_FALLING);
96 return platform_add_devices(bfin_isp1761_devices, num_devices);
99 void __exit bfin_isp1761_exit(void)
101 platform_device_unregister(&bfin_isp1761_device);
104 arch_initcall(bfin_isp1761_init);
105 #endif
107 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
108 #include <linux/input.h>
109 #include <linux/gpio_keys.h>
111 static struct gpio_keys_button bfin_gpio_keys_table[] = {
112 {BTN_0, GPIO_PF2, 1, "gpio-keys: BTN0"},
113 {BTN_1, GPIO_PF3, 1, "gpio-keys: BTN1"},
114 {BTN_2, GPIO_PF4, 1, "gpio-keys: BTN2"},
115 {BTN_3, GPIO_PF5, 1, "gpio-keys: BTN3"},
118 static struct gpio_keys_platform_data bfin_gpio_keys_data = {
119 .buttons = bfin_gpio_keys_table,
120 .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table),
123 static struct platform_device bfin_device_gpiokeys = {
124 .name = "gpio-keys",
125 .dev = {
126 .platform_data = &bfin_gpio_keys_data,
129 #endif
131 static struct resource bfin_gpios_resources = {
132 .start = 0,
133 .end = MAX_BLACKFIN_GPIOS - 1,
134 .flags = IORESOURCE_IRQ,
137 static struct platform_device bfin_gpios_device = {
138 .name = "simple-gpio",
139 .id = -1,
140 .num_resources = 1,
141 .resource = &bfin_gpios_resources,
144 #if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
145 static struct resource bfin_pcmcia_cf_resources[] = {
147 .start = 0x20310000, /* IO PORT */
148 .end = 0x20312000,
149 .flags = IORESOURCE_MEM,
150 }, {
151 .start = 0x20311000, /* Attribute Memory */
152 .end = 0x20311FFF,
153 .flags = IORESOURCE_MEM,
154 }, {
155 .start = IRQ_PF4,
156 .end = IRQ_PF4,
157 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
158 }, {
159 .start = 6, /* Card Detect PF6 */
160 .end = 6,
161 .flags = IORESOURCE_IRQ,
165 static struct platform_device bfin_pcmcia_cf_device = {
166 .name = "bfin_cf_pcmcia",
167 .id = -1,
168 .num_resources = ARRAY_SIZE(bfin_pcmcia_cf_resources),
169 .resource = bfin_pcmcia_cf_resources,
171 #endif
173 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
174 static struct platform_device rtc_device = {
175 .name = "rtc-bfin",
176 .id = -1,
178 #endif
180 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
181 static struct resource smc91x_resources[] = {
183 .name = "smc91x-regs",
184 .start = 0x20300300,
185 .end = 0x20300300 + 16,
186 .flags = IORESOURCE_MEM,
187 }, {
189 .start = IRQ_PF7,
190 .end = IRQ_PF7,
191 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
194 static struct platform_device smc91x_device = {
195 .name = "smc91x",
196 .id = 0,
197 .num_resources = ARRAY_SIZE(smc91x_resources),
198 .resource = smc91x_resources,
200 #endif
202 #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
203 static struct resource dm9000_resources[] = {
204 [0] = {
205 .start = 0x203FB800,
206 .end = 0x203FB800 + 8,
207 .flags = IORESOURCE_MEM,
209 [1] = {
210 .start = IRQ_PF9,
211 .end = IRQ_PF9,
212 .flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE),
216 static struct platform_device dm9000_device = {
217 .name = "dm9000",
218 .id = -1,
219 .num_resources = ARRAY_SIZE(dm9000_resources),
220 .resource = dm9000_resources,
222 #endif
224 #if defined(CONFIG_AX88180) || defined(CONFIG_AX88180_MODULE)
225 static struct resource ax88180_resources[] = {
226 [0] = {
227 .start = 0x20300000,
228 .end = 0x20300000 + 0x8000,
229 .flags = IORESOURCE_MEM,
231 [1] = {
232 .start = IRQ_PF7,
233 .end = IRQ_PF7,
234 .flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL),
238 static struct platform_device ax88180_device = {
239 .name = "ax88180",
240 .id = -1,
241 .num_resources = ARRAY_SIZE(ax88180_resources),
242 .resource = ax88180_resources,
244 #endif
246 #if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
247 static struct resource sl811_hcd_resources[] = {
249 .start = 0x20340000,
250 .end = 0x20340000,
251 .flags = IORESOURCE_MEM,
252 }, {
253 .start = 0x20340004,
254 .end = 0x20340004,
255 .flags = IORESOURCE_MEM,
256 }, {
257 .start = CONFIG_USB_SL811_BFIN_IRQ,
258 .end = CONFIG_USB_SL811_BFIN_IRQ,
259 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
263 #if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
264 void sl811_port_power(struct device *dev, int is_on)
266 gpio_request(CONFIG_USB_SL811_BFIN_GPIO_VBUS, "usb:SL811_VBUS");
267 gpio_direction_output(CONFIG_USB_SL811_BFIN_GPIO_VBUS, is_on);
269 #endif
271 static struct sl811_platform_data sl811_priv = {
272 .potpg = 10,
273 .power = 250, /* == 500mA */
274 #if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
275 .port_power = &sl811_port_power,
276 #endif
279 static struct platform_device sl811_hcd_device = {
280 .name = "sl811-hcd",
281 .id = 0,
282 .dev = {
283 .platform_data = &sl811_priv,
285 .num_resources = ARRAY_SIZE(sl811_hcd_resources),
286 .resource = sl811_hcd_resources,
288 #endif
290 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
291 static struct resource isp1362_hcd_resources[] = {
293 .start = 0x20360000,
294 .end = 0x20360000,
295 .flags = IORESOURCE_MEM,
296 }, {
297 .start = 0x20360004,
298 .end = 0x20360004,
299 .flags = IORESOURCE_MEM,
300 }, {
301 .start = CONFIG_USB_ISP1362_BFIN_GPIO_IRQ,
302 .end = CONFIG_USB_ISP1362_BFIN_GPIO_IRQ,
303 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
307 static struct isp1362_platform_data isp1362_priv = {
308 .sel15Kres = 1,
309 .clknotstop = 0,
310 .oc_enable = 0,
311 .int_act_high = 0,
312 .int_edge_triggered = 0,
313 .remote_wakeup_connected = 0,
314 .no_power_switching = 1,
315 .power_switching_mode = 0,
318 static struct platform_device isp1362_hcd_device = {
319 .name = "isp1362-hcd",
320 .id = 0,
321 .dev = {
322 .platform_data = &isp1362_priv,
324 .num_resources = ARRAY_SIZE(isp1362_hcd_resources),
325 .resource = isp1362_hcd_resources,
327 #endif
329 #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
330 static struct platform_device bfin_mac_device = {
331 .name = "bfin_mac",
333 #endif
335 #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
336 static struct resource net2272_bfin_resources[] = {
338 .start = 0x20300000,
339 .end = 0x20300000 + 0x100,
340 .flags = IORESOURCE_MEM,
341 }, {
342 .start = IRQ_PF7,
343 .end = IRQ_PF7,
344 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
348 static struct platform_device net2272_bfin_device = {
349 .name = "net2272",
350 .id = -1,
351 .num_resources = ARRAY_SIZE(net2272_bfin_resources),
352 .resource = net2272_bfin_resources,
354 #endif
356 static struct mtd_partition stamp_partitions[] = {
358 .name = "Bootloader",
359 .size = 0x40000,
360 .offset = 0,
361 }, {
362 .name = "Kernel",
363 .size = 0xE0000,
364 .offset = MTDPART_OFS_APPEND,
365 }, {
366 .name = "RootFS",
367 .size = 0x400000 - 0x40000 - 0xE0000 - 0x10000,
368 .offset = MTDPART_OFS_APPEND,
369 }, {
370 .name = "MAC Address",
371 .size = MTDPART_SIZ_FULL,
372 .offset = 0x3F0000,
373 .mask_flags = MTD_WRITEABLE,
377 static struct physmap_flash_data stamp_flash_data = {
378 .width = 2,
379 .parts = stamp_partitions,
380 .nr_parts = ARRAY_SIZE(stamp_partitions),
383 static struct resource stamp_flash_resource = {
384 .start = 0x20000000,
385 .end = 0x203fffff,
386 .flags = IORESOURCE_MEM,
389 static struct platform_device stamp_flash_device = {
390 .name = "physmap-flash",
391 .id = 0,
392 .dev = {
393 .platform_data = &stamp_flash_data,
395 .num_resources = 1,
396 .resource = &stamp_flash_resource,
399 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
400 /* all SPI peripherals info goes here */
402 #if defined(CONFIG_MTD_M25P80) \
403 || defined(CONFIG_MTD_M25P80_MODULE)
404 static struct mtd_partition bfin_spi_flash_partitions[] = {
406 .name = "bootloader",
407 .size = 0x00040000,
408 .offset = 0,
409 .mask_flags = MTD_CAP_ROM
410 }, {
411 .name = "kernel",
412 .size = 0xe0000,
413 .offset = MTDPART_OFS_APPEND,
414 }, {
415 .name = "file system",
416 .size = MTDPART_SIZ_FULL,
417 .offset = MTDPART_OFS_APPEND,
421 static struct flash_platform_data bfin_spi_flash_data = {
422 .name = "m25p80",
423 .parts = bfin_spi_flash_partitions,
424 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
425 .type = "m25p64",
428 /* SPI flash chip (m25p64) */
429 static struct bfin5xx_spi_chip spi_flash_chip_info = {
430 .enable_dma = 0, /* use dma transfer with this chip*/
431 .bits_per_word = 8,
433 #endif
435 #if defined(CONFIG_SPI_ADC_BF533) \
436 || defined(CONFIG_SPI_ADC_BF533_MODULE)
437 /* SPI ADC chip */
438 static struct bfin5xx_spi_chip spi_adc_chip_info = {
439 .enable_dma = 1, /* use dma transfer with this chip*/
440 .bits_per_word = 16,
442 #endif
444 #if defined(CONFIG_SND_BLACKFIN_AD1836) \
445 || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
446 static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
447 .enable_dma = 0,
448 .bits_per_word = 16,
450 #endif
452 #if defined(CONFIG_AD9960) || defined(CONFIG_AD9960_MODULE)
453 static struct bfin5xx_spi_chip ad9960_spi_chip_info = {
454 .enable_dma = 0,
455 .bits_per_word = 16,
457 #endif
459 #if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE)
460 static struct bfin5xx_spi_chip spi_mmc_chip_info = {
461 .enable_dma = 1,
462 .bits_per_word = 8,
464 #endif
466 #if defined(CONFIG_PBX)
467 static struct bfin5xx_spi_chip spi_si3xxx_chip_info = {
468 .ctl_reg = 0x4, /* send zero */
469 .enable_dma = 0,
470 .bits_per_word = 8,
471 .cs_change_per_word = 1,
473 #endif
475 #if defined(CONFIG_AD5304) || defined(CONFIG_AD5304_MODULE)
476 static struct bfin5xx_spi_chip ad5304_chip_info = {
477 .enable_dma = 0,
478 .bits_per_word = 16,
480 #endif
482 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
483 static struct bfin5xx_spi_chip spi_ad7877_chip_info = {
484 .enable_dma = 0,
485 .bits_per_word = 16,
488 static const struct ad7877_platform_data bfin_ad7877_ts_info = {
489 .model = 7877,
490 .vref_delay_usecs = 50, /* internal, no capacitor */
491 .x_plate_ohms = 419,
492 .y_plate_ohms = 486,
493 .pressure_max = 1000,
494 .pressure_min = 0,
495 .stopacq_polarity = 1,
496 .first_conversion_delay = 3,
497 .acquisition_time = 1,
498 .averaging = 1,
499 .pen_down_acc_interval = 1,
501 #endif
503 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
504 static struct bfin5xx_spi_chip spidev_chip_info = {
505 .enable_dma = 0,
506 .bits_per_word = 8,
508 #endif
510 static struct spi_board_info bfin_spi_board_info[] __initdata = {
511 #if defined(CONFIG_MTD_M25P80) \
512 || defined(CONFIG_MTD_M25P80_MODULE)
514 /* the modalias must be the same as spi device driver name */
515 .modalias = "m25p80", /* Name of spi_driver for this device */
516 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
517 .bus_num = 0, /* Framework bus number */
518 .chip_select = 1, /* Framework chip select. On STAMP537 it is SPISSEL1*/
519 .platform_data = &bfin_spi_flash_data,
520 .controller_data = &spi_flash_chip_info,
521 .mode = SPI_MODE_3,
523 #endif
525 #if defined(CONFIG_SPI_ADC_BF533) \
526 || defined(CONFIG_SPI_ADC_BF533_MODULE)
528 .modalias = "bfin_spi_adc", /* Name of spi_driver for this device */
529 .max_speed_hz = 6250000, /* max spi clock (SCK) speed in HZ */
530 .bus_num = 0, /* Framework bus number */
531 .chip_select = 1, /* Framework chip select. */
532 .platform_data = NULL, /* No spi_driver specific config */
533 .controller_data = &spi_adc_chip_info,
535 #endif
537 #if defined(CONFIG_SND_BLACKFIN_AD1836) \
538 || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
540 .modalias = "ad1836-spi",
541 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
542 .bus_num = 0,
543 .chip_select = CONFIG_SND_BLACKFIN_SPI_PFBIT,
544 .controller_data = &ad1836_spi_chip_info,
546 #endif
547 #if defined(CONFIG_AD9960) || defined(CONFIG_AD9960_MODULE)
549 .modalias = "ad9960-spi",
550 .max_speed_hz = 10000000, /* max spi clock (SCK) speed in HZ */
551 .bus_num = 0,
552 .chip_select = 1,
553 .controller_data = &ad9960_spi_chip_info,
555 #endif
556 #if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE)
558 .modalias = "spi_mmc_dummy",
559 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
560 .bus_num = 0,
561 .chip_select = 0,
562 .platform_data = NULL,
563 .controller_data = &spi_mmc_chip_info,
564 .mode = SPI_MODE_3,
567 .modalias = "spi_mmc",
568 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
569 .bus_num = 0,
570 .chip_select = CONFIG_SPI_MMC_CS_CHAN,
571 .platform_data = NULL,
572 .controller_data = &spi_mmc_chip_info,
573 .mode = SPI_MODE_3,
575 #endif
576 #if defined(CONFIG_PBX)
578 .modalias = "fxs-spi",
579 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
580 .bus_num = 0,
581 .chip_select = 8 - CONFIG_J11_JUMPER,
582 .controller_data = &spi_si3xxx_chip_info,
583 .mode = SPI_MODE_3,
586 .modalias = "fxo-spi",
587 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
588 .bus_num = 0,
589 .chip_select = 8 - CONFIG_J19_JUMPER,
590 .controller_data = &spi_si3xxx_chip_info,
591 .mode = SPI_MODE_3,
593 #endif
594 #if defined(CONFIG_AD5304) || defined(CONFIG_AD5304_MODULE)
596 .modalias = "ad5304_spi",
597 .max_speed_hz = 1250000, /* max spi clock (SCK) speed in HZ */
598 .bus_num = 0,
599 .chip_select = 2,
600 .platform_data = NULL,
601 .controller_data = &ad5304_chip_info,
602 .mode = SPI_MODE_2,
604 #endif
605 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
607 .modalias = "ad7877",
608 .platform_data = &bfin_ad7877_ts_info,
609 .irq = IRQ_PF6,
610 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
611 .bus_num = 0,
612 .chip_select = 1,
613 .controller_data = &spi_ad7877_chip_info,
615 #endif
616 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
618 .modalias = "spidev",
619 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
620 .bus_num = 0,
621 .chip_select = 1,
622 .controller_data = &spidev_chip_info,
624 #endif
627 /* SPI controller data */
628 static struct bfin5xx_spi_master bfin_spi0_info = {
629 .num_chipselect = 8,
630 .enable_dma = 1, /* master has the ability to do dma transfer */
631 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
634 /* SPI (0) */
635 static struct resource bfin_spi0_resource[] = {
636 [0] = {
637 .start = SPI0_REGBASE,
638 .end = SPI0_REGBASE + 0xFF,
639 .flags = IORESOURCE_MEM,
641 [1] = {
642 .start = CH_SPI,
643 .end = CH_SPI,
644 .flags = IORESOURCE_IRQ,
648 static struct platform_device bfin_spi0_device = {
649 .name = "bfin-spi",
650 .id = 0, /* Bus number */
651 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
652 .resource = bfin_spi0_resource,
653 .dev = {
654 .platform_data = &bfin_spi0_info, /* Passed to driver */
657 #endif /* spi master and devices */
659 #if defined(CONFIG_FB_BF537_LQ035) || defined(CONFIG_FB_BF537_LQ035_MODULE)
660 static struct platform_device bfin_fb_device = {
661 .name = "bf537-lq035",
663 #endif
665 #if defined(CONFIG_FB_BFIN_7393) || defined(CONFIG_FB_BFIN_7393_MODULE)
666 static struct platform_device bfin_fb_adv7393_device = {
667 .name = "bfin-adv7393",
669 #endif
671 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
672 static struct resource bfin_uart_resources[] = {
673 #ifdef CONFIG_SERIAL_BFIN_UART0
675 .start = 0xFFC00400,
676 .end = 0xFFC004FF,
677 .flags = IORESOURCE_MEM,
679 #endif
680 #ifdef CONFIG_SERIAL_BFIN_UART1
682 .start = 0xFFC02000,
683 .end = 0xFFC020FF,
684 .flags = IORESOURCE_MEM,
686 #endif
689 static struct platform_device bfin_uart_device = {
690 .name = "bfin-uart",
691 .id = 1,
692 .num_resources = ARRAY_SIZE(bfin_uart_resources),
693 .resource = bfin_uart_resources,
695 #endif
697 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
698 static struct resource bfin_twi0_resource[] = {
699 [0] = {
700 .start = TWI0_REGBASE,
701 .end = TWI0_REGBASE,
702 .flags = IORESOURCE_MEM,
704 [1] = {
705 .start = IRQ_TWI,
706 .end = IRQ_TWI,
707 .flags = IORESOURCE_IRQ,
711 static struct platform_device i2c_bfin_twi_device = {
712 .name = "i2c-bfin-twi",
713 .id = 0,
714 .num_resources = ARRAY_SIZE(bfin_twi0_resource),
715 .resource = bfin_twi0_resource,
717 #endif
719 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
720 static struct platform_device bfin_sport0_uart_device = {
721 .name = "bfin-sport-uart",
722 .id = 0,
725 static struct platform_device bfin_sport1_uart_device = {
726 .name = "bfin-sport-uart",
727 .id = 1,
729 #endif
731 #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
732 #define PATA_INT 55
734 static struct pata_platform_info bfin_pata_platform_data = {
735 .ioport_shift = 1,
736 .irq_flags = IRQF_TRIGGER_HIGH | IRQF_DISABLED,
739 static struct resource bfin_pata_resources[] = {
741 .start = 0x20314020,
742 .end = 0x2031403F,
743 .flags = IORESOURCE_MEM,
746 .start = 0x2031401C,
747 .end = 0x2031401F,
748 .flags = IORESOURCE_MEM,
751 .start = PATA_INT,
752 .end = PATA_INT,
753 .flags = IORESOURCE_IRQ,
757 static struct platform_device bfin_pata_device = {
758 .name = "pata_platform",
759 .id = -1,
760 .num_resources = ARRAY_SIZE(bfin_pata_resources),
761 .resource = bfin_pata_resources,
762 .dev = {
763 .platform_data = &bfin_pata_platform_data,
766 #endif
768 static struct platform_device *stamp_devices[] __initdata = {
769 #if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
770 &bfin_pcmcia_cf_device,
771 #endif
773 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
774 &rtc_device,
775 #endif
777 #if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
778 &sl811_hcd_device,
779 #endif
781 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
782 &isp1362_hcd_device,
783 #endif
785 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
786 &smc91x_device,
787 #endif
789 #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
790 &dm9000_device,
791 #endif
793 #if defined(CONFIG_AX88180) || defined(CONFIG_AX88180_MODULE)
794 &ax88180_device,
795 #endif
797 #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
798 &bfin_mac_device,
799 #endif
801 #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
802 &net2272_bfin_device,
803 #endif
805 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
806 &bfin_spi0_device,
807 #endif
809 #if defined(CONFIG_FB_BF537_LQ035) || defined(CONFIG_FB_BF537_LQ035_MODULE)
810 &bfin_fb_device,
811 #endif
813 #if defined(CONFIG_FB_BFIN_7393) || defined(CONFIG_FB_BFIN_7393_MODULE)
814 &bfin_fb_adv7393_device,
815 #endif
817 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
818 &bfin_uart_device,
819 #endif
821 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
822 &i2c_bfin_twi_device,
823 #endif
825 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
826 &bfin_sport0_uart_device,
827 &bfin_sport1_uart_device,
828 #endif
830 #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
831 &bfin_pata_device,
832 #endif
834 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
835 &bfin_device_gpiokeys,
836 #endif
838 &bfin_gpios_device,
839 &stamp_flash_device,
842 static int __init stamp_init(void)
844 printk(KERN_INFO "%s(): registering device resources\n", __FUNCTION__);
845 platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
846 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
847 spi_register_board_info(bfin_spi_board_info,
848 ARRAY_SIZE(bfin_spi_board_info));
849 #endif
851 #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
852 irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
853 #endif
854 return 0;
857 arch_initcall(stamp_init);
859 void native_machine_restart(char *cmd)
861 /* workaround reboot hang when booting from SPI */
862 if ((bfin_read_SYSCR() & 0x7) == 0x3)
863 bfin_gpio_reset_spi0_ssel1();
867 * Currently the MAC address is saved in Flash by U-Boot
869 #define FLASH_MAC 0x203f0000
870 void bfin_get_ether_addr(char *addr)
872 *(u32 *)(&(addr[0])) = bfin_read32(FLASH_MAC);
873 *(u16 *)(&(addr[4])) = bfin_read16(FLASH_MAC + 4);
875 EXPORT_SYMBOL(bfin_get_ether_addr);