RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / arm / mach-omap2 / prcm.c
blob90f530540c6529138c6a9e6a77d4ec21c7095d72
1 /*
2 * linux/arch/arm/mach-omap2/prcm.c
4 * OMAP 24xx Power Reset and Clock Management (PRCM) functions
6 * Copyright (C) 2005 Nokia Corporation
8 * Written by Tony Lindgren <tony.lindgren@nokia.com>
10 * Some pieces of code Copyright (C) 2005 Texas Instruments, Inc.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
16 #include <linux/module.h>
17 #include <linux/init.h>
18 #include <linux/clk.h>
20 #include "prcm-regs.h"
22 extern void omap2_clk_prepare_for_reboot(void);
24 u32 omap_prcm_get_reset_sources(void)
26 return RM_RSTST_WKUP & 0x7f;
28 EXPORT_SYMBOL(omap_prcm_get_reset_sources);
30 /* Resets clock rates and reboots the system. Only called from system.h */
31 void omap_prcm_arch_reset(char mode)
33 omap2_clk_prepare_for_reboot();
34 RM_RSTCTRL_WKUP |= 2;