blob: 63b0e4fe760cd558d20a2f8359c1c975180b9c11 [file] [log] [blame]
Benjamin Matthews130de7c2008-08-14 14:55:54 +08001/*
Robin Getz96f10502009-09-24 14:11:24 +00002 * Board Info File for the BlackStamp
Benjamin Matthews130de7c2008-08-14 14:55:54 +08003 *
Benjamin Matthews130de7c2008-08-14 14:55:54 +08004 * Copyright 2004-2008 Analog Devices Inc.
Robin Getz96f10502009-09-24 14:11:24 +00005 * 2008 Benjamin Matthews <bmat@lle.rochester.edu>
6 * 2005 National ICT Australia (NICTA)
7 * Aidan Williams <aidan@nicta.com.au>
Benjamin Matthews130de7c2008-08-14 14:55:54 +08008 *
9 * More info about the BlackStamp at:
10 * http://blackfin.uclinux.org/gf/project/blackstamp/
11 *
12 * Licensed under the GPL-2 or later.
13 */
14
15#include <linux/device.h>
16#include <linux/platform_device.h>
17#include <linux/mtd/mtd.h>
18#include <linux/mtd/partitions.h>
19#include <linux/mtd/physmap.h>
20#include <linux/spi/spi.h>
21#include <linux/spi/flash.h>
22#include <linux/irq.h>
23#include <linux/i2c.h>
24#include <asm/dma.h>
25#include <asm/bfin5xx_spi.h>
26#include <asm/portmux.h>
27#include <asm/dpmc.h>
28
29/*
30 * Name the Board for the /proc/cpuinfo
31 */
32const char bfin_board_name[] = "BlackStamp";
33
Steven Miaoc4a2c582014-04-12 02:07:27 +080034#if IS_ENABLED(CONFIG_RTC_DRV_BFIN)
Benjamin Matthews130de7c2008-08-14 14:55:54 +080035static struct platform_device rtc_device = {
36 .name = "rtc-bfin",
37 .id = -1,
38};
39#endif
40
41/*
42 * Driver needs to know address, irq and flag pin.
43 */
Steven Miaoc4a2c582014-04-12 02:07:27 +080044#if IS_ENABLED(CONFIG_SMC91X)
Michael Hennerich61f09b52009-07-24 08:48:31 +000045#include <linux/smc91x.h>
46
47static struct smc91x_platdata smc91x_info = {
48 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
49 .leda = RPC_LED_100_10,
50 .ledb = RPC_LED_TX_RX,
51};
52
Benjamin Matthews130de7c2008-08-14 14:55:54 +080053static struct resource smc91x_resources[] = {
54 {
55 .name = "smc91x-regs",
56 .start = 0x20300300,
57 .end = 0x20300300 + 16,
58 .flags = IORESOURCE_MEM,
59 }, {
60 .start = IRQ_PF3,
61 .end = IRQ_PF3,
62 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
63 },
64};
65
66static struct platform_device smc91x_device = {
67 .name = "smc91x",
68 .id = 0,
69 .num_resources = ARRAY_SIZE(smc91x_resources),
70 .resource = smc91x_resources,
Michael Hennerich61f09b52009-07-24 08:48:31 +000071 .dev = {
72 .platform_data = &smc91x_info,
73 },
Benjamin Matthews130de7c2008-08-14 14:55:54 +080074};
75#endif
76
Steven Miaoc4a2c582014-04-12 02:07:27 +080077#if IS_ENABLED(CONFIG_MTD_M25P80)
Benjamin Matthews130de7c2008-08-14 14:55:54 +080078static struct mtd_partition bfin_spi_flash_partitions[] = {
79 {
80 .name = "bootloader(spi)",
81 .size = 0x00040000,
82 .offset = 0,
83 .mask_flags = MTD_CAP_ROM
84 }, {
85 .name = "linux kernel(spi)",
86 .size = 0x180000,
87 .offset = MTDPART_OFS_APPEND,
88 }, {
89 .name = "file system(spi)",
90 .size = MTDPART_SIZ_FULL,
91 .offset = MTDPART_OFS_APPEND,
92 }
93};
94
95static struct flash_platform_data bfin_spi_flash_data = {
96 .name = "m25p80",
97 .parts = bfin_spi_flash_partitions,
98 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
99 .type = "m25p64",
100};
101
102/* SPI flash chip (m25p64) */
103static struct bfin5xx_spi_chip spi_flash_chip_info = {
104 .enable_dma = 0, /* use dma transfer with this chip*/
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800105};
106#endif
107
Steven Miaoc4a2c582014-04-12 02:07:27 +0800108#if IS_ENABLED(CONFIG_MMC_SPI)
Michael Hennerichf3f704d2009-03-06 00:27:57 +0800109static struct bfin5xx_spi_chip mmc_spi_chip_info = {
110 .enable_dma = 0,
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800111};
112#endif
113
114static struct spi_board_info bfin_spi_board_info[] __initdata = {
Steven Miaoc4a2c582014-04-12 02:07:27 +0800115#if IS_ENABLED(CONFIG_MTD_M25P80)
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800116 {
117 /* the modalias must be the same as spi device driver name */
118 .modalias = "m25p80", /* Name of spi_driver for this device */
119 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
120 .bus_num = 0, /* Framework bus number */
121 .chip_select = 2, /* Framework chip select. */
122 .platform_data = &bfin_spi_flash_data,
123 .controller_data = &spi_flash_chip_info,
124 .mode = SPI_MODE_3,
125 },
126#endif
127
Steven Miaoc4a2c582014-04-12 02:07:27 +0800128#if IS_ENABLED(CONFIG_MMC_SPI)
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800129 {
Michael Hennerichf3f704d2009-03-06 00:27:57 +0800130 .modalias = "mmc_spi",
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800131 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
132 .bus_num = 0,
Michael Hennerichf3f704d2009-03-06 00:27:57 +0800133 .chip_select = 5,
134 .controller_data = &mmc_spi_chip_info,
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800135 .mode = SPI_MODE_3,
136 },
137#endif
138
Steven Miaoc4a2c582014-04-12 02:07:27 +0800139#if IS_ENABLED(CONFIG_SPI_SPIDEV)
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800140 {
141 .modalias = "spidev",
142 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
143 .bus_num = 0,
144 .chip_select = 7,
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800145 },
146#endif
147};
148
Steven Miaoc4a2c582014-04-12 02:07:27 +0800149#if IS_ENABLED(CONFIG_SPI_BFIN5XX)
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800150/* SPI (0) */
151static struct resource bfin_spi0_resource[] = {
152 [0] = {
153 .start = SPI0_REGBASE,
154 .end = SPI0_REGBASE + 0xFF,
155 .flags = IORESOURCE_MEM,
156 },
157 [1] = {
158 .start = CH_SPI,
159 .end = CH_SPI,
Yi Li53122692009-06-05 12:11:11 +0000160 .flags = IORESOURCE_DMA,
161 },
162 [2] = {
163 .start = IRQ_SPI,
164 .end = IRQ_SPI,
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800165 .flags = IORESOURCE_IRQ,
166 }
167};
168
169/* SPI controller data */
170static struct bfin5xx_spi_master bfin_spi0_info = {
171 .num_chipselect = 8,
172 .enable_dma = 1, /* master has the ability to do dma transfer */
173 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
174};
175
176static struct platform_device bfin_spi0_device = {
177 .name = "bfin-spi",
178 .id = 0, /* Bus number */
179 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
180 .resource = bfin_spi0_resource,
181 .dev = {
182 .platform_data = &bfin_spi0_info, /* Passed to driver */
183 },
184};
185#endif /* spi master and devices */
186
Steven Miaoc4a2c582014-04-12 02:07:27 +0800187#if IS_ENABLED(CONFIG_SERIAL_BFIN)
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000188#ifdef CONFIG_SERIAL_BFIN_UART0
189static struct resource bfin_uart0_resources[] = {
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800190 {
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000191 .start = BFIN_UART_THR,
192 .end = BFIN_UART_GCTL+2,
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800193 .flags = IORESOURCE_MEM,
194 },
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000195 {
Sonic Zhangedb0a642011-08-01 17:53:21 +0800196 .start = IRQ_UART0_TX,
197 .end = IRQ_UART0_TX,
198 .flags = IORESOURCE_IRQ,
199 },
200 {
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000201 .start = IRQ_UART0_RX,
Sonic Zhangedb0a642011-08-01 17:53:21 +0800202 .end = IRQ_UART0_RX,
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000203 .flags = IORESOURCE_IRQ,
204 },
205 {
206 .start = IRQ_UART0_ERROR,
207 .end = IRQ_UART0_ERROR,
208 .flags = IORESOURCE_IRQ,
209 },
210 {
211 .start = CH_UART0_TX,
212 .end = CH_UART0_TX,
213 .flags = IORESOURCE_DMA,
214 },
215 {
216 .start = CH_UART0_RX,
217 .end = CH_UART0_RX,
218 .flags = IORESOURCE_DMA,
219 },
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800220};
221
Mike Frysingera8b19882010-11-24 09:23:04 +0000222static unsigned short bfin_uart0_peripherals[] = {
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000223 P_UART0_TX, P_UART0_RX, 0
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800224};
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000225
226static struct platform_device bfin_uart0_device = {
227 .name = "bfin-uart",
228 .id = 0,
229 .num_resources = ARRAY_SIZE(bfin_uart0_resources),
230 .resource = bfin_uart0_resources,
231 .dev = {
232 .platform_data = &bfin_uart0_peripherals, /* Passed to driver */
233 },
234};
235#endif
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800236#endif
237
Steven Miaoc4a2c582014-04-12 02:07:27 +0800238#if IS_ENABLED(CONFIG_BFIN_SIR)
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800239#ifdef CONFIG_BFIN_SIR0
Graf Yang42bd8bc2009-01-07 23:14:39 +0800240static struct resource bfin_sir0_resources[] = {
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800241 {
242 .start = 0xFFC00400,
243 .end = 0xFFC004FF,
244 .flags = IORESOURCE_MEM,
245 },
Graf Yang42bd8bc2009-01-07 23:14:39 +0800246 {
247 .start = IRQ_UART0_RX,
248 .end = IRQ_UART0_RX+1,
249 .flags = IORESOURCE_IRQ,
250 },
251 {
252 .start = CH_UART0_RX,
253 .end = CH_UART0_RX+1,
254 .flags = IORESOURCE_DMA,
255 },
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800256};
257
Graf Yang42bd8bc2009-01-07 23:14:39 +0800258static struct platform_device bfin_sir0_device = {
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800259 .name = "bfin_sir",
260 .id = 0,
Graf Yang42bd8bc2009-01-07 23:14:39 +0800261 .num_resources = ARRAY_SIZE(bfin_sir0_resources),
262 .resource = bfin_sir0_resources,
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800263};
264#endif
Graf Yang42bd8bc2009-01-07 23:14:39 +0800265#endif
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800266
Steven Miaoc4a2c582014-04-12 02:07:27 +0800267#if IS_ENABLED(CONFIG_SERIAL_BFIN_SPORT)
Sonic Zhangdf5de262009-09-23 05:01:56 +0000268#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
269static struct resource bfin_sport0_uart_resources[] = {
270 {
271 .start = SPORT0_TCR1,
272 .end = SPORT0_MRCS3+4,
273 .flags = IORESOURCE_MEM,
274 },
275 {
276 .start = IRQ_SPORT0_RX,
277 .end = IRQ_SPORT0_RX+1,
278 .flags = IORESOURCE_IRQ,
279 },
280 {
281 .start = IRQ_SPORT0_ERROR,
282 .end = IRQ_SPORT0_ERROR,
283 .flags = IORESOURCE_IRQ,
284 },
285};
286
Mike Frysingera8b19882010-11-24 09:23:04 +0000287static unsigned short bfin_sport0_peripherals[] = {
Sonic Zhangdf5de262009-09-23 05:01:56 +0000288 P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
Sonic Zhange54b6732010-11-12 02:45:38 +0000289 P_SPORT0_DRPRI, P_SPORT0_RSCLK, 0
Sonic Zhangdf5de262009-09-23 05:01:56 +0000290};
291
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800292static struct platform_device bfin_sport0_uart_device = {
293 .name = "bfin-sport-uart",
294 .id = 0,
Sonic Zhangdf5de262009-09-23 05:01:56 +0000295 .num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
296 .resource = bfin_sport0_uart_resources,
297 .dev = {
298 .platform_data = &bfin_sport0_peripherals, /* Passed to driver */
299 },
300};
301#endif
302#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
303static struct resource bfin_sport1_uart_resources[] = {
304 {
305 .start = SPORT1_TCR1,
306 .end = SPORT1_MRCS3+4,
307 .flags = IORESOURCE_MEM,
308 },
309 {
310 .start = IRQ_SPORT1_RX,
311 .end = IRQ_SPORT1_RX+1,
312 .flags = IORESOURCE_IRQ,
313 },
314 {
315 .start = IRQ_SPORT1_ERROR,
316 .end = IRQ_SPORT1_ERROR,
317 .flags = IORESOURCE_IRQ,
318 },
319};
320
Mike Frysingera8b19882010-11-24 09:23:04 +0000321static unsigned short bfin_sport1_peripherals[] = {
Sonic Zhangdf5de262009-09-23 05:01:56 +0000322 P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
Sonic Zhange54b6732010-11-12 02:45:38 +0000323 P_SPORT1_DRPRI, P_SPORT1_RSCLK, 0
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800324};
325
326static struct platform_device bfin_sport1_uart_device = {
327 .name = "bfin-sport-uart",
328 .id = 1,
Sonic Zhangdf5de262009-09-23 05:01:56 +0000329 .num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
330 .resource = bfin_sport1_uart_resources,
331 .dev = {
332 .platform_data = &bfin_sport1_peripherals, /* Passed to driver */
333 },
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800334};
335#endif
Sonic Zhangdf5de262009-09-23 05:01:56 +0000336#endif
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800337
Steven Miaoc4a2c582014-04-12 02:07:27 +0800338#if IS_ENABLED(CONFIG_KEYBOARD_GPIO)
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800339#include <linux/input.h>
340#include <linux/gpio_keys.h>
341
342static struct gpio_keys_button bfin_gpio_keys_table[] = {
343 {BTN_0, GPIO_PF4, 0, "gpio-keys: BTN0"},
344 {BTN_1, GPIO_PF5, 0, "gpio-keys: BTN1"},
345 {BTN_2, GPIO_PF6, 0, "gpio-keys: BTN2"},
346}; /* Mapped to the first three PF Test Points */
347
348static struct gpio_keys_platform_data bfin_gpio_keys_data = {
349 .buttons = bfin_gpio_keys_table,
350 .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table),
351};
352
353static struct platform_device bfin_device_gpiokeys = {
354 .name = "gpio-keys",
355 .dev = {
356 .platform_data = &bfin_gpio_keys_data,
357 },
358};
359#endif
360
Steven Miaoc4a2c582014-04-12 02:07:27 +0800361#if IS_ENABLED(CONFIG_I2C_GPIO)
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800362#include <linux/i2c-gpio.h>
363
364static struct i2c_gpio_platform_data i2c_gpio_data = {
Mike Frysinger3d7dc882010-07-02 21:02:50 +0000365 .sda_pin = GPIO_PF8,
366 .scl_pin = GPIO_PF9,
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800367 .sda_is_open_drain = 0,
368 .scl_is_open_drain = 0,
369 .udelay = 40,
370}; /* This hasn't actually been used these pins
371 * are (currently) free pins on the expansion connector */
372
373static struct platform_device i2c_gpio_device = {
374 .name = "i2c-gpio",
375 .id = 0,
376 .dev = {
377 .platform_data = &i2c_gpio_data,
378 },
379};
380#endif
381
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800382static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
383};
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800384
385static const unsigned int cclk_vlev_datasheet[] =
386{
387 VRPAIR(VLEV_085, 250000000),
388 VRPAIR(VLEV_090, 376000000),
389 VRPAIR(VLEV_095, 426000000),
390 VRPAIR(VLEV_100, 426000000),
391 VRPAIR(VLEV_105, 476000000),
392 VRPAIR(VLEV_110, 476000000),
393 VRPAIR(VLEV_115, 476000000),
394 VRPAIR(VLEV_120, 600000000),
395 VRPAIR(VLEV_125, 600000000),
396 VRPAIR(VLEV_130, 600000000),
397};
398
399static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = {
400 .tuple_tab = cclk_vlev_datasheet,
401 .tabsize = ARRAY_SIZE(cclk_vlev_datasheet),
402 .vr_settling_time = 25 /* us */,
403};
404
405static struct platform_device bfin_dpmc = {
406 .name = "bfin dpmc",
407 .dev = {
408 .platform_data = &bfin_dmpc_vreg_data,
409 },
410};
411
412static struct platform_device *stamp_devices[] __initdata = {
413
414 &bfin_dpmc,
415
Steven Miaoc4a2c582014-04-12 02:07:27 +0800416#if IS_ENABLED(CONFIG_RTC_DRV_BFIN)
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800417 &rtc_device,
418#endif
419
Steven Miaoc4a2c582014-04-12 02:07:27 +0800420#if IS_ENABLED(CONFIG_SMC91X)
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800421 &smc91x_device,
422#endif
423
424
Steven Miaoc4a2c582014-04-12 02:07:27 +0800425#if IS_ENABLED(CONFIG_SPI_BFIN5XX)
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800426 &bfin_spi0_device,
427#endif
428
Steven Miaoc4a2c582014-04-12 02:07:27 +0800429#if IS_ENABLED(CONFIG_SERIAL_BFIN)
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000430#ifdef CONFIG_SERIAL_BFIN_UART0
431 &bfin_uart0_device,
432#endif
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800433#endif
434
Steven Miaoc4a2c582014-04-12 02:07:27 +0800435#if IS_ENABLED(CONFIG_BFIN_SIR)
Graf Yang42bd8bc2009-01-07 23:14:39 +0800436#ifdef CONFIG_BFIN_SIR0
437 &bfin_sir0_device,
438#endif
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800439#endif
440
Steven Miaoc4a2c582014-04-12 02:07:27 +0800441#if IS_ENABLED(CONFIG_SERIAL_BFIN_SPORT)
Sonic Zhangdf5de262009-09-23 05:01:56 +0000442#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800443 &bfin_sport0_uart_device,
Sonic Zhangdf5de262009-09-23 05:01:56 +0000444#endif
445#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800446 &bfin_sport1_uart_device,
447#endif
Sonic Zhangdf5de262009-09-23 05:01:56 +0000448#endif
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800449
Steven Miaoc4a2c582014-04-12 02:07:27 +0800450#if IS_ENABLED(CONFIG_KEYBOARD_GPIO)
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800451 &bfin_device_gpiokeys,
452#endif
453
Steven Miaoc4a2c582014-04-12 02:07:27 +0800454#if IS_ENABLED(CONFIG_I2C_GPIO)
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800455 &i2c_gpio_device,
456#endif
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800457};
458
459static int __init blackstamp_init(void)
460{
461 int ret;
462
463 printk(KERN_INFO "%s(): registering device resources\n", __func__);
464
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800465 i2c_register_board_info(0, bfin_i2c_board_info,
466 ARRAY_SIZE(bfin_i2c_board_info));
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800467
468 ret = platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
469 if (ret < 0)
470 return ret;
471
Steven Miaoc4a2c582014-04-12 02:07:27 +0800472#if IS_ENABLED(CONFIG_SMC91X)
Mike Frysinger30e9b952010-10-26 21:30:29 -0400473 /*
474 * setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC.
475 * the bfin-async-map driver takes care of flipping between
476 * flash and ethernet when necessary.
477 */
478 ret = gpio_request(GPIO_PF0, "enet_cpld");
479 if (!ret) {
480 gpio_direction_output(GPIO_PF0, 1);
481 gpio_free(GPIO_PF0);
482 }
Benjamin Matthews130de7c2008-08-14 14:55:54 +0800483#endif
484
485 spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
486 return 0;
487}
488
489arch_initcall(blackstamp_init);
Sonic Zhangc13ce9f2009-09-23 09:37:46 +0000490
491static struct platform_device *stamp_early_devices[] __initdata = {
492#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
493#ifdef CONFIG_SERIAL_BFIN_UART0
494 &bfin_uart0_device,
495#endif
496#endif
497
498#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
499#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
500 &bfin_sport0_uart_device,
501#endif
502#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
503 &bfin_sport1_uart_device,
504#endif
505#endif
506};
507
508void __init native_machine_early_platform_add_devices(void)
509{
510 printk(KERN_INFO "register early platform devices\n");
511 early_platform_add_devices(stamp_early_devices,
512 ARRAY_SIZE(stamp_early_devices));
513}