mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 12:14:01 +08: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>
64 lines
1.6 KiB
C
64 lines
1.6 KiB
C
/*
|
|
* Copyright (c) 2011 Samsung Electronics Co., Ltd.
|
|
* http://www.samsung.com
|
|
*
|
|
* Copyright 2008 Openmoko, Inc.
|
|
* Copyright 2008 Simtec Electronics
|
|
* Ben Dooks <ben@simtec.co.uk>
|
|
* http://armlinux.simtec.co.uk/
|
|
*
|
|
* Common Header for S3C64XX machines
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef __ARCH_ARM_MACH_S3C64XX_COMMON_H
|
|
#define __ARCH_ARM_MACH_S3C64XX_COMMON_H
|
|
|
|
#include <linux/reboot.h>
|
|
|
|
void s3c64xx_init_irq(u32 vic0, u32 vic1);
|
|
void s3c64xx_init_io(struct map_desc *mach_desc, int size);
|
|
|
|
void s3c64xx_register_clocks(unsigned long xtal, unsigned armclk_limit);
|
|
void s3c64xx_setup_clocks(void);
|
|
|
|
void s3c64xx_restart(enum reboot_mode mode, const char *cmd);
|
|
void s3c64xx_init_late(void);
|
|
|
|
#ifdef CONFIG_CPU_S3C6400
|
|
|
|
extern int s3c6400_init(void);
|
|
extern void s3c6400_init_irq(void);
|
|
extern void s3c6400_map_io(void);
|
|
extern void s3c6400_init_clocks(int xtal);
|
|
|
|
#else
|
|
#define s3c6400_init_clocks NULL
|
|
#define s3c6400_map_io NULL
|
|
#define s3c6400_init NULL
|
|
#endif
|
|
|
|
#ifdef CONFIG_CPU_S3C6410
|
|
|
|
extern int s3c6410_init(void);
|
|
extern void s3c6410_init_irq(void);
|
|
extern void s3c6410_map_io(void);
|
|
extern void s3c6410_init_clocks(int xtal);
|
|
|
|
#else
|
|
#define s3c6410_init_clocks NULL
|
|
#define s3c6410_map_io NULL
|
|
#define s3c6410_init NULL
|
|
#endif
|
|
|
|
#ifdef CONFIG_PM
|
|
int __init s3c64xx_pm_late_initcall(void);
|
|
#else
|
|
static inline int s3c64xx_pm_late_initcall(void) { return 0; }
|
|
#endif
|
|
|
|
#endif /* __ARCH_ARM_MACH_S3C64XX_COMMON_H */
|