reboot: arm: prepare reboot_mode for moving to generic kernel code
[deliverable/linux.git] / arch / arm / mach-spear / generic.h
CommitLineData
b31e2372 1/*
54475210 2 * spear machine family generic header file
b31e2372 3 *
54475210
AB
4 * Copyright (C) 2009-2012 ST Microelectronics
5 * Rajeev Kumar <rajeev-dlh.kumar@st.com>
10d8935f 6 * Viresh Kumar <viresh.linux@gmail.com>
b31e2372
VK
7 *
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
11 */
12
13#ifndef __MACH_GENERIC_H
14#define __MACH_GENERIC_H
15
16#include <linux/dmaengine.h>
54475210
AB
17#include <linux/amba/pl08x.h>
18#include <linux/init.h>
b31e2372
VK
19#include <asm/mach/time.h>
20
6bb27d73 21extern void spear13xx_timer_init(void);
54475210 22extern void spear3xx_timer_init(void);
b31e2372 23extern struct pl022_ssp_controller pl022_plat_data;
54475210 24extern struct pl08x_platform_data pl080_plat_data;
b31e2372 25
b31e2372 26void __init spear_setup_of_timer(void);
d9909ebe
AB
27void __init spear3xx_clk_init(void __iomem *misc_base,
28 void __iomem *soc_config_base);
54475210
AB
29void __init spear3xx_map_io(void);
30void __init spear3xx_dt_init_irq(void);
d9909ebe 31void __init spear6xx_clk_init(void __iomem *misc_base);
b31e2372 32void __init spear13xx_map_io(void);
b31e2372 33void __init spear13xx_l2x0_init(void);
54475210 34
b31e2372 35void spear_restart(char, const char *);
54475210 36
b31e2372 37void spear13xx_secondary_startup(void);
2d8b21d9
AB
38void __cpuinit spear13xx_cpu_die(unsigned int cpu);
39
40extern struct smp_operations spear13xx_smp_ops;
b31e2372
VK
41
42#ifdef CONFIG_MACH_SPEAR1310
d9909ebe 43void __init spear1310_clk_init(void __iomem *misc_base, void __iomem *ras_base);
b31e2372 44#else
d9909ebe 45static inline void spear1310_clk_init(void __iomem *misc_base, void __iomem *ras_base) {}
b31e2372
VK
46#endif
47
48#ifdef CONFIG_MACH_SPEAR1340
d9909ebe 49void __init spear1340_clk_init(void __iomem *misc_base);
b31e2372 50#else
d9909ebe 51static inline void spear1340_clk_init(void __iomem *misc_base) {}
b31e2372
VK
52#endif
53
54#endif /* __MACH_GENERIC_H */
This page took 0.085531 seconds and 5 git commands to generate.