Path: blob/master/arch/arm/mach-pnx4008/include/mach/pm.h
10820 views
/*1* arch/arm/mach-pnx4008/include/mach/pm.h2*3* PNX4008 Power Management Routiness - header file4*5* Authors: Vitaly Wool, Dmitry Chigirev <[email protected]>6*7* 2005 (c) MontaVista Software, Inc. This file is licensed under8* the terms of the GNU General Public License version 2. This program9* is licensed "as is" without any warranty of any kind, whether express10* or implied.11*/1213#ifndef __ASM_ARCH_PNX4008_PM_H14#define __ASM_ARCH_PNX4008_PM_H1516#ifndef __ASSEMBLER__17#include "irq.h"18#include "irqs.h"19#include "clock.h"2021extern void pnx4008_pm_idle(void);22extern void pnx4008_pm_suspend(void);23extern unsigned int pnx4008_cpu_suspend_sz;24extern void pnx4008_cpu_suspend(void);25extern unsigned int pnx4008_cpu_standby_sz;26extern void pnx4008_cpu_standby(void);2728extern int pnx4008_startup_pll(struct clk *);29extern int pnx4008_shutdown_pll(struct clk *);3031#endif /* ASSEMBLER */32#endif /* __ASM_ARCH_PNX4008_PM_H */333435