blob: 9a736a850c5c64cc76807ccbf7f3e33076773fca [file] [log] [blame]
Michael Hennerich8cc71172008-10-13 14:45:06 +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>
Michael Hennerich8cc71172008-10-13 14:45:06 +08005 *
Robin Getz96f10502009-09-24 14:11:24 +00006 * Licensed under the GPL-2 or later.
Michael Hennerich8cc71172008-10-13 14:45:06 +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>
13#include <linux/mtd/physmap.h>
14#include <linux/spi/spi.h>
15#include <linux/spi/flash.h>
16
17#include <linux/i2c.h>
18#include <linux/irq.h>
19#include <linux/interrupt.h>
20#include <linux/usb/musb.h>
21#include <asm/dma.h>
22#include <asm/bfin5xx_spi.h>
23#include <asm/reboot.h>
24#include <asm/nand.h>
25#include <asm/portmux.h>
26#include <asm/dpmc.h>
27#include <linux/spi/ad7877.h>
28
29/*
30 * Name the Board for the /proc/cpuinfo
31 */
Mike Frysingerfe85cad2008-11-18 17:48:22 +080032const char bfin_board_name[] = "ADI BF526-EZBRD";
Michael Hennerich8cc71172008-10-13 14:45:06 +080033
34/*
35 * Driver needs to know address, irq and flag pin.
36 */
37
38#if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
39static struct resource musb_resources[] = {
40 [0] = {
41 .start = 0xffc03800,
42 .end = 0xffc03cff,
43 .flags = IORESOURCE_MEM,
44 },
45 [1] = { /* general IRQ */
46 .start = IRQ_USB_INT0,
47 .end = IRQ_USB_INT0,
48 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
49 },
50 [2] = { /* DMA IRQ */
51 .start = IRQ_USB_DMA,
52 .end = IRQ_USB_DMA,
53 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
54 },
55};
56
57static struct musb_hdrc_config musb_config = {
58 .multipoint = 0,
59 .dyn_fifo = 0,
60 .soft_con = 1,
61 .dma = 1,
Bryan Wufea05da2009-01-07 23:14:39 +080062 .num_eps = 8,
63 .dma_channels = 8,
Michael Hennerich8cc71172008-10-13 14:45:06 +080064 .gpio_vrsel = GPIO_PG13,
Cliff Cai85eb0e42010-01-22 04:02:46 +000065 /* Some custom boards need to be active low, just set it to "0"
66 * if it is the case.
67 */
68 .gpio_vrsel_active = 1,
Michael Hennerich8cc71172008-10-13 14:45:06 +080069};
70
71static struct musb_hdrc_platform_data musb_plat = {
72#if defined(CONFIG_USB_MUSB_OTG)
73 .mode = MUSB_OTG,
74#elif defined(CONFIG_USB_MUSB_HDRC_HCD)
75 .mode = MUSB_HOST,
76#elif defined(CONFIG_USB_GADGET_MUSB_HDRC)
77 .mode = MUSB_PERIPHERAL,
78#endif
79 .config = &musb_config,
80};
81
82static u64 musb_dmamask = ~(u32)0;
83
84static struct platform_device musb_device = {
85 .name = "musb_hdrc",
86 .id = 0,
87 .dev = {
88 .dma_mask = &musb_dmamask,
89 .coherent_dma_mask = 0xffffffff,
90 .platform_data = &musb_plat,
91 },
92 .num_resources = ARRAY_SIZE(musb_resources),
93 .resource = musb_resources,
94};
95#endif
96
97#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
98static struct mtd_partition ezbrd_partitions[] = {
99 {
100 .name = "bootloader(nor)",
101 .size = 0x40000,
102 .offset = 0,
103 }, {
104 .name = "linux kernel(nor)",
105 .size = 0x1C0000,
106 .offset = MTDPART_OFS_APPEND,
107 }, {
108 .name = "file system(nor)",
109 .size = MTDPART_SIZ_FULL,
110 .offset = MTDPART_OFS_APPEND,
111 }
112};
113
114static struct physmap_flash_data ezbrd_flash_data = {
115 .width = 2,
116 .parts = ezbrd_partitions,
117 .nr_parts = ARRAY_SIZE(ezbrd_partitions),
118};
119
120static struct resource ezbrd_flash_resource = {
121 .start = 0x20000000,
122 .end = 0x203fffff,
123 .flags = IORESOURCE_MEM,
124};
125
126static struct platform_device ezbrd_flash_device = {
127 .name = "physmap-flash",
128 .id = 0,
129 .dev = {
130 .platform_data = &ezbrd_flash_data,
131 },
132 .num_resources = 1,
133 .resource = &ezbrd_flash_resource,
134};
135#endif
136
137#if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
138static struct mtd_partition partition_info[] = {
139 {
Mike Frysinger5cc1c562010-09-22 02:46:44 +0000140 .name = "bootloader(nand)",
Michael Hennerich8cc71172008-10-13 14:45:06 +0800141 .offset = 0,
Mike Frysinger5cc1c562010-09-22 02:46:44 +0000142 .size = 0x40000,
143 }, {
144 .name = "linux kernel(nand)",
145 .offset = MTDPART_OFS_APPEND,
Michael Hennerich8cc71172008-10-13 14:45:06 +0800146 .size = 4 * 1024 * 1024,
147 },
148 {
149 .name = "file system(nand)",
150 .offset = MTDPART_OFS_APPEND,
151 .size = MTDPART_SIZ_FULL,
152 },
153};
154
155static struct bf5xx_nand_platform bf5xx_nand_platform = {
Michael Hennerich8cc71172008-10-13 14:45:06 +0800156 .data_width = NFC_NWIDTH_8,
157 .partitions = partition_info,
158 .nr_partitions = ARRAY_SIZE(partition_info),
159 .rd_dly = 3,
160 .wr_dly = 3,
161};
162
163static struct resource bf5xx_nand_resources[] = {
164 {
165 .start = NFC_CTL,
166 .end = NFC_DATA_RD + 2,
167 .flags = IORESOURCE_MEM,
168 },
169 {
170 .start = CH_NFC,
171 .end = CH_NFC,
172 .flags = IORESOURCE_IRQ,
173 },
174};
175
176static struct platform_device bf5xx_nand_device = {
177 .name = "bf5xx-nand",
178 .id = 0,
179 .num_resources = ARRAY_SIZE(bf5xx_nand_resources),
180 .resource = bf5xx_nand_resources,
181 .dev = {
182 .platform_data = &bf5xx_nand_platform,
183 },
184};
185#endif
186
187#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
188static struct platform_device rtc_device = {
189 .name = "rtc-bfin",
190 .id = -1,
191};
192#endif
193
194
195#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
Sonic Zhang02460d02010-06-11 10:44:22 +0000196#include <linux/bfin_mac.h>
197static const unsigned short bfin_mac_peripherals[] = P_RMII0;
198
199static struct bfin_phydev_platform_data bfin_phydev_data[] = {
200 {
201 .addr = 1,
202 .irq = IRQ_MAC_PHYINT,
203 },
204};
205
206static struct bfin_mii_bus_platform_data bfin_mii_bus_data = {
207 .phydev_number = 1,
208 .phydev_data = bfin_phydev_data,
209 .phy_mode = PHY_INTERFACE_MODE_RMII,
210 .mac_peripherals = bfin_mac_peripherals,
211};
212
Graf Yang65319622009-02-04 16:49:45 +0800213static struct platform_device bfin_mii_bus = {
214 .name = "bfin_mii_bus",
Sonic Zhang02460d02010-06-11 10:44:22 +0000215 .dev = {
216 .platform_data = &bfin_mii_bus_data,
217 }
Graf Yang65319622009-02-04 16:49:45 +0800218};
219
Michael Hennerich8cc71172008-10-13 14:45:06 +0800220static struct platform_device bfin_mac_device = {
221 .name = "bfin_mac",
Sonic Zhang02460d02010-06-11 10:44:22 +0000222 .dev = {
223 .platform_data = &bfin_mii_bus,
224 }
Michael Hennerich8cc71172008-10-13 14:45:06 +0800225};
226#endif
227
228#if defined(CONFIG_MTD_M25P80) \
229 || defined(CONFIG_MTD_M25P80_MODULE)
230static struct mtd_partition bfin_spi_flash_partitions[] = {
231 {
232 .name = "bootloader(spi)",
233 .size = 0x00040000,
234 .offset = 0,
235 .mask_flags = MTD_CAP_ROM
236 }, {
237 .name = "linux kernel(spi)",
238 .size = MTDPART_SIZ_FULL,
239 .offset = MTDPART_OFS_APPEND,
240 }
241};
242
243static struct flash_platform_data bfin_spi_flash_data = {
244 .name = "m25p80",
245 .parts = bfin_spi_flash_partitions,
246 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
Graf Yangdc2c46b2009-06-15 08:23:41 +0000247 .type = "sst25wf040",
Michael Hennerich8cc71172008-10-13 14:45:06 +0800248};
249
Graf Yangdc2c46b2009-06-15 08:23:41 +0000250/* SPI flash chip (sst25wf040) */
Michael Hennerich8cc71172008-10-13 14:45:06 +0800251static struct bfin5xx_spi_chip spi_flash_chip_info = {
252 .enable_dma = 0, /* use dma transfer with this chip*/
253 .bits_per_word = 8,
254};
255#endif
256
Mike Frysingera261eec2009-05-20 14:05:36 +0000257#if defined(CONFIG_BFIN_SPI_ADC) \
258 || defined(CONFIG_BFIN_SPI_ADC_MODULE)
Michael Hennerich8cc71172008-10-13 14:45:06 +0800259/* SPI ADC chip */
260static struct bfin5xx_spi_chip spi_adc_chip_info = {
261 .enable_dma = 1, /* use dma transfer with this chip*/
262 .bits_per_word = 16,
263};
264#endif
265
Michael Hennerichf3f704d2009-03-06 00:27:57 +0800266#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
267static struct bfin5xx_spi_chip mmc_spi_chip_info = {
268 .enable_dma = 0,
Michael Hennerich8cc71172008-10-13 14:45:06 +0800269 .bits_per_word = 8,
270};
271#endif
272
Michael Hennerich8cc71172008-10-13 14:45:06 +0800273#if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
274static struct bfin5xx_spi_chip spi_ad7877_chip_info = {
275 .enable_dma = 0,
276 .bits_per_word = 16,
277};
278
279static const struct ad7877_platform_data bfin_ad7877_ts_info = {
280 .model = 7877,
281 .vref_delay_usecs = 50, /* internal, no capacitor */
282 .x_plate_ohms = 419,
283 .y_plate_ohms = 486,
284 .pressure_max = 1000,
285 .pressure_min = 0,
286 .stopacq_polarity = 1,
287 .first_conversion_delay = 3,
288 .acquisition_time = 1,
289 .averaging = 1,
290 .pen_down_acc_interval = 1,
291};
292#endif
293
Michael Hennerich51054322009-01-07 23:14:38 +0800294#if defined(CONFIG_TOUCHSCREEN_AD7879) || defined(CONFIG_TOUCHSCREEN_AD7879_MODULE)
295#include <linux/spi/ad7879.h>
296static const struct ad7879_platform_data bfin_ad7879_ts_info = {
297 .model = 7879, /* Model = AD7879 */
298 .x_plate_ohms = 620, /* 620 Ohm from the touch datasheet */
299 .pressure_max = 10000,
300 .pressure_min = 0,
301 .first_conversion_delay = 3, /* wait 512us before do a first conversion */
302 .acquisition_time = 1, /* 4us acquisition time per sample */
303 .median = 2, /* do 8 measurements */
304 .averaging = 1, /* take the average of 4 middle samples */
305 .pen_down_acc_interval = 255, /* 9.4 ms */
Michael Hennerich244d3422009-12-18 09:29:39 +0000306 .gpio_export = 1, /* Export GPIO to gpiolib */
307 .gpio_base = -1, /* Dynamic allocation */
Michael Hennerich51054322009-01-07 23:14:38 +0800308};
309#endif
310
311#if defined(CONFIG_TOUCHSCREEN_AD7879_SPI) || defined(CONFIG_TOUCHSCREEN_AD7879_SPI_MODULE)
312static struct bfin5xx_spi_chip spi_ad7879_chip_info = {
313 .enable_dma = 0,
314 .bits_per_word = 16,
315};
316#endif
317
Michael Hennerich8cc71172008-10-13 14:45:06 +0800318#if defined(CONFIG_SND_SOC_WM8731) || defined(CONFIG_SND_SOC_WM8731_MODULE) \
319 && defined(CONFIG_SND_SOC_WM8731_SPI)
320static struct bfin5xx_spi_chip spi_wm8731_chip_info = {
321 .enable_dma = 0,
322 .bits_per_word = 16,
323};
324#endif
325
326#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
327static struct bfin5xx_spi_chip spidev_chip_info = {
328 .enable_dma = 0,
329 .bits_per_word = 8,
330};
331#endif
332
333#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
334static struct bfin5xx_spi_chip lq035q1_spi_chip_info = {
335 .enable_dma = 0,
336 .bits_per_word = 8,
337};
338#endif
339
340static struct spi_board_info bfin_spi_board_info[] __initdata = {
341#if defined(CONFIG_MTD_M25P80) \
342 || defined(CONFIG_MTD_M25P80_MODULE)
343 {
344 /* the modalias must be the same as spi device driver name */
345 .modalias = "m25p80", /* Name of spi_driver for this device */
346 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
347 .bus_num = 0, /* Framework bus number */
348 .chip_select = 1, /* Framework chip select. On STAMP537 it is SPISSEL1*/
349 .platform_data = &bfin_spi_flash_data,
350 .controller_data = &spi_flash_chip_info,
351 .mode = SPI_MODE_3,
352 },
353#endif
354
Mike Frysingera261eec2009-05-20 14:05:36 +0000355#if defined(CONFIG_BFIN_SPI_ADC) \
356 || defined(CONFIG_BFIN_SPI_ADC_MODULE)
Michael Hennerich8cc71172008-10-13 14:45:06 +0800357 {
358 .modalias = "bfin_spi_adc", /* Name of spi_driver for this device */
359 .max_speed_hz = 6250000, /* max spi clock (SCK) speed in HZ */
360 .bus_num = 0, /* Framework bus number */
361 .chip_select = 1, /* Framework chip select. */
362 .platform_data = NULL, /* No spi_driver specific config */
363 .controller_data = &spi_adc_chip_info,
364 },
365#endif
366
Michael Hennerichf3f704d2009-03-06 00:27:57 +0800367#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
Michael Hennerich8cc71172008-10-13 14:45:06 +0800368 {
Michael Hennerichf3f704d2009-03-06 00:27:57 +0800369 .modalias = "mmc_spi",
Michael Hennerich8cc71172008-10-13 14:45:06 +0800370 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
371 .bus_num = 0,
Michael Hennerichf3f704d2009-03-06 00:27:57 +0800372 .chip_select = 5,
373 .controller_data = &mmc_spi_chip_info,
Michael Hennerich8cc71172008-10-13 14:45:06 +0800374 .mode = SPI_MODE_3,
375 },
376#endif
Michael Hennerich8cc71172008-10-13 14:45:06 +0800377#if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
378 {
379 .modalias = "ad7877",
380 .platform_data = &bfin_ad7877_ts_info,
381 .irq = IRQ_PF8,
382 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
383 .bus_num = 0,
384 .chip_select = 2,
385 .controller_data = &spi_ad7877_chip_info,
386 },
387#endif
Michael Hennerich51054322009-01-07 23:14:38 +0800388#if defined(CONFIG_TOUCHSCREEN_AD7879_SPI) || defined(CONFIG_TOUCHSCREEN_AD7879_SPI_MODULE)
389 {
390 .modalias = "ad7879",
391 .platform_data = &bfin_ad7879_ts_info,
392 .irq = IRQ_PG0,
393 .max_speed_hz = 5000000, /* max spi clock (SCK) speed in HZ */
394 .bus_num = 0,
395 .chip_select = 5,
396 .controller_data = &spi_ad7879_chip_info,
397 .mode = SPI_CPHA | SPI_CPOL,
398 },
399#endif
Michael Hennerich8cc71172008-10-13 14:45:06 +0800400#if defined(CONFIG_SND_SOC_WM8731) || defined(CONFIG_SND_SOC_WM8731_MODULE) \
401 && defined(CONFIG_SND_SOC_WM8731_SPI)
402 {
403 .modalias = "wm8731",
404 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
405 .bus_num = 0,
406 .chip_select = 5,
407 .controller_data = &spi_wm8731_chip_info,
408 .mode = SPI_MODE_0,
409 },
410#endif
411#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
412 {
413 .modalias = "spidev",
414 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
415 .bus_num = 0,
416 .chip_select = 1,
417 .controller_data = &spidev_chip_info,
418 },
419#endif
420#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
421 {
422 .modalias = "bfin-lq035q1-spi",
423 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
424 .bus_num = 0,
425 .chip_select = 1,
426 .controller_data = &lq035q1_spi_chip_info,
427 .mode = SPI_CPHA | SPI_CPOL,
428 },
429#endif
430};
431
432#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
433/* SPI controller data */
434static struct bfin5xx_spi_master bfin_spi0_info = {
435 .num_chipselect = 8,
436 .enable_dma = 1, /* master has the ability to do dma transfer */
437 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
438};
439
440/* SPI (0) */
441static struct resource bfin_spi0_resource[] = {
442 [0] = {
443 .start = SPI0_REGBASE,
444 .end = SPI0_REGBASE + 0xFF,
445 .flags = IORESOURCE_MEM,
446 },
447 [1] = {
448 .start = CH_SPI,
449 .end = CH_SPI,
Yi Li53122692009-06-05 12:11:11 +0000450 .flags = IORESOURCE_DMA,
451 },
452 [2] = {
453 .start = IRQ_SPI,
454 .end = IRQ_SPI,
Michael Hennerich8cc71172008-10-13 14:45:06 +0800455 .flags = IORESOURCE_IRQ,
456 },
457};
458
459static struct platform_device bfin_spi0_device = {
460 .name = "bfin-spi",
461 .id = 0, /* Bus number */
462 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
463 .resource = bfin_spi0_resource,
464 .dev = {
465 .platform_data = &bfin_spi0_info, /* Passed to driver */
466 },
467};
468#endif /* spi master and devices */
469
470#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
Michael Hennerich8cc71172008-10-13 14:45:06 +0800471#ifdef CONFIG_SERIAL_BFIN_UART0
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000472static struct resource bfin_uart0_resources[] = {
Michael Hennerich8cc71172008-10-13 14:45:06 +0800473 {
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000474 .start = UART0_THR,
475 .end = UART0_GCTL+2,
Michael Hennerich8cc71172008-10-13 14:45:06 +0800476 .flags = IORESOURCE_MEM,
477 },
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000478 {
479 .start = IRQ_UART0_RX,
480 .end = IRQ_UART0_RX+1,
481 .flags = IORESOURCE_IRQ,
482 },
483 {
484 .start = IRQ_UART0_ERROR,
485 .end = IRQ_UART0_ERROR,
486 .flags = IORESOURCE_IRQ,
487 },
488 {
489 .start = CH_UART0_TX,
490 .end = CH_UART0_TX,
491 .flags = IORESOURCE_DMA,
492 },
493 {
494 .start = CH_UART0_RX,
495 .end = CH_UART0_RX,
496 .flags = IORESOURCE_DMA,
497 },
498};
499
500unsigned short bfin_uart0_peripherals[] = {
501 P_UART0_TX, P_UART0_RX, 0
502};
503
504static struct platform_device bfin_uart0_device = {
505 .name = "bfin-uart",
506 .id = 0,
507 .num_resources = ARRAY_SIZE(bfin_uart0_resources),
508 .resource = bfin_uart0_resources,
509 .dev = {
510 .platform_data = &bfin_uart0_peripherals, /* Passed to driver */
511 },
512};
Michael Hennerich8cc71172008-10-13 14:45:06 +0800513#endif
514#ifdef CONFIG_SERIAL_BFIN_UART1
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000515static struct resource bfin_uart1_resources[] = {
Michael Hennerich8cc71172008-10-13 14:45:06 +0800516 {
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000517 .start = UART1_THR,
518 .end = UART1_GCTL+2,
Michael Hennerich8cc71172008-10-13 14:45:06 +0800519 .flags = IORESOURCE_MEM,
520 },
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000521 {
522 .start = IRQ_UART1_RX,
523 .end = IRQ_UART1_RX+1,
524 .flags = IORESOURCE_IRQ,
525 },
526 {
527 .start = IRQ_UART1_ERROR,
528 .end = IRQ_UART1_ERROR,
529 .flags = IORESOURCE_IRQ,
530 },
531 {
532 .start = CH_UART1_TX,
533 .end = CH_UART1_TX,
534 .flags = IORESOURCE_DMA,
535 },
536 {
537 .start = CH_UART1_RX,
538 .end = CH_UART1_RX,
539 .flags = IORESOURCE_DMA,
540 },
541#ifdef CONFIG_BFIN_UART1_CTSRTS
542 { /* CTS pin */
543 .start = GPIO_PG0,
544 .end = GPIO_PG0,
545 .flags = IORESOURCE_IO,
546 },
547 { /* RTS pin */
548 .start = GPIO_PF10,
549 .end = GPIO_PF10,
550 .flags = IORESOURCE_IO,
551 },
Michael Hennerich8cc71172008-10-13 14:45:06 +0800552#endif
553};
554
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000555unsigned short bfin_uart1_peripherals[] = {
556 P_UART1_TX, P_UART1_RX, 0
557};
558
559static struct platform_device bfin_uart1_device = {
Michael Hennerich8cc71172008-10-13 14:45:06 +0800560 .name = "bfin-uart",
561 .id = 1,
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000562 .num_resources = ARRAY_SIZE(bfin_uart1_resources),
563 .resource = bfin_uart1_resources,
564 .dev = {
565 .platform_data = &bfin_uart1_peripherals, /* Passed to driver */
566 },
Michael Hennerich8cc71172008-10-13 14:45:06 +0800567};
568#endif
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000569#endif
Michael Hennerich8cc71172008-10-13 14:45:06 +0800570
571#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
Michael Hennerich8cc71172008-10-13 14:45:06 +0800572#ifdef CONFIG_BFIN_SIR0
Graf Yang42bd8bc2009-01-07 23:14:39 +0800573static struct resource bfin_sir0_resources[] = {
Michael Hennerich8cc71172008-10-13 14:45:06 +0800574 {
575 .start = 0xFFC00400,
576 .end = 0xFFC004FF,
577 .flags = IORESOURCE_MEM,
578 },
Graf Yang42bd8bc2009-01-07 23:14:39 +0800579 {
580 .start = IRQ_UART0_RX,
581 .end = IRQ_UART0_RX+1,
582 .flags = IORESOURCE_IRQ,
583 },
584 {
585 .start = CH_UART0_RX,
586 .end = CH_UART0_RX+1,
587 .flags = IORESOURCE_DMA,
588 },
589};
590
591static struct platform_device bfin_sir0_device = {
592 .name = "bfin_sir",
593 .id = 0,
594 .num_resources = ARRAY_SIZE(bfin_sir0_resources),
595 .resource = bfin_sir0_resources,
596};
Michael Hennerich8cc71172008-10-13 14:45:06 +0800597#endif
598#ifdef CONFIG_BFIN_SIR1
Graf Yang42bd8bc2009-01-07 23:14:39 +0800599static struct resource bfin_sir1_resources[] = {
Michael Hennerich8cc71172008-10-13 14:45:06 +0800600 {
601 .start = 0xFFC02000,
602 .end = 0xFFC020FF,
603 .flags = IORESOURCE_MEM,
604 },
Graf Yang42bd8bc2009-01-07 23:14:39 +0800605 {
606 .start = IRQ_UART1_RX,
607 .end = IRQ_UART1_RX+1,
608 .flags = IORESOURCE_IRQ,
609 },
610 {
611 .start = CH_UART1_RX,
612 .end = CH_UART1_RX+1,
613 .flags = IORESOURCE_DMA,
614 },
Michael Hennerich8cc71172008-10-13 14:45:06 +0800615};
616
Graf Yang42bd8bc2009-01-07 23:14:39 +0800617static struct platform_device bfin_sir1_device = {
Michael Hennerich8cc71172008-10-13 14:45:06 +0800618 .name = "bfin_sir",
Graf Yang42bd8bc2009-01-07 23:14:39 +0800619 .id = 1,
620 .num_resources = ARRAY_SIZE(bfin_sir1_resources),
621 .resource = bfin_sir1_resources,
Michael Hennerich8cc71172008-10-13 14:45:06 +0800622};
623#endif
Graf Yang42bd8bc2009-01-07 23:14:39 +0800624#endif
Michael Hennerich8cc71172008-10-13 14:45:06 +0800625
626#if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
627static struct resource bfin_twi0_resource[] = {
628 [0] = {
629 .start = TWI0_REGBASE,
630 .end = TWI0_REGBASE,
631 .flags = IORESOURCE_MEM,
632 },
633 [1] = {
634 .start = IRQ_TWI,
635 .end = IRQ_TWI,
636 .flags = IORESOURCE_IRQ,
637 },
638};
639
640static struct platform_device i2c_bfin_twi_device = {
641 .name = "i2c-bfin-twi",
642 .id = 0,
643 .num_resources = ARRAY_SIZE(bfin_twi0_resource),
644 .resource = bfin_twi0_resource,
645};
646#endif
647
Michael Hennerich8cc71172008-10-13 14:45:06 +0800648static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
Michael Hennerichebd58332009-07-02 11:00:38 +0000649#if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE)
Michael Hennerich8cc71172008-10-13 14:45:06 +0800650 {
651 I2C_BOARD_INFO("pcf8574_lcd", 0x22),
652 },
653#endif
Michael Hennerich204844e2009-06-30 14:57:22 +0000654#if defined(CONFIG_INPUT_PCF8574) || defined(CONFIG_INPUT_PCF8574_MODULE)
Michael Hennerich8cc71172008-10-13 14:45:06 +0800655 {
656 I2C_BOARD_INFO("pcf8574_keypad", 0x27),
657 .irq = IRQ_PF8,
658 },
659#endif
660};
Michael Hennerich8cc71172008-10-13 14:45:06 +0800661
662#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
Sonic Zhangdf5de262009-09-23 05:01:56 +0000663#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
664static struct resource bfin_sport0_uart_resources[] = {
665 {
666 .start = SPORT0_TCR1,
667 .end = SPORT0_MRCS3+4,
668 .flags = IORESOURCE_MEM,
669 },
670 {
671 .start = IRQ_SPORT0_RX,
672 .end = IRQ_SPORT0_RX+1,
673 .flags = IORESOURCE_IRQ,
674 },
675 {
676 .start = IRQ_SPORT0_ERROR,
677 .end = IRQ_SPORT0_ERROR,
678 .flags = IORESOURCE_IRQ,
679 },
680};
681
682unsigned short bfin_sport0_peripherals[] = {
683 P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
684 P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
685};
686
Michael Hennerich8cc71172008-10-13 14:45:06 +0800687static struct platform_device bfin_sport0_uart_device = {
688 .name = "bfin-sport-uart",
689 .id = 0,
Sonic Zhangdf5de262009-09-23 05:01:56 +0000690 .num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
691 .resource = bfin_sport0_uart_resources,
692 .dev = {
693 .platform_data = &bfin_sport0_peripherals, /* Passed to driver */
694 },
695};
696#endif
697#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
698static struct resource bfin_sport1_uart_resources[] = {
699 {
700 .start = SPORT1_TCR1,
701 .end = SPORT1_MRCS3+4,
702 .flags = IORESOURCE_MEM,
703 },
704 {
705 .start = IRQ_SPORT1_RX,
706 .end = IRQ_SPORT1_RX+1,
707 .flags = IORESOURCE_IRQ,
708 },
709 {
710 .start = IRQ_SPORT1_ERROR,
711 .end = IRQ_SPORT1_ERROR,
712 .flags = IORESOURCE_IRQ,
713 },
714};
715
716unsigned short bfin_sport1_peripherals[] = {
717 P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
718 P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
Michael Hennerich8cc71172008-10-13 14:45:06 +0800719};
720
721static struct platform_device bfin_sport1_uart_device = {
722 .name = "bfin-sport-uart",
723 .id = 1,
Sonic Zhangdf5de262009-09-23 05:01:56 +0000724 .num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
725 .resource = bfin_sport1_uart_resources,
726 .dev = {
727 .platform_data = &bfin_sport1_peripherals, /* Passed to driver */
728 },
Michael Hennerich8cc71172008-10-13 14:45:06 +0800729};
730#endif
Sonic Zhangdf5de262009-09-23 05:01:56 +0000731#endif
Michael Hennerich8cc71172008-10-13 14:45:06 +0800732
733#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
734#include <linux/input.h>
735#include <linux/gpio_keys.h>
736
737static struct gpio_keys_button bfin_gpio_keys_table[] = {
738 {BTN_0, GPIO_PG0, 1, "gpio-keys: BTN0"},
739 {BTN_1, GPIO_PG13, 1, "gpio-keys: BTN1"},
740};
741
742static struct gpio_keys_platform_data bfin_gpio_keys_data = {
743 .buttons = bfin_gpio_keys_table,
744 .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table),
745};
746
747static struct platform_device bfin_device_gpiokeys = {
748 .name = "gpio-keys",
749 .dev = {
750 .platform_data = &bfin_gpio_keys_data,
751 },
752};
753#endif
754
Michael Hennerich8cc71172008-10-13 14:45:06 +0800755static const unsigned int cclk_vlev_datasheet[] =
756{
757 VRPAIR(VLEV_100, 400000000),
758 VRPAIR(VLEV_105, 426000000),
759 VRPAIR(VLEV_110, 500000000),
760 VRPAIR(VLEV_115, 533000000),
761 VRPAIR(VLEV_120, 600000000),
762};
763
764static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = {
765 .tuple_tab = cclk_vlev_datasheet,
766 .tabsize = ARRAY_SIZE(cclk_vlev_datasheet),
767 .vr_settling_time = 25 /* us */,
768};
769
770static struct platform_device bfin_dpmc = {
771 .name = "bfin dpmc",
772 .dev = {
773 .platform_data = &bfin_dmpc_vreg_data,
774 },
775};
776
777#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
778#include <asm/bfin-lq035q1.h>
779
780static struct bfin_lq035q1fb_disp_info bfin_lq035q1_data = {
Michael Hennerichd94a1aa2009-12-08 11:45:55 +0000781 .mode = LQ035_NORM | LQ035_RGB | LQ035_RL | LQ035_TB,
782 .ppi_mode = USE_RGB565_16_BIT_PPI,
783 .use_bl = 1,
784 .gpio_bl = GPIO_PG12,
Michael Hennerich8cc71172008-10-13 14:45:06 +0800785};
786
787static struct resource bfin_lq035q1_resources[] = {
788 {
789 .start = IRQ_PPI_ERROR,
790 .end = IRQ_PPI_ERROR,
791 .flags = IORESOURCE_IRQ,
792 },
793};
794
795static struct platform_device bfin_lq035q1_device = {
796 .name = "bfin-lq035q1",
797 .id = -1,
798 .num_resources = ARRAY_SIZE(bfin_lq035q1_resources),
799 .resource = bfin_lq035q1_resources,
800 .dev = {
801 .platform_data = &bfin_lq035q1_data,
802 },
803};
804#endif
805
806static struct platform_device *stamp_devices[] __initdata = {
807
808 &bfin_dpmc,
809
810#if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
811 &bf5xx_nand_device,
812#endif
813
814#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
815 &rtc_device,
816#endif
817
818#if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
819 &musb_device,
820#endif
821
822#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
Graf Yang65319622009-02-04 16:49:45 +0800823 &bfin_mii_bus,
Michael Hennerich8cc71172008-10-13 14:45:06 +0800824 &bfin_mac_device,
825#endif
826
827#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
828 &bfin_spi0_device,
829#endif
830
831#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
Sonic Zhang6bd1fbe2009-09-09 10:46:19 +0000832#ifdef CONFIG_SERIAL_BFIN_UART0
833 &bfin_uart0_device,
834#endif
835#ifdef CONFIG_SERIAL_BFIN_UART1
836 &bfin_uart1_device,
837#endif
Michael Hennerich8cc71172008-10-13 14:45:06 +0800838#endif
839
840#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
841 &bfin_lq035q1_device,
842#endif
843
844#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
Graf Yang42bd8bc2009-01-07 23:14:39 +0800845#ifdef CONFIG_BFIN_SIR0
846 &bfin_sir0_device,
847#endif
848#ifdef CONFIG_BFIN_SIR1
849 &bfin_sir1_device,
850#endif
Michael Hennerich8cc71172008-10-13 14:45:06 +0800851#endif
852
853#if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
854 &i2c_bfin_twi_device,
855#endif
856
857#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
Sonic Zhangdf5de262009-09-23 05:01:56 +0000858#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
Michael Hennerich8cc71172008-10-13 14:45:06 +0800859 &bfin_sport0_uart_device,
Sonic Zhangdf5de262009-09-23 05:01:56 +0000860#endif
861#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
Michael Hennerich8cc71172008-10-13 14:45:06 +0800862 &bfin_sport1_uart_device,
863#endif
Sonic Zhangdf5de262009-09-23 05:01:56 +0000864#endif
Michael Hennerich8cc71172008-10-13 14:45:06 +0800865
866#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
867 &bfin_device_gpiokeys,
868#endif
869
870#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
871 &ezbrd_flash_device,
872#endif
Michael Hennerich8cc71172008-10-13 14:45:06 +0800873};
874
Mike Frysinger7f6678c2009-02-04 16:49:45 +0800875static int __init ezbrd_init(void)
Michael Hennerich8cc71172008-10-13 14:45:06 +0800876{
877 printk(KERN_INFO "%s(): registering device resources\n", __func__);
Michael Hennerich8cc71172008-10-13 14:45:06 +0800878 i2c_register_board_info(0, bfin_i2c_board_info,
879 ARRAY_SIZE(bfin_i2c_board_info));
Michael Hennerich8cc71172008-10-13 14:45:06 +0800880 platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
881 spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
882 return 0;
883}
884
Mike Frysinger7f6678c2009-02-04 16:49:45 +0800885arch_initcall(ezbrd_init);
Michael Hennerich8cc71172008-10-13 14:45:06 +0800886
Sonic Zhangc13ce9f2009-09-23 09:37:46 +0000887static struct platform_device *ezbrd_early_devices[] __initdata = {
888#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
889#ifdef CONFIG_SERIAL_BFIN_UART0
890 &bfin_uart0_device,
891#endif
892#ifdef CONFIG_SERIAL_BFIN_UART1
893 &bfin_uart1_device,
894#endif
895#endif
896
897#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
898#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
899 &bfin_sport0_uart_device,
900#endif
901#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
902 &bfin_sport1_uart_device,
903#endif
904#endif
905};
906
907void __init native_machine_early_platform_add_devices(void)
908{
909 printk(KERN_INFO "register early platform devices\n");
910 early_platform_add_devices(ezbrd_early_devices,
911 ARRAY_SIZE(ezbrd_early_devices));
912}
913
Michael Hennerich8cc71172008-10-13 14:45:06 +0800914void native_machine_restart(char *cmd)
915{
916 /* workaround reboot hang when booting from SPI */
917 if ((bfin_read_SYSCR() & 0x7) == 0x3)
Sonic Zhangb52dae32009-02-04 16:49:45 +0800918 bfin_reset_boot_spi_cs(P_DEFAULT_BOOT_SPI_CS);
Michael Hennerich8cc71172008-10-13 14:45:06 +0800919}
920
921void bfin_get_ether_addr(char *addr)
922{
923 /* the MAC is stored in OTP memory page 0xDF */
924 u32 ret;
925 u64 otp_mac;
926 u32 (*otp_read)(u32 page, u32 flags, u64 *page_content) = (void *)0xEF00001A;
927
928 ret = otp_read(0xDF, 0x00, &otp_mac);
929 if (!(ret & 0x1)) {
930 char *otp_mac_p = (char *)&otp_mac;
931 for (ret = 0; ret < 6; ++ret)
932 addr[ret] = otp_mac_p[5 - ret];
933 }
934}
935EXPORT_SYMBOL(bfin_get_ether_addr);