blob: 0707cc041f27db04fa491c5ddffe7e4949aae86b [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>
Pavankumar Kondeti5155e2c2010-12-08 13:37:08 +053025#include <linux/usb/msm_hsusb.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080026
27#include <asm/mach-types.h>
28#include <asm/mach/arch.h>
29#include <asm/setup.h>
30
31#include <mach/gpio.h>
32#include <mach/board.h>
Daniel Walker8d747cd2010-02-25 11:37:43 -080033#include <mach/memory.h>
34#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
Pavankumar Kondeti5155e2c2010-12-08 13:37:08 +053044static int hsusb_phy_init_seq[] = {
45 0x30, 0x32, /* Enable and set Pre-Emphasis Depth to 20% */
46 0x02, 0x36, /* Disable CDR Auto Reset feature */
47 -1
48};
49
50static struct msm_otg_platform_data msm_otg_pdata = {
51 .phy_init_seq = hsusb_phy_init_seq,
52 .mode = USB_PERIPHERAL,
53 .otg_control = OTG_PHY_CONTROL,
54};
55
Dima Zavinba5499e2011-01-10 11:00:30 -080056struct msm_gpiomux_config msm_gpiomux_configs[GPIOMUX_NGPIOS] = {
57#ifdef CONFIG_SERIAL_MSM_CONSOLE
58 [49] = { /* UART2 RFR */
59 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
60 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
61 },
62 [50] = { /* UART2 CTS */
63 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
64 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
65 },
66 [51] = { /* UART2 RX */
67 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
68 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
69 },
70 [52] = { /* UART2 TX */
71 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
72 GPIOMUX_FUNC_2 | GPIOMUX_VALID,
73 },
74#endif
75};
76
Daniel Walker8d747cd2010-02-25 11:37:43 -080077static struct platform_device *devices[] __initdata = {
Daniel Walker90e37c52010-05-12 14:24:15 -070078#if defined(CONFIG_SERIAL_MSM) || defined(CONFIG_MSM_SERIAL_DEBUGGER)
79 &msm_device_uart2,
80#endif
Niranjana Vishwanathapuraa8855e92010-10-06 13:52:10 -070081 &msm_device_smd,
Pavankumar Kondeti5155e2c2010-12-08 13:37:08 +053082 &msm_device_otg,
83 &msm_device_hsusb,
84 &msm_device_hsusb_host,
Daniel Walker8d747cd2010-02-25 11:37:43 -080085};
86
87static void __init msm7x30_init_irq(void)
88{
89 msm_init_irq();
90}
91
Daniel Walker8d747cd2010-02-25 11:37:43 -080092static void __init msm7x30_init(void)
93{
Pavankumar Kondeti5155e2c2010-12-08 13:37:08 +053094 msm_device_otg.dev.platform_data = &msm_otg_pdata;
95 msm_device_hsusb.dev.parent = &msm_device_otg.dev;
96 msm_device_hsusb_host.dev.parent = &msm_device_otg.dev;
97
Daniel Walker8d747cd2010-02-25 11:37:43 -080098 platform_add_devices(devices, ARRAY_SIZE(devices));
Daniel Walker8d747cd2010-02-25 11:37:43 -080099}
100
101static void __init msm7x30_map_io(void)
102{
Daniel Walker8d747cd2010-02-25 11:37:43 -0800103 msm_map_msm7x30_io();
Daniel Walker8d747cd2010-02-25 11:37:43 -0800104 msm_clock_init(msm_clocks_7x30, msm_num_clocks_7x30);
105}
106
107MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF")
108#ifdef CONFIG_MSM_DEBUG_UART
Daniel Walker8d747cd2010-02-25 11:37:43 -0800109#endif
110 .boot_params = PHYS_OFFSET + 0x100,
111 .map_io = msm7x30_map_io,
112 .init_irq = msm7x30_init_irq,
113 .init_machine = msm7x30_init,
114 .timer = &msm_timer,
115MACHINE_END
116
117MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA")
118#ifdef CONFIG_MSM_DEBUG_UART
Daniel Walker8d747cd2010-02-25 11:37:43 -0800119#endif
120 .boot_params = PHYS_OFFSET + 0x100,
121 .map_io = msm7x30_map_io,
122 .init_irq = msm7x30_init_irq,
123 .init_machine = msm7x30_init,
124 .timer = &msm_timer,
125MACHINE_END
126
127MACHINE_START(MSM7X30_FLUID, "QCT MSM7X30 FLUID")
128#ifdef CONFIG_MSM_DEBUG_UART
Daniel Walker8d747cd2010-02-25 11:37:43 -0800129#endif
130 .boot_params = PHYS_OFFSET + 0x100,
131 .map_io = msm7x30_map_io,
132 .init_irq = msm7x30_init_irq,
133 .init_machine = msm7x30_init,
134 .timer = &msm_timer,
135MACHINE_END