blob: 75e3f611e5d8795e8475b02b4d9e1144baed2e9e [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070016extern unsigned int get_clk_frequency_khz(int info);
Robert Jarzmik4508f772014-09-28 13:59:41 +020017extern void __init pxa_dt_irq_init(int (*fn)(struct irq_data *,
18 unsigned int));
19extern void __init pxa_map_io(void);
20extern void pxa_timer_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
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
Robert Jarzmik4508f772014-09-28 13:59:41 +020028#define pxa25x_handle_irq icip_handle_irq
Robert Jarzmik5e1d0122014-12-27 14:55:25 +010029extern int __init pxa25x_clocks_init(void);
Robert Jarzmik4508f772014-09-28 13:59:41 +020030extern void __init pxa25x_init_irq(void);
31extern void __init pxa25x_map_io(void);
32extern void __init pxa26x_init_irq(void);
Russell King15a40332007-08-20 10:07:44 +010033
Robert Jarzmik4508f772014-09-28 13:59:41 +020034#define pxa27x_handle_irq ichp_handle_irq
Robert Jarzmik5e1d0122014-12-27 14:55:25 +010035extern int __init pxa27x_clocks_init(void);
Robert Jarzmik4508f772014-09-28 13:59:41 +020036extern unsigned pxa27x_get_clk_frequency_khz(int);
37extern void __init pxa27x_init_irq(void);
38extern void __init pxa27x_map_io(void);
Russell King15a40332007-08-20 10:07:44 +010039
Robert Jarzmik4508f772014-09-28 13:59:41 +020040#define pxa3xx_handle_irq ichp_handle_irq
Robert Jarzmika1c0a6a2015-02-07 22:54:03 +010041extern int __init pxa3xx_clocks_init(void);
Robert Jarzmik4508f772014-09-28 13:59:41 +020042extern void __init pxa3xx_init_irq(void);
43extern void __init pxa3xx_map_io(void);
eric miaoc01655042008-01-28 23:00:02 +000044
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +020045extern struct syscore_ops pxa_irq_syscore_ops;
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +020046extern struct syscore_ops pxa2xx_mfp_syscore_ops;
47extern struct syscore_ops pxa3xx_mfp_syscore_ops;
Russell Kingcc155c62009-11-09 13:34:08 +080048
49void __init pxa_set_ffuart_info(void *info);
50void __init pxa_set_btuart_info(void *info);
51void __init pxa_set_stuart_info(void *info);
52void __init pxa_set_hwuart_info(void *info);
Russell King271a74f2011-11-04 14:15:53 +000053
Robin Holt7b6d8642013-07-08 16:01:40 -070054void pxa_restart(enum reboot_mode, const char *);
Robert Jarzmik4508f772014-09-28 13:59:41 +020055
56#if defined(CONFIG_PXA25x) || defined(CONFIG_PXA27x)
57extern void pxa2xx_clear_reset_status(unsigned int);
58#else
59static inline void pxa2xx_clear_reset_status(unsigned int mask) {}
60#endif
61
62/*
63 * Once fully converted to the clock framework, all these functions should be
64 * removed, and replaced with a clk_get(NULL, "core").
65 */
66#ifdef CONFIG_PXA25x
67extern unsigned pxa25x_get_clk_frequency_khz(int);
68#else
69#define pxa25x_get_clk_frequency_khz(x) (0)
70#endif
71
72#ifdef CONFIG_PXA27x
73#else
74#define pxa27x_get_clk_frequency_khz(x) (0)
75#endif
76
77#ifdef CONFIG_PXA3xx
78extern unsigned pxa3xx_get_clk_frequency_khz(int);
79#else
80#define pxa3xx_get_clk_frequency_khz(x) (0)
81#endif