board-zoom2.c 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (C) 2009 Texas Instruments Inc.
 * Mikkel Christensen <mlc@ti.com>
 *
 * Modified from mach-omap2/board-ldp.c
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
15
#include <linux/input.h>
16 17 18 19 20
#include <linux/gpio.h>

#include <asm/mach-types.h>
#include <asm/mach/arch.h>

21
#include <plat/common.h>
22
#include <plat/board.h>
23

24 25
#include <mach/board-zoom.h>

26
#include "sdram-micron-mt46h32m32lf-6.h"
27

28 29
static void __init omap_zoom2_init_irq(void)
{
30 31
	omap2_init_common_hw(mt46h32m32lf6_sdrc_params,
				 mt46h32m32lf6_sdrc_params);
32 33 34 35
	omap_init_irq();
	omap_gpio_init();
}

36 37
/* REVISIT: These audio entries can be removed once MFD code is merged */
#if 0
38 39 40

static struct twl4030_madc_platform_data zoom2_madc_data = {
	.irq_line	= 1,
41 42 43 44 45 46 47
};

static struct twl4030_platform_data zoom2_twldata = {
	.irq_base	= TWL4030_IRQ_BASE,
	.irq_end	= TWL4030_IRQ_END,

	/* platform_data for children goes here */
48 49 50
	.bci		= &zoom2_bci_data,
	.madc		= &zoom2_madc_data,
	.usb		= &zoom2_usb_data,
51
	.gpio		= &zoom2_gpio_data,
52 53 54 55 56
	.keypad		= &zoom2_kp_twl4030_data,
	.vmmc1          = &zoom2_vmmc1,
	.vmmc2          = &zoom2_vmmc2,
	.vsim           = &zoom2_vsim,

57 58
};

59
#endif
60 61 62

static void __init omap_zoom2_init(void)
{
63
	zoom_peripherals_init();
64
	zoom_debugboard_init();
65 66 67 68 69 70 71 72 73 74
}

static void __init omap_zoom2_map_io(void)
{
	omap2_set_globals_343x();
	omap2_map_common_io();
}

MACHINE_START(OMAP_ZOOM2, "OMAP Zoom2 board")
	.phys_io	= 0x48000000,
75
	.io_pg_offst	= ((0xfa000000) >> 18) & 0xfffc,
76 77 78 79 80 81
	.boot_params	= 0x80000100,
	.map_io		= omap_zoom2_map_io,
	.init_irq	= omap_zoom2_init_irq,
	.init_machine	= omap_zoom2_init,
	.timer		= &omap_timer,
MACHINE_END