blob: db81ed531031354b7547c3e48996af1845202c94 [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>
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>
Pavankumar Kondeti5155e2c2010-12-08 13:37:08 +053025#include <linux/usb/msm_hsusb.h>
Stephen Boydbd323442011-02-23 09:37:42 -080026#include <linux/clkdev.h>
Stephen Boyd9e775ad2011-08-12 00:14:28 +010027#include <linux/memblock.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080028
29#include <asm/mach-types.h>
30#include <asm/mach/arch.h>
Russell Kingf4117ac2011-01-04 18:07:14 +000031#include <asm/memory.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080032#include <asm/setup.h>
33
Daniel Walker8d747cd2010-02-25 11:37:43 -080034#include <mach/board.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080035#include <mach/msm_iomap.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080036#include <mach/dma.h>
37
38#include <mach/vreg.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080039#include "devices.h"
Dima Zavinba5499e2011-01-10 11:00:30 -080040#include "gpiomux.h"
Daniel Walker90e37c52010-05-12 14:24:15 -070041#include "proc_comm.h"
Daniel Walker8d747cd2010-02-25 11:37:43 -080042
Daniel Walker90e37c52010-05-12 14:24:15 -070043extern struct sys_timer msm_timer;
44
Stephen Boyd47a67702011-10-25 09:35:19 -070045static void __init msm7x30_fixup(struct tag *tag, char **cmdline,
46 struct meminfo *mi)
Stephen Boyd9e775ad2011-08-12 00:14:28 +010047{
48 for (; tag->hdr.size; tag = tag_next(tag))
49 if (tag->hdr.tag == ATAG_MEM && tag->u.mem.start == 0x200000) {
50 tag->u.mem.start = 0;
51 tag->u.mem.size += SZ_2M;
52 }
53}
54
55static void __init msm7x30_reserve(void)
56{
57 memblock_remove(0x0, SZ_2M);
58}
59
Pavankumar Kondeti5155e2c2010-12-08 13:37:08 +053060static int hsusb_phy_init_seq[] = {
61 0x30, 0x32, /* Enable and set Pre-Emphasis Depth to 20% */
62 0x02, 0x36, /* Disable CDR Auto Reset feature */
63 -1
64};
65
66static struct msm_otg_platform_data msm_otg_pdata = {
67 .phy_init_seq = hsusb_phy_init_seq,
68 .mode = USB_PERIPHERAL,
69 .otg_control = OTG_PHY_CONTROL,
70};
71
Dima Zavinba5499e2011-01-10 11:00:30 -080072struct msm_gpiomux_config msm_gpiomux_configs[GPIOMUX_NGPIOS] = {
73#ifdef CONFIG_SERIAL_MSM_CONSOLE
74 [49] = { /* UART2 RFR */
75 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
76 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
77 },
78 [50] = { /* UART2 CTS */
79 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
80 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
81 },
82 [51] = { /* UART2 RX */
83 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
84 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
85 },
86 [52] = { /* UART2 TX */
87 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
88 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
89 },
90#endif
91};
92
Daniel Walker8d747cd2010-02-25 11:37:43 -080093static struct platform_device *devices[] __initdata = {
Daniel Walker90e37c52010-05-12 14:24:15 -070094#if defined(CONFIG_SERIAL_MSM) || defined(CONFIG_MSM_SERIAL_DEBUGGER)
95 &msm_device_uart2,
96#endif
Niranjana Vishwanathapuraa8855e92010-10-06 13:52:10 -070097 &msm_device_smd,
Pavankumar Kondeti5155e2c2010-12-08 13:37:08 +053098 &msm_device_otg,
99 &msm_device_hsusb,
100 &msm_device_hsusb_host,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800101};
102
103static void __init msm7x30_init_irq(void)
104{
105 msm_init_irq();
106}
107
Daniel Walker8d747cd2010-02-25 11:37:43 -0800108static void __init msm7x30_init(void)
109{
Pavankumar Kondeti5155e2c2010-12-08 13:37:08 +0530110 msm_device_otg.dev.platform_data = &msm_otg_pdata;
111 msm_device_hsusb.dev.parent = &msm_device_otg.dev;
112 msm_device_hsusb_host.dev.parent = &msm_device_otg.dev;
113
Daniel Walker8d747cd2010-02-25 11:37:43 -0800114 platform_add_devices(devices, ARRAY_SIZE(devices));
Daniel Walker8d747cd2010-02-25 11:37:43 -0800115}
116
117static void __init msm7x30_map_io(void)
118{
Daniel Walker8d747cd2010-02-25 11:37:43 -0800119 msm_map_msm7x30_io();
Daniel Walker8d747cd2010-02-25 11:37:43 -0800120 msm_clock_init(msm_clocks_7x30, msm_num_clocks_7x30);
121}
122
123MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF")
Nicolas Pitref631dd42011-07-05 22:38:14 -0400124 .atag_offset = 0x100,
Stephen Boyd9e775ad2011-08-12 00:14:28 +0100125 .fixup = msm7x30_fixup,
126 .reserve = msm7x30_reserve,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800127 .map_io = msm7x30_map_io,
128 .init_irq = msm7x30_init_irq,
129 .init_machine = msm7x30_init,
130 .timer = &msm_timer,
131MACHINE_END
132
133MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA")
Nicolas Pitref631dd42011-07-05 22:38:14 -0400134 .atag_offset = 0x100,
Stephen Boyd9e775ad2011-08-12 00:14:28 +0100135 .fixup = msm7x30_fixup,
136 .reserve = msm7x30_reserve,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800137 .map_io = msm7x30_map_io,
138 .init_irq = msm7x30_init_irq,
139 .init_machine = msm7x30_init,
140 .timer = &msm_timer,
141MACHINE_END
142
143MACHINE_START(MSM7X30_FLUID, "QCT MSM7X30 FLUID")
Nicolas Pitref631dd42011-07-05 22:38:14 -0400144 .atag_offset = 0x100,
Stephen Boyd9e775ad2011-08-12 00:14:28 +0100145 .fixup = msm7x30_fixup,
146 .reserve = msm7x30_reserve,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800147 .map_io = msm7x30_map_io,
148 .init_irq = msm7x30_init_irq,
149 .init_machine = msm7x30_init,
150 .timer = &msm_timer,
151MACHINE_END