Add linux-next specific files for 20110831
[linux-2.6/next.git] / arch / blackfin / mach-bf548 / boards / cm_bf548.c
blob0350eacec21b96785f2eda1cc933cca52bbde572
1 /*
2 * Copyright 2004-2009 Analog Devices Inc.
3 * 2008-2009 Bluetechnix
4 * 2005 National ICT Australia (NICTA)
5 * Aidan Williams <aidan@nicta.com.au>
7 * Licensed under the GPL-2 or later.
8 */
10 #include <linux/device.h>
11 #include <linux/platform_device.h>
12 #include <linux/mtd/mtd.h>
13 #include <linux/mtd/partitions.h>
14 #include <linux/mtd/physmap.h>
15 #include <linux/spi/spi.h>
16 #include <linux/spi/flash.h>
17 #include <linux/irq.h>
18 #include <linux/interrupt.h>
19 #include <linux/usb/musb.h>
20 #include <asm/bfin5xx_spi.h>
21 #include <asm/dma.h>
22 #include <asm/gpio.h>
23 #include <asm/nand.h>
24 #include <asm/portmux.h>
25 #include <asm/bfin_sdh.h>
26 #include <mach/bf54x_keys.h>
27 #include <asm/dpmc.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[] = "Bluetechnix CM-BF548";
37 * Driver needs to know address, irq and flag pin.
40 #if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE)
42 #include <mach/bf54x-lq043.h>
44 static struct bfin_bf54xfb_mach_info bf54x_lq043_data = {
45 .width = 480,
46 .height = 272,
47 .xres = {480, 480, 480},
48 .yres = {272, 272, 272},
49 .bpp = {24, 24, 24},
50 .disp = GPIO_PE3,
53 static struct resource bf54x_lq043_resources[] = {
55 .start = IRQ_EPPI0_ERR,
56 .end = IRQ_EPPI0_ERR,
57 .flags = IORESOURCE_IRQ,
61 static struct platform_device bf54x_lq043_device = {
62 .name = "bf54x-lq043",
63 .id = -1,
64 .num_resources = ARRAY_SIZE(bf54x_lq043_resources),
65 .resource = bf54x_lq043_resources,
66 .dev = {
67 .platform_data = &bf54x_lq043_data,
70 #endif
72 #if defined(CONFIG_KEYBOARD_BFIN) || defined(CONFIG_KEYBOARD_BFIN_MODULE)
73 static unsigned int bf548_keymap[] = {
74 KEYVAL(0, 0, KEY_ENTER),
75 KEYVAL(0, 1, KEY_HELP),
76 KEYVAL(0, 2, KEY_0),
77 KEYVAL(0, 3, KEY_BACKSPACE),
78 KEYVAL(1, 0, KEY_TAB),
79 KEYVAL(1, 1, KEY_9),
80 KEYVAL(1, 2, KEY_8),
81 KEYVAL(1, 3, KEY_7),
82 KEYVAL(2, 0, KEY_DOWN),
83 KEYVAL(2, 1, KEY_6),
84 KEYVAL(2, 2, KEY_5),
85 KEYVAL(2, 3, KEY_4),
86 KEYVAL(3, 0, KEY_UP),
87 KEYVAL(3, 1, KEY_3),
88 KEYVAL(3, 2, KEY_2),
89 KEYVAL(3, 3, KEY_1),
92 static struct bfin_kpad_platform_data bf54x_kpad_data = {
93 .rows = 4,
94 .cols = 4,
95 .keymap = bf548_keymap,
96 .keymapsize = ARRAY_SIZE(bf548_keymap),
97 .repeat = 0,
98 .debounce_time = 5000, /* ns (5ms) */
99 .coldrive_time = 1000, /* ns (1ms) */
100 .keyup_test_interval = 50, /* ms (50ms) */
103 static struct resource bf54x_kpad_resources[] = {
105 .start = IRQ_KEY,
106 .end = IRQ_KEY,
107 .flags = IORESOURCE_IRQ,
111 static struct platform_device bf54x_kpad_device = {
112 .name = "bf54x-keys",
113 .id = -1,
114 .num_resources = ARRAY_SIZE(bf54x_kpad_resources),
115 .resource = bf54x_kpad_resources,
116 .dev = {
117 .platform_data = &bf54x_kpad_data,
120 #endif
122 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
123 static struct platform_device rtc_device = {
124 .name = "rtc-bfin",
125 .id = -1,
127 #endif
129 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
130 #ifdef CONFIG_SERIAL_BFIN_UART0
131 static struct resource bfin_uart0_resources[] = {
133 .start = UART0_DLL,
134 .end = UART0_RBR+2,
135 .flags = IORESOURCE_MEM,
138 .start = IRQ_UART0_TX,
139 .end = IRQ_UART0_TX,
140 .flags = IORESOURCE_IRQ,
143 .start = IRQ_UART0_RX,
144 .end = IRQ_UART0_RX,
145 .flags = IORESOURCE_IRQ,
148 .start = IRQ_UART0_ERROR,
149 .end = IRQ_UART0_ERROR,
150 .flags = IORESOURCE_IRQ,
153 .start = CH_UART0_TX,
154 .end = CH_UART0_TX,
155 .flags = IORESOURCE_DMA,
158 .start = CH_UART0_RX,
159 .end = CH_UART0_RX,
160 .flags = IORESOURCE_DMA,
164 static unsigned short bfin_uart0_peripherals[] = {
165 P_UART0_TX, P_UART0_RX, 0
168 static struct platform_device bfin_uart0_device = {
169 .name = "bfin-uart",
170 .id = 0,
171 .num_resources = ARRAY_SIZE(bfin_uart0_resources),
172 .resource = bfin_uart0_resources,
173 .dev = {
174 .platform_data = &bfin_uart0_peripherals, /* Passed to driver */
177 #endif
178 #ifdef CONFIG_SERIAL_BFIN_UART1
179 static struct resource bfin_uart1_resources[] = {
181 .start = UART1_DLL,
182 .end = UART1_RBR+2,
183 .flags = IORESOURCE_MEM,
186 .start = IRQ_UART1_TX,
187 .end = IRQ_UART1_TX,
188 .flags = IORESOURCE_IRQ,
191 .start = IRQ_UART1_RX,
192 .end = IRQ_UART1_RX,
193 .flags = IORESOURCE_IRQ,
196 .start = IRQ_UART1_ERROR,
197 .end = IRQ_UART1_ERROR,
198 .flags = IORESOURCE_IRQ,
201 .start = CH_UART1_TX,
202 .end = CH_UART1_TX,
203 .flags = IORESOURCE_DMA,
206 .start = CH_UART1_RX,
207 .end = CH_UART1_RX,
208 .flags = IORESOURCE_DMA,
210 #ifdef CONFIG_BFIN_UART1_CTSRTS
211 { /* CTS pin -- 0 means not supported */
212 .start = GPIO_PE10,
213 .end = GPIO_PE10,
214 .flags = IORESOURCE_IO,
216 { /* RTS pin -- 0 means not supported */
217 .start = GPIO_PE9,
218 .end = GPIO_PE9,
219 .flags = IORESOURCE_IO,
221 #endif
224 static unsigned short bfin_uart1_peripherals[] = {
225 P_UART1_TX, P_UART1_RX,
226 #ifdef CONFIG_BFIN_UART1_CTSRTS
227 P_UART1_RTS, P_UART1_CTS,
228 #endif
232 static struct platform_device bfin_uart1_device = {
233 .name = "bfin-uart",
234 .id = 1,
235 .num_resources = ARRAY_SIZE(bfin_uart1_resources),
236 .resource = bfin_uart1_resources,
237 .dev = {
238 .platform_data = &bfin_uart1_peripherals, /* Passed to driver */
241 #endif
242 #ifdef CONFIG_SERIAL_BFIN_UART2
243 static struct resource bfin_uart2_resources[] = {
245 .start = UART2_DLL,
246 .end = UART2_RBR+2,
247 .flags = IORESOURCE_MEM,
250 .start = IRQ_UART2_TX,
251 .end = IRQ_UART2_TX,
252 .flags = IORESOURCE_IRQ,
255 .start = IRQ_UART2_RX,
256 .end = IRQ_UART2_RX,
257 .flags = IORESOURCE_IRQ,
260 .start = IRQ_UART2_ERROR,
261 .end = IRQ_UART2_ERROR,
262 .flags = IORESOURCE_IRQ,
265 .start = CH_UART2_TX,
266 .end = CH_UART2_TX,
267 .flags = IORESOURCE_DMA,
270 .start = CH_UART2_RX,
271 .end = CH_UART2_RX,
272 .flags = IORESOURCE_DMA,
276 static unsigned short bfin_uart2_peripherals[] = {
277 P_UART2_TX, P_UART2_RX, 0
280 static struct platform_device bfin_uart2_device = {
281 .name = "bfin-uart",
282 .id = 2,
283 .num_resources = ARRAY_SIZE(bfin_uart2_resources),
284 .resource = bfin_uart2_resources,
285 .dev = {
286 .platform_data = &bfin_uart2_peripherals, /* Passed to driver */
289 #endif
290 #ifdef CONFIG_SERIAL_BFIN_UART3
291 static struct resource bfin_uart3_resources[] = {
293 .start = UART3_DLL,
294 .end = UART3_RBR+2,
295 .flags = IORESOURCE_MEM,
298 .start = IRQ_UART3_TX,
299 .end = IRQ_UART3_TX,
300 .flags = IORESOURCE_IRQ,
303 .start = IRQ_UART3_RX,
304 .end = IRQ_UART3_RX,
305 .flags = IORESOURCE_IRQ,
308 .start = IRQ_UART3_ERROR,
309 .end = IRQ_UART3_ERROR,
310 .flags = IORESOURCE_IRQ,
313 .start = CH_UART3_TX,
314 .end = CH_UART3_TX,
315 .flags = IORESOURCE_DMA,
318 .start = CH_UART3_RX,
319 .end = CH_UART3_RX,
320 .flags = IORESOURCE_DMA,
322 #ifdef CONFIG_BFIN_UART3_CTSRTS
323 { /* CTS pin -- 0 means not supported */
324 .start = GPIO_PB3,
325 .end = GPIO_PB3,
326 .flags = IORESOURCE_IO,
328 { /* RTS pin -- 0 means not supported */
329 .start = GPIO_PB2,
330 .end = GPIO_PB2,
331 .flags = IORESOURCE_IO,
333 #endif
336 static unsigned short bfin_uart3_peripherals[] = {
337 P_UART3_TX, P_UART3_RX,
338 #ifdef CONFIG_BFIN_UART3_CTSRTS
339 P_UART3_RTS, P_UART3_CTS,
340 #endif
344 static struct platform_device bfin_uart3_device = {
345 .name = "bfin-uart",
346 .id = 3,
347 .num_resources = ARRAY_SIZE(bfin_uart3_resources),
348 .resource = bfin_uart3_resources,
349 .dev = {
350 .platform_data = &bfin_uart3_peripherals, /* Passed to driver */
353 #endif
354 #endif
356 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
357 #ifdef CONFIG_BFIN_SIR0
358 static struct resource bfin_sir0_resources[] = {
360 .start = 0xFFC00400,
361 .end = 0xFFC004FF,
362 .flags = IORESOURCE_MEM,
365 .start = IRQ_UART0_RX,
366 .end = IRQ_UART0_RX+1,
367 .flags = IORESOURCE_IRQ,
370 .start = CH_UART0_RX,
371 .end = CH_UART0_RX+1,
372 .flags = IORESOURCE_DMA,
375 static struct platform_device bfin_sir0_device = {
376 .name = "bfin_sir",
377 .id = 0,
378 .num_resources = ARRAY_SIZE(bfin_sir0_resources),
379 .resource = bfin_sir0_resources,
381 #endif
382 #ifdef CONFIG_BFIN_SIR1
383 static struct resource bfin_sir1_resources[] = {
385 .start = 0xFFC02000,
386 .end = 0xFFC020FF,
387 .flags = IORESOURCE_MEM,
390 .start = IRQ_UART1_RX,
391 .end = IRQ_UART1_RX+1,
392 .flags = IORESOURCE_IRQ,
395 .start = CH_UART1_RX,
396 .end = CH_UART1_RX+1,
397 .flags = IORESOURCE_DMA,
400 static struct platform_device bfin_sir1_device = {
401 .name = "bfin_sir",
402 .id = 1,
403 .num_resources = ARRAY_SIZE(bfin_sir1_resources),
404 .resource = bfin_sir1_resources,
406 #endif
407 #ifdef CONFIG_BFIN_SIR2
408 static struct resource bfin_sir2_resources[] = {
410 .start = 0xFFC02100,
411 .end = 0xFFC021FF,
412 .flags = IORESOURCE_MEM,
415 .start = IRQ_UART2_RX,
416 .end = IRQ_UART2_RX+1,
417 .flags = IORESOURCE_IRQ,
420 .start = CH_UART2_RX,
421 .end = CH_UART2_RX+1,
422 .flags = IORESOURCE_DMA,
425 static struct platform_device bfin_sir2_device = {
426 .name = "bfin_sir",
427 .id = 2,
428 .num_resources = ARRAY_SIZE(bfin_sir2_resources),
429 .resource = bfin_sir2_resources,
431 #endif
432 #ifdef CONFIG_BFIN_SIR3
433 static struct resource bfin_sir3_resources[] = {
435 .start = 0xFFC03100,
436 .end = 0xFFC031FF,
437 .flags = IORESOURCE_MEM,
440 .start = IRQ_UART3_RX,
441 .end = IRQ_UART3_RX+1,
442 .flags = IORESOURCE_IRQ,
445 .start = CH_UART3_RX,
446 .end = CH_UART3_RX+1,
447 .flags = IORESOURCE_DMA,
450 static struct platform_device bfin_sir3_device = {
451 .name = "bfin_sir",
452 .id = 3,
453 .num_resources = ARRAY_SIZE(bfin_sir3_resources),
454 .resource = bfin_sir3_resources,
456 #endif
457 #endif
459 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
460 #include <linux/smsc911x.h>
462 static struct resource smsc911x_resources[] = {
464 .name = "smsc911x-memory",
465 .start = 0x24000000,
466 .end = 0x24000000 + 0xFF,
467 .flags = IORESOURCE_MEM,
470 .start = IRQ_PE6,
471 .end = IRQ_PE6,
472 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
476 static struct smsc911x_platform_config smsc911x_config = {
477 .flags = SMSC911X_USE_16BIT,
478 .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
479 .irq_type = SMSC911X_IRQ_TYPE_OPEN_DRAIN,
480 .phy_interface = PHY_INTERFACE_MODE_MII,
483 static struct platform_device smsc911x_device = {
484 .name = "smsc911x",
485 .id = 0,
486 .num_resources = ARRAY_SIZE(smsc911x_resources),
487 .resource = smsc911x_resources,
488 .dev = {
489 .platform_data = &smsc911x_config,
492 #endif
494 #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
495 static struct resource musb_resources[] = {
496 [0] = {
497 .start = 0xFFC03C00,
498 .end = 0xFFC040FF,
499 .flags = IORESOURCE_MEM,
501 [1] = { /* general IRQ */
502 .start = IRQ_USB_INT0,
503 .end = IRQ_USB_INT0,
504 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
505 .name = "mc"
507 [2] = { /* DMA IRQ */
508 .start = IRQ_USB_DMA,
509 .end = IRQ_USB_DMA,
510 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
511 .name = "dma"
515 static struct musb_hdrc_config musb_config = {
516 .multipoint = 0,
517 .dyn_fifo = 0,
518 .soft_con = 1,
519 .dma = 1,
520 .num_eps = 8,
521 .dma_channels = 8,
522 .gpio_vrsel = GPIO_PH6,
523 /* Some custom boards need to be active low, just set it to "0"
524 * if it is the case.
526 .gpio_vrsel_active = 1,
527 .clkin = 24, /* musb CLKIN in MHZ */
530 static struct musb_hdrc_platform_data musb_plat = {
531 #if defined(CONFIG_USB_MUSB_OTG)
532 .mode = MUSB_OTG,
533 #elif defined(CONFIG_USB_MUSB_HDRC_HCD)
534 .mode = MUSB_HOST,
535 #elif defined(CONFIG_USB_GADGET_MUSB_HDRC)
536 .mode = MUSB_PERIPHERAL,
537 #endif
538 .config = &musb_config,
541 static u64 musb_dmamask = ~(u32)0;
543 static struct platform_device musb_device = {
544 .name = "musb-blackfin",
545 .id = 0,
546 .dev = {
547 .dma_mask = &musb_dmamask,
548 .coherent_dma_mask = 0xffffffff,
549 .platform_data = &musb_plat,
551 .num_resources = ARRAY_SIZE(musb_resources),
552 .resource = musb_resources,
554 #endif
556 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
557 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
558 static struct resource bfin_sport0_uart_resources[] = {
560 .start = SPORT0_TCR1,
561 .end = SPORT0_MRCS3+4,
562 .flags = IORESOURCE_MEM,
565 .start = IRQ_SPORT0_RX,
566 .end = IRQ_SPORT0_RX+1,
567 .flags = IORESOURCE_IRQ,
570 .start = IRQ_SPORT0_ERROR,
571 .end = IRQ_SPORT0_ERROR,
572 .flags = IORESOURCE_IRQ,
576 static unsigned short bfin_sport0_peripherals[] = {
577 P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
578 P_SPORT0_DRPRI, P_SPORT0_RSCLK, 0
581 static struct platform_device bfin_sport0_uart_device = {
582 .name = "bfin-sport-uart",
583 .id = 0,
584 .num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
585 .resource = bfin_sport0_uart_resources,
586 .dev = {
587 .platform_data = &bfin_sport0_peripherals, /* Passed to driver */
590 #endif
591 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
592 static struct resource bfin_sport1_uart_resources[] = {
594 .start = SPORT1_TCR1,
595 .end = SPORT1_MRCS3+4,
596 .flags = IORESOURCE_MEM,
599 .start = IRQ_SPORT1_RX,
600 .end = IRQ_SPORT1_RX+1,
601 .flags = IORESOURCE_IRQ,
604 .start = IRQ_SPORT1_ERROR,
605 .end = IRQ_SPORT1_ERROR,
606 .flags = IORESOURCE_IRQ,
610 static unsigned short bfin_sport1_peripherals[] = {
611 P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
612 P_SPORT1_DRPRI, P_SPORT1_RSCLK, 0
615 static struct platform_device bfin_sport1_uart_device = {
616 .name = "bfin-sport-uart",
617 .id = 1,
618 .num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
619 .resource = bfin_sport1_uart_resources,
620 .dev = {
621 .platform_data = &bfin_sport1_peripherals, /* Passed to driver */
624 #endif
625 #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
626 static struct resource bfin_sport2_uart_resources[] = {
628 .start = SPORT2_TCR1,
629 .end = SPORT2_MRCS3+4,
630 .flags = IORESOURCE_MEM,
633 .start = IRQ_SPORT2_RX,
634 .end = IRQ_SPORT2_RX+1,
635 .flags = IORESOURCE_IRQ,
638 .start = IRQ_SPORT2_ERROR,
639 .end = IRQ_SPORT2_ERROR,
640 .flags = IORESOURCE_IRQ,
644 static unsigned short bfin_sport2_peripherals[] = {
645 P_SPORT2_TFS, P_SPORT2_DTPRI, P_SPORT2_TSCLK, P_SPORT2_RFS,
646 P_SPORT2_DRPRI, P_SPORT2_RSCLK, P_SPORT2_DRSEC, P_SPORT2_DTSEC, 0
649 static struct platform_device bfin_sport2_uart_device = {
650 .name = "bfin-sport-uart",
651 .id = 2,
652 .num_resources = ARRAY_SIZE(bfin_sport2_uart_resources),
653 .resource = bfin_sport2_uart_resources,
654 .dev = {
655 .platform_data = &bfin_sport2_peripherals, /* Passed to driver */
658 #endif
659 #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
660 static struct resource bfin_sport3_uart_resources[] = {
662 .start = SPORT3_TCR1,
663 .end = SPORT3_MRCS3+4,
664 .flags = IORESOURCE_MEM,
667 .start = IRQ_SPORT3_RX,
668 .end = IRQ_SPORT3_RX+1,
669 .flags = IORESOURCE_IRQ,
672 .start = IRQ_SPORT3_ERROR,
673 .end = IRQ_SPORT3_ERROR,
674 .flags = IORESOURCE_IRQ,
678 static unsigned short bfin_sport3_peripherals[] = {
679 P_SPORT3_TFS, P_SPORT3_DTPRI, P_SPORT3_TSCLK, P_SPORT3_RFS,
680 P_SPORT3_DRPRI, P_SPORT3_RSCLK, P_SPORT3_DRSEC, P_SPORT3_DTSEC, 0
683 static struct platform_device bfin_sport3_uart_device = {
684 .name = "bfin-sport-uart",
685 .id = 3,
686 .num_resources = ARRAY_SIZE(bfin_sport3_uart_resources),
687 .resource = bfin_sport3_uart_resources,
688 .dev = {
689 .platform_data = &bfin_sport3_peripherals, /* Passed to driver */
692 #endif
693 #endif
695 #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
696 static struct resource bfin_atapi_resources[] = {
698 .start = 0xFFC03800,
699 .end = 0xFFC0386F,
700 .flags = IORESOURCE_MEM,
703 .start = IRQ_ATAPI_ERR,
704 .end = IRQ_ATAPI_ERR,
705 .flags = IORESOURCE_IRQ,
709 static struct platform_device bfin_atapi_device = {
710 .name = "pata-bf54x",
711 .id = -1,
712 .num_resources = ARRAY_SIZE(bfin_atapi_resources),
713 .resource = bfin_atapi_resources,
715 #endif
717 #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
718 static struct mtd_partition partition_info[] = {
720 .name = "linux kernel(nand)",
721 .offset = 0,
722 .size = 4 * 1024 * 1024,
725 .name = "file system(nand)",
726 .offset = 4 * 1024 * 1024,
727 .size = (256 - 4) * 1024 * 1024,
731 static struct bf5xx_nand_platform bf5xx_nand_platform = {
732 .data_width = NFC_NWIDTH_8,
733 .partitions = partition_info,
734 .nr_partitions = ARRAY_SIZE(partition_info),
735 .rd_dly = 3,
736 .wr_dly = 3,
739 static struct resource bf5xx_nand_resources[] = {
741 .start = 0xFFC03B00,
742 .end = 0xFFC03B4F,
743 .flags = IORESOURCE_MEM,
746 .start = CH_NFC,
747 .end = CH_NFC,
748 .flags = IORESOURCE_IRQ,
752 static struct platform_device bf5xx_nand_device = {
753 .name = "bf5xx-nand",
754 .id = 0,
755 .num_resources = ARRAY_SIZE(bf5xx_nand_resources),
756 .resource = bf5xx_nand_resources,
757 .dev = {
758 .platform_data = &bf5xx_nand_platform,
761 #endif
763 #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
764 static struct bfin_sd_host bfin_sdh_data = {
765 .dma_chan = CH_SDH,
766 .irq_int0 = IRQ_SDH_MASK0,
767 .pin_req = {P_SD_D0, P_SD_D1, P_SD_D2, P_SD_D3, P_SD_CLK, P_SD_CMD, 0},
770 static struct platform_device bf54x_sdh_device = {
771 .name = "bfin-sdh",
772 .id = 0,
773 .dev = {
774 .platform_data = &bfin_sdh_data,
777 #endif
779 #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
780 static unsigned short bfin_can_peripherals[] = {
781 P_CAN0_RX, P_CAN0_TX, 0
784 static struct resource bfin_can_resources[] = {
786 .start = 0xFFC02A00,
787 .end = 0xFFC02FFF,
788 .flags = IORESOURCE_MEM,
791 .start = IRQ_CAN0_RX,
792 .end = IRQ_CAN0_RX,
793 .flags = IORESOURCE_IRQ,
796 .start = IRQ_CAN0_TX,
797 .end = IRQ_CAN0_TX,
798 .flags = IORESOURCE_IRQ,
801 .start = IRQ_CAN0_ERROR,
802 .end = IRQ_CAN0_ERROR,
803 .flags = IORESOURCE_IRQ,
807 static struct platform_device bfin_can_device = {
808 .name = "bfin_can",
809 .num_resources = ARRAY_SIZE(bfin_can_resources),
810 .resource = bfin_can_resources,
811 .dev = {
812 .platform_data = &bfin_can_peripherals, /* Passed to driver */
815 #endif
817 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
818 static struct mtd_partition para_partitions[] = {
820 .name = "bootloader(nor)",
821 .size = 0x40000,
822 .offset = 0,
823 }, {
824 .name = "linux kernel(nor)",
825 .size = 0x100000,
826 .offset = MTDPART_OFS_APPEND,
827 }, {
828 .name = "file system(nor)",
829 .size = MTDPART_SIZ_FULL,
830 .offset = MTDPART_OFS_APPEND,
834 static struct physmap_flash_data para_flash_data = {
835 .width = 2,
836 .parts = para_partitions,
837 .nr_parts = ARRAY_SIZE(para_partitions),
840 static struct resource para_flash_resource = {
841 .start = 0x20000000,
842 .end = 0x207fffff,
843 .flags = IORESOURCE_MEM,
846 static struct platform_device para_flash_device = {
847 .name = "physmap-flash",
848 .id = 0,
849 .dev = {
850 .platform_data = &para_flash_data,
852 .num_resources = 1,
853 .resource = &para_flash_resource,
855 #endif
857 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
858 /* all SPI peripherals info goes here */
859 #if defined(CONFIG_MTD_M25P80) \
860 || defined(CONFIG_MTD_M25P80_MODULE)
861 /* SPI flash chip (m25p16) */
862 static struct mtd_partition bfin_spi_flash_partitions[] = {
864 .name = "bootloader(spi)",
865 .size = 0x00040000,
866 .offset = 0,
867 .mask_flags = MTD_CAP_ROM
868 }, {
869 .name = "linux kernel(spi)",
870 .size = 0x1c0000,
871 .offset = 0x40000
875 static struct flash_platform_data bfin_spi_flash_data = {
876 .name = "m25p80",
877 .parts = bfin_spi_flash_partitions,
878 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
879 .type = "m25p16",
882 static struct bfin5xx_spi_chip spi_flash_chip_info = {
883 .enable_dma = 0, /* use dma transfer with this chip*/
885 #endif
887 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
888 static const struct ad7877_platform_data bfin_ad7877_ts_info = {
889 .model = 7877,
890 .vref_delay_usecs = 50, /* internal, no capacitor */
891 .x_plate_ohms = 419,
892 .y_plate_ohms = 486,
893 .pressure_max = 1000,
894 .pressure_min = 0,
895 .stopacq_polarity = 1,
896 .first_conversion_delay = 3,
897 .acquisition_time = 1,
898 .averaging = 1,
899 .pen_down_acc_interval = 1,
901 #endif
903 static struct spi_board_info bf54x_spi_board_info[] __initdata = {
904 #if defined(CONFIG_MTD_M25P80) \
905 || defined(CONFIG_MTD_M25P80_MODULE)
907 /* the modalias must be the same as spi device driver name */
908 .modalias = "m25p80", /* Name of spi_driver for this device */
909 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
910 .bus_num = 0, /* Framework bus number */
911 .chip_select = 1, /* SPI_SSEL1*/
912 .platform_data = &bfin_spi_flash_data,
913 .controller_data = &spi_flash_chip_info,
914 .mode = SPI_MODE_3,
916 #endif
917 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
919 .modalias = "ad7877",
920 .platform_data = &bfin_ad7877_ts_info,
921 .irq = IRQ_PJ11,
922 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
923 .bus_num = 0,
924 .chip_select = 2,
926 #endif
927 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
929 .modalias = "spidev",
930 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
931 .bus_num = 0,
932 .chip_select = 1,
934 #endif
937 /* SPI (0) */
938 static struct resource bfin_spi0_resource[] = {
939 [0] = {
940 .start = SPI0_REGBASE,
941 .end = SPI0_REGBASE + 0xFF,
942 .flags = IORESOURCE_MEM,
944 [1] = {
945 .start = CH_SPI0,
946 .end = CH_SPI0,
947 .flags = IORESOURCE_DMA,
949 [2] = {
950 .start = IRQ_SPI0,
951 .end = IRQ_SPI0,
952 .flags = IORESOURCE_IRQ,
956 /* SPI (1) */
957 static struct resource bfin_spi1_resource[] = {
958 [0] = {
959 .start = SPI1_REGBASE,
960 .end = SPI1_REGBASE + 0xFF,
961 .flags = IORESOURCE_MEM,
963 [1] = {
964 .start = CH_SPI1,
965 .end = CH_SPI1,
966 .flags = IORESOURCE_DMA,
968 [2] = {
969 .start = IRQ_SPI1,
970 .end = IRQ_SPI1,
971 .flags = IORESOURCE_IRQ,
975 /* SPI controller data */
976 static struct bfin5xx_spi_master bf54x_spi_master_info0 = {
977 .num_chipselect = 4,
978 .enable_dma = 1, /* master has the ability to do dma transfer */
979 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
982 static struct platform_device bf54x_spi_master0 = {
983 .name = "bfin-spi",
984 .id = 0, /* Bus number */
985 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
986 .resource = bfin_spi0_resource,
987 .dev = {
988 .platform_data = &bf54x_spi_master_info0, /* Passed to driver */
992 static struct bfin5xx_spi_master bf54x_spi_master_info1 = {
993 .num_chipselect = 4,
994 .enable_dma = 1, /* master has the ability to do dma transfer */
995 .pin_req = {P_SPI1_SCK, P_SPI1_MISO, P_SPI1_MOSI, 0},
998 static struct platform_device bf54x_spi_master1 = {
999 .name = "bfin-spi",
1000 .id = 1, /* Bus number */
1001 .num_resources = ARRAY_SIZE(bfin_spi1_resource),
1002 .resource = bfin_spi1_resource,
1003 .dev = {
1004 .platform_data = &bf54x_spi_master_info1, /* Passed to driver */
1007 #endif /* spi master and devices */
1009 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
1010 static struct resource bfin_twi0_resource[] = {
1011 [0] = {
1012 .start = TWI0_REGBASE,
1013 .end = TWI0_REGBASE + 0xFF,
1014 .flags = IORESOURCE_MEM,
1016 [1] = {
1017 .start = IRQ_TWI0,
1018 .end = IRQ_TWI0,
1019 .flags = IORESOURCE_IRQ,
1023 static struct platform_device i2c_bfin_twi0_device = {
1024 .name = "i2c-bfin-twi",
1025 .id = 0,
1026 .num_resources = ARRAY_SIZE(bfin_twi0_resource),
1027 .resource = bfin_twi0_resource,
1030 #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */
1031 static struct resource bfin_twi1_resource[] = {
1032 [0] = {
1033 .start = TWI1_REGBASE,
1034 .end = TWI1_REGBASE + 0xFF,
1035 .flags = IORESOURCE_MEM,
1037 [1] = {
1038 .start = IRQ_TWI1,
1039 .end = IRQ_TWI1,
1040 .flags = IORESOURCE_IRQ,
1044 static struct platform_device i2c_bfin_twi1_device = {
1045 .name = "i2c-bfin-twi",
1046 .id = 1,
1047 .num_resources = ARRAY_SIZE(bfin_twi1_resource),
1048 .resource = bfin_twi1_resource,
1050 #endif
1051 #endif
1053 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
1054 #include <linux/gpio_keys.h>
1056 static struct gpio_keys_button bfin_gpio_keys_table[] = {
1057 {BTN_0, GPIO_PH7, 1, "gpio-keys: BTN0"},
1060 static struct gpio_keys_platform_data bfin_gpio_keys_data = {
1061 .buttons = bfin_gpio_keys_table,
1062 .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table),
1065 static struct platform_device bfin_device_gpiokeys = {
1066 .name = "gpio-keys",
1067 .dev = {
1068 .platform_data = &bfin_gpio_keys_data,
1071 #endif
1073 static const unsigned int cclk_vlev_datasheet[] =
1076 * Internal VLEV BF54XSBBC1533
1077 ****temporarily using these values until data sheet is updated
1079 VRPAIR(VLEV_085, 150000000),
1080 VRPAIR(VLEV_090, 250000000),
1081 VRPAIR(VLEV_110, 276000000),
1082 VRPAIR(VLEV_115, 301000000),
1083 VRPAIR(VLEV_120, 525000000),
1084 VRPAIR(VLEV_125, 550000000),
1085 VRPAIR(VLEV_130, 600000000),
1088 static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = {
1089 .tuple_tab = cclk_vlev_datasheet,
1090 .tabsize = ARRAY_SIZE(cclk_vlev_datasheet),
1091 .vr_settling_time = 25 /* us */,
1094 static struct platform_device bfin_dpmc = {
1095 .name = "bfin dpmc",
1096 .dev = {
1097 .platform_data = &bfin_dmpc_vreg_data,
1101 static struct platform_device *cm_bf548_devices[] __initdata = {
1103 &bfin_dpmc,
1105 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
1106 &rtc_device,
1107 #endif
1109 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
1110 #ifdef CONFIG_SERIAL_BFIN_UART0
1111 &bfin_uart0_device,
1112 #endif
1113 #ifdef CONFIG_SERIAL_BFIN_UART1
1114 &bfin_uart1_device,
1115 #endif
1116 #ifdef CONFIG_SERIAL_BFIN_UART2
1117 &bfin_uart2_device,
1118 #endif
1119 #ifdef CONFIG_SERIAL_BFIN_UART3
1120 &bfin_uart3_device,
1121 #endif
1122 #endif
1124 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
1125 #ifdef CONFIG_BFIN_SIR0
1126 &bfin_sir0_device,
1127 #endif
1128 #ifdef CONFIG_BFIN_SIR1
1129 &bfin_sir1_device,
1130 #endif
1131 #ifdef CONFIG_BFIN_SIR2
1132 &bfin_sir2_device,
1133 #endif
1134 #ifdef CONFIG_BFIN_SIR3
1135 &bfin_sir3_device,
1136 #endif
1137 #endif
1139 #if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE)
1140 &bf54x_lq043_device,
1141 #endif
1143 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
1144 &smsc911x_device,
1145 #endif
1147 #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
1148 &musb_device,
1149 #endif
1151 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
1152 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
1153 &bfin_sport0_uart_device,
1154 #endif
1155 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
1156 &bfin_sport1_uart_device,
1157 #endif
1158 #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
1159 &bfin_sport2_uart_device,
1160 #endif
1161 #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
1162 &bfin_sport3_uart_device,
1163 #endif
1164 #endif
1166 #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
1167 &bfin_atapi_device,
1168 #endif
1170 #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
1171 &bf5xx_nand_device,
1172 #endif
1174 #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
1175 &bf54x_sdh_device,
1176 #endif
1178 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
1179 &bf54x_spi_master0,
1180 &bf54x_spi_master1,
1181 #endif
1183 #if defined(CONFIG_KEYBOARD_BFIN) || defined(CONFIG_KEYBOARD_BFIN_MODULE)
1184 &bf54x_kpad_device,
1185 #endif
1187 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
1188 &i2c_bfin_twi0_device,
1189 #if !defined(CONFIG_BF542)
1190 &i2c_bfin_twi1_device,
1191 #endif
1192 #endif
1194 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
1195 &bfin_device_gpiokeys,
1196 #endif
1198 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
1199 &para_flash_device,
1200 #endif
1202 #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
1203 &bfin_can_device,
1204 #endif
1208 static int __init cm_bf548_init(void)
1210 printk(KERN_INFO "%s(): registering device resources\n", __func__);
1211 platform_add_devices(cm_bf548_devices, ARRAY_SIZE(cm_bf548_devices));
1213 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
1214 spi_register_board_info(bf54x_spi_board_info,
1215 ARRAY_SIZE(bf54x_spi_board_info));
1216 #endif
1218 return 0;
1221 arch_initcall(cm_bf548_init);
1223 static struct platform_device *cm_bf548_early_devices[] __initdata = {
1224 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
1225 #ifdef CONFIG_SERIAL_BFIN_UART0
1226 &bfin_uart0_device,
1227 #endif
1228 #ifdef CONFIG_SERIAL_BFIN_UART1
1229 &bfin_uart1_device,
1230 #endif
1231 #ifdef CONFIG_SERIAL_BFIN_UART2
1232 &bfin_uart2_device,
1233 #endif
1234 #ifdef CONFIG_SERIAL_BFIN_UART3
1235 &bfin_uart3_device,
1236 #endif
1237 #endif
1239 #if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
1240 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
1241 &bfin_sport0_uart_device,
1242 #endif
1243 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
1244 &bfin_sport1_uart_device,
1245 #endif
1246 #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
1247 &bfin_sport2_uart_device,
1248 #endif
1249 #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
1250 &bfin_sport3_uart_device,
1251 #endif
1252 #endif
1255 void __init native_machine_early_platform_add_devices(void)
1257 printk(KERN_INFO "register early platform devices\n");
1258 early_platform_add_devices(cm_bf548_early_devices,
1259 ARRAY_SIZE(cm_bf548_early_devices));