blob: 245884319d2e30edc28fd00ee5e3e512ef4cf4f8 [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 Kondeti5155e2c72010-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
Ivan T. Ivanov5146d772013-12-30 13:15:27 -080033#include <mach/clk.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"
Stephen Boyd4312a7e2012-09-05 12:28:52 -070041#include "common.h"
Daniel Walker90e37c52010-05-12 14:24:15 -070042
Laura Abbott1c2f87c2014-04-13 22:54:58 +010043static void __init msm7x30_fixup(struct tag *tag, char **cmdline)
Stephen Boyd9e775ad2011-08-12 00:14:28 +010044{
45 for (; tag->hdr.size; tag = tag_next(tag))
46 if (tag->hdr.tag == ATAG_MEM && tag->u.mem.start == 0x200000) {
47 tag->u.mem.start = 0;
48 tag->u.mem.size += SZ_2M;
49 }
50}
51
52static void __init msm7x30_reserve(void)
53{
54 memblock_remove(0x0, SZ_2M);
55}
56
Pavankumar Kondeti5155e2c72010-12-08 13:37:08 +053057static int hsusb_phy_init_seq[] = {
58 0x30, 0x32, /* Enable and set Pre-Emphasis Depth to 20% */
59 0x02, 0x36, /* Disable CDR Auto Reset feature */
60 -1
61};
62
Ivan T. Ivanov5146d772013-12-30 13:15:27 -080063static int hsusb_link_clk_reset(struct clk *link_clk, bool assert)
64{
65 int ret;
66
67 if (assert) {
68 ret = clk_reset(link_clk, CLK_RESET_ASSERT);
69 if (ret)
70 pr_err("usb hs_clk assert failed\n");
71 } else {
72 ret = clk_reset(link_clk, CLK_RESET_DEASSERT);
73 if (ret)
74 pr_err("usb hs_clk deassert failed\n");
75 }
76 return ret;
77}
78
79static int hsusb_phy_clk_reset(struct clk *phy_clk)
80{
81 int ret;
82
83 ret = clk_reset(phy_clk, CLK_RESET_ASSERT);
84 if (ret) {
85 pr_err("usb phy clk assert failed\n");
86 return ret;
87 }
88 usleep_range(10000, 12000);
89 ret = clk_reset(phy_clk, CLK_RESET_DEASSERT);
90 if (ret)
91 pr_err("usb phy clk deassert failed\n");
92 return ret;
93}
94
Pavankumar Kondeti5155e2c72010-12-08 13:37:08 +053095static struct msm_otg_platform_data msm_otg_pdata = {
96 .phy_init_seq = hsusb_phy_init_seq,
Ivan T. Ivanov971232c2014-04-28 16:34:11 +030097 .mode = USB_DR_MODE_PERIPHERAL,
Pavankumar Kondeti5155e2c72010-12-08 13:37:08 +053098 .otg_control = OTG_PHY_CONTROL,
Ivan T. Ivanov5146d772013-12-30 13:15:27 -080099 .link_clk_reset = hsusb_link_clk_reset,
100 .phy_clk_reset = hsusb_phy_clk_reset,
Pavankumar Kondeti5155e2c72010-12-08 13:37:08 +0530101};
102
Dima Zavinba5499e2011-01-10 11:00:30 -0800103struct msm_gpiomux_config msm_gpiomux_configs[GPIOMUX_NGPIOS] = {
104#ifdef CONFIG_SERIAL_MSM_CONSOLE
105 [49] = { /* UART2 RFR */
106 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
107 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
108 },
109 [50] = { /* UART2 CTS */
110 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
111 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
112 },
113 [51] = { /* UART2 RX */
114 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
115 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
116 },
117 [52] = { /* UART2 TX */
118 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
119 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
120 },
121#endif
122};
123
Daniel Walker8d747cd2010-02-25 11:37:43 -0800124static struct platform_device *devices[] __initdata = {
Stephen Boyd421faca2013-06-17 10:43:18 -0700125 &msm_clock_7x30,
Stephen Boyd7bce6962013-03-04 15:08:27 -0800126 &msm_device_gpio_7x30,
Daniel Walker90e37c52010-05-12 14:24:15 -0700127#if defined(CONFIG_SERIAL_MSM) || defined(CONFIG_MSM_SERIAL_DEBUGGER)
128 &msm_device_uart2,
129#endif
Niranjana Vishwanathapuraa8855e92010-10-06 13:52:10 -0700130 &msm_device_smd,
Pavankumar Kondeti5155e2c72010-12-08 13:37:08 +0530131 &msm_device_otg,
132 &msm_device_hsusb,
133 &msm_device_hsusb_host,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800134};
135
136static void __init msm7x30_init_irq(void)
137{
138 msm_init_irq();
139}
140
Daniel Walker8d747cd2010-02-25 11:37:43 -0800141static void __init msm7x30_init(void)
142{
Pavankumar Kondeti5155e2c72010-12-08 13:37:08 +0530143 msm_device_otg.dev.platform_data = &msm_otg_pdata;
144 msm_device_hsusb.dev.parent = &msm_device_otg.dev;
145 msm_device_hsusb_host.dev.parent = &msm_device_otg.dev;
146
Daniel Walker8d747cd2010-02-25 11:37:43 -0800147 platform_add_devices(devices, ARRAY_SIZE(devices));
Daniel Walker8d747cd2010-02-25 11:37:43 -0800148}
149
150static void __init msm7x30_map_io(void)
151{
Daniel Walker8d747cd2010-02-25 11:37:43 -0800152 msm_map_msm7x30_io();
Daniel Walker8d747cd2010-02-25 11:37:43 -0800153}
154
Shawn Guoc633c532012-05-02 15:53:20 +0800155static void __init msm7x30_init_late(void)
156{
157 smd_debugfs_init();
158}
159
Daniel Walker8d747cd2010-02-25 11:37:43 -0800160MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF")
Nicolas Pitref631dd42011-07-05 22:38:14 -0400161 .atag_offset = 0x100,
Stephen Boyd9e775ad2011-08-12 00:14:28 +0100162 .fixup = msm7x30_fixup,
163 .reserve = msm7x30_reserve,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800164 .map_io = msm7x30_map_io,
165 .init_irq = msm7x30_init_irq,
166 .init_machine = msm7x30_init,
Shawn Guoc633c532012-05-02 15:53:20 +0800167 .init_late = msm7x30_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700168 .init_time = msm7x30_timer_init,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800169MACHINE_END
170
171MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA")
Nicolas Pitref631dd42011-07-05 22:38:14 -0400172 .atag_offset = 0x100,
Stephen Boyd9e775ad2011-08-12 00:14:28 +0100173 .fixup = msm7x30_fixup,
174 .reserve = msm7x30_reserve,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800175 .map_io = msm7x30_map_io,
176 .init_irq = msm7x30_init_irq,
177 .init_machine = msm7x30_init,
Shawn Guoc633c532012-05-02 15:53:20 +0800178 .init_late = msm7x30_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700179 .init_time = msm7x30_timer_init,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800180MACHINE_END
181
182MACHINE_START(MSM7X30_FLUID, "QCT MSM7X30 FLUID")
Nicolas Pitref631dd42011-07-05 22:38:14 -0400183 .atag_offset = 0x100,
Stephen Boyd9e775ad2011-08-12 00:14:28 +0100184 .fixup = msm7x30_fixup,
185 .reserve = msm7x30_reserve,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800186 .map_io = msm7x30_map_io,
187 .init_irq = msm7x30_init_irq,
188 .init_machine = msm7x30_init,
Shawn Guoc633c532012-05-02 15:53:20 +0800189 .init_late = msm7x30_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700190 .init_time = msm7x30_timer_init,
Daniel Walker8d747cd2010-02-25 11:37:43 -0800191MACHINE_END