You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
535 B
29 lines
535 B
/*
|
|
* arch/arm/mach-prima2/include/mach/system.h
|
|
*
|
|
* Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
|
|
*
|
|
* Licensed under GPLv2 or later.
|
|
*/
|
|
|
|
#ifndef __MACH_SYSTEM_H__
|
|
#define __MACH_SYSTEM_H__
|
|
|
|
#include <linux/bitops.h>
|
|
#include <mach/hardware.h>
|
|
|
|
#define SIRFSOC_SYS_RST_BIT BIT(31)
|
|
|
|
extern void __iomem *sirfsoc_rstc_base;
|
|
|
|
static inline void arch_idle(void)
|
|
{
|
|
cpu_do_idle();
|
|
}
|
|
|
|
static inline void arch_reset(char mode, const char *cmd)
|
|
{
|
|
writel(SIRFSOC_SYS_RST_BIT, sirfsoc_rstc_base);
|
|
}
|
|
|
|
#endif
|
|
|