blob: d356ef5336c05ce26d97e0bda19c1c74226a47ae [file] [log] [blame]
Vikram Pandita577145f2009-05-28 14:04:04 -07001/*
2 * Copyright (C) 2009 Texas Instruments Inc.
3 * Mikkel Christensen <mlc@ti.com>
4 *
5 * Modified from mach-omap2/board-ldp.c
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/platform_device.h>
Vikram Pandita70ac51a2009-08-28 11:24:13 -070015#include <linux/input.h>
Vikram Pandita577145f2009-05-28 14:04:04 -070016#include <linux/gpio.h>
Vikram Pandita577145f2009-05-28 14:04:04 -070017
18#include <asm/mach-types.h>
19#include <asm/mach/arch.h>
20
Tony Lindgrence491cf2009-10-20 09:40:47 -070021#include <plat/common.h>
vikram pandita479f12c2009-11-22 10:11:30 -080022#include <plat/board.h>
Vikram Pandita577145f2009-05-28 14:04:04 -070023
vikram pandita62d0b3362009-11-22 10:11:31 -080024#include <mach/board-zoom.h>
25
Manjunath Kondaiah G04aeae72010-10-08 09:58:35 -070026#include "board-flash.h"
Tony Lindgrenca5742b2009-12-11 16:16:32 -080027#include "mux.h"
Teerth Reddy02563a52009-10-14 09:56:35 -070028#include "sdram-micron-mt46h32m32lf-6.h"
Vikram Pandita577145f2009-05-28 14:04:04 -070029
Paul Walmsleyb3c6df32009-09-03 20:14:02 +030030static void __init omap_zoom2_init_irq(void)
31{
Teerth Reddy02563a52009-10-14 09:56:35 -070032 omap2_init_common_hw(mt46h32m32lf6_sdrc_params,
33 mt46h32m32lf6_sdrc_params);
Paul Walmsleyb3c6df32009-09-03 20:14:02 +030034 omap_init_irq();
35 omap_gpio_init();
36}
37
vikram pandita479f12c2009-11-22 10:11:30 -080038/* REVISIT: These audio entries can be removed once MFD code is merged */
39#if 0
Vikram Pandita70ac51a2009-08-28 11:24:13 -070040
41static struct twl4030_madc_platform_data zoom2_madc_data = {
42 .irq_line = 1,
Vikram Pandita577145f2009-05-28 14:04:04 -070043};
44
Peter Ujfalusif8d9aad2009-10-22 13:26:46 +030045static struct twl4030_codec_audio_data zoom2_audio_data = {
46 .audio_mclk = 26000000,
47};
48
49static struct twl4030_codec_data zoom2_codec_data = {
Peter Ujfalusi953e2f32009-11-04 09:58:18 +020050 .audio_mclk = 26000000,
Peter Ujfalusif8d9aad2009-10-22 13:26:46 +030051 .audio = &zoom2_audio_data,
52};
53
Vikram Pandita577145f2009-05-28 14:04:04 -070054static struct twl4030_platform_data zoom2_twldata = {
55 .irq_base = TWL4030_IRQ_BASE,
56 .irq_end = TWL4030_IRQ_END,
57
58 /* platform_data for children goes here */
Vikram Pandita70ac51a2009-08-28 11:24:13 -070059 .bci = &zoom2_bci_data,
60 .madc = &zoom2_madc_data,
61 .usb = &zoom2_usb_data,
Vikram Pandita577145f2009-05-28 14:04:04 -070062 .gpio = &zoom2_gpio_data,
Vikram Pandita70ac51a2009-08-28 11:24:13 -070063 .keypad = &zoom2_kp_twl4030_data,
Peter Ujfalusif8d9aad2009-10-22 13:26:46 +030064 .codec = &zoom2_codec_data,
Vikram Pandita70ac51a2009-08-28 11:24:13 -070065 .vmmc1 = &zoom2_vmmc1,
66 .vmmc2 = &zoom2_vmmc2,
67 .vsim = &zoom2_vsim,
68
Vikram Pandita577145f2009-05-28 14:04:04 -070069};
70
vikram pandita479f12c2009-11-22 10:11:30 -080071#endif
Vikram Pandita577145f2009-05-28 14:04:04 -070072
Tony Lindgrenca5742b2009-12-11 16:16:32 -080073#ifdef CONFIG_OMAP_MUX
74static struct omap_board_mux board_mux[] __initdata = {
Ohad Ben-Cohen7b2308c2010-08-02 13:18:00 +030075 /* WLAN IRQ - GPIO 162 */
76 OMAP3_MUX(MCBSP1_CLKX, OMAP_MUX_MODE4 | OMAP_PIN_INPUT_PULLUP),
77 /* WLAN POWER ENABLE - GPIO 101 */
78 OMAP3_MUX(CAM_D2, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),
79 /* WLAN SDIO: MMC3 CMD */
80 OMAP3_MUX(MCSPI1_CS1, OMAP_MUX_MODE3 | OMAP_PIN_INPUT_PULLUP),
81 /* WLAN SDIO: MMC3 CLK */
82 OMAP3_MUX(ETK_CLK, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),
83 /* WLAN SDIO: MMC3 DAT[0-3] */
84 OMAP3_MUX(ETK_D3, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),
85 OMAP3_MUX(ETK_D4, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),
86 OMAP3_MUX(ETK_D5, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),
87 OMAP3_MUX(ETK_D6, OMAP_MUX_MODE2 | OMAP_PIN_INPUT_PULLUP),
Tony Lindgrenca5742b2009-12-11 16:16:32 -080088 { .reg_offset = OMAP_MUX_TERMINATOR },
89};
90#else
91#define board_mux NULL
92#endif
93
Sukumar Ghorai7e7eb422010-07-09 14:27:48 +000094static struct mtd_partition zoom_nand_partitions[] = {
95 /* All the partition sizes are listed in terms of NAND block size */
96 {
97 .name = "X-Loader-NAND",
98 .offset = 0,
99 .size = 4 * (64 * 2048), /* 512KB, 0x80000 */
100 .mask_flags = MTD_WRITEABLE, /* force read-only */
101 },
102 {
103 .name = "U-Boot-NAND",
104 .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */
105 .size = 10 * (64 * 2048), /* 1.25MB, 0x140000 */
106 .mask_flags = MTD_WRITEABLE, /* force read-only */
107 },
108 {
109 .name = "Boot Env-NAND",
110 .offset = MTDPART_OFS_APPEND, /* Offset = 0x1c0000 */
111 .size = 2 * (64 * 2048), /* 256KB, 0x40000 */
112 },
113 {
114 .name = "Kernel-NAND",
115 .offset = MTDPART_OFS_APPEND, /* Offset = 0x0200000*/
116 .size = 240 * (64 * 2048), /* 30M, 0x1E00000 */
117 },
118 {
119 .name = "system",
120 .offset = MTDPART_OFS_APPEND, /* Offset = 0x2000000 */
121 .size = 3328 * (64 * 2048), /* 416M, 0x1A000000 */
122 },
123 {
124 .name = "userdata",
125 .offset = MTDPART_OFS_APPEND, /* Offset = 0x1C000000*/
126 .size = 256 * (64 * 2048), /* 32M, 0x2000000 */
127 },
128 {
129 .name = "cache",
130 .offset = MTDPART_OFS_APPEND, /* Offset = 0x1E000000*/
131 .size = 256 * (64 * 2048), /* 32M, 0x2000000 */
132 },
133};
134
Vikram Pandita577145f2009-05-28 14:04:04 -0700135static void __init omap_zoom2_init(void)
136{
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800137 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
vikram pandita479f12c2009-11-22 10:11:30 -0800138 zoom_peripherals_init();
Sukumar Ghorai7e7eb422010-07-09 14:27:48 +0000139 board_nand_init(zoom_nand_partitions,
140 ARRAY_SIZE(zoom_nand_partitions), ZOOM_NAND_CS);
vikram pandita62d0b3362009-11-22 10:11:31 -0800141 zoom_debugboard_init();
Vikram Pandita577145f2009-05-28 14:04:04 -0700142}
143
Vikram Pandita577145f2009-05-28 14:04:04 -0700144MACHINE_START(OMAP_ZOOM2, "OMAP Zoom2 board")
Tony Lindgrena4f57b82010-04-30 12:57:14 -0700145 .phys_io = ZOOM_UART_BASE,
146 .io_pg_offst = (ZOOM_UART_VIRT >> 18) & 0xfffc,
Vikram Pandita577145f2009-05-28 14:04:04 -0700147 .boot_params = 0x80000100,
Mike Rapoport869fef42010-08-04 14:43:18 +0300148 .map_io = omap3_map_io,
Russell King71ee7da2010-05-23 10:18:16 +0100149 .reserve = omap_reserve,
Vikram Pandita577145f2009-05-28 14:04:04 -0700150 .init_irq = omap_zoom2_init_irq,
151 .init_machine = omap_zoom2_init,
152 .timer = &omap_timer,
153MACHINE_END