blob: e9507feea319d51c2e223189c7956dde90c9336a [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>
Mike Frysinger43f73fe2007-12-24 19:35:35 +080010#include <linux/etherdevice.h>
Lars-Peter Clausen90590542011-11-11 11:06:38 +010011#include <linux/export.h>
Bryan Wu1394f032007-05-06 14:50:22 -070012#include <linux/platform_device.h>
13#include <linux/mtd/mtd.h>
14#include <linux/mtd/partitions.h>
15#include <linux/spi/spi.h>
16#include <linux/spi/flash.h>
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080017#include <linux/irq.h>
Bryan Wuc6c4d7b2007-10-11 01:20:06 +080018#include <asm/dma.h>
Bryan Wu1394f032007-05-06 14:50:22 -070019#include <asm/bfin5xx_spi.h>
Bryan Wu5d448dd2007-11-12 23:24:42 +080020#include <asm/portmux.h>
Bryan Wu1394f032007-05-06 14:50:22 -070021
22#include <linux/spi/ad7877.h>
23
24/*
25 * Name the Board for the /proc/cpuinfo
26 */
Mike Frysingerfe85cad2008-11-18 17:48:22 +080027const char bfin_board_name[] = "ADI PNAV-1.0";
Bryan Wu1394f032007-05-06 14:50:22 -070028
29/*
30 * Driver needs to know address, irq and flag pin.
31 */
32
33#if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
34static struct resource bfin_pcmcia_cf_resources[] = {
35 {
36 .start = 0x20310000, /* IO PORT */
37 .end = 0x20312000,
38 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080039 }, {
Simon Arlottd2d50aa2007-06-11 15:31:30 +080040 .start = 0x20311000, /* Attribute Memory */
Bryan Wu1394f032007-05-06 14:50:22 -070041 .end = 0x20311FFF,
42 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080043 }, {
Bryan Wu1394f032007-05-06 14:50:22 -070044 .start = IRQ_PF4,
45 .end = IRQ_PF4,
46 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080047 }, {
Bryan Wu1394f032007-05-06 14:50:22 -070048 .start = 6, /* Card Detect PF6 */
49 .end = 6,
50 .flags = IORESOURCE_IRQ,
51 },
52};
53
54static struct platform_device bfin_pcmcia_cf_device = {
55 .name = "bfin_cf_pcmcia",
56 .id = -1,
57 .num_resources = ARRAY_SIZE(bfin_pcmcia_cf_resources),
58 .resource = bfin_pcmcia_cf_resources,
59};
60#endif
61
62#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
63static struct platform_device rtc_device = {
64 .name = "rtc-bfin",
65 .id = -1,
66};
67#endif
68
69#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
Michael Hennerich61f09b52009-07-24 08:48:31 +000070#include <linux/smc91x.h>
71
72static struct smc91x_platdata smc91x_info = {
73 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
74 .leda = RPC_LED_100_10,
75 .ledb = RPC_LED_TX_RX,
76};
77
Bryan Wu1394f032007-05-06 14:50:22 -070078static struct resource smc91x_resources[] = {
79 {
80 .name = "smc91x-regs",
81 .start = 0x20300300,
82 .end = 0x20300300 + 16,
83 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080084 }, {
Bryan Wu1394f032007-05-06 14:50:22 -070085
86 .start = IRQ_PF7,
87 .end = IRQ_PF7,
88 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
89 },
90};
91static struct platform_device smc91x_device = {
92 .name = "smc91x",
93 .id = 0,
94 .num_resources = ARRAY_SIZE(smc91x_resources),
95 .resource = smc91x_resources,
Michael Hennerich61f09b52009-07-24 08:48:31 +000096 .dev = {
97 .platform_data = &smc91x_info,
98 },
Bryan Wu1394f032007-05-06 14:50:22 -070099};
100#endif
101
Bryan Wu1394f032007-05-06 14:50:22 -0700102#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
Sonic Zhang02460d02010-06-11 10:44:22 +0000103#include <linux/bfin_mac.h>
Paul Gortmaker8dc7a9c2011-08-09 11:05:22 -0400104#include <linux/export.h>
Sonic Zhang02460d02010-06-11 10:44:22 +0000105static const unsigned short bfin_mac_peripherals[] = P_RMII0;
106
107static struct bfin_phydev_platform_data bfin_phydev_data[] = {
108 {
109 .addr = 1,
110 .irq = IRQ_MAC_PHYINT,
111 },
112};
113
114static struct bfin_mii_bus_platform_data bfin_mii_bus_data = {
115 .phydev_number = 1,
116 .phydev_data = bfin_phydev_data,
117 .phy_mode = PHY_INTERFACE_MODE_RMII,
118 .mac_peripherals = bfin_mac_peripherals,
119};
120
Graf Yang65319622009-02-04 16:49:45 +0800121static struct platform_device bfin_mii_bus = {
122 .name = "bfin_mii_bus",
Sonic Zhang02460d02010-06-11 10:44:22 +0000123 .dev = {
124 .platform_data = &bfin_mii_bus_data,
125 }
Graf Yang65319622009-02-04 16:49:45 +0800126};
127
Bryan Wu1394f032007-05-06 14:50:22 -0700128static struct platform_device bfin_mac_device = {
129 .name = "bfin_mac",
Sonic Zhang02460d02010-06-11 10:44:22 +0000130 .dev = {
131 .platform_data = &bfin_mii_bus,
132 }
Bryan Wu1394f032007-05-06 14:50:22 -0700133};
134#endif
135
136#if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
137static struct resource net2272_bfin_resources[] = {
138 {
139 .start = 0x20300000,
140 .end = 0x20300000 + 0x100,
141 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800142 }, {
Bryan Wu1394f032007-05-06 14:50:22 -0700143 .start = IRQ_PF7,
144 .end = IRQ_PF7,
145 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
146 },
147};
148
149static struct platform_device net2272_bfin_device = {
150 .name = "net2272",
151 .id = -1,
152 .num_resources = ARRAY_SIZE(net2272_bfin_resources),
153 .resource = net2272_bfin_resources,
154};
155#endif
156
Sonic Zhang7d157fb2011-11-07 18:40:10 +0800157#if defined(CONFIG_SPI_BFIN5XX) || defined(CONFIG_SPI_BFIN5XX_MODULE)
Bryan Wu1394f032007-05-06 14:50:22 -0700158/* all SPI peripherals info goes here */
159
160#if defined(CONFIG_MTD_M25P80) \
161 || defined(CONFIG_MTD_M25P80_MODULE)
162static struct mtd_partition bfin_spi_flash_partitions[] = {
163 {
Robin Getzaa582972008-08-05 17:47:29 +0800164 .name = "bootloader(spi)",
Bryan Wu1394f032007-05-06 14:50:22 -0700165 .size = 0x00020000,
166 .offset = 0,
167 .mask_flags = MTD_CAP_ROM
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800168 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800169 .name = "linux kernel(spi)",
Bryan Wu1394f032007-05-06 14:50:22 -0700170 .size = 0xe0000,
171 .offset = 0x20000
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800172 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800173 .name = "file system(spi)",
Bryan Wu1394f032007-05-06 14:50:22 -0700174 .size = 0x700000,
175 .offset = 0x00100000,
176 }
177};
178
179static struct flash_platform_data bfin_spi_flash_data = {
180 .name = "m25p80",
181 .parts = bfin_spi_flash_partitions,
182 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
183 .type = "m25p64",
184};
185
186/* SPI flash chip (m25p64) */
187static struct bfin5xx_spi_chip spi_flash_chip_info = {
188 .enable_dma = 0, /* use dma transfer with this chip*/
Bryan Wu1394f032007-05-06 14:50:22 -0700189};
190#endif
191
Michael Hennerichf3f704d2009-03-06 00:27:57 +0800192#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
193static struct bfin5xx_spi_chip mmc_spi_chip_info = {
194 .enable_dma = 0,
Bryan Wu1394f032007-05-06 14:50:22 -0700195};
196#endif
197
Bryan Wu1394f032007-05-06 14:50:22 -0700198#if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
Bryan Wu1394f032007-05-06 14:50:22 -0700199static const struct ad7877_platform_data bfin_ad7877_ts_info = {
200 .model = 7877,
201 .vref_delay_usecs = 50, /* internal, no capacitor */
202 .x_plate_ohms = 419,
203 .y_plate_ohms = 486,
204 .pressure_max = 1000,
205 .pressure_min = 0,
206 .stopacq_polarity = 1,
207 .first_conversion_delay = 3,
208 .acquisition_time = 1,
209 .averaging = 1,
210 .pen_down_acc_interval = 1,
211};
212#endif
213
214static struct spi_board_info bfin_spi_board_info[] __initdata = {
215#if defined(CONFIG_MTD_M25P80) \
216 || defined(CONFIG_MTD_M25P80_MODULE)
217 {
218 /* the modalias must be the same as spi device driver name */
219 .modalias = "m25p80", /* Name of spi_driver for this device */
220 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800221 .bus_num = 0, /* Framework bus number */
Bryan Wu1394f032007-05-06 14:50:22 -0700222 .chip_select = 1, /* Framework chip select. On STAMP537 it is SPISSEL1*/
223 .platform_data = &bfin_spi_flash_data,
224 .controller_data = &spi_flash_chip_info,
225 .mode = SPI_MODE_3,
226 },
227#endif
228
Barry Song7ba80062010-01-28 09:37:21 +0000229#if defined(CONFIG_SND_BF5XX_SOC_AD183X) \
230 || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE)
Bryan Wu1394f032007-05-06 14:50:22 -0700231 {
Barry Song7ba80062010-01-28 09:37:21 +0000232 .modalias = "ad183x",
Bryan Wu1394f032007-05-06 14:50:22 -0700233 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800234 .bus_num = 0,
Barry Song7ba80062010-01-28 09:37:21 +0000235 .chip_select = 4,
Bryan Wu1394f032007-05-06 14:50:22 -0700236 },
237#endif
Michael Hennerichf3f704d2009-03-06 00:27:57 +0800238#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
Bryan Wu1394f032007-05-06 14:50:22 -0700239 {
Michael Hennerichf3f704d2009-03-06 00:27:57 +0800240 .modalias = "mmc_spi",
Bryan Wu1394f032007-05-06 14:50:22 -0700241 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800242 .bus_num = 0,
Michael Hennerichf3f704d2009-03-06 00:27:57 +0800243 .chip_select = 5,
244 .controller_data = &mmc_spi_chip_info,
Bryan Wu1394f032007-05-06 14:50:22 -0700245 .mode = SPI_MODE_3,
246 },
247#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700248#if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
249{
250 .modalias = "ad7877",
251 .platform_data = &bfin_ad7877_ts_info,
252 .irq = IRQ_PF2,
253 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
Michael Hennerichc7d48962007-11-15 21:33:31 +0800254 .bus_num = 0,
Bryan Wu1394f032007-05-06 14:50:22 -0700255 .chip_select = 5,
Bryan Wu1394f032007-05-06 14:50:22 -0700256},
257#endif
258
259};
260
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800261/* SPI (0) */
262static struct resource bfin_spi0_resource[] = {
263 [0] = {
264 .start = SPI0_REGBASE,
265 .end = SPI0_REGBASE + 0xFF,
266 .flags = IORESOURCE_MEM,
267 },
268 [1] = {
269 .start = CH_SPI,
270 .end = CH_SPI,
Yi Li53122692009-06-05 12:11:11 +0000271 .flags = IORESOURCE_DMA,
272 },
273 [2] = {
274 .start = IRQ_SPI,
275 .end = IRQ_SPI,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800276 .flags = IORESOURCE_IRQ,
Yi Li53122692009-06-05 12:11:11 +0000277 },
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800278};
279
Bryan Wu1394f032007-05-06 14:50:22 -0700280/* SPI controller data */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800281static struct bfin5xx_spi_master bfin_spi0_info = {
Bryan Wu1394f032007-05-06 14:50:22 -0700282 .num_chipselect = 8,
283 .enable_dma = 1, /* master has the ability to do dma transfer */
Bryan Wu5d448dd2007-11-12 23:24:42 +0800284 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
Bryan Wu1394f032007-05-06 14:50:22 -0700285};
286
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800287static struct platform_device bfin_spi0_device = {
288 .name = "bfin-spi",
289 .id = 0, /* Bus number */
290 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
291 .resource = bfin_spi0_resource,
Bryan Wu1394f032007-05-06 14:50:22 -0700292 .dev = {
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800293 .platform_data = &bfin_spi0_info, /* Passed to driver */
Bryan Wu1394f032007-05-06 14:50:22 -0700294 },
295};
296#endif /* spi master and devices */
297
298#if defined(CONFIG_FB_BF537_LQ035) || defined(CONFIG_FB_BF537_LQ035_MODULE)
299static struct platform_device bfin_fb_device = {
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800300 .name = "bf537-lq035",
Bryan Wu1394f032007-05-06 14:50:22 -0700301};
302#endif
303
304#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000305#ifdef CONFIG_SERIAL_BFIN_UART0
306static struct resource bfin_uart0_resources[] = {
Bryan Wu1394f032007-05-06 14:50:22 -0700307 {
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000308 .start = UART0_THR,
309 .end = UART0_GCTL+2,
Bryan Wu1394f032007-05-06 14:50:22 -0700310 .flags = IORESOURCE_MEM,
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000311 },
312 {
Sonic Zhangedb0a642011-08-01 17:53:21 +0800313 .start = IRQ_UART0_TX,
314 .end = IRQ_UART0_TX,
315 .flags = IORESOURCE_IRQ,
316 },
317 {
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000318 .start = IRQ_UART0_RX,
Sonic Zhangedb0a642011-08-01 17:53:21 +0800319 .end = IRQ_UART0_RX,
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000320 .flags = IORESOURCE_IRQ,
321 },
322 {
323 .start = IRQ_UART0_ERROR,
324 .end = IRQ_UART0_ERROR,
325 .flags = IORESOURCE_IRQ,
326 },
327 {
328 .start = CH_UART0_TX,
329 .end = CH_UART0_TX,
330 .flags = IORESOURCE_DMA,
331 },
332 {
333 .start = CH_UART0_RX,
334 .end = CH_UART0_RX,
335 .flags = IORESOURCE_DMA,
Bryan Wu1394f032007-05-06 14:50:22 -0700336 },
337};
338
Mike Frysingera8b19882010-11-24 09:23:04 +0000339static unsigned short bfin_uart0_peripherals[] = {
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000340 P_UART0_TX, P_UART0_RX, 0
341};
342
343static struct platform_device bfin_uart0_device = {
344 .name = "bfin-uart",
345 .id = 0,
346 .num_resources = ARRAY_SIZE(bfin_uart0_resources),
347 .resource = bfin_uart0_resources,
348 .dev = {
349 .platform_data = &bfin_uart0_peripherals, /* Passed to driver */
350 },
351};
352#endif
353#ifdef CONFIG_SERIAL_BFIN_UART1
354static struct resource bfin_uart1_resources[] = {
355 {
356 .start = UART1_THR,
357 .end = UART1_GCTL+2,
358 .flags = IORESOURCE_MEM,
359 },
360 {
Sonic Zhangedb0a642011-08-01 17:53:21 +0800361 .start = IRQ_UART1_TX,
362 .end = IRQ_UART1_TX,
363 .flags = IORESOURCE_IRQ,
364 },
365 {
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000366 .start = IRQ_UART1_RX,
Sonic Zhangedb0a642011-08-01 17:53:21 +0800367 .end = IRQ_UART1_RX,
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000368 .flags = IORESOURCE_IRQ,
369 },
370 {
371 .start = IRQ_UART1_ERROR,
372 .end = IRQ_UART1_ERROR,
373 .flags = IORESOURCE_IRQ,
374 },
375 {
376 .start = CH_UART1_TX,
377 .end = CH_UART1_TX,
378 .flags = IORESOURCE_DMA,
379 },
380 {
381 .start = CH_UART1_RX,
382 .end = CH_UART1_RX,
383 .flags = IORESOURCE_DMA,
384 },
385};
386
Mike Frysingera8b19882010-11-24 09:23:04 +0000387static unsigned short bfin_uart1_peripherals[] = {
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000388 P_UART1_TX, P_UART1_RX, 0
389};
390
391static struct platform_device bfin_uart1_device = {
Bryan Wu1394f032007-05-06 14:50:22 -0700392 .name = "bfin-uart",
393 .id = 1,
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000394 .num_resources = ARRAY_SIZE(bfin_uart1_resources),
395 .resource = bfin_uart1_resources,
396 .dev = {
397 .platform_data = &bfin_uart1_peripherals, /* Passed to driver */
398 },
Bryan Wu1394f032007-05-06 14:50:22 -0700399};
400#endif
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000401#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700402
Graf Yang5be36d22008-04-25 03:09:15 +0800403#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
Graf Yang5be36d22008-04-25 03:09:15 +0800404#ifdef CONFIG_BFIN_SIR0
Graf Yang42bd8bc2009-01-07 23:14:39 +0800405static struct resource bfin_sir0_resources[] = {
Graf Yang5be36d22008-04-25 03:09:15 +0800406 {
407 .start = 0xFFC00400,
408 .end = 0xFFC004FF,
409 .flags = IORESOURCE_MEM,
410 },
Graf Yang42bd8bc2009-01-07 23:14:39 +0800411 {
412 .start = IRQ_UART0_RX,
413 .end = IRQ_UART0_RX+1,
414 .flags = IORESOURCE_IRQ,
415 },
416 {
417 .start = CH_UART0_RX,
418 .end = CH_UART0_RX+1,
419 .flags = IORESOURCE_DMA,
420 },
421};
422
423static struct platform_device bfin_sir0_device = {
424 .name = "bfin_sir",
425 .id = 0,
426 .num_resources = ARRAY_SIZE(bfin_sir0_resources),
427 .resource = bfin_sir0_resources,
428};
Graf Yang5be36d22008-04-25 03:09:15 +0800429#endif
430#ifdef CONFIG_BFIN_SIR1
Graf Yang42bd8bc2009-01-07 23:14:39 +0800431static struct resource bfin_sir1_resources[] = {
Graf Yang5be36d22008-04-25 03:09:15 +0800432 {
433 .start = 0xFFC02000,
434 .end = 0xFFC020FF,
435 .flags = IORESOURCE_MEM,
436 },
Graf Yang42bd8bc2009-01-07 23:14:39 +0800437 {
438 .start = IRQ_UART1_RX,
439 .end = IRQ_UART1_RX+1,
440 .flags = IORESOURCE_IRQ,
441 },
442 {
443 .start = CH_UART1_RX,
444 .end = CH_UART1_RX+1,
445 .flags = IORESOURCE_DMA,
446 },
Graf Yang5be36d22008-04-25 03:09:15 +0800447};
448
Graf Yang42bd8bc2009-01-07 23:14:39 +0800449static struct platform_device bfin_sir1_device = {
Graf Yang5be36d22008-04-25 03:09:15 +0800450 .name = "bfin_sir",
Graf Yang42bd8bc2009-01-07 23:14:39 +0800451 .id = 1,
452 .num_resources = ARRAY_SIZE(bfin_sir1_resources),
453 .resource = bfin_sir1_resources,
Graf Yang5be36d22008-04-25 03:09:15 +0800454};
455#endif
Graf Yang42bd8bc2009-01-07 23:14:39 +0800456#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700457
458static struct platform_device *stamp_devices[] __initdata = {
459#if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
460 &bfin_pcmcia_cf_device,
461#endif
462
463#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
464 &rtc_device,
465#endif
466
Bryan Wu1394f032007-05-06 14:50:22 -0700467#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
468 &smc91x_device,
469#endif
470
471#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
Graf Yang65319622009-02-04 16:49:45 +0800472 &bfin_mii_bus,
Bryan Wu1394f032007-05-06 14:50:22 -0700473 &bfin_mac_device,
474#endif
475
476#if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
477 &net2272_bfin_device,
478#endif
479
Sonic Zhang7d157fb2011-11-07 18:40:10 +0800480#if defined(CONFIG_SPI_BFIN5XX) || defined(CONFIG_SPI_BFIN5XX_MODULE)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800481 &bfin_spi0_device,
Bryan Wu1394f032007-05-06 14:50:22 -0700482#endif
483
484#if defined(CONFIG_FB_BF537_LQ035) || defined(CONFIG_FB_BF537_LQ035_MODULE)
485 &bfin_fb_device,
486#endif
487
488#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000489#ifdef CONFIG_SERIAL_BFIN_UART0
490 &bfin_uart0_device,
491#endif
492#ifdef CONFIG_SERIAL_BFIN_UART1
493 &bfin_uart1_device,
494#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700495#endif
Graf Yang5be36d22008-04-25 03:09:15 +0800496
497#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
Graf Yang42bd8bc2009-01-07 23:14:39 +0800498#ifdef CONFIG_BFIN_SIR0
499 &bfin_sir0_device,
500#endif
501#ifdef CONFIG_BFIN_SIR1
502 &bfin_sir1_device,
503#endif
Graf Yang5be36d22008-04-25 03:09:15 +0800504#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700505};
506
Mike Frysinger7f6678c2009-02-04 16:49:45 +0800507static int __init pnav_init(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700508{
Harvey Harrisonb85d8582008-04-23 09:39:01 +0800509 printk(KERN_INFO "%s(): registering device resources\n", __func__);
Bryan Wu1394f032007-05-06 14:50:22 -0700510 platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
Sonic Zhang7d157fb2011-11-07 18:40:10 +0800511#if defined(CONFIG_SPI_BFIN5XX) || defined(CONFIG_SPI_BFIN5XX_MODULE)
Bryan Wu1394f032007-05-06 14:50:22 -0700512 spi_register_board_info(bfin_spi_board_info,
513 ARRAY_SIZE(bfin_spi_board_info));
514#endif
515 return 0;
516}
517
Mike Frysinger7f6678c2009-02-04 16:49:45 +0800518arch_initcall(pnav_init);
Mike Frysinger137b1522007-11-22 16:07:03 +0800519
Sonic Zhangc13ce9f2009-09-23 09:37:46 +0000520static struct platform_device *stamp_early_devices[] __initdata = {
521#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
522#ifdef CONFIG_SERIAL_BFIN_UART0
523 &bfin_uart0_device,
524#endif
525#ifdef CONFIG_SERIAL_BFIN_UART1
526 &bfin_uart1_device,
527#endif
528#endif
529};
530
531void __init native_machine_early_platform_add_devices(void)
532{
533 printk(KERN_INFO "register early platform devices\n");
534 early_platform_add_devices(stamp_early_devices,
535 ARRAY_SIZE(stamp_early_devices));
536}
537
Danny Kukawka0eceb822012-02-16 07:09:30 +0000538int bfin_get_ether_addr(char *addr)
Mike Frysinger137b1522007-11-22 16:07:03 +0800539{
Danny Kukawka0eceb822012-02-16 07:09:30 +0000540 return 1;
Mike Frysinger137b1522007-11-22 16:07:03 +0800541}
Mike Frysinger9862cc52007-11-15 21:21:20 +0800542EXPORT_SYMBOL(bfin_get_ether_addr);