aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-clps7500/include/mach/system.h
blob: 6d325fbe8b08a63dde1c8d70445737b5cab5a2a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * arch/arm/mach-clps7500/include/mach/system.h
 *
 * Copyright (c) 1999 Nexus Electronics Ltd.
 */
#ifndef __ASM_ARCH_SYSTEM_H
#define __ASM_ARCH_SYSTEM_H

#include <linux/io.h>
#include <asm/hardware/iomd.h>

static inline void arch_idle(void)
{
	iomd_writeb(0, IOMD_SUSMODE);
}

#define arch_reset(mode)			\
	do {					\
		iomd_writeb(0, IOMD_ROMCR0);	\
		cpu_reset(0);			\
	} while (0)

#endif