Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee13...
[pandora-kernel.git] / arch / arm / mach-at91rm9200 / generic.h
1 /*
2  * linux/arch/arm/mach-at91rm9200/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  /* Processors */
12 extern void __init at91rm9200_initialize(unsigned long main_clock, unsigned short banks);
13
14  /* Interrupts */
15 extern void __init at91rm9200_init_interrupts(unsigned int priority[]);
16 extern void __init at91_aic_init(unsigned int priority[]);
17
18  /* Timer */
19 struct sys_timer;
20 extern struct sys_timer at91rm9200_timer;
21
22  /* Clocks */
23 extern int __init at91_clock_init(unsigned long main_clock);
24 struct device;
25 extern void __init at91_clock_associate(const char *id, struct device *dev, const char *func);
26
27  /* Power Management */
28 extern void at91_irq_suspend(void);
29 extern void at91_irq_resume(void);
30
31  /* GPIO */
32 #define AT91RM9200_PQFP         3       /* AT91RM9200 PQFP package has 3 banks */
33 #define AT91RM9200_BGA          4       /* AT91RM9200 BGA package has 4 banks */
34
35 struct at91_gpio_bank {
36         unsigned short id;              /* peripheral ID */
37         unsigned long offset;           /* offset from system peripheral base */
38         struct clk *clock;              /* associated clock */
39 };
40 extern void __init at91_gpio_init(struct at91_gpio_bank *, int nr_banks);
41 extern void __init at91_gpio_irq_setup(void);