Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / arm / mach-msm / board-halibut.c
1 /* linux/arch/arm/mach-msm/board-halibut.c
2 *
3 * Copyright (C) 2007 Google, Inc.
4 * Author: Brian Swetland <swetland@google.com>
5 *
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 */
16
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/platform_device.h>
20 #include <linux/input.h>
21 #include <linux/io.h>
22 #include <linux/delay.h>
23
24 #include <mach/hardware.h>
25 #include <asm/mach-types.h>
26 #include <asm/mach/arch.h>
27 #include <asm/mach/map.h>
28 #include <asm/mach/flash.h>
29
30 #include <mach/board.h>
31 #include <mach/msm_iomap.h>
32
33 #include <linux/mtd/nand.h>
34 #include <linux/mtd/partitions.h>
35
36 #include "devices.h"
37
38 static struct resource smc91x_resources[] = {
39 [0] = {
40 .start = 0x9C004300,
41 .end = 0x9C004400,
42 .flags = IORESOURCE_MEM,
43 },
44 [1] = {
45 .start = MSM_GPIO_TO_INT(49),
46 .end = MSM_GPIO_TO_INT(49),
47 .flags = IORESOURCE_IRQ,
48 },
49 };
50
51 static struct platform_device smc91x_device = {
52 .name = "smc91x",
53 .id = 0,
54 .num_resources = ARRAY_SIZE(smc91x_resources),
55 .resource = smc91x_resources,
56 };
57
58 static struct platform_device *devices[] __initdata = {
59 &msm_device_uart3,
60 &msm_device_smd,
61 &msm_device_nand,
62 &msm_device_hsusb,
63 &msm_device_i2c,
64 &smc91x_device,
65 };
66
67 extern struct sys_timer msm_timer;
68
69 static void __init halibut_init_irq(void)
70 {
71 msm_init_irq();
72 }
73
74 static void __init halibut_init(void)
75 {
76 platform_add_devices(devices, ARRAY_SIZE(devices));
77 }
78
79 static void __init halibut_map_io(void)
80 {
81 msm_map_common_io();
82 msm_clock_init();
83 }
84
85 MACHINE_START(HALIBUT, "Halibut Board (QCT SURF7200A)")
86 .boot_params = 0x10000100,
87 .map_io = halibut_map_io,
88 .init_irq = halibut_init_irq,
89 .init_machine = halibut_init,
90 .timer = &msm_timer,
91 MACHINE_END