Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 12 | struct irq_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | struct sys_timer; |
| 14 | |
| 15 | extern struct sys_timer pxa_timer; |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 16 | extern void __init pxa_init_irq(int irq_nr, |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 17 | int (*set_wake)(struct irq_data *, |
| 18 | unsigned int)); |
Eric Miao | cd49104 | 2007-06-22 04:14:09 +0100 | [diff] [blame] | 19 | extern void __init pxa25x_init_irq(void); |
Marek Vasut | 918c71c | 2009-04-10 10:42:50 +0800 | [diff] [blame] | 20 | #ifdef CONFIG_CPU_PXA26x |
| 21 | extern void __init pxa26x_init_irq(void); |
| 22 | #endif |
Eric Miao | cd49104 | 2007-06-22 04:14:09 +0100 | [diff] [blame] | 23 | extern void __init pxa27x_init_irq(void); |
eric miao | 2c8086a | 2007-09-11 19:13:17 -0700 | [diff] [blame] | 24 | extern void __init pxa3xx_init_irq(void); |
Haojian Zhuang | a455335 | 2010-11-24 11:54:19 +0800 | [diff] [blame] | 25 | extern void __init pxa95x_init_irq(void); |
Marek Vasut | 851982c | 2010-10-11 02:20:19 +0200 | [diff] [blame] | 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | extern void __init pxa_map_io(void); |
Marek Vasut | 851982c | 2010-10-11 02:20:19 +0200 | [diff] [blame] | 28 | extern void __init pxa25x_map_io(void); |
| 29 | extern void __init pxa27x_map_io(void); |
| 30 | extern void __init pxa3xx_map_io(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | extern unsigned int get_clk_frequency_khz(int info); |
| 33 | |
| 34 | #define SET_BANK(__nr,__start,__size) \ |
| 35 | mi->bank[__nr].start = (__start), \ |
Russell King | be37030 | 2010-05-07 17:40:33 +0100 | [diff] [blame] | 36 | mi->bank[__nr].size = (__size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
eric miao | 3d3934c | 2008-02-03 15:49:09 +0800 | [diff] [blame] | 38 | #define ARRAY_AND_SIZE(x) (x), ARRAY_SIZE(x) |
| 39 | |
Russell King | 15a4033 | 2007-08-20 10:07:44 +0100 | [diff] [blame] | 40 | #ifdef CONFIG_PXA25x |
| 41 | extern unsigned pxa25x_get_clk_frequency_khz(int); |
Russell King | 15a4033 | 2007-08-20 10:07:44 +0100 | [diff] [blame] | 42 | #else |
| 43 | #define pxa25x_get_clk_frequency_khz(x) (0) |
Russell King | 15a4033 | 2007-08-20 10:07:44 +0100 | [diff] [blame] | 44 | #endif |
| 45 | |
| 46 | #ifdef CONFIG_PXA27x |
| 47 | extern unsigned pxa27x_get_clk_frequency_khz(int); |
Russell King | 15a4033 | 2007-08-20 10:07:44 +0100 | [diff] [blame] | 48 | #else |
| 49 | #define pxa27x_get_clk_frequency_khz(x) (0) |
Russell King | 15a4033 | 2007-08-20 10:07:44 +0100 | [diff] [blame] | 50 | #endif |
| 51 | |
Eric Miao | 04fef22 | 2008-07-29 14:26:00 +0800 | [diff] [blame] | 52 | #if defined(CONFIG_PXA25x) || defined(CONFIG_PXA27x) |
| 53 | extern void pxa2xx_clear_reset_status(unsigned int); |
| 54 | #else |
| 55 | static inline void pxa2xx_clear_reset_status(unsigned int mask) {} |
| 56 | #endif |
| 57 | |
eric miao | 2c8086a | 2007-09-11 19:13:17 -0700 | [diff] [blame] | 58 | #ifdef CONFIG_PXA3xx |
| 59 | extern unsigned pxa3xx_get_clk_frequency_khz(int); |
eric miao | 2c8086a | 2007-09-11 19:13:17 -0700 | [diff] [blame] | 60 | #else |
| 61 | #define pxa3xx_get_clk_frequency_khz(x) (0) |
eric miao | 2c8086a | 2007-09-11 19:13:17 -0700 | [diff] [blame] | 62 | #endif |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 63 | |
Rafael J. Wysocki | 2eaa03b | 2011-04-22 22:03:11 +0200 | [diff] [blame] | 64 | extern struct syscore_ops pxa_irq_syscore_ops; |
| 65 | extern struct syscore_ops pxa_gpio_syscore_ops; |
| 66 | extern struct syscore_ops pxa2xx_mfp_syscore_ops; |
| 67 | extern struct syscore_ops pxa3xx_mfp_syscore_ops; |
Russell King | cc155c6 | 2009-11-09 13:34:08 +0800 | [diff] [blame] | 68 | |
| 69 | void __init pxa_set_ffuart_info(void *info); |
| 70 | void __init pxa_set_btuart_info(void *info); |
| 71 | void __init pxa_set_stuart_info(void *info); |
| 72 | void __init pxa_set_hwuart_info(void *info); |