blob: 9f66e5db8b30e7dc7c7d818b06c8be100c32f802 [file] [log] [blame]
Manu Gautam5143b252012-01-05 19:25:23 -08001/* Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002 *
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
Ben Romberger3ffcd812011-12-08 19:12:10 -080051#define MSM_PMEM_AUDIO_SIZE 0x2B4000
Kevin Chan13be4e22011-10-20 11:30:32 -070052#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
Kevin Chan13be4e22011-10-20 11:30:32 -0700155static void __init reserve_pmem_memory(void)
156{
157 reserve_memory_for(&android_pmem_adsp_pdata);
158 reserve_memory_for(&android_pmem_pdata);
159 reserve_memory_for(&android_pmem_audio_pdata);
160 apq8064_reserve_table[MEMTYPE_EBI1].size += pmem_kernel_ebi1_size;
161}
162
163static void __init apq8064_calculate_reserve_sizes(void)
164{
165 size_pmem_devices();
166 reserve_pmem_memory();
167}
168
169static struct reserve_info apq8064_reserve_info __initdata = {
170 .memtype_reserve_table = apq8064_reserve_table,
171 .calculate_reserve_sizes = apq8064_calculate_reserve_sizes,
172 .paddr_to_memtype = apq8064_paddr_to_memtype,
173};
174
175static int apq8064_memory_bank_size(void)
176{
177 return 1<<29;
178}
179
180static void __init locate_unstable_memory(void)
181{
182 struct membank *mb = &meminfo.bank[meminfo.nr_banks - 1];
183 unsigned long bank_size;
184 unsigned long low, high;
185
186 bank_size = apq8064_memory_bank_size();
187 low = meminfo.bank[0].start;
188 high = mb->start + mb->size;
189 low &= ~(bank_size - 1);
190
191 if (high - low <= bank_size)
192 return;
193 apq8064_reserve_info.low_unstable_address = low + bank_size;
194 apq8064_reserve_info.max_unstable_size = high - low - bank_size;
195 apq8064_reserve_info.bank_size = bank_size;
196 pr_info("low unstable address %lx max size %lx bank size %lx\n",
197 apq8064_reserve_info.low_unstable_address,
198 apq8064_reserve_info.max_unstable_size,
199 apq8064_reserve_info.bank_size);
200}
201
202static void __init apq8064_reserve(void)
203{
204 reserve_info = &apq8064_reserve_info;
205 locate_unstable_memory();
206 msm_reserve();
207}
208
Hemant Kumar4933b072011-10-17 23:43:11 -0700209static struct platform_device android_usb_device = {
210 .name = "android_usb",
211 .id = -1,
212};
213
214static struct msm_otg_platform_data msm_otg_pdata = {
215 .mode = USB_PERIPHERAL,
216 .otg_control = OTG_PHY_CONTROL,
217 .phy_type = SNPS_28NM_INTEGRATED_PHY,
Hemant Kumar4933b072011-10-17 23:43:11 -0700218};
219
Swaminathan Sathappan2f51a752011-12-05 12:51:19 -0800220#define TABLA_INTERRUPT_BASE (NR_MSM_IRQS + NR_GPIO_IRQS + NR_PM8921_IRQS)
221
222/* Micbias setting is based on 8660 CDP/MTP/FLUID requirement
223 * 4 micbiases are used to power various analog and digital
224 * microphones operating at 1800 mV. Technically, all micbiases
225 * can source from single cfilter since all microphones operate
226 * at the same voltage level. The arrangement below is to make
227 * sure all cfilters are exercised. LDO_H regulator ouput level
228 * does not need to be as high as 2.85V. It is choosen for
229 * microphone sensitivity purpose.
230 */
231static struct tabla_pdata apq8064_tabla_platform_data = {
232 .slimbus_slave_device = {
233 .name = "tabla-slave",
234 .e_addr = {0, 0, 0x10, 0, 0x17, 2},
235 },
Swaminathan Sathappancef966d2011-12-15 17:27:04 -0800236 .irq = MSM_GPIO_TO_INT(42),
Swaminathan Sathappan2f51a752011-12-05 12:51:19 -0800237 .irq_base = TABLA_INTERRUPT_BASE,
238 .num_irqs = NR_TABLA_IRQS,
239 .reset_gpio = PM8921_GPIO_PM_TO_SYS(34),
240 .micbias = {
241 .ldoh_v = TABLA_LDOH_2P85_V,
242 .cfilt1_mv = 1800,
243 .cfilt2_mv = 1800,
244 .cfilt3_mv = 1800,
245 .bias1_cfilt_sel = TABLA_CFILT1_SEL,
246 .bias2_cfilt_sel = TABLA_CFILT2_SEL,
247 .bias3_cfilt_sel = TABLA_CFILT3_SEL,
248 .bias4_cfilt_sel = TABLA_CFILT3_SEL,
249 }
250};
251
252static struct slim_device apq8064_slim_tabla = {
253 .name = "tabla-slim",
254 .e_addr = {0, 1, 0x10, 0, 0x17, 2},
255 .dev = {
256 .platform_data = &apq8064_tabla_platform_data,
257 },
258};
259
Swaminathan Sathappancef966d2011-12-15 17:27:04 -0800260static struct tabla_pdata apq8064_tabla20_platform_data = {
261 .slimbus_slave_device = {
262 .name = "tabla-slave",
263 .e_addr = {0, 0, 0x60, 0, 0x17, 2},
264 },
265 .irq = MSM_GPIO_TO_INT(42),
266 .irq_base = TABLA_INTERRUPT_BASE,
267 .num_irqs = NR_TABLA_IRQS,
268 .reset_gpio = PM8921_GPIO_PM_TO_SYS(34),
269 .micbias = {
270 .ldoh_v = TABLA_LDOH_2P85_V,
271 .cfilt1_mv = 1800,
272 .cfilt2_mv = 1800,
273 .cfilt3_mv = 1800,
274 .bias1_cfilt_sel = TABLA_CFILT1_SEL,
275 .bias2_cfilt_sel = TABLA_CFILT2_SEL,
276 .bias3_cfilt_sel = TABLA_CFILT3_SEL,
277 .bias4_cfilt_sel = TABLA_CFILT3_SEL,
278 }
279};
280
281static struct slim_device apq8064_slim_tabla20 = {
282 .name = "tabla2x-slim",
283 .e_addr = {0, 1, 0x60, 0, 0x17, 2},
284 .dev = {
285 .platform_data = &apq8064_tabla20_platform_data,
286 },
287};
288
Ramesh Masavarapu28311912011-10-27 11:04:12 -0700289#if defined(CONFIG_CRYPTO_DEV_QCRYPTO) || \
290 defined(CONFIG_CRYPTO_DEV_QCRYPTO_MODULE) || \
291 defined(CONFIG_CRYPTO_DEV_QCEDEV) || \
292 defined(CONFIG_CRYPTO_DEV_QCEDEV_MODULE)
293
294#define QCE_SIZE 0x10000
295#define QCE_0_BASE 0x11000000
296
297#define QCE_HW_KEY_SUPPORT 0
298#define QCE_SHA_HMAC_SUPPORT 1
299#define QCE_SHARE_CE_RESOURCE 3
300#define QCE_CE_SHARED 0
301
302static struct resource qcrypto_resources[] = {
303 [0] = {
304 .start = QCE_0_BASE,
305 .end = QCE_0_BASE + QCE_SIZE - 1,
306 .flags = IORESOURCE_MEM,
307 },
308 [1] = {
309 .name = "crypto_channels",
310 .start = DMOV8064_CE_IN_CHAN,
311 .end = DMOV8064_CE_OUT_CHAN,
312 .flags = IORESOURCE_DMA,
313 },
314 [2] = {
315 .name = "crypto_crci_in",
316 .start = DMOV8064_CE_IN_CRCI,
317 .end = DMOV8064_CE_IN_CRCI,
318 .flags = IORESOURCE_DMA,
319 },
320 [3] = {
321 .name = "crypto_crci_out",
322 .start = DMOV8064_CE_OUT_CRCI,
323 .end = DMOV8064_CE_OUT_CRCI,
324 .flags = IORESOURCE_DMA,
325 },
326};
327
328static struct resource qcedev_resources[] = {
329 [0] = {
330 .start = QCE_0_BASE,
331 .end = QCE_0_BASE + QCE_SIZE - 1,
332 .flags = IORESOURCE_MEM,
333 },
334 [1] = {
335 .name = "crypto_channels",
336 .start = DMOV8064_CE_IN_CHAN,
337 .end = DMOV8064_CE_OUT_CHAN,
338 .flags = IORESOURCE_DMA,
339 },
340 [2] = {
341 .name = "crypto_crci_in",
342 .start = DMOV8064_CE_IN_CRCI,
343 .end = DMOV8064_CE_IN_CRCI,
344 .flags = IORESOURCE_DMA,
345 },
346 [3] = {
347 .name = "crypto_crci_out",
348 .start = DMOV8064_CE_OUT_CRCI,
349 .end = DMOV8064_CE_OUT_CRCI,
350 .flags = IORESOURCE_DMA,
351 },
352};
353
354#endif
355
356#if defined(CONFIG_CRYPTO_DEV_QCRYPTO) || \
357 defined(CONFIG_CRYPTO_DEV_QCRYPTO_MODULE)
358
359static struct msm_ce_hw_support qcrypto_ce_hw_suppport = {
360 .ce_shared = QCE_CE_SHARED,
361 .shared_ce_resource = QCE_SHARE_CE_RESOURCE,
362 .hw_key_support = QCE_HW_KEY_SUPPORT,
363 .sha_hmac = QCE_SHA_HMAC_SUPPORT,
Ramesh Masavarapu49259682011-12-02 14:00:18 -0800364 .bus_scale_table = NULL,
Ramesh Masavarapu28311912011-10-27 11:04:12 -0700365};
366
367static struct platform_device qcrypto_device = {
368 .name = "qcrypto",
369 .id = 0,
370 .num_resources = ARRAY_SIZE(qcrypto_resources),
371 .resource = qcrypto_resources,
372 .dev = {
373 .coherent_dma_mask = DMA_BIT_MASK(32),
374 .platform_data = &qcrypto_ce_hw_suppport,
375 },
376};
377#endif
378
379#if defined(CONFIG_CRYPTO_DEV_QCEDEV) || \
380 defined(CONFIG_CRYPTO_DEV_QCEDEV_MODULE)
381
382static struct msm_ce_hw_support qcedev_ce_hw_suppport = {
383 .ce_shared = QCE_CE_SHARED,
384 .shared_ce_resource = QCE_SHARE_CE_RESOURCE,
385 .hw_key_support = QCE_HW_KEY_SUPPORT,
386 .sha_hmac = QCE_SHA_HMAC_SUPPORT,
Ramesh Masavarapu49259682011-12-02 14:00:18 -0800387 .bus_scale_table = NULL,
Ramesh Masavarapu28311912011-10-27 11:04:12 -0700388};
389
390static struct platform_device qcedev_device = {
391 .name = "qce",
392 .id = 0,
393 .num_resources = ARRAY_SIZE(qcedev_resources),
394 .resource = qcedev_resources,
395 .dev = {
396 .coherent_dma_mask = DMA_BIT_MASK(32),
397 .platform_data = &qcedev_ce_hw_suppport,
398 },
399};
400#endif
401
402
Jeff Hugo0c0f5e92011-09-28 13:55:45 -0600403#define MSM_SHARED_RAM_PHYS 0x80000000
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700404static void __init apq8064_map_io(void)
405{
Jeff Hugo0c0f5e92011-09-28 13:55:45 -0600406 msm_shared_ram_phys = MSM_SHARED_RAM_PHYS;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700407 msm_map_apq8064_io();
Jeff Ohlstein3a77f9f2011-09-06 14:50:20 -0700408 if (socinfo_init() < 0)
409 pr_err("socinfo_init() failed!\n");
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700410}
411
412static void __init apq8064_init_irq(void)
413{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700414 gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE,
415 (void *)MSM_QGIC_CPU_BASE);
416
417 /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */
418 writel_relaxed(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4);
419
420 writel_relaxed(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET);
421 mb();
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700422}
423
Jay Chokshi7805b5a2011-11-07 15:55:30 -0800424static struct platform_device msm8064_device_saw_regulator_core0 = {
425 .name = "saw-regulator",
426 .id = 0,
427 .dev = {
428 .platform_data = &msm8064_saw_regulator_pdata_8921_s5,
429 },
430};
431
432static struct platform_device msm8064_device_saw_regulator_core1 = {
433 .name = "saw-regulator",
434 .id = 1,
435 .dev = {
436 .platform_data = &msm8064_saw_regulator_pdata_8921_s6,
437 },
438};
439
440static struct platform_device msm8064_device_saw_regulator_core2 = {
441 .name = "saw-regulator",
442 .id = 2,
443 .dev = {
444 .platform_data = &msm8064_saw_regulator_pdata_8821_s0,
445 },
446};
447
448static struct platform_device msm8064_device_saw_regulator_core3 = {
449 .name = "saw-regulator",
450 .id = 3,
451 .dev = {
452 .platform_data = &msm8064_saw_regulator_pdata_8821_s1,
453 },
454};
455
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700456static struct platform_device *common_devices[] __initdata = {
Jin Hong01f2dbb2011-11-03 22:13:51 -0700457 &apq8064_device_dmov,
Kenneth Heitke748593a2011-07-15 15:45:11 -0600458 &apq8064_device_qup_i2c_gsbi4,
Harini Jayaramanc4c58692011-07-19 14:50:10 -0600459 &apq8064_device_qup_spi_gsbi5,
Sagar Dharia8bdcdaf2011-09-16 16:01:15 -0600460 &apq8064_slim_ctrl,
Jay Chokshi9c25f072011-09-23 18:19:15 -0700461 &apq8064_device_ssbi_pmic1,
462 &apq8064_device_ssbi_pmic2,
Jeff Hugo0c0f5e92011-09-28 13:55:45 -0600463 &msm_device_smd_apq8064,
Hemant Kumar4933b072011-10-17 23:43:11 -0700464 &apq8064_device_otg,
465 &apq8064_device_gadget_peripheral,
466 &android_usb_device,
Kevin Chan13be4e22011-10-20 11:30:32 -0700467 &android_pmem_device,
468 &android_pmem_adsp_device,
469 &android_pmem_audio_device,
Jeff Ohlstein7e668552011-10-06 16:17:25 -0700470 &msm8064_device_watchdog,
Jay Chokshi7805b5a2011-11-07 15:55:30 -0800471 &msm8064_device_saw_regulator_core0,
472 &msm8064_device_saw_regulator_core1,
473 &msm8064_device_saw_regulator_core2,
474 &msm8064_device_saw_regulator_core3,
Ramesh Masavarapu28311912011-10-27 11:04:12 -0700475#if defined(CONFIG_CRYPTO_DEV_QCRYPTO) || \
476 defined(CONFIG_CRYPTO_DEV_QCRYPTO_MODULE)
477 &qcrypto_device,
478#endif
479
480#if defined(CONFIG_CRYPTO_DEV_QCEDEV) || \
481 defined(CONFIG_CRYPTO_DEV_QCEDEV_MODULE)
482 &qcedev_device,
483#endif
Ramesh Masavarapuf46be1b2011-11-03 11:13:41 -0700484
485#ifdef CONFIG_HW_RANDOM_MSM
486 &apq8064_device_rng,
487#endif
Bharath Ramachandramurthyb8e797f2011-11-30 12:08:42 -0800488 &apq_pcm,
489 &apq_pcm_routing,
490 &apq_cpudai0,
491 &apq_cpudai1,
492 &apq_cpudai_hdmi_rx,
493 &apq_cpudai_bt_rx,
494 &apq_cpudai_bt_tx,
495 &apq_cpudai_fm_rx,
496 &apq_cpudai_fm_tx,
497 &apq_cpu_fe,
498 &apq_stub_codec,
499 &apq_voice,
500 &apq_voip,
501 &apq_lpa_pcm,
502 &apq_pcm_hostless,
503 &apq_cpudai_afe_01_rx,
504 &apq_cpudai_afe_01_tx,
505 &apq_cpudai_afe_02_rx,
506 &apq_cpudai_afe_02_tx,
507 &apq_pcm_afe,
508 &apq_cpudai_auxpcm_rx,
509 &apq_cpudai_auxpcm_tx,
Harini Jayaramanc4c58692011-07-19 14:50:10 -0600510};
511
Joel King4e7ad222011-08-17 15:47:38 -0700512static struct platform_device *sim_devices[] __initdata = {
Stepan Moskovchenko2701a442011-08-19 13:47:22 -0700513 &apq8064_device_uart_gsbi3,
Yan He06913ce2011-08-26 16:33:46 -0700514 &msm_device_sps_apq8064,
Stepan Moskovchenko2701a442011-08-19 13:47:22 -0700515};
516
517static struct platform_device *rumi3_devices[] __initdata = {
518 &apq8064_device_uart_gsbi1,
Yan He435ed612011-11-23 17:34:59 -0800519 &msm_device_sps_apq8064,
Joel King4e7ad222011-08-17 15:47:38 -0700520};
521
Harini Jayaramanc4c58692011-07-19 14:50:10 -0600522static struct msm_spi_platform_data apq8064_qup_spi_gsbi5_pdata = {
Harini Jayaraman60ee14c2011-11-09 18:53:27 -0700523 .max_clock_speed = 24000000,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700524};
525
Stepan Moskovchenkoeed82a52011-09-02 13:19:23 -0700526#define KS8851_IRQ_GPIO 43
527
528static struct spi_board_info spi_board_info[] __initdata = {
529 {
530 .modalias = "ks8851",
531 .irq = MSM_GPIO_TO_INT(KS8851_IRQ_GPIO),
532 .max_speed_hz = 19200000,
533 .bus_num = 0,
534 .chip_select = 2,
535 .mode = SPI_MODE_0,
536 },
537};
538
Sagar Dharia8bdcdaf2011-09-16 16:01:15 -0600539static struct slim_boardinfo apq8064_slim_devices[] = {
Swaminathan Sathappan2f51a752011-12-05 12:51:19 -0800540 {
Swaminathan Sathappancef966d2011-12-15 17:27:04 -0800541 .bus_num = 1,
542 .slim_slave = &apq8064_slim_tabla,
543 },
544 {
545 .bus_num = 1,
546 .slim_slave = &apq8064_slim_tabla20,
Swaminathan Sathappan2f51a752011-12-05 12:51:19 -0800547 },
548 /* add more slimbus slaves as needed */
Sagar Dharia8bdcdaf2011-09-16 16:01:15 -0600549};
550
Kenneth Heitke748593a2011-07-15 15:45:11 -0600551static struct msm_i2c_platform_data apq8064_i2c_qup_gsbi4_pdata = {
552 .clk_freq = 100000,
553 .src_clk_rate = 24000000,
Kenneth Heitke748593a2011-07-15 15:45:11 -0600554};
555
556static void __init apq8064_i2c_init(void)
557{
558 apq8064_device_qup_i2c_gsbi4.dev.platform_data =
559 &apq8064_i2c_qup_gsbi4_pdata;
560}
561
Stepan Moskovchenkoeed82a52011-09-02 13:19:23 -0700562#ifdef CONFIG_KS8851
563static int ethernet_init(void)
564{
565 int ret;
566 ret = gpio_request(KS8851_IRQ_GPIO, "ks8851_irq");
567 if (ret) {
568 pr_err("ks8851 gpio_request failed: %d\n", ret);
569 goto fail;
570 }
571
572 return 0;
573fail:
574 return ret;
575}
576#else
577static int ethernet_init(void)
578{
579 return 0;
580}
581#endif
582
Tianyi Gou41515e22011-09-01 19:37:43 -0700583static void __init apq8064_clock_init(void)
584{
585 if (machine_is_apq8064_sim())
586 msm_clock_init(&apq8064_clock_init_data);
587 else
588 msm_clock_init(&apq8064_dummy_clock_init_data);
589}
590
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700591static void __init apq8064_common_init(void)
592{
593 if (socinfo_init() < 0)
594 pr_err("socinfo_init() failed!\n");
Tianyi Gou41515e22011-09-01 19:37:43 -0700595 apq8064_clock_init();
Stepan Moskovchenko2327a952011-12-14 16:31:28 -0800596 apq8064_init_gpiomux();
Kenneth Heitke748593a2011-07-15 15:45:11 -0600597 apq8064_i2c_init();
Kenneth Heitke36920d32011-07-20 16:44:30 -0600598
Harini Jayaramanc4c58692011-07-19 14:50:10 -0600599 apq8064_device_qup_spi_gsbi5.dev.platform_data =
600 &apq8064_qup_spi_gsbi5_pdata;
Stepan Moskovchenkoc1074f02011-12-14 17:51:57 -0800601 apq8064_init_pmic();
Stepan Moskovchenko14aa6492011-08-08 15:15:01 -0700602 apq8064_device_otg.dev.platform_data = &msm_otg_pdata;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700603 platform_add_devices(common_devices, ARRAY_SIZE(common_devices));
Sahitya Tummala3586ed92011-08-03 09:13:23 +0530604 apq8064_init_mmc();
Sagar Dharia8bdcdaf2011-09-16 16:01:15 -0600605 slim_register_board_info(apq8064_slim_devices,
606 ARRAY_SIZE(apq8064_slim_devices));
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700607}
608
609static void __init apq8064_sim_init(void)
610{
Jeff Ohlstein7e668552011-10-06 16:17:25 -0700611 struct msm_watchdog_pdata *wdog_pdata = (struct msm_watchdog_pdata *)
612 &msm8064_device_watchdog.dev.platform_data;
613
614 wdog_pdata->bark_time = 15000;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700615 apq8064_common_init();
Joel King4e7ad222011-08-17 15:47:38 -0700616 platform_add_devices(sim_devices, ARRAY_SIZE(sim_devices));
617}
618
619static void __init apq8064_rumi3_init(void)
620{
621 apq8064_common_init();
Stepan Moskovchenkoeed82a52011-09-02 13:19:23 -0700622 ethernet_init();
Stepan Moskovchenko2701a442011-08-19 13:47:22 -0700623 platform_add_devices(rumi3_devices, ARRAY_SIZE(rumi3_devices));
Stepan Moskovchenkoeed82a52011-09-02 13:19:23 -0700624 spi_register_board_info(spi_board_info, ARRAY_SIZE(spi_board_info));
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700625}
626
627MACHINE_START(APQ8064_SIM, "QCT APQ8064 SIMULATOR")
628 .map_io = apq8064_map_io,
Kevin Chan13be4e22011-10-20 11:30:32 -0700629 .reserve = apq8064_reserve,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700630 .init_irq = apq8064_init_irq,
Marc Zyngier89bdafd12011-12-22 11:39:20 +0530631 .handle_irq = gic_handle_irq,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700632 .timer = &msm_timer,
633 .init_machine = apq8064_sim_init,
634MACHINE_END
635
Joel King4e7ad222011-08-17 15:47:38 -0700636MACHINE_START(APQ8064_RUMI3, "QCT APQ8064 RUMI3")
637 .map_io = apq8064_map_io,
Kevin Chan13be4e22011-10-20 11:30:32 -0700638 .reserve = apq8064_reserve,
Joel King4e7ad222011-08-17 15:47:38 -0700639 .init_irq = apq8064_init_irq,
Marc Zyngier89bdafd12011-12-22 11:39:20 +0530640 .handle_irq = gic_handle_irq,
Joel King4e7ad222011-08-17 15:47:38 -0700641 .timer = &msm_timer,
642 .init_machine = apq8064_rumi3_init,
643MACHINE_END
644