Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mach-dove/common.h |
| 3 | * |
| 4 | * Core functions for Marvell Dove 88AP510 System On Chip |
| 5 | * |
| 6 | * This file is licensed under the terms of the GNU General Public |
| 7 | * License version 2. This program is licensed "as is" without any |
| 8 | * warranty of any kind, whether express or implied. |
| 9 | */ |
| 10 | |
| 11 | #ifndef __ARCH_DOVE_COMMON_H |
| 12 | #define __ARCH_DOVE_COMMON_H |
| 13 | |
Robin Holt | 7b6d864 | 2013-07-08 16:01:40 -0700 | [diff] [blame] | 14 | #include <linux/reboot.h> |
| 15 | |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 16 | struct mv643xx_eth_platform_data; |
| 17 | struct mv_sata_platform_data; |
| 18 | |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 19 | extern void dove_timer_init(void); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 20 | |
| 21 | /* |
| 22 | * Basic Dove init functions used early by machine-setup. |
| 23 | */ |
| 24 | void dove_map_io(void); |
| 25 | void dove_init(void); |
Lennert Buytenhek | 4ee1f6b | 2010-10-15 16:50:26 +0200 | [diff] [blame] | 26 | void dove_init_early(void); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 27 | void dove_init_irq(void); |
Thomas Petazzoni | 7d55490 | 2013-03-21 17:59:17 +0100 | [diff] [blame] | 28 | void dove_setup_cpu_wins(void); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 29 | void dove_ge00_init(struct mv643xx_eth_platform_data *eth_data); |
| 30 | void dove_sata_init(struct mv_sata_platform_data *sata_data); |
Russell King | 0f81bd4 | 2012-09-09 20:34:13 +0100 | [diff] [blame] | 31 | #ifdef CONFIG_PCI |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 32 | void dove_pcie_init(int init_port0, int init_port1); |
Russell King | 0f81bd4 | 2012-09-09 20:34:13 +0100 | [diff] [blame] | 33 | #else |
| 34 | static inline void dove_pcie_init(int init_port0, int init_port1) { } |
| 35 | #endif |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 36 | void dove_ehci0_init(void); |
| 37 | void dove_ehci1_init(void); |
| 38 | void dove_uart0_init(void); |
| 39 | void dove_uart1_init(void); |
| 40 | void dove_uart2_init(void); |
| 41 | void dove_uart3_init(void); |
| 42 | void dove_spi0_init(void); |
| 43 | void dove_spi1_init(void); |
| 44 | void dove_i2c_init(void); |
Saeed Bishara | 16bc90a | 2010-05-06 16:12:06 +0300 | [diff] [blame] | 45 | void dove_sdio0_init(void); |
| 46 | void dove_sdio1_init(void); |
Robin Holt | 7b6d864 | 2013-07-08 16:01:40 -0700 | [diff] [blame] | 47 | void dove_restart(enum reboot_mode, const char *); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 48 | |
| 49 | #endif |