common.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* 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. extern void msm7x01_timer_init(void);
  15. extern void msm7x30_timer_init(void);
  16. extern void qsd8x50_timer_init(void);
  17. extern void msm_map_common_io(void);
  18. extern void msm_map_msm7x30_io(void);
  19. extern void msm_map_qsd8x50_io(void);
  20. extern void __iomem *__msm_ioremap_caller(phys_addr_t phys_addr, size_t size,
  21. unsigned int mtype, void *caller);
  22. extern struct smp_operations msm_smp_ops;
  23. extern void msm_cpu_die(unsigned int cpu);
  24. struct msm_mmc_platform_data;
  25. extern void msm_add_devices(void);
  26. extern void msm_init_irq(void);
  27. extern void msm_init_gpio(void);
  28. extern int msm_add_sdcc(unsigned int controller,
  29. struct msm_mmc_platform_data *plat,
  30. unsigned int stat_irq, unsigned long stat_irq_flags);
  31. #if defined(CONFIG_MSM_SMD) && defined(CONFIG_DEBUG_FS)
  32. extern int smd_debugfs_init(void);
  33. #else
  34. static inline int smd_debugfs_init(void) { return 0; }
  35. #endif
  36. #endif