mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 04:32:03 +00:00
7b6d864b48
Preparing to move the parsing of reboot= to generic kernel code forces the change in reboot_mode handling to use the enum. [akpm@linux-foundation.org: fix arch/arm/mach-socfpga/socfpga.c] Signed-off-by: Robin Holt <holt@sgi.com> Cc: Russell King <rmk+kernel@arm.linux.org.uk> Cc: Russ Anderson <rja@sgi.com> Cc: Robin Holt <holt@sgi.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Guan Xuetao <gxt@mprc.pku.edu.cn> Acked-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
56 lines
1.6 KiB
C
56 lines
1.6 KiB
C
/*
|
|
* arch/arm/mach-mv78xx0/common.h
|
|
*
|
|
* Core functions for Marvell MV78xx0 SoCs
|
|
*
|
|
* This file is licensed under the terms of the GNU General Public
|
|
* License version 2. This program is licensed "as is" without any
|
|
* warranty of any kind, whether express or implied.
|
|
*/
|
|
|
|
#ifndef __ARCH_MV78XX0_COMMON_H
|
|
#define __ARCH_MV78XX0_COMMON_H
|
|
|
|
#include <linux/reboot.h>
|
|
|
|
struct mv643xx_eth_platform_data;
|
|
struct mv_sata_platform_data;
|
|
|
|
/*
|
|
* Basic MV78xx0 init functions used early by machine-setup.
|
|
*/
|
|
int mv78xx0_core_index(void);
|
|
void mv78xx0_map_io(void);
|
|
void mv78xx0_init(void);
|
|
void mv78xx0_init_early(void);
|
|
void mv78xx0_init_irq(void);
|
|
|
|
void mv78xx0_setup_cpu_mbus(void);
|
|
void mv78xx0_setup_pcie_io_win(int window, u32 base, u32 size,
|
|
int maj, int min);
|
|
void mv78xx0_setup_pcie_mem_win(int window, u32 base, u32 size,
|
|
int maj, int min);
|
|
|
|
void mv78xx0_pcie_id(u32 *dev, u32 *rev);
|
|
|
|
void mv78xx0_ehci0_init(void);
|
|
void mv78xx0_ehci1_init(void);
|
|
void mv78xx0_ehci2_init(void);
|
|
void mv78xx0_ge00_init(struct mv643xx_eth_platform_data *eth_data);
|
|
void mv78xx0_ge01_init(struct mv643xx_eth_platform_data *eth_data);
|
|
void mv78xx0_ge10_init(struct mv643xx_eth_platform_data *eth_data);
|
|
void mv78xx0_ge11_init(struct mv643xx_eth_platform_data *eth_data);
|
|
void mv78xx0_pcie_init(int init_port0, int init_port1);
|
|
void mv78xx0_sata_init(struct mv_sata_platform_data *sata_data);
|
|
void mv78xx0_uart0_init(void);
|
|
void mv78xx0_uart1_init(void);
|
|
void mv78xx0_uart2_init(void);
|
|
void mv78xx0_uart3_init(void);
|
|
void mv78xx0_i2c_init(void);
|
|
void mv78xx0_restart(enum reboot_mode, const char *);
|
|
|
|
extern void mv78xx0_timer_init(void);
|
|
|
|
|
|
#endif
|