1/*
2 * linux/arch/arm/mach-at91/generic.h
3 *
4 *  Copyright (C) 2005 David Brownell
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#ifndef _AT91_GENERIC_H
12#define _AT91_GENERIC_H
13
14#include <linux/of.h>
15#include <linux/reboot.h>
16
17 /* Map io */
18extern void __init at91_map_io(void);
19extern void __init at91_alt_map_io(void);
20
21/* idle */
22extern void at91rm9200_idle(void);
23extern void at91sam9_idle(void);
24
25#ifdef CONFIG_PM
26extern void __init at91rm9200_pm_init(void);
27extern void __init at91sam9260_pm_init(void);
28extern void __init at91sam9g45_pm_init(void);
29extern void __init at91sam9x5_pm_init(void);
30#else
31static inline void __init at91rm9200_pm_init(void) { }
32static inline void __init at91sam9260_pm_init(void) { }
33static inline void __init at91sam9g45_pm_init(void) { }
34static inline void __init at91sam9x5_pm_init(void) { }
35#endif
36
37#endif /* _AT91_GENERIC_H */
38