| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 | /* * arch/arm/mach-shmobile/board-ag5evm.c * * Copyright (C) 2010  Takashi Yoshii <yoshii.takashi.zj@renesas.com> * Copyright (C) 2009  Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA * */#include <linux/kernel.h>#include <linux/init.h>#include <linux/interrupt.h>#include <linux/irq.h>#include <linux/platform_device.h>#include <linux/delay.h>#include <linux/io.h>#include <linux/dma-mapping.h>#include <linux/regulator/fixed.h>#include <linux/regulator/machine.h>#include <linux/serial_sci.h>#include <linux/smsc911x.h>#include <linux/gpio.h>#include <linux/videodev2.h>#include <linux/input.h>#include <linux/input/sh_keysc.h>#include <linux/mmc/host.h>#include <linux/mmc/sh_mmcif.h>#include <linux/mmc/sh_mobile_sdhi.h>#include <linux/mfd/tmio.h>#include <linux/sh_clk.h>#include <video/sh_mobile_lcdc.h>#include <video/sh_mipi_dsi.h>#include <sound/sh_fsi.h>#include <mach/hardware.h>#include <mach/irqs.h>#include <mach/sh73a0.h>#include <mach/common.h>#include <asm/mach-types.h>#include <asm/mach/arch.h>#include <asm/hardware/gic.h>#include <asm/hardware/cache-l2x0.h>#include <asm/traps.h>/* Dummy supplies, where voltage doesn't matter */static struct regulator_consumer_supply dummy_supplies[] = {	REGULATOR_SUPPLY("vddvario", "smsc911x"),	REGULATOR_SUPPLY("vdd33a", "smsc911x"),};static struct resource smsc9220_resources[] = {	[0] = {		.start		= 0x14000000,		.end		= 0x14000000 + SZ_64K - 1,		.flags		= IORESOURCE_MEM,	},	[1] = {		.start		= SH73A0_PINT0_IRQ(2), /* PINTA2 */		.flags		= IORESOURCE_IRQ,	},};static struct smsc911x_platform_config smsc9220_platdata = {	.flags		= SMSC911X_USE_32BIT | SMSC911X_SAVE_MAC_ADDRESS,	.phy_interface	= PHY_INTERFACE_MODE_MII,	.irq_polarity	= SMSC911X_IRQ_POLARITY_ACTIVE_LOW,	.irq_type	= SMSC911X_IRQ_TYPE_PUSH_PULL,};static struct platform_device eth_device = {	.name		= "smsc911x",	.id		= 0,	.dev  = {		.platform_data = &smsc9220_platdata,	},	.resource	= smsc9220_resources,	.num_resources	= ARRAY_SIZE(smsc9220_resources),};static struct sh_keysc_info keysc_platdata = {	.mode		= SH_KEYSC_MODE_6,	.scan_timing	= 3,	.delay		= 100,	.keycodes	= {		KEY_A, KEY_B, KEY_C, KEY_D, KEY_E, KEY_F, KEY_G,		KEY_H, KEY_I, KEY_J, KEY_K, KEY_L, KEY_M, KEY_N,		KEY_O, KEY_P, KEY_Q, KEY_R, KEY_S, KEY_T, KEY_U,		KEY_V, KEY_W, KEY_X, KEY_Y, KEY_Z, KEY_HOME, KEY_SLEEP,		KEY_SPACE, KEY_9, KEY_6, KEY_3, KEY_WAKEUP, KEY_RIGHT, \		KEY_COFFEE,		KEY_0, KEY_8, KEY_5, KEY_2, KEY_DOWN, KEY_ENTER, KEY_UP,		KEY_KPASTERISK, KEY_7, KEY_4, KEY_1, KEY_STOP, KEY_LEFT, \		KEY_COMPUTER,	},};static struct resource keysc_resources[] = {	[0] = {		.name	= "KEYSC",		.start	= 0xe61b0000,		.end	= 0xe61b0098 - 1,		.flags	= IORESOURCE_MEM,	},	[1] = {		.start	= gic_spi(71),		.flags	= IORESOURCE_IRQ,	},};static struct platform_device keysc_device = {	.name		= "sh_keysc",	.id		= 0,	.num_resources	= ARRAY_SIZE(keysc_resources),	.resource	= keysc_resources,	.dev		= {		.platform_data	= &keysc_platdata,	},};/* FSI A */static struct resource fsi_resources[] = {	[0] = {		.name	= "FSI",		.start	= 0xEC230000,		.end	= 0xEC230400 - 1,		.flags	= IORESOURCE_MEM,	},	[1] = {		.start  = gic_spi(146),		.flags  = IORESOURCE_IRQ,	},};static struct platform_device fsi_device = {	.name		= "sh_fsi2",	.id		= -1,	.num_resources	= ARRAY_SIZE(fsi_resources),	.resource	= fsi_resources,};/* Fixed 1.8V regulator to be used by MMCIF */static struct regulator_consumer_supply fixed1v8_power_consumers[] ={	REGULATOR_SUPPLY("vmmc", "sh_mmcif.0"),	REGULATOR_SUPPLY("vqmmc", "sh_mmcif.0"),};static struct resource sh_mmcif_resources[] = {	[0] = {		.name	= "MMCIF",		.start	= 0xe6bd0000,		.end	= 0xe6bd00ff,		.flags	= IORESOURCE_MEM,	},	[1] = {
 |