]> err.no Git - linux-2.6/blob - arch/arm/mach-pxa/generic.h
[ARM] 4560/1: pxa: move processor specific set_wake logic out of irq.c
[linux-2.6] / arch / arm / mach-pxa / generic.h
1 /*
2  *  linux/arch/arm/mach-pxa/generic.h
3  *
4  * Author:      Nicolas Pitre
5  * Copyright:   MontaVista Software Inc.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  */
11
12 struct sys_timer;
13
14 extern struct sys_timer pxa_timer;
15 extern void __init pxa_init_irq_low(void);
16 extern void __init pxa_init_irq_high(void);
17 extern void __init pxa_init_irq_gpio(int gpio_nr);
18 extern void __init pxa_init_irq_set_wake(int (*set_wake)(unsigned int, unsigned int));
19 extern void __init pxa25x_init_irq(void);
20 extern void __init pxa27x_init_irq(void);
21 extern void __init pxa_map_io(void);
22
23 extern unsigned int get_clk_frequency_khz(int info);
24 extern int pxa_last_gpio;
25
26 #define SET_BANK(__nr,__start,__size) \
27         mi->bank[__nr].start = (__start), \
28         mi->bank[__nr].size = (__size), \
29         mi->bank[__nr].node = (((unsigned)(__start) - PHYS_OFFSET) >> 27)
30
31 #ifdef CONFIG_PXA25x
32 extern unsigned pxa25x_get_clk_frequency_khz(int);
33 extern unsigned pxa25x_get_memclk_frequency_10khz(void);
34 #else
35 #define pxa25x_get_clk_frequency_khz(x)         (0)
36 #define pxa25x_get_memclk_frequency_10khz()     (0)
37 #endif
38
39 #ifdef CONFIG_PXA27x
40 extern unsigned pxa27x_get_clk_frequency_khz(int);
41 extern unsigned pxa27x_get_memclk_frequency_10khz(void);
42 #else
43 #define pxa27x_get_clk_frequency_khz(x)         (0)
44 #define pxa27x_get_memclk_frequency_10khz()     (0)
45 #endif
46