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>
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/spi/spi.h>
36 #include <linux/spi/flash.h>
37 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
38 #include <linux/usb/isp1362.h>
40 #include <linux/pata_platform.h>
41 #include <linux/irq.h>
42 #include <linux/interrupt.h>
43 #include <linux/usb/sl811.h>
45 #include <asm/bfin5xx_spi.h>
46 #include <asm/reboot.h>
47 #include <asm/portmux.h>
48 #include <linux/spi/ad7877.h>
51 * Name the Board for the /proc/cpuinfo
53 const char bfin_board_name[] = "ADDS-BF537-STAMP";
56 * Driver needs to know address, irq and flag pin.
59 #define ISP1761_BASE 0x203C0000
60 #define ISP1761_IRQ IRQ_PF7
62 #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
63 static struct resource bfin_isp1761_resources[] = {
65 .name = "isp1761-regs",
66 .start = ISP1761_BASE + 0x00000000,
67 .end = ISP1761_BASE + 0x000fffff,
68 .flags = IORESOURCE_MEM,
73 .flags = IORESOURCE_IRQ,
77 static struct platform_device bfin_isp1761_device = {
80 .num_resources = ARRAY_SIZE(bfin_isp1761_resources),
81 .resource = bfin_isp1761_resources,
84 static struct platform_device *bfin_isp1761_devices[] = {
88 int __init bfin_isp1761_init(void)
90 unsigned int num_devices = ARRAY_SIZE(bfin_isp1761_devices);
92 printk(KERN_INFO "%s(): registering device resources\n", __FUNCTION__);
93 set_irq_type(ISP1761_IRQ, IRQF_TRIGGER_FALLING);
95 return platform_add_devices(bfin_isp1761_devices, num_devices);
98 void __exit bfin_isp1761_exit(void)
100 platform_device_unregister(&bfin_isp1761_device);
103 arch_initcall(bfin_isp1761_init);
106 #if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
107 static struct resource bfin_pcmcia_cf_resources[] = {
109 .start = 0x20310000, /* IO PORT */
111 .flags = IORESOURCE_MEM,
113 .start = 0x20311000, /* Attribute Memory */
115 .flags = IORESOURCE_MEM,
119 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
121 .start = 6, /* Card Detect PF6 */
123 .flags = IORESOURCE_IRQ,
127 static struct platform_device bfin_pcmcia_cf_device = {
128 .name = "bfin_cf_pcmcia",
130 .num_resources = ARRAY_SIZE(bfin_pcmcia_cf_resources),
131 .resource = bfin_pcmcia_cf_resources,
135 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
136 static struct platform_device rtc_device = {
142 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
143 static struct resource smc91x_resources[] = {
145 .name = "smc91x-regs",
147 .end = 0x20300300 + 16,
148 .flags = IORESOURCE_MEM,
153 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
156 static struct platform_device smc91x_device = {
159 .num_resources = ARRAY_SIZE(smc91x_resources),
160 .resource = smc91x_resources,
164 #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
165 static struct resource dm9000_resources[] = {
168 .end = 0x203FB800 + 8,
169 .flags = IORESOURCE_MEM,
174 .flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE),
178 static struct platform_device dm9000_device = {
181 .num_resources = ARRAY_SIZE(dm9000_resources),
182 .resource = dm9000_resources,
186 #if defined(CONFIG_AX88180) || defined(CONFIG_AX88180_MODULE)
187 static struct resource ax88180_resources[] = {
190 .end = 0x20300000 + 0x8000,
191 .flags = IORESOURCE_MEM,
196 .flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL),
200 static struct platform_device ax88180_device = {
203 .num_resources = ARRAY_SIZE(ax88180_resources),
204 .resource = ax88180_resources,
208 #if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
209 static struct resource sl811_hcd_resources[] = {
213 .flags = IORESOURCE_MEM,
217 .flags = IORESOURCE_MEM,
219 .start = CONFIG_USB_SL811_BFIN_IRQ,
220 .end = CONFIG_USB_SL811_BFIN_IRQ,
221 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
225 #if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
226 void sl811_port_power(struct device *dev, int is_on)
228 gpio_request(CONFIG_USB_SL811_BFIN_GPIO_VBUS, "usb:SL811_VBUS");
229 gpio_direction_output(CONFIG_USB_SL811_BFIN_GPIO_VBUS);
232 gpio_set_value(CONFIG_USB_SL811_BFIN_GPIO_VBUS, 1);
234 gpio_set_value(CONFIG_USB_SL811_BFIN_GPIO_VBUS, 0);
238 static struct sl811_platform_data sl811_priv = {
240 .power = 250, /* == 500mA */
241 #if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
242 .port_power = &sl811_port_power,
246 static struct platform_device sl811_hcd_device = {
250 .platform_data = &sl811_priv,
252 .num_resources = ARRAY_SIZE(sl811_hcd_resources),
253 .resource = sl811_hcd_resources,
257 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
258 static struct resource isp1362_hcd_resources[] = {
262 .flags = IORESOURCE_MEM,
266 .flags = IORESOURCE_MEM,
268 .start = CONFIG_USB_ISP1362_BFIN_GPIO_IRQ,
269 .end = CONFIG_USB_ISP1362_BFIN_GPIO_IRQ,
270 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
274 static struct isp1362_platform_data isp1362_priv = {
279 .int_edge_triggered = 0,
280 .remote_wakeup_connected = 0,
281 .no_power_switching = 1,
282 .power_switching_mode = 0,
285 static struct platform_device isp1362_hcd_device = {
286 .name = "isp1362-hcd",
289 .platform_data = &isp1362_priv,
291 .num_resources = ARRAY_SIZE(isp1362_hcd_resources),
292 .resource = isp1362_hcd_resources,
296 #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
297 static struct platform_device bfin_mac_device = {
302 #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
303 static struct resource net2272_bfin_resources[] = {
306 .end = 0x20300000 + 0x100,
307 .flags = IORESOURCE_MEM,
311 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
315 static struct platform_device net2272_bfin_device = {
318 .num_resources = ARRAY_SIZE(net2272_bfin_resources),
319 .resource = net2272_bfin_resources,
323 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
324 /* all SPI peripherals info goes here */
326 #if defined(CONFIG_MTD_M25P80) \
327 || defined(CONFIG_MTD_M25P80_MODULE)
328 static struct mtd_partition bfin_spi_flash_partitions[] = {
330 .name = "bootloader",
333 .mask_flags = MTD_CAP_ROM
339 .name = "file system",
341 .offset = 0x00100000,
345 static struct flash_platform_data bfin_spi_flash_data = {
347 .parts = bfin_spi_flash_partitions,
348 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
352 /* SPI flash chip (m25p64) */
353 static struct bfin5xx_spi_chip spi_flash_chip_info = {
354 .enable_dma = 0, /* use dma transfer with this chip*/
359 #if defined(CONFIG_SPI_ADC_BF533) \
360 || defined(CONFIG_SPI_ADC_BF533_MODULE)
362 static struct bfin5xx_spi_chip spi_adc_chip_info = {
363 .enable_dma = 1, /* use dma transfer with this chip*/
368 #if defined(CONFIG_SND_BLACKFIN_AD1836) \
369 || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
370 static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
376 #if defined(CONFIG_AD9960) || defined(CONFIG_AD9960_MODULE)
377 static struct bfin5xx_spi_chip ad9960_spi_chip_info = {
383 #if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE)
384 static struct bfin5xx_spi_chip spi_mmc_chip_info = {
390 #if defined(CONFIG_PBX)
391 static struct bfin5xx_spi_chip spi_si3xxx_chip_info = {
392 .ctl_reg = 0x4, /* send zero */
395 .cs_change_per_word = 1,
399 #if defined(CONFIG_AD5304) || defined(CONFIG_AD5304_MODULE)
400 static struct bfin5xx_spi_chip ad5304_chip_info = {
406 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
407 static struct bfin5xx_spi_chip spi_ad7877_chip_info = {
412 static const struct ad7877_platform_data bfin_ad7877_ts_info = {
414 .vref_delay_usecs = 50, /* internal, no capacitor */
417 .pressure_max = 1000,
419 .stopacq_polarity = 1,
420 .first_conversion_delay = 3,
421 .acquisition_time = 1,
423 .pen_down_acc_interval = 1,
427 static struct spi_board_info bfin_spi_board_info[] __initdata = {
428 #if defined(CONFIG_MTD_M25P80) \
429 || defined(CONFIG_MTD_M25P80_MODULE)
431 /* the modalias must be the same as spi device driver name */
432 .modalias = "m25p80", /* Name of spi_driver for this device */
433 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
434 .bus_num = 0, /* Framework bus number */
435 .chip_select = 1, /* Framework chip select. On STAMP537 it is SPISSEL1*/
436 .platform_data = &bfin_spi_flash_data,
437 .controller_data = &spi_flash_chip_info,
442 #if defined(CONFIG_SPI_ADC_BF533) \
443 || defined(CONFIG_SPI_ADC_BF533_MODULE)
445 .modalias = "bfin_spi_adc", /* Name of spi_driver for this device */
446 .max_speed_hz = 6250000, /* max spi clock (SCK) speed in HZ */
447 .bus_num = 0, /* Framework bus number */
448 .chip_select = 1, /* Framework chip select. */
449 .platform_data = NULL, /* No spi_driver specific config */
450 .controller_data = &spi_adc_chip_info,
454 #if defined(CONFIG_SND_BLACKFIN_AD1836) \
455 || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
457 .modalias = "ad1836-spi",
458 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
460 .chip_select = CONFIG_SND_BLACKFIN_SPI_PFBIT,
461 .controller_data = &ad1836_spi_chip_info,
464 #if defined(CONFIG_AD9960) || defined(CONFIG_AD9960_MODULE)
466 .modalias = "ad9960-spi",
467 .max_speed_hz = 10000000, /* max spi clock (SCK) speed in HZ */
470 .controller_data = &ad9960_spi_chip_info,
473 #if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE)
475 .modalias = "spi_mmc_dummy",
476 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
479 .platform_data = NULL,
480 .controller_data = &spi_mmc_chip_info,
484 .modalias = "spi_mmc",
485 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
487 .chip_select = CONFIG_SPI_MMC_CS_CHAN,
488 .platform_data = NULL,
489 .controller_data = &spi_mmc_chip_info,
493 #if defined(CONFIG_PBX)
495 .modalias = "fxs-spi",
496 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
498 .chip_select = 8 - CONFIG_J11_JUMPER,
499 .controller_data = &spi_si3xxx_chip_info,
503 .modalias = "fxo-spi",
504 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
506 .chip_select = 8 - CONFIG_J19_JUMPER,
507 .controller_data = &spi_si3xxx_chip_info,
511 #if defined(CONFIG_AD5304) || defined(CONFIG_AD5304_MODULE)
513 .modalias = "ad5304_spi",
514 .max_speed_hz = 1250000, /* max spi clock (SCK) speed in HZ */
517 .platform_data = NULL,
518 .controller_data = &ad5304_chip_info,
522 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
524 .modalias = "ad7877",
525 .platform_data = &bfin_ad7877_ts_info,
527 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
530 .controller_data = &spi_ad7877_chip_info,
535 /* SPI controller data */
536 static struct bfin5xx_spi_master bfin_spi0_info = {
538 .enable_dma = 1, /* master has the ability to do dma transfer */
539 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
543 static struct resource bfin_spi0_resource[] = {
545 .start = SPI0_REGBASE,
546 .end = SPI0_REGBASE + 0xFF,
547 .flags = IORESOURCE_MEM,
552 .flags = IORESOURCE_IRQ,
556 static struct platform_device bfin_spi0_device = {
558 .id = 0, /* Bus number */
559 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
560 .resource = bfin_spi0_resource,
562 .platform_data = &bfin_spi0_info, /* Passed to driver */
565 #endif /* spi master and devices */
567 #if defined(CONFIG_FB_BF537_LQ035) || defined(CONFIG_FB_BF537_LQ035_MODULE)
568 static struct platform_device bfin_fb_device = {
569 .name = "bf537-lq035",
573 #if defined(CONFIG_FB_BFIN_7393) || defined(CONFIG_FB_BFIN_7393_MODULE)
574 static struct platform_device bfin_fb_adv7393_device = {
575 .name = "bfin-adv7393",
579 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
580 static struct resource bfin_uart_resources[] = {
581 #ifdef CONFIG_SERIAL_BFIN_UART0
585 .flags = IORESOURCE_MEM,
588 #ifdef CONFIG_SERIAL_BFIN_UART1
592 .flags = IORESOURCE_MEM,
597 static struct platform_device bfin_uart_device = {
600 .num_resources = ARRAY_SIZE(bfin_uart_resources),
601 .resource = bfin_uart_resources,
605 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
606 static struct resource bfin_twi0_resource[] = {
608 .start = TWI0_REGBASE,
610 .flags = IORESOURCE_MEM,
615 .flags = IORESOURCE_IRQ,
619 static struct platform_device i2c_bfin_twi_device = {
620 .name = "i2c-bfin-twi",
622 .num_resources = ARRAY_SIZE(bfin_twi0_resource),
623 .resource = bfin_twi0_resource,
627 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
628 static struct platform_device bfin_sport0_uart_device = {
629 .name = "bfin-sport-uart",
633 static struct platform_device bfin_sport1_uart_device = {
634 .name = "bfin-sport-uart",
639 #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
642 static struct pata_platform_info bfin_pata_platform_data = {
644 .irq_flags = IRQF_TRIGGER_HIGH | IRQF_DISABLED,
647 static struct resource bfin_pata_resources[] = {
651 .flags = IORESOURCE_MEM,
656 .flags = IORESOURCE_MEM,
661 .flags = IORESOURCE_IRQ,
665 static struct platform_device bfin_pata_device = {
666 .name = "pata_platform",
668 .num_resources = ARRAY_SIZE(bfin_pata_resources),
669 .resource = bfin_pata_resources,
671 .platform_data = &bfin_pata_platform_data,
676 static struct platform_device *stamp_devices[] __initdata = {
677 #if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
678 &bfin_pcmcia_cf_device,
681 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
685 #if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
689 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
693 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
697 #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
701 #if defined(CONFIG_AX88180) || defined(CONFIG_AX88180_MODULE)
705 #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
709 #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
710 &net2272_bfin_device,
713 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
717 #if defined(CONFIG_FB_BF537_LQ035) || defined(CONFIG_FB_BF537_LQ035_MODULE)
721 #if defined(CONFIG_FB_BFIN_7393) || defined(CONFIG_FB_BFIN_7393_MODULE)
722 &bfin_fb_adv7393_device,
725 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
729 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
730 &i2c_bfin_twi_device,
733 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
734 &bfin_sport0_uart_device,
735 &bfin_sport1_uart_device,
738 #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
743 static int __init stamp_init(void)
745 printk(KERN_INFO "%s(): registering device resources\n", __FUNCTION__);
746 platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
747 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
748 spi_register_board_info(bfin_spi_board_info,
749 ARRAY_SIZE(bfin_spi_board_info));
752 #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
753 irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
758 arch_initcall(stamp_init);
760 void native_machine_restart(char *cmd)
762 /* workaround reboot hang when booting from SPI */
763 if ((bfin_read_SYSCR() & 0x7) == 0x3)
764 bfin_gpio_reset_spi0_ssel1();
768 * Currently the MAC address is saved in Flash by U-Boot
770 #define FLASH_MAC 0x203f0000
771 void bfin_get_ether_addr(char *addr)
773 *(u32 *)(&(addr[0])) = bfin_read32(FLASH_MAC);
774 *(u16 *)(&(addr[4])) = bfin_read16(FLASH_MAC + 4);
776 EXPORT_SYMBOL(bfin_get_ether_addr);