Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 1 | /* |
| 2 | * This file contains common function prototypes to avoid externs in the c files. |
| 3 | * |
| 4 | * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company. |
| 5 | * |
| 6 | * Licensed under GPLv2 or later. |
| 7 | */ |
| 8 | |
| 9 | #ifndef __MACH_PRIMA2_COMMON_H__ |
| 10 | #define __MACH_PRIMA2_COMMON_H__ |
| 11 | |
| 12 | #include <linux/init.h> |
| 13 | #include <asm/mach/time.h> |
| 14 | |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 15 | extern void sirfsoc_timer_init(void); |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 16 | |
| 17 | extern void __init sirfsoc_of_irq_init(void); |
| 18 | extern void __init sirfsoc_of_clk_init(void); |
Russell King | 125c403 | 2011-11-05 10:23:27 +0000 | [diff] [blame] | 19 | extern void sirfsoc_restart(char, const char *); |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 20 | |
Barry Song | 31adb06 | 2011-07-08 02:40:13 -0700 | [diff] [blame] | 21 | #ifndef CONFIG_DEBUG_LL |
| 22 | static inline void sirfsoc_map_lluart(void) {} |
| 23 | #else |
| 24 | extern void __init sirfsoc_map_lluart(void); |
| 25 | #endif |
| 26 | |
Shawn Guo | a4b4674 | 2012-04-26 20:51:36 +0800 | [diff] [blame] | 27 | #ifdef CONFIG_SUSPEND |
| 28 | extern int sirfsoc_pm_init(void); |
| 29 | #else |
| 30 | static inline int sirfsoc_pm_init(void) { return 0; } |
| 31 | #endif |
| 32 | |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 33 | #endif |