common.h 793 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * This file contains common function prototypes to avoid externs in the c files.
 *
 * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
 *
 * Licensed under GPLv2 or later.
 */

#ifndef __MACH_PRIMA2_COMMON_H__
#define __MACH_PRIMA2_COMMON_H__

#include <linux/init.h>
13 14
#include <linux/reboot.h>

15
#include <asm/mach/time.h>
16
#include <asm/exception.h>
17

18
extern const struct smp_operations sirfsoc_smp_ops;
19 20
extern void sirfsoc_secondary_startup(void);
extern void sirfsoc_cpu_die(unsigned int cpu);
21 22

extern void __init sirfsoc_of_irq_init(void);
23
extern asmlinkage void __exception_irq_entry sirfsoc_handle_irq(struct pt_regs *regs);
24

25 26 27 28 29 30
#ifdef CONFIG_SUSPEND
extern int sirfsoc_pm_init(void);
#else
static inline int sirfsoc_pm_init(void) { return 0; }
#endif

31
#endif