2 * File: arch/blackfin/mach-bf527/boards/cm-bf527.c
3 * Based on: arch/blackfin/mach-bf537/boards/stamp.c
4 * Author: Aidan Williams <aidan@nicta.com.au>
10 * Copyright 2005 National ICT Australia (NICTA)
11 * Copyright 2004-2008 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 #include <linux/etherdevice.h>
39 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
40 #include <linux/usb/isp1362.h>
42 #include <linux/i2c.h>
43 #include <linux/irq.h>
44 #include <linux/interrupt.h>
45 #include <linux/usb/sl811.h>
46 #include <linux/usb/musb.h>
48 #include <asm/bfin5xx_spi.h>
49 #include <asm/reboot.h>
51 #include <asm/portmux.h>
53 #include <linux/spi/ad7877.h>
56 * Name the Board for the /proc/cpuinfo
58 const char bfin_board_name
[] = "Bluetechnix CM-BF527";
61 * Driver needs to know address, irq and flag pin.
64 #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
65 #include <linux/usb/isp1760.h>
66 static struct resource bfin_isp1760_resources
[] = {
69 .end
= 0x203C0000 + 0x000fffff,
70 .flags
= IORESOURCE_MEM
,
75 .flags
= IORESOURCE_IRQ
,
79 static struct isp1760_platform_data isp1760_priv
= {
84 .dack_polarity_high
= 0,
85 .dreq_polarity_high
= 0,
88 static struct platform_device bfin_isp1760_device
= {
89 .name
= "isp1760-hcd",
92 .platform_data
= &isp1760_priv
,
94 .num_resources
= ARRAY_SIZE(bfin_isp1760_resources
),
95 .resource
= bfin_isp1760_resources
,
99 #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
100 static struct resource musb_resources
[] = {
104 .flags
= IORESOURCE_MEM
,
106 [1] = { /* general IRQ */
107 .start
= IRQ_USB_INT0
,
109 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
111 [2] = { /* DMA IRQ */
112 .start
= IRQ_USB_DMA
,
114 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
118 static struct musb_hdrc_config musb_config
= {
125 .gpio_vrsel
= GPIO_PF11
,
128 static struct musb_hdrc_platform_data musb_plat
= {
129 #if defined(CONFIG_USB_MUSB_OTG)
131 #elif defined(CONFIG_USB_MUSB_HDRC_HCD)
133 #elif defined(CONFIG_USB_GADGET_MUSB_HDRC)
134 .mode
= MUSB_PERIPHERAL
,
136 .config
= &musb_config
,
139 static u64 musb_dmamask
= ~(u32
)0;
141 static struct platform_device musb_device
= {
145 .dma_mask
= &musb_dmamask
,
146 .coherent_dma_mask
= 0xffffffff,
147 .platform_data
= &musb_plat
,
149 .num_resources
= ARRAY_SIZE(musb_resources
),
150 .resource
= musb_resources
,
154 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
155 static struct mtd_partition ezkit_partitions
[] = {
157 .name
= "bootloader(nor)",
161 .name
= "linux kernel(nor)",
163 .offset
= MTDPART_OFS_APPEND
,
165 .name
= "file system(nor)",
166 .size
= MTDPART_SIZ_FULL
,
167 .offset
= MTDPART_OFS_APPEND
,
171 static struct physmap_flash_data ezkit_flash_data
= {
173 .parts
= ezkit_partitions
,
174 .nr_parts
= ARRAY_SIZE(ezkit_partitions
),
177 static struct resource ezkit_flash_resource
= {
180 .flags
= IORESOURCE_MEM
,
183 static struct platform_device ezkit_flash_device
= {
184 .name
= "physmap-flash",
187 .platform_data
= &ezkit_flash_data
,
190 .resource
= &ezkit_flash_resource
,
194 #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
195 static struct mtd_partition partition_info
[] = {
197 .name
= "linux kernel(nand)",
199 .size
= 4 * 1024 * 1024,
202 .name
= "file system(nand)",
203 .offset
= MTDPART_OFS_APPEND
,
204 .size
= MTDPART_SIZ_FULL
,
208 static struct bf5xx_nand_platform bf5xx_nand_platform
= {
209 .page_size
= NFC_PG_SIZE_256
,
210 .data_width
= NFC_NWIDTH_8
,
211 .partitions
= partition_info
,
212 .nr_partitions
= ARRAY_SIZE(partition_info
),
217 static struct resource bf5xx_nand_resources
[] = {
220 .end
= NFC_DATA_RD
+ 2,
221 .flags
= IORESOURCE_MEM
,
226 .flags
= IORESOURCE_IRQ
,
230 static struct platform_device bf5xx_nand_device
= {
231 .name
= "bf5xx-nand",
233 .num_resources
= ARRAY_SIZE(bf5xx_nand_resources
),
234 .resource
= bf5xx_nand_resources
,
236 .platform_data
= &bf5xx_nand_platform
,
241 #if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
242 static struct resource bfin_pcmcia_cf_resources
[] = {
244 .start
= 0x20310000, /* IO PORT */
246 .flags
= IORESOURCE_MEM
,
248 .start
= 0x20311000, /* Attribute Memory */
250 .flags
= IORESOURCE_MEM
,
254 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_LOWLEVEL
,
256 .start
= 6, /* Card Detect PF6 */
258 .flags
= IORESOURCE_IRQ
,
262 static struct platform_device bfin_pcmcia_cf_device
= {
263 .name
= "bfin_cf_pcmcia",
265 .num_resources
= ARRAY_SIZE(bfin_pcmcia_cf_resources
),
266 .resource
= bfin_pcmcia_cf_resources
,
270 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
271 static struct platform_device rtc_device
= {
277 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
278 static struct resource smc91x_resources
[] = {
280 .name
= "smc91x-regs",
282 .end
= 0x20300300 + 16,
283 .flags
= IORESOURCE_MEM
,
288 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
291 static struct platform_device smc91x_device
= {
294 .num_resources
= ARRAY_SIZE(smc91x_resources
),
295 .resource
= smc91x_resources
,
299 #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
300 static struct resource dm9000_resources
[] = {
303 .end
= 0x203FB800 + 8,
304 .flags
= IORESOURCE_MEM
,
309 .flags
= (IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHEDGE
),
313 static struct platform_device dm9000_device
= {
316 .num_resources
= ARRAY_SIZE(dm9000_resources
),
317 .resource
= dm9000_resources
,
321 #if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
322 static struct resource sl811_hcd_resources
[] = {
326 .flags
= IORESOURCE_MEM
,
330 .flags
= IORESOURCE_MEM
,
332 .start
= CONFIG_USB_SL811_BFIN_IRQ
,
333 .end
= CONFIG_USB_SL811_BFIN_IRQ
,
334 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
338 #if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
339 void sl811_port_power(struct device
*dev
, int is_on
)
341 gpio_request(CONFIG_USB_SL811_BFIN_GPIO_VBUS
, "usb:SL811_VBUS");
342 gpio_direction_output(CONFIG_USB_SL811_BFIN_GPIO_VBUS
, is_on
);
346 static struct sl811_platform_data sl811_priv
= {
348 .power
= 250, /* == 500mA */
349 #if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
350 .port_power
= &sl811_port_power
,
354 static struct platform_device sl811_hcd_device
= {
358 .platform_data
= &sl811_priv
,
360 .num_resources
= ARRAY_SIZE(sl811_hcd_resources
),
361 .resource
= sl811_hcd_resources
,
365 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
366 static struct resource isp1362_hcd_resources
[] = {
370 .flags
= IORESOURCE_MEM
,
374 .flags
= IORESOURCE_MEM
,
376 .start
= CONFIG_USB_ISP1362_BFIN_GPIO_IRQ
,
377 .end
= CONFIG_USB_ISP1362_BFIN_GPIO_IRQ
,
378 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
382 static struct isp1362_platform_data isp1362_priv
= {
387 .int_edge_triggered
= 0,
388 .remote_wakeup_connected
= 0,
389 .no_power_switching
= 1,
390 .power_switching_mode
= 0,
393 static struct platform_device isp1362_hcd_device
= {
394 .name
= "isp1362-hcd",
397 .platform_data
= &isp1362_priv
,
399 .num_resources
= ARRAY_SIZE(isp1362_hcd_resources
),
400 .resource
= isp1362_hcd_resources
,
404 #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
405 static struct platform_device bfin_mii_bus
= {
406 .name
= "bfin_mii_bus",
409 static struct platform_device bfin_mac_device
= {
411 .dev
.platform_data
= &bfin_mii_bus
,
415 #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
416 static struct resource net2272_bfin_resources
[] = {
419 .end
= 0x20300000 + 0x100,
420 .flags
= IORESOURCE_MEM
,
424 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
428 static struct platform_device net2272_bfin_device
= {
431 .num_resources
= ARRAY_SIZE(net2272_bfin_resources
),
432 .resource
= net2272_bfin_resources
,
436 #if defined(CONFIG_MTD_M25P80) \
437 || defined(CONFIG_MTD_M25P80_MODULE)
438 static struct mtd_partition bfin_spi_flash_partitions
[] = {
440 .name
= "bootloader(spi)",
443 .mask_flags
= MTD_CAP_ROM
445 .name
= "linux kernel(spi)",
446 .size
= MTDPART_SIZ_FULL
,
447 .offset
= MTDPART_OFS_APPEND
,
451 static struct flash_platform_data bfin_spi_flash_data
= {
453 .parts
= bfin_spi_flash_partitions
,
454 .nr_parts
= ARRAY_SIZE(bfin_spi_flash_partitions
),
458 /* SPI flash chip (m25p64) */
459 static struct bfin5xx_spi_chip spi_flash_chip_info
= {
460 .enable_dma
= 0, /* use dma transfer with this chip*/
465 #if defined(CONFIG_BFIN_SPI_ADC) \
466 || defined(CONFIG_BFIN_SPI_ADC_MODULE)
468 static struct bfin5xx_spi_chip spi_adc_chip_info
= {
469 .enable_dma
= 1, /* use dma transfer with this chip*/
474 #if defined(CONFIG_SND_BLACKFIN_AD1836) \
475 || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
476 static struct bfin5xx_spi_chip ad1836_spi_chip_info
= {
482 #if defined(CONFIG_AD9960) || defined(CONFIG_AD9960_MODULE)
483 static struct bfin5xx_spi_chip ad9960_spi_chip_info
= {
489 #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
490 static struct bfin5xx_spi_chip mmc_spi_chip_info
= {
496 #if defined(CONFIG_PBX)
497 static struct bfin5xx_spi_chip spi_si3xxx_chip_info
= {
498 .ctl_reg
= 0x4, /* send zero */
501 .cs_change_per_word
= 1,
505 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
506 static struct bfin5xx_spi_chip spi_ad7877_chip_info
= {
511 static const struct ad7877_platform_data bfin_ad7877_ts_info
= {
513 .vref_delay_usecs
= 50, /* internal, no capacitor */
516 .pressure_max
= 1000,
518 .stopacq_polarity
= 1,
519 .first_conversion_delay
= 3,
520 .acquisition_time
= 1,
522 .pen_down_acc_interval
= 1,
526 #if defined(CONFIG_SND_SOC_WM8731) || defined(CONFIG_SND_SOC_WM8731_MODULE) \
527 && defined(CONFIG_SND_SOC_WM8731_SPI)
528 static struct bfin5xx_spi_chip spi_wm8731_chip_info
= {
534 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
535 static struct bfin5xx_spi_chip spidev_chip_info
= {
541 static struct spi_board_info bfin_spi_board_info
[] __initdata
= {
542 #if defined(CONFIG_MTD_M25P80) \
543 || defined(CONFIG_MTD_M25P80_MODULE)
545 /* the modalias must be the same as spi device driver name */
546 .modalias
= "m25p80", /* Name of spi_driver for this device */
547 .max_speed_hz
= 25000000, /* max spi clock (SCK) speed in HZ */
548 .bus_num
= 0, /* Framework bus number */
549 .chip_select
= 1, /* Framework chip select. On STAMP537 it is SPISSEL1*/
550 .platform_data
= &bfin_spi_flash_data
,
551 .controller_data
= &spi_flash_chip_info
,
556 #if defined(CONFIG_BFIN_SPI_ADC) \
557 || defined(CONFIG_BFIN_SPI_ADC_MODULE)
559 .modalias
= "bfin_spi_adc", /* Name of spi_driver for this device */
560 .max_speed_hz
= 6250000, /* max spi clock (SCK) speed in HZ */
561 .bus_num
= 0, /* Framework bus number */
562 .chip_select
= 1, /* Framework chip select. */
563 .platform_data
= NULL
, /* No spi_driver specific config */
564 .controller_data
= &spi_adc_chip_info
,
568 #if defined(CONFIG_SND_BLACKFIN_AD1836) \
569 || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
571 .modalias
= "ad1836-spi",
572 .max_speed_hz
= 3125000, /* max spi clock (SCK) speed in HZ */
574 .chip_select
= CONFIG_SND_BLACKFIN_SPI_PFBIT
,
575 .controller_data
= &ad1836_spi_chip_info
,
578 #if defined(CONFIG_AD9960) || defined(CONFIG_AD9960_MODULE)
580 .modalias
= "ad9960-spi",
581 .max_speed_hz
= 10000000, /* max spi clock (SCK) speed in HZ */
584 .controller_data
= &ad9960_spi_chip_info
,
587 #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
589 .modalias
= "mmc_spi",
590 .max_speed_hz
= 20000000, /* max spi clock (SCK) speed in HZ */
593 .controller_data
= &mmc_spi_chip_info
,
597 #if defined(CONFIG_PBX)
599 .modalias
= "fxs-spi",
600 .max_speed_hz
= 12500000, /* max spi clock (SCK) speed in HZ */
602 .chip_select
= 8 - CONFIG_J11_JUMPER
,
603 .controller_data
= &spi_si3xxx_chip_info
,
607 .modalias
= "fxo-spi",
608 .max_speed_hz
= 12500000, /* max spi clock (SCK) speed in HZ */
610 .chip_select
= 8 - CONFIG_J19_JUMPER
,
611 .controller_data
= &spi_si3xxx_chip_info
,
615 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
617 .modalias
= "ad7877",
618 .platform_data
= &bfin_ad7877_ts_info
,
620 .max_speed_hz
= 12500000, /* max spi clock (SCK) speed in HZ */
623 .controller_data
= &spi_ad7877_chip_info
,
626 #if defined(CONFIG_SND_SOC_WM8731) || defined(CONFIG_SND_SOC_WM8731_MODULE) \
627 && defined(CONFIG_SND_SOC_WM8731_SPI)
629 .modalias
= "wm8731",
630 .max_speed_hz
= 3125000, /* max spi clock (SCK) speed in HZ */
633 .controller_data
= &spi_wm8731_chip_info
,
637 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
639 .modalias
= "spidev",
640 .max_speed_hz
= 3125000, /* max spi clock (SCK) speed in HZ */
643 .controller_data
= &spidev_chip_info
,
648 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
649 /* SPI controller data */
650 static struct bfin5xx_spi_master bfin_spi0_info
= {
652 .enable_dma
= 1, /* master has the ability to do dma transfer */
653 .pin_req
= {P_SPI0_SCK
, P_SPI0_MISO
, P_SPI0_MOSI
, 0},
657 static struct resource bfin_spi0_resource
[] = {
659 .start
= SPI0_REGBASE
,
660 .end
= SPI0_REGBASE
+ 0xFF,
661 .flags
= IORESOURCE_MEM
,
666 .flags
= IORESOURCE_DMA
,
671 .flags
= IORESOURCE_IRQ
,
675 static struct platform_device bfin_spi0_device
= {
677 .id
= 0, /* Bus number */
678 .num_resources
= ARRAY_SIZE(bfin_spi0_resource
),
679 .resource
= bfin_spi0_resource
,
681 .platform_data
= &bfin_spi0_info
, /* Passed to driver */
684 #endif /* spi master and devices */
686 #if defined(CONFIG_FB_BFIN_7393) || defined(CONFIG_FB_BFIN_7393_MODULE)
687 static struct platform_device bfin_fb_adv7393_device
= {
688 .name
= "bfin-adv7393",
692 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
693 static struct resource bfin_uart_resources
[] = {
694 #ifdef CONFIG_SERIAL_BFIN_UART0
698 .flags
= IORESOURCE_MEM
,
701 #ifdef CONFIG_SERIAL_BFIN_UART1
705 .flags
= IORESOURCE_MEM
,
710 static struct platform_device bfin_uart_device
= {
713 .num_resources
= ARRAY_SIZE(bfin_uart_resources
),
714 .resource
= bfin_uart_resources
,
718 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
719 #ifdef CONFIG_BFIN_SIR0
720 static struct resource bfin_sir0_resources
[] = {
724 .flags
= IORESOURCE_MEM
,
727 .start
= IRQ_UART0_RX
,
728 .end
= IRQ_UART0_RX
+1,
729 .flags
= IORESOURCE_IRQ
,
732 .start
= CH_UART0_RX
,
733 .end
= CH_UART0_RX
+1,
734 .flags
= IORESOURCE_DMA
,
738 static struct platform_device bfin_sir0_device
= {
741 .num_resources
= ARRAY_SIZE(bfin_sir0_resources
),
742 .resource
= bfin_sir0_resources
,
745 #ifdef CONFIG_BFIN_SIR1
746 static struct resource bfin_sir1_resources
[] = {
750 .flags
= IORESOURCE_MEM
,
753 .start
= IRQ_UART1_RX
,
754 .end
= IRQ_UART1_RX
+1,
755 .flags
= IORESOURCE_IRQ
,
758 .start
= CH_UART1_RX
,
759 .end
= CH_UART1_RX
+1,
760 .flags
= IORESOURCE_DMA
,
764 static struct platform_device bfin_sir1_device
= {
767 .num_resources
= ARRAY_SIZE(bfin_sir1_resources
),
768 .resource
= bfin_sir1_resources
,
773 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
774 static struct resource bfin_twi0_resource
[] = {
776 .start
= TWI0_REGBASE
,
778 .flags
= IORESOURCE_MEM
,
783 .flags
= IORESOURCE_IRQ
,
787 static struct platform_device i2c_bfin_twi_device
= {
788 .name
= "i2c-bfin-twi",
790 .num_resources
= ARRAY_SIZE(bfin_twi0_resource
),
791 .resource
= bfin_twi0_resource
,
795 static struct i2c_board_info __initdata bfin_i2c_board_info
[] = {
796 #if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE)
798 I2C_BOARD_INFO("pcf8574_lcd", 0x22),
799 .type
= "pcf8574_lcd",
802 #if defined(CONFIG_TWI_KEYPAD) || defined(CONFIG_TWI_KEYPAD_MODULE)
804 I2C_BOARD_INFO("pcf8574_keypad", 0x27),
805 .type
= "pcf8574_keypad",
811 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
812 static struct platform_device bfin_sport0_uart_device
= {
813 .name
= "bfin-sport-uart",
817 static struct platform_device bfin_sport1_uart_device
= {
818 .name
= "bfin-sport-uart",
823 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
824 #include <linux/input.h>
825 #include <linux/gpio_keys.h>
827 static struct gpio_keys_button bfin_gpio_keys_table
[] = {
828 {BTN_0
, GPIO_PF14
, 1, "gpio-keys: BTN0"},
831 static struct gpio_keys_platform_data bfin_gpio_keys_data
= {
832 .buttons
= bfin_gpio_keys_table
,
833 .nbuttons
= ARRAY_SIZE(bfin_gpio_keys_table
),
836 static struct platform_device bfin_device_gpiokeys
= {
839 .platform_data
= &bfin_gpio_keys_data
,
844 static struct resource bfin_gpios_resources
= {
846 .end
= MAX_BLACKFIN_GPIOS
- 1,
847 .flags
= IORESOURCE_IRQ
,
850 static struct platform_device bfin_gpios_device
= {
851 .name
= "simple-gpio",
854 .resource
= &bfin_gpios_resources
,
857 static const unsigned int cclk_vlev_datasheet
[] =
859 VRPAIR(VLEV_100
, 400000000),
860 VRPAIR(VLEV_105
, 426000000),
861 VRPAIR(VLEV_110
, 500000000),
862 VRPAIR(VLEV_115
, 533000000),
863 VRPAIR(VLEV_120
, 600000000),
866 static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data
= {
867 .tuple_tab
= cclk_vlev_datasheet
,
868 .tabsize
= ARRAY_SIZE(cclk_vlev_datasheet
),
869 .vr_settling_time
= 25 /* us */,
872 static struct platform_device bfin_dpmc
= {
875 .platform_data
= &bfin_dmpc_vreg_data
,
879 static struct platform_device
*stamp_devices
[] __initdata
= {
883 #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
887 #if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
888 &bfin_pcmcia_cf_device
,
891 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
895 #if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
899 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
903 #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
904 &bfin_isp1760_device
,
907 #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
911 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
915 #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
919 #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
924 #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
925 &net2272_bfin_device
,
928 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
932 #if defined(CONFIG_FB_BFIN_7393) || defined(CONFIG_FB_BFIN_7393_MODULE)
933 &bfin_fb_adv7393_device
,
936 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
940 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
941 #ifdef CONFIG_BFIN_SIR0
944 #ifdef CONFIG_BFIN_SIR1
949 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
950 &i2c_bfin_twi_device
,
953 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
954 &bfin_sport0_uart_device
,
955 &bfin_sport1_uart_device
,
958 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
959 &bfin_device_gpiokeys
,
962 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
969 static int __init
cm_init(void)
971 printk(KERN_INFO
"%s(): registering device resources\n", __func__
);
972 i2c_register_board_info(0, bfin_i2c_board_info
,
973 ARRAY_SIZE(bfin_i2c_board_info
));
974 platform_add_devices(stamp_devices
, ARRAY_SIZE(stamp_devices
));
975 spi_register_board_info(bfin_spi_board_info
, ARRAY_SIZE(bfin_spi_board_info
));
979 arch_initcall(cm_init
);
981 void native_machine_restart(char *cmd
)
983 /* workaround reboot hang when booting from SPI */
984 if ((bfin_read_SYSCR() & 0x7) == 0x3)
985 bfin_reset_boot_spi_cs(P_DEFAULT_BOOT_SPI_CS
);
988 void bfin_get_ether_addr(char *addr
)
990 random_ether_addr(addr
);
991 printk(KERN_WARNING
"%s:%s: Setting Ethernet MAC to a random one\n", __FILE__
, __func__
);
993 EXPORT_SYMBOL(bfin_get_ether_addr
);