ux500: remove build-time changing macros
[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>
16
591d8dd7 17extern void __init u5500_map_io(void);
178980f9
RV
18extern void __init u8500_map_io(void);
19
591d8dd7 20extern void __init u5500_init_devices(void);
d48fd006
RV
21extern void __init u8500_init_devices(void);
22
178980f9 23extern void __init ux500_init_irq(void);
bab263e0
PF
24
25extern void __init u5500_sdi_init(void);
26
e8b1cc3a
PF
27extern void __init db5500_dma_init(void);
28
aa44ef4d
SK
29/* We re-use nomadik_timer for this platform */
30extern void nmdk_timer_init(void);
31
fbf1eadf 32struct amba_device;
d48fd006
RV
33extern void __init amba_add_devices(struct amba_device *devs[], int num);
34
cc2c1334 35struct sys_timer;
41ac329f 36extern struct sys_timer ux500_timer;
cc2c1334 37
178980f9
RV
38#define __IO_DEV_DESC(x, sz) { \
39 .virtual = IO_ADDRESS(x), \
40 .pfn = __phys_to_pfn(x), \
41 .length = sz, \
42 .type = MT_DEVICE, \
43}
44
f946738c
LW
45#define __MEM_DEV_DESC(x, sz) { \
46 .virtual = IO_ADDRESS(x), \
47 .pfn = __phys_to_pfn(x), \
48 .length = sz, \
49 .type = MT_MEMORY, \
50}
51
aa44ef4d 52#endif /* __ASM_ARCH_SETUP_H */
This page took 0.15224 seconds and 5 git commands to generate.