blob: 8963984d1f43b5e27ea06b6363b0c7b35581a565 [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
Robin Holt7b6d8642013-07-08 16:01:40 -070012#include <linux/reboot.h>
13
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010014struct irq_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Stephen Warren6bb27d72012-11-08 12:40:59 -070016extern void pxa_timer_init(void);
Marek Vasut851982c2010-10-11 02:20:19 +020017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018extern void __init pxa_map_io(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20extern unsigned int get_clk_frequency_khz(int info);
21
22#define SET_BANK(__nr,__start,__size) \
23 mi->bank[__nr].start = (__start), \
Russell Kingbe370302010-05-07 17:40:33 +010024 mi->bank[__nr].size = (__size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
eric miao3d3934c2008-02-03 15:49:09 +080026#define ARRAY_AND_SIZE(x) (x), ARRAY_SIZE(x)
27
Russell King15a40332007-08-20 10:07:44 +010028#ifdef CONFIG_PXA25x
29extern unsigned pxa25x_get_clk_frequency_khz(int);
Russell King15a40332007-08-20 10:07:44 +010030#else
31#define pxa25x_get_clk_frequency_khz(x) (0)
Russell King15a40332007-08-20 10:07:44 +010032#endif
33
34#ifdef CONFIG_PXA27x
35extern unsigned pxa27x_get_clk_frequency_khz(int);
Russell King15a40332007-08-20 10:07:44 +010036#else
37#define pxa27x_get_clk_frequency_khz(x) (0)
Russell King15a40332007-08-20 10:07:44 +010038#endif
39
Eric Miao04fef222008-07-29 14:26:00 +080040#if defined(CONFIG_PXA25x) || defined(CONFIG_PXA27x)
41extern void pxa2xx_clear_reset_status(unsigned int);
42#else
43static inline void pxa2xx_clear_reset_status(unsigned int mask) {}
44#endif
45
eric miao2c8086a2007-09-11 19:13:17 -070046#ifdef CONFIG_PXA3xx
47extern unsigned pxa3xx_get_clk_frequency_khz(int);
eric miao2c8086a2007-09-11 19:13:17 -070048#else
49#define pxa3xx_get_clk_frequency_khz(x) (0)
eric miao2c8086a2007-09-11 19:13:17 -070050#endif
eric miaoc01655042008-01-28 23:00:02 +000051
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +020052extern struct syscore_ops pxa_irq_syscore_ops;
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +020053extern struct syscore_ops pxa2xx_mfp_syscore_ops;
54extern struct syscore_ops pxa3xx_mfp_syscore_ops;
Russell Kingcc155c62009-11-09 13:34:08 +080055
56void __init pxa_set_ffuart_info(void *info);
57void __init pxa_set_btuart_info(void *info);
58void __init pxa_set_stuart_info(void *info);
59void __init pxa_set_hwuart_info(void *info);
Russell King271a74f2011-11-04 14:15:53 +000060
Robin Holt7b6d8642013-07-08 16:01:40 -070061void pxa_restart(enum reboot_mode, const char *);