blob: 6e2c044217efb0e4a34545d787b3ea3b06274ecb [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001/* Copyright (c) 2011, 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 */
13#include <linux/kernel.h>
14#include <linux/platform_device.h>
15#include <linux/io.h>
16#include <linux/irq.h>
Kenneth Heitke748593a2011-07-15 15:45:11 -060017#include <linux/i2c.h>
Sagar Dharia8bdcdaf2011-09-16 16:01:15 -060018#include <linux/slimbus/slimbus.h>
Swaminathan Sathappan2f51a752011-12-05 12:51:19 -080019#include <linux/mfd/wcd9310/core.h>
20#include <linux/mfd/wcd9310/pdata.h>
Kenneth Heitke36920d32011-07-20 16:44:30 -060021#include <linux/msm_ssbi.h>
Stepan Moskovchenkoeed82a52011-09-02 13:19:23 -070022#include <linux/spi/spi.h>
Ramesh Masavarapu28311912011-10-27 11:04:12 -070023#include <linux/dma-mapping.h>
24#include <linux/platform_data/qcom_crypto_device.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070025#include <asm/mach-types.h>
26#include <asm/mach/arch.h>
27#include <asm/hardware/gic.h>
Sahitya Tummala3586ed92011-08-03 09:13:23 +053028#include <asm/mach/mmc.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070029
30#include <mach/board.h>
31#include <mach/msm_iomap.h>
32#include <linux/usb/msm_hsusb.h>
33#include <linux/usb/android.h>
34#include <mach/socinfo.h>
Harini Jayaramanc4c58692011-07-19 14:50:10 -060035#include <mach/msm_spi.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070036#include "timer.h"
37#include "devices.h"
Joel King4ebccc62011-07-22 09:43:22 -070038#include <mach/gpio.h>
39#include <mach/gpiomux.h>
Kevin Chan13be4e22011-10-20 11:30:32 -070040#include <linux/android_pmem.h>
41#include <mach/msm_memtypes.h>
42#include <linux/bootmem.h>
43#include <asm/setup.h>
Ramesh Masavarapu28311912011-10-27 11:04:12 -070044#include <mach/dma.h>
Joel King4ebccc62011-07-22 09:43:22 -070045
Jeff Ohlstein7e668552011-10-06 16:17:25 -070046#include "msm_watchdog.h"
Stepan Moskovchenko5a83dba2011-12-05 17:30:17 -080047#include "board-8064.h"
Jay Chokshiea67c622011-07-29 17:12:26 -070048
Kevin Chan13be4e22011-10-20 11:30:32 -070049#define MSM_PMEM_KERNEL_EBI1_SIZE 0x600000
50#define MSM_PMEM_ADSP_SIZE 0x3800000
51#define MSM_PMEM_AUDIO_SIZE 0x28B000
52#define MSM_PMEM_SIZE 0x1800000 /* 24 Mbytes */
53
54static struct memtype_reserve apq8064_reserve_table[] __initdata = {
55 [MEMTYPE_SMI] = {
56 },
57 [MEMTYPE_EBI0] = {
58 .flags = MEMTYPE_FLAGS_1M_ALIGN,
59 },
60 [MEMTYPE_EBI1] = {
61 .flags = MEMTYPE_FLAGS_1M_ALIGN,
62 },
63};
64
65static int apq8064_paddr_to_memtype(unsigned int paddr)
66{
67 return MEMTYPE_EBI1;
68}
69
70static unsigned pmem_size = MSM_PMEM_SIZE;
71static int __init pmem_size_setup(char *p)
72{
73 pmem_size = memparse(p, NULL);
74 return 0;
75}
76early_param("pmem_size", pmem_size_setup);
77
78static unsigned pmem_adsp_size = MSM_PMEM_ADSP_SIZE;
79
80static int __init pmem_adsp_size_setup(char *p)
81{
82 pmem_adsp_size = memparse(p, NULL);
83 return 0;
84}
85early_param("pmem_adsp_size", pmem_adsp_size_setup);
86
87static unsigned pmem_audio_size = MSM_PMEM_AUDIO_SIZE;
88
89static int __init pmem_audio_size_setup(char *p)
90{
91 pmem_audio_size = memparse(p, NULL);
92 return 0;
93}
94early_param("pmem_audio_size", pmem_audio_size_setup);
95
96static struct android_pmem_platform_data android_pmem_pdata = {
97 .name = "pmem",
98 .allocator_type = PMEM_ALLOCATORTYPE_ALLORNOTHING,
99 .cached = 1,
100 .memory_type = MEMTYPE_EBI1,
101};
102
103static struct platform_device android_pmem_device = {
104 .name = "android_pmem",
105 .id = 0,
106 .dev = {.platform_data = &android_pmem_pdata},
107};
108
109static struct android_pmem_platform_data android_pmem_adsp_pdata = {
110 .name = "pmem_adsp",
111 .allocator_type = PMEM_ALLOCATORTYPE_BITMAP,
112 .cached = 0,
113 .memory_type = MEMTYPE_EBI1,
114};
115
116static unsigned pmem_kernel_ebi1_size = MSM_PMEM_KERNEL_EBI1_SIZE;
117static int __init pmem_kernel_ebi1_size_setup(char *p)
118{
119 pmem_kernel_ebi1_size = memparse(p, NULL);
120 return 0;
121}
122early_param("pmem_kernel_ebi1_size", pmem_kernel_ebi1_size_setup);
123
124static struct platform_device android_pmem_adsp_device = {
125 .name = "android_pmem",
126 .id = 2,
127 .dev = { .platform_data = &android_pmem_adsp_pdata },
128};
129
130static struct android_pmem_platform_data android_pmem_audio_pdata = {
131 .name = "pmem_audio",
132 .allocator_type = PMEM_ALLOCATORTYPE_BITMAP,
133 .cached = 0,
134 .memory_type = MEMTYPE_EBI1,
135};
136
137static struct platform_device android_pmem_audio_device = {
138 .name = "android_pmem",
139 .id = 4,
140 .dev = { .platform_data = &android_pmem_audio_pdata },
141};
142
143static void __init size_pmem_devices(void)
144{
145 android_pmem_adsp_pdata.size = pmem_adsp_size;
146 android_pmem_pdata.size = pmem_size;
147 android_pmem_audio_pdata.size = MSM_PMEM_AUDIO_SIZE;
148}
149
150static void __init reserve_memory_for(struct android_pmem_platform_data *p)
151{
152 apq8064_reserve_table[p->memory_type].size += p->size;
153}
154
155
156static void __init reserve_pmem_memory(void)
157{
158 reserve_memory_for(&android_pmem_adsp_pdata);
159 reserve_memory_for(&android_pmem_pdata);
160 reserve_memory_for(&android_pmem_audio_pdata);
161 apq8064_reserve_table[MEMTYPE_EBI1].size += pmem_kernel_ebi1_size;
162}
163
164static void __init apq8064_calculate_reserve_sizes(void)
165{
166 size_pmem_devices();
167 reserve_pmem_memory();
168}
169
170static struct reserve_info apq8064_reserve_info __initdata = {
171 .memtype_reserve_table = apq8064_reserve_table,
172 .calculate_reserve_sizes = apq8064_calculate_reserve_sizes,
173 .paddr_to_memtype = apq8064_paddr_to_memtype,
174};
175
176static int apq8064_memory_bank_size(void)
177{
178 return 1<<29;
179}
180
181static void __init locate_unstable_memory(void)
182{
183 struct membank *mb = &meminfo.bank[meminfo.nr_banks - 1];
184 unsigned long bank_size;
185 unsigned long low, high;
186
187 bank_size = apq8064_memory_bank_size();
188 low = meminfo.bank[0].start;
189 high = mb->start + mb->size;
190 low &= ~(bank_size - 1);
191
192 if (high - low <= bank_size)
193 return;
194 apq8064_reserve_info.low_unstable_address = low + bank_size;
195 apq8064_reserve_info.max_unstable_size = high - low - bank_size;
196 apq8064_reserve_info.bank_size = bank_size;
197 pr_info("low unstable address %lx max size %lx bank size %lx\n",
198 apq8064_reserve_info.low_unstable_address,
199 apq8064_reserve_info.max_unstable_size,
200 apq8064_reserve_info.bank_size);
201}
202
203static void __init apq8064_reserve(void)
204{
205 reserve_info = &apq8064_reserve_info;
206 locate_unstable_memory();
207 msm_reserve();
208}
209
Hemant Kumar4933b072011-10-17 23:43:11 -0700210static struct platform_device android_usb_device = {
211 .name = "android_usb",
212 .id = -1,
213};
214
215static struct msm_otg_platform_data msm_otg_pdata = {
216 .mode = USB_PERIPHERAL,
217 .otg_control = OTG_PHY_CONTROL,
218 .phy_type = SNPS_28NM_INTEGRATED_PHY,
219 .pclk_src_name = "dfab_usb_hs_clk",
220};
221
Swaminathan Sathappan2f51a752011-12-05 12:51:19 -0800222#define TABLA_INTERRUPT_BASE (NR_MSM_IRQS + NR_GPIO_IRQS + NR_PM8921_IRQS)
223
224/* Micbias setting is based on 8660 CDP/MTP/FLUID requirement
225 * 4 micbiases are used to power various analog and digital
226 * microphones operating at 1800 mV. Technically, all micbiases
227 * can source from single cfilter since all microphones operate
228 * at the same voltage level. The arrangement below is to make
229 * sure all cfilters are exercised. LDO_H regulator ouput level
230 * does not need to be as high as 2.85V. It is choosen for
231 * microphone sensitivity purpose.
232 */
233static struct tabla_pdata apq8064_tabla_platform_data = {
234 .slimbus_slave_device = {
235 .name = "tabla-slave",
236 .e_addr = {0, 0, 0x10, 0, 0x17, 2},
237 },
238 .irq = MSM_GPIO_TO_INT(62),
239 .irq_base = TABLA_INTERRUPT_BASE,
240 .num_irqs = NR_TABLA_IRQS,
241 .reset_gpio = PM8921_GPIO_PM_TO_SYS(34),
242 .micbias = {
243 .ldoh_v = TABLA_LDOH_2P85_V,
244 .cfilt1_mv = 1800,
245 .cfilt2_mv = 1800,
246 .cfilt3_mv = 1800,
247 .bias1_cfilt_sel = TABLA_CFILT1_SEL,
248 .bias2_cfilt_sel = TABLA_CFILT2_SEL,
249 .bias3_cfilt_sel = TABLA_CFILT3_SEL,
250 .bias4_cfilt_sel = TABLA_CFILT3_SEL,
251 }
252};
253
254static struct slim_device apq8064_slim_tabla = {
255 .name = "tabla-slim",
256 .e_addr = {0, 1, 0x10, 0, 0x17, 2},
257 .dev = {
258 .platform_data = &apq8064_tabla_platform_data,
259 },
260};
261
Ramesh Masavarapu28311912011-10-27 11:04:12 -0700262#if defined(CONFIG_CRYPTO_DEV_QCRYPTO) || \
263 defined(CONFIG_CRYPTO_DEV_QCRYPTO_MODULE) || \
264 defined(CONFIG_CRYPTO_DEV_QCEDEV) || \
265 defined(CONFIG_CRYPTO_DEV_QCEDEV_MODULE)
266
267#define QCE_SIZE 0x10000
268#define QCE_0_BASE 0x11000000
269
270#define QCE_HW_KEY_SUPPORT 0
271#define QCE_SHA_HMAC_SUPPORT 1
272#define QCE_SHARE_CE_RESOURCE 3
273#define QCE_CE_SHARED 0
274
275static struct resource qcrypto_resources[] = {
276 [0] = {
277 .start = QCE_0_BASE,
278 .end = QCE_0_BASE + QCE_SIZE - 1,
279 .flags = IORESOURCE_MEM,
280 },
281 [1] = {
282 .name = "crypto_channels",
283 .start = DMOV8064_CE_IN_CHAN,
284 .end = DMOV8064_CE_OUT_CHAN,
285 .flags = IORESOURCE_DMA,
286 },
287 [2] = {
288 .name = "crypto_crci_in",
289 .start = DMOV8064_CE_IN_CRCI,
290 .end = DMOV8064_CE_IN_CRCI,
291 .flags = IORESOURCE_DMA,
292 },
293 [3] = {
294 .name = "crypto_crci_out",
295 .start = DMOV8064_CE_OUT_CRCI,
296 .end = DMOV8064_CE_OUT_CRCI,
297 .flags = IORESOURCE_DMA,
298 },
299};
300
301static struct resource qcedev_resources[] = {
302 [0] = {
303 .start = QCE_0_BASE,
304 .end = QCE_0_BASE + QCE_SIZE - 1,
305 .flags = IORESOURCE_MEM,
306 },
307 [1] = {
308 .name = "crypto_channels",
309 .start = DMOV8064_CE_IN_CHAN,
310 .end = DMOV8064_CE_OUT_CHAN,
311 .flags = IORESOURCE_DMA,
312 },
313 [2] = {
314 .name = "crypto_crci_in",
315 .start = DMOV8064_CE_IN_CRCI,
316 .end = DMOV8064_CE_IN_CRCI,
317 .flags = IORESOURCE_DMA,
318 },
319 [3] = {
320 .name = "crypto_crci_out",
321 .start = DMOV8064_CE_OUT_CRCI,
322 .end = DMOV8064_CE_OUT_CRCI,
323 .flags = IORESOURCE_DMA,
324 },
325};
326
327#endif
328
329#if defined(CONFIG_CRYPTO_DEV_QCRYPTO) || \
330 defined(CONFIG_CRYPTO_DEV_QCRYPTO_MODULE)
331
332static struct msm_ce_hw_support qcrypto_ce_hw_suppport = {
333 .ce_shared = QCE_CE_SHARED,
334 .shared_ce_resource = QCE_SHARE_CE_RESOURCE,
335 .hw_key_support = QCE_HW_KEY_SUPPORT,
336 .sha_hmac = QCE_SHA_HMAC_SUPPORT,
337};
338
339static struct platform_device qcrypto_device = {
340 .name = "qcrypto",
341 .id = 0,
342 .num_resources = ARRAY_SIZE(qcrypto_resources),
343 .resource = qcrypto_resources,
344 .dev = {
345 .coherent_dma_mask = DMA_BIT_MASK(32),
346 .platform_data = &qcrypto_ce_hw_suppport,
347 },
348};
349#endif
350
351#if defined(CONFIG_CRYPTO_DEV_QCEDEV) || \
352 defined(CONFIG_CRYPTO_DEV_QCEDEV_MODULE)
353
354static struct msm_ce_hw_support qcedev_ce_hw_suppport = {
355 .ce_shared = QCE_CE_SHARED,
356 .shared_ce_resource = QCE_SHARE_CE_RESOURCE,
357 .hw_key_support = QCE_HW_KEY_SUPPORT,
358 .sha_hmac = QCE_SHA_HMAC_SUPPORT,
359};
360
361static struct platform_device qcedev_device = {
362 .name = "qce",
363 .id = 0,
364 .num_resources = ARRAY_SIZE(qcedev_resources),
365 .resource = qcedev_resources,
366 .dev = {
367 .coherent_dma_mask = DMA_BIT_MASK(32),
368 .platform_data = &qcedev_ce_hw_suppport,
369 },
370};
371#endif
372
373
Jeff Hugo0c0f5e92011-09-28 13:55:45 -0600374#define MSM_SHARED_RAM_PHYS 0x80000000
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700375static void __init apq8064_map_io(void)
376{
Jeff Hugo0c0f5e92011-09-28 13:55:45 -0600377 msm_shared_ram_phys = MSM_SHARED_RAM_PHYS;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700378 msm_map_apq8064_io();
Jeff Ohlstein3a77f9f2011-09-06 14:50:20 -0700379 if (socinfo_init() < 0)
380 pr_err("socinfo_init() failed!\n");
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700381}
382
383static void __init apq8064_init_irq(void)
384{
385 unsigned int i;
386 gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE,
387 (void *)MSM_QGIC_CPU_BASE);
388
389 /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */
390 writel_relaxed(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4);
391
392 writel_relaxed(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET);
393 mb();
394
395 /*
396 * FIXME: Not installing AVS_SVICINT and AVS_SVICINTSWDONE yet
397 * as they are configured as level, which does not play nice with
398 * handle_percpu_irq.
399 */
400 for (i = GIC_PPI_START; i < GIC_SPI_START; i++) {
401 if (i != AVS_SVICINT && i != AVS_SVICINTSWDONE)
402 irq_set_handler(i, handle_percpu_irq);
403 }
404}
405
Jay Chokshi7805b5a2011-11-07 15:55:30 -0800406static struct platform_device msm8064_device_saw_regulator_core0 = {
407 .name = "saw-regulator",
408 .id = 0,
409 .dev = {
410 .platform_data = &msm8064_saw_regulator_pdata_8921_s5,
411 },
412};
413
414static struct platform_device msm8064_device_saw_regulator_core1 = {
415 .name = "saw-regulator",
416 .id = 1,
417 .dev = {
418 .platform_data = &msm8064_saw_regulator_pdata_8921_s6,
419 },
420};
421
422static struct platform_device msm8064_device_saw_regulator_core2 = {
423 .name = "saw-regulator",
424 .id = 2,
425 .dev = {
426 .platform_data = &msm8064_saw_regulator_pdata_8821_s0,
427 },
428};
429
430static struct platform_device msm8064_device_saw_regulator_core3 = {
431 .name = "saw-regulator",
432 .id = 3,
433 .dev = {
434 .platform_data = &msm8064_saw_regulator_pdata_8821_s1,
435 },
436};
437
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700438static struct platform_device *common_devices[] __initdata = {
Jin Hong01f2dbb2011-11-03 22:13:51 -0700439 &apq8064_device_dmov,
Kenneth Heitke748593a2011-07-15 15:45:11 -0600440 &apq8064_device_qup_i2c_gsbi4,
Harini Jayaramanc4c58692011-07-19 14:50:10 -0600441 &apq8064_device_qup_spi_gsbi5,
Sagar Dharia8bdcdaf2011-09-16 16:01:15 -0600442 &apq8064_slim_ctrl,
Jay Chokshi9c25f072011-09-23 18:19:15 -0700443 &apq8064_device_ssbi_pmic1,
444 &apq8064_device_ssbi_pmic2,
Jeff Hugo0c0f5e92011-09-28 13:55:45 -0600445 &msm_device_smd_apq8064,
Hemant Kumar4933b072011-10-17 23:43:11 -0700446 &apq8064_device_otg,
447 &apq8064_device_gadget_peripheral,
448 &android_usb_device,
Kevin Chan13be4e22011-10-20 11:30:32 -0700449 &android_pmem_device,
450 &android_pmem_adsp_device,
451 &android_pmem_audio_device,
Jeff Ohlstein7e668552011-10-06 16:17:25 -0700452 &msm8064_device_watchdog,
Jay Chokshi7805b5a2011-11-07 15:55:30 -0800453 &msm8064_device_saw_regulator_core0,
454 &msm8064_device_saw_regulator_core1,
455 &msm8064_device_saw_regulator_core2,
456 &msm8064_device_saw_regulator_core3,
Ramesh Masavarapu28311912011-10-27 11:04:12 -0700457#if defined(CONFIG_CRYPTO_DEV_QCRYPTO) || \
458 defined(CONFIG_CRYPTO_DEV_QCRYPTO_MODULE)
459 &qcrypto_device,
460#endif
461
462#if defined(CONFIG_CRYPTO_DEV_QCEDEV) || \
463 defined(CONFIG_CRYPTO_DEV_QCEDEV_MODULE)
464 &qcedev_device,
465#endif
Ramesh Masavarapuf46be1b2011-11-03 11:13:41 -0700466
467#ifdef CONFIG_HW_RANDOM_MSM
468 &apq8064_device_rng,
469#endif
Swaminathan Sathappan2f51a752011-12-05 12:51:19 -0800470 &msm_pcm,
471 &msm_pcm_routing,
472 &msm_cpudai0,
473 &msm_cpudai1,
474 &msm_cpudai_hdmi_rx,
475 &msm_cpudai_bt_rx,
476 &msm_cpudai_bt_tx,
477 &msm_cpudai_fm_rx,
478 &msm_cpudai_fm_tx,
479 &msm_cpu_fe,
480 &msm_stub_codec,
481 &msm_voice,
482 &msm_voip,
483 &msm_lpa_pcm,
484 &msm_cpudai_afe_01_rx,
485 &msm_cpudai_afe_01_tx,
486 &msm_cpudai_afe_02_rx,
487 &msm_cpudai_afe_02_tx,
488 &msm_pcm_afe,
489 &msm_cpudai_auxpcm_rx,
490 &msm_cpudai_auxpcm_tx,
Harini Jayaramanc4c58692011-07-19 14:50:10 -0600491};
492
Joel King4e7ad222011-08-17 15:47:38 -0700493static struct platform_device *sim_devices[] __initdata = {
Stepan Moskovchenko2701a442011-08-19 13:47:22 -0700494 &apq8064_device_uart_gsbi3,
Yan He06913ce2011-08-26 16:33:46 -0700495 &msm_device_sps_apq8064,
Stepan Moskovchenko2701a442011-08-19 13:47:22 -0700496};
497
498static struct platform_device *rumi3_devices[] __initdata = {
499 &apq8064_device_uart_gsbi1,
Yan He435ed612011-11-23 17:34:59 -0800500 &msm_device_sps_apq8064,
Swaminathan Sathappan2f51a752011-12-05 12:51:19 -0800501 &msm_cpudai_bt_rx,
502 &msm_cpudai_bt_tx,
503 &msm_cpudai_fm_rx,
504 &msm_cpudai_fm_tx,
Joel King4e7ad222011-08-17 15:47:38 -0700505};
506
Harini Jayaramanc4c58692011-07-19 14:50:10 -0600507static struct msm_spi_platform_data apq8064_qup_spi_gsbi5_pdata = {
Harini Jayaraman60ee14c2011-11-09 18:53:27 -0700508 .max_clock_speed = 24000000,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700509};
510
Stepan Moskovchenkoeed82a52011-09-02 13:19:23 -0700511#define KS8851_IRQ_GPIO 43
512
513static struct spi_board_info spi_board_info[] __initdata = {
514 {
515 .modalias = "ks8851",
516 .irq = MSM_GPIO_TO_INT(KS8851_IRQ_GPIO),
517 .max_speed_hz = 19200000,
518 .bus_num = 0,
519 .chip_select = 2,
520 .mode = SPI_MODE_0,
521 },
522};
523
524#ifdef CONFIG_KS8851
525static struct gpiomux_setting gpio_eth_config = {
526 .pull = GPIOMUX_PULL_NONE,
527 .drv = GPIOMUX_DRV_8MA,
528 .func = GPIOMUX_FUNC_GPIO,
529};
530
531/* The SPI configurations apply to GSBI 5*/
532static struct gpiomux_setting gpio_spi_config = {
533 .func = GPIOMUX_FUNC_2,
534 .drv = GPIOMUX_DRV_8MA,
535 .pull = GPIOMUX_PULL_NONE,
536};
537
538/* The SPI configurations apply to GSBI 5 chip select 2*/
539static struct gpiomux_setting gpio_spi_cs2_config = {
540 .func = GPIOMUX_FUNC_3,
541 .drv = GPIOMUX_DRV_8MA,
542 .pull = GPIOMUX_PULL_NONE,
543};
544#endif
545
546struct msm_gpiomux_config apq8064_ethernet_configs[NR_GPIO_IRQS] = {
547#ifdef CONFIG_KS8851
548 {
549 .gpio = KS8851_IRQ_GPIO,
550 .settings = {
551 [GPIOMUX_SUSPENDED] = &gpio_eth_config,
552 [GPIOMUX_ACTIVE] = &gpio_eth_config,
553 }
554 },
555#endif
556};
557
558static struct msm_gpiomux_config apq8064_gsbi_configs[] __initdata = {
559#ifdef CONFIG_KS8851
560 {
561 .gpio = 51, /* GSBI5 QUP SPI_DATA_MOSI */
562 .settings = {
563 [GPIOMUX_SUSPENDED] = &gpio_spi_config,
564 },
565 },
566 {
567 .gpio = 52, /* GSBI5 QUP SPI_DATA_MISO */
568 .settings = {
569 [GPIOMUX_SUSPENDED] = &gpio_spi_config,
570 },
571 },
572 {
573 .gpio = 31, /* GSBI5 QUP SPI_CS2_N */
574 .settings = {
575 [GPIOMUX_SUSPENDED] = &gpio_spi_cs2_config,
576 },
577 },
578 {
579 .gpio = 54, /* GSBI5 QUP SPI_CLK */
580 .settings = {
581 [GPIOMUX_SUSPENDED] = &gpio_spi_config,
582 },
583 },
584#endif
585};
586
Jay Chokshibc3d98d2011-08-10 17:14:23 -0700587static struct pm8xxx_mpp_platform_data
588apq8064_pm8921_mpp_pdata __devinitdata = {
589 .mpp_base = PM8921_MPP_PM_TO_SYS(1),
590};
591
592static struct pm8xxx_gpio_platform_data
593apq8064_pm8921_gpio_pdata __devinitdata = {
594 .gpio_base = PM8921_GPIO_PM_TO_SYS(1),
595};
596
597static struct pm8xxx_irq_platform_data
598apq8064_pm8921_irq_pdata __devinitdata = {
599 .irq_base = PM8921_IRQ_BASE,
Jay Chokshi44873f72011-08-30 17:24:26 -0700600 .devirq = PM8921_USR_IRQ_N,
601 .irq_trigger_flag = IRQF_TRIGGER_HIGH,
Jay Chokshi9e926e72011-09-23 19:19:58 -0700602 .dev_id = 0,
Jay Chokshibc3d98d2011-08-10 17:14:23 -0700603};
604
605static struct pm8921_platform_data
606apq8064_pm8921_platform_data __devinitdata = {
Jay Chokshiea67c622011-07-29 17:12:26 -0700607 .regulator_pdatas = msm8064_pm8921_regulator_pdata,
Jay Chokshibc3d98d2011-08-10 17:14:23 -0700608 .irq_pdata = &apq8064_pm8921_irq_pdata,
609 .gpio_pdata = &apq8064_pm8921_gpio_pdata,
610 .mpp_pdata = &apq8064_pm8921_mpp_pdata,
Jay Chokshiea67c622011-07-29 17:12:26 -0700611};
612
Jay Chokshi44873f72011-08-30 17:24:26 -0700613static struct pm8xxx_irq_platform_data
614apq8064_pm8821_irq_pdata __devinitdata = {
615 .irq_base = PM8821_IRQ_BASE,
616 .devirq = PM8821_USR_IRQ_N,
617 .irq_trigger_flag = IRQF_TRIGGER_HIGH,
Jay Chokshi9e926e72011-09-23 19:19:58 -0700618 .dev_id = 1,
Jay Chokshi44873f72011-08-30 17:24:26 -0700619};
620
621static struct pm8xxx_mpp_platform_data
622apq8064_pm8821_mpp_pdata __devinitdata = {
623 .mpp_base = PM8821_MPP_PM_TO_SYS(1),
624};
625
626static struct pm8821_platform_data
627apq8064_pm8821_platform_data __devinitdata = {
628 .irq_pdata = &apq8064_pm8821_irq_pdata,
629 .mpp_pdata = &apq8064_pm8821_mpp_pdata,
630};
631
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700632static struct msm_ssbi_platform_data apq8064_ssbi_pm8921_pdata __devinitdata = {
633 .controller_type = MSM_SBI_CTRL_PMIC_ARBITER,
634 .slave = {
Jay Chokshiea67c622011-07-29 17:12:26 -0700635 .name = "pm8921-core",
Jay Chokshibc3d98d2011-08-10 17:14:23 -0700636 .platform_data = &apq8064_pm8921_platform_data,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700637 },
638};
639
640static struct msm_ssbi_platform_data apq8064_ssbi_pm8821_pdata __devinitdata = {
641 .controller_type = MSM_SBI_CTRL_PMIC_ARBITER,
642 .slave = {
Jay Chokshi44873f72011-08-30 17:24:26 -0700643 .name = "pm8821-core",
644 .platform_data = &apq8064_pm8821_platform_data,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700645 },
646};
647
Sagar Dharia8bdcdaf2011-09-16 16:01:15 -0600648static struct slim_boardinfo apq8064_slim_devices[] = {
Swaminathan Sathappan2f51a752011-12-05 12:51:19 -0800649 {
650 .bus_num = 1,
651 .slim_slave = &apq8064_slim_tabla,
652 },
653 /* add more slimbus slaves as needed */
Sagar Dharia8bdcdaf2011-09-16 16:01:15 -0600654};
655
Kenneth Heitke748593a2011-07-15 15:45:11 -0600656static struct msm_i2c_platform_data apq8064_i2c_qup_gsbi4_pdata = {
657 .clk_freq = 100000,
658 .src_clk_rate = 24000000,
Kenneth Heitke748593a2011-07-15 15:45:11 -0600659};
660
Swaminathan Sathappan2f51a752011-12-05 12:51:19 -0800661
662static struct gpiomux_setting audio_auxpcm[] = {
663 /* Suspended state */
664 {
665 .func = GPIOMUX_FUNC_GPIO,
666 .drv = GPIOMUX_DRV_2MA,
667 .pull = GPIOMUX_PULL_NONE,
668 },
669 /* Active state */
670 {
671 .func = GPIOMUX_FUNC_1,
672 .drv = GPIOMUX_DRV_2MA,
673 .pull = GPIOMUX_PULL_NONE,
674 },
675};
676static struct msm_gpiomux_config apq8064_audio_auxpcm_configs[] __initdata = {
677 {
678 .gpio = 43,
679 .settings = {
680 [GPIOMUX_SUSPENDED] = &audio_auxpcm[0],
681 [GPIOMUX_ACTIVE] = &audio_auxpcm[1],
682 },
683 },
684 {
685 .gpio = 44,
686 .settings = {
687 [GPIOMUX_SUSPENDED] = &audio_auxpcm[0],
688 [GPIOMUX_ACTIVE] = &audio_auxpcm[1],
689 },
690 },
691 {
692 .gpio = 45,
693 .settings = {
694 [GPIOMUX_SUSPENDED] = &audio_auxpcm[0],
695 [GPIOMUX_ACTIVE] = &audio_auxpcm[1],
696 },
697 },
698 {
699 .gpio = 46,
700 .settings = {
701 [GPIOMUX_SUSPENDED] = &audio_auxpcm[0],
702 [GPIOMUX_ACTIVE] = &audio_auxpcm[1],
703 },
704 },
705};
706
Kenneth Heitke748593a2011-07-15 15:45:11 -0600707static void __init apq8064_i2c_init(void)
708{
709 apq8064_device_qup_i2c_gsbi4.dev.platform_data =
710 &apq8064_i2c_qup_gsbi4_pdata;
711}
712
Stepan Moskovchenkoeed82a52011-09-02 13:19:23 -0700713static int __init gpiomux_init(void)
714{
715 int rc;
716
717 rc = msm_gpiomux_init(NR_GPIO_IRQS);
718 if (rc) {
719 pr_err(KERN_ERR "msm_gpiomux_init failed %d\n", rc);
720 return rc;
721 }
722 msm_gpiomux_install(apq8064_ethernet_configs,
723 ARRAY_SIZE(apq8064_ethernet_configs));
724
725 msm_gpiomux_install(apq8064_gsbi_configs,
726 ARRAY_SIZE(apq8064_gsbi_configs));
Swaminathan Sathappan2f51a752011-12-05 12:51:19 -0800727 msm_gpiomux_install(apq8064_audio_auxpcm_configs,
728 ARRAY_SIZE(apq8064_audio_auxpcm_configs));
Stepan Moskovchenkoeed82a52011-09-02 13:19:23 -0700729 return 0;
730}
731
732#ifdef CONFIG_KS8851
733static int ethernet_init(void)
734{
735 int ret;
736 ret = gpio_request(KS8851_IRQ_GPIO, "ks8851_irq");
737 if (ret) {
738 pr_err("ks8851 gpio_request failed: %d\n", ret);
739 goto fail;
740 }
741
742 return 0;
743fail:
744 return ret;
745}
746#else
747static int ethernet_init(void)
748{
749 return 0;
750}
751#endif
752
Tianyi Gou41515e22011-09-01 19:37:43 -0700753static void __init apq8064_clock_init(void)
754{
755 if (machine_is_apq8064_sim())
756 msm_clock_init(&apq8064_clock_init_data);
757 else
758 msm_clock_init(&apq8064_dummy_clock_init_data);
759}
760
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700761static void __init apq8064_common_init(void)
762{
763 if (socinfo_init() < 0)
764 pr_err("socinfo_init() failed!\n");
Tianyi Gou41515e22011-09-01 19:37:43 -0700765 apq8064_clock_init();
Joel King4ebccc62011-07-22 09:43:22 -0700766 gpiomux_init();
Kenneth Heitke748593a2011-07-15 15:45:11 -0600767 apq8064_i2c_init();
Kenneth Heitke36920d32011-07-20 16:44:30 -0600768
Harini Jayaramanc4c58692011-07-19 14:50:10 -0600769 apq8064_device_qup_spi_gsbi5.dev.platform_data =
770 &apq8064_qup_spi_gsbi5_pdata;
Kenneth Heitke36920d32011-07-20 16:44:30 -0600771 apq8064_device_ssbi_pmic1.dev.platform_data =
Jay Chokshiea67c622011-07-29 17:12:26 -0700772 &apq8064_ssbi_pm8921_pdata;
Kenneth Heitke36920d32011-07-20 16:44:30 -0600773 apq8064_device_ssbi_pmic2.dev.platform_data =
774 &apq8064_ssbi_pm8821_pdata;
Stepan Moskovchenko14aa6492011-08-08 15:15:01 -0700775 apq8064_device_otg.dev.platform_data = &msm_otg_pdata;
Jay Chokshibc3d98d2011-08-10 17:14:23 -0700776 apq8064_pm8921_platform_data.num_regulators =
Jay Chokshiea67c622011-07-29 17:12:26 -0700777 msm8064_pm8921_regulator_pdata_len;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700778 platform_add_devices(common_devices, ARRAY_SIZE(common_devices));
Sahitya Tummala3586ed92011-08-03 09:13:23 +0530779 apq8064_init_mmc();
Sagar Dharia8bdcdaf2011-09-16 16:01:15 -0600780 slim_register_board_info(apq8064_slim_devices,
781 ARRAY_SIZE(apq8064_slim_devices));
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700782}
783
784static void __init apq8064_sim_init(void)
785{
Jeff Ohlstein7e668552011-10-06 16:17:25 -0700786 struct msm_watchdog_pdata *wdog_pdata = (struct msm_watchdog_pdata *)
787 &msm8064_device_watchdog.dev.platform_data;
788
789 wdog_pdata->bark_time = 15000;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700790 apq8064_common_init();
Joel King4e7ad222011-08-17 15:47:38 -0700791 platform_add_devices(sim_devices, ARRAY_SIZE(sim_devices));
792}
793
794static void __init apq8064_rumi3_init(void)
795{
Jay Chokshi9c25f072011-09-23 18:19:15 -0700796 apq8064_pm8921_irq_pdata.devirq = 0;
797 apq8064_pm8821_irq_pdata.devirq = 0;
Joel King4e7ad222011-08-17 15:47:38 -0700798 apq8064_common_init();
Stepan Moskovchenkoeed82a52011-09-02 13:19:23 -0700799 ethernet_init();
Stepan Moskovchenko2701a442011-08-19 13:47:22 -0700800 platform_add_devices(rumi3_devices, ARRAY_SIZE(rumi3_devices));
Stepan Moskovchenkoeed82a52011-09-02 13:19:23 -0700801 spi_register_board_info(spi_board_info, ARRAY_SIZE(spi_board_info));
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700802}
803
804MACHINE_START(APQ8064_SIM, "QCT APQ8064 SIMULATOR")
805 .map_io = apq8064_map_io,
Kevin Chan13be4e22011-10-20 11:30:32 -0700806 .reserve = apq8064_reserve,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700807 .init_irq = apq8064_init_irq,
808 .timer = &msm_timer,
809 .init_machine = apq8064_sim_init,
810MACHINE_END
811
Joel King4e7ad222011-08-17 15:47:38 -0700812MACHINE_START(APQ8064_RUMI3, "QCT APQ8064 RUMI3")
813 .map_io = apq8064_map_io,
Kevin Chan13be4e22011-10-20 11:30:32 -0700814 .reserve = apq8064_reserve,
Joel King4e7ad222011-08-17 15:47:38 -0700815 .init_irq = apq8064_init_irq,
816 .timer = &msm_timer,
817 .init_machine = apq8064_rumi3_init,
818MACHINE_END
819