2005-04-16 15:20:36 -07:00
|
|
|
/*
|
2008-08-05 16:14:15 +01:00
|
|
|
* Copied from arch/arm/mach-sa1100/include/mach/system.h
|
2009-09-14 03:25:28 -04:00
|
|
|
* Copyright (c) 1999 Nicolas Pitre <nico@fluxnic.net>
|
2005-04-16 15:20:36 -07:00
|
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_SYSTEM_H
|
|
|
|
#define __ASM_ARCH_SYSTEM_H
|
2006-01-07 16:15:52 +00:00
|
|
|
#include <linux/clk.h>
|
|
|
|
|
2005-07-10 19:58:06 +01:00
|
|
|
#include <asm/mach-types.h>
|
2008-08-05 16:14:15 +01:00
|
|
|
#include <mach/hardware.h>
|
2005-11-10 14:26:53 +00:00
|
|
|
|
2009-10-20 09:40:47 -07:00
|
|
|
#include <plat/prcm.h>
|
2009-01-27 19:12:50 -07:00
|
|
|
|
2005-11-10 14:26:53 +00:00
|
|
|
#ifndef CONFIG_MACH_VOICEBLUE
|
|
|
|
#define voiceblue_reset() do {} while (0)
|
2009-03-23 18:07:39 -07:00
|
|
|
#else
|
|
|
|
extern void voiceblue_reset(void);
|
2005-11-10 14:26:53 +00:00
|
|
|
#endif
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
static inline void arch_idle(void)
|
|
|
|
{
|
|
|
|
cpu_do_idle();
|
|
|
|
}
|
|
|
|
|
2010-02-26 10:25:28 +00:00
|
|
|
static inline void omap1_arch_reset(char mode, const char *cmd)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2005-07-10 19:58:06 +01:00
|
|
|
/*
|
|
|
|
* Workaround for 5912/1611b bug mentioned in sprz209d.pdf p. 28
|
|
|
|
* "Global Software Reset Affects Traffic Controller Frequency".
|
|
|
|
*/
|
|
|
|
if (cpu_is_omap5912()) {
|
|
|
|
omap_writew(omap_readw(DPLL_CTL) & ~(1 << 4),
|
|
|
|
DPLL_CTL);
|
|
|
|
omap_writew(0x8, ARM_RSTCT1);
|
|
|
|
}
|
2005-11-10 14:26:53 +00:00
|
|
|
|
2005-07-10 19:58:06 +01:00
|
|
|
if (machine_is_voiceblue())
|
|
|
|
voiceblue_reset();
|
|
|
|
else
|
|
|
|
omap_writew(1, ARM_RSTCT1);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
2009-03-19 16:20:24 +00:00
|
|
|
static inline void arch_reset(char mode, const char *cmd)
|
2005-11-10 14:26:53 +00:00
|
|
|
{
|
2008-10-09 17:51:41 +03:00
|
|
|
if (!cpu_class_is_omap2())
|
2010-02-26 10:25:28 +00:00
|
|
|
omap1_arch_reset(mode, cmd);
|
2005-11-10 14:26:53 +00:00
|
|
|
else
|
2010-02-26 10:25:28 +00:00
|
|
|
omap_prcm_arch_reset(mode, cmd);
|
2005-11-10 14:26:53 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif
|