blob: 76d5a22a6984ada8cc9d2f99ee7d2d2a995e8c5c [file] [log] [blame]
Daniel Walker8d747cd2010-02-25 11:37:43 -08001/* Copyright (c) 2009-2010, Code Aurora Forum. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15 * 02110-1301, USA.
16 */
17
18#include <linux/kernel.h>
19#include <linux/irq.h>
20#include <linux/gpio.h>
21#include <linux/platform_device.h>
22#include <linux/delay.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080023#include <linux/io.h>
24#include <linux/smsc911x.h>
25
26#include <asm/mach-types.h>
27#include <asm/mach/arch.h>
28#include <asm/setup.h>
29
30#include <mach/gpio.h>
31#include <mach/board.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080032#include <mach/memory.h>
33#include <mach/msm_iomap.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080034#include <mach/dma.h>
35
36#include <mach/vreg.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080037#include "devices.h"
Daniel Walker90e37c52010-05-12 14:24:15 -070038#include "proc_comm.h"
Daniel Walker8d747cd2010-02-25 11:37:43 -080039
Daniel Walker90e37c52010-05-12 14:24:15 -070040extern struct sys_timer msm_timer;
41
Daniel Walker8d747cd2010-02-25 11:37:43 -080042static struct platform_device *devices[] __initdata = {
Daniel Walker90e37c52010-05-12 14:24:15 -070043#if defined(CONFIG_SERIAL_MSM) || defined(CONFIG_MSM_SERIAL_DEBUGGER)
44 &msm_device_uart2,
45#endif
Niranjana Vishwanathapuraa8855e92010-10-06 13:52:10 -070046 &msm_device_smd,
Daniel Walker8d747cd2010-02-25 11:37:43 -080047};
48
49static void __init msm7x30_init_irq(void)
50{
51 msm_init_irq();
52}
53
Daniel Walker8d747cd2010-02-25 11:37:43 -080054static void __init msm7x30_init(void)
55{
Daniel Walker8d747cd2010-02-25 11:37:43 -080056 platform_add_devices(devices, ARRAY_SIZE(devices));
Daniel Walker8d747cd2010-02-25 11:37:43 -080057}
58
59static void __init msm7x30_map_io(void)
60{
Daniel Walker8d747cd2010-02-25 11:37:43 -080061 msm_map_msm7x30_io();
Daniel Walker8d747cd2010-02-25 11:37:43 -080062 msm_clock_init(msm_clocks_7x30, msm_num_clocks_7x30);
63}
64
65MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF")
66#ifdef CONFIG_MSM_DEBUG_UART
67 .phys_io = MSM_DEBUG_UART_PHYS,
68 .io_pg_offst = ((MSM_DEBUG_UART_BASE) >> 18) & 0xfffc,
69#endif
70 .boot_params = PHYS_OFFSET + 0x100,
71 .map_io = msm7x30_map_io,
72 .init_irq = msm7x30_init_irq,
73 .init_machine = msm7x30_init,
74 .timer = &msm_timer,
75MACHINE_END
76
77MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA")
78#ifdef CONFIG_MSM_DEBUG_UART
79 .phys_io = MSM_DEBUG_UART_PHYS,
80 .io_pg_offst = ((MSM_DEBUG_UART_BASE) >> 18) & 0xfffc,
81#endif
82 .boot_params = PHYS_OFFSET + 0x100,
83 .map_io = msm7x30_map_io,
84 .init_irq = msm7x30_init_irq,
85 .init_machine = msm7x30_init,
86 .timer = &msm_timer,
87MACHINE_END
88
89MACHINE_START(MSM7X30_FLUID, "QCT MSM7X30 FLUID")
90#ifdef CONFIG_MSM_DEBUG_UART
91 .phys_io = MSM_DEBUG_UART_PHYS,
92 .io_pg_offst = ((MSM_DEBUG_UART_BASE) >> 18) & 0xfffc,
93#endif
94 .boot_params = PHYS_OFFSET + 0x100,
95 .map_io = msm7x30_map_io,
96 .init_irq = msm7x30_init_irq,
97 .init_machine = msm7x30_init,
98 .timer = &msm_timer,
99MACHINE_END