blob: 6205dc9a2b9de36285a13efd0d7f9271c309fe0e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
12struct sys_timer;
13
14extern struct sys_timer pxa_timer;
Eric Miaoa58fbcd2009-01-06 17:37:37 +080015extern void __init pxa_init_irq(int irq_nr,
16 int (*set_wake)(unsigned int, unsigned int));
Eric Miaocd491042007-06-22 04:14:09 +010017extern void __init pxa25x_init_irq(void);
Marek Vasut918c71c2009-04-10 10:42:50 +080018#ifdef CONFIG_CPU_PXA26x
19extern void __init pxa26x_init_irq(void);
20#endif
Eric Miaocd491042007-06-22 04:14:09 +010021extern void __init pxa27x_init_irq(void);
eric miao2c8086a2007-09-11 19:13:17 -070022extern void __init pxa3xx_init_irq(void);
Haojian Zhuanga4553352010-11-24 11:54:19 +080023extern void __init pxa95x_init_irq(void);
Marek Vasut851982c2010-10-11 02:20:19 +020024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025extern void __init pxa_map_io(void);
Marek Vasut851982c2010-10-11 02:20:19 +020026extern void __init pxa25x_map_io(void);
27extern void __init pxa27x_map_io(void);
28extern void __init pxa3xx_map_io(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30extern unsigned int get_clk_frequency_khz(int info);
31
32#define SET_BANK(__nr,__start,__size) \
33 mi->bank[__nr].start = (__start), \
Russell Kingbe370302010-05-07 17:40:33 +010034 mi->bank[__nr].size = (__size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
eric miao3d3934c2008-02-03 15:49:09 +080036#define ARRAY_AND_SIZE(x) (x), ARRAY_SIZE(x)
37
Russell King15a40332007-08-20 10:07:44 +010038#ifdef CONFIG_PXA25x
39extern unsigned pxa25x_get_clk_frequency_khz(int);
Russell King15a40332007-08-20 10:07:44 +010040#else
41#define pxa25x_get_clk_frequency_khz(x) (0)
Russell King15a40332007-08-20 10:07:44 +010042#endif
43
44#ifdef CONFIG_PXA27x
45extern unsigned pxa27x_get_clk_frequency_khz(int);
Russell King15a40332007-08-20 10:07:44 +010046#else
47#define pxa27x_get_clk_frequency_khz(x) (0)
Russell King15a40332007-08-20 10:07:44 +010048#endif
49
Eric Miao04fef222008-07-29 14:26:00 +080050#if defined(CONFIG_PXA25x) || defined(CONFIG_PXA27x)
51extern void pxa2xx_clear_reset_status(unsigned int);
52#else
53static inline void pxa2xx_clear_reset_status(unsigned int mask) {}
54#endif
55
eric miao2c8086a2007-09-11 19:13:17 -070056#ifdef CONFIG_PXA3xx
57extern unsigned pxa3xx_get_clk_frequency_khz(int);
eric miao2c8086a2007-09-11 19:13:17 -070058#else
59#define pxa3xx_get_clk_frequency_khz(x) (0)
eric miao2c8086a2007-09-11 19:13:17 -070060#endif
eric miaoc01655042008-01-28 23:00:02 +000061
62extern struct sysdev_class pxa_irq_sysclass;
eric miao16dfdbf2008-01-28 23:00:02 +000063extern struct sysdev_class pxa_gpio_sysclass;
Eric Miao5a3d9652008-09-03 18:06:34 +080064extern struct sysdev_class pxa2xx_mfp_sysclass;
eric miao4be35e22008-02-04 10:07:09 +080065extern struct sysdev_class pxa3xx_mfp_sysclass;
Russell Kingcc155c62009-11-09 13:34:08 +080066
67void __init pxa_set_ffuart_info(void *info);
68void __init pxa_set_btuart_info(void *info);
69void __init pxa_set_stuart_info(void *info);
70void __init pxa_set_hwuart_info(void *info);