Path: blob/master/arch/arm/mach-omap2/board-zoom.c
10817 views
/*1* Copyright (C) 2009-2010 Texas Instruments Inc.2* Mikkel Christensen <[email protected]>3* Felipe Balbi <[email protected]>4*5* Modified from mach-omap2/board-ldp.c6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License version 2 as9* published by the Free Software Foundation.10*/1112#include <linux/kernel.h>13#include <linux/init.h>14#include <linux/platform_device.h>15#include <linux/input.h>16#include <linux/gpio.h>17#include <linux/i2c/twl.h>18#include <linux/mtd/nand.h>1920#include <asm/mach-types.h>21#include <asm/mach/arch.h>2223#include <plat/common.h>24#include <plat/board.h>25#include <plat/usb.h>2627#include <mach/board-zoom.h>2829#include "board-flash.h"30#include "mux.h"31#include "sdram-micron-mt46h32m32lf-6.h"32#include "sdram-hynix-h8mbx00u0mer-0em.h"3334#define ZOOM3_EHCI_RESET_GPIO 643536static void __init omap_zoom_init_early(void)37{38omap2_init_common_infrastructure();39if (machine_is_omap_zoom2())40omap2_init_common_devices(mt46h32m32lf6_sdrc_params,41mt46h32m32lf6_sdrc_params);42else if (machine_is_omap_zoom3())43omap2_init_common_devices(h8mbx00u0mer0em_sdrc_params,44h8mbx00u0mer0em_sdrc_params);45}4647#ifdef CONFIG_OMAP_MUX48static struct omap_board_mux board_mux[] __initdata = {49/* WLAN IRQ - GPIO 162 */50OMAP3_MUX(MCBSP1_CLKX, OMAP_MUX_MODE4 | OMAP_PIN_INPUT),51/* WLAN POWER ENABLE - GPIO 101 */52OMAP3_MUX(CAM_D2, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),53/* WLAN SDIO: MMC3 CMD */54OMAP3_MUX(MCSPI1_CS1, OMAP_MUX_MODE3 | OMAP_PIN_INPUT_PULLUP),55/* WLAN SDIO: MMC3 CLK */56OMAP3_MUX(ETK_CLK, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),57/* WLAN SDIO: MMC3 DAT[0-3] */58OMAP3_MUX(ETK_D3, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),59OMAP3_MUX(ETK_D4, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),60OMAP3_MUX(ETK_D5, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),61OMAP3_MUX(ETK_D6, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),62{ .reg_offset = OMAP_MUX_TERMINATOR },63};64#endif6566static struct mtd_partition zoom_nand_partitions[] = {67/* All the partition sizes are listed in terms of NAND block size */68{69.name = "X-Loader-NAND",70.offset = 0,71.size = 4 * (64 * 2048), /* 512KB, 0x80000 */72.mask_flags = MTD_WRITEABLE, /* force read-only */73},74{75.name = "U-Boot-NAND",76.offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */77.size = 10 * (64 * 2048), /* 1.25MB, 0x140000 */78.mask_flags = MTD_WRITEABLE, /* force read-only */79},80{81.name = "Boot Env-NAND",82.offset = MTDPART_OFS_APPEND, /* Offset = 0x1c0000 */83.size = 2 * (64 * 2048), /* 256KB, 0x40000 */84},85{86.name = "Kernel-NAND",87.offset = MTDPART_OFS_APPEND, /* Offset = 0x0200000*/88.size = 240 * (64 * 2048), /* 30M, 0x1E00000 */89},90{91.name = "system",92.offset = MTDPART_OFS_APPEND, /* Offset = 0x2000000 */93.size = 3328 * (64 * 2048), /* 416M, 0x1A000000 */94},95{96.name = "userdata",97.offset = MTDPART_OFS_APPEND, /* Offset = 0x1C000000*/98.size = 256 * (64 * 2048), /* 32M, 0x2000000 */99},100{101.name = "cache",102.offset = MTDPART_OFS_APPEND, /* Offset = 0x1E000000*/103.size = 256 * (64 * 2048), /* 32M, 0x2000000 */104},105};106107static const struct usbhs_omap_board_data usbhs_bdata __initconst = {108.port_mode[0] = OMAP_USBHS_PORT_MODE_UNUSED,109.port_mode[1] = OMAP_EHCI_PORT_MODE_PHY,110.port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,111.phy_reset = true,112.reset_gpio_port[0] = -EINVAL,113.reset_gpio_port[1] = ZOOM3_EHCI_RESET_GPIO,114.reset_gpio_port[2] = -EINVAL,115};116117static void __init omap_zoom_init(void)118{119if (machine_is_omap_zoom2()) {120omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);121} else if (machine_is_omap_zoom3()) {122omap3_mux_init(board_mux, OMAP_PACKAGE_CBP);123omap_mux_init_gpio(ZOOM3_EHCI_RESET_GPIO, OMAP_PIN_OUTPUT);124usbhs_init(&usbhs_bdata);125}126127board_nand_init(zoom_nand_partitions, ARRAY_SIZE(zoom_nand_partitions),128ZOOM_NAND_CS, NAND_BUSWIDTH_16);129zoom_debugboard_init();130zoom_peripherals_init();131zoom_display_init();132}133134MACHINE_START(OMAP_ZOOM2, "OMAP Zoom2 board")135.boot_params = 0x80000100,136.reserve = omap_reserve,137.map_io = omap3_map_io,138.init_early = omap_zoom_init_early,139.init_irq = omap_init_irq,140.init_machine = omap_zoom_init,141.timer = &omap_timer,142MACHINE_END143144MACHINE_START(OMAP_ZOOM3, "OMAP Zoom3 board")145.boot_params = 0x80000100,146.reserve = omap_reserve,147.map_io = omap3_map_io,148.init_early = omap_zoom_init_early,149.init_irq = omap_init_irq,150.init_machine = omap_zoom_init,151.timer = &omap_timer,152MACHINE_END153154155