Merge branch 'for_linus' of git://cavan.codon.org.uk/platform-drivers-x86
[deliverable/linux.git] / arch / arm / mach-prima2 / common.h
CommitLineData
02c981c0
BD
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>
7b6d864b
RH
13#include <linux/reboot.h>
14
02c981c0 15#include <asm/mach/time.h>
f2a94192 16#include <asm/exception.h>
02c981c0 17
cf82e0e4
AB
18#define SIRFSOC_VA_BASE _AC(0xFEC00000, UL)
19#define SIRFSOC_VA(x) (SIRFSOC_VA_BASE + ((x) & 0x00FFF000))
20
4898de3d
BS
21extern struct smp_operations sirfsoc_smp_ops;
22extern void sirfsoc_secondary_startup(void);
23extern void sirfsoc_cpu_die(unsigned int cpu);
02c981c0
BD
24
25extern void __init sirfsoc_of_irq_init(void);
26extern void __init sirfsoc_of_clk_init(void);
7b6d864b 27extern void sirfsoc_restart(enum reboot_mode, const char *);
f2a94192 28extern asmlinkage void __exception_irq_entry sirfsoc_handle_irq(struct pt_regs *regs);
02c981c0 29
31adb06f
BS
30#ifndef CONFIG_DEBUG_LL
31static inline void sirfsoc_map_lluart(void) {}
32#else
33extern void __init sirfsoc_map_lluart(void);
34#endif
35
4898de3d
BS
36#ifndef CONFIG_SMP
37static inline void sirfsoc_map_scu(void) {}
38#else
39extern void sirfsoc_map_scu(void);
40#endif
41
a4b4674e
SG
42#ifdef CONFIG_SUSPEND
43extern int sirfsoc_pm_init(void);
44#else
45static inline int sirfsoc_pm_init(void) { return 0; }
46#endif
47
02c981c0 48#endif
This page took 0.113898 seconds and 5 git commands to generate.