blob: 95ec7ca7a351f3bd77acbb876cfb77809a7e8be1 [file] [log] [blame]
Sravan Kumar Ambapuramb22cf4d2012-01-02 21:45:04 +05301/* Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved.
Taniya Dasc98bfbc2011-08-23 09:58:55 +05302 *
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
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/gpio_event.h>
Pankaj Kumar6f841742011-10-10 15:52:14 +053016#include <linux/usb/android.h>
Taniya Dasc98bfbc2011-08-23 09:58:55 +053017#include <linux/platform_device.h>
18#include <linux/io.h>
19#include <linux/gpio.h>
20#include <linux/mtd/nand.h>
21#include <linux/mtd/partitions.h>
22#include <linux/i2c.h>
23#include <linux/android_pmem.h>
24#include <linux/bootmem.h>
25#include <linux/mfd/marimba.h>
26#include <linux/power_supply.h>
Trilok Sonib9410792012-04-07 15:37:13 +053027#include <linux/input/rmi_platformdata.h>
28#include <linux/input/rmi_i2c.h>
29#include <linux/i2c/atmel_mxt_ts.h>
Pankaj Kumar3cec0582011-11-18 11:13:29 +053030#include <linux/regulator/consumer.h>
Chintan Pandyaf4ad4002012-02-28 19:49:03 +053031#include <linux/memblock.h>
Mohan Pallaka5afe9852012-01-12 23:12:06 +053032#include <linux/input/ft5x06_ts.h>
Siddartha Mohanadossbc2103f2012-03-20 11:41:48 -070033#include <linux/msm_adc.h>
Steve Muckle75c34ca2012-06-12 14:27:40 -070034#include <linux/regulator/msm-gpio-regulator.h>
Chintan Pandya43d0a342012-06-08 19:45:56 +053035#include <linux/ion.h>
Taniya Dasc98bfbc2011-08-23 09:58:55 +053036#include <asm/mach/mmc.h>
37#include <asm/mach-types.h>
38#include <asm/mach/arch.h>
Chintan Pandyaf4ad4002012-02-28 19:49:03 +053039#include <asm/hardware/gic.h>
Taniya Dasc98bfbc2011-08-23 09:58:55 +053040#include <mach/board.h>
41#include <mach/msm_iomap.h>
42#include <mach/msm_hsusb.h>
43#include <mach/rpc_hsusb.h>
44#include <mach/rpc_pmapp.h>
45#include <mach/usbdiag.h>
Taniya Dasc98bfbc2011-08-23 09:58:55 +053046#include <mach/msm_memtypes.h>
47#include <mach/msm_serial_hs.h>
Taniya Dasc98bfbc2011-08-23 09:58:55 +053048#include <mach/pmic.h>
49#include <mach/socinfo.h>
50#include <mach/vreg.h>
51#include <mach/rpc_pmapp.h>
52#include <mach/msm_battery.h>
53#include <mach/rpc_server_handset.h>
54#include <mach/socinfo.h>
Pankaj Kumar27c02642011-09-22 15:55:55 +053055#include "board-msm7x27a-regulator.h"
Taniya Dasc98bfbc2011-08-23 09:58:55 +053056#include "devices.h"
57#include "devices-msm7x2xa.h"
Matt Wagantall7cca4642012-02-01 16:43:24 -080058#include "pm.h"
Taniya Dasc98bfbc2011-08-23 09:58:55 +053059#include "timer.h"
Murali Nalajalaa1827842011-11-13 14:12:39 +053060#include "pm-boot.h"
Pankaj Kumar3cec0582011-11-18 11:13:29 +053061#include "board-msm7x27a-regulator.h"
Chintan Pandyacf467fc2011-12-01 17:11:11 +053062#include "board-msm7627a.h"
Taniya Dasc98bfbc2011-08-23 09:58:55 +053063
Trilok Sonib9410792012-04-07 15:37:13 +053064#define PMEM_KERNEL_EBI1_SIZE 0x3A000
Sidipotu Ashok4f1ddc92012-04-11 13:51:34 +053065#define MSM_PMEM_AUDIO_SIZE 0x1F4000
Trilok Sonib9410792012-04-07 15:37:13 +053066#define BAHAMA_SLAVE_ID_FM_REG 0x02
67#define FM_GPIO 83
68#define BT_PCM_BCLK_MODE 0x88
69#define BT_PCM_DIN_MODE 0x89
70#define BT_PCM_DOUT_MODE 0x8A
71#define BT_PCM_SYNC_MODE 0x8B
72#define FM_I2S_SD_MODE 0x8E
73#define FM_I2S_WS_MODE 0x8F
74#define FM_I2S_SCK_MODE 0x90
75#define I2C_PIN_CTL 0x15
76#define I2C_NORMAL 0x40
77
Taniya Dasc98bfbc2011-08-23 09:58:55 +053078static struct platform_device msm_wlan_ar6000_pm_device = {
79 .name = "wlan_ar6000_pm_dev",
80 .id = -1,
81};
82
Taniya Dasc98bfbc2011-08-23 09:58:55 +053083static struct msm_gpio qup_i2c_gpios_io[] = {
84 { GPIO_CFG(60, 0, GPIO_CFG_OUTPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA),
85 "qup_scl" },
86 { GPIO_CFG(61, 0, GPIO_CFG_OUTPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA),
87 "qup_sda" },
88 { GPIO_CFG(131, 0, GPIO_CFG_OUTPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA),
89 "qup_scl" },
90 { GPIO_CFG(132, 0, GPIO_CFG_OUTPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA),
91 "qup_sda" },
92};
93
94static struct msm_gpio qup_i2c_gpios_hw[] = {
95 { GPIO_CFG(60, 1, GPIO_CFG_INPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA),
96 "qup_scl" },
97 { GPIO_CFG(61, 1, GPIO_CFG_INPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA),
98 "qup_sda" },
99 { GPIO_CFG(131, 2, GPIO_CFG_INPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA),
100 "qup_scl" },
101 { GPIO_CFG(132, 2, GPIO_CFG_INPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA),
102 "qup_sda" },
103};
104
105static void gsbi_qup_i2c_gpio_config(int adap_id, int config_type)
106{
107 int rc;
108
109 if (adap_id < 0 || adap_id > 1)
110 return;
111
112 /* Each adapter gets 2 lines from the table */
113 if (config_type)
114 rc = msm_gpios_request_enable(&qup_i2c_gpios_hw[adap_id*2], 2);
115 else
116 rc = msm_gpios_request_enable(&qup_i2c_gpios_io[adap_id*2], 2);
117 if (rc < 0)
118 pr_err("QUP GPIO request/enable failed: %d\n", rc);
119}
120
121static struct msm_i2c_platform_data msm_gsbi0_qup_i2c_pdata = {
122 .clk_freq = 100000,
123 .msm_i2c_config_gpio = gsbi_qup_i2c_gpio_config,
124};
125
126static struct msm_i2c_platform_data msm_gsbi1_qup_i2c_pdata = {
127 .clk_freq = 100000,
128 .msm_i2c_config_gpio = gsbi_qup_i2c_gpio_config,
129};
130
Trilok Sonib9410792012-04-07 15:37:13 +0530131#ifdef CONFIG_ARCH_MSM7X27A
Sravan Kumar D.V.N2655b112012-08-02 19:08:30 +0530132#define MSM_PMEM_MDP_SIZE 0x1B00000
Rajeshwar Kurapaty20d7ad12012-06-22 16:11:06 +0530133#define MSM_PMEM_ADSP_SIZE 0x1200000
Chintan Pandya43d0a342012-06-08 19:45:56 +0530134
135#define MSM_ION_AUDIO_SIZE (MSM_PMEM_AUDIO_SIZE + PMEM_KERNEL_EBI1_SIZE)
136#define MSM_ION_CAMERA_SIZE MSM_PMEM_ADSP_SIZE
137#define MSM_ION_SF_SIZE MSM_PMEM_MDP_SIZE
138#define MSM_ION_HEAP_NUM 4
139#ifdef CONFIG_ION_MSM
140static struct platform_device ion_dev;
141#endif
Trilok Sonib9410792012-04-07 15:37:13 +0530142#endif
143
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530144static struct android_usb_platform_data android_usb_pdata = {
Pankaj Kumar6f841742011-10-10 15:52:14 +0530145 .update_pid_and_serial_num = usb_diag_update_pid_and_serial_num,
Rajkumar Raghupathyc9cb2052012-04-26 13:14:10 +0530146 .cdrom = 1,
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530147};
148
149static struct platform_device android_usb_device = {
150 .name = "android_usb",
151 .id = -1,
152 .dev = {
153 .platform_data = &android_usb_pdata,
154 },
155};
156
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530157#ifdef CONFIG_USB_EHCI_MSM_72K
158static void msm_hsusb_vbus_power(unsigned phy_info, int on)
159{
160 int rc = 0;
161 unsigned gpio;
162
Chintan Pandya40762702011-12-06 13:47:06 +0530163 gpio = QRD_GPIO_HOST_VBUS_EN;
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530164
165 rc = gpio_request(gpio, "i2c_host_vbus_en");
166 if (rc < 0) {
167 pr_err("failed to request %d GPIO\n", gpio);
168 return;
169 }
170 gpio_direction_output(gpio, !!on);
171 gpio_set_value_cansleep(gpio, !!on);
172 gpio_free(gpio);
173}
174
175static struct msm_usb_host_platform_data msm_usb_host_pdata = {
176 .phy_info = (USB_PHY_INTEGRATED | USB_PHY_MODEL_45NM),
177};
178
179static void __init msm7627a_init_host(void)
180{
181 msm_add_host(0, &msm_usb_host_pdata);
182}
183#endif
184
185#ifdef CONFIG_USB_MSM_OTG_72K
186static int hsusb_rpc_connect(int connect)
187{
188 if (connect)
189 return msm_hsusb_rpc_connect();
190 else
191 return msm_hsusb_rpc_close();
192}
193
Pankaj Kumar27c02642011-09-22 15:55:55 +0530194static struct regulator *reg_hsusb;
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530195static int msm_hsusb_ldo_init(int init)
196{
Pankaj Kumar27c02642011-09-22 15:55:55 +0530197 int rc = 0;
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530198
Pankaj Kumar27c02642011-09-22 15:55:55 +0530199 if (init) {
200 reg_hsusb = regulator_get(NULL, "usb");
201 if (IS_ERR(reg_hsusb)) {
202 rc = PTR_ERR(reg_hsusb);
203 pr_err("%s: could not get regulator: %d\n",
204 __func__, rc);
205 goto out;
206 }
207
208 rc = regulator_set_voltage(reg_hsusb, 3300000, 3300000);
209 if (rc) {
210 pr_err("%s: could not set voltage: %d\n",
211 __func__, rc);
212 goto reg_free;
213 }
214
215 return 0;
216 }
217 /* else fall through */
218reg_free:
219 regulator_put(reg_hsusb);
220out:
221 reg_hsusb = NULL;
222 return rc;
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530223}
224
225static int msm_hsusb_ldo_enable(int enable)
226{
227 static int ldo_status;
228
Pankaj Kumar27c02642011-09-22 15:55:55 +0530229 if (IS_ERR_OR_NULL(reg_hsusb))
230 return reg_hsusb ? PTR_ERR(reg_hsusb) : -ENODEV;
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530231
232 if (ldo_status == enable)
233 return 0;
234
235 ldo_status = enable;
236
Pankaj Kumar27c02642011-09-22 15:55:55 +0530237 return enable ?
238 regulator_enable(reg_hsusb) :
239 regulator_disable(reg_hsusb);
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530240}
241
242#ifndef CONFIG_USB_EHCI_MSM_72K
243static int msm_hsusb_pmic_notif_init(void (*callback)(int online), int init)
244{
245 int ret = 0;
246
247 if (init)
248 ret = msm_pm_app_rpc_init(callback);
249 else
250 msm_pm_app_rpc_deinit(callback);
251
252 return ret;
253}
254#endif
255
256static struct msm_otg_platform_data msm_otg_pdata = {
257#ifndef CONFIG_USB_EHCI_MSM_72K
258 .pmic_vbus_notif_init = msm_hsusb_pmic_notif_init,
259#else
260 .vbus_power = msm_hsusb_vbus_power,
261#endif
262 .rpc_connect = hsusb_rpc_connect,
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530263 .pemp_level = PRE_EMPHASIS_WITH_20_PERCENT,
264 .cdr_autoreset = CDR_AUTO_RESET_DISABLE,
265 .drv_ampl = HS_DRV_AMPLITUDE_DEFAULT,
266 .se1_gating = SE1_GATING_DISABLE,
267 .ldo_init = msm_hsusb_ldo_init,
268 .ldo_enable = msm_hsusb_ldo_enable,
269 .chg_init = hsusb_chg_init,
270 .chg_connected = hsusb_chg_connected,
271 .chg_vbus_draw = hsusb_chg_vbus_draw,
272};
273#endif
274
275static struct msm_hsusb_gadget_platform_data msm_gadget_pdata = {
276 .is_phy_status_timer_on = 1,
277};
278
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530279#ifdef CONFIG_SERIAL_MSM_HS
280static struct msm_serial_hs_platform_data msm_uart_dm1_pdata = {
281 .inject_rx_on_wakeup = 1,
282 .rx_to_inject = 0xFD,
283};
284#endif
285static struct msm_pm_platform_data msm7627a_pm_data[MSM_PM_SLEEP_MODE_NR] = {
286 [MSM_PM_SLEEP_MODE_POWER_COLLAPSE] = {
287 .idle_supported = 1,
288 .suspend_supported = 1,
289 .idle_enabled = 1,
290 .suspend_enabled = 1,
291 .latency = 16000,
292 .residency = 20000,
293 },
294 [MSM_PM_SLEEP_MODE_POWER_COLLAPSE_NO_XO_SHUTDOWN] = {
295 .idle_supported = 1,
296 .suspend_supported = 1,
297 .idle_enabled = 1,
298 .suspend_enabled = 1,
299 .latency = 12000,
300 .residency = 20000,
301 },
302 [MSM_PM_SLEEP_MODE_RAMP_DOWN_AND_WAIT_FOR_INTERRUPT] = {
303 .idle_supported = 1,
304 .suspend_supported = 1,
305 .idle_enabled = 0,
306 .suspend_enabled = 1,
307 .latency = 2000,
308 .residency = 0,
309 },
310 [MSM_PM_SLEEP_MODE_WAIT_FOR_INTERRUPT] = {
311 .idle_supported = 1,
312 .suspend_supported = 1,
313 .idle_enabled = 1,
314 .suspend_enabled = 1,
315 .latency = 2,
316 .residency = 0,
317 },
318};
319
Maheshkumar Sivasubramanianc6c55032011-10-25 16:01:32 -0600320static struct msm_pm_boot_platform_data msm_pm_boot_pdata __initdata = {
Sravan Kumar Ambapuramb22cf4d2012-01-02 21:45:04 +0530321 .mode = MSM_PM_BOOT_CONFIG_RESET_VECTOR_PHYS,
322 .p_addr = 0,
Maheshkumar Sivasubramanianc6c55032011-10-25 16:01:32 -0600323};
324
Murali Nalajala4c996be2012-03-12 17:05:41 +0530325/* 8625 PM platform data */
326static struct msm_pm_platform_data msm8625_pm_data[MSM_PM_SLEEP_MODE_NR * 2] = {
327 /* CORE0 entries */
328 [MSM_PM_MODE(0, MSM_PM_SLEEP_MODE_POWER_COLLAPSE)] = {
329 .idle_supported = 1,
330 .suspend_supported = 1,
331 .idle_enabled = 0,
332 .suspend_enabled = 0,
333 .latency = 16000,
334 .residency = 20000,
335 },
336
337 [MSM_PM_MODE(0, MSM_PM_SLEEP_MODE_POWER_COLLAPSE_NO_XO_SHUTDOWN)] = {
338 .idle_supported = 1,
339 .suspend_supported = 1,
340 .idle_enabled = 0,
341 .suspend_enabled = 0,
342 .latency = 12000,
343 .residency = 20000,
344 },
345
346 /* picked latency & redisdency values from 7x30 */
347 [MSM_PM_MODE(0, MSM_PM_SLEEP_MODE_POWER_COLLAPSE_STANDALONE)] = {
348 .idle_supported = 1,
349 .suspend_supported = 1,
350 .idle_enabled = 0,
351 .suspend_enabled = 0,
352 .latency = 500,
353 .residency = 6000,
354 },
355
356 [MSM_PM_MODE(0, MSM_PM_SLEEP_MODE_WAIT_FOR_INTERRUPT)] = {
357 .idle_supported = 1,
358 .suspend_supported = 1,
359 .idle_enabled = 1,
360 .suspend_enabled = 1,
361 .latency = 2,
362 .residency = 10,
363 },
364
365 /* picked latency & redisdency values from 7x30 */
366 [MSM_PM_MODE(1, MSM_PM_SLEEP_MODE_POWER_COLLAPSE_STANDALONE)] = {
367 .idle_supported = 1,
368 .suspend_supported = 1,
369 .idle_enabled = 0,
370 .suspend_enabled = 0,
371 .latency = 500,
372 .residency = 6000,
373 },
374
375 [MSM_PM_MODE(1, MSM_PM_SLEEP_MODE_WAIT_FOR_INTERRUPT)] = {
376 .idle_supported = 1,
377 .suspend_supported = 1,
378 .idle_enabled = 1,
379 .suspend_enabled = 1,
380 .latency = 2,
381 .residency = 10,
382 },
383
384};
385
386static struct msm_pm_boot_platform_data msm_pm_8625_boot_pdata __initdata = {
387 .mode = MSM_PM_BOOT_CONFIG_REMAP_BOOT_ADDR,
388 .v_addr = MSM_CFG_CTL_BASE,
389};
390
Trilok Sonib9410792012-04-07 15:37:13 +0530391static struct android_pmem_platform_data android_pmem_adsp_pdata = {
392 .name = "pmem_adsp",
393 .allocator_type = PMEM_ALLOCATORTYPE_BITMAP,
394 .cached = 1,
395 .memory_type = MEMTYPE_EBI1,
396};
397
398static struct platform_device android_pmem_adsp_device = {
399 .name = "android_pmem",
400 .id = 1,
401 .dev = { .platform_data = &android_pmem_adsp_pdata },
402};
403
404static unsigned pmem_mdp_size = MSM_PMEM_MDP_SIZE;
405static int __init pmem_mdp_size_setup(char *p)
406{
407 pmem_mdp_size = memparse(p, NULL);
408 return 0;
409}
410
411early_param("pmem_mdp_size", pmem_mdp_size_setup);
412
413static unsigned pmem_adsp_size = MSM_PMEM_ADSP_SIZE;
414static int __init pmem_adsp_size_setup(char *p)
415{
416 pmem_adsp_size = memparse(p, NULL);
417 return 0;
418}
419
420early_param("pmem_adsp_size", pmem_adsp_size_setup);
421
422#define SND(desc, num) { .name = #desc, .id = num }
423static struct snd_endpoint snd_endpoints_list[] = {
424 SND(HANDSET, 0),
425 SND(MONO_HEADSET, 2),
426 SND(HEADSET, 3),
427 SND(SPEAKER, 6),
428 SND(TTY_HEADSET, 8),
429 SND(TTY_VCO, 9),
430 SND(TTY_HCO, 10),
431 SND(BT, 12),
432 SND(IN_S_SADC_OUT_HANDSET, 16),
433 SND(IN_S_SADC_OUT_SPEAKER_PHONE, 25),
434 SND(FM_DIGITAL_STEREO_HEADSET, 26),
435 SND(FM_DIGITAL_SPEAKER_PHONE, 27),
436 SND(FM_DIGITAL_BT_A2DP_HEADSET, 28),
437 SND(STEREO_HEADSET_AND_SPEAKER, 31),
438 SND(CURRENT, 0x7FFFFFFE),
439 SND(FM_ANALOG_STEREO_HEADSET, 35),
440 SND(FM_ANALOG_STEREO_HEADSET_CODEC, 36),
441};
442#undef SND
443
444static struct msm_snd_endpoints msm_device_snd_endpoints = {
445 .endpoints = snd_endpoints_list,
446 .num = sizeof(snd_endpoints_list) / sizeof(struct snd_endpoint)
447};
448
449static struct platform_device msm_device_snd = {
450 .name = "msm_snd",
451 .id = -1,
452 .dev = {
453 .platform_data = &msm_device_snd_endpoints
454 },
455};
456
457#define DEC0_FORMAT ((1<<MSM_ADSP_CODEC_MP3)| \
458 (1<<MSM_ADSP_CODEC_AAC)|(1<<MSM_ADSP_CODEC_WMA)| \
459 (1<<MSM_ADSP_CODEC_WMAPRO)|(1<<MSM_ADSP_CODEC_AMRWB)| \
460 (1<<MSM_ADSP_CODEC_AMRNB)|(1<<MSM_ADSP_CODEC_WAV)| \
461 (1<<MSM_ADSP_CODEC_ADPCM)|(1<<MSM_ADSP_CODEC_YADPCM)| \
462 (1<<MSM_ADSP_CODEC_EVRC)|(1<<MSM_ADSP_CODEC_QCELP))
463#define DEC1_FORMAT ((1<<MSM_ADSP_CODEC_MP3)| \
464 (1<<MSM_ADSP_CODEC_AAC)|(1<<MSM_ADSP_CODEC_WMA)| \
465 (1<<MSM_ADSP_CODEC_WMAPRO)|(1<<MSM_ADSP_CODEC_AMRWB)| \
466 (1<<MSM_ADSP_CODEC_AMRNB)|(1<<MSM_ADSP_CODEC_WAV)| \
467 (1<<MSM_ADSP_CODEC_ADPCM)|(1<<MSM_ADSP_CODEC_YADPCM)| \
468 (1<<MSM_ADSP_CODEC_EVRC)|(1<<MSM_ADSP_CODEC_QCELP))
469#define DEC2_FORMAT ((1<<MSM_ADSP_CODEC_MP3)| \
470 (1<<MSM_ADSP_CODEC_AAC)|(1<<MSM_ADSP_CODEC_WMA)| \
471 (1<<MSM_ADSP_CODEC_WMAPRO)|(1<<MSM_ADSP_CODEC_AMRWB)| \
472 (1<<MSM_ADSP_CODEC_AMRNB)|(1<<MSM_ADSP_CODEC_WAV)| \
473 (1<<MSM_ADSP_CODEC_ADPCM)|(1<<MSM_ADSP_CODEC_YADPCM)| \
474 (1<<MSM_ADSP_CODEC_EVRC)|(1<<MSM_ADSP_CODEC_QCELP))
475#define DEC3_FORMAT ((1<<MSM_ADSP_CODEC_MP3)| \
476 (1<<MSM_ADSP_CODEC_AAC)|(1<<MSM_ADSP_CODEC_WMA)| \
477 (1<<MSM_ADSP_CODEC_WMAPRO)|(1<<MSM_ADSP_CODEC_AMRWB)| \
478 (1<<MSM_ADSP_CODEC_AMRNB)|(1<<MSM_ADSP_CODEC_WAV)| \
479 (1<<MSM_ADSP_CODEC_ADPCM)|(1<<MSM_ADSP_CODEC_YADPCM)| \
480 (1<<MSM_ADSP_CODEC_EVRC)|(1<<MSM_ADSP_CODEC_QCELP))
481#define DEC4_FORMAT (1<<MSM_ADSP_CODEC_MIDI)
482
483static unsigned int dec_concurrency_table[] = {
484 /* Audio LP */
485 (DEC0_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DMA)), 0,
486 0, 0, 0,
487
488 /* Concurrency 1 */
489 (DEC0_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
490 (DEC1_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
491 (DEC2_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
492 (DEC3_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
493 (DEC4_FORMAT),
494
495 /* Concurrency 2 */
496 (DEC0_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
497 (DEC1_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
498 (DEC2_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
499 (DEC3_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
500 (DEC4_FORMAT),
501
502 /* Concurrency 3 */
503 (DEC0_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
504 (DEC1_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
505 (DEC2_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
506 (DEC3_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)),
507 (DEC4_FORMAT),
508
509 /* Concurrency 4 */
510 (DEC0_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
511 (DEC1_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
512 (DEC2_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)),
513 (DEC3_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)),
514 (DEC4_FORMAT),
515
516 /* Concurrency 5 */
517 (DEC0_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)),
518 (DEC1_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)),
519 (DEC2_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)),
520 (DEC3_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)),
521 (DEC4_FORMAT),
522
523 /* Concurrency 6 */
Chaithanya Krishna Bacharaju72ab89b2012-05-11 14:24:04 +0530524 (DEC0_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|
525 (1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)),
526 0, 0, 0, 0,
Trilok Sonib9410792012-04-07 15:37:13 +0530527
528 /* Concurrency 7 */
529 (DEC0_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)),
530 (DEC1_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)),
531 (DEC2_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)),
532 (DEC3_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)),
533 (DEC4_FORMAT),
534};
535
536#define DEC_INFO(name, queueid, decid, nr_codec) { .module_name = name, \
537 .module_queueid = queueid, .module_decid = decid, \
538 .nr_codec_support = nr_codec}
539
540static struct msm_adspdec_info dec_info_list[] = {
541 DEC_INFO("AUDPLAY0TASK", 13, 0, 11), /* AudPlay0BitStreamCtrlQueue */
542 DEC_INFO("AUDPLAY1TASK", 14, 1, 11), /* AudPlay1BitStreamCtrlQueue */
543 DEC_INFO("AUDPLAY2TASK", 15, 2, 11), /* AudPlay2BitStreamCtrlQueue */
544 DEC_INFO("AUDPLAY3TASK", 16, 3, 11), /* AudPlay3BitStreamCtrlQueue */
545 DEC_INFO("AUDPLAY4TASK", 17, 4, 1), /* AudPlay4BitStreamCtrlQueue */
546};
547
548static struct msm_adspdec_database msm_device_adspdec_database = {
549 .num_dec = ARRAY_SIZE(dec_info_list),
550 .num_concurrency_support = (ARRAY_SIZE(dec_concurrency_table) / \
551 ARRAY_SIZE(dec_info_list)),
552 .dec_concurrency_table = dec_concurrency_table,
553 .dec_info_list = dec_info_list,
554};
555
556static struct platform_device msm_device_adspdec = {
557 .name = "msm_adspdec",
558 .id = -1,
559 .dev = {
560 .platform_data = &msm_device_adspdec_database
561 },
562};
563
564static struct android_pmem_platform_data android_pmem_audio_pdata = {
565 .name = "pmem_audio",
566 .allocator_type = PMEM_ALLOCATORTYPE_BITMAP,
567 .cached = 0,
568 .memory_type = MEMTYPE_EBI1,
569};
570
571static struct platform_device android_pmem_audio_device = {
572 .name = "android_pmem",
573 .id = 2,
574 .dev = { .platform_data = &android_pmem_audio_pdata },
575};
576
577static struct android_pmem_platform_data android_pmem_pdata = {
578 .name = "pmem",
579 .allocator_type = PMEM_ALLOCATORTYPE_BITMAP,
580 .cached = 1,
581 .memory_type = MEMTYPE_EBI1,
582};
583static struct platform_device android_pmem_device = {
584 .name = "android_pmem",
585 .id = 0,
586 .dev = { .platform_data = &android_pmem_pdata },
587};
588
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530589static u32 msm_calculate_batt_capacity(u32 current_voltage);
590
591static struct msm_psy_batt_pdata msm_psy_batt_data = {
Krishna Vankab3778112012-07-16 11:36:12 +0530592 .voltage_min_design = 3500,
Krishna Vanka9a265e12012-06-04 23:24:26 +0530593 .voltage_max_design = 4200,
Krishna Vankab3778112012-07-16 11:36:12 +0530594 .voltage_fail_safe = 3598,
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530595 .avail_chg_sources = AC_CHG | USB_CHG ,
596 .batt_technology = POWER_SUPPLY_TECHNOLOGY_LION,
597 .calculate_capacity = &msm_calculate_batt_capacity,
598};
599
600static u32 msm_calculate_batt_capacity(u32 current_voltage)
601{
602 u32 low_voltage = msm_psy_batt_data.voltage_min_design;
603 u32 high_voltage = msm_psy_batt_data.voltage_max_design;
604
Krishna Vankab3494692012-06-12 15:06:43 +0530605 if (current_voltage <= low_voltage)
606 return 0;
607 else if (current_voltage >= high_voltage)
608 return 100;
609 else
610 return (current_voltage - low_voltage) * 100
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530611 / (high_voltage - low_voltage);
612}
613
614static struct platform_device msm_batt_device = {
615 .name = "msm-battery",
616 .id = -1,
617 .dev.platform_data = &msm_psy_batt_data,
618};
619
Siddartha Mohanadossbc2103f2012-03-20 11:41:48 -0700620static char *msm_adc_surf_device_names[] = {
621 "XO_ADC",
622};
623
624static struct msm_adc_platform_data msm_adc_pdata = {
625 .dev_names = msm_adc_surf_device_names,
626 .num_adc = ARRAY_SIZE(msm_adc_surf_device_names),
627 .target_hw = MSM_8x25,
628};
629
630static struct platform_device msm_adc_device = {
631 .name = "msm_adc",
632 .id = -1,
633 .dev = {
634 .platform_data = &msm_adc_pdata,
635 },
636};
637
Trilok Soni0ed9c4a2012-05-22 17:54:32 +0530638#define GPIO_VREG_INIT(_id, _reg_name, _gpio_label, _gpio, _active_low) \
639 [GPIO_VREG_ID_##_id] = { \
640 .init_data = { \
641 .constraints = { \
642 .valid_ops_mask = REGULATOR_CHANGE_STATUS, \
643 }, \
644 .num_consumer_supplies = \
645 ARRAY_SIZE(vreg_consumers_##_id), \
646 .consumer_supplies = vreg_consumers_##_id, \
647 }, \
648 .regulator_name = _reg_name, \
649 .active_low = _active_low, \
650 .gpio_label = _gpio_label, \
651 .gpio = _gpio, \
652 }
653
654#define GPIO_VREG_ID_EXT_2P85V 0
655#define GPIO_VREG_ID_EXT_1P8V 1
656
657static struct regulator_consumer_supply vreg_consumers_EXT_2P85V[] = {
Raju P.L.S.S.S.N4d01b2c2012-06-13 20:13:27 +0530658 REGULATOR_SUPPLY("cam_ov5647_avdd", "0-006c"),
659 REGULATOR_SUPPLY("cam_ov7692_avdd", "0-0078"),
660 REGULATOR_SUPPLY("cam_ov8825_avdd", "0-000d"),
Trilok Soni0ed9c4a2012-05-22 17:54:32 +0530661 REGULATOR_SUPPLY("lcd_vdd", "mipi_dsi.1"),
662};
663
664static struct regulator_consumer_supply vreg_consumers_EXT_1P8V[] = {
Raju P.L.S.S.S.N4d01b2c2012-06-13 20:13:27 +0530665 REGULATOR_SUPPLY("cam_ov5647_vdd", "0-006c"),
666 REGULATOR_SUPPLY("cam_ov7692_vdd", "0-0078"),
667 REGULATOR_SUPPLY("cam_ov8825_vdd", "0-000d"),
Trilok Soni0ed9c4a2012-05-22 17:54:32 +0530668 REGULATOR_SUPPLY("lcd_vddi", "mipi_dsi.1"),
669};
670
671/* GPIO regulator constraints */
672static struct gpio_regulator_platform_data msm_gpio_regulator_pdata[] = {
673 GPIO_VREG_INIT(EXT_2P85V, "ext_2p85v", "ext_2p85v_en", 35, 0),
674 GPIO_VREG_INIT(EXT_1P8V, "ext_1p8v", "ext_1p8v_en", 40, 0),
675};
676
677/* GPIO regulator */
Aparna Mallavarapu336c78d2012-07-02 19:43:18 +0530678static struct platform_device qrd_vreg_gpio_ext_2p85v __devinitdata = {
Trilok Soni0ed9c4a2012-05-22 17:54:32 +0530679 .name = GPIO_REGULATOR_DEV_NAME,
680 .id = 35,
681 .dev = {
682 .platform_data =
683 &msm_gpio_regulator_pdata[GPIO_VREG_ID_EXT_2P85V],
684 },
685};
686
Aparna Mallavarapu336c78d2012-07-02 19:43:18 +0530687static struct platform_device qrd_vreg_gpio_ext_1p8v __devinitdata = {
Trilok Soni0ed9c4a2012-05-22 17:54:32 +0530688 .name = GPIO_REGULATOR_DEV_NAME,
689 .id = 40,
690 .dev = {
691 .platform_data =
692 &msm_gpio_regulator_pdata[GPIO_VREG_ID_EXT_1P8V],
693 },
694};
695
Chintan Pandyaf4ad4002012-02-28 19:49:03 +0530696static struct platform_device *common_devices[] __initdata = {
697 &android_usb_device,
Trilok Sonib9410792012-04-07 15:37:13 +0530698 &android_pmem_device,
699 &android_pmem_adsp_device,
700 &android_pmem_audio_device,
Chintan Pandyaf4ad4002012-02-28 19:49:03 +0530701 &msm_batt_device,
Trilok Sonib9410792012-04-07 15:37:13 +0530702 &msm_device_adspdec,
703 &msm_device_snd,
Chintan Pandyaf4ad4002012-02-28 19:49:03 +0530704 &asoc_msm_pcm,
705 &asoc_msm_dai0,
706 &asoc_msm_dai1,
Siddartha Mohanadossbc2103f2012-03-20 11:41:48 -0700707 &msm_adc_device,
Chintan Pandya43d0a342012-06-08 19:45:56 +0530708#ifdef CONFIG_ION_MSM
709 &ion_dev,
710#endif
Chintan Pandyaf4ad4002012-02-28 19:49:03 +0530711};
712
713static struct platform_device *qrd7627a_devices[] __initdata = {
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530714 &msm_device_dmov,
715 &msm_device_smd,
716 &msm_device_uart1,
717 &msm_device_uart_dm1,
718 &msm_gsbi0_qup_i2c_device,
719 &msm_gsbi1_qup_i2c_device,
720 &msm_device_otg,
721 &msm_device_gadget_peripheral,
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530722 &msm_kgsl_3d0,
Aparna Mallavarapu336c78d2012-07-02 19:43:18 +0530723 &qrd_vreg_gpio_ext_2p85v,
724 &qrd_vreg_gpio_ext_1p8v,
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530725};
726
Chintan Pandyab1bad0e2012-02-06 19:04:51 +0530727static struct platform_device *qrd3_devices[] __initdata = {
728 &msm_device_nand,
729};
730
Chintan Pandyaf4ad4002012-02-28 19:49:03 +0530731static struct platform_device *msm8625_evb_devices[] __initdata = {
732 &msm8625_device_dmov,
733 &msm8625_device_smd,
734 &msm8625_gsbi0_qup_i2c_device,
735 &msm8625_gsbi1_qup_i2c_device,
736 &msm8625_device_uart1,
Ram Mohan Korukonda5ee9fb82012-03-09 12:10:01 +0530737 &msm8625_device_uart_dm1,
Chintan Pandyaf4ad4002012-02-28 19:49:03 +0530738 &msm8625_device_otg,
739 &msm8625_device_gadget_peripheral,
Aparna Mallavarapud95d8fc2012-03-08 12:07:37 +0530740 &msm8625_kgsl_3d0,
Aparna Mallavarapu336c78d2012-07-02 19:43:18 +0530741 &qrd_vreg_gpio_ext_2p85v,
742 &qrd_vreg_gpio_ext_1p8v,
Chintan Pandyaf4ad4002012-02-28 19:49:03 +0530743};
744
Trilok Sonib9410792012-04-07 15:37:13 +0530745static unsigned pmem_kernel_ebi1_size = PMEM_KERNEL_EBI1_SIZE;
746static int __init pmem_kernel_ebi1_size_setup(char *p)
747{
748 pmem_kernel_ebi1_size = memparse(p, NULL);
749 return 0;
750}
751early_param("pmem_kernel_ebi1_size", pmem_kernel_ebi1_size_setup);
752
753static unsigned pmem_audio_size = MSM_PMEM_AUDIO_SIZE;
754static int __init pmem_audio_size_setup(char *p)
755{
756 pmem_audio_size = memparse(p, NULL);
757 return 0;
758}
759early_param("pmem_audio_size", pmem_audio_size_setup);
760
Chintan Pandya43d0a342012-06-08 19:45:56 +0530761#ifdef CONFIG_ION_MSM
762#ifdef CONFIG_MSM_MULTIMEDIA_USE_ION
763static struct ion_co_heap_pdata co_ion_pdata = {
764 .adjacent_mem_id = INVALID_HEAP_ID,
765 .align = PAGE_SIZE,
766};
767#endif
768
769/**
770 * These heaps are listed in the order they will be allocated.
771 * Don't swap the order unless you know what you are doing!
772 */
773static struct ion_platform_data ion_pdata = {
774 .nr = MSM_ION_HEAP_NUM,
Chintan Pandya8ce738d2012-07-27 13:21:06 +0530775 .has_outer_cache = 1,
Chintan Pandya43d0a342012-06-08 19:45:56 +0530776 .heaps = {
777 {
778 .id = ION_SYSTEM_HEAP_ID,
779 .type = ION_HEAP_TYPE_SYSTEM,
780 .name = ION_VMALLOC_HEAP_NAME,
781 },
782#ifdef CONFIG_MSM_MULTIMEDIA_USE_ION
783 /* PMEM_ADSP = CAMERA */
784 {
785 .id = ION_CAMERA_HEAP_ID,
786 .type = ION_HEAP_TYPE_CARVEOUT,
787 .name = ION_CAMERA_HEAP_NAME,
788 .size = MSM_ION_CAMERA_SIZE,
789 .memory_type = ION_EBI_TYPE,
Chintan Pandya43d0a342012-06-08 19:45:56 +0530790 .extra_data = (void *)&co_ion_pdata,
791 },
792 /* PMEM_AUDIO */
793 {
794 .id = ION_AUDIO_HEAP_ID,
795 .type = ION_HEAP_TYPE_CARVEOUT,
796 .name = ION_AUDIO_HEAP_NAME,
797 .size = MSM_ION_AUDIO_SIZE,
798 .memory_type = ION_EBI_TYPE,
Chintan Pandya43d0a342012-06-08 19:45:56 +0530799 .extra_data = (void *)&co_ion_pdata,
800 },
801 /* PMEM_MDP = SF */
802 {
803 .id = ION_SF_HEAP_ID,
804 .type = ION_HEAP_TYPE_CARVEOUT,
805 .name = ION_SF_HEAP_NAME,
806 .size = MSM_ION_SF_SIZE,
807 .memory_type = ION_EBI_TYPE,
Chintan Pandya43d0a342012-06-08 19:45:56 +0530808 .extra_data = (void *)&co_ion_pdata,
809 },
810#endif
811 }
812};
813
814static struct platform_device ion_dev = {
815 .name = "ion-msm",
816 .id = 1,
817 .dev = { .platform_data = &ion_pdata },
818};
819#endif
820
Trilok Sonib9410792012-04-07 15:37:13 +0530821static struct memtype_reserve msm7627a_reserve_table[] __initdata = {
822 [MEMTYPE_SMI] = {
823 },
824 [MEMTYPE_EBI0] = {
825 .flags = MEMTYPE_FLAGS_1M_ALIGN,
826 },
827 [MEMTYPE_EBI1] = {
828 .flags = MEMTYPE_FLAGS_1M_ALIGN,
829 },
830};
831
Taniya Das720c5c32012-05-18 14:08:14 +0530832#ifdef CONFIG_ANDROID_PMEM
Chintan Pandya43d0a342012-06-08 19:45:56 +0530833#ifndef CONFIG_MSM_MULTIMEDIA_USE_ION
Taniya Das720c5c32012-05-18 14:08:14 +0530834static struct android_pmem_platform_data *pmem_pdata_array[] __initdata = {
835 &android_pmem_adsp_pdata,
836 &android_pmem_audio_pdata,
837 &android_pmem_pdata,
838};
839#endif
Chintan Pandya43d0a342012-06-08 19:45:56 +0530840#endif
Taniya Das720c5c32012-05-18 14:08:14 +0530841
Trilok Sonib9410792012-04-07 15:37:13 +0530842static void __init size_pmem_devices(void)
843{
844#ifdef CONFIG_ANDROID_PMEM
Chintan Pandya43d0a342012-06-08 19:45:56 +0530845#ifndef CONFIG_MSM_MULTIMEDIA_USE_ION
Trilok Sonib9410792012-04-07 15:37:13 +0530846 android_pmem_adsp_pdata.size = pmem_adsp_size;
847 android_pmem_pdata.size = pmem_mdp_size;
848 android_pmem_audio_pdata.size = pmem_audio_size;
Chintan Pandya43d0a342012-06-08 19:45:56 +0530849#endif
Trilok Sonib9410792012-04-07 15:37:13 +0530850#endif
851}
852
Chintan Pandya43d0a342012-06-08 19:45:56 +0530853#ifdef CONFIG_ANDROID_PMEM
854#ifndef CONFIG_MSM_MULTIMEDIA_USE_ION
Trilok Sonib9410792012-04-07 15:37:13 +0530855static void __init reserve_memory_for(struct android_pmem_platform_data *p)
856{
857 msm7627a_reserve_table[p->memory_type].size += p->size;
858}
Chintan Pandya43d0a342012-06-08 19:45:56 +0530859#endif
860#endif
Trilok Sonib9410792012-04-07 15:37:13 +0530861
862static void __init reserve_pmem_memory(void)
863{
864#ifdef CONFIG_ANDROID_PMEM
Chintan Pandya43d0a342012-06-08 19:45:56 +0530865#ifndef CONFIG_MSM_MULTIMEDIA_USE_ION
Taniya Das720c5c32012-05-18 14:08:14 +0530866 unsigned int i;
867 for (i = 0; i < ARRAY_SIZE(pmem_pdata_array); ++i)
868 reserve_memory_for(pmem_pdata_array[i]);
869
Trilok Sonib9410792012-04-07 15:37:13 +0530870 msm7627a_reserve_table[MEMTYPE_EBI1].size += pmem_kernel_ebi1_size;
871#endif
Chintan Pandya43d0a342012-06-08 19:45:56 +0530872#endif
873}
874
875static void __init reserve_ion_memory(void)
876{
877#if defined(CONFIG_ION_MSM) && defined(CONFIG_MSM_MULTIMEDIA_USE_ION)
878 msm7627a_reserve_table[MEMTYPE_EBI1].size += MSM_ION_CAMERA_SIZE;
879 msm7627a_reserve_table[MEMTYPE_EBI1].size += MSM_ION_AUDIO_SIZE;
880 msm7627a_reserve_table[MEMTYPE_EBI1].size += MSM_ION_SF_SIZE;
881#endif
Trilok Sonib9410792012-04-07 15:37:13 +0530882}
883
884static void __init msm7627a_calculate_reserve_sizes(void)
885{
886 size_pmem_devices();
887 reserve_pmem_memory();
Chintan Pandya43d0a342012-06-08 19:45:56 +0530888 reserve_ion_memory();
Trilok Sonib9410792012-04-07 15:37:13 +0530889}
890
891static int msm7627a_paddr_to_memtype(unsigned int paddr)
892{
893 return MEMTYPE_EBI1;
894}
895
896static struct reserve_info msm7627a_reserve_info __initdata = {
897 .memtype_reserve_table = msm7627a_reserve_table,
898 .calculate_reserve_sizes = msm7627a_calculate_reserve_sizes,
899 .paddr_to_memtype = msm7627a_paddr_to_memtype,
900};
901
902static void __init msm7627a_reserve(void)
903{
904 reserve_info = &msm7627a_reserve_info;
905 msm_reserve();
906 memblock_remove(MSM8625_WARM_BOOT_PHYS, SZ_32);
907}
908
909static void __init msm8625_reserve(void)
910{
911 memblock_remove(MSM8625_SECONDARY_PHYS, SZ_8);
912 msm7627a_reserve();
913}
914
915static void msmqrd_adsp_add_pdev(void)
916{
917 int rc = 0;
918 struct rpc_board_dev *rpc_adsp_pdev;
919
920 rpc_adsp_pdev = kzalloc(sizeof(struct rpc_board_dev), GFP_KERNEL);
921 if (rpc_adsp_pdev == NULL) {
922 pr_err("%s: Memory Allocation failure\n", __func__);
923 return;
924 }
925 rpc_adsp_pdev->prog = ADSP_RPC_PROG;
926
927 if (cpu_is_msm8625())
928 rpc_adsp_pdev->pdev = msm8625_device_adsp;
929 else
930 rpc_adsp_pdev->pdev = msm_adsp_device;
931 rc = msm_rpc_add_board_dev(rpc_adsp_pdev, 1);
932 if (rc < 0) {
933 pr_err("%s: return val: %d\n", __func__, rc);
934 kfree(rpc_adsp_pdev);
935 }
936}
937
Chintan Pandyaf4ad4002012-02-28 19:49:03 +0530938static void __init msm7627a_device_i2c_init(void)
Taniya Dasc98bfbc2011-08-23 09:58:55 +0530939{
940 msm_gsbi0_qup_i2c_device.dev.platform_data = &msm_gsbi0_qup_i2c_pdata;
941 msm_gsbi1_qup_i2c_device.dev.platform_data = &msm_gsbi1_qup_i2c_pdata;
942}
943
Chintan Pandyaf4ad4002012-02-28 19:49:03 +0530944static void __init msm8625_device_i2c_init(void)
945{
946 msm8625_gsbi0_qup_i2c_device.dev.platform_data
947 = &msm_gsbi0_qup_i2c_pdata;
948 msm8625_gsbi1_qup_i2c_device.dev.platform_data
949 = &msm_gsbi1_qup_i2c_pdata;
950}
951
Pankaj Kumar3cec0582011-11-18 11:13:29 +0530952static struct platform_device msm_proccomm_regulator_dev = {
953 .name = PROCCOMM_REGULATOR_DEV_NAME,
954 .id = -1,
955 .dev = {
956 .platform_data = &msm7x27a_proccomm_regulator_data
957 }
958};
959
960static void __init msm7627a_init_regulators(void)
961{
962 int rc = platform_device_register(&msm_proccomm_regulator_dev);
963 if (rc)
964 pr_err("%s: could not register regulator device: %d\n",
965 __func__, rc);
966}
967
Santosh Sajjan374d6592012-01-19 23:16:46 +0530968static int __init msm_qrd_init_ar6000pm(void)
969{
970 msm_wlan_ar6000_pm_device.dev.platform_data = &ar600x_wlan_power;
971 return platform_device_register(&msm_wlan_ar6000_pm_device);
972}
973
Taniya Dase380a2d2012-03-09 13:02:41 +0530974static void __init msm_add_footswitch_devices(void)
975{
976 platform_add_devices(msm_footswitch_devices,
977 msm_num_footswitch_devices);
978}
979
Stephen Boyd668d7652012-04-25 11:31:01 -0700980static void __init add_platform_devices(void)
Chintan Pandyab1bad0e2012-02-06 19:04:51 +0530981{
Aparna Mallavarapu5a326242012-05-09 19:49:02 +0530982 if (machine_is_msm8625_evb() || machine_is_msm8625_qrd7()
983 || machine_is_msm8625_evt()) {
Chintan Pandyaf4ad4002012-02-28 19:49:03 +0530984 platform_add_devices(msm8625_evb_devices,
985 ARRAY_SIZE(msm8625_evb_devices));
Aparna Mallavarapubeafcbc2012-03-13 16:57:39 +0530986 platform_add_devices(qrd3_devices,
Taniya Dasbd096542012-03-15 17:43:45 +0530987 ARRAY_SIZE(qrd3_devices));
Aparna Mallavarapubeafcbc2012-03-13 16:57:39 +0530988 } else {
Chintan Pandyaf4ad4002012-02-28 19:49:03 +0530989 platform_add_devices(qrd7627a_devices,
990 ARRAY_SIZE(qrd7627a_devices));
Chintan Pandyaf4ad4002012-02-28 19:49:03 +0530991 }
Taniya Dasbd096542012-03-15 17:43:45 +0530992
Aparna Mallavarapu0b69ca22012-03-26 15:58:35 +0530993 if (machine_is_msm7627a_qrd3() || machine_is_msm7627a_evb())
Taniya Dasbd096542012-03-15 17:43:45 +0530994 platform_add_devices(qrd3_devices,
Aparna Mallavarapu0b69ca22012-03-26 15:58:35 +0530995 ARRAY_SIZE(qrd3_devices));
Taniya Dasbd096542012-03-15 17:43:45 +0530996
Chintan Pandyaf4ad4002012-02-28 19:49:03 +0530997 platform_add_devices(common_devices,
998 ARRAY_SIZE(common_devices));
Chintan Pandyab1bad0e2012-02-06 19:04:51 +0530999}
1000
Taniya Dasc98bfbc2011-08-23 09:58:55 +05301001#define UART1DM_RX_GPIO 45
Chintan Pandyaf4ad4002012-02-28 19:49:03 +05301002static void __init qrd7627a_uart1dm_config(void)
1003{
1004 msm_uart_dm1_pdata.wakeup_irq = gpio_to_irq(UART1DM_RX_GPIO);
1005 if (cpu_is_msm8625())
1006 msm8625_device_uart_dm1.dev.platform_data =
1007 &msm_uart_dm1_pdata;
1008 else
1009 msm_device_uart_dm1.dev.platform_data = &msm_uart_dm1_pdata;
1010}
1011
1012static void __init qrd7627a_otg_gadget(void)
1013{
Chintan Pandyaf4ad4002012-02-28 19:49:03 +05301014 if (cpu_is_msm8625()) {
Murali Nalajala6ff8fb12012-05-02 18:50:50 +05301015 msm_otg_pdata.swfi_latency = msm8625_pm_data
1016 [MSM_PM_SLEEP_MODE_WAIT_FOR_INTERRUPT].latency;
Chintan Pandyaf4ad4002012-02-28 19:49:03 +05301017 msm8625_device_otg.dev.platform_data = &msm_otg_pdata;
1018 msm8625_device_gadget_peripheral.dev.platform_data =
1019 &msm_gadget_pdata;
1020
1021 } else {
Murali Nalajala6ff8fb12012-05-02 18:50:50 +05301022 msm_otg_pdata.swfi_latency = msm7627a_pm_data
1023 [MSM_PM_SLEEP_MODE_RAMP_DOWN_AND_WAIT_FOR_INTERRUPT].latency;
Chintan Pandyaf4ad4002012-02-28 19:49:03 +05301024 msm_device_otg.dev.platform_data = &msm_otg_pdata;
1025 msm_device_gadget_peripheral.dev.platform_data =
1026 &msm_gadget_pdata;
1027 }
1028}
1029
Taniya Dasbd096542012-03-15 17:43:45 +05301030static void __init msm_pm_init(void)
1031{
Taniya Dasbd096542012-03-15 17:43:45 +05301032
Aparna Mallavarapu6d969eb2012-04-03 15:10:25 +05301033 if (!cpu_is_msm8625()) {
Taniya Dasbd096542012-03-15 17:43:45 +05301034 msm_pm_set_platform_data(msm7627a_pm_data,
1035 ARRAY_SIZE(msm7627a_pm_data));
1036 BUG_ON(msm_pm_boot_init(&msm_pm_boot_pdata));
1037 } else {
1038 msm_pm_set_platform_data(msm8625_pm_data,
1039 ARRAY_SIZE(msm8625_pm_data));
1040 BUG_ON(msm_pm_boot_init(&msm_pm_8625_boot_pdata));
1041 msm8x25_spm_device_init();
1042 }
1043}
1044
Taniya Dasc868a2e2012-01-03 10:18:47 +05301045static void __init msm_qrd_init(void)
Taniya Dasc98bfbc2011-08-23 09:58:55 +05301046{
1047 msm7x2x_misc_init();
Pankaj Kumar3cec0582011-11-18 11:13:29 +05301048 msm7627a_init_regulators();
Trilok Sonib9410792012-04-07 15:37:13 +05301049 msmqrd_adsp_add_pdev();
Taniya Dasc98bfbc2011-08-23 09:58:55 +05301050
Chintan Pandyaf4ad4002012-02-28 19:49:03 +05301051 if (cpu_is_msm8625())
1052 msm8625_device_i2c_init();
1053 else
1054 msm7627a_device_i2c_init();
1055
1056 /* uart1dm*/
1057 qrd7627a_uart1dm_config();
1058 /*OTG gadget*/
1059 qrd7627a_otg_gadget();
Taniya Dasc868a2e2012-01-03 10:18:47 +05301060
Taniya Dase380a2d2012-03-09 13:02:41 +05301061 msm_add_footswitch_devices();
Chintan Pandyab1bad0e2012-02-06 19:04:51 +05301062 add_platform_devices();
Taniya Dasc868a2e2012-01-03 10:18:47 +05301063
Santosh Sajjan374d6592012-01-19 23:16:46 +05301064 /* Ensure ar6000pm device is registered before MMC/SDC */
1065 msm_qrd_init_ar6000pm();
Chintan Pandyacf467fc2011-12-01 17:11:11 +05301066 msm7627a_init_mmc();
1067
Taniya Dasc98bfbc2011-08-23 09:58:55 +05301068#ifdef CONFIG_USB_EHCI_MSM_72K
1069 msm7627a_init_host();
1070#endif
Taniya Dasbd096542012-03-15 17:43:45 +05301071 msm_pm_init();
Murali Nalajalaa1827842011-11-13 14:12:39 +05301072
Murali Nalajala2a0bbda2012-03-28 12:12:54 +05301073 msm_pm_register_irqs();
Taniya Das0a5303a2011-08-23 18:47:48 +05301074 msm_fb_add_devices();
Taniya Dasc98bfbc2011-08-23 09:58:55 +05301075
1076#if defined(CONFIG_BT) && defined(CONFIG_MARIMBA_CORE)
Chintan Pandya13490c02011-12-20 13:03:36 +05301077 msm7627a_bt_power_init();
Taniya Dasc98bfbc2011-08-23 09:58:55 +05301078#endif
Taniya Dasda408822011-09-06 12:54:06 +05301079
Chintan Pandya40762702011-12-06 13:47:06 +05301080 msm7627a_camera_init();
Chintan Pandya0d453192012-03-09 13:20:33 +05301081 qrd7627a_add_io_devices();
Aparna Mallavarapud95d8fc2012-03-08 12:07:37 +05301082 msm7x25a_kgsl_3d0_init();
Sudhakara Rao Tentu38ad6e12012-03-30 15:25:18 -07001083 msm8x25_kgsl_3d0_init();
Taniya Dasc98bfbc2011-08-23 09:58:55 +05301084}
1085
1086static void __init qrd7627a_init_early(void)
1087{
1088 msm_msm7627a_allocate_memory_regions();
1089}
1090
1091MACHINE_START(MSM7627A_QRD1, "QRD MSM7627a QRD1")
Steve Mucklef132c6c2012-06-06 18:30:57 -07001092 .atag_offset = 0x100,
Taniya Dasc98bfbc2011-08-23 09:58:55 +05301093 .map_io = msm_common_io_init,
Trilok Sonib9410792012-04-07 15:37:13 +05301094 .reserve = msm7627a_reserve,
Taniya Dasc98bfbc2011-08-23 09:58:55 +05301095 .init_irq = msm_init_irq,
Taniya Dasc868a2e2012-01-03 10:18:47 +05301096 .init_machine = msm_qrd_init,
1097 .timer = &msm_timer,
1098 .init_early = qrd7627a_init_early,
1099 .handle_irq = vic_handle_irq,
1100MACHINE_END
Chintan Pandyab1bad0e2012-02-06 19:04:51 +05301101MACHINE_START(MSM7627A_QRD3, "QRD MSM7627a QRD3")
Steve Mucklef132c6c2012-06-06 18:30:57 -07001102 .atag_offset = 0x100,
Chintan Pandyab1bad0e2012-02-06 19:04:51 +05301103 .map_io = msm_common_io_init,
Trilok Sonib9410792012-04-07 15:37:13 +05301104 .reserve = msm7627a_reserve,
Chintan Pandyab1bad0e2012-02-06 19:04:51 +05301105 .init_irq = msm_init_irq,
1106 .init_machine = msm_qrd_init,
1107 .timer = &msm_timer,
1108 .init_early = qrd7627a_init_early,
1109 .handle_irq = vic_handle_irq,
1110MACHINE_END
Taniya Dasc868a2e2012-01-03 10:18:47 +05301111MACHINE_START(MSM7627A_EVB, "QRD MSM7627a EVB")
Steve Mucklef132c6c2012-06-06 18:30:57 -07001112 .atag_offset = 0x100,
Taniya Dasc868a2e2012-01-03 10:18:47 +05301113 .map_io = msm_common_io_init,
Trilok Sonib9410792012-04-07 15:37:13 +05301114 .reserve = msm7627a_reserve,
Taniya Dasc868a2e2012-01-03 10:18:47 +05301115 .init_irq = msm_init_irq,
1116 .init_machine = msm_qrd_init,
Taniya Dasc98bfbc2011-08-23 09:58:55 +05301117 .timer = &msm_timer,
1118 .init_early = qrd7627a_init_early,
Pankaj Kumarbf8a2a32011-10-21 11:47:21 +05301119 .handle_irq = vic_handle_irq,
Taniya Dasc98bfbc2011-08-23 09:58:55 +05301120MACHINE_END
Chintan Pandyaf4ad4002012-02-28 19:49:03 +05301121MACHINE_START(MSM8625_EVB, "QRD MSM8625 EVB")
Steve Mucklef132c6c2012-06-06 18:30:57 -07001122 .atag_offset = 0x100,
Chintan Pandyaf4ad4002012-02-28 19:49:03 +05301123 .map_io = msm8625_map_io,
Trilok Sonib9410792012-04-07 15:37:13 +05301124 .reserve = msm8625_reserve,
Chintan Pandyaf4ad4002012-02-28 19:49:03 +05301125 .init_irq = msm8625_init_irq,
1126 .init_machine = msm_qrd_init,
1127 .timer = &msm_timer,
1128 .init_early = qrd7627a_init_early,
1129 .handle_irq = gic_handle_irq,
1130MACHINE_END
Taniya Dasbd096542012-03-15 17:43:45 +05301131MACHINE_START(MSM8625_QRD7, "QRD MSM8625 QRD7")
Steve Mucklef132c6c2012-06-06 18:30:57 -07001132 .atag_offset = 0x100,
Taniya Dasbd096542012-03-15 17:43:45 +05301133 .map_io = msm8625_map_io,
Trilok Sonib9410792012-04-07 15:37:13 +05301134 .reserve = msm8625_reserve,
Taniya Dasbd096542012-03-15 17:43:45 +05301135 .init_irq = msm8625_init_irq,
1136 .init_machine = msm_qrd_init,
1137 .timer = &msm_timer,
1138 .init_early = qrd7627a_init_early,
1139 .handle_irq = gic_handle_irq,
1140MACHINE_END
Aparna Mallavarapu5a326242012-05-09 19:49:02 +05301141MACHINE_START(MSM8625_EVT, "QRD MSM8625 EVT")
Steve Mucklef132c6c2012-06-06 18:30:57 -07001142 .atag_offset = 0x100,
Aparna Mallavarapu5a326242012-05-09 19:49:02 +05301143 .map_io = msm8625_map_io,
1144 .reserve = msm8625_reserve,
1145 .init_irq = msm8625_init_irq,
1146 .init_machine = msm_qrd_init,
1147 .timer = &msm_timer,
1148 .init_early = qrd7627a_init_early,
1149 .handle_irq = gic_handle_irq,
1150MACHINE_END