Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 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> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 21 | #include <linux/io.h> |
| 22 | #include <linux/delay.h> |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 23 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 24 | #include <mach/hardware.h> |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 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 | |
Russell King | 9ce8bb5 | 2009-01-27 22:44:12 +0000 | [diff] [blame] | 30 | #include <mach/irqs.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 31 | #include <mach/board.h> |
| 32 | #include <mach/msm_iomap.h> |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 33 | |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 34 | #include <linux/mtd/nand.h> |
| 35 | #include <linux/mtd/partitions.h> |
| 36 | |
Brian Swetland | bcc0f6a | 2008-09-10 14:00:53 -0700 | [diff] [blame] | 37 | #include "devices.h" |
| 38 | |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 39 | static struct resource smc91x_resources[] = { |
| 40 | [0] = { |
| 41 | .start = 0x9C004300, |
| 42 | .end = 0x9C004400, |
| 43 | .flags = IORESOURCE_MEM, |
| 44 | }, |
| 45 | [1] = { |
| 46 | .start = MSM_GPIO_TO_INT(49), |
| 47 | .end = MSM_GPIO_TO_INT(49), |
| 48 | .flags = IORESOURCE_IRQ, |
| 49 | }, |
| 50 | }; |
| 51 | |
| 52 | static struct platform_device smc91x_device = { |
| 53 | .name = "smc91x", |
| 54 | .id = 0, |
| 55 | .num_resources = ARRAY_SIZE(smc91x_resources), |
| 56 | .resource = smc91x_resources, |
| 57 | }; |
| 58 | |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 59 | static struct platform_device *devices[] __initdata = { |
Brian Swetland | bcc0f6a | 2008-09-10 14:00:53 -0700 | [diff] [blame] | 60 | &msm_device_uart3, |
| 61 | &msm_device_smd, |
| 62 | &msm_device_nand, |
| 63 | &msm_device_hsusb, |
| 64 | &msm_device_i2c, |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 65 | &smc91x_device, |
| 66 | }; |
| 67 | |
| 68 | extern struct sys_timer msm_timer; |
| 69 | |
| 70 | static void __init halibut_init_irq(void) |
| 71 | { |
| 72 | msm_init_irq(); |
| 73 | } |
| 74 | |
| 75 | static void __init halibut_init(void) |
| 76 | { |
| 77 | platform_add_devices(devices, ARRAY_SIZE(devices)); |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | static void __init halibut_map_io(void) |
| 81 | { |
| 82 | msm_map_common_io(); |
Brian Swetland | 600f7cf | 2008-09-09 11:04:14 -0700 | [diff] [blame] | 83 | msm_clock_init(); |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | MACHINE_START(HALIBUT, "Halibut Board (QCT SURF7200A)") |
Brian Swetland | 9e73c84 | 2007-11-26 04:12:13 -0800 | [diff] [blame] | 87 | .boot_params = 0x10000100, |
| 88 | .map_io = halibut_map_io, |
| 89 | .init_irq = halibut_init_irq, |
| 90 | .init_machine = halibut_init, |
| 91 | .timer = &msm_timer, |
| 92 | MACHINE_END |