pm.c 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * linux/arch/arm/mach-omap2/pm.c
 *
 * OMAP2 Power Management Routines
 *
 * Copyright (C) 2006 Nokia Corporation
 * Tony Lindgren <tony@atomide.com>
 *
 * Copyright (C) 2005 Texas Instruments, Inc.
 * Richard Woodruff <r-woodruff2@ti.com>
 *
 * Based on pm.c for omap1
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

19
#include <linux/suspend.h>
20 21 22 23 24
#include <linux/sched.h>
#include <linux/proc_fs.h>
#include <linux/interrupt.h>
#include <linux/sysfs.h>
#include <linux/module.h>
25
#include <linux/delay.h>
26
#include <linux/clk.h>
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44

#include <asm/io.h>
#include <asm/irq.h>
#include <asm/atomic.h>
#include <asm/mach/time.h>
#include <asm/mach/irq.h>
#include <asm/mach-types.h>

#include <asm/arch/irqs.h>
#include <asm/arch/clock.h>
#include <asm/arch/sram.h>
#include <asm/arch/pm.h>

static struct clk *vclk;
static void (*omap2_sram_idle)(void);
static void (*omap2_sram_suspend)(int dllctrl, int cpu_rev);
static void (*saved_idle)(void);

45 46 47 48 49
extern void __init pmdomain_init(void);
extern void pmdomain_set_autoidle(void);

static unsigned int omap24xx_sleep_save[OMAP24XX_SLEEP_SAVE_SIZE];

50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
void omap2_pm_idle(void)
{
	local_irq_disable();
	local_fiq_disable();
	if (need_resched()) {
		local_fiq_enable();
		local_irq_enable();
		return;
	}

	omap2_sram_idle();
	local_fiq_enable();
	local_irq_enable();
}

65
static int omap2_pm_prepare(void)
66 67 68 69
{
	/* We cannot sleep in idle until we have resumed */
	saved_idle = pm_idle;
	pm_idle = NULL;
70
	return 0;
71 72
}

73 74 75 76 77
static int omap2_pm_suspend(void)
{
	return 0;
}

78 79
static int omap2_pm_enter(suspend_state_t state)
{
80 81
	int ret = 0;

82 83 84 85
	switch (state)
	{
	case PM_SUSPEND_STANDBY:
	case PM_SUSPEND_MEM:
86
		ret = omap2_pm_suspend();
87 88
		break;
	default:
89
		ret = -EINVAL;
90 91
	}

92
	return ret;
93 94
}

95
static void omap2_pm_finish(void)
96 97 98 99
{
	pm_idle = saved_idle;
}

100
static struct platform_suspend_ops omap_pm_ops = {
101 102 103
	.prepare	= omap2_pm_prepare,
	.enter		= omap2_pm_enter,
	.finish		= omap2_pm_finish,
104
	.valid		= suspend_valid_only_mem,
105 106 107 108 109 110 111 112
};

int __init omap2_pm_init(void)
{
	return 0;
}

__initcall(omap2_pm_init);