2 * File: arch/blackfin/mach-bf548/boards/ezkit.c
3 * Based on: arch/blackfin/mach-bf537/boards/ezkit.c
4 * Author: Aidan Williams <aidan@nicta.com.au>
10 * Copyright 2005 National ICT Australia (NICTA)
11 * Copyright 2004-2007 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/irq.h>
39 #include <linux/i2c.h>
40 #include <linux/interrupt.h>
41 #include <linux/usb/musb.h>
42 #include <asm/bfin5xx_spi.h>
47 #include <asm/portmux.h>
48 #include <asm/bfin_sdh.h>
49 #include <mach/bf54x_keys.h>
50 #include <linux/input.h>
51 #include <linux/spi/ad7877.h>
54 * Name the Board for the /proc/cpuinfo
56 const char bfin_board_name[] = "ADI BF548-EZKIT";
59 * Driver needs to know address, irq and flag pin.
62 #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
63 #include <linux/usb/isp1760.h>
64 static struct resource bfin_isp1760_resources[] = {
67 .end = 0x2C0C0000 + 0xfffff,
68 .flags = IORESOURCE_MEM,
73 .flags = IORESOURCE_IRQ,
77 static struct isp1760_platform_data isp1760_priv = {
83 .dack_polarity_high = 0,
84 .dreq_polarity_high = 0,
87 static struct platform_device bfin_isp1760_device = {
88 .name = "isp1760-hcd",
91 .platform_data = &isp1760_priv,
93 .num_resources = ARRAY_SIZE(bfin_isp1760_resources),
94 .resource = bfin_isp1760_resources,
98 #if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE)
100 #include <mach/bf54x-lq043.h>
102 static struct bfin_bf54xfb_mach_info bf54x_lq043_data = {
105 .xres = {480, 480, 480},
106 .yres = {272, 272, 272},
111 static struct resource bf54x_lq043_resources[] = {
113 .start = IRQ_EPPI0_ERR,
114 .end = IRQ_EPPI0_ERR,
115 .flags = IORESOURCE_IRQ,
119 static struct platform_device bf54x_lq043_device = {
120 .name = "bf54x-lq043",
122 .num_resources = ARRAY_SIZE(bf54x_lq043_resources),
123 .resource = bf54x_lq043_resources,
125 .platform_data = &bf54x_lq043_data,
130 #if defined(CONFIG_KEYBOARD_BFIN) || defined(CONFIG_KEYBOARD_BFIN_MODULE)
131 static const unsigned int bf548_keymap[] = {
132 KEYVAL(0, 0, KEY_ENTER),
133 KEYVAL(0, 1, KEY_HELP),
135 KEYVAL(0, 3, KEY_BACKSPACE),
136 KEYVAL(1, 0, KEY_TAB),
140 KEYVAL(2, 0, KEY_DOWN),
144 KEYVAL(3, 0, KEY_UP),
150 static struct bfin_kpad_platform_data bf54x_kpad_data = {
153 .keymap = bf548_keymap,
154 .keymapsize = ARRAY_SIZE(bf548_keymap),
156 .debounce_time = 5000, /* ns (5ms) */
157 .coldrive_time = 1000, /* ns (1ms) */
158 .keyup_test_interval = 50, /* ms (50ms) */
161 static struct resource bf54x_kpad_resources[] = {
165 .flags = IORESOURCE_IRQ,
169 static struct platform_device bf54x_kpad_device = {
170 .name = "bf54x-keys",
172 .num_resources = ARRAY_SIZE(bf54x_kpad_resources),
173 .resource = bf54x_kpad_resources,
175 .platform_data = &bf54x_kpad_data,
180 #if defined(CONFIG_JOYSTICK_BFIN_ROTARY) || defined(CONFIG_JOYSTICK_BFIN_ROTARY_MODULE)
181 #include <asm/bfin_rotary.h>
183 static struct bfin_rotary_platform_data bfin_rotary_data = {
184 /*.rotary_up_key = KEY_UP,*/
185 /*.rotary_down_key = KEY_DOWN,*/
186 .rotary_rel_code = REL_WHEEL,
187 .rotary_button_key = KEY_ENTER,
188 .debounce = 10, /* 0..17 */
189 .mode = ROT_QUAD_ENC | ROT_DEBE,
192 static struct resource bfin_rotary_resources[] = {
196 .flags = IORESOURCE_IRQ,
200 static struct platform_device bfin_rotary_device = {
201 .name = "bfin-rotary",
203 .num_resources = ARRAY_SIZE(bfin_rotary_resources),
204 .resource = bfin_rotary_resources,
206 .platform_data = &bfin_rotary_data,
211 #if defined(CONFIG_INPUT_ADXL34X) || defined(CONFIG_INPUT_ADXL34X_MODULE)
212 #include <linux/input.h>
213 #include <linux/spi/adxl34x.h>
214 static const struct adxl34x_platform_data adxl34x_info = {
218 .tap_threshold = 0x31,
219 .tap_duration = 0x10,
222 .tap_axis_control = ADXL_TAP_X_EN | ADXL_TAP_Y_EN | ADXL_TAP_Z_EN,
223 .act_axis_control = 0xFF,
224 .activity_threshold = 5,
225 .inactivity_threshold = 3,
226 .inactivity_time = 4,
227 .free_fall_threshold = 0x7,
228 .free_fall_time = 0x20,
230 .data_range = ADXL_FULL_RES,
233 .ev_code_x = ABS_X, /* EV_REL */
234 .ev_code_y = ABS_Y, /* EV_REL */
235 .ev_code_z = ABS_Z, /* EV_REL */
237 .ev_code_tap_x = BTN_TOUCH, /* EV_KEY */
238 .ev_code_tap_y = BTN_TOUCH, /* EV_KEY */
239 .ev_code_tap_z = BTN_TOUCH, /* EV_KEY */
241 /* .ev_code_ff = KEY_F,*/ /* EV_KEY */
242 /* .ev_code_act_inactivity = KEY_A,*/ /* EV_KEY */
243 .power_mode = ADXL_AUTO_SLEEP | ADXL_LINK,
244 .fifo_mode = ADXL_FIFO_STREAM,
248 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
249 static struct platform_device rtc_device = {
255 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
256 static struct resource bfin_uart_resources[] = {
257 #ifdef CONFIG_SERIAL_BFIN_UART0
261 .flags = IORESOURCE_MEM,
264 #ifdef CONFIG_SERIAL_BFIN_UART1
268 .flags = IORESOURCE_MEM,
271 #ifdef CONFIG_SERIAL_BFIN_UART2
275 .flags = IORESOURCE_MEM,
278 #ifdef CONFIG_SERIAL_BFIN_UART3
282 .flags = IORESOURCE_MEM,
287 static struct platform_device bfin_uart_device = {
290 .num_resources = ARRAY_SIZE(bfin_uart_resources),
291 .resource = bfin_uart_resources,
295 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
296 #ifdef CONFIG_BFIN_SIR0
297 static struct resource bfin_sir0_resources[] = {
301 .flags = IORESOURCE_MEM,
304 .start = IRQ_UART0_RX,
305 .end = IRQ_UART0_RX+1,
306 .flags = IORESOURCE_IRQ,
309 .start = CH_UART0_RX,
310 .end = CH_UART0_RX+1,
311 .flags = IORESOURCE_DMA,
314 static struct platform_device bfin_sir0_device = {
317 .num_resources = ARRAY_SIZE(bfin_sir0_resources),
318 .resource = bfin_sir0_resources,
321 #ifdef CONFIG_BFIN_SIR1
322 static struct resource bfin_sir1_resources[] = {
326 .flags = IORESOURCE_MEM,
329 .start = IRQ_UART1_RX,
330 .end = IRQ_UART1_RX+1,
331 .flags = IORESOURCE_IRQ,
334 .start = CH_UART1_RX,
335 .end = CH_UART1_RX+1,
336 .flags = IORESOURCE_DMA,
339 static struct platform_device bfin_sir1_device = {
342 .num_resources = ARRAY_SIZE(bfin_sir1_resources),
343 .resource = bfin_sir1_resources,
346 #ifdef CONFIG_BFIN_SIR2
347 static struct resource bfin_sir2_resources[] = {
351 .flags = IORESOURCE_MEM,
354 .start = IRQ_UART2_RX,
355 .end = IRQ_UART2_RX+1,
356 .flags = IORESOURCE_IRQ,
359 .start = CH_UART2_RX,
360 .end = CH_UART2_RX+1,
361 .flags = IORESOURCE_DMA,
364 static struct platform_device bfin_sir2_device = {
367 .num_resources = ARRAY_SIZE(bfin_sir2_resources),
368 .resource = bfin_sir2_resources,
371 #ifdef CONFIG_BFIN_SIR3
372 static struct resource bfin_sir3_resources[] = {
376 .flags = IORESOURCE_MEM,
379 .start = IRQ_UART3_RX,
380 .end = IRQ_UART3_RX+1,
381 .flags = IORESOURCE_IRQ,
384 .start = CH_UART3_RX,
385 .end = CH_UART3_RX+1,
386 .flags = IORESOURCE_DMA,
389 static struct platform_device bfin_sir3_device = {
392 .num_resources = ARRAY_SIZE(bfin_sir3_resources),
393 .resource = bfin_sir3_resources,
398 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
399 static struct resource smsc911x_resources[] = {
401 .name = "smsc911x-memory",
403 .end = 0x24000000 + 0xFF,
404 .flags = IORESOURCE_MEM,
409 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
412 static struct platform_device smsc911x_device = {
415 .num_resources = ARRAY_SIZE(smsc911x_resources),
416 .resource = smsc911x_resources,
420 #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
421 static struct resource musb_resources[] = {
425 .flags = IORESOURCE_MEM,
427 [1] = { /* general IRQ */
428 .start = IRQ_USB_INT0,
430 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
432 [2] = { /* DMA IRQ */
433 .start = IRQ_USB_DMA,
435 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
439 static struct musb_hdrc_config musb_config = {
446 .gpio_vrsel = GPIO_PE7,
449 static struct musb_hdrc_platform_data musb_plat = {
450 #if defined(CONFIG_USB_MUSB_OTG)
452 #elif defined(CONFIG_USB_MUSB_HDRC_HCD)
454 #elif defined(CONFIG_USB_GADGET_MUSB_HDRC)
455 .mode = MUSB_PERIPHERAL,
457 .config = &musb_config,
460 static u64 musb_dmamask = ~(u32)0;
462 static struct platform_device musb_device = {
466 .dma_mask = &musb_dmamask,
467 .coherent_dma_mask = 0xffffffff,
468 .platform_data = &musb_plat,
470 .num_resources = ARRAY_SIZE(musb_resources),
471 .resource = musb_resources,
475 #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
476 static struct resource bfin_atapi_resources[] = {
480 .flags = IORESOURCE_MEM,
483 .start = IRQ_ATAPI_ERR,
484 .end = IRQ_ATAPI_ERR,
485 .flags = IORESOURCE_IRQ,
489 static struct platform_device bfin_atapi_device = {
490 .name = "pata-bf54x",
492 .num_resources = ARRAY_SIZE(bfin_atapi_resources),
493 .resource = bfin_atapi_resources,
497 #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
498 static struct mtd_partition partition_info[] = {
500 .name = "linux kernel(nand)",
502 .size = 4 * 1024 * 1024,
505 .name = "file system(nand)",
506 .offset = MTDPART_OFS_APPEND,
507 .size = MTDPART_SIZ_FULL,
511 static struct bf5xx_nand_platform bf5xx_nand_platform = {
512 .page_size = NFC_PG_SIZE_256,
513 .data_width = NFC_NWIDTH_8,
514 .partitions = partition_info,
515 .nr_partitions = ARRAY_SIZE(partition_info),
520 static struct resource bf5xx_nand_resources[] = {
524 .flags = IORESOURCE_MEM,
529 .flags = IORESOURCE_IRQ,
533 static struct platform_device bf5xx_nand_device = {
534 .name = "bf5xx-nand",
536 .num_resources = ARRAY_SIZE(bf5xx_nand_resources),
537 .resource = bf5xx_nand_resources,
539 .platform_data = &bf5xx_nand_platform,
544 #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
546 static struct bfin_sd_host bfin_sdh_data = {
548 .irq_int0 = IRQ_SDH_MASK0,
549 .pin_req = {P_SD_D0, P_SD_D1, P_SD_D2, P_SD_D3, P_SD_CLK, P_SD_CMD, 0},
552 static struct platform_device bf54x_sdh_device = {
556 .platform_data = &bfin_sdh_data,
561 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
562 static struct mtd_partition ezkit_partitions[] = {
564 .name = "bootloader(nor)",
568 .name = "linux kernel(nor)",
570 .offset = MTDPART_OFS_APPEND,
572 .name = "file system(nor)",
573 .size = MTDPART_SIZ_FULL,
574 .offset = MTDPART_OFS_APPEND,
578 static struct physmap_flash_data ezkit_flash_data = {
580 .parts = ezkit_partitions,
581 .nr_parts = ARRAY_SIZE(ezkit_partitions),
584 static struct resource ezkit_flash_resource = {
587 .flags = IORESOURCE_MEM,
590 static struct platform_device ezkit_flash_device = {
591 .name = "physmap-flash",
594 .platform_data = &ezkit_flash_data,
597 .resource = &ezkit_flash_resource,
601 #if defined(CONFIG_MTD_M25P80) \
602 || defined(CONFIG_MTD_M25P80_MODULE)
603 /* SPI flash chip (m25p16) */
604 static struct mtd_partition bfin_spi_flash_partitions[] = {
606 .name = "bootloader(spi)",
609 .mask_flags = MTD_CAP_ROM
611 .name = "linux kernel(spi)",
612 .size = MTDPART_SIZ_FULL,
613 .offset = MTDPART_OFS_APPEND,
617 static struct flash_platform_data bfin_spi_flash_data = {
619 .parts = bfin_spi_flash_partitions,
620 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
624 static struct bfin5xx_spi_chip spi_flash_chip_info = {
625 .enable_dma = 0, /* use dma transfer with this chip*/
627 .cs_change_per_word = 0,
631 #if defined(CONFIG_SND_BLACKFIN_AD1836) \
632 || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
633 static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
639 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
640 static struct bfin5xx_spi_chip spi_ad7877_chip_info = {
641 .cs_change_per_word = 0,
646 static const struct ad7877_platform_data bfin_ad7877_ts_info = {
648 .vref_delay_usecs = 50, /* internal, no capacitor */
651 .pressure_max = 1000,
653 .stopacq_polarity = 1,
654 .first_conversion_delay = 3,
655 .acquisition_time = 1,
657 .pen_down_acc_interval = 1,
661 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
662 static struct bfin5xx_spi_chip spidev_chip_info = {
668 #if defined(CONFIG_INPUT_ADXL34X_SPI) || defined(CONFIG_INPUT_ADXL34X_SPI_MODULE)
669 static struct bfin5xx_spi_chip spi_adxl34x_chip_info = {
670 .enable_dma = 0, /* use dma transfer with this chip*/
672 .cs_change_per_word = 0,
676 static struct spi_board_info bfin_spi_board_info[] __initdata = {
677 #if defined(CONFIG_MTD_M25P80) \
678 || defined(CONFIG_MTD_M25P80_MODULE)
680 /* the modalias must be the same as spi device driver name */
681 .modalias = "m25p80", /* Name of spi_driver for this device */
682 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
683 .bus_num = 0, /* Framework bus number */
684 .chip_select = 1, /* SPI_SSEL1*/
685 .platform_data = &bfin_spi_flash_data,
686 .controller_data = &spi_flash_chip_info,
690 #if defined(CONFIG_SND_BLACKFIN_AD1836) \
691 || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
693 .modalias = "ad1836-spi",
694 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
696 .chip_select = CONFIG_SND_BLACKFIN_SPI_PFBIT,
697 .controller_data = &ad1836_spi_chip_info,
700 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
702 .modalias = "ad7877",
703 .platform_data = &bfin_ad7877_ts_info,
704 .irq = IRQ_PB4, /* old boards (<=Rev 1.3) use IRQ_PJ11 */
705 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
708 .controller_data = &spi_ad7877_chip_info,
711 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
713 .modalias = "spidev",
714 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
717 .controller_data = &spidev_chip_info,
720 #if defined(CONFIG_INPUT_ADXL34X_SPI) || defined(CONFIG_INPUT_ADXL34X_SPI_MODULE)
722 .modalias = "adxl34x",
723 .platform_data = &adxl34x_info,
725 .max_speed_hz = 5000000, /* max spi clock (SCK) speed in HZ */
728 .controller_data = &spi_adxl34x_chip_info,
733 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
735 static struct resource bfin_spi0_resource[] = {
737 .start = SPI0_REGBASE,
738 .end = SPI0_REGBASE + 0xFF,
739 .flags = IORESOURCE_MEM,
744 .flags = IORESOURCE_IRQ,
749 static struct resource bfin_spi1_resource[] = {
751 .start = SPI1_REGBASE,
752 .end = SPI1_REGBASE + 0xFF,
753 .flags = IORESOURCE_MEM,
758 .flags = IORESOURCE_IRQ,
762 /* SPI controller data */
763 static struct bfin5xx_spi_master bf54x_spi_master_info0 = {
765 .enable_dma = 1, /* master has the ability to do dma transfer */
766 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
769 static struct platform_device bf54x_spi_master0 = {
771 .id = 0, /* Bus number */
772 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
773 .resource = bfin_spi0_resource,
775 .platform_data = &bf54x_spi_master_info0, /* Passed to driver */
779 static struct bfin5xx_spi_master bf54x_spi_master_info1 = {
781 .enable_dma = 1, /* master has the ability to do dma transfer */
782 .pin_req = {P_SPI1_SCK, P_SPI1_MISO, P_SPI1_MOSI, 0},
785 static struct platform_device bf54x_spi_master1 = {
787 .id = 1, /* Bus number */
788 .num_resources = ARRAY_SIZE(bfin_spi1_resource),
789 .resource = bfin_spi1_resource,
791 .platform_data = &bf54x_spi_master_info1, /* Passed to driver */
794 #endif /* spi master and devices */
796 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
797 static struct resource bfin_twi0_resource[] = {
799 .start = TWI0_REGBASE,
800 .end = TWI0_REGBASE + 0xFF,
801 .flags = IORESOURCE_MEM,
806 .flags = IORESOURCE_IRQ,
810 static struct platform_device i2c_bfin_twi0_device = {
811 .name = "i2c-bfin-twi",
813 .num_resources = ARRAY_SIZE(bfin_twi0_resource),
814 .resource = bfin_twi0_resource,
817 #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */
818 static struct resource bfin_twi1_resource[] = {
820 .start = TWI1_REGBASE,
821 .end = TWI1_REGBASE + 0xFF,
822 .flags = IORESOURCE_MEM,
827 .flags = IORESOURCE_IRQ,
831 static struct platform_device i2c_bfin_twi1_device = {
832 .name = "i2c-bfin-twi",
834 .num_resources = ARRAY_SIZE(bfin_twi1_resource),
835 .resource = bfin_twi1_resource,
840 static struct i2c_board_info __initdata bfin_i2c_board_info0[] = {
843 #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */
844 static struct i2c_board_info __initdata bfin_i2c_board_info1[] = {
845 #if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_TWI_LCD_MODULE)
847 I2C_BOARD_INFO("pcf8574_lcd", 0x22),
850 #if defined(CONFIG_TWI_KEYPAD) || defined(CONFIG_TWI_KEYPAD_MODULE)
852 I2C_BOARD_INFO("pcf8574_keypad", 0x27),
856 #if defined(CONFIG_INPUT_ADXL34X_I2C) || defined(CONFIG_INPUT_ADXL34X_I2C_MODULE)
858 I2C_BOARD_INFO("adxl34x", 0x53),
860 .platform_data = (void *)&adxl34x_info,
866 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
867 #include <linux/gpio_keys.h>
869 static struct gpio_keys_button bfin_gpio_keys_table[] = {
870 {BTN_0, GPIO_PB8, 1, "gpio-keys: BTN0"},
871 {BTN_1, GPIO_PB9, 1, "gpio-keys: BTN1"},
872 {BTN_2, GPIO_PB10, 1, "gpio-keys: BTN2"},
873 {BTN_3, GPIO_PB11, 1, "gpio-keys: BTN3"},
876 static struct gpio_keys_platform_data bfin_gpio_keys_data = {
877 .buttons = bfin_gpio_keys_table,
878 .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table),
881 static struct platform_device bfin_device_gpiokeys = {
884 .platform_data = &bfin_gpio_keys_data,
889 static struct resource bfin_gpios_resources = {
891 .end = MAX_BLACKFIN_GPIOS - 1,
892 .flags = IORESOURCE_IRQ,
895 static struct platform_device bfin_gpios_device = {
896 .name = "simple-gpio",
899 .resource = &bfin_gpios_resources,
902 static const unsigned int cclk_vlev_datasheet[] =
905 * Internal VLEV BF54XSBBC1533
906 ****temporarily using these values until data sheet is updated
908 VRPAIR(VLEV_085, 150000000),
909 VRPAIR(VLEV_090, 250000000),
910 VRPAIR(VLEV_110, 276000000),
911 VRPAIR(VLEV_115, 301000000),
912 VRPAIR(VLEV_120, 525000000),
913 VRPAIR(VLEV_125, 550000000),
914 VRPAIR(VLEV_130, 600000000),
917 static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = {
918 .tuple_tab = cclk_vlev_datasheet,
919 .tabsize = ARRAY_SIZE(cclk_vlev_datasheet),
920 .vr_settling_time = 25 /* us */,
923 static struct platform_device bfin_dpmc = {
926 .platform_data = &bfin_dmpc_vreg_data,
930 static struct platform_device *ezkit_devices[] __initdata = {
934 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
938 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
942 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
943 #ifdef CONFIG_BFIN_SIR0
946 #ifdef CONFIG_BFIN_SIR1
949 #ifdef CONFIG_BFIN_SIR2
952 #ifdef CONFIG_BFIN_SIR3
957 #if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE)
961 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
965 #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
969 #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
970 &bfin_isp1760_device,
973 #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
977 #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
981 #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
985 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
990 #if defined(CONFIG_KEYBOARD_BFIN) || defined(CONFIG_KEYBOARD_BFIN_MODULE)
994 #if defined(CONFIG_JOYSTICK_BFIN_ROTARY) || defined(CONFIG_JOYSTICK_BFIN_ROTARY_MODULE)
998 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
999 &i2c_bfin_twi0_device,
1000 #if !defined(CONFIG_BF542)
1001 &i2c_bfin_twi1_device,
1005 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
1006 &bfin_device_gpiokeys,
1011 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
1012 &ezkit_flash_device,
1016 static int __init ezkit_init(void)
1018 printk(KERN_INFO "%s(): registering device resources\n", __func__);
1020 i2c_register_board_info(0, bfin_i2c_board_info0,
1021 ARRAY_SIZE(bfin_i2c_board_info0));
1022 #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */
1023 i2c_register_board_info(1, bfin_i2c_board_info1,
1024 ARRAY_SIZE(bfin_i2c_board_info1));
1027 platform_add_devices(ezkit_devices, ARRAY_SIZE(ezkit_devices));
1029 spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
1034 arch_initcall(ezkit_init);