2 * Copyright 2004-2009 Analog Devices Inc.
3 * 2005 National ICT Australia (NICTA)
4 * Aidan Williams <aidan@nicta.com.au>
6 * Licensed under the GPL-2 or later.
9 #include <linux/device.h>
10 #include <linux/platform_device.h>
11 #include <linux/mtd/mtd.h>
12 #include <linux/mtd/partitions.h>
13 #include <linux/mtd/physmap.h>
14 #include <linux/spi/spi.h>
15 #include <linux/spi/flash.h>
16 #include <linux/irq.h>
17 #include <linux/i2c.h>
18 #include <linux/interrupt.h>
19 #include <linux/usb/musb.h>
20 #include <asm/bfin5xx_spi.h>
25 #include <asm/portmux.h>
26 #include <asm/bfin_sdh.h>
27 #include <mach/bf54x_keys.h>
28 #include <linux/input.h>
29 #include <linux/spi/ad7877.h>
32 * Name the Board for the /proc/cpuinfo
34 const char bfin_board_name
[] = "ADI BF548-EZKIT";
37 * Driver needs to know address, irq and flag pin.
40 #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
41 #include <linux/usb/isp1760.h>
42 static struct resource bfin_isp1760_resources
[] = {
45 .end
= 0x2C0C0000 + 0xfffff,
46 .flags
= IORESOURCE_MEM
,
51 .flags
= IORESOURCE_IRQ
,
55 static struct isp1760_platform_data isp1760_priv
= {
60 .dack_polarity_high
= 0,
61 .dreq_polarity_high
= 0,
64 static struct platform_device bfin_isp1760_device
= {
68 .platform_data
= &isp1760_priv
,
70 .num_resources
= ARRAY_SIZE(bfin_isp1760_resources
),
71 .resource
= bfin_isp1760_resources
,
75 #if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE)
77 #include <mach/bf54x-lq043.h>
79 static struct bfin_bf54xfb_mach_info bf54x_lq043_data
= {
82 .xres
= {480, 480, 480},
83 .yres
= {272, 272, 272},
88 static struct resource bf54x_lq043_resources
[] = {
90 .start
= IRQ_EPPI0_ERR
,
92 .flags
= IORESOURCE_IRQ
,
96 static struct platform_device bf54x_lq043_device
= {
97 .name
= "bf54x-lq043",
99 .num_resources
= ARRAY_SIZE(bf54x_lq043_resources
),
100 .resource
= bf54x_lq043_resources
,
102 .platform_data
= &bf54x_lq043_data
,
107 #if defined(CONFIG_KEYBOARD_BFIN) || defined(CONFIG_KEYBOARD_BFIN_MODULE)
108 static const unsigned int bf548_keymap
[] = {
109 KEYVAL(0, 0, KEY_ENTER
),
110 KEYVAL(0, 1, KEY_HELP
),
112 KEYVAL(0, 3, KEY_BACKSPACE
),
113 KEYVAL(1, 0, KEY_TAB
),
117 KEYVAL(2, 0, KEY_DOWN
),
121 KEYVAL(3, 0, KEY_UP
),
127 static struct bfin_kpad_platform_data bf54x_kpad_data
= {
130 .keymap
= bf548_keymap
,
131 .keymapsize
= ARRAY_SIZE(bf548_keymap
),
133 .debounce_time
= 5000, /* ns (5ms) */
134 .coldrive_time
= 1000, /* ns (1ms) */
135 .keyup_test_interval
= 50, /* ms (50ms) */
138 static struct resource bf54x_kpad_resources
[] = {
142 .flags
= IORESOURCE_IRQ
,
146 static struct platform_device bf54x_kpad_device
= {
147 .name
= "bf54x-keys",
149 .num_resources
= ARRAY_SIZE(bf54x_kpad_resources
),
150 .resource
= bf54x_kpad_resources
,
152 .platform_data
= &bf54x_kpad_data
,
157 #if defined(CONFIG_INPUT_BFIN_ROTARY) || defined(CONFIG_INPUT_BFIN_ROTARY_MODULE)
158 #include <asm/bfin_rotary.h>
160 static struct bfin_rotary_platform_data bfin_rotary_data
= {
161 /*.rotary_up_key = KEY_UP,*/
162 /*.rotary_down_key = KEY_DOWN,*/
163 .rotary_rel_code
= REL_WHEEL
,
164 .rotary_button_key
= KEY_ENTER
,
165 .debounce
= 10, /* 0..17 */
166 .mode
= ROT_QUAD_ENC
| ROT_DEBE
,
169 static struct resource bfin_rotary_resources
[] = {
173 .flags
= IORESOURCE_IRQ
,
177 static struct platform_device bfin_rotary_device
= {
178 .name
= "bfin-rotary",
180 .num_resources
= ARRAY_SIZE(bfin_rotary_resources
),
181 .resource
= bfin_rotary_resources
,
183 .platform_data
= &bfin_rotary_data
,
188 #if defined(CONFIG_INPUT_ADXL34X) || defined(CONFIG_INPUT_ADXL34X_MODULE)
189 #include <linux/input/adxl34x.h>
190 static const struct adxl34x_platform_data adxl34x_info
= {
194 .tap_threshold
= 0x31,
195 .tap_duration
= 0x10,
198 .tap_axis_control
= ADXL_TAP_X_EN
| ADXL_TAP_Y_EN
| ADXL_TAP_Z_EN
,
199 .act_axis_control
= 0xFF,
200 .activity_threshold
= 5,
201 .inactivity_threshold
= 3,
202 .inactivity_time
= 4,
203 .free_fall_threshold
= 0x7,
204 .free_fall_time
= 0x20,
206 .data_range
= ADXL_FULL_RES
,
209 .ev_code_x
= ABS_X
, /* EV_REL */
210 .ev_code_y
= ABS_Y
, /* EV_REL */
211 .ev_code_z
= ABS_Z
, /* EV_REL */
213 .ev_code_tap
= {BTN_TOUCH
, BTN_TOUCH
, BTN_TOUCH
}, /* EV_KEY x,y,z */
215 /* .ev_code_ff = KEY_F,*/ /* EV_KEY */
216 /* .ev_code_act_inactivity = KEY_A,*/ /* EV_KEY */
217 .power_mode
= ADXL_AUTO_SLEEP
| ADXL_LINK
,
218 .fifo_mode
= ADXL_FIFO_STREAM
,
219 .orientation_enable
= ADXL_EN_ORIENTATION_3D
,
220 .deadzone_angle
= ADXL_DEADZONE_ANGLE_10p8
,
221 .divisor_length
= ADXL_LP_FILTER_DIVISOR_16
,
222 /* EV_KEY {+Z, +Y, +X, -X, -Y, -Z} */
223 .ev_codes_orient_3d
= {BTN_Z
, BTN_Y
, BTN_X
, BTN_A
, BTN_B
, BTN_C
},
227 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
228 static struct platform_device rtc_device
= {
234 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
235 #ifdef CONFIG_SERIAL_BFIN_UART0
236 static struct resource bfin_uart0_resources
[] = {
240 .flags
= IORESOURCE_MEM
,
243 .start
= IRQ_UART0_RX
,
244 .end
= IRQ_UART0_RX
+1,
245 .flags
= IORESOURCE_IRQ
,
248 .start
= IRQ_UART0_ERROR
,
249 .end
= IRQ_UART0_ERROR
,
250 .flags
= IORESOURCE_IRQ
,
253 .start
= CH_UART0_TX
,
255 .flags
= IORESOURCE_DMA
,
258 .start
= CH_UART0_RX
,
260 .flags
= IORESOURCE_DMA
,
264 unsigned short bfin_uart0_peripherals
[] = {
265 P_UART0_TX
, P_UART0_RX
, 0
268 static struct platform_device bfin_uart0_device
= {
271 .num_resources
= ARRAY_SIZE(bfin_uart0_resources
),
272 .resource
= bfin_uart0_resources
,
274 .platform_data
= &bfin_uart0_peripherals
, /* Passed to driver */
278 #ifdef CONFIG_SERIAL_BFIN_UART1
279 static struct resource bfin_uart1_resources
[] = {
283 .flags
= IORESOURCE_MEM
,
286 .start
= IRQ_UART1_RX
,
287 .end
= IRQ_UART1_RX
+1,
288 .flags
= IORESOURCE_IRQ
,
291 .start
= IRQ_UART1_ERROR
,
292 .end
= IRQ_UART1_ERROR
,
293 .flags
= IORESOURCE_IRQ
,
296 .start
= CH_UART1_TX
,
298 .flags
= IORESOURCE_DMA
,
301 .start
= CH_UART1_RX
,
303 .flags
= IORESOURCE_DMA
,
305 #ifdef CONFIG_BFIN_UART1_CTSRTS
306 { /* CTS pin -- 0 means not supported */
309 .flags
= IORESOURCE_IO
,
311 { /* RTS pin -- 0 means not supported */
314 .flags
= IORESOURCE_IO
,
319 unsigned short bfin_uart1_peripherals
[] = {
320 P_UART1_TX
, P_UART1_RX
,
321 #ifdef CONFIG_BFIN_UART1_CTSRTS
322 P_UART1_RTS
, P_UART1_CTS
,
327 static struct platform_device bfin_uart1_device
= {
330 .num_resources
= ARRAY_SIZE(bfin_uart1_resources
),
331 .resource
= bfin_uart1_resources
,
333 .platform_data
= &bfin_uart1_peripherals
, /* Passed to driver */
337 #ifdef CONFIG_SERIAL_BFIN_UART2
338 static struct resource bfin_uart2_resources
[] = {
342 .flags
= IORESOURCE_MEM
,
345 .start
= IRQ_UART2_RX
,
346 .end
= IRQ_UART2_RX
+1,
347 .flags
= IORESOURCE_IRQ
,
350 .start
= IRQ_UART2_ERROR
,
351 .end
= IRQ_UART2_ERROR
,
352 .flags
= IORESOURCE_IRQ
,
355 .start
= CH_UART2_TX
,
357 .flags
= IORESOURCE_DMA
,
360 .start
= CH_UART2_RX
,
362 .flags
= IORESOURCE_DMA
,
366 unsigned short bfin_uart2_peripherals
[] = {
367 P_UART2_TX
, P_UART2_RX
, 0
370 static struct platform_device bfin_uart2_device
= {
373 .num_resources
= ARRAY_SIZE(bfin_uart2_resources
),
374 .resource
= bfin_uart2_resources
,
376 .platform_data
= &bfin_uart2_peripherals
, /* Passed to driver */
380 #ifdef CONFIG_SERIAL_BFIN_UART3
381 static struct resource bfin_uart3_resources
[] = {
385 .flags
= IORESOURCE_MEM
,
388 .start
= IRQ_UART3_RX
,
389 .end
= IRQ_UART3_RX
+1,
390 .flags
= IORESOURCE_IRQ
,
393 .start
= IRQ_UART3_ERROR
,
394 .end
= IRQ_UART3_ERROR
,
395 .flags
= IORESOURCE_IRQ
,
398 .start
= CH_UART3_TX
,
400 .flags
= IORESOURCE_DMA
,
403 .start
= CH_UART3_RX
,
405 .flags
= IORESOURCE_DMA
,
407 #ifdef CONFIG_BFIN_UART3_CTSRTS
408 { /* CTS pin -- 0 means not supported */
411 .flags
= IORESOURCE_IO
,
413 { /* RTS pin -- 0 means not supported */
416 .flags
= IORESOURCE_IO
,
421 unsigned short bfin_uart3_peripherals
[] = {
422 P_UART3_TX
, P_UART3_RX
,
423 #ifdef CONFIG_BFIN_UART3_CTSRTS
424 P_UART3_RTS
, P_UART3_CTS
,
429 static struct platform_device bfin_uart3_device
= {
432 .num_resources
= ARRAY_SIZE(bfin_uart3_resources
),
433 .resource
= bfin_uart3_resources
,
435 .platform_data
= &bfin_uart3_peripherals
, /* Passed to driver */
441 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
442 #ifdef CONFIG_BFIN_SIR0
443 static struct resource bfin_sir0_resources
[] = {
447 .flags
= IORESOURCE_MEM
,
450 .start
= IRQ_UART0_RX
,
451 .end
= IRQ_UART0_RX
+1,
452 .flags
= IORESOURCE_IRQ
,
455 .start
= CH_UART0_RX
,
456 .end
= CH_UART0_RX
+1,
457 .flags
= IORESOURCE_DMA
,
460 static struct platform_device bfin_sir0_device
= {
463 .num_resources
= ARRAY_SIZE(bfin_sir0_resources
),
464 .resource
= bfin_sir0_resources
,
467 #ifdef CONFIG_BFIN_SIR1
468 static struct resource bfin_sir1_resources
[] = {
472 .flags
= IORESOURCE_MEM
,
475 .start
= IRQ_UART1_RX
,
476 .end
= IRQ_UART1_RX
+1,
477 .flags
= IORESOURCE_IRQ
,
480 .start
= CH_UART1_RX
,
481 .end
= CH_UART1_RX
+1,
482 .flags
= IORESOURCE_DMA
,
485 static struct platform_device bfin_sir1_device
= {
488 .num_resources
= ARRAY_SIZE(bfin_sir1_resources
),
489 .resource
= bfin_sir1_resources
,
492 #ifdef CONFIG_BFIN_SIR2
493 static struct resource bfin_sir2_resources
[] = {
497 .flags
= IORESOURCE_MEM
,
500 .start
= IRQ_UART2_RX
,
501 .end
= IRQ_UART2_RX
+1,
502 .flags
= IORESOURCE_IRQ
,
505 .start
= CH_UART2_RX
,
506 .end
= CH_UART2_RX
+1,
507 .flags
= IORESOURCE_DMA
,
510 static struct platform_device bfin_sir2_device
= {
513 .num_resources
= ARRAY_SIZE(bfin_sir2_resources
),
514 .resource
= bfin_sir2_resources
,
517 #ifdef CONFIG_BFIN_SIR3
518 static struct resource bfin_sir3_resources
[] = {
522 .flags
= IORESOURCE_MEM
,
525 .start
= IRQ_UART3_RX
,
526 .end
= IRQ_UART3_RX
+1,
527 .flags
= IORESOURCE_IRQ
,
530 .start
= CH_UART3_RX
,
531 .end
= CH_UART3_RX
+1,
532 .flags
= IORESOURCE_DMA
,
535 static struct platform_device bfin_sir3_device
= {
538 .num_resources
= ARRAY_SIZE(bfin_sir3_resources
),
539 .resource
= bfin_sir3_resources
,
544 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
545 #include <linux/smsc911x.h>
547 static struct resource smsc911x_resources
[] = {
549 .name
= "smsc911x-memory",
551 .end
= 0x24000000 + 0xFF,
552 .flags
= IORESOURCE_MEM
,
557 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_LOWLEVEL
,
561 static struct smsc911x_platform_config smsc911x_config
= {
562 .flags
= SMSC911X_USE_32BIT
,
563 .irq_polarity
= SMSC911X_IRQ_POLARITY_ACTIVE_LOW
,
564 .irq_type
= SMSC911X_IRQ_TYPE_OPEN_DRAIN
,
565 .phy_interface
= PHY_INTERFACE_MODE_MII
,
568 static struct platform_device smsc911x_device
= {
571 .num_resources
= ARRAY_SIZE(smsc911x_resources
),
572 .resource
= smsc911x_resources
,
574 .platform_data
= &smsc911x_config
,
579 #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
580 static struct resource musb_resources
[] = {
584 .flags
= IORESOURCE_MEM
,
586 [1] = { /* general IRQ */
587 .start
= IRQ_USB_INT0
,
589 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
591 [2] = { /* DMA IRQ */
592 .start
= IRQ_USB_DMA
,
594 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
598 static struct musb_hdrc_config musb_config
= {
605 .gpio_vrsel
= GPIO_PE7
,
608 static struct musb_hdrc_platform_data musb_plat
= {
609 #if defined(CONFIG_USB_MUSB_OTG)
611 #elif defined(CONFIG_USB_MUSB_HDRC_HCD)
613 #elif defined(CONFIG_USB_GADGET_MUSB_HDRC)
614 .mode
= MUSB_PERIPHERAL
,
616 .config
= &musb_config
,
619 static u64 musb_dmamask
= ~(u32
)0;
621 static struct platform_device musb_device
= {
625 .dma_mask
= &musb_dmamask
,
626 .coherent_dma_mask
= 0xffffffff,
627 .platform_data
= &musb_plat
,
629 .num_resources
= ARRAY_SIZE(musb_resources
),
630 .resource
= musb_resources
,
634 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
635 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
636 static struct resource bfin_sport0_uart_resources
[] = {
638 .start
= SPORT0_TCR1
,
639 .end
= SPORT0_MRCS3
+4,
640 .flags
= IORESOURCE_MEM
,
643 .start
= IRQ_SPORT0_RX
,
644 .end
= IRQ_SPORT0_RX
+1,
645 .flags
= IORESOURCE_IRQ
,
648 .start
= IRQ_SPORT0_ERROR
,
649 .end
= IRQ_SPORT0_ERROR
,
650 .flags
= IORESOURCE_IRQ
,
654 unsigned short bfin_sport0_peripherals
[] = {
655 P_SPORT0_TFS
, P_SPORT0_DTPRI
, P_SPORT0_TSCLK
, P_SPORT0_RFS
,
656 P_SPORT0_DRPRI
, P_SPORT0_RSCLK
, P_SPORT0_DRSEC
, P_SPORT0_DTSEC
, 0
659 static struct platform_device bfin_sport0_uart_device
= {
660 .name
= "bfin-sport-uart",
662 .num_resources
= ARRAY_SIZE(bfin_sport0_uart_resources
),
663 .resource
= bfin_sport0_uart_resources
,
665 .platform_data
= &bfin_sport0_peripherals
, /* Passed to driver */
669 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
670 static struct resource bfin_sport1_uart_resources
[] = {
672 .start
= SPORT1_TCR1
,
673 .end
= SPORT1_MRCS3
+4,
674 .flags
= IORESOURCE_MEM
,
677 .start
= IRQ_SPORT1_RX
,
678 .end
= IRQ_SPORT1_RX
+1,
679 .flags
= IORESOURCE_IRQ
,
682 .start
= IRQ_SPORT1_ERROR
,
683 .end
= IRQ_SPORT1_ERROR
,
684 .flags
= IORESOURCE_IRQ
,
688 unsigned short bfin_sport1_peripherals
[] = {
689 P_SPORT1_TFS
, P_SPORT1_DTPRI
, P_SPORT1_TSCLK
, P_SPORT1_RFS
,
690 P_SPORT1_DRPRI
, P_SPORT1_RSCLK
, P_SPORT1_DRSEC
, P_SPORT1_DTSEC
, 0
693 static struct platform_device bfin_sport1_uart_device
= {
694 .name
= "bfin-sport-uart",
696 .num_resources
= ARRAY_SIZE(bfin_sport1_uart_resources
),
697 .resource
= bfin_sport1_uart_resources
,
699 .platform_data
= &bfin_sport1_peripherals
, /* Passed to driver */
703 #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
704 static struct resource bfin_sport2_uart_resources
[] = {
706 .start
= SPORT2_TCR1
,
707 .end
= SPORT2_MRCS3
+4,
708 .flags
= IORESOURCE_MEM
,
711 .start
= IRQ_SPORT2_RX
,
712 .end
= IRQ_SPORT2_RX
+1,
713 .flags
= IORESOURCE_IRQ
,
716 .start
= IRQ_SPORT2_ERROR
,
717 .end
= IRQ_SPORT2_ERROR
,
718 .flags
= IORESOURCE_IRQ
,
722 unsigned short bfin_sport2_peripherals
[] = {
723 P_SPORT2_TFS
, P_SPORT2_DTPRI
, P_SPORT2_TSCLK
, P_SPORT2_RFS
,
724 P_SPORT2_DRPRI
, P_SPORT2_RSCLK
, P_SPORT2_DRSEC
, P_SPORT2_DTSEC
, 0
727 static struct platform_device bfin_sport2_uart_device
= {
728 .name
= "bfin-sport-uart",
730 .num_resources
= ARRAY_SIZE(bfin_sport2_uart_resources
),
731 .resource
= bfin_sport2_uart_resources
,
733 .platform_data
= &bfin_sport2_peripherals
, /* Passed to driver */
737 #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
738 static struct resource bfin_sport3_uart_resources
[] = {
740 .start
= SPORT3_TCR1
,
741 .end
= SPORT3_MRCS3
+4,
742 .flags
= IORESOURCE_MEM
,
745 .start
= IRQ_SPORT3_RX
,
746 .end
= IRQ_SPORT3_RX
+1,
747 .flags
= IORESOURCE_IRQ
,
750 .start
= IRQ_SPORT3_ERROR
,
751 .end
= IRQ_SPORT3_ERROR
,
752 .flags
= IORESOURCE_IRQ
,
756 unsigned short bfin_sport3_peripherals
[] = {
757 P_SPORT3_TFS
, P_SPORT3_DTPRI
, P_SPORT3_TSCLK
, P_SPORT3_RFS
,
758 P_SPORT3_DRPRI
, P_SPORT3_RSCLK
, P_SPORT3_DRSEC
, P_SPORT3_DTSEC
, 0
761 static struct platform_device bfin_sport3_uart_device
= {
762 .name
= "bfin-sport-uart",
764 .num_resources
= ARRAY_SIZE(bfin_sport3_uart_resources
),
765 .resource
= bfin_sport3_uart_resources
,
767 .platform_data
= &bfin_sport3_peripherals
, /* Passed to driver */
773 #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
774 unsigned short bfin_can_peripherals
[] = {
775 P_CAN0_RX
, P_CAN0_TX
, 0
778 static struct resource bfin_can_resources
[] = {
782 .flags
= IORESOURCE_MEM
,
785 .start
= IRQ_CAN0_RX
,
787 .flags
= IORESOURCE_IRQ
,
790 .start
= IRQ_CAN0_TX
,
792 .flags
= IORESOURCE_IRQ
,
795 .start
= IRQ_CAN0_ERROR
,
796 .end
= IRQ_CAN0_ERROR
,
797 .flags
= IORESOURCE_IRQ
,
801 static struct platform_device bfin_can_device
= {
803 .num_resources
= ARRAY_SIZE(bfin_can_resources
),
804 .resource
= bfin_can_resources
,
806 .platform_data
= &bfin_can_peripherals
, /* Passed to driver */
811 #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
812 static struct resource bfin_atapi_resources
[] = {
816 .flags
= IORESOURCE_MEM
,
819 .start
= IRQ_ATAPI_ERR
,
820 .end
= IRQ_ATAPI_ERR
,
821 .flags
= IORESOURCE_IRQ
,
825 static struct platform_device bfin_atapi_device
= {
826 .name
= "pata-bf54x",
828 .num_resources
= ARRAY_SIZE(bfin_atapi_resources
),
829 .resource
= bfin_atapi_resources
,
833 #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
834 static struct mtd_partition partition_info
[] = {
836 .name
= "linux kernel(nand)",
838 .size
= 4 * 1024 * 1024,
841 .name
= "file system(nand)",
842 .offset
= MTDPART_OFS_APPEND
,
843 .size
= MTDPART_SIZ_FULL
,
847 static struct bf5xx_nand_platform bf5xx_nand_platform
= {
848 .page_size
= NFC_PG_SIZE_256
,
849 .data_width
= NFC_NWIDTH_8
,
850 .partitions
= partition_info
,
851 .nr_partitions
= ARRAY_SIZE(partition_info
),
856 static struct resource bf5xx_nand_resources
[] = {
860 .flags
= IORESOURCE_MEM
,
865 .flags
= IORESOURCE_IRQ
,
869 static struct platform_device bf5xx_nand_device
= {
870 .name
= "bf5xx-nand",
872 .num_resources
= ARRAY_SIZE(bf5xx_nand_resources
),
873 .resource
= bf5xx_nand_resources
,
875 .platform_data
= &bf5xx_nand_platform
,
880 #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
882 static struct bfin_sd_host bfin_sdh_data
= {
884 .irq_int0
= IRQ_SDH_MASK0
,
885 .pin_req
= {P_SD_D0
, P_SD_D1
, P_SD_D2
, P_SD_D3
, P_SD_CLK
, P_SD_CMD
, 0},
888 static struct platform_device bf54x_sdh_device
= {
892 .platform_data
= &bfin_sdh_data
,
897 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
898 static struct mtd_partition ezkit_partitions
[] = {
900 .name
= "bootloader(nor)",
904 .name
= "linux kernel(nor)",
906 .offset
= MTDPART_OFS_APPEND
,
908 .name
= "file system(nor)",
909 .size
= MTDPART_SIZ_FULL
,
910 .offset
= MTDPART_OFS_APPEND
,
914 static struct physmap_flash_data ezkit_flash_data
= {
916 .parts
= ezkit_partitions
,
917 .nr_parts
= ARRAY_SIZE(ezkit_partitions
),
920 static struct resource ezkit_flash_resource
= {
923 .flags
= IORESOURCE_MEM
,
926 static struct platform_device ezkit_flash_device
= {
927 .name
= "physmap-flash",
930 .platform_data
= &ezkit_flash_data
,
933 .resource
= &ezkit_flash_resource
,
937 #if defined(CONFIG_MTD_M25P80) \
938 || defined(CONFIG_MTD_M25P80_MODULE)
939 /* SPI flash chip (m25p16) */
940 static struct mtd_partition bfin_spi_flash_partitions
[] = {
942 .name
= "bootloader(spi)",
945 .mask_flags
= MTD_CAP_ROM
947 .name
= "linux kernel(spi)",
948 .size
= MTDPART_SIZ_FULL
,
949 .offset
= MTDPART_OFS_APPEND
,
953 static struct flash_platform_data bfin_spi_flash_data
= {
955 .parts
= bfin_spi_flash_partitions
,
956 .nr_parts
= ARRAY_SIZE(bfin_spi_flash_partitions
),
960 static struct bfin5xx_spi_chip spi_flash_chip_info
= {
961 .enable_dma
= 0, /* use dma transfer with this chip*/
966 #if defined(CONFIG_SND_BLACKFIN_AD183X) \
967 || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
968 static struct bfin5xx_spi_chip ad1836_spi_chip_info
= {
974 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
975 static struct bfin5xx_spi_chip spi_ad7877_chip_info
= {
980 static const struct ad7877_platform_data bfin_ad7877_ts_info
= {
982 .vref_delay_usecs
= 50, /* internal, no capacitor */
985 .pressure_max
= 1000,
987 .stopacq_polarity
= 1,
988 .first_conversion_delay
= 3,
989 .acquisition_time
= 1,
991 .pen_down_acc_interval
= 1,
995 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
996 static struct bfin5xx_spi_chip spidev_chip_info
= {
1002 #if defined(CONFIG_INPUT_ADXL34X_SPI) || defined(CONFIG_INPUT_ADXL34X_SPI_MODULE)
1003 static struct bfin5xx_spi_chip spi_adxl34x_chip_info
= {
1004 .enable_dma
= 0, /* use dma transfer with this chip*/
1009 static struct spi_board_info bfin_spi_board_info
[] __initdata
= {
1010 #if defined(CONFIG_MTD_M25P80) \
1011 || defined(CONFIG_MTD_M25P80_MODULE)
1013 /* the modalias must be the same as spi device driver name */
1014 .modalias
= "m25p80", /* Name of spi_driver for this device */
1015 .max_speed_hz
= 25000000, /* max spi clock (SCK) speed in HZ */
1016 .bus_num
= 0, /* Framework bus number */
1017 .chip_select
= 1, /* SPI_SSEL1*/
1018 .platform_data
= &bfin_spi_flash_data
,
1019 .controller_data
= &spi_flash_chip_info
,
1023 #if defined(CONFIG_SND_BLACKFIN_AD183X) \
1024 || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
1026 .modalias
= "ad1836",
1027 .max_speed_hz
= 3125000, /* max spi clock (SCK) speed in HZ */
1029 .chip_select
= CONFIG_SND_BLACKFIN_SPI_PFBIT
,
1030 .controller_data
= &ad1836_spi_chip_info
,
1033 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
1035 .modalias
= "ad7877",
1036 .platform_data
= &bfin_ad7877_ts_info
,
1037 .irq
= IRQ_PB4
, /* old boards (<=Rev 1.3) use IRQ_PJ11 */
1038 .max_speed_hz
= 12500000, /* max spi clock (SCK) speed in HZ */
1041 .controller_data
= &spi_ad7877_chip_info
,
1044 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
1046 .modalias
= "spidev",
1047 .max_speed_hz
= 3125000, /* max spi clock (SCK) speed in HZ */
1050 .controller_data
= &spidev_chip_info
,
1053 #if defined(CONFIG_INPUT_ADXL34X_SPI) || defined(CONFIG_INPUT_ADXL34X_SPI_MODULE)
1055 .modalias
= "adxl34x",
1056 .platform_data
= &adxl34x_info
,
1058 .max_speed_hz
= 5000000, /* max spi clock (SCK) speed in HZ */
1061 .controller_data
= &spi_adxl34x_chip_info
,
1066 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
1068 static struct resource bfin_spi0_resource
[] = {
1070 .start
= SPI0_REGBASE
,
1071 .end
= SPI0_REGBASE
+ 0xFF,
1072 .flags
= IORESOURCE_MEM
,
1077 .flags
= IORESOURCE_DMA
,
1082 .flags
= IORESOURCE_IRQ
,
1087 static struct resource bfin_spi1_resource
[] = {
1089 .start
= SPI1_REGBASE
,
1090 .end
= SPI1_REGBASE
+ 0xFF,
1091 .flags
= IORESOURCE_MEM
,
1096 .flags
= IORESOURCE_DMA
,
1101 .flags
= IORESOURCE_IRQ
,
1105 /* SPI controller data */
1106 static struct bfin5xx_spi_master bf54x_spi_master_info0
= {
1107 .num_chipselect
= 3,
1108 .enable_dma
= 1, /* master has the ability to do dma transfer */
1109 .pin_req
= {P_SPI0_SCK
, P_SPI0_MISO
, P_SPI0_MOSI
, 0},
1112 static struct platform_device bf54x_spi_master0
= {
1114 .id
= 0, /* Bus number */
1115 .num_resources
= ARRAY_SIZE(bfin_spi0_resource
),
1116 .resource
= bfin_spi0_resource
,
1118 .platform_data
= &bf54x_spi_master_info0
, /* Passed to driver */
1122 static struct bfin5xx_spi_master bf54x_spi_master_info1
= {
1123 .num_chipselect
= 3,
1124 .enable_dma
= 1, /* master has the ability to do dma transfer */
1125 .pin_req
= {P_SPI1_SCK
, P_SPI1_MISO
, P_SPI1_MOSI
, 0},
1128 static struct platform_device bf54x_spi_master1
= {
1130 .id
= 1, /* Bus number */
1131 .num_resources
= ARRAY_SIZE(bfin_spi1_resource
),
1132 .resource
= bfin_spi1_resource
,
1134 .platform_data
= &bf54x_spi_master_info1
, /* Passed to driver */
1137 #endif /* spi master and devices */
1139 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
1140 static struct resource bfin_twi0_resource
[] = {
1142 .start
= TWI0_REGBASE
,
1143 .end
= TWI0_REGBASE
+ 0xFF,
1144 .flags
= IORESOURCE_MEM
,
1149 .flags
= IORESOURCE_IRQ
,
1153 static struct platform_device i2c_bfin_twi0_device
= {
1154 .name
= "i2c-bfin-twi",
1156 .num_resources
= ARRAY_SIZE(bfin_twi0_resource
),
1157 .resource
= bfin_twi0_resource
,
1160 #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */
1161 static struct resource bfin_twi1_resource
[] = {
1163 .start
= TWI1_REGBASE
,
1164 .end
= TWI1_REGBASE
+ 0xFF,
1165 .flags
= IORESOURCE_MEM
,
1170 .flags
= IORESOURCE_IRQ
,
1174 static struct platform_device i2c_bfin_twi1_device
= {
1175 .name
= "i2c-bfin-twi",
1177 .num_resources
= ARRAY_SIZE(bfin_twi1_resource
),
1178 .resource
= bfin_twi1_resource
,
1183 static struct i2c_board_info __initdata bfin_i2c_board_info0
[] = {
1186 #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */
1187 static struct i2c_board_info __initdata bfin_i2c_board_info1
[] = {
1188 #if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE)
1190 I2C_BOARD_INFO("pcf8574_lcd", 0x22),
1193 #if defined(CONFIG_INPUT_PCF8574) || defined(CONFIG_INPUT_PCF8574_MODULE)
1195 I2C_BOARD_INFO("pcf8574_keypad", 0x27),
1199 #if defined(CONFIG_INPUT_ADXL34X_I2C) || defined(CONFIG_INPUT_ADXL34X_I2C_MODULE)
1201 I2C_BOARD_INFO("adxl34x", 0x53),
1203 .platform_data
= (void *)&adxl34x_info
,
1209 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
1210 #include <linux/gpio_keys.h>
1212 static struct gpio_keys_button bfin_gpio_keys_table
[] = {
1213 {BTN_0
, GPIO_PB8
, 1, "gpio-keys: BTN0"},
1214 {BTN_1
, GPIO_PB9
, 1, "gpio-keys: BTN1"},
1215 {BTN_2
, GPIO_PB10
, 1, "gpio-keys: BTN2"},
1216 {BTN_3
, GPIO_PB11
, 1, "gpio-keys: BTN3"},
1219 static struct gpio_keys_platform_data bfin_gpio_keys_data
= {
1220 .buttons
= bfin_gpio_keys_table
,
1221 .nbuttons
= ARRAY_SIZE(bfin_gpio_keys_table
),
1224 static struct platform_device bfin_device_gpiokeys
= {
1225 .name
= "gpio-keys",
1227 .platform_data
= &bfin_gpio_keys_data
,
1232 static const unsigned int cclk_vlev_datasheet
[] =
1235 * Internal VLEV BF54XSBBC1533
1236 ****temporarily using these values until data sheet is updated
1238 VRPAIR(VLEV_085
, 150000000),
1239 VRPAIR(VLEV_090
, 250000000),
1240 VRPAIR(VLEV_110
, 276000000),
1241 VRPAIR(VLEV_115
, 301000000),
1242 VRPAIR(VLEV_120
, 525000000),
1243 VRPAIR(VLEV_125
, 550000000),
1244 VRPAIR(VLEV_130
, 600000000),
1247 static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data
= {
1248 .tuple_tab
= cclk_vlev_datasheet
,
1249 .tabsize
= ARRAY_SIZE(cclk_vlev_datasheet
),
1250 .vr_settling_time
= 25 /* us */,
1253 static struct platform_device bfin_dpmc
= {
1254 .name
= "bfin dpmc",
1256 .platform_data
= &bfin_dmpc_vreg_data
,
1260 #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
1261 static struct platform_device bfin_i2s
= {
1263 .id
= CONFIG_SND_BF5XX_SPORT_NUM
,
1264 /* TODO: add platform data here */
1268 #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
1269 static struct platform_device bfin_tdm
= {
1271 .id
= CONFIG_SND_BF5XX_SPORT_NUM
,
1272 /* TODO: add platform data here */
1276 #if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
1277 static struct platform_device bfin_ac97
= {
1278 .name
= "bfin-ac97",
1279 .id
= CONFIG_SND_BF5XX_SPORT_NUM
,
1280 /* TODO: add platform data here */
1284 static struct platform_device
*ezkit_devices
[] __initdata
= {
1288 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
1292 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
1293 #ifdef CONFIG_SERIAL_BFIN_UART0
1296 #ifdef CONFIG_SERIAL_BFIN_UART1
1299 #ifdef CONFIG_SERIAL_BFIN_UART2
1302 #ifdef CONFIG_SERIAL_BFIN_UART3
1307 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
1308 #ifdef CONFIG_BFIN_SIR0
1311 #ifdef CONFIG_BFIN_SIR1
1314 #ifdef CONFIG_BFIN_SIR2
1317 #ifdef CONFIG_BFIN_SIR3
1322 #if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE)
1323 &bf54x_lq043_device
,
1326 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
1330 #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
1334 #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
1335 &bfin_isp1760_device
,
1338 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
1339 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
1340 &bfin_sport0_uart_device
,
1342 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
1343 &bfin_sport1_uart_device
,
1345 #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
1346 &bfin_sport2_uart_device
,
1348 #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
1349 &bfin_sport3_uart_device
,
1353 #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
1357 #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
1361 #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
1365 #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
1369 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
1374 #if defined(CONFIG_KEYBOARD_BFIN) || defined(CONFIG_KEYBOARD_BFIN_MODULE)
1378 #if defined(CONFIG_INPUT_BFIN_ROTARY) || defined(CONFIG_INPUT_BFIN_ROTARY_MODULE)
1379 &bfin_rotary_device
,
1382 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
1383 &i2c_bfin_twi0_device
,
1384 #if !defined(CONFIG_BF542)
1385 &i2c_bfin_twi1_device
,
1389 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
1390 &bfin_device_gpiokeys
,
1393 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
1394 &ezkit_flash_device
,
1397 #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
1401 #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
1405 #if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
1410 static int __init
ezkit_init(void)
1412 printk(KERN_INFO
"%s(): registering device resources\n", __func__
);
1414 i2c_register_board_info(0, bfin_i2c_board_info0
,
1415 ARRAY_SIZE(bfin_i2c_board_info0
));
1416 #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */
1417 i2c_register_board_info(1, bfin_i2c_board_info1
,
1418 ARRAY_SIZE(bfin_i2c_board_info1
));
1421 platform_add_devices(ezkit_devices
, ARRAY_SIZE(ezkit_devices
));
1423 spi_register_board_info(bfin_spi_board_info
, ARRAY_SIZE(bfin_spi_board_info
));
1428 arch_initcall(ezkit_init
);
1430 static struct platform_device
*ezkit_early_devices
[] __initdata
= {
1431 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
1432 #ifdef CONFIG_SERIAL_BFIN_UART0
1435 #ifdef CONFIG_SERIAL_BFIN_UART1
1438 #ifdef CONFIG_SERIAL_BFIN_UART2
1441 #ifdef CONFIG_SERIAL_BFIN_UART3
1446 #if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
1447 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
1448 &bfin_sport0_uart_device
,
1450 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
1451 &bfin_sport1_uart_device
,
1453 #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
1454 &bfin_sport2_uart_device
,
1456 #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
1457 &bfin_sport3_uart_device
,
1462 void __init
native_machine_early_platform_add_devices(void)
1464 printk(KERN_INFO
"register early platform devices\n");
1465 early_platform_add_devices(ezkit_early_devices
,
1466 ARRAY_SIZE(ezkit_early_devices
));