ARM: SoC: convert MSM to SMP operations
[deliverable/linux.git] / arch / arm / mach-ux500 / include / mach / 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
3a8e39c9 21extern struct device * __init u8500_init_devices(struct ab8500_platform_data *ab8500);
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
cc2c1334 31struct sys_timer;
41ac329f 32extern struct sys_timer ux500_timer;
cc2c1334 33
178980f9
RV
34#define __IO_DEV_DESC(x, sz) { \
35 .virtual = IO_ADDRESS(x), \
36 .pfn = __phys_to_pfn(x), \
37 .length = sz, \
38 .type = MT_DEVICE, \
39}
40
f946738c
LW
41#define __MEM_DEV_DESC(x, sz) { \
42 .virtual = IO_ADDRESS(x), \
43 .pfn = __phys_to_pfn(x), \
44 .length = sz, \
45 .type = MT_MEMORY, \
46}
47
aa44ef4d 48#endif /* __ASM_ARCH_SETUP_H */
This page took 0.169134 seconds and 5 git commands to generate.