blob: 6d77b622d168502978369df3613abf0763e0563f [file] [log] [blame]
Binghua Duan02c981c2011-07-08 17:40:12 +08001/*
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>
Robin Holt7b6d8642013-07-08 16:01:40 -070013#include <linux/reboot.h>
14
Binghua Duan02c981c2011-07-08 17:40:12 +080015#include <asm/mach/time.h>
Barry Songf2a94192012-12-20 19:11:18 +080016#include <asm/exception.h>
Binghua Duan02c981c2011-07-08 17:40:12 +080017
Masahiro Yamada75305272015-11-15 10:39:53 +090018extern const struct smp_operations sirfsoc_smp_ops;
Barry Song4898de32012-12-20 19:37:32 +080019extern void sirfsoc_secondary_startup(void);
20extern void sirfsoc_cpu_die(unsigned int cpu);
Binghua Duan02c981c2011-07-08 17:40:12 +080021
22extern void __init sirfsoc_of_irq_init(void);
Barry Songf2a94192012-12-20 19:11:18 +080023extern asmlinkage void __exception_irq_entry sirfsoc_handle_irq(struct pt_regs *regs);
Binghua Duan02c981c2011-07-08 17:40:12 +080024
Shawn Guoa4b46742012-04-26 20:51:36 +080025#ifdef CONFIG_SUSPEND
26extern int sirfsoc_pm_init(void);
27#else
28static inline int sirfsoc_pm_init(void) { return 0; }
29#endif
30
Binghua Duan02c981c2011-07-08 17:40:12 +080031#endif