blob: 33c7725adae2ffd5f885011c2bcd549030c159fd [file] [log] [blame]
Stephen Boyd4312a7e2012-09-05 12:28:52 -07001/* Copyright (c) 2012, The Linux Foundation. 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#ifndef __MACH_COMMON_H
13#define __MACH_COMMON_H
14
Stephen Warren6bb27d72012-11-08 12:40:59 -070015extern void msm7x01_timer_init(void);
16extern void msm7x30_timer_init(void);
Stephen Warren6bb27d72012-11-08 12:40:59 -070017extern void qsd8x50_timer_init(void);
Stephen Boyd4312a7e2012-09-05 12:28:52 -070018
Stephen Boyd85a9f0f2012-09-05 12:28:57 -070019extern void msm_map_common_io(void);
20extern void msm_map_msm7x30_io(void);
Stephen Boyd85a9f0f2012-09-05 12:28:57 -070021extern void msm_map_qsd8x50_io(void);
22
Laura Abbott9b971732013-05-16 19:40:22 +010023extern void __iomem *__msm_ioremap_caller(phys_addr_t phys_addr, size_t size,
Stephen Boyd85a9f0f2012-09-05 12:28:57 -070024 unsigned int mtype, void *caller);
25
David Brownbe2109e2012-09-12 16:01:40 -070026extern struct smp_operations msm_smp_ops;
27extern void msm_cpu_die(unsigned int cpu);
Stephen Boyd85a9f0f2012-09-05 12:28:57 -070028
Stephen Boydebea60b2013-07-24 13:54:31 -070029struct msm_mmc_platform_data;
30
31extern void msm_add_devices(void);
32extern void msm_init_irq(void);
33extern void msm_init_gpio(void);
34extern int msm_add_sdcc(unsigned int controller,
35 struct msm_mmc_platform_data *plat,
36 unsigned int stat_irq, unsigned long stat_irq_flags);
37
38#if defined(CONFIG_MSM_SMD) && defined(CONFIG_DEBUG_FS)
39extern int smd_debugfs_init(void);
40#else
41static inline int smd_debugfs_init(void) { return 0; }
42#endif
43
Stephen Boyd4312a7e2012-09-05 12:28:52 -070044#endif