Merge branch 'next-footbridge' of git://aeryn.fluff.org.uk/bjdooks/linux
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / arm / mach-msm / board-halibut.c
CommitLineData
9e73c84c
BS
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>
fced80c7
RK
21#include <linux/io.h>
22#include <linux/delay.h>
9e73c84c 23
a09e64fb 24#include <mach/hardware.h>
9e73c84c
BS
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
a09e64fb
RK
30#include <mach/board.h>
31#include <mach/msm_iomap.h>
9e73c84c 32
9e73c84c
BS
33#include <linux/mtd/nand.h>
34#include <linux/mtd/partitions.h>
35
bcc0f6af
BS
36#include "devices.h"
37
9e73c84c
BS
38static 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
51static struct platform_device smc91x_device = {
52 .name = "smc91x",
53 .id = 0,
54 .num_resources = ARRAY_SIZE(smc91x_resources),
55 .resource = smc91x_resources,
56};
57
9e73c84c 58static struct platform_device *devices[] __initdata = {
bcc0f6af
BS
59 &msm_device_uart3,
60 &msm_device_smd,
61 &msm_device_nand,
62 &msm_device_hsusb,
63 &msm_device_i2c,
9e73c84c
BS
64 &smc91x_device,
65};
66
67extern struct sys_timer msm_timer;
68
69static void __init halibut_init_irq(void)
70{
71 msm_init_irq();
72}
73
74static void __init halibut_init(void)
75{
76 platform_add_devices(devices, ARRAY_SIZE(devices));
9e73c84c
BS
77}
78
79static void __init halibut_map_io(void)
80{
81 msm_map_common_io();
600f7cfe 82 msm_clock_init();
9e73c84c
BS
83}
84
85MACHINE_START(HALIBUT, "Halibut Board (QCT SURF7200A)")
9e73c84c
BS
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,
91MACHINE_END