2 * Copyright 2004-2009 Analog Devices Inc.
3 * 2008-2009 Bluetechnix
4 * 2005 National ICT Australia (NICTA)
5 * Aidan Williams <aidan@nicta.com.au>
7 * Licensed under the GPL-2 or later.
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/mtd/physmap.h>
15 #include <linux/spi/spi.h>
16 #include <linux/spi/flash.h>
17 #include <linux/spi/mmc_spi.h>
18 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
19 #include <linux/usb/isp1362.h>
21 #include <linux/irq.h>
23 #include <asm/bfin5xx_spi.h>
24 #include <asm/portmux.h>
28 * Name the Board for the /proc/cpuinfo
30 const char bfin_board_name
[] = "Bluetechnix CM BF533";
32 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
33 /* all SPI peripherals info goes here */
34 #if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE)
35 static struct mtd_partition bfin_spi_flash_partitions
[] = {
37 .name
= "bootloader(spi)",
40 .mask_flags
= MTD_CAP_ROM
42 .name
= "linux kernel(spi)",
46 .name
= "file system(spi)",
52 static struct flash_platform_data bfin_spi_flash_data
= {
54 .parts
= bfin_spi_flash_partitions
,
55 .nr_parts
= ARRAY_SIZE(bfin_spi_flash_partitions
),
59 /* SPI flash chip (m25p64) */
60 static struct bfin5xx_spi_chip spi_flash_chip_info
= {
61 .enable_dma
= 0, /* use dma transfer with this chip*/
67 #if defined(CONFIG_BFIN_SPI_ADC) || defined(CONFIG_BFIN_SPI_ADC_MODULE)
68 static struct bfin5xx_spi_chip spi_adc_chip_info
= {
69 .enable_dma
= 1, /* use dma transfer with this chip*/
74 #if defined(CONFIG_SND_BF5XX_SOC_AD183X) || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE)
75 static struct bfin5xx_spi_chip ad1836_spi_chip_info
= {
81 #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
82 static struct bfin5xx_spi_chip mmc_spi_chip_info
= {
88 static struct spi_board_info bfin_spi_board_info
[] __initdata
= {
89 #if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE)
91 /* the modalias must be the same as spi device driver name */
92 .modalias
= "m25p80", /* Name of spi_driver for this device */
93 .max_speed_hz
= 25000000, /* max spi clock (SCK) speed in HZ */
94 .bus_num
= 0, /* Framework bus number */
95 .chip_select
= 1, /* Framework chip select. On STAMP537 it is SPISSEL1*/
96 .platform_data
= &bfin_spi_flash_data
,
97 .controller_data
= &spi_flash_chip_info
,
102 #if defined(CONFIG_BFIN_SPI_ADC) || defined(CONFIG_BFIN_SPI_ADC_MODULE)
104 .modalias
= "bfin_spi_adc", /* Name of spi_driver for this device */
105 .max_speed_hz
= 6250000, /* max spi clock (SCK) speed in HZ */
106 .bus_num
= 0, /* Framework bus number */
107 .chip_select
= 2, /* Framework chip select. */
108 .platform_data
= NULL
, /* No spi_driver specific config */
109 .controller_data
= &spi_adc_chip_info
,
113 #if defined(CONFIG_SND_BF5XX_SOC_AD183X) || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE)
115 .modalias
= "ad183x",
116 .max_speed_hz
= 3125000, /* max spi clock (SCK) speed in HZ */
119 .controller_data
= &ad1836_spi_chip_info
,
123 #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
125 .modalias
= "mmc_spi",
126 .max_speed_hz
= 20000000, /* max spi clock (SCK) speed in HZ */
129 .controller_data
= &mmc_spi_chip_info
,
136 static struct resource bfin_spi0_resource
[] = {
138 .start
= SPI0_REGBASE
,
139 .end
= SPI0_REGBASE
+ 0xFF,
140 .flags
= IORESOURCE_MEM
,
145 .flags
= IORESOURCE_DMA
,
150 .flags
= IORESOURCE_IRQ
,
154 /* SPI controller data */
155 static struct bfin5xx_spi_master bfin_spi0_info
= {
157 .enable_dma
= 1, /* master has the ability to do dma transfer */
158 .pin_req
= {P_SPI0_SCK
, P_SPI0_MISO
, P_SPI0_MOSI
, 0},
161 static struct platform_device bfin_spi0_device
= {
163 .id
= 0, /* Bus number */
164 .num_resources
= ARRAY_SIZE(bfin_spi0_resource
),
165 .resource
= bfin_spi0_resource
,
167 .platform_data
= &bfin_spi0_info
, /* Passed to driver */
170 #endif /* spi master and devices */
172 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
173 static struct platform_device rtc_device
= {
179 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
180 #include <linux/smc91x.h>
182 static struct smc91x_platdata smc91x_info
= {
183 .flags
= SMC91X_USE_16BIT
| SMC91X_NOWAIT
,
184 .leda
= RPC_LED_100_10
,
185 .ledb
= RPC_LED_TX_RX
,
188 static struct resource smc91x_resources
[] = {
191 .end
= 0x20200300 + 16,
192 .flags
= IORESOURCE_MEM
,
196 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
199 static struct platform_device smc91x_device
= {
202 .num_resources
= ARRAY_SIZE(smc91x_resources
),
203 .resource
= smc91x_resources
,
205 .platform_data
= &smc91x_info
,
210 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
211 #include <linux/smsc911x.h>
213 static struct resource smsc911x_resources
[] = {
215 .name
= "smsc911x-memory",
217 .end
= 0x20308000 + 0xFF,
218 .flags
= IORESOURCE_MEM
,
222 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_LOWLEVEL
,
226 static struct smsc911x_platform_config smsc911x_config
= {
227 .flags
= SMSC911X_USE_16BIT
,
228 .irq_polarity
= SMSC911X_IRQ_POLARITY_ACTIVE_LOW
,
229 .irq_type
= SMSC911X_IRQ_TYPE_OPEN_DRAIN
,
230 .phy_interface
= PHY_INTERFACE_MODE_MII
,
233 static struct platform_device smsc911x_device
= {
236 .num_resources
= ARRAY_SIZE(smsc911x_resources
),
237 .resource
= smsc911x_resources
,
239 .platform_data
= &smsc911x_config
,
244 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
245 #ifdef CONFIG_SERIAL_BFIN_UART0
246 static struct resource bfin_uart0_resources
[] = {
248 .start
= BFIN_UART_THR
,
249 .end
= BFIN_UART_GCTL
+2,
250 .flags
= IORESOURCE_MEM
,
253 .start
= IRQ_UART0_RX
,
254 .end
= IRQ_UART0_RX
+ 1,
255 .flags
= IORESOURCE_IRQ
,
258 .start
= IRQ_UART0_ERROR
,
259 .end
= IRQ_UART0_ERROR
,
260 .flags
= IORESOURCE_IRQ
,
263 .start
= CH_UART0_TX
,
265 .flags
= IORESOURCE_DMA
,
268 .start
= CH_UART0_RX
,
270 .flags
= IORESOURCE_DMA
,
274 static unsigned short bfin_uart0_peripherals
[] = {
275 P_UART0_TX
, P_UART0_RX
, 0
278 static struct platform_device bfin_uart0_device
= {
281 .num_resources
= ARRAY_SIZE(bfin_uart0_resources
),
282 .resource
= bfin_uart0_resources
,
284 .platform_data
= &bfin_uart0_peripherals
, /* Passed to driver */
290 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
291 #ifdef CONFIG_BFIN_SIR0
292 static struct resource bfin_sir0_resources
[] = {
296 .flags
= IORESOURCE_MEM
,
299 .start
= IRQ_UART0_RX
,
300 .end
= IRQ_UART0_RX
+1,
301 .flags
= IORESOURCE_IRQ
,
304 .start
= CH_UART0_RX
,
305 .end
= CH_UART0_RX
+1,
306 .flags
= IORESOURCE_DMA
,
310 static struct platform_device bfin_sir0_device
= {
313 .num_resources
= ARRAY_SIZE(bfin_sir0_resources
),
314 .resource
= bfin_sir0_resources
,
319 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
320 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
321 static struct resource bfin_sport0_uart_resources
[] = {
323 .start
= SPORT0_TCR1
,
324 .end
= SPORT0_MRCS3
+4,
325 .flags
= IORESOURCE_MEM
,
328 .start
= IRQ_SPORT0_RX
,
329 .end
= IRQ_SPORT0_RX
+1,
330 .flags
= IORESOURCE_IRQ
,
333 .start
= IRQ_SPORT0_ERROR
,
334 .end
= IRQ_SPORT0_ERROR
,
335 .flags
= IORESOURCE_IRQ
,
339 static unsigned short bfin_sport0_peripherals
[] = {
340 P_SPORT0_TFS
, P_SPORT0_DTPRI
, P_SPORT0_TSCLK
, P_SPORT0_RFS
,
341 P_SPORT0_DRPRI
, P_SPORT0_RSCLK
, 0
344 static struct platform_device bfin_sport0_uart_device
= {
345 .name
= "bfin-sport-uart",
347 .num_resources
= ARRAY_SIZE(bfin_sport0_uart_resources
),
348 .resource
= bfin_sport0_uart_resources
,
350 .platform_data
= &bfin_sport0_peripherals
, /* Passed to driver */
354 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
355 static struct resource bfin_sport1_uart_resources
[] = {
357 .start
= SPORT1_TCR1
,
358 .end
= SPORT1_MRCS3
+4,
359 .flags
= IORESOURCE_MEM
,
362 .start
= IRQ_SPORT1_RX
,
363 .end
= IRQ_SPORT1_RX
+1,
364 .flags
= IORESOURCE_IRQ
,
367 .start
= IRQ_SPORT1_ERROR
,
368 .end
= IRQ_SPORT1_ERROR
,
369 .flags
= IORESOURCE_IRQ
,
373 static unsigned short bfin_sport1_peripherals
[] = {
374 P_SPORT1_TFS
, P_SPORT1_DTPRI
, P_SPORT1_TSCLK
, P_SPORT1_RFS
,
375 P_SPORT1_DRPRI
, P_SPORT1_RSCLK
, 0
378 static struct platform_device bfin_sport1_uart_device
= {
379 .name
= "bfin-sport-uart",
381 .num_resources
= ARRAY_SIZE(bfin_sport1_uart_resources
),
382 .resource
= bfin_sport1_uart_resources
,
384 .platform_data
= &bfin_sport1_peripherals
, /* Passed to driver */
390 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
391 static struct resource isp1362_hcd_resources
[] = {
395 .flags
= IORESOURCE_MEM
,
399 .flags
= IORESOURCE_MEM
,
403 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_LOWEDGE
,
407 static struct isp1362_platform_data isp1362_priv
= {
412 .int_edge_triggered
= 0,
413 .remote_wakeup_connected
= 0,
414 .no_power_switching
= 1,
415 .power_switching_mode
= 0,
418 static struct platform_device isp1362_hcd_device
= {
419 .name
= "isp1362-hcd",
422 .platform_data
= &isp1362_priv
,
424 .num_resources
= ARRAY_SIZE(isp1362_hcd_resources
),
425 .resource
= isp1362_hcd_resources
,
430 #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
431 static struct resource net2272_bfin_resources
[] = {
434 .end
= 0x20300000 + 0x100,
435 .flags
= IORESOURCE_MEM
,
439 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
443 static struct platform_device net2272_bfin_device
= {
446 .num_resources
= ARRAY_SIZE(net2272_bfin_resources
),
447 .resource
= net2272_bfin_resources
,
453 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
454 static struct mtd_partition para_partitions
[] = {
456 .name
= "bootloader(nor)",
460 .name
= "linux+rootfs(nor)",
461 .size
= MTDPART_SIZ_FULL
,
462 .offset
= MTDPART_OFS_APPEND
,
466 static struct physmap_flash_data para_flash_data
= {
468 .parts
= para_partitions
,
469 .nr_parts
= ARRAY_SIZE(para_partitions
),
472 static struct resource para_flash_resource
= {
475 .flags
= IORESOURCE_MEM
,
478 static struct platform_device para_flash_device
= {
479 .name
= "physmap-flash",
482 .platform_data
= ¶_flash_data
,
485 .resource
= ¶_flash_resource
,
491 static const unsigned int cclk_vlev_datasheet
[] =
493 VRPAIR(VLEV_085
, 250000000),
494 VRPAIR(VLEV_090
, 376000000),
495 VRPAIR(VLEV_095
, 426000000),
496 VRPAIR(VLEV_100
, 426000000),
497 VRPAIR(VLEV_105
, 476000000),
498 VRPAIR(VLEV_110
, 476000000),
499 VRPAIR(VLEV_115
, 476000000),
500 VRPAIR(VLEV_120
, 600000000),
501 VRPAIR(VLEV_125
, 600000000),
502 VRPAIR(VLEV_130
, 600000000),
505 static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data
= {
506 .tuple_tab
= cclk_vlev_datasheet
,
507 .tabsize
= ARRAY_SIZE(cclk_vlev_datasheet
),
508 .vr_settling_time
= 25 /* us */,
511 static struct platform_device bfin_dpmc
= {
514 .platform_data
= &bfin_dmpc_vreg_data
,
518 static struct platform_device
*cm_bf533_devices
[] __initdata
= {
522 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
523 #ifdef CONFIG_SERIAL_BFIN_UART0
528 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
529 #ifdef CONFIG_BFIN_SIR0
534 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
535 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
536 &bfin_sport0_uart_device
,
538 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
539 &bfin_sport1_uart_device
,
543 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
547 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
551 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
555 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
559 #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
560 &net2272_bfin_device
,
563 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
567 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
572 static int __init
cm_bf533_init(void)
574 printk(KERN_INFO
"%s(): registering device resources\n", __func__
);
575 platform_add_devices(cm_bf533_devices
, ARRAY_SIZE(cm_bf533_devices
));
576 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
577 spi_register_board_info(bfin_spi_board_info
, ARRAY_SIZE(bfin_spi_board_info
));
582 arch_initcall(cm_bf533_init
);
584 static struct platform_device
*cm_bf533_early_devices
[] __initdata
= {
585 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
586 #ifdef CONFIG_SERIAL_BFIN_UART0
591 #if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
592 #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
593 &bfin_sport0_uart_device
,
595 #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
596 &bfin_sport1_uart_device
,
601 void __init
native_machine_early_platform_add_devices(void)
603 printk(KERN_INFO
"register early platform devices\n");
604 early_platform_add_devices(cm_bf533_early_devices
,
605 ARRAY_SIZE(cm_bf533_early_devices
));