blob: 4994438e1f46cbdee5fee1f26d74afb2a596e7fb [file] [log] [blame]
vikram pandita5f35fbe2009-11-22 10:11:32 -08001/*
Felipe Balbi20826852010-11-08 06:56:14 +00002 * Copyright (C) 2009-2010 Texas Instruments Inc.
3 * Mikkel Christensen <mlc@ti.com>
4 * Felipe Balbi <balbi@ti.com>
vikram pandita5f35fbe2009-11-22 10:11:32 -08005 *
Felipe Balbi20826852010-11-08 06:56:14 +00006 * Modified from mach-omap2/board-ldp.c
vikram pandita5f35fbe2009-11-22 10:11:32 -08007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/platform_device.h>
16#include <linux/input.h>
17#include <linux/gpio.h>
Felipe Balbi20826852010-11-08 06:56:14 +000018#include <linux/i2c/twl.h>
Sukumar Ghoraid5ce2b62011-01-28 15:42:03 +053019#include <linux/mtd/nand.h>
vikram pandita5f35fbe2009-11-22 10:11:32 -080020
21#include <asm/mach-types.h>
22#include <asm/mach/arch.h>
23
Tony Lindgren4e653312011-11-10 22:45:17 +010024#include "common.h"
vikram pandita31e464c2010-02-17 14:09:23 -080025#include <plat/usb.h>
vikram pandita5f35fbe2009-11-22 10:11:32 -080026
Felipe Balbi20826852010-11-08 06:56:14 +000027#include <mach/board-zoom.h>
28
Manjunath Kondaiah G04aeae72010-10-08 09:58:35 -070029#include "board-flash.h"
Tony Lindgren662c8b52009-12-11 16:16:33 -080030#include "mux.h"
Felipe Balbi20826852010-11-08 06:56:14 +000031#include "sdram-micron-mt46h32m32lf-6.h"
vikram pandita5f35fbe2009-11-22 10:11:32 -080032#include "sdram-hynix-h8mbx00u0mer-0em.h"
33
Felipe Balbic6c4dea2010-11-08 06:56:15 +000034#define ZOOM3_EHCI_RESET_GPIO 64
35
Felipe Balbi20826852010-11-08 06:56:14 +000036#ifdef CONFIG_OMAP_MUX
37static struct omap_board_mux board_mux[] __initdata = {
38 /* WLAN IRQ - GPIO 162 */
Ohad Ben-Cohen02b7b942011-03-14 14:24:25 +000039 OMAP3_MUX(MCBSP1_CLKX, OMAP_MUX_MODE4 | OMAP_PIN_INPUT),
Felipe Balbi20826852010-11-08 06:56:14 +000040 /* WLAN POWER ENABLE - GPIO 101 */
41 OMAP3_MUX(CAM_D2, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),
42 /* WLAN SDIO: MMC3 CMD */
43 OMAP3_MUX(MCSPI1_CS1, OMAP_MUX_MODE3 | OMAP_PIN_INPUT_PULLUP),
44 /* WLAN SDIO: MMC3 CLK */
45 OMAP3_MUX(ETK_CLK, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),
46 /* WLAN SDIO: MMC3 DAT[0-3] */
47 OMAP3_MUX(ETK_D3, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),
48 OMAP3_MUX(ETK_D4, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),
49 OMAP3_MUX(ETK_D5, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),
50 OMAP3_MUX(ETK_D6, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),
51 { .reg_offset = OMAP_MUX_TERMINATOR },
vikram pandita5f35fbe2009-11-22 10:11:32 -080052};
Felipe Balbi20826852010-11-08 06:56:14 +000053#endif
vikram pandita5f35fbe2009-11-22 10:11:32 -080054
Sukumar Ghoraie08b1052010-07-09 14:27:49 +000055static struct mtd_partition zoom_nand_partitions[] = {
56 /* All the partition sizes are listed in terms of NAND block size */
57 {
58 .name = "X-Loader-NAND",
59 .offset = 0,
60 .size = 4 * (64 * 2048), /* 512KB, 0x80000 */
61 .mask_flags = MTD_WRITEABLE, /* force read-only */
62 },
63 {
64 .name = "U-Boot-NAND",
65 .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */
66 .size = 10 * (64 * 2048), /* 1.25MB, 0x140000 */
67 .mask_flags = MTD_WRITEABLE, /* force read-only */
68 },
69 {
70 .name = "Boot Env-NAND",
71 .offset = MTDPART_OFS_APPEND, /* Offset = 0x1c0000 */
72 .size = 2 * (64 * 2048), /* 256KB, 0x40000 */
73 },
74 {
75 .name = "Kernel-NAND",
76 .offset = MTDPART_OFS_APPEND, /* Offset = 0x0200000*/
77 .size = 240 * (64 * 2048), /* 30M, 0x1E00000 */
78 },
79 {
80 .name = "system",
81 .offset = MTDPART_OFS_APPEND, /* Offset = 0x2000000 */
82 .size = 3328 * (64 * 2048), /* 416M, 0x1A000000 */
83 },
84 {
85 .name = "userdata",
86 .offset = MTDPART_OFS_APPEND, /* Offset = 0x1C000000*/
87 .size = 256 * (64 * 2048), /* 32M, 0x2000000 */
88 },
89 {
90 .name = "cache",
91 .offset = MTDPART_OFS_APPEND, /* Offset = 0x1E000000*/
92 .size = 256 * (64 * 2048), /* 32M, 0x2000000 */
93 },
94};
95
Keshava Munegowda181b2502011-03-01 20:08:16 +053096static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
97 .port_mode[0] = OMAP_USBHS_PORT_MODE_UNUSED,
98 .port_mode[1] = OMAP_EHCI_PORT_MODE_PHY,
99 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
vikram pandita31e464c2010-02-17 14:09:23 -0800100 .phy_reset = true,
101 .reset_gpio_port[0] = -EINVAL,
Felipe Balbic6c4dea2010-11-08 06:56:15 +0000102 .reset_gpio_port[1] = ZOOM3_EHCI_RESET_GPIO,
vikram pandita31e464c2010-02-17 14:09:23 -0800103 .reset_gpio_port[2] = -EINVAL,
104};
105
vikram pandita5f35fbe2009-11-22 10:11:32 -0800106static void __init omap_zoom_init(void)
107{
Felipe Balbi20826852010-11-08 06:56:14 +0000108 if (machine_is_omap_zoom2()) {
109 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
110 } else if (machine_is_omap_zoom3()) {
111 omap3_mux_init(board_mux, OMAP_PACKAGE_CBP);
Felipe Balbic6c4dea2010-11-08 06:56:15 +0000112 omap_mux_init_gpio(ZOOM3_EHCI_RESET_GPIO, OMAP_PIN_OUTPUT);
Keshava Munegowda9e64bb12011-03-01 20:08:19 +0530113 usbhs_init(&usbhs_bdata);
Felipe Balbi20826852010-11-08 06:56:14 +0000114 }
vikram pandita31e464c2010-02-17 14:09:23 -0800115
Sukumar Ghoraid5ce2b62011-01-28 15:42:03 +0530116 board_nand_init(zoom_nand_partitions, ARRAY_SIZE(zoom_nand_partitions),
117 ZOOM_NAND_CS, NAND_BUSWIDTH_16);
Felipe Balbi20826852010-11-08 06:56:14 +0000118 zoom_debugboard_init();
119 zoom_peripherals_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700120
121 if (machine_is_omap_zoom2())
122 omap_sdrc_init(mt46h32m32lf6_sdrc_params,
123 mt46h32m32lf6_sdrc_params);
124 else if (machine_is_omap_zoom3())
125 omap_sdrc_init(h8mbx00u0mer0em_sdrc_params,
126 h8mbx00u0mer0em_sdrc_params);
127
Kishore Yed3f9092010-11-15 07:09:04 +0100128 zoom_display_init();
vikram pandita5f35fbe2009-11-22 10:11:32 -0800129}
130
Felipe Balbi20826852010-11-08 06:56:14 +0000131MACHINE_START(OMAP_ZOOM2, "OMAP Zoom2 board")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400132 .atag_offset = 0x100,
Felipe Balbi20826852010-11-08 06:56:14 +0000133 .reserve = omap_reserve,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800134 .map_io = omap3_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700135 .init_early = omap3430_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700136 .init_irq = omap3_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100137 .handle_irq = omap3_intc_handle_irq,
Felipe Balbi20826852010-11-08 06:56:14 +0000138 .init_machine = omap_zoom_init,
Shawn Guobbd707a2012-04-26 16:06:50 +0800139 .init_late = omap3430_init_late,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700140 .timer = &omap3_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000141 .restart = omap_prcm_restart,
Felipe Balbi20826852010-11-08 06:56:14 +0000142MACHINE_END
143
vikram pandita5f35fbe2009-11-22 10:11:32 -0800144MACHINE_START(OMAP_ZOOM3, "OMAP Zoom3 board")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400145 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100146 .reserve = omap_reserve,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800147 .map_io = omap3_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700148 .init_early = omap3630_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700149 .init_irq = omap3_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100150 .handle_irq = omap3_intc_handle_irq,
vikram pandita5f35fbe2009-11-22 10:11:32 -0800151 .init_machine = omap_zoom_init,
Shawn Guobbd707a2012-04-26 16:06:50 +0800152 .init_late = omap3630_init_late,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700153 .timer = &omap3_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000154 .restart = omap_prcm_restart,
vikram pandita5f35fbe2009-11-22 10:11:32 -0800155MACHINE_END