Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 177887
b: refs/heads/master
c: f181bf6
h: refs/heads/master
i:
  177885: 607b953
  177883: f777e3f
  177879: b1dfd33
  177871: ea3d9ee
  177855: f008faa
v: v3
  • Loading branch information
Wu Zhangjin authored and Ralf Baechle committed Dec 17, 2009
1 parent b67d037 commit 0ae5570
Show file tree
Hide file tree
Showing 4 changed files with 173 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 22f1fdfd62a5f6ab738ffe03dc2ee9f1f25dabc4
refs/heads/master: f181bf60e3f31cdab48bd8b9d913201ed2f9e522
5 changes: 5 additions & 0 deletions trunk/arch/mips/loongson/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,8 @@ endchoice

config CS5536
bool

config LOONGSON_SUSPEND
bool
default y
depends on CPU_SUPPORTS_CPUFREQ && SUSPEND
6 changes: 6 additions & 0 deletions trunk/arch/mips/loongson/common/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,9 @@ obj-$(CONFIG_SERIAL_8250) += serial.o
# space
#
obj-$(CONFIG_CS5536) += cs5536/

#
# Suspend Support
#

obj-$(CONFIG_LOONGSON_SUSPEND) += pm.o
161 changes: 161 additions & 0 deletions trunk/arch/mips/loongson/common/pm.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,161 @@
/*
* loongson-specific suspend support
*
* Copyright (C) 2009 Lemote Inc.
* Author: Wu Zhangjin <wuzj@lemote.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#include <linux/suspend.h>
#include <linux/interrupt.h>
#include <linux/pm.h>

#include <asm/i8259.h>
#include <asm/mipsregs.h>

#include <loongson.h>

static unsigned int __maybe_unused cached_master_mask; /* i8259A */
static unsigned int __maybe_unused cached_slave_mask;
static unsigned int __maybe_unused cached_bonito_irq_mask; /* bonito */

void arch_suspend_disable_irqs(void)
{
/* disable all mips events */
local_irq_disable();

#ifdef CONFIG_I8259
/* disable all events of i8259A */
cached_slave_mask = inb(PIC_SLAVE_IMR);
cached_master_mask = inb(PIC_MASTER_IMR);

outb(0xff, PIC_SLAVE_IMR);
inb(PIC_SLAVE_IMR);
outb(0xff, PIC_MASTER_IMR);
inb(PIC_MASTER_IMR);
#endif
/* disable all events of bonito */
cached_bonito_irq_mask = LOONGSON_INTEN;
LOONGSON_INTENCLR = 0xffff;
(void)LOONGSON_INTENCLR;
}

void arch_suspend_enable_irqs(void)
{
/* enable all mips events */
local_irq_enable();
#ifdef CONFIG_I8259
/* only enable the cached events of i8259A */
outb(cached_slave_mask, PIC_SLAVE_IMR);
outb(cached_master_mask, PIC_MASTER_IMR);
#endif
/* enable all cached events of bonito */
LOONGSON_INTENSET = cached_bonito_irq_mask;
(void)LOONGSON_INTENSET;
}

/*
* Setup the board-specific events for waking up loongson from wait mode
*/
void __weak setup_wakeup_events(void)
{
}

/*
* Check wakeup events
*/
int __weak wakeup_loongson(void)
{
return 1;
}

/*
* If the events are really what we want to wakeup the CPU, wake it up
* otherwise put the CPU asleep again.
*/
static void wait_for_wakeup_events(void)
{
while (!wakeup_loongson())
LOONGSON_CHIPCFG0 &= ~0x7;
}

/*
* Stop all perf counters
*
* $24 is the control register of Loongson perf counter
*/
static inline void stop_perf_counters(void)
{
__write_64bit_c0_register($24, 0, 0);
}


static void loongson_suspend_enter(void)
{
static unsigned int cached_cpu_freq;

/* setup wakeup events via enabling the IRQs */
setup_wakeup_events();

stop_perf_counters();

cached_cpu_freq = LOONGSON_CHIPCFG0;

/* Put CPU into wait mode */
LOONGSON_CHIPCFG0 &= ~0x7;

/* wait for the given events to wakeup cpu from wait mode */
wait_for_wakeup_events();

LOONGSON_CHIPCFG0 = cached_cpu_freq;
mmiowb();
}

void __weak mach_suspend(void)
{
}

void __weak mach_resume(void)
{
}

static int loongson_pm_enter(suspend_state_t state)
{
mach_suspend();

/* processor specific suspend */
loongson_suspend_enter();

mach_resume();

return 0;
}

static int loongson_pm_valid_state(suspend_state_t state)
{
switch (state) {
case PM_SUSPEND_ON:
case PM_SUSPEND_STANDBY:
case PM_SUSPEND_MEM:
return 1;

default:
return 0;
}
}

static struct platform_suspend_ops loongson_pm_ops = {
.valid = loongson_pm_valid_state,
.enter = loongson_pm_enter,
};

static int __init loongson_pm_init(void)
{
suspend_set_ops(&loongson_pm_ops);

return 0;
}
arch_initcall(loongson_pm_init);

0 comments on commit 0ae5570

Please sign in to comment.