ARM: S5P: Add Support common arch_reset() for S5P
This patch adds support common arch_reset() for S5P6440, S5P6442, S5PC100 and S5PV210/S5PC110. Now perform reset using Watchdog reset, SWRESET support with s5p_reset_hook() will be added later. Signed-off-by: Jongpill Lee <boyko.lee@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
d7f1e82ac9
commit
9a423b0ffd
|
@ -13,14 +13,11 @@
|
||||||
#ifndef __ASM_ARCH_SYSTEM_H
|
#ifndef __ASM_ARCH_SYSTEM_H
|
||||||
#define __ASM_ARCH_SYSTEM_H __FILE__
|
#define __ASM_ARCH_SYSTEM_H __FILE__
|
||||||
|
|
||||||
|
#include <plat/system-reset.h>
|
||||||
|
|
||||||
static void arch_idle(void)
|
static void arch_idle(void)
|
||||||
{
|
{
|
||||||
/* nothing here yet */
|
/* nothing here yet */
|
||||||
}
|
}
|
||||||
|
|
||||||
static void arch_reset(char mode, const char *cmd)
|
|
||||||
{
|
|
||||||
/* nothing here yet */
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* __ASM_ARCH_SYSTEM_H */
|
#endif /* __ASM_ARCH_SYSTEM_H */
|
||||||
|
|
|
@ -13,14 +13,11 @@
|
||||||
#ifndef __ASM_ARCH_SYSTEM_H
|
#ifndef __ASM_ARCH_SYSTEM_H
|
||||||
#define __ASM_ARCH_SYSTEM_H __FILE__
|
#define __ASM_ARCH_SYSTEM_H __FILE__
|
||||||
|
|
||||||
|
#include <plat/system-reset.h>
|
||||||
|
|
||||||
static void arch_idle(void)
|
static void arch_idle(void)
|
||||||
{
|
{
|
||||||
/* nothing here yet */
|
/* nothing here yet */
|
||||||
}
|
}
|
||||||
|
|
||||||
static void arch_reset(char mode, const char *cmd)
|
|
||||||
{
|
|
||||||
/* nothing here yet */
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* __ASM_ARCH_SYSTEM_H */
|
#endif /* __ASM_ARCH_SYSTEM_H */
|
||||||
|
|
|
@ -11,18 +11,11 @@
|
||||||
#ifndef __ASM_ARCH_SYSTEM_H
|
#ifndef __ASM_ARCH_SYSTEM_H
|
||||||
#define __ASM_ARCH_SYSTEM_H __FILE__
|
#define __ASM_ARCH_SYSTEM_H __FILE__
|
||||||
|
|
||||||
#include <linux/io.h>
|
#include <plat/system-reset.h>
|
||||||
#include <mach/map.h>
|
|
||||||
#include <mach/regs-clock.h>
|
|
||||||
|
|
||||||
static void arch_idle(void)
|
static void arch_idle(void)
|
||||||
{
|
{
|
||||||
/* nothing here yet */
|
/* nothing here yet */
|
||||||
}
|
}
|
||||||
|
|
||||||
static void arch_reset(char mode, const char *cmd)
|
|
||||||
{
|
|
||||||
__raw_writel(S5PC100_SWRESET_RESETVAL, S5PC100_SWRESET);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
#endif /* __ASM_ARCH_IRQ_H */
|
#endif /* __ASM_ARCH_IRQ_H */
|
||||||
|
|
|
@ -13,14 +13,11 @@
|
||||||
#ifndef __ASM_ARCH_SYSTEM_H
|
#ifndef __ASM_ARCH_SYSTEM_H
|
||||||
#define __ASM_ARCH_SYSTEM_H __FILE__
|
#define __ASM_ARCH_SYSTEM_H __FILE__
|
||||||
|
|
||||||
|
#include <plat/system-reset.h>
|
||||||
|
|
||||||
static void arch_idle(void)
|
static void arch_idle(void)
|
||||||
{
|
{
|
||||||
/* nothing here yet */
|
/* nothing here yet */
|
||||||
}
|
}
|
||||||
|
|
||||||
static void arch_reset(char mode, const char *cmd)
|
|
||||||
{
|
|
||||||
/* nothing here yet */
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* __ASM_ARCH_SYSTEM_H */
|
#endif /* __ASM_ARCH_SYSTEM_H */
|
||||||
|
|
Loading…
Reference in New Issue