2 * Copyright 2004-2009 Analog Devices Inc.
3 * 2005 National ICT Australia (NICTA)
4 * Aidan Williams <aidan@nicta.com.au>
6 * Licensed under the GPL-2
9 #include <linux/device.h>
10 #include <linux/platform_device.h>
11 #include <linux/mtd/mtd.h>
12 #include <linux/mtd/physmap.h>
13 #include <linux/mtd/partitions.h>
14 #include <linux/spi/spi.h>
15 #include <linux/spi/flash.h>
16 #include <linux/irq.h>
17 #include <linux/interrupt.h>
18 #include <asm/bfin5xx_spi.h>
22 #include <asm/portmux.h>
24 #include <linux/input.h>
27 * Name the Board for the /proc/cpuinfo
29 const char bfin_board_name
[] = "ADI BF538-EZKIT";
32 * Driver needs to know address, irq and flag pin.
36 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
37 static struct platform_device rtc_device
= {
41 #endif /* CONFIG_RTC_DRV_BFIN */
43 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
44 #ifdef CONFIG_SERIAL_BFIN_UART0
45 static struct resource bfin_uart0_resources
[] = {
49 .flags
= IORESOURCE_MEM
,
52 .start
= IRQ_UART0_TX
,
54 .flags
= IORESOURCE_IRQ
,
57 .start
= IRQ_UART0_RX
,
59 .flags
= IORESOURCE_IRQ
,
62 .start
= IRQ_UART0_ERROR
,
63 .end
= IRQ_UART0_ERROR
,
64 .flags
= IORESOURCE_IRQ
,
69 .flags
= IORESOURCE_DMA
,
74 .flags
= IORESOURCE_DMA
,
76 #ifdef CONFIG_BFIN_UART0_CTSRTS
80 .flags
= IORESOURCE_IO
,
85 .flags
= IORESOURCE_IO
,
90 static unsigned short bfin_uart0_peripherals
[] = {
91 P_UART0_TX
, P_UART0_RX
, 0
94 static struct platform_device bfin_uart0_device
= {
97 .num_resources
= ARRAY_SIZE(bfin_uart0_resources
),
98 .resource
= bfin_uart0_resources
,
100 .platform_data
= &bfin_uart0_peripherals
, /* Passed to driver */
103 #endif /* CONFIG_SERIAL_BFIN_UART0 */
104 #ifdef CONFIG_SERIAL_BFIN_UART1
105 static struct resource bfin_uart1_resources
[] = {
109 .flags
= IORESOURCE_MEM
,
112 .start
= IRQ_UART1_TX
,
114 .flags
= IORESOURCE_IRQ
,
117 .start
= IRQ_UART1_RX
,
119 .flags
= IORESOURCE_IRQ
,
122 .start
= IRQ_UART1_ERROR
,
123 .end
= IRQ_UART1_ERROR
,
124 .flags
= IORESOURCE_IRQ
,
127 .start
= CH_UART1_TX
,
129 .flags
= IORESOURCE_DMA
,
132 .start
= CH_UART1_RX
,
134 .flags
= IORESOURCE_DMA
,
138 static unsigned short bfin_uart1_peripherals
[] = {
139 P_UART1_TX
, P_UART1_RX
, 0
142 static struct platform_device bfin_uart1_device
= {
145 .num_resources
= ARRAY_SIZE(bfin_uart1_resources
),
146 .resource
= bfin_uart1_resources
,
148 .platform_data
= &bfin_uart1_peripherals
, /* Passed to driver */
151 #endif /* CONFIG_SERIAL_BFIN_UART1 */
152 #ifdef CONFIG_SERIAL_BFIN_UART2
153 static struct resource bfin_uart2_resources
[] = {
157 .flags
= IORESOURCE_MEM
,
160 .start
= IRQ_UART2_TX
,
162 .flags
= IORESOURCE_IRQ
,
165 .start
= IRQ_UART2_RX
,
167 .flags
= IORESOURCE_IRQ
,
170 .start
= IRQ_UART2_ERROR
,
171 .end
= IRQ_UART2_ERROR
,
172 .flags
= IORESOURCE_IRQ
,
175 .start
= CH_UART2_TX
,
177 .flags
= IORESOURCE_DMA
,
180 .start
= CH_UART2_RX
,
182 .flags
= IORESOURCE_DMA
,
186 static unsigned short bfin_uart2_peripherals
[] = {
187 P_UART2_TX
, P_UART2_RX
, 0
190 static struct platform_device bfin_uart2_device
= {
193 .num_resources
= ARRAY_SIZE(bfin_uart2_resources
),
194 .resource
= bfin_uart2_resources
,
196 .platform_data
= &bfin_uart2_peripherals
, /* Passed to driver */
199 #endif /* CONFIG_SERIAL_BFIN_UART2 */
200 #endif /* CONFIG_SERIAL_BFIN */
202 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
203 #ifdef CONFIG_BFIN_SIR0
204 static struct resource bfin_sir0_resources
[] = {
208 .flags
= IORESOURCE_MEM
,
211 .start
= IRQ_UART0_RX
,
212 .end
= IRQ_UART0_RX
+1,
213 .flags
= IORESOURCE_IRQ
,
216 .start
= CH_UART0_RX
,
217 .end
= CH_UART0_RX
+1,
218 .flags
= IORESOURCE_DMA
,
221 static struct platform_device bfin_sir0_device
= {
224 .num_resources
= ARRAY_SIZE(bfin_sir0_resources
),
225 .resource
= bfin_sir0_resources
,
227 #endif /* CONFIG_BFIN_SIR0 */
228 #ifdef CONFIG_BFIN_SIR1
229 static struct resource bfin_sir1_resources
[] = {
233 .flags
= IORESOURCE_MEM
,
236 .start
= IRQ_UART1_RX
,
237 .end
= IRQ_UART1_RX
+1,
238 .flags
= IORESOURCE_IRQ
,
241 .start
= CH_UART1_RX
,
242 .end
= CH_UART1_RX
+1,
243 .flags
= IORESOURCE_DMA
,
246 static struct platform_device bfin_sir1_device
= {
249 .num_resources
= ARRAY_SIZE(bfin_sir1_resources
),
250 .resource
= bfin_sir1_resources
,
252 #endif /* CONFIG_BFIN_SIR1 */
253 #ifdef CONFIG_BFIN_SIR2
254 static struct resource bfin_sir2_resources
[] = {
258 .flags
= IORESOURCE_MEM
,
261 .start
= IRQ_UART2_RX
,
262 .end
= IRQ_UART2_RX
+1,
263 .flags
= IORESOURCE_IRQ
,
266 .start
= CH_UART2_RX
,
267 .end
= CH_UART2_RX
+1,
268 .flags
= IORESOURCE_DMA
,
271 static struct platform_device bfin_sir2_device
= {
274 .num_resources
= ARRAY_SIZE(bfin_sir2_resources
),
275 .resource
= bfin_sir2_resources
,
277 #endif /* CONFIG_BFIN_SIR2 */
278 #endif /* CONFIG_BFIN_SIR */
280 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
281 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
282 static struct resource bfin_sport0_uart_resources
[] = {
284 .start
= SPORT0_TCR1
,
285 .end
= SPORT0_MRCS3
+4,
286 .flags
= IORESOURCE_MEM
,
289 .start
= IRQ_SPORT0_RX
,
290 .end
= IRQ_SPORT0_RX
+1,
291 .flags
= IORESOURCE_IRQ
,
294 .start
= IRQ_SPORT0_ERROR
,
295 .end
= IRQ_SPORT0_ERROR
,
296 .flags
= IORESOURCE_IRQ
,
300 static unsigned short bfin_sport0_peripherals
[] = {
301 P_SPORT0_TFS
, P_SPORT0_DTPRI
, P_SPORT0_TSCLK
, P_SPORT0_RFS
,
302 P_SPORT0_DRPRI
, P_SPORT0_RSCLK
, 0
305 static struct platform_device bfin_sport0_uart_device
= {
306 .name
= "bfin-sport-uart",
308 .num_resources
= ARRAY_SIZE(bfin_sport0_uart_resources
),
309 .resource
= bfin_sport0_uart_resources
,
311 .platform_data
= &bfin_sport0_peripherals
, /* Passed to driver */
314 #endif /* CONFIG_SERIAL_BFIN_SPORT0_UART */
315 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
316 static struct resource bfin_sport1_uart_resources
[] = {
318 .start
= SPORT1_TCR1
,
319 .end
= SPORT1_MRCS3
+4,
320 .flags
= IORESOURCE_MEM
,
323 .start
= IRQ_SPORT1_RX
,
324 .end
= IRQ_SPORT1_RX
+1,
325 .flags
= IORESOURCE_IRQ
,
328 .start
= IRQ_SPORT1_ERROR
,
329 .end
= IRQ_SPORT1_ERROR
,
330 .flags
= IORESOURCE_IRQ
,
334 static unsigned short bfin_sport1_peripherals
[] = {
335 P_SPORT1_TFS
, P_SPORT1_DTPRI
, P_SPORT1_TSCLK
, P_SPORT1_RFS
,
336 P_SPORT1_DRPRI
, P_SPORT1_RSCLK
, 0
339 static struct platform_device bfin_sport1_uart_device
= {
340 .name
= "bfin-sport-uart",
342 .num_resources
= ARRAY_SIZE(bfin_sport1_uart_resources
),
343 .resource
= bfin_sport1_uart_resources
,
345 .platform_data
= &bfin_sport1_peripherals
, /* Passed to driver */
348 #endif /* CONFIG_SERIAL_BFIN_SPORT1_UART */
349 #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
350 static struct resource bfin_sport2_uart_resources
[] = {
352 .start
= SPORT2_TCR1
,
353 .end
= SPORT2_MRCS3
+4,
354 .flags
= IORESOURCE_MEM
,
357 .start
= IRQ_SPORT2_RX
,
358 .end
= IRQ_SPORT2_RX
+1,
359 .flags
= IORESOURCE_IRQ
,
362 .start
= IRQ_SPORT2_ERROR
,
363 .end
= IRQ_SPORT2_ERROR
,
364 .flags
= IORESOURCE_IRQ
,
368 static unsigned short bfin_sport2_peripherals
[] = {
369 P_SPORT2_TFS
, P_SPORT2_DTPRI
, P_SPORT2_TSCLK
, P_SPORT2_RFS
,
370 P_SPORT2_DRPRI
, P_SPORT2_RSCLK
, P_SPORT2_DRSEC
, P_SPORT2_DTSEC
, 0
373 static struct platform_device bfin_sport2_uart_device
= {
374 .name
= "bfin-sport-uart",
376 .num_resources
= ARRAY_SIZE(bfin_sport2_uart_resources
),
377 .resource
= bfin_sport2_uart_resources
,
379 .platform_data
= &bfin_sport2_peripherals
, /* Passed to driver */
382 #endif /* CONFIG_SERIAL_BFIN_SPORT2_UART */
383 #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
384 static struct resource bfin_sport3_uart_resources
[] = {
386 .start
= SPORT3_TCR1
,
387 .end
= SPORT3_MRCS3
+4,
388 .flags
= IORESOURCE_MEM
,
391 .start
= IRQ_SPORT3_RX
,
392 .end
= IRQ_SPORT3_RX
+1,
393 .flags
= IORESOURCE_IRQ
,
396 .start
= IRQ_SPORT3_ERROR
,
397 .end
= IRQ_SPORT3_ERROR
,
398 .flags
= IORESOURCE_IRQ
,
402 static unsigned short bfin_sport3_peripherals
[] = {
403 P_SPORT3_TFS
, P_SPORT3_DTPRI
, P_SPORT3_TSCLK
, P_SPORT3_RFS
,
404 P_SPORT3_DRPRI
, P_SPORT3_RSCLK
, P_SPORT3_DRSEC
, P_SPORT3_DTSEC
, 0
407 static struct platform_device bfin_sport3_uart_device
= {
408 .name
= "bfin-sport-uart",
410 .num_resources
= ARRAY_SIZE(bfin_sport3_uart_resources
),
411 .resource
= bfin_sport3_uart_resources
,
413 .platform_data
= &bfin_sport3_peripherals
, /* Passed to driver */
416 #endif /* CONFIG_SERIAL_BFIN_SPORT3_UART */
417 #endif /* CONFIG_SERIAL_BFIN_SPORT */
419 #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
420 static unsigned short bfin_can_peripherals
[] = {
421 P_CAN0_RX
, P_CAN0_TX
, 0
424 static struct resource bfin_can_resources
[] = {
428 .flags
= IORESOURCE_MEM
,
433 .flags
= IORESOURCE_IRQ
,
438 .flags
= IORESOURCE_IRQ
,
441 .start
= IRQ_CAN_ERROR
,
442 .end
= IRQ_CAN_ERROR
,
443 .flags
= IORESOURCE_IRQ
,
447 static struct platform_device bfin_can_device
= {
449 .num_resources
= ARRAY_SIZE(bfin_can_resources
),
450 .resource
= bfin_can_resources
,
452 .platform_data
= &bfin_can_peripherals
, /* Passed to driver */
455 #endif /* CONFIG_CAN_BFIN */
458 * USB-LAN EzExtender board
459 * Driver needs to know address, irq and flag pin.
461 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
462 #include <linux/smc91x.h>
464 static struct smc91x_platdata smc91x_info
= {
465 .flags
= SMC91X_USE_16BIT
| SMC91X_NOWAIT
,
466 .leda
= RPC_LED_100_10
,
467 .ledb
= RPC_LED_TX_RX
,
470 static struct resource smc91x_resources
[] = {
472 .name
= "smc91x-regs",
474 .end
= 0x20310300 + 16,
475 .flags
= IORESOURCE_MEM
,
479 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
482 static struct platform_device smc91x_device
= {
485 .num_resources
= ARRAY_SIZE(smc91x_resources
),
486 .resource
= smc91x_resources
,
488 .platform_data
= &smc91x_info
,
491 #endif /* CONFIG_SMC91X */
493 #if defined(CONFIG_SPI_BFIN5XX) || defined(CONFIG_SPI_BFIN5XX_MODULE)
494 /* all SPI peripherals info goes here */
495 #if defined(CONFIG_MTD_M25P80) \
496 || defined(CONFIG_MTD_M25P80_MODULE)
497 /* SPI flash chip (m25p16) */
498 static struct mtd_partition bfin_spi_flash_partitions
[] = {
500 .name
= "bootloader(spi)",
503 .mask_flags
= MTD_CAP_ROM
505 .name
= "linux kernel(spi)",
511 static struct flash_platform_data bfin_spi_flash_data
= {
513 .parts
= bfin_spi_flash_partitions
,
514 .nr_parts
= ARRAY_SIZE(bfin_spi_flash_partitions
),
518 static struct bfin5xx_spi_chip spi_flash_chip_info
= {
519 .enable_dma
= 0, /* use dma transfer with this chip*/
521 #endif /* CONFIG_MTD_M25P80 */
522 #endif /* CONFIG_SPI_BFIN5XX */
524 #if defined(CONFIG_TOUCHSCREEN_AD7879) || defined(CONFIG_TOUCHSCREEN_AD7879_MODULE)
525 #include <linux/spi/ad7879.h>
526 static const struct ad7879_platform_data bfin_ad7879_ts_info
= {
527 .model
= 7879, /* Model = AD7879 */
528 .x_plate_ohms
= 620, /* 620 Ohm from the touch datasheet */
529 .pressure_max
= 10000,
531 .first_conversion_delay
= 3, /* wait 512us before do a first conversion */
532 .acquisition_time
= 1, /* 4us acquisition time per sample */
533 .median
= 2, /* do 8 measurements */
534 .averaging
= 1, /* take the average of 4 middle samples */
535 .pen_down_acc_interval
= 255, /* 9.4 ms */
536 .gpio_export
= 1, /* Export GPIO to gpiolib */
537 .gpio_base
= -1, /* Dynamic allocation */
539 #endif /* CONFIG_TOUCHSCREEN_AD7879 */
541 #if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
542 #include <asm/bfin-lq035q1.h>
544 static struct bfin_lq035q1fb_disp_info bfin_lq035q1_data
= {
545 .mode
= LQ035_NORM
| LQ035_RGB
| LQ035_RL
| LQ035_TB
,
546 .ppi_mode
= USE_RGB565_16_BIT_PPI
,
547 .use_bl
= 0, /* let something else control the LCD Blacklight */
551 static struct resource bfin_lq035q1_resources
[] = {
553 .start
= IRQ_PPI_ERROR
,
554 .end
= IRQ_PPI_ERROR
,
555 .flags
= IORESOURCE_IRQ
,
559 static struct platform_device bfin_lq035q1_device
= {
560 .name
= "bfin-lq035q1",
562 .num_resources
= ARRAY_SIZE(bfin_lq035q1_resources
),
563 .resource
= bfin_lq035q1_resources
,
565 .platform_data
= &bfin_lq035q1_data
,
568 #endif /* CONFIG_FB_BFIN_LQ035Q1 */
570 static struct spi_board_info bf538_spi_board_info
[] __initdata
= {
571 #if defined(CONFIG_MTD_M25P80) \
572 || defined(CONFIG_MTD_M25P80_MODULE)
574 /* the modalias must be the same as spi device driver name */
575 .modalias
= "m25p80", /* Name of spi_driver for this device */
576 .max_speed_hz
= 25000000, /* max spi clock (SCK) speed in HZ */
577 .bus_num
= 0, /* Framework bus number */
578 .chip_select
= 1, /* SPI_SSEL1*/
579 .platform_data
= &bfin_spi_flash_data
,
580 .controller_data
= &spi_flash_chip_info
,
583 #endif /* CONFIG_MTD_M25P80 */
584 #if defined(CONFIG_TOUCHSCREEN_AD7879_SPI) || defined(CONFIG_TOUCHSCREEN_AD7879_SPI_MODULE)
586 .modalias
= "ad7879",
587 .platform_data
= &bfin_ad7879_ts_info
,
589 .max_speed_hz
= 5000000, /* max spi clock (SCK) speed in HZ */
592 .mode
= SPI_CPHA
| SPI_CPOL
,
594 #endif /* CONFIG_TOUCHSCREEN_AD7879_SPI */
595 #if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
597 .modalias
= "bfin-lq035q1-spi",
598 .max_speed_hz
= 20000000, /* max spi clock (SCK) speed in HZ */
601 .mode
= SPI_CPHA
| SPI_CPOL
,
603 #endif /* CONFIG_FB_BFIN_LQ035Q1 */
604 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
606 .modalias
= "spidev",
607 .max_speed_hz
= 3125000, /* max spi clock (SCK) speed in HZ */
611 #endif /* CONFIG_SPI_SPIDEV */
615 static struct resource bfin_spi0_resource
[] = {
617 .start
= SPI0_REGBASE
,
618 .end
= SPI0_REGBASE
+ 0xFF,
619 .flags
= IORESOURCE_MEM
,
624 .flags
= IORESOURCE_DMA
,
629 .flags
= IORESOURCE_IRQ
,
634 static struct resource bfin_spi1_resource
[] = {
636 .start
= SPI1_REGBASE
,
637 .end
= SPI1_REGBASE
+ 0xFF,
638 .flags
= IORESOURCE_MEM
,
643 .flags
= IORESOURCE_DMA
,
648 .flags
= IORESOURCE_IRQ
,
653 static struct resource bfin_spi2_resource
[] = {
655 .start
= SPI2_REGBASE
,
656 .end
= SPI2_REGBASE
+ 0xFF,
657 .flags
= IORESOURCE_MEM
,
662 .flags
= IORESOURCE_DMA
,
667 .flags
= IORESOURCE_IRQ
,
671 /* SPI controller data */
672 static struct bfin5xx_spi_master bf538_spi_master_info0
= {
674 .enable_dma
= 1, /* master has the ability to do dma transfer */
675 .pin_req
= {P_SPI0_SCK
, P_SPI0_MISO
, P_SPI0_MOSI
, 0},
678 static struct platform_device bf538_spi_master0
= {
680 .id
= 0, /* Bus number */
681 .num_resources
= ARRAY_SIZE(bfin_spi0_resource
),
682 .resource
= bfin_spi0_resource
,
684 .platform_data
= &bf538_spi_master_info0
, /* Passed to driver */
688 static struct bfin5xx_spi_master bf538_spi_master_info1
= {
690 .enable_dma
= 1, /* master has the ability to do dma transfer */
691 .pin_req
= {P_SPI1_SCK
, P_SPI1_MISO
, P_SPI1_MOSI
, 0},
694 static struct platform_device bf538_spi_master1
= {
696 .id
= 1, /* Bus number */
697 .num_resources
= ARRAY_SIZE(bfin_spi1_resource
),
698 .resource
= bfin_spi1_resource
,
700 .platform_data
= &bf538_spi_master_info1
, /* Passed to driver */
704 static struct bfin5xx_spi_master bf538_spi_master_info2
= {
706 .enable_dma
= 1, /* master has the ability to do dma transfer */
707 .pin_req
= {P_SPI2_SCK
, P_SPI2_MISO
, P_SPI2_MOSI
, 0},
710 static struct platform_device bf538_spi_master2
= {
712 .id
= 2, /* Bus number */
713 .num_resources
= ARRAY_SIZE(bfin_spi2_resource
),
714 .resource
= bfin_spi2_resource
,
716 .platform_data
= &bf538_spi_master_info2
, /* Passed to driver */
720 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
721 static const u16 bfin_twi0_pins
[] = {P_TWI0_SCL
, P_TWI0_SDA
, 0};
723 static struct resource bfin_twi0_resource
[] = {
725 .start
= TWI0_REGBASE
,
726 .end
= TWI0_REGBASE
+ 0xFF,
727 .flags
= IORESOURCE_MEM
,
732 .flags
= IORESOURCE_IRQ
,
736 static struct platform_device i2c_bfin_twi0_device
= {
737 .name
= "i2c-bfin-twi",
739 .num_resources
= ARRAY_SIZE(bfin_twi0_resource
),
740 .resource
= bfin_twi0_resource
,
742 .platform_data
= &bfin_twi0_pins
,
746 static const u16 bfin_twi1_pins
[] = {P_TWI1_SCL
, P_TWI1_SDA
, 0};
748 static struct resource bfin_twi1_resource
[] = {
750 .start
= TWI1_REGBASE
,
751 .end
= TWI1_REGBASE
+ 0xFF,
752 .flags
= IORESOURCE_MEM
,
757 .flags
= IORESOURCE_IRQ
,
761 static struct platform_device i2c_bfin_twi1_device
= {
762 .name
= "i2c-bfin-twi",
764 .num_resources
= ARRAY_SIZE(bfin_twi1_resource
),
765 .resource
= bfin_twi1_resource
,
767 #endif /* CONFIG_I2C_BLACKFIN_TWI */
769 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
770 #include <linux/gpio_keys.h>
772 static struct gpio_keys_button bfin_gpio_keys_table
[] = {
773 {BTN_0
, GPIO_PC7
, 1, "gpio-keys: BTN0"},
776 static struct gpio_keys_platform_data bfin_gpio_keys_data
= {
777 .buttons
= bfin_gpio_keys_table
,
778 .nbuttons
= ARRAY_SIZE(bfin_gpio_keys_table
),
781 static struct platform_device bfin_device_gpiokeys
= {
784 .platform_data
= &bfin_gpio_keys_data
,
789 static const unsigned int cclk_vlev_datasheet
[] =
792 * Internal VLEV BF538SBBC1533
793 ****temporarily using these values until data sheet is updated
795 VRPAIR(VLEV_100
, 150000000),
796 VRPAIR(VLEV_100
, 250000000),
797 VRPAIR(VLEV_110
, 276000000),
798 VRPAIR(VLEV_115
, 301000000),
799 VRPAIR(VLEV_120
, 525000000),
800 VRPAIR(VLEV_125
, 550000000),
801 VRPAIR(VLEV_130
, 600000000),
804 static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data
= {
805 .tuple_tab
= cclk_vlev_datasheet
,
806 .tabsize
= ARRAY_SIZE(cclk_vlev_datasheet
),
807 .vr_settling_time
= 25 /* us */,
810 static struct platform_device bfin_dpmc
= {
813 .platform_data
= &bfin_dmpc_vreg_data
,
817 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
818 static struct mtd_partition ezkit_partitions
[] = {
820 .name
= "bootloader(nor)",
824 .name
= "linux kernel(nor)",
826 .offset
= MTDPART_OFS_APPEND
,
828 .name
= "file system(nor)",
829 .size
= MTDPART_SIZ_FULL
,
830 .offset
= MTDPART_OFS_APPEND
,
834 static struct physmap_flash_data ezkit_flash_data
= {
836 .parts
= ezkit_partitions
,
837 .nr_parts
= ARRAY_SIZE(ezkit_partitions
),
840 static struct resource ezkit_flash_resource
= {
842 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
847 .flags
= IORESOURCE_MEM
,
850 static struct platform_device ezkit_flash_device
= {
851 .name
= "physmap-flash",
854 .platform_data
= &ezkit_flash_data
,
857 .resource
= &ezkit_flash_resource
,
861 static struct platform_device
*cm_bf538_devices
[] __initdata
= {
865 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
869 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
870 #ifdef CONFIG_SERIAL_BFIN_UART0
873 #ifdef CONFIG_SERIAL_BFIN_UART1
876 #ifdef CONFIG_SERIAL_BFIN_UART2
881 #if defined(CONFIG_SPI_BFIN5XX) || defined(CONFIG_SPI_BFIN5XX_MODULE)
887 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
888 &i2c_bfin_twi0_device
,
889 &i2c_bfin_twi1_device
,
892 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
893 #ifdef CONFIG_BFIN_SIR0
896 #ifdef CONFIG_BFIN_SIR1
899 #ifdef CONFIG_BFIN_SIR2
904 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
905 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
906 &bfin_sport0_uart_device
,
908 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
909 &bfin_sport1_uart_device
,
911 #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
912 &bfin_sport2_uart_device
,
914 #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
915 &bfin_sport3_uart_device
,
919 #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
923 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
927 #if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
928 &bfin_lq035q1_device
,
931 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
932 &bfin_device_gpiokeys
,
935 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
940 static int __init
ezkit_init(void)
942 printk(KERN_INFO
"%s(): registering device resources\n", __func__
);
943 platform_add_devices(cm_bf538_devices
, ARRAY_SIZE(cm_bf538_devices
));
945 #if defined(CONFIG_SPI_BFIN5XX) || defined(CONFIG_SPI_BFIN5XX_MODULE)
946 spi_register_board_info(bf538_spi_board_info
,
947 ARRAY_SIZE(bf538_spi_board_info
));
953 arch_initcall(ezkit_init
);
955 static struct platform_device
*ezkit_early_devices
[] __initdata
= {
956 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
957 #ifdef CONFIG_SERIAL_BFIN_UART0
960 #ifdef CONFIG_SERIAL_BFIN_UART1
963 #ifdef CONFIG_SERIAL_BFIN_UART2
968 #if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
969 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
970 &bfin_sport0_uart_device
,
972 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
973 &bfin_sport1_uart_device
,
975 #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
976 &bfin_sport2_uart_device
,
978 #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
979 &bfin_sport3_uart_device
,
984 void __init
native_machine_early_platform_add_devices(void)
986 printk(KERN_INFO
"register early platform devices\n");
987 early_platform_add_devices(ezkit_early_devices
,
988 ARRAY_SIZE(ezkit_early_devices
));