ux500: remove build-time changing macros
[deliverable/linux.git] / arch / arm / mach-ux500 / include / mach / setup.h
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
17 extern void __init u5500_map_io(void);
18 extern void __init u8500_map_io(void);
19
20 extern void __init u5500_init_devices(void);
21 extern void __init u8500_init_devices(void);
22
23 extern void __init ux500_init_irq(void);
24
25 extern void __init u5500_sdi_init(void);
26
27 extern void __init db5500_dma_init(void);
28
29 /* We re-use nomadik_timer for this platform */
30 extern void nmdk_timer_init(void);
31
32 struct amba_device;
33 extern void __init amba_add_devices(struct amba_device *devs[], int num);
34
35 struct sys_timer;
36 extern struct sys_timer ux500_timer;
37
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
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
52 #endif /* __ASM_ARCH_SETUP_H */
This page took 0.034578 seconds and 5 git commands to generate.