| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 | /* * arch/arm/mach-orion5x/kurobox_pro-setup.c * * Maintainer: Ronen Shitrit <rshitrit@marvell.com> * * This file is licensed under the terms of the GNU General Public * License version 2.  This program is licensed "as is" without any * warranty of any kind, whether express or implied. */#include <linux/gpio.h>#include <linux/kernel.h>#include <linux/init.h>#include <linux/platform_device.h>#include <linux/pci.h>#include <linux/irq.h>#include <linux/delay.h>#include <linux/mtd/physmap.h>#include <linux/mtd/nand.h>#include <linux/mv643xx_eth.h>#include <linux/i2c.h>#include <linux/serial_reg.h>#include <linux/ata_platform.h>#include <asm/mach-types.h>#include <asm/mach/arch.h>#include <asm/mach/pci.h>#include <mach/orion5x.h>#include <linux/platform_data/mtd-orion_nand.h>#include "common.h"#include "mpp.h"/***************************************************************************** * KUROBOX-PRO Info ****************************************************************************//* * 256K NOR flash Device bus boot chip select */#define KUROBOX_PRO_NOR_BOOT_BASE	0xf4000000#define KUROBOX_PRO_NOR_BOOT_SIZE	SZ_256K/* * 256M NAND flash on Device bus chip select 1 */#define KUROBOX_PRO_NAND_BASE		0xfc000000#define KUROBOX_PRO_NAND_SIZE		SZ_2M/***************************************************************************** * 256MB NAND Flash on Device bus CS0 ****************************************************************************/static struct mtd_partition kurobox_pro_nand_parts[] = {	{		.name	= "uImage",		.offset	= 0,		.size	= SZ_4M,	}, {		.name	= "rootfs",		.offset	= SZ_4M,		.size	= SZ_64M,	}, {		.name	= "extra",		.offset	= SZ_4M + SZ_64M,		.size	= SZ_256M - (SZ_4M + SZ_64M),	},};static struct resource kurobox_pro_nand_resource = {	.flags		= IORESOURCE_MEM,	.start		= KUROBOX_PRO_NAND_BASE,	.end		= KUROBOX_PRO_NAND_BASE + KUROBOX_PRO_NAND_SIZE - 1,};static struct orion_nand_data kurobox_pro_nand_data = {	.parts		= kurobox_pro_nand_parts,	.nr_parts	= ARRAY_SIZE(kurobox_pro_nand_parts),	.cle		= 0,	.ale		= 1,	.width		= 8,};static struct platform_device kurobox_pro_nand_flash = {	.name		= "orion_nand",	.id		= -1,	.dev		= {		.platform_data	= &kurobox_pro_nand_data,	},	.resource	= &kurobox_pro_nand_resource,	.num_resources	= 1,};/***************************************************************************** * 256KB NOR Flash on BOOT Device ****************************************************************************/static struct physmap_flash_data kurobox_pro_nor_flash_data = {	.width		= 1,};static struct resource kurobox_pro_nor_flash_resource = {	.flags			= IORESOURCE_MEM,	.start			= KUROBOX_PRO_NOR_BOOT_BASE,	.end			= KUROBOX_PRO_NOR_BOOT_BASE + KUROBOX_PRO_NOR_BOOT_SIZE - 1,};static struct platform_device kurobox_pro_nor_flash = {	.name			= "physmap-flash",	.id			= 0,	.dev		= {		.platform_data	= &kurobox_pro_nor_flash_data,	},	.num_resources		= 1,	.resource		= &kurobox_pro_nor_flash_resource,};/***************************************************************************** * PCI ****************************************************************************/static int __init kurobox_pro_pci_map_irq(const struct pci_dev *dev, u8 slot,	u8 pin){	int irq;	/*	 * Check for devices with hard-wired IRQs.	 */	irq = orion5x_pci_map_irq(dev, slot, pin);	if (irq != -1)		return irq;	/*	 * PCI isn't used on the Kuro	 */	return -1;}static struct hw_pci kurobox_pro_pci __initdata = {	.nr_controllers	= 2,	.setup		= orion5x_pci_sys_setup,	.scan		= orion5x_pci_sys_scan_bus,	.map_irq	= kurobox_pro_pci_map_irq,};static int __init kurobox_pro_pci_init(void){	if (machine_is_kurobox_pro()) {		orion5x_pci_disable();		pci_common_init(&kurobox_pro_pci);	}	return 0;}subsys_initcall(kurobox_pro_pci_init);/***************************************************************************** * Ethernet ****************************************************************************/static struct mv643xx_eth_platform_data kurobox_pro_eth_data = {	.phy_addr	= MV643XX_ETH_PHY_ADDR(8),};/***************************************************************************** * RTC 5C372a on I2C bus ****************************************************************************/static struct i2c_board_info __initdata kurobox_pro_i2c_rtc = {	I2C_BOARD_INFO("rs5c372a", 0x32),};/***************************************************************************** * SATA ****************************************************************************/static struct mv_sata_platform_data kurobox_pro_sata_data = {	.n_ports	= 2,};/***************************************************************************** * Kurobox Pro specific power off method via UART1-attached microcontroller ****************************************************************************/#define UART1_REG(x)	(UART1_VIRT_BASE + ((UART_##x) << 2))static int kurobox_pro_miconread(unsigned char *buf, int count){	int i;	int timeout;	for (i = 0; i < count; i++) {		timeout = 10;		while (!(readl(UART1_REG(LSR)) & UART_LSR_DR)) {			if (--timeout == 0)				break;			udelay(1000);		}		if (timeout == 0)			break;		buf[i] = readl(UART1_REG(RX));	}	/* return read bytes */	return i;}static int kurobox_pro_miconwrite(const unsigned char *buf, int count){	int i = 0;	while (count--) {		while (!(readl(UART1_REG(LSR)) & UART_LSR_THRE))			barrier();		writel(buf[i++], UART1_REG(TX));	}	return 0;}static int kurobox_pro_miconsend(const unsigned char *data, int count){	int i;	unsigned char checksum = 0;	unsigned char recv_buf[40];	unsigned char send_buf[40];	unsigned char correct_ack[3];	int retry = 2;	/* Generate checksum */	for (i = 0; i < count; i++)		checksum -=  data[i];	do {		/* Send data */
 |