Merge branch 'kvm-updates/2.6.37' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[pandora-kernel.git] / arch / blackfin / mach-bf548 / boards / ezkit.c
1 /*
2  * Copyright 2004-2009 Analog Devices Inc.
3  *                2005 National ICT Australia (NICTA)
4  *                      Aidan Williams <aidan@nicta.com.au>
5  *
6  * Licensed under the GPL-2 or later.
7  */
8
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>
21 #include <asm/dma.h>
22 #include <asm/gpio.h>
23 #include <asm/nand.h>
24 #include <asm/dpmc.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>
30
31 /*
32  * Name the Board for the /proc/cpuinfo
33  */
34 const char bfin_board_name[] = "ADI BF548-EZKIT";
35
36 /*
37  *  Driver needs to know address, irq and flag pin.
38  */
39
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[] = {
43         [0] = {
44                 .start  = 0x2C0C0000,
45                 .end    = 0x2C0C0000 + 0xfffff,
46                 .flags  = IORESOURCE_MEM,
47         },
48         [1] = {
49                 .start  = IRQ_PG7,
50                 .end    = IRQ_PG7,
51                 .flags  = IORESOURCE_IRQ,
52         },
53 };
54
55 static struct isp1760_platform_data isp1760_priv = {
56         .is_isp1761 = 0,
57         .bus_width_16 = 1,
58         .port1_otg = 0,
59         .analog_oc = 0,
60         .dack_polarity_high = 0,
61         .dreq_polarity_high = 0,
62 };
63
64 static struct platform_device bfin_isp1760_device = {
65         .name           = "isp1760",
66         .id             = 0,
67         .dev = {
68                 .platform_data = &isp1760_priv,
69         },
70         .num_resources  = ARRAY_SIZE(bfin_isp1760_resources),
71         .resource       = bfin_isp1760_resources,
72 };
73 #endif
74
75 #if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE)
76
77 #include <mach/bf54x-lq043.h>
78
79 static struct bfin_bf54xfb_mach_info bf54x_lq043_data = {
80         .width =        95,
81         .height =       54,
82         .xres =         {480, 480, 480},
83         .yres =         {272, 272, 272},
84         .bpp =          {24, 24, 24},
85         .disp =         GPIO_PE3,
86 };
87
88 static struct resource bf54x_lq043_resources[] = {
89         {
90                 .start = IRQ_EPPI0_ERR,
91                 .end = IRQ_EPPI0_ERR,
92                 .flags = IORESOURCE_IRQ,
93         },
94 };
95
96 static struct platform_device bf54x_lq043_device = {
97         .name           = "bf54x-lq043",
98         .id             = -1,
99         .num_resources  = ARRAY_SIZE(bf54x_lq043_resources),
100         .resource       = bf54x_lq043_resources,
101         .dev            = {
102                 .platform_data = &bf54x_lq043_data,
103         },
104 };
105 #endif
106
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),
111         KEYVAL(0, 2, KEY_0),
112         KEYVAL(0, 3, KEY_BACKSPACE),
113         KEYVAL(1, 0, KEY_TAB),
114         KEYVAL(1, 1, KEY_9),
115         KEYVAL(1, 2, KEY_8),
116         KEYVAL(1, 3, KEY_7),
117         KEYVAL(2, 0, KEY_DOWN),
118         KEYVAL(2, 1, KEY_6),
119         KEYVAL(2, 2, KEY_5),
120         KEYVAL(2, 3, KEY_4),
121         KEYVAL(3, 0, KEY_UP),
122         KEYVAL(3, 1, KEY_3),
123         KEYVAL(3, 2, KEY_2),
124         KEYVAL(3, 3, KEY_1),
125 };
126
127 static struct bfin_kpad_platform_data bf54x_kpad_data = {
128         .rows                   = 4,
129         .cols                   = 4,
130         .keymap                 = bf548_keymap,
131         .keymapsize             = ARRAY_SIZE(bf548_keymap),
132         .repeat                 = 0,
133         .debounce_time          = 5000, /* ns (5ms) */
134         .coldrive_time          = 1000, /* ns (1ms) */
135         .keyup_test_interval    = 50, /* ms (50ms) */
136 };
137
138 static struct resource bf54x_kpad_resources[] = {
139         {
140                 .start = IRQ_KEY,
141                 .end = IRQ_KEY,
142                 .flags = IORESOURCE_IRQ,
143         },
144 };
145
146 static struct platform_device bf54x_kpad_device = {
147         .name           = "bf54x-keys",
148         .id             = -1,
149         .num_resources  = ARRAY_SIZE(bf54x_kpad_resources),
150         .resource       = bf54x_kpad_resources,
151         .dev            = {
152                 .platform_data = &bf54x_kpad_data,
153         },
154 };
155 #endif
156
157 #if defined(CONFIG_INPUT_BFIN_ROTARY) || defined(CONFIG_INPUT_BFIN_ROTARY_MODULE)
158 #include <asm/bfin_rotary.h>
159
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,
167 };
168
169 static struct resource bfin_rotary_resources[] = {
170         {
171                 .start = IRQ_CNT,
172                 .end = IRQ_CNT,
173                 .flags = IORESOURCE_IRQ,
174         },
175 };
176
177 static struct platform_device bfin_rotary_device = {
178         .name           = "bfin-rotary",
179         .id             = -1,
180         .num_resources  = ARRAY_SIZE(bfin_rotary_resources),
181         .resource       = bfin_rotary_resources,
182         .dev            = {
183                 .platform_data = &bfin_rotary_data,
184         },
185 };
186 #endif
187
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 = {
191         .x_axis_offset = 0,
192         .y_axis_offset = 0,
193         .z_axis_offset = 0,
194         .tap_threshold = 0x31,
195         .tap_duration = 0x10,
196         .tap_latency = 0x60,
197         .tap_window = 0xF0,
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,
205         .data_rate = 0x8,
206         .data_range = ADXL_FULL_RES,
207
208         .ev_type = EV_ABS,
209         .ev_code_x = ABS_X,             /* EV_REL */
210         .ev_code_y = ABS_Y,             /* EV_REL */
211         .ev_code_z = ABS_Z,             /* EV_REL */
212
213         .ev_code_tap = {BTN_TOUCH, BTN_TOUCH, BTN_TOUCH}, /* EV_KEY x,y,z */
214
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},
224 };
225 #endif
226
227 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
228 static struct platform_device rtc_device = {
229         .name = "rtc-bfin",
230         .id   = -1,
231 };
232 #endif
233
234 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
235 #ifdef CONFIG_SERIAL_BFIN_UART0
236 static struct resource bfin_uart0_resources[] = {
237         {
238                 .start = UART0_DLL,
239                 .end = UART0_RBR+2,
240                 .flags = IORESOURCE_MEM,
241         },
242         {
243                 .start = IRQ_UART0_RX,
244                 .end = IRQ_UART0_RX+1,
245                 .flags = IORESOURCE_IRQ,
246         },
247         {
248                 .start = IRQ_UART0_ERROR,
249                 .end = IRQ_UART0_ERROR,
250                 .flags = IORESOURCE_IRQ,
251         },
252         {
253                 .start = CH_UART0_TX,
254                 .end = CH_UART0_TX,
255                 .flags = IORESOURCE_DMA,
256         },
257         {
258                 .start = CH_UART0_RX,
259                 .end = CH_UART0_RX,
260                 .flags = IORESOURCE_DMA,
261         },
262 };
263
264 unsigned short bfin_uart0_peripherals[] = {
265         P_UART0_TX, P_UART0_RX, 0
266 };
267
268 static struct platform_device bfin_uart0_device = {
269         .name = "bfin-uart",
270         .id = 0,
271         .num_resources = ARRAY_SIZE(bfin_uart0_resources),
272         .resource = bfin_uart0_resources,
273         .dev = {
274                 .platform_data = &bfin_uart0_peripherals, /* Passed to driver */
275         },
276 };
277 #endif
278 #ifdef CONFIG_SERIAL_BFIN_UART1
279 static struct resource bfin_uart1_resources[] = {
280         {
281                 .start = UART1_DLL,
282                 .end = UART1_RBR+2,
283                 .flags = IORESOURCE_MEM,
284         },
285         {
286                 .start = IRQ_UART1_RX,
287                 .end = IRQ_UART1_RX+1,
288                 .flags = IORESOURCE_IRQ,
289         },
290         {
291                 .start = IRQ_UART1_ERROR,
292                 .end = IRQ_UART1_ERROR,
293                 .flags = IORESOURCE_IRQ,
294         },
295         {
296                 .start = CH_UART1_TX,
297                 .end = CH_UART1_TX,
298                 .flags = IORESOURCE_DMA,
299         },
300         {
301                 .start = CH_UART1_RX,
302                 .end = CH_UART1_RX,
303                 .flags = IORESOURCE_DMA,
304         },
305 #ifdef CONFIG_BFIN_UART1_CTSRTS
306         {       /* CTS pin -- 0 means not supported */
307                 .start = GPIO_PE10,
308                 .end = GPIO_PE10,
309                 .flags = IORESOURCE_IO,
310         },
311         {       /* RTS pin -- 0 means not supported */
312                 .start = GPIO_PE9,
313                 .end = GPIO_PE9,
314                 .flags = IORESOURCE_IO,
315         },
316 #endif
317 };
318
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,
323 #endif
324         0
325 };
326
327 static struct platform_device bfin_uart1_device = {
328         .name = "bfin-uart",
329         .id = 1,
330         .num_resources = ARRAY_SIZE(bfin_uart1_resources),
331         .resource = bfin_uart1_resources,
332         .dev = {
333                 .platform_data = &bfin_uart1_peripherals, /* Passed to driver */
334         },
335 };
336 #endif
337 #ifdef CONFIG_SERIAL_BFIN_UART2
338 static struct resource bfin_uart2_resources[] = {
339         {
340                 .start = UART2_DLL,
341                 .end = UART2_RBR+2,
342                 .flags = IORESOURCE_MEM,
343         },
344         {
345                 .start = IRQ_UART2_RX,
346                 .end = IRQ_UART2_RX+1,
347                 .flags = IORESOURCE_IRQ,
348         },
349         {
350                 .start = IRQ_UART2_ERROR,
351                 .end = IRQ_UART2_ERROR,
352                 .flags = IORESOURCE_IRQ,
353         },
354         {
355                 .start = CH_UART2_TX,
356                 .end = CH_UART2_TX,
357                 .flags = IORESOURCE_DMA,
358         },
359         {
360                 .start = CH_UART2_RX,
361                 .end = CH_UART2_RX,
362                 .flags = IORESOURCE_DMA,
363         },
364 };
365
366 unsigned short bfin_uart2_peripherals[] = {
367         P_UART2_TX, P_UART2_RX, 0
368 };
369
370 static struct platform_device bfin_uart2_device = {
371         .name = "bfin-uart",
372         .id = 2,
373         .num_resources = ARRAY_SIZE(bfin_uart2_resources),
374         .resource = bfin_uart2_resources,
375         .dev = {
376                 .platform_data = &bfin_uart2_peripherals, /* Passed to driver */
377         },
378 };
379 #endif
380 #ifdef CONFIG_SERIAL_BFIN_UART3
381 static struct resource bfin_uart3_resources[] = {
382         {
383                 .start = UART3_DLL,
384                 .end = UART3_RBR+2,
385                 .flags = IORESOURCE_MEM,
386         },
387         {
388                 .start = IRQ_UART3_RX,
389                 .end = IRQ_UART3_RX+1,
390                 .flags = IORESOURCE_IRQ,
391         },
392         {
393                 .start = IRQ_UART3_ERROR,
394                 .end = IRQ_UART3_ERROR,
395                 .flags = IORESOURCE_IRQ,
396         },
397         {
398                 .start = CH_UART3_TX,
399                 .end = CH_UART3_TX,
400                 .flags = IORESOURCE_DMA,
401         },
402         {
403                 .start = CH_UART3_RX,
404                 .end = CH_UART3_RX,
405                 .flags = IORESOURCE_DMA,
406         },
407 #ifdef CONFIG_BFIN_UART3_CTSRTS
408         {       /* CTS pin -- 0 means not supported */
409                 .start = GPIO_PB3,
410                 .end = GPIO_PB3,
411                 .flags = IORESOURCE_IO,
412         },
413         {       /* RTS pin -- 0 means not supported */
414                 .start = GPIO_PB2,
415                 .end = GPIO_PB2,
416                 .flags = IORESOURCE_IO,
417         },
418 #endif
419 };
420
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,
425 #endif
426         0
427 };
428
429 static struct platform_device bfin_uart3_device = {
430         .name = "bfin-uart",
431         .id = 3,
432         .num_resources = ARRAY_SIZE(bfin_uart3_resources),
433         .resource = bfin_uart3_resources,
434         .dev = {
435                 .platform_data = &bfin_uart3_peripherals, /* Passed to driver */
436         },
437 };
438 #endif
439 #endif
440
441 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
442 #ifdef CONFIG_BFIN_SIR0
443 static struct resource bfin_sir0_resources[] = {
444         {
445                 .start = 0xFFC00400,
446                 .end = 0xFFC004FF,
447                 .flags = IORESOURCE_MEM,
448         },
449         {
450                 .start = IRQ_UART0_RX,
451                 .end = IRQ_UART0_RX+1,
452                 .flags = IORESOURCE_IRQ,
453         },
454         {
455                 .start = CH_UART0_RX,
456                 .end = CH_UART0_RX+1,
457                 .flags = IORESOURCE_DMA,
458         },
459 };
460 static struct platform_device bfin_sir0_device = {
461         .name = "bfin_sir",
462         .id = 0,
463         .num_resources = ARRAY_SIZE(bfin_sir0_resources),
464         .resource = bfin_sir0_resources,
465 };
466 #endif
467 #ifdef CONFIG_BFIN_SIR1
468 static struct resource bfin_sir1_resources[] = {
469         {
470                 .start = 0xFFC02000,
471                 .end = 0xFFC020FF,
472                 .flags = IORESOURCE_MEM,
473         },
474         {
475                 .start = IRQ_UART1_RX,
476                 .end = IRQ_UART1_RX+1,
477                 .flags = IORESOURCE_IRQ,
478         },
479         {
480                 .start = CH_UART1_RX,
481                 .end = CH_UART1_RX+1,
482                 .flags = IORESOURCE_DMA,
483         },
484 };
485 static struct platform_device bfin_sir1_device = {
486         .name = "bfin_sir",
487         .id = 1,
488         .num_resources = ARRAY_SIZE(bfin_sir1_resources),
489         .resource = bfin_sir1_resources,
490 };
491 #endif
492 #ifdef CONFIG_BFIN_SIR2
493 static struct resource bfin_sir2_resources[] = {
494         {
495                 .start = 0xFFC02100,
496                 .end = 0xFFC021FF,
497                 .flags = IORESOURCE_MEM,
498         },
499         {
500                 .start = IRQ_UART2_RX,
501                 .end = IRQ_UART2_RX+1,
502                 .flags = IORESOURCE_IRQ,
503         },
504         {
505                 .start = CH_UART2_RX,
506                 .end = CH_UART2_RX+1,
507                 .flags = IORESOURCE_DMA,
508         },
509 };
510 static struct platform_device bfin_sir2_device = {
511         .name = "bfin_sir",
512         .id = 2,
513         .num_resources = ARRAY_SIZE(bfin_sir2_resources),
514         .resource = bfin_sir2_resources,
515 };
516 #endif
517 #ifdef CONFIG_BFIN_SIR3
518 static struct resource bfin_sir3_resources[] = {
519         {
520                 .start = 0xFFC03100,
521                 .end = 0xFFC031FF,
522                 .flags = IORESOURCE_MEM,
523         },
524         {
525                 .start = IRQ_UART3_RX,
526                 .end = IRQ_UART3_RX+1,
527                 .flags = IORESOURCE_IRQ,
528         },
529         {
530                 .start = CH_UART3_RX,
531                 .end = CH_UART3_RX+1,
532                 .flags = IORESOURCE_DMA,
533         },
534 };
535 static struct platform_device bfin_sir3_device = {
536         .name = "bfin_sir",
537         .id = 3,
538         .num_resources = ARRAY_SIZE(bfin_sir3_resources),
539         .resource = bfin_sir3_resources,
540 };
541 #endif
542 #endif
543
544 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
545 #include <linux/smsc911x.h>
546
547 static struct resource smsc911x_resources[] = {
548         {
549                 .name = "smsc911x-memory",
550                 .start = 0x24000000,
551                 .end = 0x24000000 + 0xFF,
552                 .flags = IORESOURCE_MEM,
553         },
554         {
555                 .start = IRQ_PE8,
556                 .end = IRQ_PE8,
557                 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
558         },
559 };
560
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,
566 };
567
568 static struct platform_device smsc911x_device = {
569         .name = "smsc911x",
570         .id = 0,
571         .num_resources = ARRAY_SIZE(smsc911x_resources),
572         .resource = smsc911x_resources,
573         .dev = {
574                 .platform_data = &smsc911x_config,
575         },
576 };
577 #endif
578
579 #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
580 static struct resource musb_resources[] = {
581         [0] = {
582                 .start  = 0xFFC03C00,
583                 .end    = 0xFFC040FF,
584                 .flags  = IORESOURCE_MEM,
585         },
586         [1] = { /* general IRQ */
587                 .start  = IRQ_USB_INT0,
588                 .end    = IRQ_USB_INT0,
589                 .flags  = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
590         },
591         [2] = { /* DMA IRQ */
592                 .start  = IRQ_USB_DMA,
593                 .end    = IRQ_USB_DMA,
594                 .flags  = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
595         },
596 };
597
598 static struct musb_hdrc_config musb_config = {
599         .multipoint     = 0,
600         .dyn_fifo       = 0,
601         .soft_con       = 1,
602         .dma            = 1,
603         .num_eps        = 8,
604         .dma_channels   = 8,
605         .gpio_vrsel     = GPIO_PE7,
606         /* Some custom boards need to be active low, just set it to "0"
607          * if it is the case.
608          */
609         .gpio_vrsel_active      = 1,
610 };
611
612 static struct musb_hdrc_platform_data musb_plat = {
613 #if defined(CONFIG_USB_MUSB_OTG)
614         .mode           = MUSB_OTG,
615 #elif defined(CONFIG_USB_MUSB_HDRC_HCD)
616         .mode           = MUSB_HOST,
617 #elif defined(CONFIG_USB_GADGET_MUSB_HDRC)
618         .mode           = MUSB_PERIPHERAL,
619 #endif
620         .config         = &musb_config,
621 };
622
623 static u64 musb_dmamask = ~(u32)0;
624
625 static struct platform_device musb_device = {
626         .name           = "musb_hdrc",
627         .id             = 0,
628         .dev = {
629                 .dma_mask               = &musb_dmamask,
630                 .coherent_dma_mask      = 0xffffffff,
631                 .platform_data          = &musb_plat,
632         },
633         .num_resources  = ARRAY_SIZE(musb_resources),
634         .resource       = musb_resources,
635 };
636 #endif
637
638 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
639 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
640 static struct resource bfin_sport0_uart_resources[] = {
641         {
642                 .start = SPORT0_TCR1,
643                 .end = SPORT0_MRCS3+4,
644                 .flags = IORESOURCE_MEM,
645         },
646         {
647                 .start = IRQ_SPORT0_RX,
648                 .end = IRQ_SPORT0_RX+1,
649                 .flags = IORESOURCE_IRQ,
650         },
651         {
652                 .start = IRQ_SPORT0_ERROR,
653                 .end = IRQ_SPORT0_ERROR,
654                 .flags = IORESOURCE_IRQ,
655         },
656 };
657
658 unsigned short bfin_sport0_peripherals[] = {
659         P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
660         P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
661 };
662
663 static struct platform_device bfin_sport0_uart_device = {
664         .name = "bfin-sport-uart",
665         .id = 0,
666         .num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
667         .resource = bfin_sport0_uart_resources,
668         .dev = {
669                 .platform_data = &bfin_sport0_peripherals, /* Passed to driver */
670         },
671 };
672 #endif
673 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
674 static struct resource bfin_sport1_uart_resources[] = {
675         {
676                 .start = SPORT1_TCR1,
677                 .end = SPORT1_MRCS3+4,
678                 .flags = IORESOURCE_MEM,
679         },
680         {
681                 .start = IRQ_SPORT1_RX,
682                 .end = IRQ_SPORT1_RX+1,
683                 .flags = IORESOURCE_IRQ,
684         },
685         {
686                 .start = IRQ_SPORT1_ERROR,
687                 .end = IRQ_SPORT1_ERROR,
688                 .flags = IORESOURCE_IRQ,
689         },
690 };
691
692 unsigned short bfin_sport1_peripherals[] = {
693         P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
694         P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
695 };
696
697 static struct platform_device bfin_sport1_uart_device = {
698         .name = "bfin-sport-uart",
699         .id = 1,
700         .num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
701         .resource = bfin_sport1_uart_resources,
702         .dev = {
703                 .platform_data = &bfin_sport1_peripherals, /* Passed to driver */
704         },
705 };
706 #endif
707 #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
708 static struct resource bfin_sport2_uart_resources[] = {
709         {
710                 .start = SPORT2_TCR1,
711                 .end = SPORT2_MRCS3+4,
712                 .flags = IORESOURCE_MEM,
713         },
714         {
715                 .start = IRQ_SPORT2_RX,
716                 .end = IRQ_SPORT2_RX+1,
717                 .flags = IORESOURCE_IRQ,
718         },
719         {
720                 .start = IRQ_SPORT2_ERROR,
721                 .end = IRQ_SPORT2_ERROR,
722                 .flags = IORESOURCE_IRQ,
723         },
724 };
725
726 unsigned short bfin_sport2_peripherals[] = {
727         P_SPORT2_TFS, P_SPORT2_DTPRI, P_SPORT2_TSCLK, P_SPORT2_RFS,
728         P_SPORT2_DRPRI, P_SPORT2_RSCLK, P_SPORT2_DRSEC, P_SPORT2_DTSEC, 0
729 };
730
731 static struct platform_device bfin_sport2_uart_device = {
732         .name = "bfin-sport-uart",
733         .id = 2,
734         .num_resources = ARRAY_SIZE(bfin_sport2_uart_resources),
735         .resource = bfin_sport2_uart_resources,
736         .dev = {
737                 .platform_data = &bfin_sport2_peripherals, /* Passed to driver */
738         },
739 };
740 #endif
741 #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
742 static struct resource bfin_sport3_uart_resources[] = {
743         {
744                 .start = SPORT3_TCR1,
745                 .end = SPORT3_MRCS3+4,
746                 .flags = IORESOURCE_MEM,
747         },
748         {
749                 .start = IRQ_SPORT3_RX,
750                 .end = IRQ_SPORT3_RX+1,
751                 .flags = IORESOURCE_IRQ,
752         },
753         {
754                 .start = IRQ_SPORT3_ERROR,
755                 .end = IRQ_SPORT3_ERROR,
756                 .flags = IORESOURCE_IRQ,
757         },
758 };
759
760 unsigned short bfin_sport3_peripherals[] = {
761         P_SPORT3_TFS, P_SPORT3_DTPRI, P_SPORT3_TSCLK, P_SPORT3_RFS,
762         P_SPORT3_DRPRI, P_SPORT3_RSCLK, P_SPORT3_DRSEC, P_SPORT3_DTSEC, 0
763 };
764
765 static struct platform_device bfin_sport3_uart_device = {
766         .name = "bfin-sport-uart",
767         .id = 3,
768         .num_resources = ARRAY_SIZE(bfin_sport3_uart_resources),
769         .resource = bfin_sport3_uart_resources,
770         .dev = {
771                 .platform_data = &bfin_sport3_peripherals, /* Passed to driver */
772         },
773 };
774 #endif
775 #endif
776
777 #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
778 unsigned short bfin_can_peripherals[] = {
779         P_CAN0_RX, P_CAN0_TX, 0
780 };
781
782 static struct resource bfin_can_resources[] = {
783         {
784                 .start = 0xFFC02A00,
785                 .end = 0xFFC02FFF,
786                 .flags = IORESOURCE_MEM,
787         },
788         {
789                 .start = IRQ_CAN0_RX,
790                 .end = IRQ_CAN0_RX,
791                 .flags = IORESOURCE_IRQ,
792         },
793         {
794                 .start = IRQ_CAN0_TX,
795                 .end = IRQ_CAN0_TX,
796                 .flags = IORESOURCE_IRQ,
797         },
798         {
799                 .start = IRQ_CAN0_ERROR,
800                 .end = IRQ_CAN0_ERROR,
801                 .flags = IORESOURCE_IRQ,
802         },
803 };
804
805 static struct platform_device bfin_can_device = {
806         .name = "bfin_can",
807         .num_resources = ARRAY_SIZE(bfin_can_resources),
808         .resource = bfin_can_resources,
809         .dev = {
810                 .platform_data = &bfin_can_peripherals, /* Passed to driver */
811         },
812 };
813 #endif
814
815 #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
816 static struct resource bfin_atapi_resources[] = {
817         {
818                 .start = 0xFFC03800,
819                 .end = 0xFFC0386F,
820                 .flags = IORESOURCE_MEM,
821         },
822         {
823                 .start = IRQ_ATAPI_ERR,
824                 .end = IRQ_ATAPI_ERR,
825                 .flags = IORESOURCE_IRQ,
826         },
827 };
828
829 static struct platform_device bfin_atapi_device = {
830         .name = "pata-bf54x",
831         .id = -1,
832         .num_resources = ARRAY_SIZE(bfin_atapi_resources),
833         .resource = bfin_atapi_resources,
834 };
835 #endif
836
837 #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
838 static struct mtd_partition partition_info[] = {
839         {
840                 .name = "bootloader(nand)",
841                 .offset = 0,
842                 .size = 0x80000,
843         }, {
844                 .name = "linux kernel(nand)",
845                 .offset = MTDPART_OFS_APPEND,
846                 .size = 4 * 1024 * 1024,
847         },
848         {
849                 .name = "file system(nand)",
850                 .offset = MTDPART_OFS_APPEND,
851                 .size = MTDPART_SIZ_FULL,
852         },
853 };
854
855 static struct bf5xx_nand_platform bf5xx_nand_platform = {
856         .data_width = NFC_NWIDTH_8,
857         .partitions = partition_info,
858         .nr_partitions = ARRAY_SIZE(partition_info),
859         .rd_dly = 3,
860         .wr_dly = 3,
861 };
862
863 static struct resource bf5xx_nand_resources[] = {
864         {
865                 .start = 0xFFC03B00,
866                 .end = 0xFFC03B4F,
867                 .flags = IORESOURCE_MEM,
868         },
869         {
870                 .start = CH_NFC,
871                 .end = CH_NFC,
872                 .flags = IORESOURCE_IRQ,
873         },
874 };
875
876 static struct platform_device bf5xx_nand_device = {
877         .name = "bf5xx-nand",
878         .id = 0,
879         .num_resources = ARRAY_SIZE(bf5xx_nand_resources),
880         .resource = bf5xx_nand_resources,
881         .dev = {
882                 .platform_data = &bf5xx_nand_platform,
883         },
884 };
885 #endif
886
887 #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
888
889 static struct bfin_sd_host bfin_sdh_data = {
890         .dma_chan = CH_SDH,
891         .irq_int0 = IRQ_SDH_MASK0,
892         .pin_req = {P_SD_D0, P_SD_D1, P_SD_D2, P_SD_D3, P_SD_CLK, P_SD_CMD, 0},
893 };
894
895 static struct platform_device bf54x_sdh_device = {
896         .name = "bfin-sdh",
897         .id = 0,
898         .dev = {
899                 .platform_data = &bfin_sdh_data,
900         },
901 };
902 #endif
903
904 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
905 static struct mtd_partition ezkit_partitions[] = {
906         {
907                 .name       = "bootloader(nor)",
908                 .size       = 0x80000,
909                 .offset     = 0,
910         }, {
911                 .name       = "linux kernel(nor)",
912                 .size       = 0x400000,
913                 .offset     = MTDPART_OFS_APPEND,
914         }, {
915                 .name       = "file system(nor)",
916                 .size       = MTDPART_SIZ_FULL,
917                 .offset     = MTDPART_OFS_APPEND,
918         }
919 };
920
921 static struct physmap_flash_data ezkit_flash_data = {
922         .width      = 2,
923         .parts      = ezkit_partitions,
924         .nr_parts   = ARRAY_SIZE(ezkit_partitions),
925 };
926
927 static struct resource ezkit_flash_resource = {
928         .start = 0x20000000,
929         .end   = 0x21ffffff,
930         .flags = IORESOURCE_MEM,
931 };
932
933 static struct platform_device ezkit_flash_device = {
934         .name          = "physmap-flash",
935         .id            = 0,
936         .dev = {
937                 .platform_data = &ezkit_flash_data,
938         },
939         .num_resources = 1,
940         .resource      = &ezkit_flash_resource,
941 };
942 #endif
943
944 #if defined(CONFIG_MTD_M25P80) \
945         || defined(CONFIG_MTD_M25P80_MODULE)
946 /* SPI flash chip (m25p16) */
947 static struct mtd_partition bfin_spi_flash_partitions[] = {
948         {
949                 .name = "bootloader(spi)",
950                 .size = 0x00080000,
951                 .offset = 0,
952                 .mask_flags = MTD_CAP_ROM
953         }, {
954                 .name = "linux kernel(spi)",
955                 .size = MTDPART_SIZ_FULL,
956                 .offset = MTDPART_OFS_APPEND,
957         }
958 };
959
960 static struct flash_platform_data bfin_spi_flash_data = {
961         .name = "m25p80",
962         .parts = bfin_spi_flash_partitions,
963         .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
964         .type = "m25p16",
965 };
966
967 static struct bfin5xx_spi_chip spi_flash_chip_info = {
968         .enable_dma = 0,         /* use dma transfer with this chip*/
969         .bits_per_word = 8,
970 };
971 #endif
972
973 #if defined(CONFIG_SND_BF5XX_SOC_AD183X) \
974         || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE)
975 static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
976         .enable_dma = 0,
977         .bits_per_word = 16,
978 };
979 #endif
980
981 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
982 static struct bfin5xx_spi_chip spi_ad7877_chip_info = {
983         .enable_dma = 0,
984         .bits_per_word = 16,
985 };
986
987 static const struct ad7877_platform_data bfin_ad7877_ts_info = {
988         .model                  = 7877,
989         .vref_delay_usecs       = 50,   /* internal, no capacitor */
990         .x_plate_ohms           = 419,
991         .y_plate_ohms           = 486,
992         .pressure_max           = 1000,
993         .pressure_min           = 0,
994         .stopacq_polarity       = 1,
995         .first_conversion_delay = 3,
996         .acquisition_time       = 1,
997         .averaging              = 1,
998         .pen_down_acc_interval  = 1,
999 };
1000 #endif
1001
1002 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
1003 static struct bfin5xx_spi_chip spidev_chip_info = {
1004         .enable_dma = 0,
1005         .bits_per_word = 8,
1006 };
1007 #endif
1008
1009 #if defined(CONFIG_INPUT_ADXL34X_SPI) || defined(CONFIG_INPUT_ADXL34X_SPI_MODULE)
1010 static struct bfin5xx_spi_chip spi_adxl34x_chip_info = {
1011         .enable_dma = 0,         /* use dma transfer with this chip*/
1012         .bits_per_word = 8,
1013 };
1014 #endif
1015
1016 static struct spi_board_info bfin_spi_board_info[] __initdata = {
1017 #if defined(CONFIG_MTD_M25P80) \
1018         || defined(CONFIG_MTD_M25P80_MODULE)
1019         {
1020                 /* the modalias must be the same as spi device driver name */
1021                 .modalias = "m25p80", /* Name of spi_driver for this device */
1022                 .max_speed_hz = 25000000,     /* max spi clock (SCK) speed in HZ */
1023                 .bus_num = 0, /* Framework bus number */
1024                 .chip_select = 1, /* SPI_SSEL1*/
1025                 .platform_data = &bfin_spi_flash_data,
1026                 .controller_data = &spi_flash_chip_info,
1027                 .mode = SPI_MODE_3,
1028         },
1029 #endif
1030 #if defined(CONFIG_SND_BF5XX_SOC_AD183X) \
1031         || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE)
1032         {
1033                 .modalias = "ad183x",
1034                 .max_speed_hz = 3125000,     /* max spi clock (SCK) speed in HZ */
1035                 .bus_num = 1,
1036                 .chip_select = 4,
1037                 .controller_data = &ad1836_spi_chip_info,
1038         },
1039 #endif
1040 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
1041         {
1042                 .modalias               = "ad7877",
1043                 .platform_data          = &bfin_ad7877_ts_info,
1044                 .irq                    = IRQ_PB4,      /* old boards (<=Rev 1.3) use IRQ_PJ11 */
1045                 .max_speed_hz           = 12500000,     /* max spi clock (SCK) speed in HZ */
1046                 .bus_num                = 0,
1047                 .chip_select            = 2,
1048                 .controller_data = &spi_ad7877_chip_info,
1049         },
1050 #endif
1051 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
1052         {
1053                 .modalias = "spidev",
1054                 .max_speed_hz = 3125000,     /* max spi clock (SCK) speed in HZ */
1055                 .bus_num = 0,
1056                 .chip_select = 1,
1057                 .controller_data = &spidev_chip_info,
1058         },
1059 #endif
1060 #if defined(CONFIG_INPUT_ADXL34X_SPI) || defined(CONFIG_INPUT_ADXL34X_SPI_MODULE)
1061         {
1062                 .modalias               = "adxl34x",
1063                 .platform_data          = &adxl34x_info,
1064                 .irq                    = IRQ_PC5,
1065                 .max_speed_hz           = 5000000,     /* max spi clock (SCK) speed in HZ */
1066                 .bus_num                = 1,
1067                 .chip_select            = 2,
1068                 .controller_data = &spi_adxl34x_chip_info,
1069                 .mode = SPI_MODE_3,
1070         },
1071 #endif
1072 };
1073 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
1074 /* SPI (0) */
1075 static struct resource bfin_spi0_resource[] = {
1076         [0] = {
1077                 .start = SPI0_REGBASE,
1078                 .end   = SPI0_REGBASE + 0xFF,
1079                 .flags = IORESOURCE_MEM,
1080         },
1081         [1] = {
1082                 .start = CH_SPI0,
1083                 .end   = CH_SPI0,
1084                 .flags = IORESOURCE_DMA,
1085         },
1086         [2] = {
1087                 .start = IRQ_SPI0,
1088                 .end   = IRQ_SPI0,
1089                 .flags = IORESOURCE_IRQ,
1090         }
1091 };
1092
1093 /* SPI (1) */
1094 static struct resource bfin_spi1_resource[] = {
1095         [0] = {
1096                 .start = SPI1_REGBASE,
1097                 .end   = SPI1_REGBASE + 0xFF,
1098                 .flags = IORESOURCE_MEM,
1099         },
1100         [1] = {
1101                 .start = CH_SPI1,
1102                 .end   = CH_SPI1,
1103                 .flags = IORESOURCE_DMA,
1104         },
1105         [2] = {
1106                 .start = IRQ_SPI1,
1107                 .end   = IRQ_SPI1,
1108                 .flags = IORESOURCE_IRQ,
1109         }
1110 };
1111
1112 /* SPI controller data */
1113 static struct bfin5xx_spi_master bf54x_spi_master_info0 = {
1114         .num_chipselect = 4,
1115         .enable_dma = 1,  /* master has the ability to do dma transfer */
1116         .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
1117 };
1118
1119 static struct platform_device bf54x_spi_master0 = {
1120         .name = "bfin-spi",
1121         .id = 0, /* Bus number */
1122         .num_resources = ARRAY_SIZE(bfin_spi0_resource),
1123         .resource = bfin_spi0_resource,
1124         .dev = {
1125                 .platform_data = &bf54x_spi_master_info0, /* Passed to driver */
1126                 },
1127 };
1128
1129 static struct bfin5xx_spi_master bf54x_spi_master_info1 = {
1130         .num_chipselect = 4,
1131         .enable_dma = 1,  /* master has the ability to do dma transfer */
1132         .pin_req = {P_SPI1_SCK, P_SPI1_MISO, P_SPI1_MOSI, 0},
1133 };
1134
1135 static struct platform_device bf54x_spi_master1 = {
1136         .name = "bfin-spi",
1137         .id = 1, /* Bus number */
1138         .num_resources = ARRAY_SIZE(bfin_spi1_resource),
1139         .resource = bfin_spi1_resource,
1140         .dev = {
1141                 .platform_data = &bf54x_spi_master_info1, /* Passed to driver */
1142                 },
1143 };
1144 #endif  /* spi master and devices */
1145
1146 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
1147 static struct resource bfin_twi0_resource[] = {
1148         [0] = {
1149                 .start = TWI0_REGBASE,
1150                 .end   = TWI0_REGBASE + 0xFF,
1151                 .flags = IORESOURCE_MEM,
1152         },
1153         [1] = {
1154                 .start = IRQ_TWI0,
1155                 .end   = IRQ_TWI0,
1156                 .flags = IORESOURCE_IRQ,
1157         },
1158 };
1159
1160 static struct platform_device i2c_bfin_twi0_device = {
1161         .name = "i2c-bfin-twi",
1162         .id = 0,
1163         .num_resources = ARRAY_SIZE(bfin_twi0_resource),
1164         .resource = bfin_twi0_resource,
1165 };
1166
1167 #if !defined(CONFIG_BF542)      /* The BF542 only has 1 TWI */
1168 static struct resource bfin_twi1_resource[] = {
1169         [0] = {
1170                 .start = TWI1_REGBASE,
1171                 .end   = TWI1_REGBASE + 0xFF,
1172                 .flags = IORESOURCE_MEM,
1173         },
1174         [1] = {
1175                 .start = IRQ_TWI1,
1176                 .end   = IRQ_TWI1,
1177                 .flags = IORESOURCE_IRQ,
1178         },
1179 };
1180
1181 static struct platform_device i2c_bfin_twi1_device = {
1182         .name = "i2c-bfin-twi",
1183         .id = 1,
1184         .num_resources = ARRAY_SIZE(bfin_twi1_resource),
1185         .resource = bfin_twi1_resource,
1186 };
1187 #endif
1188 #endif
1189
1190 static struct i2c_board_info __initdata bfin_i2c_board_info0[] = {
1191 };
1192
1193 #if !defined(CONFIG_BF542)      /* The BF542 only has 1 TWI */
1194 static struct i2c_board_info __initdata bfin_i2c_board_info1[] = {
1195 #if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE)
1196         {
1197                 I2C_BOARD_INFO("pcf8574_lcd", 0x22),
1198         },
1199 #endif
1200 #if defined(CONFIG_INPUT_PCF8574) || defined(CONFIG_INPUT_PCF8574_MODULE)
1201         {
1202                 I2C_BOARD_INFO("pcf8574_keypad", 0x27),
1203                 .irq = 212,
1204         },
1205 #endif
1206 #if defined(CONFIG_INPUT_ADXL34X_I2C) || defined(CONFIG_INPUT_ADXL34X_I2C_MODULE)
1207         {
1208                 I2C_BOARD_INFO("adxl34x", 0x53),
1209                 .irq = IRQ_PC5,
1210                 .platform_data = (void *)&adxl34x_info,
1211         },
1212 #endif
1213 #if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE)
1214         {
1215                 I2C_BOARD_INFO("ad5252", 0x2f),
1216         },
1217 #endif
1218 };
1219 #endif
1220
1221 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
1222 #include <linux/gpio_keys.h>
1223
1224 static struct gpio_keys_button bfin_gpio_keys_table[] = {
1225         {BTN_0, GPIO_PB8, 1, "gpio-keys: BTN0"},
1226         {BTN_1, GPIO_PB9, 1, "gpio-keys: BTN1"},
1227         {BTN_2, GPIO_PB10, 1, "gpio-keys: BTN2"},
1228         {BTN_3, GPIO_PB11, 1, "gpio-keys: BTN3"},
1229 };
1230
1231 static struct gpio_keys_platform_data bfin_gpio_keys_data = {
1232         .buttons        = bfin_gpio_keys_table,
1233         .nbuttons       = ARRAY_SIZE(bfin_gpio_keys_table),
1234 };
1235
1236 static struct platform_device bfin_device_gpiokeys = {
1237         .name      = "gpio-keys",
1238         .dev = {
1239                 .platform_data = &bfin_gpio_keys_data,
1240         },
1241 };
1242 #endif
1243
1244 static const unsigned int cclk_vlev_datasheet[] =
1245 {
1246 /*
1247  * Internal VLEV BF54XSBBC1533
1248  ****temporarily using these values until data sheet is updated
1249  */
1250         VRPAIR(VLEV_085, 150000000),
1251         VRPAIR(VLEV_090, 250000000),
1252         VRPAIR(VLEV_110, 276000000),
1253         VRPAIR(VLEV_115, 301000000),
1254         VRPAIR(VLEV_120, 525000000),
1255         VRPAIR(VLEV_125, 550000000),
1256         VRPAIR(VLEV_130, 600000000),
1257 };
1258
1259 static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = {
1260         .tuple_tab = cclk_vlev_datasheet,
1261         .tabsize = ARRAY_SIZE(cclk_vlev_datasheet),
1262         .vr_settling_time = 25 /* us */,
1263 };
1264
1265 static struct platform_device bfin_dpmc = {
1266         .name = "bfin dpmc",
1267         .dev = {
1268                 .platform_data = &bfin_dmpc_vreg_data,
1269         },
1270 };
1271
1272 #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
1273 static struct platform_device bfin_i2s = {
1274         .name = "bfin-i2s",
1275         .id = CONFIG_SND_BF5XX_SPORT_NUM,
1276         /* TODO: add platform data here */
1277 };
1278 #endif
1279
1280 #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
1281 static struct platform_device bfin_tdm = {
1282         .name = "bfin-tdm",
1283         .id = CONFIG_SND_BF5XX_SPORT_NUM,
1284         /* TODO: add platform data here */
1285 };
1286 #endif
1287
1288 #if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
1289 static struct platform_device bfin_ac97 = {
1290         .name = "bfin-ac97",
1291         .id = CONFIG_SND_BF5XX_SPORT_NUM,
1292         /* TODO: add platform data here */
1293 };
1294 #endif
1295
1296 static struct platform_device *ezkit_devices[] __initdata = {
1297
1298         &bfin_dpmc,
1299
1300 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
1301         &rtc_device,
1302 #endif
1303
1304 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
1305 #ifdef CONFIG_SERIAL_BFIN_UART0
1306         &bfin_uart0_device,
1307 #endif
1308 #ifdef CONFIG_SERIAL_BFIN_UART1
1309         &bfin_uart1_device,
1310 #endif
1311 #ifdef CONFIG_SERIAL_BFIN_UART2
1312         &bfin_uart2_device,
1313 #endif
1314 #ifdef CONFIG_SERIAL_BFIN_UART3
1315         &bfin_uart3_device,
1316 #endif
1317 #endif
1318
1319 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
1320 #ifdef CONFIG_BFIN_SIR0
1321         &bfin_sir0_device,
1322 #endif
1323 #ifdef CONFIG_BFIN_SIR1
1324         &bfin_sir1_device,
1325 #endif
1326 #ifdef CONFIG_BFIN_SIR2
1327         &bfin_sir2_device,
1328 #endif
1329 #ifdef CONFIG_BFIN_SIR3
1330         &bfin_sir3_device,
1331 #endif
1332 #endif
1333
1334 #if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE)
1335         &bf54x_lq043_device,
1336 #endif
1337
1338 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
1339         &smsc911x_device,
1340 #endif
1341
1342 #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
1343         &musb_device,
1344 #endif
1345
1346 #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
1347         &bfin_isp1760_device,
1348 #endif
1349
1350 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
1351 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
1352         &bfin_sport0_uart_device,
1353 #endif
1354 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
1355         &bfin_sport1_uart_device,
1356 #endif
1357 #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
1358         &bfin_sport2_uart_device,
1359 #endif
1360 #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
1361         &bfin_sport3_uart_device,
1362 #endif
1363 #endif
1364
1365 #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
1366         &bfin_can_device,
1367 #endif
1368
1369 #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
1370         &bfin_atapi_device,
1371 #endif
1372
1373 #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
1374         &bf5xx_nand_device,
1375 #endif
1376
1377 #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
1378         &bf54x_sdh_device,
1379 #endif
1380
1381 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
1382         &bf54x_spi_master0,
1383         &bf54x_spi_master1,
1384 #endif
1385
1386 #if defined(CONFIG_KEYBOARD_BFIN) || defined(CONFIG_KEYBOARD_BFIN_MODULE)
1387         &bf54x_kpad_device,
1388 #endif
1389
1390 #if defined(CONFIG_INPUT_BFIN_ROTARY) || defined(CONFIG_INPUT_BFIN_ROTARY_MODULE)
1391         &bfin_rotary_device,
1392 #endif
1393
1394 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
1395         &i2c_bfin_twi0_device,
1396 #if !defined(CONFIG_BF542)
1397         &i2c_bfin_twi1_device,
1398 #endif
1399 #endif
1400
1401 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
1402         &bfin_device_gpiokeys,
1403 #endif
1404
1405 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
1406         &ezkit_flash_device,
1407 #endif
1408
1409 #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
1410         &bfin_i2s,
1411 #endif
1412
1413 #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
1414         &bfin_tdm,
1415 #endif
1416
1417 #if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
1418         &bfin_ac97,
1419 #endif
1420 };
1421
1422 static int __init ezkit_init(void)
1423 {
1424         printk(KERN_INFO "%s(): registering device resources\n", __func__);
1425
1426         i2c_register_board_info(0, bfin_i2c_board_info0,
1427                                 ARRAY_SIZE(bfin_i2c_board_info0));
1428 #if !defined(CONFIG_BF542)      /* The BF542 only has 1 TWI */
1429         i2c_register_board_info(1, bfin_i2c_board_info1,
1430                                 ARRAY_SIZE(bfin_i2c_board_info1));
1431 #endif
1432
1433         platform_add_devices(ezkit_devices, ARRAY_SIZE(ezkit_devices));
1434
1435         spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
1436
1437         return 0;
1438 }
1439
1440 arch_initcall(ezkit_init);
1441
1442 static struct platform_device *ezkit_early_devices[] __initdata = {
1443 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
1444 #ifdef CONFIG_SERIAL_BFIN_UART0
1445         &bfin_uart0_device,
1446 #endif
1447 #ifdef CONFIG_SERIAL_BFIN_UART1
1448         &bfin_uart1_device,
1449 #endif
1450 #ifdef CONFIG_SERIAL_BFIN_UART2
1451         &bfin_uart2_device,
1452 #endif
1453 #ifdef CONFIG_SERIAL_BFIN_UART3
1454         &bfin_uart3_device,
1455 #endif
1456 #endif
1457
1458 #if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
1459 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
1460         &bfin_sport0_uart_device,
1461 #endif
1462 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
1463         &bfin_sport1_uart_device,
1464 #endif
1465 #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
1466         &bfin_sport2_uart_device,
1467 #endif
1468 #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
1469         &bfin_sport3_uart_device,
1470 #endif
1471 #endif
1472 };
1473
1474 void __init native_machine_early_platform_add_devices(void)
1475 {
1476         printk(KERN_INFO "register early platform devices\n");
1477         early_platform_add_devices(ezkit_early_devices,
1478                 ARRAY_SIZE(ezkit_early_devices));
1479 }