| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 | 
							- /*
 
-  * 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] = {
 
- 		.start	= gic_spi(141),
 
- 		.flags	= IORESOURCE_IRQ,
 
- 	},
 
- 	[2] = {
 
- 		.start	= gic_spi(140),
 
- 		.flags	= IORESOURCE_IRQ,
 
- 	},
 
- };
 
- static struct sh_mmcif_plat_data sh_mmcif_platdata = {
 
- 	.sup_pclk	= 0,
 
- 	.ocr		= MMC_VDD_165_195,
 
- 	.caps		= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE,
 
- 	.slave_id_tx	= SHDMA_SLAVE_MMCIF_TX,
 
- 	.slave_id_rx	= SHDMA_SLAVE_MMCIF_RX,
 
- };
 
- static struct platform_device mmc_device = {
 
- 	.name		= "sh_mmcif",
 
- 	.id		= 0,
 
- 	.dev		= {
 
- 		.dma_mask		= NULL,
 
- 		.coherent_dma_mask	= 0xffffffff,
 
- 		.platform_data		= &sh_mmcif_platdata,
 
- 	},
 
- 	.num_resources	= ARRAY_SIZE(sh_mmcif_resources),
 
- 	.resource	= sh_mmcif_resources,
 
- };
 
- /* IrDA */
 
- static struct resource irda_resources[] = {
 
- 	[0] = {
 
- 		.start	= 0xE6D00000,
 
- 		.end	= 0xE6D01FD4 - 1,
 
- 		.flags  = IORESOURCE_MEM,
 
- 	},
 
- 	[1] = {
 
- 		.start	= gic_spi(95),
 
- 		.flags  = IORESOURCE_IRQ,
 
- 	},
 
- };
 
- static struct platform_device irda_device = {
 
- 	.name           = "sh_irda",
 
- 	.id		= 0,
 
- 	.resource       = irda_resources,
 
- 	.num_resources  = ARRAY_SIZE(irda_resources),
 
- };
 
- /* MIPI-DSI */
 
- static struct resource mipidsi0_resources[] = {
 
- 	[0] = {
 
- 		.name	= "DSI0",
 
- 		.start  = 0xfeab0000,
 
- 		.end    = 0xfeab3fff,
 
- 		.flags  = IORESOURCE_MEM,
 
- 	},
 
- 	[1] = {
 
- 		.name	= "DSI0",
 
- 		.start  = 0xfeab4000,
 
- 		.end    = 0xfeab7fff,
 
- 		.flags  = IORESOURCE_MEM,
 
- 	},
 
- };
 
- static int sh_mipi_set_dot_clock(struct platform_device *pdev,
 
- 				 void __iomem *base,
 
- 				 int enable)
 
- {
 
- 	struct clk *pck, *phy;
 
- 	int ret;
 
- 	pck = clk_get(&pdev->dev, "dsip_clk");
 
- 	if (IS_ERR(pck)) {
 
- 		ret = PTR_ERR(pck);
 
- 		goto sh_mipi_set_dot_clock_pck_err;
 
- 	}
 
- 	phy = clk_get(&pdev->dev, "dsiphy_clk");
 
- 	if (IS_ERR(phy)) {
 
- 		ret = PTR_ERR(phy);
 
- 		goto sh_mipi_set_dot_clock_phy_err;
 
- 	}
 
- 	if (enable) {
 
- 		clk_set_rate(pck, clk_round_rate(pck,  24000000));
 
- 		clk_set_rate(phy, clk_round_rate(pck, 510000000));
 
- 		clk_enable(pck);
 
- 		clk_enable(phy);
 
- 	} else {
 
- 		clk_disable(pck);
 
- 		clk_disable(phy);
 
- 	}
 
- 	ret = 0;
 
- 	clk_put(phy);
 
- sh_mipi_set_dot_clock_phy_err:
 
- 	clk_put(pck);
 
- sh_mipi_set_dot_clock_pck_err:
 
- 	return ret;
 
- }
 
- static struct sh_mipi_dsi_info mipidsi0_info = {
 
- 	.data_format	= MIPI_RGB888,
 
- 	.channel	= LCDC_CHAN_MAINLCD,
 
- 	.lane		= 2,
 
- 	.vsynw_offset	= 20,
 
- 	.clksrc		= 1,
 
- 	.flags		= SH_MIPI_DSI_HSABM		|
 
- 			  SH_MIPI_DSI_SYNC_PULSES_MODE	|
 
- 			  SH_MIPI_DSI_HSbyteCLK,
 
- 	.set_dot_clock	= sh_mipi_set_dot_clock,
 
- };
 
- static struct platform_device mipidsi0_device = {
 
- 	.name           = "sh-mipi-dsi",
 
- 	.num_resources  = ARRAY_SIZE(mipidsi0_resources),
 
- 	.resource       = mipidsi0_resources,
 
- 	.id             = 0,
 
- 	.dev	= {
 
- 		.platform_data	= &mipidsi0_info,
 
- 	},
 
- };
 
- static unsigned char lcd_backlight_seq[3][2] = {
 
- 	{ 0x04, 0x07 },
 
- 	{ 0x23, 0x80 },
 
- 	{ 0x03, 0x01 },
 
- };
 
- static int lcd_backlight_set_brightness(int brightness)
 
- {
 
- 	struct i2c_adapter *adap;
 
- 	struct i2c_msg msg;
 
- 	unsigned int i;
 
- 	int ret;
 
- 	if (brightness == 0) {
 
- 		/* Reset the chip */
 
- 		gpio_set_value(GPIO_PORT235, 0);
 
- 		mdelay(24);
 
- 		gpio_set_value(GPIO_PORT235, 1);
 
- 		return 0;
 
- 	}
 
- 	adap = i2c_get_adapter(1);
 
- 	if (adap == NULL)
 
- 		return -ENODEV;
 
- 	for (i = 0; i < ARRAY_SIZE(lcd_backlight_seq); i++) {
 
- 		msg.addr = 0x6d;
 
- 		msg.buf = &lcd_backlight_seq[i][0];
 
- 		msg.len = 2;
 
- 		msg.flags = 0;
 
- 		ret = i2c_transfer(adap, &msg, 1);
 
- 		if (ret < 0)
 
- 			break;
 
- 	}
 
- 	i2c_put_adapter(adap);
 
- 	return ret < 0 ? ret : 0;
 
- }
 
- /* LCDC0 */
 
- static const struct fb_videomode lcdc0_modes[] = {
 
- 	{
 
- 		.name		= "R63302(QHD)",
 
- 		.xres		= 544,
 
- 		.yres		= 961,
 
- 		.left_margin	= 72,
 
- 		.right_margin	= 600,
 
- 		.hsync_len	= 16,
 
- 		.upper_margin	= 8,
 
- 		.lower_margin	= 8,
 
- 		.vsync_len	= 2,
 
- 		.sync		= FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT,
 
- 	},
 
- };
 
- static struct sh_mobile_lcdc_info lcdc0_info = {
 
- 	.clock_source = LCDC_CLK_PERIPHERAL,
 
- 	.ch[0] = {
 
- 		.chan = LCDC_CHAN_MAINLCD,
 
- 		.interface_type = RGB24,
 
- 		.clock_divider = 1,
 
- 		.flags = LCDC_FLAGS_DWPOL,
 
- 		.fourcc = V4L2_PIX_FMT_RGB565,
 
- 		.lcd_modes = lcdc0_modes,
 
- 		.num_modes = ARRAY_SIZE(lcdc0_modes),
 
- 		.panel_cfg = {
 
- 			.width = 44,
 
- 			.height = 79,
 
- 		},
 
- 		.bl_info = {
 
- 			.name = "sh_mobile_lcdc_bl",
 
- 			.max_brightness = 1,
 
- 			.set_brightness = lcd_backlight_set_brightness,
 
- 		},
 
- 		.tx_dev = &mipidsi0_device,
 
- 	}
 
- };
 
- static struct resource lcdc0_resources[] = {
 
- 	[0] = {
 
- 		.name	= "LCDC0",
 
- 		.start	= 0xfe940000, /* P4-only space */
 
- 		.end	= 0xfe943fff,
 
- 		.flags	= IORESOURCE_MEM,
 
- 	},
 
- 	[1] = {
 
- 		.start	= intcs_evt2irq(0x580),
 
- 		.flags	= IORESOURCE_IRQ,
 
- 	},
 
- };
 
- static struct platform_device lcdc0_device = {
 
- 	.name		= "sh_mobile_lcdc_fb",
 
- 	.num_resources	= ARRAY_SIZE(lcdc0_resources),
 
- 	.resource	= lcdc0_resources,
 
- 	.id             = 0,
 
- 	.dev	= {
 
- 		.platform_data	= &lcdc0_info,
 
- 		.coherent_dma_mask = ~0,
 
- 	},
 
- };
 
- /* Fixed 2.8V regulators to be used by SDHI0 */
 
- static struct regulator_consumer_supply fixed2v8_power_consumers[] =
 
- {
 
- 	REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.0"),
 
- 	REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.0"),
 
- };
 
- /* SDHI0 */
 
- static struct sh_mobile_sdhi_info sdhi0_info = {
 
- 	.dma_slave_tx	= SHDMA_SLAVE_SDHI0_TX,
 
- 	.dma_slave_rx	= SHDMA_SLAVE_SDHI0_RX,
 
- 	.tmio_flags	= TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_USE_GPIO_CD,
 
- 	.tmio_caps	= MMC_CAP_SD_HIGHSPEED,
 
- 	.tmio_ocr_mask	= MMC_VDD_27_28 | MMC_VDD_28_29,
 
- 	.cd_gpio	= GPIO_PORT251,
 
- };
 
- static struct resource sdhi0_resources[] = {
 
- 	[0] = {
 
- 		.name	= "SDHI0",
 
- 		.start	= 0xee100000,
 
- 		.end	= 0xee1000ff,
 
- 		.flags	= IORESOURCE_MEM,
 
- 	},
 
- 	[1] = {
 
- 		.name	= SH_MOBILE_SDHI_IRQ_CARD_DETECT,
 
- 		.start	= gic_spi(83),
 
- 		.flags	= IORESOURCE_IRQ,
 
- 	},
 
- 	[2] = {
 
- 		.name	= SH_MOBILE_SDHI_IRQ_SDCARD,
 
- 		.start	= gic_spi(84),
 
- 		.flags	= IORESOURCE_IRQ,
 
- 	},
 
- 	[3] = {
 
- 		.name	= SH_MOBILE_SDHI_IRQ_SDIO,
 
- 		.start	= gic_spi(85),
 
- 		.flags	= IORESOURCE_IRQ,
 
- 	},
 
- };
 
- static struct platform_device sdhi0_device = {
 
- 	.name		= "sh_mobile_sdhi",
 
- 	.id		= 0,
 
- 	.num_resources	= ARRAY_SIZE(sdhi0_resources),
 
- 	.resource	= sdhi0_resources,
 
- 	.dev	= {
 
 
  |