blob: 93595cf35e675800c7042ae464b7f802aaf80c31 [file] [log] [blame]
Roy Huang24a07a12007-07-12 22:41:45 +08001/*
Robin Getz96f10502009-09-24 14:11:24 +00002 * Copyright 2004-2009 Analog Devices Inc.
3 * 2005 National ICT Australia (NICTA)
4 * Aidan Williams <aidan@nicta.com.au>
Roy Huang24a07a12007-07-12 22:41:45 +08005 *
Robin Getz96f10502009-09-24 14:11:24 +00006 * Licensed under the GPL-2 or later.
Roy Huang24a07a12007-07-12 22:41:45 +08007 */
8
9#include <linux/device.h>
10#include <linux/platform_device.h>
11#include <linux/mtd/mtd.h>
12#include <linux/mtd/partitions.h>
Mike Frysingerde8c43f2008-01-24 17:14:04 +080013#include <linux/mtd/physmap.h>
Roy Huang24a07a12007-07-12 22:41:45 +080014#include <linux/spi/spi.h>
15#include <linux/spi/flash.h>
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080016#include <linux/irq.h>
Bryan Wu81d9c7f2008-03-26 10:02:13 +080017#include <linux/i2c.h>
Roy Huang24a07a12007-07-12 22:41:45 +080018#include <linux/interrupt.h>
Bryan Wuc6c4d7b2007-10-11 01:20:06 +080019#include <linux/usb/musb.h>
Roy Huang24a07a12007-07-12 22:41:45 +080020#include <asm/bfin5xx_spi.h>
Bryan Wuc6c4d7b2007-10-11 01:20:06 +080021#include <asm/dma.h>
22#include <asm/gpio.h>
23#include <asm/nand.h>
Michael Hennerich14b03202008-05-07 11:41:26 +080024#include <asm/dpmc.h>
Bryan Wu5d448dd2007-11-12 23:24:42 +080025#include <asm/portmux.h>
Cliff Cai501674a2009-01-07 23:14:38 +080026#include <asm/bfin_sdh.h>
Bryan Wu639f6572008-08-27 10:51:02 +080027#include <mach/bf54x_keys.h>
Bryan Wuc6c4d7b2007-10-11 01:20:06 +080028#include <linux/input.h>
29#include <linux/spi/ad7877.h>
Roy Huang24a07a12007-07-12 22:41:45 +080030
31/*
32 * Name the Board for the /proc/cpuinfo
33 */
Mike Frysingerfe85cad2008-11-18 17:48:22 +080034const char bfin_board_name[] = "ADI BF548-EZKIT";
Roy Huang24a07a12007-07-12 22:41:45 +080035
36/*
37 * Driver needs to know address, irq and flag pin.
38 */
39
Michael Hennerich0a6304a2008-07-26 16:14:57 +080040#if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
Michael Hennerich3f375692008-11-18 17:48:22 +080041#include <linux/usb/isp1760.h>
42static struct resource bfin_isp1760_resources[] = {
Michael Hennerich0a6304a2008-07-26 16:14:57 +080043 [0] = {
Michael Hennerich0a6304a2008-07-26 16:14:57 +080044 .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
Michael Hennerich3f375692008-11-18 17:48:22 +080055static struct isp1760_platform_data isp1760_priv = {
56 .is_isp1761 = 0,
Michael Hennerich3f375692008-11-18 17:48:22 +080057 .bus_width_16 = 1,
58 .port1_otg = 0,
59 .analog_oc = 0,
60 .dack_polarity_high = 0,
61 .dreq_polarity_high = 0,
62};
63
64static struct platform_device bfin_isp1760_device = {
Michael Hennerichc6feb762009-10-15 10:37:33 +000065 .name = "isp1760",
Michael Hennerich0a6304a2008-07-26 16:14:57 +080066 .id = 0,
Michael Hennerich3f375692008-11-18 17:48:22 +080067 .dev = {
68 .platform_data = &isp1760_priv,
69 },
70 .num_resources = ARRAY_SIZE(bfin_isp1760_resources),
71 .resource = bfin_isp1760_resources,
Michael Hennerich0a6304a2008-07-26 16:14:57 +080072};
Michael Hennerich0a6304a2008-07-26 16:14:57 +080073#endif
74
Bryan Wuc6c4d7b2007-10-11 01:20:06 +080075#if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE)
76
Bryan Wu639f6572008-08-27 10:51:02 +080077#include <mach/bf54x-lq043.h>
Bryan Wuc6c4d7b2007-10-11 01:20:06 +080078
79static struct bfin_bf54xfb_mach_info bf54x_lq043_data = {
Stefan Pledl0e101ec2009-07-29 08:09:45 +000080 .width = 95,
81 .height = 54,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +080082 .xres = {480, 480, 480},
83 .yres = {272, 272, 272},
84 .bpp = {24, 24, 24},
85 .disp = GPIO_PE3,
86};
87
88static struct resource bf54x_lq043_resources[] = {
89 {
90 .start = IRQ_EPPI0_ERR,
91 .end = IRQ_EPPI0_ERR,
92 .flags = IORESOURCE_IRQ,
93 },
94};
95
96static 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)
Michael Hennerich8f740ef2007-10-13 00:36:46 -0400108static const unsigned int bf548_keymap[] = {
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800109 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
127static struct bfin_kpad_platform_data bf54x_kpad_data = {
128 .rows = 4,
129 .cols = 4,
Michael Hennerich8f740ef2007-10-13 00:36:46 -0400130 .keymap = bf548_keymap,
131 .keymapsize = ARRAY_SIZE(bf548_keymap),
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800132 .repeat = 0,
133 .debounce_time = 5000, /* ns (5ms) */
134 .coldrive_time = 1000, /* ns (1ms) */
135 .keyup_test_interval = 50, /* ms (50ms) */
136};
137
138static struct resource bf54x_kpad_resources[] = {
139 {
140 .start = IRQ_KEY,
141 .end = IRQ_KEY,
142 .flags = IORESOURCE_IRQ,
143 },
144};
145
146static 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
Michael Hennerichadfc0462009-10-09 07:37:03 +0000157#if defined(CONFIG_INPUT_BFIN_ROTARY) || defined(CONFIG_INPUT_BFIN_ROTARY_MODULE)
Michael Hennerichaca5e4a2008-10-08 14:27:59 +0800158#include <asm/bfin_rotary.h>
159
160static 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
169static struct resource bfin_rotary_resources[] = {
170 {
171 .start = IRQ_CNT,
172 .end = IRQ_CNT,
173 .flags = IORESOURCE_IRQ,
174 },
175};
176
177static 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
Michael Hennerichffc4d8b2009-05-29 15:41:18 +0000188#if defined(CONFIG_INPUT_ADXL34X) || defined(CONFIG_INPUT_ADXL34X_MODULE)
Michael Hennerich57af8ed2009-10-16 12:35:20 +0000189#include <linux/input/adxl34x.h>
Michael Hennerichffc4d8b2009-05-29 15:41:18 +0000190static 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
Michael Hennerich57af8ed2009-10-16 12:35:20 +0000213 .ev_code_tap = {BTN_TOUCH, BTN_TOUCH, BTN_TOUCH}, /* EV_KEY x,y,z */
Michael Hennerichffc4d8b2009-05-29 15:41:18 +0000214
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};
220#endif
221
Roy Huang24a07a12007-07-12 22:41:45 +0800222#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
223static struct platform_device rtc_device = {
224 .name = "rtc-bfin",
225 .id = -1,
226};
227#endif
228
229#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
230static struct resource bfin_uart_resources[] = {
231#ifdef CONFIG_SERIAL_BFIN_UART0
232 {
233 .start = 0xFFC00400,
234 .end = 0xFFC004FF,
235 .flags = IORESOURCE_MEM,
236 },
237#endif
238#ifdef CONFIG_SERIAL_BFIN_UART1
239 {
240 .start = 0xFFC02000,
241 .end = 0xFFC020FF,
242 .flags = IORESOURCE_MEM,
243 },
244#endif
245#ifdef CONFIG_SERIAL_BFIN_UART2
246 {
247 .start = 0xFFC02100,
248 .end = 0xFFC021FF,
249 .flags = IORESOURCE_MEM,
250 },
251#endif
252#ifdef CONFIG_SERIAL_BFIN_UART3
253 {
254 .start = 0xFFC03100,
255 .end = 0xFFC031FF,
Mike Frysingercc2e16b2008-07-19 16:43:51 +0800256 .flags = IORESOURCE_MEM,
Roy Huang24a07a12007-07-12 22:41:45 +0800257 },
258#endif
259};
260
261static struct platform_device bfin_uart_device = {
262 .name = "bfin-uart",
263 .id = 1,
264 .num_resources = ARRAY_SIZE(bfin_uart_resources),
265 .resource = bfin_uart_resources,
266};
267#endif
268
Graf Yang5be36d22008-04-25 03:09:15 +0800269#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
Graf Yang5be36d22008-04-25 03:09:15 +0800270#ifdef CONFIG_BFIN_SIR0
Graf Yang42bd8bc2009-01-07 23:14:39 +0800271static struct resource bfin_sir0_resources[] = {
Graf Yang5be36d22008-04-25 03:09:15 +0800272 {
273 .start = 0xFFC00400,
274 .end = 0xFFC004FF,
275 .flags = IORESOURCE_MEM,
276 },
Graf Yang42bd8bc2009-01-07 23:14:39 +0800277 {
278 .start = IRQ_UART0_RX,
279 .end = IRQ_UART0_RX+1,
280 .flags = IORESOURCE_IRQ,
281 },
282 {
283 .start = CH_UART0_RX,
284 .end = CH_UART0_RX+1,
285 .flags = IORESOURCE_DMA,
286 },
287};
288static struct platform_device bfin_sir0_device = {
289 .name = "bfin_sir",
290 .id = 0,
291 .num_resources = ARRAY_SIZE(bfin_sir0_resources),
292 .resource = bfin_sir0_resources,
293};
Graf Yang5be36d22008-04-25 03:09:15 +0800294#endif
295#ifdef CONFIG_BFIN_SIR1
Graf Yang42bd8bc2009-01-07 23:14:39 +0800296static struct resource bfin_sir1_resources[] = {
Graf Yang5be36d22008-04-25 03:09:15 +0800297 {
298 .start = 0xFFC02000,
299 .end = 0xFFC020FF,
300 .flags = IORESOURCE_MEM,
301 },
Graf Yang42bd8bc2009-01-07 23:14:39 +0800302 {
303 .start = IRQ_UART1_RX,
304 .end = IRQ_UART1_RX+1,
305 .flags = IORESOURCE_IRQ,
306 },
307 {
308 .start = CH_UART1_RX,
309 .end = CH_UART1_RX+1,
310 .flags = IORESOURCE_DMA,
311 },
312};
313static struct platform_device bfin_sir1_device = {
314 .name = "bfin_sir",
315 .id = 1,
316 .num_resources = ARRAY_SIZE(bfin_sir1_resources),
317 .resource = bfin_sir1_resources,
318};
Graf Yang5be36d22008-04-25 03:09:15 +0800319#endif
320#ifdef CONFIG_BFIN_SIR2
Graf Yang42bd8bc2009-01-07 23:14:39 +0800321static struct resource bfin_sir2_resources[] = {
Graf Yang5be36d22008-04-25 03:09:15 +0800322 {
323 .start = 0xFFC02100,
324 .end = 0xFFC021FF,
325 .flags = IORESOURCE_MEM,
326 },
Graf Yang42bd8bc2009-01-07 23:14:39 +0800327 {
328 .start = IRQ_UART2_RX,
329 .end = IRQ_UART2_RX+1,
330 .flags = IORESOURCE_IRQ,
331 },
332 {
333 .start = CH_UART2_RX,
334 .end = CH_UART2_RX+1,
335 .flags = IORESOURCE_DMA,
336 },
337};
338static struct platform_device bfin_sir2_device = {
339 .name = "bfin_sir",
340 .id = 2,
341 .num_resources = ARRAY_SIZE(bfin_sir2_resources),
342 .resource = bfin_sir2_resources,
343};
Graf Yang5be36d22008-04-25 03:09:15 +0800344#endif
345#ifdef CONFIG_BFIN_SIR3
Graf Yang42bd8bc2009-01-07 23:14:39 +0800346static struct resource bfin_sir3_resources[] = {
Graf Yang5be36d22008-04-25 03:09:15 +0800347 {
348 .start = 0xFFC03100,
349 .end = 0xFFC031FF,
350 .flags = IORESOURCE_MEM,
351 },
Graf Yang42bd8bc2009-01-07 23:14:39 +0800352 {
353 .start = IRQ_UART3_RX,
354 .end = IRQ_UART3_RX+1,
355 .flags = IORESOURCE_IRQ,
356 },
357 {
358 .start = CH_UART3_RX,
359 .end = CH_UART3_RX+1,
360 .flags = IORESOURCE_DMA,
361 },
Graf Yang5be36d22008-04-25 03:09:15 +0800362};
Graf Yang42bd8bc2009-01-07 23:14:39 +0800363static struct platform_device bfin_sir3_device = {
Graf Yang5be36d22008-04-25 03:09:15 +0800364 .name = "bfin_sir",
Graf Yang42bd8bc2009-01-07 23:14:39 +0800365 .id = 3,
366 .num_resources = ARRAY_SIZE(bfin_sir3_resources),
367 .resource = bfin_sir3_resources,
Graf Yang5be36d22008-04-25 03:09:15 +0800368};
369#endif
Graf Yang42bd8bc2009-01-07 23:14:39 +0800370#endif
Graf Yang5be36d22008-04-25 03:09:15 +0800371
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800372#if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
Mike Frysinger7a8b71d2009-06-05 20:41:17 -0400373#include <linux/smsc911x.h>
374
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800375static struct resource smsc911x_resources[] = {
376 {
377 .name = "smsc911x-memory",
378 .start = 0x24000000,
379 .end = 0x24000000 + 0xFF,
380 .flags = IORESOURCE_MEM,
381 },
382 {
383 .start = IRQ_PE8,
384 .end = IRQ_PE8,
385 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
386 },
387};
Mike Frysinger7a8b71d2009-06-05 20:41:17 -0400388
389static struct smsc911x_platform_config smsc911x_config = {
390 .flags = SMSC911X_USE_32BIT,
391 .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
392 .irq_type = SMSC911X_IRQ_TYPE_OPEN_DRAIN,
393 .phy_interface = PHY_INTERFACE_MODE_MII,
394};
395
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800396static struct platform_device smsc911x_device = {
397 .name = "smsc911x",
398 .id = 0,
399 .num_resources = ARRAY_SIZE(smsc911x_resources),
400 .resource = smsc911x_resources,
Mike Frysinger7a8b71d2009-06-05 20:41:17 -0400401 .dev = {
402 .platform_data = &smsc911x_config,
403 },
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800404};
405#endif
406
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800407#if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
408static struct resource musb_resources[] = {
409 [0] = {
410 .start = 0xFFC03C00,
411 .end = 0xFFC040FF,
412 .flags = IORESOURCE_MEM,
413 },
414 [1] = { /* general IRQ */
415 .start = IRQ_USB_INT0,
416 .end = IRQ_USB_INT0,
417 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
418 },
419 [2] = { /* DMA IRQ */
420 .start = IRQ_USB_DMA,
421 .end = IRQ_USB_DMA,
422 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
423 },
424};
425
Bryan Wu50041ac2008-10-08 13:39:40 +0800426static struct musb_hdrc_config musb_config = {
427 .multipoint = 0,
428 .dyn_fifo = 0,
429 .soft_con = 1,
430 .dma = 1,
Bryan Wufea05da2009-01-07 23:14:39 +0800431 .num_eps = 8,
432 .dma_channels = 8,
Bryan Wu50041ac2008-10-08 13:39:40 +0800433 .gpio_vrsel = GPIO_PE7,
434};
435
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800436static struct musb_hdrc_platform_data musb_plat = {
Bryan Wu29350772007-12-24 12:20:19 +0800437#if defined(CONFIG_USB_MUSB_OTG)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800438 .mode = MUSB_OTG,
Bryan Wu29350772007-12-24 12:20:19 +0800439#elif defined(CONFIG_USB_MUSB_HDRC_HCD)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800440 .mode = MUSB_HOST,
Bryan Wu29350772007-12-24 12:20:19 +0800441#elif defined(CONFIG_USB_GADGET_MUSB_HDRC)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800442 .mode = MUSB_PERIPHERAL,
443#endif
Bryan Wu50041ac2008-10-08 13:39:40 +0800444 .config = &musb_config,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800445};
446
447static u64 musb_dmamask = ~(u32)0;
448
449static struct platform_device musb_device = {
450 .name = "musb_hdrc",
451 .id = 0,
452 .dev = {
453 .dma_mask = &musb_dmamask,
454 .coherent_dma_mask = 0xffffffff,
455 .platform_data = &musb_plat,
456 },
457 .num_resources = ARRAY_SIZE(musb_resources),
458 .resource = musb_resources,
459};
460#endif
461
462#if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
463static struct resource bfin_atapi_resources[] = {
464 {
465 .start = 0xFFC03800,
466 .end = 0xFFC0386F,
467 .flags = IORESOURCE_MEM,
468 },
469 {
470 .start = IRQ_ATAPI_ERR,
471 .end = IRQ_ATAPI_ERR,
472 .flags = IORESOURCE_IRQ,
473 },
474};
475
476static struct platform_device bfin_atapi_device = {
477 .name = "pata-bf54x",
478 .id = -1,
479 .num_resources = ARRAY_SIZE(bfin_atapi_resources),
480 .resource = bfin_atapi_resources,
481};
482#endif
483
484#if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
485static struct mtd_partition partition_info[] = {
486 {
Robin Getzaa582972008-08-05 17:47:29 +0800487 .name = "linux kernel(nand)",
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800488 .offset = 0,
Mike Frysingerf4585a02008-10-13 14:45:21 +0800489 .size = 4 * 1024 * 1024,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800490 },
491 {
Robin Getzaa582972008-08-05 17:47:29 +0800492 .name = "file system(nand)",
Mike Frysingeredf05642008-02-25 11:38:11 +0800493 .offset = MTDPART_OFS_APPEND,
494 .size = MTDPART_SIZ_FULL,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800495 },
496};
497
498static struct bf5xx_nand_platform bf5xx_nand_platform = {
499 .page_size = NFC_PG_SIZE_256,
500 .data_width = NFC_NWIDTH_8,
501 .partitions = partition_info,
502 .nr_partitions = ARRAY_SIZE(partition_info),
503 .rd_dly = 3,
504 .wr_dly = 3,
505};
506
507static struct resource bf5xx_nand_resources[] = {
508 {
509 .start = 0xFFC03B00,
510 .end = 0xFFC03B4F,
511 .flags = IORESOURCE_MEM,
512 },
513 {
514 .start = CH_NFC,
515 .end = CH_NFC,
516 .flags = IORESOURCE_IRQ,
517 },
518};
519
520static struct platform_device bf5xx_nand_device = {
521 .name = "bf5xx-nand",
522 .id = 0,
523 .num_resources = ARRAY_SIZE(bf5xx_nand_resources),
524 .resource = bf5xx_nand_resources,
525 .dev = {
526 .platform_data = &bf5xx_nand_platform,
527 },
528};
529#endif
530
Michael Hennerich3d7e6cf2008-03-03 17:40:28 -0700531#if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
Cliff Cai501674a2009-01-07 23:14:38 +0800532
533static struct bfin_sd_host bfin_sdh_data = {
534 .dma_chan = CH_SDH,
535 .irq_int0 = IRQ_SDH_MASK0,
536 .pin_req = {P_SD_D0, P_SD_D1, P_SD_D2, P_SD_D3, P_SD_CLK, P_SD_CMD, 0},
537};
538
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800539static struct platform_device bf54x_sdh_device = {
540 .name = "bfin-sdh",
541 .id = 0,
Cliff Cai501674a2009-01-07 23:14:38 +0800542 .dev = {
543 .platform_data = &bfin_sdh_data,
544 },
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800545};
546#endif
547
Mike Frysinger793dc272008-03-26 08:09:12 +0800548#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800549static struct mtd_partition ezkit_partitions[] = {
550 {
Robin Getzaa582972008-08-05 17:47:29 +0800551 .name = "bootloader(nor)",
Mike Frysingeredf05642008-02-25 11:38:11 +0800552 .size = 0x40000,
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800553 .offset = 0,
554 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800555 .name = "linux kernel(nor)",
Mike Frysinger664d0402008-10-09 17:28:36 +0800556 .size = 0x400000,
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800557 .offset = MTDPART_OFS_APPEND,
558 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800559 .name = "file system(nor)",
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800560 .size = MTDPART_SIZ_FULL,
561 .offset = MTDPART_OFS_APPEND,
562 }
563};
564
565static struct physmap_flash_data ezkit_flash_data = {
566 .width = 2,
567 .parts = ezkit_partitions,
568 .nr_parts = ARRAY_SIZE(ezkit_partitions),
569};
570
571static struct resource ezkit_flash_resource = {
572 .start = 0x20000000,
Mike Frysinger664d0402008-10-09 17:28:36 +0800573 .end = 0x21ffffff,
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800574 .flags = IORESOURCE_MEM,
575};
576
577static struct platform_device ezkit_flash_device = {
578 .name = "physmap-flash",
579 .id = 0,
580 .dev = {
581 .platform_data = &ezkit_flash_data,
582 },
583 .num_resources = 1,
584 .resource = &ezkit_flash_resource,
585};
Mike Frysinger793dc272008-03-26 08:09:12 +0800586#endif
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800587
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800588#if defined(CONFIG_MTD_M25P80) \
589 || defined(CONFIG_MTD_M25P80_MODULE)
590/* SPI flash chip (m25p16) */
591static struct mtd_partition bfin_spi_flash_partitions[] = {
592 {
Robin Getzaa582972008-08-05 17:47:29 +0800593 .name = "bootloader(spi)",
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800594 .size = 0x00040000,
595 .offset = 0,
596 .mask_flags = MTD_CAP_ROM
597 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800598 .name = "linux kernel(spi)",
Mike Frysingeredf05642008-02-25 11:38:11 +0800599 .size = MTDPART_SIZ_FULL,
600 .offset = MTDPART_OFS_APPEND,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800601 }
602};
603
604static struct flash_platform_data bfin_spi_flash_data = {
605 .name = "m25p80",
606 .parts = bfin_spi_flash_partitions,
607 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
608 .type = "m25p16",
609};
610
611static struct bfin5xx_spi_chip spi_flash_chip_info = {
612 .enable_dma = 0, /* use dma transfer with this chip*/
613 .bits_per_word = 8,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800614};
615#endif
616
Bernd Schmidt37fa2422008-04-24 05:19:02 +0800617#if defined(CONFIG_SND_BLACKFIN_AD1836) \
618 || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
619static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
620 .enable_dma = 0,
621 .bits_per_word = 16,
622};
623#endif
624
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800625#if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
626static struct bfin5xx_spi_chip spi_ad7877_chip_info = {
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800627 .enable_dma = 0,
628 .bits_per_word = 16,
629};
630
631static const struct ad7877_platform_data bfin_ad7877_ts_info = {
632 .model = 7877,
633 .vref_delay_usecs = 50, /* internal, no capacitor */
634 .x_plate_ohms = 419,
635 .y_plate_ohms = 486,
636 .pressure_max = 1000,
637 .pressure_min = 0,
638 .stopacq_polarity = 1,
639 .first_conversion_delay = 3,
640 .acquisition_time = 1,
641 .averaging = 1,
642 .pen_down_acc_interval = 1,
643};
644#endif
645
Michael Hennerich6e668932008-02-09 01:54:09 +0800646#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
647static struct bfin5xx_spi_chip spidev_chip_info = {
648 .enable_dma = 0,
649 .bits_per_word = 8,
650};
651#endif
652
Michael Hennerichffc4d8b2009-05-29 15:41:18 +0000653#if defined(CONFIG_INPUT_ADXL34X_SPI) || defined(CONFIG_INPUT_ADXL34X_SPI_MODULE)
654static struct bfin5xx_spi_chip spi_adxl34x_chip_info = {
655 .enable_dma = 0, /* use dma transfer with this chip*/
656 .bits_per_word = 8,
Michael Hennerichffc4d8b2009-05-29 15:41:18 +0000657};
658#endif
659
Mike Frysinger5bda2722008-06-07 15:03:01 +0800660static struct spi_board_info bfin_spi_board_info[] __initdata = {
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800661#if defined(CONFIG_MTD_M25P80) \
662 || defined(CONFIG_MTD_M25P80_MODULE)
663 {
664 /* the modalias must be the same as spi device driver name */
665 .modalias = "m25p80", /* Name of spi_driver for this device */
666 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
667 .bus_num = 0, /* Framework bus number */
668 .chip_select = 1, /* SPI_SSEL1*/
669 .platform_data = &bfin_spi_flash_data,
670 .controller_data = &spi_flash_chip_info,
671 .mode = SPI_MODE_3,
672 },
673#endif
Bernd Schmidt37fa2422008-04-24 05:19:02 +0800674#if defined(CONFIG_SND_BLACKFIN_AD1836) \
675 || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
676 {
Barry Songdac98172009-08-13 21:07:37 +0000677 .modalias = "ad1836",
Bernd Schmidt37fa2422008-04-24 05:19:02 +0800678 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
679 .bus_num = 1,
680 .chip_select = CONFIG_SND_BLACKFIN_SPI_PFBIT,
681 .controller_data = &ad1836_spi_chip_info,
682 },
683#endif
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800684#if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
Michael Hennerichffc4d8b2009-05-29 15:41:18 +0000685 {
686 .modalias = "ad7877",
687 .platform_data = &bfin_ad7877_ts_info,
688 .irq = IRQ_PB4, /* old boards (<=Rev 1.3) use IRQ_PJ11 */
689 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
690 .bus_num = 0,
691 .chip_select = 2,
692 .controller_data = &spi_ad7877_chip_info,
693 },
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800694#endif
Michael Hennerich6e668932008-02-09 01:54:09 +0800695#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
696 {
697 .modalias = "spidev",
698 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
699 .bus_num = 0,
700 .chip_select = 1,
701 .controller_data = &spidev_chip_info,
702 },
703#endif
Michael Hennerichffc4d8b2009-05-29 15:41:18 +0000704#if defined(CONFIG_INPUT_ADXL34X_SPI) || defined(CONFIG_INPUT_ADXL34X_SPI_MODULE)
705 {
706 .modalias = "adxl34x",
707 .platform_data = &adxl34x_info,
708 .irq = IRQ_PC5,
709 .max_speed_hz = 5000000, /* max spi clock (SCK) speed in HZ */
710 .bus_num = 1,
711 .chip_select = 2,
712 .controller_data = &spi_adxl34x_chip_info,
713 .mode = SPI_MODE_3,
714 },
715#endif
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800716};
Mike Frysinger5bda2722008-06-07 15:03:01 +0800717#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800718/* SPI (0) */
719static struct resource bfin_spi0_resource[] = {
720 [0] = {
721 .start = SPI0_REGBASE,
722 .end = SPI0_REGBASE + 0xFF,
723 .flags = IORESOURCE_MEM,
724 },
725 [1] = {
726 .start = CH_SPI0,
727 .end = CH_SPI0,
Yi Li53122692009-06-05 12:11:11 +0000728 .flags = IORESOURCE_DMA,
729 },
730 [2] = {
731 .start = IRQ_SPI0,
732 .end = IRQ_SPI0,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800733 .flags = IORESOURCE_IRQ,
734 }
735};
736
737/* SPI (1) */
738static struct resource bfin_spi1_resource[] = {
739 [0] = {
740 .start = SPI1_REGBASE,
741 .end = SPI1_REGBASE + 0xFF,
742 .flags = IORESOURCE_MEM,
743 },
744 [1] = {
745 .start = CH_SPI1,
746 .end = CH_SPI1,
Yi Li53122692009-06-05 12:11:11 +0000747 .flags = IORESOURCE_DMA,
748 },
749 [2] = {
750 .start = IRQ_SPI1,
751 .end = IRQ_SPI1,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800752 .flags = IORESOURCE_IRQ,
753 }
754};
755
756/* SPI controller data */
Bryan Wu5d448dd2007-11-12 23:24:42 +0800757static struct bfin5xx_spi_master bf54x_spi_master_info0 = {
Yi Li4e4d4962009-08-30 20:45:50 +0000758 .num_chipselect = 3,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800759 .enable_dma = 1, /* master has the ability to do dma transfer */
Bryan Wu5d448dd2007-11-12 23:24:42 +0800760 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800761};
762
763static struct platform_device bf54x_spi_master0 = {
764 .name = "bfin-spi",
765 .id = 0, /* Bus number */
766 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
767 .resource = bfin_spi0_resource,
768 .dev = {
Bryan Wu5d448dd2007-11-12 23:24:42 +0800769 .platform_data = &bf54x_spi_master_info0, /* Passed to driver */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800770 },
771};
772
Bryan Wu5d448dd2007-11-12 23:24:42 +0800773static struct bfin5xx_spi_master bf54x_spi_master_info1 = {
Yi Li4e4d4962009-08-30 20:45:50 +0000774 .num_chipselect = 3,
Bryan Wu5d448dd2007-11-12 23:24:42 +0800775 .enable_dma = 1, /* master has the ability to do dma transfer */
776 .pin_req = {P_SPI1_SCK, P_SPI1_MISO, P_SPI1_MOSI, 0},
777};
778
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800779static struct platform_device bf54x_spi_master1 = {
780 .name = "bfin-spi",
781 .id = 1, /* Bus number */
782 .num_resources = ARRAY_SIZE(bfin_spi1_resource),
783 .resource = bfin_spi1_resource,
784 .dev = {
Bryan Wu5d448dd2007-11-12 23:24:42 +0800785 .platform_data = &bf54x_spi_master_info1, /* Passed to driver */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800786 },
787};
788#endif /* spi master and devices */
789
790#if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
791static struct resource bfin_twi0_resource[] = {
792 [0] = {
793 .start = TWI0_REGBASE,
794 .end = TWI0_REGBASE + 0xFF,
795 .flags = IORESOURCE_MEM,
796 },
797 [1] = {
798 .start = IRQ_TWI0,
799 .end = IRQ_TWI0,
800 .flags = IORESOURCE_IRQ,
801 },
802};
803
804static struct platform_device i2c_bfin_twi0_device = {
805 .name = "i2c-bfin-twi",
806 .id = 0,
807 .num_resources = ARRAY_SIZE(bfin_twi0_resource),
808 .resource = bfin_twi0_resource,
809};
810
Mike Frysinger7160e9502007-11-21 16:03:07 +0800811#if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800812static struct resource bfin_twi1_resource[] = {
813 [0] = {
814 .start = TWI1_REGBASE,
815 .end = TWI1_REGBASE + 0xFF,
816 .flags = IORESOURCE_MEM,
817 },
818 [1] = {
819 .start = IRQ_TWI1,
820 .end = IRQ_TWI1,
821 .flags = IORESOURCE_IRQ,
822 },
823};
824
825static struct platform_device i2c_bfin_twi1_device = {
826 .name = "i2c-bfin-twi",
827 .id = 1,
828 .num_resources = ARRAY_SIZE(bfin_twi1_resource),
829 .resource = bfin_twi1_resource,
830};
831#endif
Mike Frysinger7160e9502007-11-21 16:03:07 +0800832#endif
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800833
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800834static struct i2c_board_info __initdata bfin_i2c_board_info0[] = {
835};
836
837#if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */
838static struct i2c_board_info __initdata bfin_i2c_board_info1[] = {
Michael Hennerichebd58332009-07-02 11:00:38 +0000839#if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE)
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800840 {
841 I2C_BOARD_INFO("pcf8574_lcd", 0x22),
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800842 },
843#endif
Michael Hennerich204844e2009-06-30 14:57:22 +0000844#if defined(CONFIG_INPUT_PCF8574) || defined(CONFIG_INPUT_PCF8574_MODULE)
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800845 {
846 I2C_BOARD_INFO("pcf8574_keypad", 0x27),
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800847 .irq = 212,
848 },
849#endif
Michael Hennerichffc4d8b2009-05-29 15:41:18 +0000850#if defined(CONFIG_INPUT_ADXL34X_I2C) || defined(CONFIG_INPUT_ADXL34X_I2C_MODULE)
851 {
852 I2C_BOARD_INFO("adxl34x", 0x53),
853 .irq = IRQ_PC5,
854 .platform_data = (void *)&adxl34x_info,
855 },
856#endif
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800857};
858#endif
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800859
Michael Hennerich2463ef22008-01-27 16:49:48 +0800860#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
861#include <linux/gpio_keys.h>
862
863static struct gpio_keys_button bfin_gpio_keys_table[] = {
864 {BTN_0, GPIO_PB8, 1, "gpio-keys: BTN0"},
865 {BTN_1, GPIO_PB9, 1, "gpio-keys: BTN1"},
866 {BTN_2, GPIO_PB10, 1, "gpio-keys: BTN2"},
867 {BTN_3, GPIO_PB11, 1, "gpio-keys: BTN3"},
868};
869
870static struct gpio_keys_platform_data bfin_gpio_keys_data = {
871 .buttons = bfin_gpio_keys_table,
872 .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table),
873};
874
875static struct platform_device bfin_device_gpiokeys = {
876 .name = "gpio-keys",
877 .dev = {
878 .platform_data = &bfin_gpio_keys_data,
879 },
880};
881#endif
882
Michael Hennerich14b03202008-05-07 11:41:26 +0800883static const unsigned int cclk_vlev_datasheet[] =
884{
885/*
886 * Internal VLEV BF54XSBBC1533
887 ****temporarily using these values until data sheet is updated
888 */
889 VRPAIR(VLEV_085, 150000000),
890 VRPAIR(VLEV_090, 250000000),
891 VRPAIR(VLEV_110, 276000000),
892 VRPAIR(VLEV_115, 301000000),
893 VRPAIR(VLEV_120, 525000000),
894 VRPAIR(VLEV_125, 550000000),
895 VRPAIR(VLEV_130, 600000000),
896};
897
898static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = {
899 .tuple_tab = cclk_vlev_datasheet,
900 .tabsize = ARRAY_SIZE(cclk_vlev_datasheet),
901 .vr_settling_time = 25 /* us */,
902};
903
904static struct platform_device bfin_dpmc = {
905 .name = "bfin dpmc",
906 .dev = {
907 .platform_data = &bfin_dmpc_vreg_data,
908 },
909};
910
Roy Huang24a07a12007-07-12 22:41:45 +0800911static struct platform_device *ezkit_devices[] __initdata = {
Michael Hennerich14b03202008-05-07 11:41:26 +0800912
913 &bfin_dpmc,
914
Roy Huang24a07a12007-07-12 22:41:45 +0800915#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
916 &rtc_device,
917#endif
918
919#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
920 &bfin_uart_device,
921#endif
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800922
Graf Yang5be36d22008-04-25 03:09:15 +0800923#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
Graf Yang42bd8bc2009-01-07 23:14:39 +0800924#ifdef CONFIG_BFIN_SIR0
925 &bfin_sir0_device,
926#endif
927#ifdef CONFIG_BFIN_SIR1
928 &bfin_sir1_device,
929#endif
930#ifdef CONFIG_BFIN_SIR2
931 &bfin_sir2_device,
932#endif
933#ifdef CONFIG_BFIN_SIR3
934 &bfin_sir3_device,
935#endif
Graf Yang5be36d22008-04-25 03:09:15 +0800936#endif
937
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800938#if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE)
939 &bf54x_lq043_device,
940#endif
941
942#if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
943 &smsc911x_device,
944#endif
945
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800946#if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
947 &musb_device,
948#endif
949
Michael Hennerich3f375692008-11-18 17:48:22 +0800950#if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
951 &bfin_isp1760_device,
952#endif
953
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800954#if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
955 &bfin_atapi_device,
956#endif
957
958#if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
959 &bf5xx_nand_device,
960#endif
961
Michael Hennerich3d7e6cf2008-03-03 17:40:28 -0700962#if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800963 &bf54x_sdh_device,
964#endif
965
966#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
967 &bf54x_spi_master0,
Bryan Wud4b1d272007-10-21 17:03:55 +0800968 &bf54x_spi_master1,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800969#endif
970
971#if defined(CONFIG_KEYBOARD_BFIN) || defined(CONFIG_KEYBOARD_BFIN_MODULE)
972 &bf54x_kpad_device,
973#endif
974
Michael Hennerichadfc0462009-10-09 07:37:03 +0000975#if defined(CONFIG_INPUT_BFIN_ROTARY) || defined(CONFIG_INPUT_BFIN_ROTARY_MODULE)
Michael Hennerichaca5e4a2008-10-08 14:27:59 +0800976 &bfin_rotary_device,
977#endif
978
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800979#if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
980 &i2c_bfin_twi0_device,
Mike Frysinger7160e9502007-11-21 16:03:07 +0800981#if !defined(CONFIG_BF542)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800982 &i2c_bfin_twi1_device,
983#endif
Mike Frysinger7160e9502007-11-21 16:03:07 +0800984#endif
Michael Hennerich2463ef22008-01-27 16:49:48 +0800985
986#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
987 &bfin_device_gpiokeys,
988#endif
Mike Frysingercad2ab62008-02-22 17:01:31 +0800989
Mike Frysinger793dc272008-03-26 08:09:12 +0800990#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800991 &ezkit_flash_device,
Mike Frysinger793dc272008-03-26 08:09:12 +0800992#endif
Roy Huang24a07a12007-07-12 22:41:45 +0800993};
994
Mike Frysingera01d7a72008-02-02 15:34:56 +0800995static int __init ezkit_init(void)
Roy Huang24a07a12007-07-12 22:41:45 +0800996{
Harvey Harrisonb85d8582008-04-23 09:39:01 +0800997 printk(KERN_INFO "%s(): registering device resources\n", __func__);
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800998
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800999 i2c_register_board_info(0, bfin_i2c_board_info0,
1000 ARRAY_SIZE(bfin_i2c_board_info0));
1001#if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */
1002 i2c_register_board_info(1, bfin_i2c_board_info1,
1003 ARRAY_SIZE(bfin_i2c_board_info1));
1004#endif
Bryan Wu81d9c7f2008-03-26 10:02:13 +08001005
Roy Huang24a07a12007-07-12 22:41:45 +08001006 platform_add_devices(ezkit_devices, ARRAY_SIZE(ezkit_devices));
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001007
Mike Frysinger5bda2722008-06-07 15:03:01 +08001008 spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
Bryan Wuc6c4d7b2007-10-11 01:20:06 +08001009
Roy Huang24a07a12007-07-12 22:41:45 +08001010 return 0;
1011}
1012
Mike Frysingera01d7a72008-02-02 15:34:56 +08001013arch_initcall(ezkit_init);