NFSv4.1/flexfiles: Fix a protocol error in layoutreturn
[linux/fpc-iii.git] / arch / blackfin / mach-bf537 / boards / minotaur.c
blobdd7bda07bf90da6972d959739d16e785c80eb64a
1 /*
2 * Copyright 2004-2009 Analog Devices Inc.
3 * 2008-2009 Cambridge Signal Processing
4 * 2005 National ICT Australia (NICTA)
5 * Aidan Williams <aidan@nicta.com.au>
7 * Licensed under the GPL-2 or later.
8 */
10 #include <linux/device.h>
11 #include <linux/platform_device.h>
12 #include <linux/mtd/mtd.h>
13 #include <linux/mtd/partitions.h>
14 #include <linux/spi/spi.h>
15 #include <linux/spi/flash.h>
16 #if IS_ENABLED(CONFIG_USB_ISP1362_HCD)
17 #include <linux/usb/isp1362.h>
18 #endif
19 #include <linux/ata_platform.h>
20 #include <linux/irq.h>
21 #include <linux/interrupt.h>
22 #include <linux/usb/sl811.h>
23 #include <asm/dma.h>
24 #include <asm/bfin5xx_spi.h>
25 #include <asm/reboot.h>
26 #include <asm/portmux.h>
27 #include <linux/spi/ad7877.h>
30 * Name the Board for the /proc/cpuinfo
32 const char bfin_board_name[] = "CamSig Minotaur BF537";
34 #if IS_ENABLED(CONFIG_BFIN_CFPCMCIA)
35 static struct resource bfin_pcmcia_cf_resources[] = {
37 .start = 0x20310000, /* IO PORT */
38 .end = 0x20312000,
39 .flags = IORESOURCE_MEM,
40 }, {
41 .start = 0x20311000, /* Attribute Memory */
42 .end = 0x20311FFF,
43 .flags = IORESOURCE_MEM,
44 }, {
45 .start = IRQ_PF4,
46 .end = IRQ_PF4,
47 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
48 }, {
49 .start = IRQ_PF6, /* Card Detect PF6 */
50 .end = IRQ_PF6,
51 .flags = IORESOURCE_IRQ,
55 static struct platform_device bfin_pcmcia_cf_device = {
56 .name = "bfin_cf_pcmcia",
57 .id = -1,
58 .num_resources = ARRAY_SIZE(bfin_pcmcia_cf_resources),
59 .resource = bfin_pcmcia_cf_resources,
61 #endif
63 #if IS_ENABLED(CONFIG_RTC_DRV_BFIN)
64 static struct platform_device rtc_device = {
65 .name = "rtc-bfin",
66 .id = -1,
68 #endif
70 #if IS_ENABLED(CONFIG_BFIN_MAC)
71 #include <linux/bfin_mac.h>
72 static const unsigned short bfin_mac_peripherals[] = P_MII0;
74 static struct bfin_phydev_platform_data bfin_phydev_data[] = {
76 .addr = 1,
77 .irq = IRQ_MAC_PHYINT,
81 static struct bfin_mii_bus_platform_data bfin_mii_bus_data = {
82 .phydev_number = 1,
83 .phydev_data = bfin_phydev_data,
84 .phy_mode = PHY_INTERFACE_MODE_MII,
85 .mac_peripherals = bfin_mac_peripherals,
88 static struct platform_device bfin_mii_bus = {
89 .name = "bfin_mii_bus",
90 .dev = {
91 .platform_data = &bfin_mii_bus_data,
95 static struct platform_device bfin_mac_device = {
96 .name = "bfin_mac",
97 .dev = {
98 .platform_data = &bfin_mii_bus,
101 #endif
103 #if IS_ENABLED(CONFIG_USB_NET2272)
104 static struct resource net2272_bfin_resources[] = {
106 .start = 0x20300000,
107 .end = 0x20300000 + 0x100,
108 .flags = IORESOURCE_MEM,
109 }, {
110 .start = IRQ_PF7,
111 .end = IRQ_PF7,
112 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
116 static struct platform_device net2272_bfin_device = {
117 .name = "net2272",
118 .id = -1,
119 .num_resources = ARRAY_SIZE(net2272_bfin_resources),
120 .resource = net2272_bfin_resources,
122 #endif
124 #if IS_ENABLED(CONFIG_SPI_BFIN5XX)
125 /* all SPI peripherals info goes here */
127 #if IS_ENABLED(CONFIG_MTD_M25P80)
129 /* Partition sizes */
130 #define FLASH_SIZE 0x00400000
131 #define PSIZE_UBOOT 0x00030000
132 #define PSIZE_INITRAMFS 0x00240000
134 static struct mtd_partition bfin_spi_flash_partitions[] = {
136 .name = "bootloader(spi)",
137 .size = PSIZE_UBOOT,
138 .offset = 0x000000,
139 .mask_flags = MTD_CAP_ROM
140 }, {
141 .name = "initramfs(spi)",
142 .size = PSIZE_INITRAMFS,
143 .offset = PSIZE_UBOOT
144 }, {
145 .name = "opt(spi)",
146 .size = FLASH_SIZE - (PSIZE_UBOOT + PSIZE_INITRAMFS),
147 .offset = PSIZE_UBOOT + PSIZE_INITRAMFS,
151 static struct flash_platform_data bfin_spi_flash_data = {
152 .name = "m25p80",
153 .parts = bfin_spi_flash_partitions,
154 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
155 .type = "m25p64",
158 /* SPI flash chip (m25p64) */
159 static struct bfin5xx_spi_chip spi_flash_chip_info = {
160 .enable_dma = 0, /* use dma transfer with this chip*/
162 #endif
164 #if IS_ENABLED(CONFIG_MMC_SPI)
165 static struct bfin5xx_spi_chip mmc_spi_chip_info = {
166 .enable_dma = 0,
168 #endif
170 static struct spi_board_info bfin_spi_board_info[] __initdata = {
171 #if IS_ENABLED(CONFIG_MTD_M25P80)
173 /* the modalias must be the same as spi device driver name */
174 .modalias = "m25p80", /* Name of spi_driver for this device */
175 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
176 .bus_num = 0, /* Framework bus number */
177 .chip_select = 1, /* Framework chip select. On STAMP537 it is SPISSEL1*/
178 .platform_data = &bfin_spi_flash_data,
179 .controller_data = &spi_flash_chip_info,
180 .mode = SPI_MODE_3,
182 #endif
184 #if IS_ENABLED(CONFIG_MMC_SPI)
186 .modalias = "mmc_spi",
187 .max_speed_hz = 5000000, /* max spi clock (SCK) speed in HZ */
188 .bus_num = 0,
189 .chip_select = 5,
190 .controller_data = &mmc_spi_chip_info,
191 .mode = SPI_MODE_3,
193 #endif
196 /* SPI controller data */
197 static struct bfin5xx_spi_master bfin_spi0_info = {
198 .num_chipselect = 8,
199 .enable_dma = 1, /* master has the ability to do dma transfer */
202 /* SPI (0) */
203 static struct resource bfin_spi0_resource[] = {
204 [0] = {
205 .start = SPI0_REGBASE,
206 .end = SPI0_REGBASE + 0xFF,
207 .flags = IORESOURCE_MEM,
209 [1] = {
210 .start = CH_SPI,
211 .end = CH_SPI,
212 .flags = IORESOURCE_DMA,
214 [2] = {
215 .start = IRQ_SPI,
216 .end = IRQ_SPI,
217 .flags = IORESOURCE_IRQ,
221 static struct platform_device bfin_spi0_device = {
222 .name = "bfin-spi",
223 .id = 0, /* Bus number */
224 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
225 .resource = bfin_spi0_resource,
226 .dev = {
227 .platform_data = &bfin_spi0_info, /* Passed to driver */
230 #endif /* spi master and devices */
232 #if IS_ENABLED(CONFIG_SERIAL_BFIN)
233 #ifdef CONFIG_SERIAL_BFIN_UART0
234 static struct resource bfin_uart0_resources[] = {
236 .start = UART0_THR,
237 .end = UART0_GCTL+2,
238 .flags = IORESOURCE_MEM,
241 .start = IRQ_UART0_TX,
242 .end = IRQ_UART0_TX,
243 .flags = IORESOURCE_IRQ,
246 .start = IRQ_UART0_RX,
247 .end = IRQ_UART0_RX,
248 .flags = IORESOURCE_IRQ,
251 .start = IRQ_UART0_ERROR,
252 .end = IRQ_UART0_ERROR,
253 .flags = IORESOURCE_IRQ,
256 .start = CH_UART0_TX,
257 .end = CH_UART0_TX,
258 .flags = IORESOURCE_DMA,
261 .start = CH_UART0_RX,
262 .end = CH_UART0_RX,
263 .flags = IORESOURCE_DMA,
267 static unsigned short bfin_uart0_peripherals[] = {
268 P_UART0_TX, P_UART0_RX, 0
271 static struct platform_device bfin_uart0_device = {
272 .name = "bfin-uart",
273 .id = 0,
274 .num_resources = ARRAY_SIZE(bfin_uart0_resources),
275 .resource = bfin_uart0_resources,
276 .dev = {
277 .platform_data = &bfin_uart0_peripherals, /* Passed to driver */
280 #endif
281 #ifdef CONFIG_SERIAL_BFIN_UART1
282 static struct resource bfin_uart1_resources[] = {
284 .start = UART1_THR,
285 .end = UART1_GCTL+2,
286 .flags = IORESOURCE_MEM,
289 .start = IRQ_UART1_TX,
290 .end = IRQ_UART1_TX,
291 .flags = IORESOURCE_IRQ,
294 .start = IRQ_UART1_RX,
295 .end = IRQ_UART1_RX,
296 .flags = IORESOURCE_IRQ,
299 .start = IRQ_UART1_ERROR,
300 .end = IRQ_UART1_ERROR,
301 .flags = IORESOURCE_IRQ,
304 .start = CH_UART1_TX,
305 .end = CH_UART1_TX,
306 .flags = IORESOURCE_DMA,
309 .start = CH_UART1_RX,
310 .end = CH_UART1_RX,
311 .flags = IORESOURCE_DMA,
315 static unsigned short bfin_uart1_peripherals[] = {
316 P_UART1_TX, P_UART1_RX, 0
319 static struct platform_device bfin_uart1_device = {
320 .name = "bfin-uart",
321 .id = 1,
322 .num_resources = ARRAY_SIZE(bfin_uart1_resources),
323 .resource = bfin_uart1_resources,
324 .dev = {
325 .platform_data = &bfin_uart1_peripherals, /* Passed to driver */
328 #endif
329 #endif
331 #if IS_ENABLED(CONFIG_BFIN_SIR)
332 #ifdef CONFIG_BFIN_SIR0
333 static struct resource bfin_sir0_resources[] = {
335 .start = 0xFFC00400,
336 .end = 0xFFC004FF,
337 .flags = IORESOURCE_MEM,
340 .start = IRQ_UART0_RX,
341 .end = IRQ_UART0_RX+1,
342 .flags = IORESOURCE_IRQ,
345 .start = CH_UART0_RX,
346 .end = CH_UART0_RX+1,
347 .flags = IORESOURCE_DMA,
351 static struct platform_device bfin_sir0_device = {
352 .name = "bfin_sir",
353 .id = 0,
354 .num_resources = ARRAY_SIZE(bfin_sir0_resources),
355 .resource = bfin_sir0_resources,
357 #endif
358 #ifdef CONFIG_BFIN_SIR1
359 static struct resource bfin_sir1_resources[] = {
361 .start = 0xFFC02000,
362 .end = 0xFFC020FF,
363 .flags = IORESOURCE_MEM,
366 .start = IRQ_UART1_RX,
367 .end = IRQ_UART1_RX+1,
368 .flags = IORESOURCE_IRQ,
371 .start = CH_UART1_RX,
372 .end = CH_UART1_RX+1,
373 .flags = IORESOURCE_DMA,
377 static struct platform_device bfin_sir1_device = {
378 .name = "bfin_sir",
379 .id = 1,
380 .num_resources = ARRAY_SIZE(bfin_sir1_resources),
381 .resource = bfin_sir1_resources,
383 #endif
384 #endif
386 #if IS_ENABLED(CONFIG_I2C_BLACKFIN_TWI)
387 static const u16 bfin_twi0_pins[] = {P_TWI0_SCL, P_TWI0_SDA, 0};
389 static struct resource bfin_twi0_resource[] = {
390 [0] = {
391 .start = TWI0_REGBASE,
392 .end = TWI0_REGBASE + 0xFF,
393 .flags = IORESOURCE_MEM,
395 [1] = {
396 .start = IRQ_TWI,
397 .end = IRQ_TWI,
398 .flags = IORESOURCE_IRQ,
402 static struct platform_device i2c_bfin_twi_device = {
403 .name = "i2c-bfin-twi",
404 .id = 0,
405 .num_resources = ARRAY_SIZE(bfin_twi0_resource),
406 .resource = bfin_twi0_resource,
407 .dev = {
408 .platform_data = &bfin_twi0_pins,
411 #endif
413 #if IS_ENABLED(CONFIG_SERIAL_BFIN_SPORT)
414 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
415 static struct resource bfin_sport0_uart_resources[] = {
417 .start = SPORT0_TCR1,
418 .end = SPORT0_MRCS3+4,
419 .flags = IORESOURCE_MEM,
422 .start = IRQ_SPORT0_RX,
423 .end = IRQ_SPORT0_RX+1,
424 .flags = IORESOURCE_IRQ,
427 .start = IRQ_SPORT0_ERROR,
428 .end = IRQ_SPORT0_ERROR,
429 .flags = IORESOURCE_IRQ,
433 static unsigned short bfin_sport0_peripherals[] = {
434 P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
435 P_SPORT0_DRPRI, P_SPORT0_RSCLK, 0
438 static struct platform_device bfin_sport0_uart_device = {
439 .name = "bfin-sport-uart",
440 .id = 0,
441 .num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
442 .resource = bfin_sport0_uart_resources,
443 .dev = {
444 .platform_data = &bfin_sport0_peripherals, /* Passed to driver */
447 #endif
448 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
449 static struct resource bfin_sport1_uart_resources[] = {
451 .start = SPORT1_TCR1,
452 .end = SPORT1_MRCS3+4,
453 .flags = IORESOURCE_MEM,
456 .start = IRQ_SPORT1_RX,
457 .end = IRQ_SPORT1_RX+1,
458 .flags = IORESOURCE_IRQ,
461 .start = IRQ_SPORT1_ERROR,
462 .end = IRQ_SPORT1_ERROR,
463 .flags = IORESOURCE_IRQ,
467 static unsigned short bfin_sport1_peripherals[] = {
468 P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
469 P_SPORT1_DRPRI, P_SPORT1_RSCLK, 0
472 static struct platform_device bfin_sport1_uart_device = {
473 .name = "bfin-sport-uart",
474 .id = 1,
475 .num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
476 .resource = bfin_sport1_uart_resources,
477 .dev = {
478 .platform_data = &bfin_sport1_peripherals, /* Passed to driver */
481 #endif
482 #endif
484 static struct platform_device *minotaur_devices[] __initdata = {
485 #if IS_ENABLED(CONFIG_BFIN_CFPCMCIA)
486 &bfin_pcmcia_cf_device,
487 #endif
489 #if IS_ENABLED(CONFIG_RTC_DRV_BFIN)
490 &rtc_device,
491 #endif
493 #if IS_ENABLED(CONFIG_BFIN_MAC)
494 &bfin_mii_bus,
495 &bfin_mac_device,
496 #endif
498 #if IS_ENABLED(CONFIG_USB_NET2272)
499 &net2272_bfin_device,
500 #endif
502 #if IS_ENABLED(CONFIG_SPI_BFIN5XX)
503 &bfin_spi0_device,
504 #endif
506 #if IS_ENABLED(CONFIG_SERIAL_BFIN)
507 #ifdef CONFIG_SERIAL_BFIN_UART0
508 &bfin_uart0_device,
509 #endif
510 #ifdef CONFIG_SERIAL_BFIN_UART1
511 &bfin_uart1_device,
512 #endif
513 #endif
515 #if IS_ENABLED(CONFIG_BFIN_SIR)
516 #ifdef CONFIG_BFIN_SIR0
517 &bfin_sir0_device,
518 #endif
519 #ifdef CONFIG_BFIN_SIR1
520 &bfin_sir1_device,
521 #endif
522 #endif
524 #if IS_ENABLED(CONFIG_I2C_BLACKFIN_TWI)
525 &i2c_bfin_twi_device,
526 #endif
528 #if IS_ENABLED(CONFIG_SERIAL_BFIN_SPORT)
529 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
530 &bfin_sport0_uart_device,
531 #endif
532 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
533 &bfin_sport1_uart_device,
534 #endif
535 #endif
539 static int __init minotaur_init(void)
541 printk(KERN_INFO "%s(): registering device resources\n", __func__);
542 platform_add_devices(minotaur_devices, ARRAY_SIZE(minotaur_devices));
543 #if IS_ENABLED(CONFIG_SPI_BFIN5XX)
544 spi_register_board_info(bfin_spi_board_info,
545 ARRAY_SIZE(bfin_spi_board_info));
546 #endif
548 return 0;
551 arch_initcall(minotaur_init);
553 static struct platform_device *minotaur_early_devices[] __initdata = {
554 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
555 #ifdef CONFIG_SERIAL_BFIN_UART0
556 &bfin_uart0_device,
557 #endif
558 #ifdef CONFIG_SERIAL_BFIN_UART1
559 &bfin_uart1_device,
560 #endif
561 #endif
563 #if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
564 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
565 &bfin_sport0_uart_device,
566 #endif
567 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
568 &bfin_sport1_uart_device,
569 #endif
570 #endif
573 void __init native_machine_early_platform_add_devices(void)
575 printk(KERN_INFO "register early platform devices\n");
576 early_platform_add_devices(minotaur_early_devices,
577 ARRAY_SIZE(minotaur_early_devices));
580 void native_machine_restart(char *cmd)
582 /* workaround reboot hang when booting from SPI */
583 if ((bfin_read_SYSCR() & 0x7) == 0x3)
584 bfin_reset_boot_spi_cs(P_DEFAULT_BOOT_SPI_CS);