2 * File: arch/blackfin/mach-bf561/acvilon.c
3 * Based on: arch/blackfin/mach-bf561/ezkit.c
10 * Copyright 2004-2006 Analog Devices Inc.
11 * Copyright 2009 CJSC "NII STT"
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, see the file COPYING, or write
27 * to the Free Software Foundation, Inc.,
28 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
31 * For more information about Acvilon BF561 SoM please
32 * go to http://www.niistt.ru/
36 #include <linux/device.h>
37 #include <linux/platform_device.h>
38 #include <linux/mtd/mtd.h>
39 #include <linux/mtd/partitions.h>
40 #include <linux/mtd/physmap.h>
41 #include <linux/mtd/nand.h>
42 #include <linux/mtd/plat-ram.h>
43 #include <linux/spi/spi.h>
44 #include <linux/spi/flash.h>
45 #include <linux/irq.h>
46 #include <linux/interrupt.h>
47 #include <linux/jiffies.h>
48 #include <linux/i2c-pca-platform.h>
49 #include <linux/delay.h>
52 #include <asm/bfin5xx_spi.h>
53 #include <asm/portmux.h>
55 #include <asm/cacheflush.h>
56 #include <linux/i2c.h>
59 * Name the Board for the /proc/cpuinfo
61 const char bfin_board_name
[] = "Acvilon board";
63 #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
64 #include <linux/usb/isp1760.h>
65 static struct resource bfin_isp1760_resources
[] = {
68 .end
= 0x20000000 + 0x000fffff,
69 .flags
= IORESOURCE_MEM
,
74 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_LOWLEVEL
,
78 static struct isp1760_platform_data isp1760_priv
= {
84 .dack_polarity_high
= 0,
85 .dreq_polarity_high
= 0,
88 static struct platform_device bfin_isp1760_device
= {
89 .name
= "isp1760-hcd",
92 .platform_data
= &isp1760_priv
,
94 .num_resources
= ARRAY_SIZE(bfin_isp1760_resources
),
95 .resource
= bfin_isp1760_resources
,
99 static struct resource bfin_i2c_pca_resources
[] = {
101 .name
= "pca9564-regs",
103 .end
= 0x2C000000 + 16,
104 .flags
= IORESOURCE_MEM
| IORESOURCE_MEM_32BIT
,
109 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_LOWLEVEL
,
113 struct i2c_pca9564_pf_platform_data pca9564_platform_data
= {
115 .i2c_clock_speed
= 330000,
119 /* PCA9564 I2C Bus driver */
120 static struct platform_device bfin_i2c_pca_device
= {
121 .name
= "i2c-pca-platform",
123 .num_resources
= ARRAY_SIZE(bfin_i2c_pca_resources
),
124 .resource
= bfin_i2c_pca_resources
,
126 .platform_data
= &pca9564_platform_data
,
130 /* I2C devices fitted. */
131 static struct i2c_board_info acvilon_i2c_devs
[] __initdata
= {
133 I2C_BOARD_INFO("ds1339", 0x68),
136 I2C_BOARD_INFO("tcn75", 0x49),
140 #if defined(CONFIG_MTD_PLATRAM) || defined(CONFIG_MTD_PLATRAM_MODULE)
141 static struct platdata_mtd_ram mtd_ram_data
= {
142 .mapname
= "rootfs(RAM)",
146 static struct resource mtd_ram_resource
= {
149 .flags
= IORESOURCE_MEM
,
152 static struct platform_device mtd_ram_device
= {
156 .platform_data
= &mtd_ram_data
,
159 .resource
= &mtd_ram_resource
,
163 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
164 #include <linux/smsc911x.h>
165 static struct resource smsc911x_resources
[] = {
167 .name
= "smsc911x-memory",
169 .end
= 0x28000000 + 0xFF,
170 .flags
= IORESOURCE_MEM
,
175 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_LOWLEVEL
,
179 static struct smsc911x_platform_config smsc911x_config
= {
180 .flags
= SMSC911X_USE_32BIT
| SMSC911X_SAVE_MAC_ADDRESS
,
181 .irq_polarity
= SMSC911X_IRQ_POLARITY_ACTIVE_LOW
,
182 .irq_type
= SMSC911X_IRQ_TYPE_OPEN_DRAIN
,
183 .phy_interface
= PHY_INTERFACE_MODE_MII
,
186 static struct platform_device smsc911x_device
= {
189 .num_resources
= ARRAY_SIZE(smsc911x_resources
),
190 .resource
= smsc911x_resources
,
192 .platform_data
= &smsc911x_config
,
197 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
198 #ifdef CONFIG_SERIAL_BFIN_UART0
199 static struct resource bfin_uart0_resources
[] = {
201 .start
= BFIN_UART_THR
,
202 .end
= BFIN_UART_GCTL
+ 2,
203 .flags
= IORESOURCE_MEM
,
206 .start
= IRQ_UART_TX
,
208 .flags
= IORESOURCE_IRQ
,
211 .start
= IRQ_UART_RX
,
213 .flags
= IORESOURCE_IRQ
,
216 .start
= IRQ_UART_ERROR
,
217 .end
= IRQ_UART_ERROR
,
218 .flags
= IORESOURCE_IRQ
,
223 .flags
= IORESOURCE_DMA
,
228 .flags
= IORESOURCE_DMA
,
232 static unsigned short bfin_uart0_peripherals
[] = {
233 P_UART0_TX
, P_UART0_RX
, 0
236 static struct platform_device bfin_uart0_device
= {
239 .num_resources
= ARRAY_SIZE(bfin_uart0_resources
),
240 .resource
= bfin_uart0_resources
,
242 /* Passed to driver */
243 .platform_data
= &bfin_uart0_peripherals
,
249 #if defined(CONFIG_MTD_NAND_PLATFORM) || defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
251 const char *part_probes
[] = { "cmdlinepart", NULL
};
253 static struct mtd_partition bfin_plat_nand_partitions
[] = {
255 .name
= "params(nand)",
256 .size
= 32 * 1024 * 1024,
259 .name
= "userfs(nand)",
260 .size
= MTDPART_SIZ_FULL
,
261 .offset
= MTDPART_OFS_APPEND
,
265 #define BFIN_NAND_PLAT_CLE 2
266 #define BFIN_NAND_PLAT_ALE 3
268 static void bfin_plat_nand_cmd_ctrl(struct mtd_info
*mtd
, int cmd
,
271 struct nand_chip
*this = mtd
->priv
;
273 if (cmd
== NAND_CMD_NONE
)
277 writeb(cmd
, this->IO_ADDR_W
+ (1 << BFIN_NAND_PLAT_CLE
));
279 writeb(cmd
, this->IO_ADDR_W
+ (1 << BFIN_NAND_PLAT_ALE
));
282 #define BFIN_NAND_PLAT_READY GPIO_PF10
283 static int bfin_plat_nand_dev_ready(struct mtd_info
*mtd
)
285 return gpio_get_value(BFIN_NAND_PLAT_READY
);
288 static struct platform_nand_data bfin_plat_nand_data
= {
292 .part_probe_types
= part_probes
,
293 .partitions
= bfin_plat_nand_partitions
,
294 .nr_partitions
= ARRAY_SIZE(bfin_plat_nand_partitions
),
297 .cmd_ctrl
= bfin_plat_nand_cmd_ctrl
,
298 .dev_ready
= bfin_plat_nand_dev_ready
,
302 #define MAX(x, y) (x > y ? x : y)
303 static struct resource bfin_plat_nand_resources
= {
305 .end
= 0x24000000 + (1 << MAX(BFIN_NAND_PLAT_CLE
, BFIN_NAND_PLAT_ALE
)),
306 .flags
= IORESOURCE_MEM
,
309 static struct platform_device bfin_async_nand_device
= {
313 .resource
= &bfin_plat_nand_resources
,
315 .platform_data
= &bfin_plat_nand_data
,
319 static void bfin_plat_nand_init(void)
321 gpio_request(BFIN_NAND_PLAT_READY
, "bfin_nand_plat");
324 static void bfin_plat_nand_init(void)
329 #if defined(CONFIG_MTD_DATAFLASH) || defined(CONFIG_MTD_DATAFLASH_MODULE)
330 static struct mtd_partition bfin_spi_dataflash_partitions
[] = {
332 .name
= "bootloader",
335 .mask_flags
= MTD_CAP_ROM
},
339 .offset
= MTDPART_OFS_APPEND
,
342 .name
= "u-boot(params)",
344 .offset
= MTDPART_OFS_APPEND
,
349 .offset
= MTDPART_OFS_APPEND
,
354 .offset
= MTDPART_OFS_APPEND
,
358 .size
= MTDPART_SIZ_FULL
,
359 .offset
= MTDPART_OFS_APPEND
,
363 static struct flash_platform_data bfin_spi_dataflash_data
= {
364 .name
= "SPI Dataflash",
365 .parts
= bfin_spi_dataflash_partitions
,
366 .nr_parts
= ARRAY_SIZE(bfin_spi_dataflash_partitions
),
370 static struct bfin5xx_spi_chip data_flash_chip_info
= {
371 .enable_dma
= 0, /* use dma transfer with this chip */
375 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
377 static struct resource bfin_spi0_resource
[] = {
379 .start
= SPI0_REGBASE
,
380 .end
= SPI0_REGBASE
+ 0xFF,
381 .flags
= IORESOURCE_MEM
,
386 .flags
= IORESOURCE_DMA
,
391 .flags
= IORESOURCE_IRQ
,
395 /* SPI controller data */
396 static struct bfin5xx_spi_master bfin_spi0_info
= {
398 .enable_dma
= 1, /* master has the ability to do dma transfer */
399 .pin_req
= {P_SPI0_SCK
, P_SPI0_MISO
, P_SPI0_MOSI
, 0},
402 static struct platform_device bfin_spi0_device
= {
404 .id
= 0, /* Bus number */
405 .num_resources
= ARRAY_SIZE(bfin_spi0_resource
),
406 .resource
= bfin_spi0_resource
,
408 .platform_data
= &bfin_spi0_info
, /* Passed to driver */
413 static struct spi_board_info bfin_spi_board_info
[] __initdata
= {
414 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
416 .modalias
= "spidev",
417 .max_speed_hz
= 3125000, /* max spi clock (SCK) speed in HZ */
422 #if defined(CONFIG_MTD_DATAFLASH) || defined(CONFIG_MTD_DATAFLASH_MODULE)
423 { /* DataFlash chip */
424 .modalias
= "mtd_dataflash",
425 .max_speed_hz
= 33250000, /* max spi clock (SCK) speed in HZ */
426 .bus_num
= 0, /* Framework bus number */
427 .chip_select
= 2, /* Framework chip select */
428 .platform_data
= &bfin_spi_dataflash_data
,
429 .controller_data
= &data_flash_chip_info
,
435 static struct resource bfin_gpios_resources
= {
437 /* .end = MAX_BLACKFIN_GPIOS - 1, */
439 .flags
= IORESOURCE_IRQ
,
442 static struct platform_device bfin_gpios_device
= {
443 .name
= "simple-gpio",
446 .resource
= &bfin_gpios_resources
,
449 static const unsigned int cclk_vlev_datasheet
[] = {
450 VRPAIR(VLEV_085
, 250000000),
451 VRPAIR(VLEV_090
, 300000000),
452 VRPAIR(VLEV_095
, 313000000),
453 VRPAIR(VLEV_100
, 350000000),
454 VRPAIR(VLEV_105
, 400000000),
455 VRPAIR(VLEV_110
, 444000000),
456 VRPAIR(VLEV_115
, 450000000),
457 VRPAIR(VLEV_120
, 475000000),
458 VRPAIR(VLEV_125
, 500000000),
459 VRPAIR(VLEV_130
, 600000000),
462 static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data
= {
463 .tuple_tab
= cclk_vlev_datasheet
,
464 .tabsize
= ARRAY_SIZE(cclk_vlev_datasheet
),
465 .vr_settling_time
= 25 /* us */ ,
468 static struct platform_device bfin_dpmc
= {
471 .platform_data
= &bfin_dmpc_vreg_data
,
475 static struct platform_device
*acvilon_devices
[] __initdata
= {
478 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
482 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
483 #ifdef CONFIG_SERIAL_BFIN_UART0
490 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
494 &bfin_i2c_pca_device
,
496 #if defined(CONFIG_MTD_NAND_PLATFORM) || defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
497 &bfin_async_nand_device
,
500 #if defined(CONFIG_MTD_PLATRAM) || defined(CONFIG_MTD_PLATRAM_MODULE)
506 static int __init
acvilon_init(void)
510 printk(KERN_INFO
"%s(): registering device resources\n", __func__
);
512 bfin_plat_nand_init();
514 platform_add_devices(acvilon_devices
, ARRAY_SIZE(acvilon_devices
));
518 i2c_register_board_info(0, acvilon_i2c_devs
,
519 ARRAY_SIZE(acvilon_i2c_devs
));
521 bfin_write_FIO0_FLAG_C(1 << 14);
523 bfin_write_FIO0_FLAG_S(1 << 14);
525 spi_register_board_info(bfin_spi_board_info
,
526 ARRAY_SIZE(bfin_spi_board_info
));
530 arch_initcall(acvilon_init
);
532 static struct platform_device
*acvilon_early_devices
[] __initdata
= {
533 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
534 #ifdef CONFIG_SERIAL_BFIN_UART0
540 void __init
native_machine_early_platform_add_devices(void)
542 printk(KERN_INFO
"register early platform devices\n");
543 early_platform_add_devices(acvilon_early_devices
,
544 ARRAY_SIZE(acvilon_early_devices
));