blob: a5001378135d4d3ec8615022370457a293cd14f7 [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 */
Russell King2f8163b2011-07-26 10:53:52 +010017#include <linux/gpio.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080018#include <linux/kernel.h>
19#include <linux/irq.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080020#include <linux/platform_device.h>
21#include <linux/delay.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080022#include <linux/io.h>
23#include <linux/smsc911x.h>
Pavankumar Kondeti5155e2c2010-12-08 13:37:08 +053024#include <linux/usb/msm_hsusb.h>
Stephen Boydbd323442011-02-23 09:37:42 -080025#include <linux/clkdev.h>
Stephen Boyd9e775ad2011-08-12 00:14:28 +010026#include <linux/memblock.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080027
28#include <asm/mach-types.h>
29#include <asm/mach/arch.h>
Russell Kingf4117ac2011-01-04 18:07:14 +000030#include <asm/memory.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080031#include <asm/setup.h>
32
Daniel Walker8d747cd2010-02-25 11:37:43 -080033#include <mach/board.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080034#include <mach/msm_iomap.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080035#include <mach/dma.h>
36
37#include <mach/vreg.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080038#include "devices.h"
Dima Zavinba5499e2011-01-10 11:00:30 -080039#include "gpiomux.h"
Daniel Walker90e37c52010-05-12 14:24:15 -070040#include "proc_comm.h"
Daniel Walker8d747cd2010-02-25 11:37:43 -080041
Daniel Walker90e37c52010-05-12 14:24:15 -070042extern struct sys_timer msm_timer;
43
Stephen Boyd47a67702011-10-25 09:35:19 -070044static void __init msm7x30_fixup(struct tag *tag, char **cmdline,
45 struct meminfo *mi)
Stephen Boyd9e775ad2011-08-12 00:14:28 +010046{
47 for (; tag->hdr.size; tag = tag_next(tag))
48 if (tag->hdr.tag == ATAG_MEM && tag->u.mem.start == 0x200000) {
49 tag->u.mem.start = 0;
50 tag->u.mem.size += SZ_2M;
51 }
52}
53
54static void __init msm7x30_reserve(void)
55{
56 memblock_remove(0x0, SZ_2M);
57}
58
Pavankumar Kondeti5155e2c2010-12-08 13:37:08 +053059static int hsusb_phy_init_seq[] = {
60 0x30, 0x32, /* Enable and set Pre-Emphasis Depth to 20% */
61 0x02, 0x36, /* Disable CDR Auto Reset feature */
62 -1
63};
64
65static struct msm_otg_platform_data msm_otg_pdata = {
66 .phy_init_seq = hsusb_phy_init_seq,
67 .mode = USB_PERIPHERAL,
68 .otg_control = OTG_PHY_CONTROL,
69};
70
Dima Zavinba5499e2011-01-10 11:00:30 -080071struct msm_gpiomux_config msm_gpiomux_configs[GPIOMUX_NGPIOS] = {
72#ifdef CONFIG_SERIAL_MSM_CONSOLE
73 [49] = { /* UART2 RFR */
74 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
75 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
76 },
77 [50] = { /* UART2 CTS */
78 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
79 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
80 },
81 [51] = { /* UART2 RX */
82 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
83 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
84 },
85 [52] = { /* UART2 TX */
86 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
87 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
88 },
89#endif
90};
91
Daniel Walker8d747cd2010-02-25 11:37:43 -080092static struct platform_device *devices[] __initdata = {
Daniel Walker90e37c52010-05-12 14:24:15 -070093#if defined(CONFIG_SERIAL_MSM) || defined(CONFIG_MSM_SERIAL_DEBUGGER)
94 &msm_device_uart2,
95#endif
Niranjana Vishwanathapuraa8855e92010-10-06 13:52:10 -070096 &msm_device_smd,
Pavankumar Kondeti5155e2c2010-12-08 13:37:08 +053097 &msm_device_otg,
98 &msm_device_hsusb,
99 &msm_device_hsusb_host,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800100};
101
102static void __init msm7x30_init_irq(void)
103{
104 msm_init_irq();
105}
106
Daniel Walker8d747cd2010-02-25 11:37:43 -0800107static void __init msm7x30_init(void)
108{
Pavankumar Kondeti5155e2c2010-12-08 13:37:08 +0530109 msm_device_otg.dev.platform_data = &msm_otg_pdata;
110 msm_device_hsusb.dev.parent = &msm_device_otg.dev;
111 msm_device_hsusb_host.dev.parent = &msm_device_otg.dev;
112
Daniel Walker8d747cd2010-02-25 11:37:43 -0800113 platform_add_devices(devices, ARRAY_SIZE(devices));
Daniel Walker8d747cd2010-02-25 11:37:43 -0800114}
115
116static void __init msm7x30_map_io(void)
117{
Daniel Walker8d747cd2010-02-25 11:37:43 -0800118 msm_map_msm7x30_io();
Daniel Walker8d747cd2010-02-25 11:37:43 -0800119 msm_clock_init(msm_clocks_7x30, msm_num_clocks_7x30);
120}
121
Shawn Guoc633c532012-05-02 15:53:20 +0800122static void __init msm7x30_init_late(void)
123{
124 smd_debugfs_init();
125}
126
Daniel Walker8d747cd2010-02-25 11:37:43 -0800127MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF")
Nicolas Pitref631dd42011-07-05 22:38:14 -0400128 .atag_offset = 0x100,
Stephen Boyd9e775ad2011-08-12 00:14:28 +0100129 .fixup = msm7x30_fixup,
130 .reserve = msm7x30_reserve,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800131 .map_io = msm7x30_map_io,
132 .init_irq = msm7x30_init_irq,
133 .init_machine = msm7x30_init,
Shawn Guoc633c532012-05-02 15:53:20 +0800134 .init_late = msm7x30_init_late,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800135 .timer = &msm_timer,
136MACHINE_END
137
138MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA")
Nicolas Pitref631dd42011-07-05 22:38:14 -0400139 .atag_offset = 0x100,
Stephen Boyd9e775ad2011-08-12 00:14:28 +0100140 .fixup = msm7x30_fixup,
141 .reserve = msm7x30_reserve,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800142 .map_io = msm7x30_map_io,
143 .init_irq = msm7x30_init_irq,
144 .init_machine = msm7x30_init,
Shawn Guoc633c532012-05-02 15:53:20 +0800145 .init_late = msm7x30_init_late,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800146 .timer = &msm_timer,
147MACHINE_END
148
149MACHINE_START(MSM7X30_FLUID, "QCT MSM7X30 FLUID")
Nicolas Pitref631dd42011-07-05 22:38:14 -0400150 .atag_offset = 0x100,
Stephen Boyd9e775ad2011-08-12 00:14:28 +0100151 .fixup = msm7x30_fixup,
152 .reserve = msm7x30_reserve,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800153 .map_io = msm7x30_map_io,
154 .init_irq = msm7x30_init_irq,
155 .init_machine = msm7x30_init,
Shawn Guoc633c532012-05-02 15:53:20 +0800156 .init_late = msm7x30_init_late,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800157 .timer = &msm_timer,
158MACHINE_END