ux500: dynamic SOC detection
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-ux500 / include / mach / setup.h
bloba7d363fdb4cd7ba3f88591ffa7222f156e3c6a27
1 /*
2 * Copyright (C) 2009 ST-Ericsson.
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.
8 * These symbols are needed for board-specific files to call their
9 * own cpu-specific files
11 #ifndef __ASM_ARCH_SETUP_H
12 #define __ASM_ARCH_SETUP_H
14 #include <asm/mach/time.h>
15 #include <linux/init.h>
17 void __init ux500_map_io(void);
18 extern void __init u5500_map_io(void);
19 extern void __init u8500_map_io(void);
21 extern void __init u5500_init_devices(void);
22 extern void __init u8500_init_devices(void);
24 extern void __init ux500_init_irq(void);
26 extern void __init u5500_sdi_init(void);
28 extern void __init db5500_dma_init(void);
30 /* We re-use nomadik_timer for this platform */
31 extern void nmdk_timer_init(void);
33 struct amba_device;
34 extern void __init amba_add_devices(struct amba_device *devs[], int num);
36 struct sys_timer;
37 extern struct sys_timer ux500_timer;
39 #define __IO_DEV_DESC(x, sz) { \
40 .virtual = IO_ADDRESS(x), \
41 .pfn = __phys_to_pfn(x), \
42 .length = sz, \
43 .type = MT_DEVICE, \
46 #define __MEM_DEV_DESC(x, sz) { \
47 .virtual = IO_ADDRESS(x), \
48 .pfn = __phys_to_pfn(x), \
49 .length = sz, \
50 .type = MT_MEMORY, \
53 #endif /* __ASM_ARCH_SETUP_H */