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/spi/spi.h>
15 #include <linux/spi/flash.h>
16 #if IS_ENABLED(CONFIG_USB_ISP1362_HCD)
17 #include <linux/usb/isp1362.h>
19 #include <linux/ata_platform.h>
20 #include <linux/irq.h>
21 #include <linux/gpio.h>
23 #include <asm/bfin5xx_spi.h>
24 #include <asm/portmux.h>
26 #include <linux/mtd/physmap.h>
29 * Name the Board for the /proc/cpuinfo
31 const char bfin_board_name
[] = "Bluetechnix CM BF561";
33 #if IS_ENABLED(CONFIG_SPI_BFIN5XX)
34 /* all SPI peripherals info goes here */
36 #if IS_ENABLED(CONFIG_MTD_M25P80)
37 static struct mtd_partition bfin_spi_flash_partitions
[] = {
39 .name
= "bootloader(spi)",
42 .mask_flags
= MTD_CAP_ROM
44 .name
= "linux kernel(spi)",
48 .name
= "file system(spi)",
54 static struct flash_platform_data bfin_spi_flash_data
= {
56 .parts
= bfin_spi_flash_partitions
,
57 .nr_parts
= ARRAY_SIZE(bfin_spi_flash_partitions
),
61 /* SPI flash chip (m25p64) */
62 static struct bfin5xx_spi_chip spi_flash_chip_info
= {
63 .enable_dma
= 0, /* use dma transfer with this chip*/
67 static struct spi_board_info bfin_spi_board_info
[] __initdata
= {
68 #if IS_ENABLED(CONFIG_MTD_M25P80)
70 /* the modalias must be the same as spi device driver name */
71 .modalias
= "m25p80", /* Name of spi_driver for this device */
72 .max_speed_hz
= 25000000, /* max spi clock (SCK) speed in HZ */
73 .bus_num
= 0, /* Framework bus number */
74 .chip_select
= 1, /* Framework chip select. On STAMP537 it is SPISSEL1*/
75 .platform_data
= &bfin_spi_flash_data
,
76 .controller_data
= &spi_flash_chip_info
,
81 #if IS_ENABLED(CONFIG_SND_BF5XX_SOC_AD183X)
84 .max_speed_hz
= 3125000, /* max spi clock (SCK) speed in HZ */
89 #if IS_ENABLED(CONFIG_MMC_SPI)
91 .modalias
= "mmc_spi",
92 .max_speed_hz
= 20000000, /* max spi clock (SCK) speed in HZ */
101 static struct resource bfin_spi0_resource
[] = {
103 .start
= SPI0_REGBASE
,
104 .end
= SPI0_REGBASE
+ 0xFF,
105 .flags
= IORESOURCE_MEM
,
110 .flags
= IORESOURCE_DMA
,
115 .flags
= IORESOURCE_IRQ
,
119 /* SPI controller data */
120 static struct bfin5xx_spi_master bfin_spi0_info
= {
122 .enable_dma
= 1, /* master has the ability to do dma transfer */
123 .pin_req
= {P_SPI0_SCK
, P_SPI0_MISO
, P_SPI0_MOSI
, 0},
126 static struct platform_device bfin_spi0_device
= {
128 .id
= 0, /* Bus number */
129 .num_resources
= ARRAY_SIZE(bfin_spi0_resource
),
130 .resource
= bfin_spi0_resource
,
132 .platform_data
= &bfin_spi0_info
, /* Passed to driver */
135 #endif /* spi master and devices */
138 #if IS_ENABLED(CONFIG_FB_HITACHI_TX09)
139 static struct platform_device hitachi_fb_device
= {
140 .name
= "hitachi-tx09",
145 #if IS_ENABLED(CONFIG_SMC91X)
146 #include <linux/smc91x.h>
148 static struct smc91x_platdata smc91x_info
= {
149 .flags
= SMC91X_USE_32BIT
| SMC91X_NOWAIT
,
150 .leda
= RPC_LED_100_10
,
151 .ledb
= RPC_LED_TX_RX
,
154 static struct resource smc91x_resources
[] = {
156 .name
= "smc91x-regs",
158 .end
= 0x28000300 + 16,
159 .flags
= IORESOURCE_MEM
,
163 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
166 static struct platform_device smc91x_device
= {
169 .num_resources
= ARRAY_SIZE(smc91x_resources
),
170 .resource
= smc91x_resources
,
172 .platform_data
= &smc91x_info
,
177 #if IS_ENABLED(CONFIG_SMSC911X)
178 #include <linux/smsc911x.h>
180 static struct resource smsc911x_resources
[] = {
182 .name
= "smsc911x-memory",
184 .end
= 0x24008000 + 0xFF,
185 .flags
= IORESOURCE_MEM
,
190 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_LOWLEVEL
,
194 static struct smsc911x_platform_config smsc911x_config
= {
195 .flags
= SMSC911X_USE_16BIT
,
196 .irq_polarity
= SMSC911X_IRQ_POLARITY_ACTIVE_LOW
,
197 .irq_type
= SMSC911X_IRQ_TYPE_OPEN_DRAIN
,
198 .phy_interface
= PHY_INTERFACE_MODE_MII
,
201 static struct platform_device smsc911x_device
= {
204 .num_resources
= ARRAY_SIZE(smsc911x_resources
),
205 .resource
= smsc911x_resources
,
207 .platform_data
= &smsc911x_config
,
212 #if IS_ENABLED(CONFIG_USB_NET2272)
213 static struct resource net2272_bfin_resources
[] = {
216 .end
= 0x24000000 + 0x100,
217 .flags
= IORESOURCE_MEM
,
221 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
225 static struct platform_device net2272_bfin_device
= {
228 .num_resources
= ARRAY_SIZE(net2272_bfin_resources
),
229 .resource
= net2272_bfin_resources
,
233 #if IS_ENABLED(CONFIG_USB_ISP1362_HCD)
234 static struct resource isp1362_hcd_resources
[] = {
238 .flags
= IORESOURCE_MEM
,
242 .flags
= IORESOURCE_MEM
,
246 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_LOWEDGE
,
250 static struct isp1362_platform_data isp1362_priv
= {
255 .int_edge_triggered
= 0,
256 .remote_wakeup_connected
= 0,
257 .no_power_switching
= 1,
258 .power_switching_mode
= 0,
261 static struct platform_device isp1362_hcd_device
= {
262 .name
= "isp1362-hcd",
265 .platform_data
= &isp1362_priv
,
267 .num_resources
= ARRAY_SIZE(isp1362_hcd_resources
),
268 .resource
= isp1362_hcd_resources
,
272 #if IS_ENABLED(CONFIG_SERIAL_BFIN)
273 #ifdef CONFIG_SERIAL_BFIN_UART0
274 static struct resource bfin_uart0_resources
[] = {
276 .start
= BFIN_UART_THR
,
277 .end
= BFIN_UART_GCTL
+2,
278 .flags
= IORESOURCE_MEM
,
281 .start
= IRQ_UART_TX
,
283 .flags
= IORESOURCE_IRQ
,
286 .start
= IRQ_UART_RX
,
288 .flags
= IORESOURCE_IRQ
,
291 .start
= IRQ_UART_ERROR
,
292 .end
= IRQ_UART_ERROR
,
293 .flags
= IORESOURCE_IRQ
,
298 .flags
= IORESOURCE_DMA
,
303 .flags
= IORESOURCE_DMA
,
307 static unsigned short bfin_uart0_peripherals
[] = {
308 P_UART0_TX
, P_UART0_RX
, 0
311 static struct platform_device bfin_uart0_device
= {
314 .num_resources
= ARRAY_SIZE(bfin_uart0_resources
),
315 .resource
= bfin_uart0_resources
,
317 .platform_data
= &bfin_uart0_peripherals
, /* Passed to driver */
323 #if IS_ENABLED(CONFIG_BFIN_SIR)
324 #ifdef CONFIG_BFIN_SIR0
325 static struct resource bfin_sir0_resources
[] = {
329 .flags
= IORESOURCE_MEM
,
332 .start
= IRQ_UART0_RX
,
333 .end
= IRQ_UART0_RX
+1,
334 .flags
= IORESOURCE_IRQ
,
337 .start
= CH_UART0_RX
,
338 .end
= CH_UART0_RX
+1,
339 .flags
= IORESOURCE_DMA
,
343 static struct platform_device bfin_sir0_device
= {
346 .num_resources
= ARRAY_SIZE(bfin_sir0_resources
),
347 .resource
= bfin_sir0_resources
,
352 #if IS_ENABLED(CONFIG_PATA_PLATFORM)
353 #define PATA_INT IRQ_PF46
355 static struct pata_platform_info bfin_pata_platform_data
= {
359 static struct resource bfin_pata_resources
[] = {
363 .flags
= IORESOURCE_MEM
,
368 .flags
= IORESOURCE_MEM
,
373 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
377 static struct platform_device bfin_pata_device
= {
378 .name
= "pata_platform",
380 .num_resources
= ARRAY_SIZE(bfin_pata_resources
),
381 .resource
= bfin_pata_resources
,
383 .platform_data
= &bfin_pata_platform_data
,
388 #if IS_ENABLED(CONFIG_MTD_PHYSMAP)
389 static struct mtd_partition para_partitions
[] = {
391 .name
= "bootloader(nor)",
395 .name
= "linux kernel(nor)",
397 .offset
= MTDPART_OFS_APPEND
,
399 .name
= "file system(nor)",
400 .size
= MTDPART_SIZ_FULL
,
401 .offset
= MTDPART_OFS_APPEND
,
405 static struct physmap_flash_data para_flash_data
= {
407 .parts
= para_partitions
,
408 .nr_parts
= ARRAY_SIZE(para_partitions
),
411 static struct resource para_flash_resource
= {
414 .flags
= IORESOURCE_MEM
,
417 static struct platform_device para_flash_device
= {
418 .name
= "physmap-flash",
421 .platform_data
= ¶_flash_data
,
424 .resource
= ¶_flash_resource
,
428 static const unsigned int cclk_vlev_datasheet
[] =
430 VRPAIR(VLEV_085
, 250000000),
431 VRPAIR(VLEV_090
, 300000000),
432 VRPAIR(VLEV_095
, 313000000),
433 VRPAIR(VLEV_100
, 350000000),
434 VRPAIR(VLEV_105
, 400000000),
435 VRPAIR(VLEV_110
, 444000000),
436 VRPAIR(VLEV_115
, 450000000),
437 VRPAIR(VLEV_120
, 475000000),
438 VRPAIR(VLEV_125
, 500000000),
439 VRPAIR(VLEV_130
, 600000000),
442 static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data
= {
443 .tuple_tab
= cclk_vlev_datasheet
,
444 .tabsize
= ARRAY_SIZE(cclk_vlev_datasheet
),
445 .vr_settling_time
= 25 /* us */,
448 static struct platform_device bfin_dpmc
= {
451 .platform_data
= &bfin_dmpc_vreg_data
,
455 static struct platform_device
*cm_bf561_devices
[] __initdata
= {
459 #if IS_ENABLED(CONFIG_FB_HITACHI_TX09)
463 #if IS_ENABLED(CONFIG_SERIAL_BFIN)
464 #ifdef CONFIG_SERIAL_BFIN_UART0
469 #if IS_ENABLED(CONFIG_BFIN_SIR)
470 #ifdef CONFIG_BFIN_SIR0
475 #if IS_ENABLED(CONFIG_USB_ISP1362_HCD)
479 #if IS_ENABLED(CONFIG_SMC91X)
483 #if IS_ENABLED(CONFIG_SMSC911X)
487 #if IS_ENABLED(CONFIG_USB_NET2272)
488 &net2272_bfin_device
,
491 #if IS_ENABLED(CONFIG_SPI_BFIN5XX)
495 #if IS_ENABLED(CONFIG_PATA_PLATFORM)
499 #if IS_ENABLED(CONFIG_MTD_PHYSMAP)
504 static int __init
net2272_init(void)
506 #if IS_ENABLED(CONFIG_USB_NET2272)
509 ret
= gpio_request(GPIO_PF46
, "net2272");
513 /* Reset USB Chip, PF46 */
514 gpio_direction_output(GPIO_PF46
, 0);
516 gpio_set_value(GPIO_PF46
, 1);
522 static int __init
cm_bf561_init(void)
524 printk(KERN_INFO
"%s(): registering device resources\n", __func__
);
525 platform_add_devices(cm_bf561_devices
, ARRAY_SIZE(cm_bf561_devices
));
526 #if IS_ENABLED(CONFIG_SPI_BFIN5XX)
527 spi_register_board_info(bfin_spi_board_info
, ARRAY_SIZE(bfin_spi_board_info
));
530 #if IS_ENABLED(CONFIG_PATA_PLATFORM)
531 irq_set_status_flags(PATA_INT
, IRQ_NOAUTOEN
);
535 pr_warning("unable to configure net2272; it probably won't work\n");
540 arch_initcall(cm_bf561_init
);
542 static struct platform_device
*cm_bf561_early_devices
[] __initdata
= {
543 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
544 #ifdef CONFIG_SERIAL_BFIN_UART0
550 void __init
native_machine_early_platform_add_devices(void)
552 printk(KERN_INFO
"register early platform devices\n");
553 early_platform_add_devices(cm_bf561_early_devices
,
554 ARRAY_SIZE(cm_bf561_early_devices
));