mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 14:34:28 +08:00
0fdebc5ec2
Based on the normalized pattern: 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 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference. Reviewed-by: Allison Randal <allison@lohutok.net> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
53 lines
1.5 KiB
C
53 lines
1.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* arch/arm/mach-mv78xx0/common.h
|
|
*
|
|
* Core functions for Marvell MV78xx0 SoCs
|
|
*/
|
|
|
|
#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
|