Path: blob/master/arch/sh/boards/mach-migor/setup.c
15125 views
/*1* Renesas System Solutions Asia Pte. Ltd - Migo-R2*3* Copyright (C) 2008 Magnus Damm4*5* This file is subject to the terms and conditions of the GNU General Public6* License. See the file "COPYING" in the main directory of this archive7* for more details.8*/9#include <linux/init.h>10#include <linux/platform_device.h>11#include <linux/interrupt.h>12#include <linux/input.h>13#include <linux/input/sh_keysc.h>14#include <linux/mmc/host.h>15#include <linux/mmc/sh_mobile_sdhi.h>16#include <linux/mtd/physmap.h>17#include <linux/mtd/nand.h>18#include <linux/i2c.h>19#include <linux/smc91x.h>20#include <linux/delay.h>21#include <linux/clk.h>22#include <linux/gpio.h>23#include <video/sh_mobile_lcdc.h>24#include <media/sh_mobile_ceu.h>25#include <media/ov772x.h>26#include <media/tw9910.h>27#include <asm/clock.h>28#include <asm/machvec.h>29#include <asm/io.h>30#include <asm/suspend.h>31#include <mach/migor.h>32#include <cpu/sh7722.h>3334/* Address IRQ Size Bus Description35* 0x00000000 64MB 16 NOR Flash (SP29PL256N)36* 0x0c000000 64MB 64 SDRAM (2xK4M563233G)37* 0x10000000 IRQ0 16 Ethernet (SMC91C111)38* 0x14000000 IRQ4 16 USB 2.0 Host Controller (M66596)39* 0x18000000 8GB 8 NAND Flash (K9K8G08U0A)40*/4142static struct smc91x_platdata smc91x_info = {43.flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,44};4546static struct resource smc91x_eth_resources[] = {47[0] = {48.name = "SMC91C111" ,49.start = 0x10000300,50.end = 0x1000030f,51.flags = IORESOURCE_MEM,52},53[1] = {54.start = 32, /* IRQ0 */55.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,56},57};5859static struct platform_device smc91x_eth_device = {60.name = "smc91x",61.num_resources = ARRAY_SIZE(smc91x_eth_resources),62.resource = smc91x_eth_resources,63.dev = {64.platform_data = &smc91x_info,65},66};6768static struct sh_keysc_info sh_keysc_info = {69.mode = SH_KEYSC_MODE_2, /* KEYOUT0->4, KEYIN1->5 */70.scan_timing = 3,71.delay = 5,72.keycodes = {730, KEY_UP, KEY_DOWN, KEY_LEFT, KEY_RIGHT, KEY_ENTER,740, KEY_F, KEY_C, KEY_D, KEY_H, KEY_1,750, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6,760, KEY_7, KEY_8, KEY_9, KEY_S, KEY_0,770, KEY_P, KEY_STOP, KEY_REWIND, KEY_PLAY, KEY_FASTFORWARD,78},79};8081static struct resource sh_keysc_resources[] = {82[0] = {83.start = 0x044b0000,84.end = 0x044b000f,85.flags = IORESOURCE_MEM,86},87[1] = {88.start = 79,89.flags = IORESOURCE_IRQ,90},91};9293static struct platform_device sh_keysc_device = {94.name = "sh_keysc",95.id = 0, /* "keysc0" clock */96.num_resources = ARRAY_SIZE(sh_keysc_resources),97.resource = sh_keysc_resources,98.dev = {99.platform_data = &sh_keysc_info,100},101.archdata = {102.hwblk_id = HWBLK_KEYSC,103},104};105106static struct mtd_partition migor_nor_flash_partitions[] =107{108{109.name = "uboot",110.offset = 0,111.size = (1 * 1024 * 1024),112.mask_flags = MTD_WRITEABLE, /* Read-only */113},114{115.name = "rootfs",116.offset = MTDPART_OFS_APPEND,117.size = (15 * 1024 * 1024),118},119{120.name = "other",121.offset = MTDPART_OFS_APPEND,122.size = MTDPART_SIZ_FULL,123},124};125126static struct physmap_flash_data migor_nor_flash_data = {127.width = 2,128.parts = migor_nor_flash_partitions,129.nr_parts = ARRAY_SIZE(migor_nor_flash_partitions),130};131132static struct resource migor_nor_flash_resources[] = {133[0] = {134.name = "NOR Flash",135.start = 0x00000000,136.end = 0x03ffffff,137.flags = IORESOURCE_MEM,138}139};140141static struct platform_device migor_nor_flash_device = {142.name = "physmap-flash",143.resource = migor_nor_flash_resources,144.num_resources = ARRAY_SIZE(migor_nor_flash_resources),145.dev = {146.platform_data = &migor_nor_flash_data,147},148};149150static struct mtd_partition migor_nand_flash_partitions[] = {151{152.name = "nanddata1",153.offset = 0x0,154.size = 512 * 1024 * 1024,155},156{157.name = "nanddata2",158.offset = MTDPART_OFS_APPEND,159.size = 512 * 1024 * 1024,160},161};162163static void migor_nand_flash_cmd_ctl(struct mtd_info *mtd, int cmd,164unsigned int ctrl)165{166struct nand_chip *chip = mtd->priv;167168if (cmd == NAND_CMD_NONE)169return;170171if (ctrl & NAND_CLE)172writeb(cmd, chip->IO_ADDR_W + 0x00400000);173else if (ctrl & NAND_ALE)174writeb(cmd, chip->IO_ADDR_W + 0x00800000);175else176writeb(cmd, chip->IO_ADDR_W);177}178179static int migor_nand_flash_ready(struct mtd_info *mtd)180{181return gpio_get_value(GPIO_PTA1); /* NAND_RBn */182}183184static struct platform_nand_data migor_nand_flash_data = {185.chip = {186.nr_chips = 1,187.partitions = migor_nand_flash_partitions,188.nr_partitions = ARRAY_SIZE(migor_nand_flash_partitions),189.chip_delay = 20,190.part_probe_types = (const char *[]) { "cmdlinepart", NULL },191},192.ctrl = {193.dev_ready = migor_nand_flash_ready,194.cmd_ctrl = migor_nand_flash_cmd_ctl,195},196};197198static struct resource migor_nand_flash_resources[] = {199[0] = {200.name = "NAND Flash",201.start = 0x18000000,202.end = 0x18ffffff,203.flags = IORESOURCE_MEM,204},205};206207static struct platform_device migor_nand_flash_device = {208.name = "gen_nand",209.resource = migor_nand_flash_resources,210.num_resources = ARRAY_SIZE(migor_nand_flash_resources),211.dev = {212.platform_data = &migor_nand_flash_data,213}214};215216const static struct fb_videomode migor_lcd_modes[] = {217{218#if defined(CONFIG_SH_MIGOR_RTA_WVGA)219.name = "LB070WV1",220.xres = 800,221.yres = 480,222.left_margin = 64,223.right_margin = 16,224.hsync_len = 120,225.sync = 0,226#elif defined(CONFIG_SH_MIGOR_QVGA)227.name = "PH240320T",228.xres = 320,229.yres = 240,230.left_margin = 0,231.right_margin = 16,232.hsync_len = 8,233.sync = FB_SYNC_HOR_HIGH_ACT,234#endif235.upper_margin = 1,236.lower_margin = 17,237.vsync_len = 2,238},239};240241static struct sh_mobile_lcdc_info sh_mobile_lcdc_info = {242#if defined(CONFIG_SH_MIGOR_RTA_WVGA)243.clock_source = LCDC_CLK_BUS,244.ch[0] = {245.chan = LCDC_CHAN_MAINLCD,246.bpp = 16,247.interface_type = RGB16,248.clock_divider = 2,249.lcd_cfg = migor_lcd_modes,250.num_cfg = ARRAY_SIZE(migor_lcd_modes),251.lcd_size_cfg = { /* 7.0 inch */252.width = 152,253.height = 91,254},255}256#elif defined(CONFIG_SH_MIGOR_QVGA)257.clock_source = LCDC_CLK_PERIPHERAL,258.ch[0] = {259.chan = LCDC_CHAN_MAINLCD,260.bpp = 16,261.interface_type = SYS16A,262.clock_divider = 10,263.lcd_cfg = migor_lcd_modes,264.num_cfg = ARRAY_SIZE(migor_lcd_modes),265.lcd_size_cfg = { /* 2.4 inch */266.width = 49,267.height = 37,268},269.board_cfg = {270.setup_sys = migor_lcd_qvga_setup,271},272.sys_bus_cfg = {273.ldmt2r = 0x06000a09,274.ldmt3r = 0x180e3418,275/* set 1s delay to encourage fsync() */276.deferred_io_msec = 1000,277},278}279#endif280};281282static struct resource migor_lcdc_resources[] = {283[0] = {284.name = "LCDC",285.start = 0xfe940000, /* P4-only space */286.end = 0xfe942fff,287.flags = IORESOURCE_MEM,288},289[1] = {290.start = 28,291.flags = IORESOURCE_IRQ,292},293};294295static struct platform_device migor_lcdc_device = {296.name = "sh_mobile_lcdc_fb",297.num_resources = ARRAY_SIZE(migor_lcdc_resources),298.resource = migor_lcdc_resources,299.dev = {300.platform_data = &sh_mobile_lcdc_info,301},302.archdata = {303.hwblk_id = HWBLK_LCDC,304},305};306307static struct clk *camera_clk;308static DEFINE_MUTEX(camera_lock);309310static void camera_power_on(int is_tw)311{312mutex_lock(&camera_lock);313314/* Use 10 MHz VIO_CKO instead of 24 MHz to work315* around signal quality issues on Panel Board V2.1.316*/317camera_clk = clk_get(NULL, "video_clk");318clk_set_rate(camera_clk, 10000000);319clk_enable(camera_clk); /* start VIO_CKO */320321/* use VIO_RST to take camera out of reset */322mdelay(10);323if (is_tw) {324gpio_set_value(GPIO_PTT2, 0);325gpio_set_value(GPIO_PTT0, 0);326} else {327gpio_set_value(GPIO_PTT0, 1);328}329gpio_set_value(GPIO_PTT3, 0);330mdelay(10);331gpio_set_value(GPIO_PTT3, 1);332mdelay(10); /* wait to let chip come out of reset */333}334335static void camera_power_off(void)336{337clk_disable(camera_clk); /* stop VIO_CKO */338clk_put(camera_clk);339340gpio_set_value(GPIO_PTT3, 0);341mutex_unlock(&camera_lock);342}343344static int ov7725_power(struct device *dev, int mode)345{346if (mode)347camera_power_on(0);348else349camera_power_off();350351return 0;352}353354static int tw9910_power(struct device *dev, int mode)355{356if (mode)357camera_power_on(1);358else359camera_power_off();360361return 0;362}363364static struct sh_mobile_ceu_info sh_mobile_ceu_info = {365.flags = SH_CEU_FLAG_USE_8BIT_BUS,366};367368static struct resource migor_ceu_resources[] = {369[0] = {370.name = "CEU",371.start = 0xfe910000,372.end = 0xfe91009f,373.flags = IORESOURCE_MEM,374},375[1] = {376.start = 52,377.flags = IORESOURCE_IRQ,378},379[2] = {380/* place holder for contiguous memory */381},382};383384static struct platform_device migor_ceu_device = {385.name = "sh_mobile_ceu",386.id = 0, /* "ceu0" clock */387.num_resources = ARRAY_SIZE(migor_ceu_resources),388.resource = migor_ceu_resources,389.dev = {390.platform_data = &sh_mobile_ceu_info,391},392.archdata = {393.hwblk_id = HWBLK_CEU,394},395};396397static struct resource sdhi_cn9_resources[] = {398[0] = {399.name = "SDHI",400.start = 0x04ce0000,401.end = 0x04ce00ff,402.flags = IORESOURCE_MEM,403},404[1] = {405.start = 100,406.flags = IORESOURCE_IRQ,407},408};409410static struct sh_mobile_sdhi_info sh7724_sdhi_data = {411.dma_slave_tx = SHDMA_SLAVE_SDHI0_TX,412.dma_slave_rx = SHDMA_SLAVE_SDHI0_RX,413.tmio_caps = MMC_CAP_SDIO_IRQ,414};415416static struct platform_device sdhi_cn9_device = {417.name = "sh_mobile_sdhi",418.num_resources = ARRAY_SIZE(sdhi_cn9_resources),419.resource = sdhi_cn9_resources,420.dev = {421.platform_data = &sh7724_sdhi_data,422},423.archdata = {424.hwblk_id = HWBLK_SDHI,425},426};427428static struct i2c_board_info migor_i2c_devices[] = {429{430I2C_BOARD_INFO("rs5c372b", 0x32),431},432{433I2C_BOARD_INFO("migor_ts", 0x51),434.irq = 38, /* IRQ6 */435},436{437I2C_BOARD_INFO("wm8978", 0x1a),438},439};440441static struct i2c_board_info migor_i2c_camera[] = {442{443I2C_BOARD_INFO("ov772x", 0x21),444},445{446I2C_BOARD_INFO("tw9910", 0x45),447},448};449450static struct ov772x_camera_info ov7725_info = {451.flags = OV772X_FLAG_8BIT,452};453454static struct soc_camera_link ov7725_link = {455.power = ov7725_power,456.board_info = &migor_i2c_camera[0],457.i2c_adapter_id = 0,458.priv = &ov7725_info,459};460461static struct tw9910_video_info tw9910_info = {462.buswidth = SOCAM_DATAWIDTH_8,463.mpout = TW9910_MPO_FIELD,464};465466static struct soc_camera_link tw9910_link = {467.power = tw9910_power,468.board_info = &migor_i2c_camera[1],469.i2c_adapter_id = 0,470.priv = &tw9910_info,471};472473static struct platform_device migor_camera[] = {474{475.name = "soc-camera-pdrv",476.id = 0,477.dev = {478.platform_data = &ov7725_link,479},480}, {481.name = "soc-camera-pdrv",482.id = 1,483.dev = {484.platform_data = &tw9910_link,485},486},487};488489static struct platform_device *migor_devices[] __initdata = {490&smc91x_eth_device,491&sh_keysc_device,492&migor_lcdc_device,493&migor_ceu_device,494&migor_nor_flash_device,495&migor_nand_flash_device,496&sdhi_cn9_device,497&migor_camera[0],498&migor_camera[1],499};500501extern char migor_sdram_enter_start;502extern char migor_sdram_enter_end;503extern char migor_sdram_leave_start;504extern char migor_sdram_leave_end;505506static int __init migor_devices_setup(void)507{508/* register board specific self-refresh code */509sh_mobile_register_self_refresh(SUSP_SH_STANDBY | SUSP_SH_SF,510&migor_sdram_enter_start,511&migor_sdram_enter_end,512&migor_sdram_leave_start,513&migor_sdram_leave_end);514/* Let D11 LED show STATUS0 */515gpio_request(GPIO_FN_STATUS0, NULL);516517/* Lit D12 LED show PDSTATUS */518gpio_request(GPIO_FN_PDSTATUS, NULL);519520/* SMC91C111 - Enable IRQ0, Setup CS4 for 16-bit fast access */521gpio_request(GPIO_FN_IRQ0, NULL);522__raw_writel(0x00003400, BSC_CS4BCR);523__raw_writel(0x00110080, BSC_CS4WCR);524525/* KEYSC */526gpio_request(GPIO_FN_KEYOUT0, NULL);527gpio_request(GPIO_FN_KEYOUT1, NULL);528gpio_request(GPIO_FN_KEYOUT2, NULL);529gpio_request(GPIO_FN_KEYOUT3, NULL);530gpio_request(GPIO_FN_KEYOUT4_IN6, NULL);531gpio_request(GPIO_FN_KEYIN1, NULL);532gpio_request(GPIO_FN_KEYIN2, NULL);533gpio_request(GPIO_FN_KEYIN3, NULL);534gpio_request(GPIO_FN_KEYIN4, NULL);535gpio_request(GPIO_FN_KEYOUT5_IN5, NULL);536537/* NAND Flash */538gpio_request(GPIO_FN_CS6A_CE2B, NULL);539__raw_writel((__raw_readl(BSC_CS6ABCR) & ~0x0600) | 0x0200, BSC_CS6ABCR);540gpio_request(GPIO_PTA1, NULL);541gpio_direction_input(GPIO_PTA1);542543/* SDHI */544gpio_request(GPIO_FN_SDHICD, NULL);545gpio_request(GPIO_FN_SDHIWP, NULL);546gpio_request(GPIO_FN_SDHID3, NULL);547gpio_request(GPIO_FN_SDHID2, NULL);548gpio_request(GPIO_FN_SDHID1, NULL);549gpio_request(GPIO_FN_SDHID0, NULL);550gpio_request(GPIO_FN_SDHICMD, NULL);551gpio_request(GPIO_FN_SDHICLK, NULL);552553/* Touch Panel */554gpio_request(GPIO_FN_IRQ6, NULL);555556/* LCD Panel */557#ifdef CONFIG_SH_MIGOR_QVGA /* LCDC - QVGA - Enable SYS Interface signals */558gpio_request(GPIO_FN_LCDD17, NULL);559gpio_request(GPIO_FN_LCDD16, NULL);560gpio_request(GPIO_FN_LCDD15, NULL);561gpio_request(GPIO_FN_LCDD14, NULL);562gpio_request(GPIO_FN_LCDD13, NULL);563gpio_request(GPIO_FN_LCDD12, NULL);564gpio_request(GPIO_FN_LCDD11, NULL);565gpio_request(GPIO_FN_LCDD10, NULL);566gpio_request(GPIO_FN_LCDD8, NULL);567gpio_request(GPIO_FN_LCDD7, NULL);568gpio_request(GPIO_FN_LCDD6, NULL);569gpio_request(GPIO_FN_LCDD5, NULL);570gpio_request(GPIO_FN_LCDD4, NULL);571gpio_request(GPIO_FN_LCDD3, NULL);572gpio_request(GPIO_FN_LCDD2, NULL);573gpio_request(GPIO_FN_LCDD1, NULL);574gpio_request(GPIO_FN_LCDRS, NULL);575gpio_request(GPIO_FN_LCDCS, NULL);576gpio_request(GPIO_FN_LCDRD, NULL);577gpio_request(GPIO_FN_LCDWR, NULL);578gpio_request(GPIO_PTH2, NULL); /* LCD_DON */579gpio_direction_output(GPIO_PTH2, 1);580#endif581#ifdef CONFIG_SH_MIGOR_RTA_WVGA /* LCDC - WVGA - Enable RGB Interface signals */582gpio_request(GPIO_FN_LCDD15, NULL);583gpio_request(GPIO_FN_LCDD14, NULL);584gpio_request(GPIO_FN_LCDD13, NULL);585gpio_request(GPIO_FN_LCDD12, NULL);586gpio_request(GPIO_FN_LCDD11, NULL);587gpio_request(GPIO_FN_LCDD10, NULL);588gpio_request(GPIO_FN_LCDD9, NULL);589gpio_request(GPIO_FN_LCDD8, NULL);590gpio_request(GPIO_FN_LCDD7, NULL);591gpio_request(GPIO_FN_LCDD6, NULL);592gpio_request(GPIO_FN_LCDD5, NULL);593gpio_request(GPIO_FN_LCDD4, NULL);594gpio_request(GPIO_FN_LCDD3, NULL);595gpio_request(GPIO_FN_LCDD2, NULL);596gpio_request(GPIO_FN_LCDD1, NULL);597gpio_request(GPIO_FN_LCDD0, NULL);598gpio_request(GPIO_FN_LCDLCLK, NULL);599gpio_request(GPIO_FN_LCDDCK, NULL);600gpio_request(GPIO_FN_LCDVEPWC, NULL);601gpio_request(GPIO_FN_LCDVCPWC, NULL);602gpio_request(GPIO_FN_LCDVSYN, NULL);603gpio_request(GPIO_FN_LCDHSYN, NULL);604gpio_request(GPIO_FN_LCDDISP, NULL);605gpio_request(GPIO_FN_LCDDON, NULL);606#endif607608/* CEU */609gpio_request(GPIO_FN_VIO_CLK2, NULL);610gpio_request(GPIO_FN_VIO_VD2, NULL);611gpio_request(GPIO_FN_VIO_HD2, NULL);612gpio_request(GPIO_FN_VIO_FLD, NULL);613gpio_request(GPIO_FN_VIO_CKO, NULL);614gpio_request(GPIO_FN_VIO_D15, NULL);615gpio_request(GPIO_FN_VIO_D14, NULL);616gpio_request(GPIO_FN_VIO_D13, NULL);617gpio_request(GPIO_FN_VIO_D12, NULL);618gpio_request(GPIO_FN_VIO_D11, NULL);619gpio_request(GPIO_FN_VIO_D10, NULL);620gpio_request(GPIO_FN_VIO_D9, NULL);621gpio_request(GPIO_FN_VIO_D8, NULL);622623gpio_request(GPIO_PTT3, NULL); /* VIO_RST */624gpio_direction_output(GPIO_PTT3, 0);625gpio_request(GPIO_PTT2, NULL); /* TV_IN_EN */626gpio_direction_output(GPIO_PTT2, 1);627gpio_request(GPIO_PTT0, NULL); /* CAM_EN */628#ifdef CONFIG_SH_MIGOR_RTA_WVGA629gpio_direction_output(GPIO_PTT0, 0);630#else631gpio_direction_output(GPIO_PTT0, 1);632#endif633__raw_writew(__raw_readw(PORT_MSELCRB) | 0x2000, PORT_MSELCRB); /* D15->D8 */634635platform_resource_setup_memory(&migor_ceu_device, "ceu", 4 << 20);636637/* SIU: Port B */638gpio_request(GPIO_FN_SIUBOLR, NULL);639gpio_request(GPIO_FN_SIUBOBT, NULL);640gpio_request(GPIO_FN_SIUBISLD, NULL);641gpio_request(GPIO_FN_SIUBOSLD, NULL);642gpio_request(GPIO_FN_SIUMCKB, NULL);643644/*645* The original driver sets SIUB OLR/OBT, ILR/IBT, and SIUA OLR/OBT to646* output. Need only SIUB, set to output for master mode (table 34.2)647*/648__raw_writew(__raw_readw(PORT_MSELCRA) | 1, PORT_MSELCRA);649650i2c_register_board_info(0, migor_i2c_devices,651ARRAY_SIZE(migor_i2c_devices));652653return platform_add_devices(migor_devices, ARRAY_SIZE(migor_devices));654}655arch_initcall(migor_devices_setup);656657/* Return the board specific boot mode pin configuration */658static int migor_mode_pins(void)659{660/* MD0=1, MD1=1, MD2=0: Clock Mode 3661* MD3=0: 16-bit Area0 Bus Width662* MD5=1: Little Endian663* TSTMD=1, MD8=0: Test Mode Disabled664*/665return MODE_PIN0 | MODE_PIN1 | MODE_PIN5;666}667668/*669* The Machine Vector670*/671static struct sh_machine_vector mv_migor __initmv = {672.mv_name = "Migo-R",673.mv_mode_pins = migor_mode_pins,674};675676677