]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/arm/mach-ux500/include/mach/setup.h
ux500: Add eMMC support in U5500.
[mirror_ubuntu-artful-kernel.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
178980f9 17extern void __init ux500_map_io(void);
591d8dd7 18extern void __init u5500_map_io(void);
178980f9
RV
19extern void __init u8500_map_io(void);
20
591d8dd7 21extern void __init u5500_init_devices(void);
d48fd006
RV
22extern void __init u8500_init_devices(void);
23
178980f9 24extern void __init ux500_init_irq(void);
bab263e0
PF
25
26extern void __init u5500_sdi_init(void);
27
aa44ef4d
SK
28/* We re-use nomadik_timer for this platform */
29extern void nmdk_timer_init(void);
30
fbf1eadf 31struct amba_device;
d48fd006
RV
32extern void __init amba_add_devices(struct amba_device *devs[], int num);
33
cc2c1334 34struct sys_timer;
41ac329f 35extern struct sys_timer ux500_timer;
cc2c1334 36
178980f9
RV
37#define __IO_DEV_DESC(x, sz) { \
38 .virtual = IO_ADDRESS(x), \
39 .pfn = __phys_to_pfn(x), \
40 .length = sz, \
41 .type = MT_DEVICE, \
42}
43
f946738c
LW
44#define __MEM_DEV_DESC(x, sz) { \
45 .virtual = IO_ADDRESS(x), \
46 .pfn = __phys_to_pfn(x), \
47 .length = sz, \
48 .type = MT_MEMORY, \
49}
50
aa44ef4d 51#endif /* __ASM_ARCH_SETUP_H */