blob: f667e7704197995ce186a61400d7ee19334fb491 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
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>
Bryan Wu1394f032007-05-06 14:50:22 -07005 *
Robin Getz96f10502009-09-24 14:11:24 +00006 * Licensed under the GPL-2 or later.
Bryan Wu1394f032007-05-06 14:50:22 -07007 */
8
9#include <linux/device.h>
10#include <linux/platform_device.h>
Mike Frysingerde8c43f2008-01-24 17:14:04 +080011#include <linux/mtd/mtd.h>
12#include <linux/mtd/partitions.h>
13#include <linux/mtd/physmap.h>
Bryan Wu1394f032007-05-06 14:50:22 -070014#include <linux/spi/spi.h>
Michael Hennerich140a9ae2007-05-21 18:09:13 +080015#include <linux/irq.h>
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080016#include <linux/interrupt.h>
Barry Song027285e2010-06-28 08:39:37 +000017#include <linux/delay.h>
Bryan Wuc6c4d7b2007-10-11 01:20:06 +080018#include <asm/dma.h>
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080019#include <asm/bfin5xx_spi.h>
Bryan Wu5d448dd2007-11-12 23:24:42 +080020#include <asm/portmux.h>
Michael Hennerich14b03202008-05-07 11:41:26 +080021#include <asm/dpmc.h>
Bryan Wu1394f032007-05-06 14:50:22 -070022
23/*
24 * Name the Board for the /proc/cpuinfo
25 */
Mike Frysingerfe85cad2008-11-18 17:48:22 +080026const char bfin_board_name[] = "ADI BF561-EZKIT";
Bryan Wu1394f032007-05-06 14:50:22 -070027
Michael Hennerich140a9ae2007-05-21 18:09:13 +080028#if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
Michael Hennerich3f375692008-11-18 17:48:22 +080029#include <linux/usb/isp1760.h>
30static struct resource bfin_isp1760_resources[] = {
31 [0] = {
32 .start = 0x2C0F0000,
33 .end = 0x203C0000 + 0xfffff,
Michael Hennerich140a9ae2007-05-21 18:09:13 +080034 .flags = IORESOURCE_MEM,
35 },
Michael Hennerich3f375692008-11-18 17:48:22 +080036 [1] = {
37 .start = IRQ_PF10,
38 .end = IRQ_PF10,
Michael Hennerich140a9ae2007-05-21 18:09:13 +080039 .flags = IORESOURCE_IRQ,
40 },
41};
42
Michael Hennerich3f375692008-11-18 17:48:22 +080043static struct isp1760_platform_data isp1760_priv = {
44 .is_isp1761 = 0,
Michael Hennerich3f375692008-11-18 17:48:22 +080045 .bus_width_16 = 1,
46 .port1_otg = 0,
47 .analog_oc = 0,
48 .dack_polarity_high = 0,
49 .dreq_polarity_high = 0,
50};
51
52static struct platform_device bfin_isp1760_device = {
Michael Hennerichc6feb762009-10-15 10:37:33 +000053 .name = "isp1760",
Michael Hennerich140a9ae2007-05-21 18:09:13 +080054 .id = 0,
Michael Hennerich3f375692008-11-18 17:48:22 +080055 .dev = {
56 .platform_data = &isp1760_priv,
57 },
58 .num_resources = ARRAY_SIZE(bfin_isp1760_resources),
59 .resource = bfin_isp1760_resources,
Michael Hennerich140a9ae2007-05-21 18:09:13 +080060};
Michael Hennerich140a9ae2007-05-21 18:09:13 +080061#endif
62
Michael Henneriche9d76c22008-02-02 14:55:28 +080063#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
64#include <linux/usb/isp1362.h>
65
66static struct resource isp1362_hcd_resources[] = {
67 {
68 .start = 0x2c060000,
69 .end = 0x2c060000,
70 .flags = IORESOURCE_MEM,
71 }, {
72 .start = 0x2c060004,
73 .end = 0x2c060004,
74 .flags = IORESOURCE_MEM,
75 }, {
76 .start = IRQ_PF8,
77 .end = IRQ_PF8,
Michael Hennerich9e758942010-03-18 12:51:49 +000078 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWEDGE,
Michael Henneriche9d76c22008-02-02 14:55:28 +080079 },
80};
81
82static struct isp1362_platform_data isp1362_priv = {
83 .sel15Kres = 1,
84 .clknotstop = 0,
85 .oc_enable = 0,
86 .int_act_high = 0,
87 .int_edge_triggered = 0,
88 .remote_wakeup_connected = 0,
89 .no_power_switching = 1,
90 .power_switching_mode = 0,
91};
92
93static struct platform_device isp1362_hcd_device = {
94 .name = "isp1362-hcd",
95 .id = 0,
96 .dev = {
97 .platform_data = &isp1362_priv,
98 },
99 .num_resources = ARRAY_SIZE(isp1362_hcd_resources),
100 .resource = isp1362_hcd_resources,
101};
102#endif
103
Michael Hennerich83d9cde2008-02-02 16:25:17 +0800104#if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
105static struct resource net2272_bfin_resources[] = {
106 {
107 .start = 0x2C000000,
108 .end = 0x2C000000 + 0x7F,
109 .flags = IORESOURCE_MEM,
110 }, {
111 .start = IRQ_PF10,
112 .end = IRQ_PF10,
113 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
114 },
115};
116
117static struct platform_device net2272_bfin_device = {
118 .name = "net2272",
119 .id = -1,
120 .num_resources = ARRAY_SIZE(net2272_bfin_resources),
121 .resource = net2272_bfin_resources,
122};
123#endif
124
Bryan Wu1394f032007-05-06 14:50:22 -0700125/*
126 * USB-LAN EzExtender board
127 * Driver needs to know address, irq and flag pin.
128 */
129#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
Michael Hennerich61f09b52009-07-24 08:48:31 +0000130#include <linux/smc91x.h>
131
132static struct smc91x_platdata smc91x_info = {
133 .flags = SMC91X_USE_32BIT | SMC91X_NOWAIT,
134 .leda = RPC_LED_100_10,
135 .ledb = RPC_LED_TX_RX,
136};
137
Bryan Wu1394f032007-05-06 14:50:22 -0700138static struct resource smc91x_resources[] = {
139 {
140 .name = "smc91x-regs",
141 .start = 0x2C010300,
142 .end = 0x2C010300 + 16,
143 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800144 }, {
Bryan Wu1394f032007-05-06 14:50:22 -0700145
146 .start = IRQ_PF9,
147 .end = IRQ_PF9,
148 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
149 },
150};
151
152static struct platform_device smc91x_device = {
153 .name = "smc91x",
154 .id = 0,
155 .num_resources = ARRAY_SIZE(smc91x_resources),
156 .resource = smc91x_resources,
Michael Hennerich61f09b52009-07-24 08:48:31 +0000157 .dev = {
158 .platform_data = &smc91x_info,
159 },
Bryan Wu1394f032007-05-06 14:50:22 -0700160};
161#endif
162
163#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000164#ifdef CONFIG_SERIAL_BFIN_UART0
165static struct resource bfin_uart0_resources[] = {
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800166 {
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000167 .start = BFIN_UART_THR,
168 .end = BFIN_UART_GCTL+2,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800169 .flags = IORESOURCE_MEM,
170 },
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000171 {
172 .start = IRQ_UART_RX,
173 .end = IRQ_UART_RX+1,
174 .flags = IORESOURCE_IRQ,
175 },
176 {
177 .start = IRQ_UART_ERROR,
178 .end = IRQ_UART_ERROR,
179 .flags = IORESOURCE_IRQ,
180 },
181 {
182 .start = CH_UART_TX,
183 .end = CH_UART_TX,
184 .flags = IORESOURCE_DMA,
185 },
186 {
187 .start = CH_UART_RX,
188 .end = CH_UART_RX,
189 .flags = IORESOURCE_DMA,
190 },
Bryan Wu1394f032007-05-06 14:50:22 -0700191};
192
Mike Frysingera8b19882010-11-24 09:23:04 +0000193static unsigned short bfin_uart0_peripherals[] = {
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000194 P_UART0_TX, P_UART0_RX, 0
Bryan Wu1394f032007-05-06 14:50:22 -0700195};
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000196
197static struct platform_device bfin_uart0_device = {
198 .name = "bfin-uart",
199 .id = 0,
200 .num_resources = ARRAY_SIZE(bfin_uart0_resources),
201 .resource = bfin_uart0_resources,
202 .dev = {
203 .platform_data = &bfin_uart0_peripherals, /* Passed to driver */
204 },
205};
206#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700207#endif
208
Graf Yang5be36d22008-04-25 03:09:15 +0800209#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
Graf Yang5be36d22008-04-25 03:09:15 +0800210#ifdef CONFIG_BFIN_SIR0
Graf Yang42bd8bc2009-01-07 23:14:39 +0800211static struct resource bfin_sir0_resources[] = {
Graf Yang5be36d22008-04-25 03:09:15 +0800212 {
213 .start = 0xFFC00400,
214 .end = 0xFFC004FF,
215 .flags = IORESOURCE_MEM,
216 },
Graf Yang42bd8bc2009-01-07 23:14:39 +0800217 {
218 .start = IRQ_UART0_RX,
219 .end = IRQ_UART0_RX+1,
220 .flags = IORESOURCE_IRQ,
221 },
222 {
223 .start = CH_UART0_RX,
224 .end = CH_UART0_RX+1,
225 .flags = IORESOURCE_DMA,
226 },
Graf Yang5be36d22008-04-25 03:09:15 +0800227};
228
Graf Yang42bd8bc2009-01-07 23:14:39 +0800229static struct platform_device bfin_sir0_device = {
Graf Yang5be36d22008-04-25 03:09:15 +0800230 .name = "bfin_sir",
231 .id = 0,
Graf Yang42bd8bc2009-01-07 23:14:39 +0800232 .num_resources = ARRAY_SIZE(bfin_sir0_resources),
233 .resource = bfin_sir0_resources,
Graf Yang5be36d22008-04-25 03:09:15 +0800234};
235#endif
Graf Yang42bd8bc2009-01-07 23:14:39 +0800236#endif
Graf Yang5be36d22008-04-25 03:09:15 +0800237
Mike Frysinger793dc272008-03-26 08:09:12 +0800238#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800239static struct mtd_partition ezkit_partitions[] = {
240 {
Robin Getzaa582972008-08-05 17:47:29 +0800241 .name = "bootloader(nor)",
Mike Frysingeredf05642008-02-25 11:38:11 +0800242 .size = 0x40000,
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800243 .offset = 0,
244 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800245 .name = "linux kernel(nor)",
Grace Panac76d882008-04-24 06:33:56 +0800246 .size = 0x1C0000,
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800247 .offset = MTDPART_OFS_APPEND,
248 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800249 .name = "file system(nor)",
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800250 .size = MTDPART_SIZ_FULL,
251 .offset = MTDPART_OFS_APPEND,
252 }
253};
254
255static struct physmap_flash_data ezkit_flash_data = {
256 .width = 2,
257 .parts = ezkit_partitions,
258 .nr_parts = ARRAY_SIZE(ezkit_partitions),
259};
260
261static struct resource ezkit_flash_resource = {
262 .start = 0x20000000,
263 .end = 0x207fffff,
264 .flags = IORESOURCE_MEM,
265};
266
267static struct platform_device ezkit_flash_device = {
268 .name = "physmap-flash",
269 .id = 0,
270 .dev = {
271 .platform_data = &ezkit_flash_data,
272 },
273 .num_resources = 1,
274 .resource = &ezkit_flash_resource,
275};
Mike Frysinger793dc272008-03-26 08:09:12 +0800276#endif
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800277
Barry Song7ba80062010-01-28 09:37:21 +0000278#if defined(CONFIG_SND_BF5XX_SOC_AD183X) \
279 || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE)
Bryan Wu1394f032007-05-06 14:50:22 -0700280static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
281 .enable_dma = 0,
282 .bits_per_word = 16,
283};
284#endif
Michael Hennerich6e668932008-02-09 01:54:09 +0800285
286#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
287static struct bfin5xx_spi_chip spidev_chip_info = {
288 .enable_dma = 0,
289 .bits_per_word = 8,
290};
291#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700292
Mike Frysinger5bda2722008-06-07 15:03:01 +0800293#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800294/* SPI (0) */
295static struct resource bfin_spi0_resource[] = {
296 [0] = {
297 .start = SPI0_REGBASE,
298 .end = SPI0_REGBASE + 0xFF,
299 .flags = IORESOURCE_MEM,
300 },
301 [1] = {
302 .start = CH_SPI,
303 .end = CH_SPI,
Yi Li53122692009-06-05 12:11:11 +0000304 .flags = IORESOURCE_DMA,
305 },
306 [2] = {
307 .start = IRQ_SPI,
308 .end = IRQ_SPI,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800309 .flags = IORESOURCE_IRQ,
310 }
311};
312
Bryan Wu1394f032007-05-06 14:50:22 -0700313/* SPI controller data */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800314static struct bfin5xx_spi_master bfin_spi0_info = {
Bryan Wu1394f032007-05-06 14:50:22 -0700315 .num_chipselect = 8,
316 .enable_dma = 1, /* master has the ability to do dma transfer */
Bryan Wu5d448dd2007-11-12 23:24:42 +0800317 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
Bryan Wu1394f032007-05-06 14:50:22 -0700318};
319
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800320static struct platform_device bfin_spi0_device = {
321 .name = "bfin-spi",
322 .id = 0, /* Bus number */
323 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
324 .resource = bfin_spi0_resource,
Bryan Wu1394f032007-05-06 14:50:22 -0700325 .dev = {
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800326 .platform_data = &bfin_spi0_info, /* Passed to driver */
Bryan Wu1394f032007-05-06 14:50:22 -0700327 },
328};
Mike Frysinger5bda2722008-06-07 15:03:01 +0800329#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700330
331static struct spi_board_info bfin_spi_board_info[] __initdata = {
Barry Song7ba80062010-01-28 09:37:21 +0000332#if defined(CONFIG_SND_BF5XX_SOC_AD183X) \
333 || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE)
Bryan Wu1394f032007-05-06 14:50:22 -0700334 {
Barry Song7ba80062010-01-28 09:37:21 +0000335 .modalias = "ad183x",
Bryan Wu1394f032007-05-06 14:50:22 -0700336 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800337 .bus_num = 0,
Barry Song7ba80062010-01-28 09:37:21 +0000338 .chip_select = 4,
Barry Song027285e2010-06-28 08:39:37 +0000339 .platform_data = "ad1836", /* only includes chip name for the moment */
Bryan Wu1394f032007-05-06 14:50:22 -0700340 .controller_data = &ad1836_spi_chip_info,
Barry Song027285e2010-06-28 08:39:37 +0000341 .mode = SPI_MODE_3,
Bryan Wu1394f032007-05-06 14:50:22 -0700342 },
343#endif
Michael Hennerich6e668932008-02-09 01:54:09 +0800344#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
345 {
346 .modalias = "spidev",
347 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
348 .bus_num = 0,
349 .chip_select = 1,
350 .controller_data = &spidev_chip_info,
351 },
352#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700353};
354
Michael Hennerich2463ef22008-01-27 16:49:48 +0800355#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
356#include <linux/input.h>
357#include <linux/gpio_keys.h>
358
359static struct gpio_keys_button bfin_gpio_keys_table[] = {
360 {BTN_0, GPIO_PF5, 1, "gpio-keys: BTN0"},
361 {BTN_1, GPIO_PF6, 1, "gpio-keys: BTN1"},
362 {BTN_2, GPIO_PF7, 1, "gpio-keys: BTN2"},
363 {BTN_3, GPIO_PF8, 1, "gpio-keys: BTN3"},
364};
365
366static struct gpio_keys_platform_data bfin_gpio_keys_data = {
367 .buttons = bfin_gpio_keys_table,
368 .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table),
369};
370
371static struct platform_device bfin_device_gpiokeys = {
372 .name = "gpio-keys",
373 .dev = {
374 .platform_data = &bfin_gpio_keys_data,
375 },
376};
377#endif
378
Bryan Wue3163952008-01-24 16:19:15 +0800379#if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
380#include <linux/i2c-gpio.h>
381
382static struct i2c_gpio_platform_data i2c_gpio_data = {
Mike Frysinger3d7dc882010-07-02 21:02:50 +0000383 .sda_pin = GPIO_PF1,
384 .scl_pin = GPIO_PF0,
Bryan Wue3163952008-01-24 16:19:15 +0800385 .sda_is_open_drain = 0,
386 .scl_is_open_drain = 0,
387 .udelay = 40,
388};
389
390static struct platform_device i2c_gpio_device = {
391 .name = "i2c-gpio",
392 .id = 0,
393 .dev = {
394 .platform_data = &i2c_gpio_data,
395 },
396};
397#endif
398
Michael Hennerich14b03202008-05-07 11:41:26 +0800399static const unsigned int cclk_vlev_datasheet[] =
400{
401 VRPAIR(VLEV_085, 250000000),
402 VRPAIR(VLEV_090, 300000000),
403 VRPAIR(VLEV_095, 313000000),
404 VRPAIR(VLEV_100, 350000000),
405 VRPAIR(VLEV_105, 400000000),
406 VRPAIR(VLEV_110, 444000000),
407 VRPAIR(VLEV_115, 450000000),
408 VRPAIR(VLEV_120, 475000000),
409 VRPAIR(VLEV_125, 500000000),
410 VRPAIR(VLEV_130, 600000000),
411};
412
413static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = {
414 .tuple_tab = cclk_vlev_datasheet,
415 .tabsize = ARRAY_SIZE(cclk_vlev_datasheet),
416 .vr_settling_time = 25 /* us */,
417};
418
419static struct platform_device bfin_dpmc = {
420 .name = "bfin dpmc",
421 .dev = {
422 .platform_data = &bfin_dmpc_vreg_data,
423 },
424};
425
Barry Song027285e2010-06-28 08:39:37 +0000426#if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
427static struct platform_device bfin_i2s = {
428 .name = "bfin-i2s",
429 .id = CONFIG_SND_BF5XX_SPORT_NUM,
430 /* TODO: add platform data here */
431};
432#endif
433
434#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
435static struct platform_device bfin_tdm = {
436 .name = "bfin-tdm",
437 .id = CONFIG_SND_BF5XX_SPORT_NUM,
438 /* TODO: add platform data here */
439};
440#endif
441
442#if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
443static struct platform_device bfin_ac97 = {
444 .name = "bfin-ac97",
445 .id = CONFIG_SND_BF5XX_SPORT_NUM,
446 /* TODO: add platform data here */
447};
448#endif
449
Bryan Wu1394f032007-05-06 14:50:22 -0700450static struct platform_device *ezkit_devices[] __initdata = {
Michael Hennerich14b03202008-05-07 11:41:26 +0800451
452 &bfin_dpmc,
453
Bryan Wu1394f032007-05-06 14:50:22 -0700454#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
455 &smc91x_device,
456#endif
Michael Hennerich561cc182007-11-17 23:56:08 +0800457
Michael Hennerich83d9cde2008-02-02 16:25:17 +0800458#if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
459 &net2272_bfin_device,
460#endif
461
Michael Hennerich3f375692008-11-18 17:48:22 +0800462#if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
463 &bfin_isp1760_device,
464#endif
465
Bryan Wu1394f032007-05-06 14:50:22 -0700466#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800467 &bfin_spi0_device,
Bryan Wu1394f032007-05-06 14:50:22 -0700468#endif
Michael Hennerich2463ef22008-01-27 16:49:48 +0800469
Bryan Wu1394f032007-05-06 14:50:22 -0700470#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000471#ifdef CONFIG_SERIAL_BFIN_UART0
472 &bfin_uart0_device,
473#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700474#endif
Michael Hennerich2463ef22008-01-27 16:49:48 +0800475
Graf Yang5be36d22008-04-25 03:09:15 +0800476#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
Graf Yang42bd8bc2009-01-07 23:14:39 +0800477#ifdef CONFIG_BFIN_SIR0
478 &bfin_sir0_device,
479#endif
Graf Yang5be36d22008-04-25 03:09:15 +0800480#endif
481
Michael Hennerich2463ef22008-01-27 16:49:48 +0800482#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
483 &bfin_device_gpiokeys,
484#endif
Bryan Wue3163952008-01-24 16:19:15 +0800485
486#if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
487 &i2c_gpio_device,
488#endif
Michael Henneriche9d76c22008-02-02 14:55:28 +0800489
490#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
491 &isp1362_hcd_device,
492#endif
493
Mike Frysinger793dc272008-03-26 08:09:12 +0800494#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800495 &ezkit_flash_device,
Mike Frysinger793dc272008-03-26 08:09:12 +0800496#endif
Barry Song027285e2010-06-28 08:39:37 +0000497
498#if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
499 &bfin_i2s,
500#endif
501
502#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
503 &bfin_tdm,
504#endif
505
506#if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
507 &bfin_ac97,
508#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700509};
510
511static int __init ezkit_init(void)
512{
513 int ret;
514
Mike Frysingerc0fc5252007-05-21 18:09:25 +0800515 printk(KERN_INFO "%s(): registering device resources\n", __func__);
516
517 ret = platform_add_devices(ezkit_devices, ARRAY_SIZE(ezkit_devices));
Bryan Wu1394f032007-05-06 14:50:22 -0700518 if (ret < 0)
519 return ret;
Mike Frysingerc0fc5252007-05-21 18:09:25 +0800520
521#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
522 bfin_write_FIO0_DIR(bfin_read_FIO0_DIR() | (1 << 12));
523 SSYNC();
524#endif
525
Barry Song027285e2010-06-28 08:39:37 +0000526#if defined(CONFIG_SND_BF5XX_SOC_AD183X) || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE)
527 bfin_write_FIO0_DIR(bfin_read_FIO0_DIR() | (1 << 15));
528 bfin_write_FIO0_FLAG_S(1 << 15);
529 SSYNC();
530 /*
531 * This initialization lasts for approximately 4500 MCLKs.
532 * MCLK = 12.288MHz
533 */
534 udelay(400);
535#endif
536
Mike Frysinger5bda2722008-06-07 15:03:01 +0800537 spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800538 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -0700539}
540
541arch_initcall(ezkit_init);
Sonic Zhangc13ce9f2009-09-23 09:37:46 +0000542
543static struct platform_device *ezkit_early_devices[] __initdata = {
544#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
545#ifdef CONFIG_SERIAL_BFIN_UART0
546 &bfin_uart0_device,
547#endif
548#endif
549};
550
551void __init native_machine_early_platform_add_devices(void)
552{
553 printk(KERN_INFO "register early platform devices\n");
554 early_platform_add_devices(ezkit_early_devices,
555 ARRAY_SIZE(ezkit_early_devices));
556}