1 /* linux/arch/arm/mach-msm/board-halibut.c
3 * Copyright (C) 2007 Google, Inc.
4 * Author: Brian Swetland <swetland@google.com>
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.
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.
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/platform_device.h>
20 #include <linux/input.h>
22 #include <linux/delay.h>
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>
30 #include <mach/board.h>
31 #include <mach/msm_iomap.h>
33 #include <linux/mtd/nand.h>
34 #include <linux/mtd/partitions.h>
38 static struct resource smc91x_resources[] = {
42 .flags = IORESOURCE_MEM,
45 .start = MSM_GPIO_TO_INT(49),
46 .end = MSM_GPIO_TO_INT(49),
47 .flags = IORESOURCE_IRQ,
51 static struct platform_device smc91x_device = {
54 .num_resources = ARRAY_SIZE(smc91x_resources),
55 .resource = smc91x_resources,
58 static struct platform_device *devices[] __initdata = {
67 extern struct sys_timer msm_timer;
69 static void __init halibut_init_irq(void)
74 static void __init halibut_init(void)
76 platform_add_devices(devices, ARRAY_SIZE(devices));
79 static void __init halibut_map_io(void)
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,