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> |
Barry Song | f2a9419 | 2012-12-20 19:11:18 +0800 | [diff] [blame] | 14 | #include <asm/exception.h> |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 15 | |
Arnd Bergmann | cf82e0e | 2013-03-19 17:45:37 +0100 | [diff] [blame^] | 16 | #define SIRFSOC_VA_BASE _AC(0xFEC00000, UL) |
| 17 | #define SIRFSOC_VA(x) (SIRFSOC_VA_BASE + ((x) & 0x00FFF000)) |
| 18 | |
Barry Song | 4898de3 | 2012-12-20 19:37:32 +0800 | [diff] [blame] | 19 | extern struct smp_operations sirfsoc_smp_ops; |
| 20 | extern void sirfsoc_secondary_startup(void); |
| 21 | extern void sirfsoc_cpu_die(unsigned int cpu); |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 22 | |
| 23 | extern void __init sirfsoc_of_irq_init(void); |
| 24 | extern void __init sirfsoc_of_clk_init(void); |
Russell King | 125c403 | 2011-11-05 10:23:27 +0000 | [diff] [blame] | 25 | extern void sirfsoc_restart(char, const char *); |
Barry Song | f2a9419 | 2012-12-20 19:11:18 +0800 | [diff] [blame] | 26 | extern asmlinkage void __exception_irq_entry sirfsoc_handle_irq(struct pt_regs *regs); |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 27 | |
Barry Song | 31adb06 | 2011-07-08 02:40:13 -0700 | [diff] [blame] | 28 | #ifndef CONFIG_DEBUG_LL |
| 29 | static inline void sirfsoc_map_lluart(void) {} |
| 30 | #else |
| 31 | extern void __init sirfsoc_map_lluart(void); |
| 32 | #endif |
| 33 | |
Barry Song | 4898de3 | 2012-12-20 19:37:32 +0800 | [diff] [blame] | 34 | #ifndef CONFIG_SMP |
| 35 | static inline void sirfsoc_map_scu(void) {} |
| 36 | #else |
| 37 | extern void sirfsoc_map_scu(void); |
| 38 | #endif |
| 39 | |
Shawn Guo | a4b4674 | 2012-04-26 20:51:36 +0800 | [diff] [blame] | 40 | #ifdef CONFIG_SUSPEND |
| 41 | extern int sirfsoc_pm_init(void); |
| 42 | #else |
| 43 | static inline int sirfsoc_pm_init(void) { return 0; } |
| 44 | #endif |
| 45 | |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 46 | #endif |