1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Lemote loongson2f family machines' specific suspend support
5 * Copyright (C) 2009 Lemote Inc.
6 * Author: Wu Zhangjin <wuzhangjin@gmail.com>
9 #include <linux/suspend.h>
10 #include <linux/interrupt.h>
12 #include <linux/i8042.h>
13 #include <linux/export.h>
15 #include <asm/i8259.h>
16 #include <asm/mipsregs.h>
17 #include <asm/bootinfo.h>
21 #include <cs5536/cs5536_mfgpt.h>
22 #include "ec_kb3310b.h"
24 #define I8042_KBD_IRQ 1
25 #define I8042_CTR_KBDINT 0x01
26 #define I8042_CTR_KBDDIS 0x10
28 static unsigned char i8042_ctr
;
30 static int i8042_enable_kbd_port(void)
32 if (i8042_command(&i8042_ctr
, I8042_CMD_CTL_RCTR
)) {
33 pr_err("i8042.c: Can't read CTR while enabling i8042 kbd port."
38 i8042_ctr
&= ~I8042_CTR_KBDDIS
;
39 i8042_ctr
|= I8042_CTR_KBDINT
;
41 if (i8042_command(&i8042_ctr
, I8042_CMD_CTL_WCTR
)) {
42 i8042_ctr
&= ~I8042_CTR_KBDINT
;
43 i8042_ctr
|= I8042_CTR_KBDDIS
;
44 pr_err("i8042.c: Failed to enable KBD port.\n");
52 void setup_wakeup_events(void)
56 switch (mips_machtype
) {
57 case MACH_LEMOTE_ML2F7
:
58 case MACH_LEMOTE_YL2F89
:
59 /* open the keyboard irq in i8259A */
60 outb((0xff & ~(1 << I8042_KBD_IRQ
)), PIC_MASTER_IMR
);
61 irq_mask
= inb(PIC_MASTER_IMR
);
63 /* enable keyboard port */
64 i8042_enable_kbd_port();
66 /* Wakeup CPU via SCI lid open event */
67 outb(irq_mask
& ~(1 << PIC_CASCADE_IR
), PIC_MASTER_IMR
);
69 outb(0xff & ~(1 << (SCI_IRQ_NUM
- 8)), PIC_SLAVE_IMR
);
79 static struct delayed_work lid_task
;
80 static int initialized
;
81 /* yeeloong_report_lid_status will be implemented in yeeloong_laptop.c */
82 sci_handler yeeloong_report_lid_status
;
83 EXPORT_SYMBOL(yeeloong_report_lid_status
);
84 static void yeeloong_lid_update_task(struct work_struct
*work
)
86 if (yeeloong_report_lid_status
)
87 yeeloong_report_lid_status(BIT_LID_DETECT_ON
);
90 int wakeup_loongson(void)
94 /* query the interrupt number */
95 irq
= mach_i8259_irq();
99 printk(KERN_INFO
"%s: irq = %d\n", __func__
, irq
);
101 if (irq
== I8042_KBD_IRQ
)
103 else if (irq
== SCI_IRQ_NUM
) {
105 /* query the event number */
106 ret
= ec_query_seq(CMD_GET_EVENT_NUM
);
109 sci_event
= ec_get_event_num();
112 if (sci_event
== EVENT_LID
) {
114 /* check the LID status */
115 lid_status
= ec_read(REG_LID_DETECT
);
116 /* wakeup cpu when people open the LID */
117 if (lid_status
== BIT_LID_DETECT_ON
) {
118 /* If we call it directly here, the WARNING
119 * will be sent out by getnstimeofday
120 * via "WARN_ON(timekeeping_suspended);"
121 * because we can not schedule in suspend mode.
123 if (initialized
== 0) {
124 INIT_DELAYED_WORK(&lid_task
,
125 yeeloong_lid_update_task
);
128 schedule_delayed_work(&lid_task
, 1);
137 void __weak
mach_suspend(void)
139 disable_mfgpt0_counter();
142 void __weak
mach_resume(void)
144 enable_mfgpt0_counter();