blob: 12863f7914347d3feacf39bae8301716ce407972 [file] [log] [blame]
Sahitya Tummala8b4d95f2011-01-18 11:22:50 +05301/* Copyright (c) 2009-2011, Code Aurora Forum. All rights reserved.
Daniel Walkera32d2fe2010-02-25 11:38:39 -08002 *
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>
Daniel Walkera32d2fe2010-02-25 11:38:39 -080022#include <linux/delay.h>
Pavankumar Kondeti7032d512010-12-08 13:37:07 +053023#include <linux/usb/msm_hsusb.h>
Sahitya Tummala8b4d95f2011-01-18 11:22:50 +053024#include <linux/err.h>
Daniel Walkera32d2fe2010-02-25 11:38:39 -080025
26#include <asm/mach-types.h>
27#include <asm/mach/arch.h>
28#include <asm/io.h>
29#include <asm/setup.h>
30
Daniel Walkera32d2fe2010-02-25 11:38:39 -080031#include <mach/board.h>
Daniel Walkerd1c0d432010-05-05 07:17:31 -070032#include <mach/irqs.h>
33#include <mach/sirc.h>
34#include <mach/gpio.h>
Sahitya Tummala8b4d95f2011-01-18 11:22:50 +053035#include <mach/vreg.h>
36#include <mach/mmc.h>
Daniel Walkera32d2fe2010-02-25 11:38:39 -080037
38#include "devices.h"
Daniel Walkera32d2fe2010-02-25 11:38:39 -080039
Daniel Walkerd1c0d432010-05-05 07:17:31 -070040extern struct sys_timer msm_timer;
Daniel Walkera32d2fe2010-02-25 11:38:39 -080041
Gregory Bean5d73c532010-09-29 13:46:45 -070042static const resource_size_t qsd8x50_surf_smc91x_base __initdata = 0x70000300;
43static const unsigned qsd8x50_surf_smc91x_gpio __initdata = 156;
44
45/* Leave smc91x resources empty here, as we'll fill them in
46 * at run-time: they vary from board to board, and the true
47 * configuration won't be known until boot.
48 */
49static struct resource smc91x_resources[] __initdata = {
50 [0] = {
51 .flags = IORESOURCE_MEM,
52 },
53 [1] = {
54 .flags = IORESOURCE_IRQ,
55 },
56};
57
58static struct platform_device smc91x_device __initdata = {
59 .name = "smc91x",
60 .id = 0,
61 .num_resources = ARRAY_SIZE(smc91x_resources),
62 .resource = smc91x_resources,
63};
64
65static int __init msm_init_smc91x(void)
66{
67 if (machine_is_qsd8x50_surf()) {
68 smc91x_resources[0].start = qsd8x50_surf_smc91x_base;
69 smc91x_resources[0].end = qsd8x50_surf_smc91x_base + 0xff;
70 smc91x_resources[1].start =
71 gpio_to_irq(qsd8x50_surf_smc91x_gpio);
72 smc91x_resources[1].end =
73 gpio_to_irq(qsd8x50_surf_smc91x_gpio);
74 platform_device_register(&smc91x_device);
75 }
76
77 return 0;
78}
79module_init(msm_init_smc91x);
80
Pavankumar Kondeti7032d512010-12-08 13:37:07 +053081static int hsusb_phy_init_seq[] = {
82 0x08, 0x31, /* Increase HS Driver Amplitude */
83 0x20, 0x32, /* Enable and set Pre-Emphasis Depth to 10% */
84 -1
85};
86
87static struct msm_otg_platform_data msm_otg_pdata = {
88 .phy_init_seq = hsusb_phy_init_seq,
89 .mode = USB_PERIPHERAL,
90 .otg_control = OTG_PHY_CONTROL,
91};
92
Daniel Walkera32d2fe2010-02-25 11:38:39 -080093static struct platform_device *devices[] __initdata = {
Daniel Walkerd1c0d432010-05-05 07:17:31 -070094 &msm_device_uart3,
Niranjana Vishwanathapura88b52272010-10-06 13:52:11 -070095 &msm_device_smd,
Pavankumar Kondeti7032d512010-12-08 13:37:07 +053096 &msm_device_otg,
97 &msm_device_hsusb,
98 &msm_device_hsusb_host,
Daniel Walkera32d2fe2010-02-25 11:38:39 -080099};
100
Sahitya Tummala8b4d95f2011-01-18 11:22:50 +0530101static struct msm_mmc_gpio sdc1_gpio_cfg[] = {
102 {51, "sdc1_dat_3"},
103 {52, "sdc1_dat_2"},
104 {53, "sdc1_dat_1"},
105 {54, "sdc1_dat_0"},
106 {55, "sdc1_cmd"},
107 {56, "sdc1_clk"}
108};
109
110static struct vreg *vreg_mmc;
111static unsigned long vreg_sts;
112
113static uint32_t msm_sdcc_setup_power(struct device *dv, unsigned int vdd)
114{
115 int rc = 0;
116 struct platform_device *pdev;
117
118 pdev = container_of(dv, struct platform_device, dev);
119
120 if (vdd == 0) {
121 if (!vreg_sts)
122 return 0;
123
124 clear_bit(pdev->id, &vreg_sts);
125
126 if (!vreg_sts) {
127 rc = vreg_disable(vreg_mmc);
128 if (rc)
129 pr_err("vreg_mmc disable failed for slot "
130 "%d: %d\n", pdev->id, rc);
131 }
132 return 0;
133 }
134
135 if (!vreg_sts) {
136 rc = vreg_set_level(vreg_mmc, 2900);
137 if (rc)
138 pr_err("vreg_mmc set level failed for slot %d: %d\n",
139 pdev->id, rc);
140 rc = vreg_enable(vreg_mmc);
141 if (rc)
142 pr_err("vreg_mmc enable failed for slot %d: %d\n",
143 pdev->id, rc);
144 }
145 set_bit(pdev->id, &vreg_sts);
146 return 0;
147}
148
149static struct msm_mmc_gpio_data sdc1_gpio = {
150 .gpio = sdc1_gpio_cfg,
151 .size = ARRAY_SIZE(sdc1_gpio_cfg),
152};
153
154static struct msm_mmc_platform_data qsd8x50_sdc1_data = {
155 .ocr_mask = MMC_VDD_27_28 | MMC_VDD_28_29,
156 .translate_vdd = msm_sdcc_setup_power,
157 .gpio_data = &sdc1_gpio,
158};
159
160static void __init qsd8x50_init_mmc(void)
161{
162 if (machine_is_qsd8x50_ffa() || machine_is_qsd8x50a_ffa())
163 vreg_mmc = vreg_get(NULL, "gp6");
164 else
165 vreg_mmc = vreg_get(NULL, "gp5");
166
167 if (IS_ERR(vreg_mmc)) {
168 pr_err("vreg get for vreg_mmc failed (%ld)\n",
169 PTR_ERR(vreg_mmc));
170 return;
171 }
172
173 msm_add_sdcc(1, &qsd8x50_sdc1_data, 0, 0);
174}
175
Daniel Walkera32d2fe2010-02-25 11:38:39 -0800176static void __init qsd8x50_map_io(void)
177{
Daniel Walkera32d2fe2010-02-25 11:38:39 -0800178 msm_map_qsd8x50_io();
179 msm_clock_init(msm_clocks_8x50, msm_num_clocks_8x50);
180}
181
Daniel Walkerd1c0d432010-05-05 07:17:31 -0700182static void __init qsd8x50_init_irq(void)
183{
184 msm_init_irq();
185 msm_init_sirc();
186}
187
188static void __init qsd8x50_init(void)
189{
Pavankumar Kondeti7032d512010-12-08 13:37:07 +0530190 msm_device_otg.dev.platform_data = &msm_otg_pdata;
191 msm_device_hsusb.dev.parent = &msm_device_otg.dev;
192 msm_device_hsusb_host.dev.parent = &msm_device_otg.dev;
Daniel Walkerd1c0d432010-05-05 07:17:31 -0700193 platform_add_devices(devices, ARRAY_SIZE(devices));
Sahitya Tummala8b4d95f2011-01-18 11:22:50 +0530194 qsd8x50_init_mmc();
Daniel Walkerd1c0d432010-05-05 07:17:31 -0700195}
196
Daniel Walkera32d2fe2010-02-25 11:38:39 -0800197MACHINE_START(QSD8X50_SURF, "QCT QSD8X50 SURF")
198#ifdef CONFIG_MSM_DEBUG_UART
Daniel Walkera32d2fe2010-02-25 11:38:39 -0800199#endif
200 .boot_params = PHYS_OFFSET + 0x100,
201 .map_io = qsd8x50_map_io,
202 .init_irq = qsd8x50_init_irq,
203 .init_machine = qsd8x50_init,
204 .timer = &msm_timer,
205MACHINE_END
206
Daniel Walkerd1c0d432010-05-05 07:17:31 -0700207MACHINE_START(QSD8X50A_ST1_5, "QCT QSD8X50A ST1.5")
Daniel Walkera32d2fe2010-02-25 11:38:39 -0800208#ifdef CONFIG_MSM_DEBUG_UART
Daniel Walkera32d2fe2010-02-25 11:38:39 -0800209#endif
210 .boot_params = PHYS_OFFSET + 0x100,
211 .map_io = qsd8x50_map_io,
212 .init_irq = qsd8x50_init_irq,
213 .init_machine = qsd8x50_init,
214 .timer = &msm_timer,
215MACHINE_END