Linux 3.11-rc5
[deliverable/linux.git] / arch / arm / mach-ux500 / setup.h
CommitLineData
aa44ef4d
SK
1/*
2 * Copyright (C) 2009 ST-Ericsson.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * These symbols are needed for board-specific files to call their
9 * own cpu-specific files
10 */
11#ifndef __ASM_ARCH_SETUP_H
12#define __ASM_ARCH_SETUP_H
13
14#include <asm/mach/time.h>
15#include <linux/init.h>
3a8e39c9 16#include <linux/mfd/abx500/ab8500.h>
aa44ef4d 17
abf12d71 18void __init ux500_map_io(void);
178980f9
RV
19extern void __init u8500_map_io(void);
20
3210c053 21extern struct device * __init u8500_init_devices(void);
d48fd006 22
178980f9 23extern void __init ux500_init_irq(void);
a010bc2b 24extern void __init ux500_init_late(void);
bab263e0 25
eda413c2 26extern struct device *ux500_soc_device_init(const char *soc_id);
e8b1cc3a 27
fbf1eadf 28struct amba_device;
d48fd006
RV
29extern void __init amba_add_devices(struct amba_device *devs[], int num);
30
6bb27d73 31extern void ux500_timer_init(void);
cc2c1334 32
178980f9
RV
33#define __IO_DEV_DESC(x, sz) { \
34 .virtual = IO_ADDRESS(x), \
35 .pfn = __phys_to_pfn(x), \
36 .length = sz, \
37 .type = MT_DEVICE, \
38}
39
f946738c
LW
40#define __MEM_DEV_DESC(x, sz) { \
41 .virtual = IO_ADDRESS(x), \
42 .pfn = __phys_to_pfn(x), \
43 .length = sz, \
44 .type = MT_MEMORY, \
45}
46
5ac21a94
MZ
47extern struct smp_operations ux500_smp_ops;
48extern void ux500_cpu_die(unsigned int cpu);
49
aa44ef4d 50#endif /* __ASM_ARCH_SETUP_H */
This page took 0.195212 seconds and 5 git commands to generate.