hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * loongson-specific suspend support
 *
 *  Copyright (C) 2009 Lemote Inc.
 *  Author: Wu Zhangjin <wuzhangjin@gmail.com>
 */
#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)
{
}
 
void __weak mach_suspend(void)
{
}
 
void __weak mach_resume(void)
{
}
 
static int loongson_pm_enter(suspend_state_t state)
{
   mach_suspend();
 
   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 const 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);