blob: 9028dbbb45dd0e83b94ccf36236af3ec44da5ad8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Ralf Baechlefcdb27a2006-01-18 17:37:07 +00006 * Copyright (C) 1997, 1998, 2001, 03, 05, 06 by Ralf Baechle
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
Ralf Baechle71baa1a2006-01-15 18:10:39 +00008#include <linux/linkage.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/init.h>
Alexandre Bellonid4a5f6d2016-06-27 00:03:00 +020010#include <linux/rtc/ds1286.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/interrupt.h>
12#include <linux/kernel.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010013#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/notifier.h>
Andy Shevchenkof39650d2021-06-30 18:54:59 -070015#include <linux/panic_notifier.h>
Ralf Baechlefcdb27a2006-01-18 17:37:07 +000016#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/timer.h>
18
19#include <asm/io.h>
20#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/reboot.h>
22#include <asm/sgialib.h>
23#include <asm/sgi/ioc.h>
24#include <asm/sgi/hpc3.h>
25#include <asm/sgi/mc.h>
26#include <asm/sgi/ip22.h>
27
28/*
29 * Just powerdown if init hasn't done after POWERDOWN_TIMEOUT seconds.
30 * I'm not sure if this feature is a good idea, for now it's here just to
31 * make the power button make behave just like under IRIX.
32 */
33#define POWERDOWN_TIMEOUT 120
34
35/*
Lee Revellf18190b2006-06-26 18:30:00 +020036 * Blink frequency during reboot grace period and when panicked.
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 */
38#define POWERDOWN_FREQ (HZ / 4)
39#define PANIC_FREQ (HZ / 8)
40
Thomas Bogendoerferb03d7b12008-07-11 23:03:03 +020041static struct timer_list power_timer, blink_timer, debounce_timer;
Kees Cooka66b8992017-10-09 21:42:26 -070042static unsigned long blink_timer_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#define MACHINE_PANICED 1
45#define MACHINE_SHUTTING_DOWN 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Ralf Baechle71baa1a2006-01-15 18:10:39 +000047static int machine_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Robert P. J. Dayb3f6df92007-05-25 14:32:28 -040049static void __noreturn sgi_machine_power_off(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
51 unsigned int tmp;
52
53 local_irq_disable();
54
55 /* Disable watchdog */
56 tmp = hpc3c0->rtcregs[RTC_CMD] & 0xff;
57 hpc3c0->rtcregs[RTC_CMD] = tmp | RTC_WAM;
58 hpc3c0->rtcregs[RTC_WSEC] = 0;
59 hpc3c0->rtcregs[RTC_WHSEC] = 0;
60
61 while (1) {
62 sgioc->panel = ~SGIOC_PANEL_POWERON;
63 /* Good bye cruel world ... */
64
65 /* If we're still running, we probably got sent an alarm
66 interrupt. Read the flag to clear it. */
67 tmp = hpc3c0->rtcregs[RTC_HOURS_ALARM];
68 }
69}
70
Robert P. J. Dayb3f6df92007-05-25 14:32:28 -040071static void __noreturn sgi_machine_restart(char *command)
Ralf Baechle71baa1a2006-01-15 18:10:39 +000072{
73 if (machine_state & MACHINE_SHUTTING_DOWN)
74 sgi_machine_power_off();
75 sgimc->cpuctrl0 |= SGIMC_CCTRL0_SYSINIT;
76 while (1);
77}
78
Robert P. J. Dayb3f6df92007-05-25 14:32:28 -040079static void __noreturn sgi_machine_halt(void)
Ralf Baechle71baa1a2006-01-15 18:10:39 +000080{
81 if (machine_state & MACHINE_SHUTTING_DOWN)
82 sgi_machine_power_off();
83 ArcEnterInteractiveMode();
84}
85
Kees Cooka66b8992017-10-09 21:42:26 -070086static void power_timeout(struct timer_list *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 sgi_machine_power_off();
89}
90
Kees Cooka66b8992017-10-09 21:42:26 -070091static void blink_timeout(struct timer_list *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
93 /* XXX fix this for fullhouse */
94 sgi_ioc_reset ^= (SGIOC_RESET_LC0OFF|SGIOC_RESET_LC1OFF);
95 sgioc->reset = sgi_ioc_reset;
96
Kees Cooka66b8992017-10-09 21:42:26 -070097 mod_timer(&blink_timer, jiffies + blink_timer_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Kees Cooka66b8992017-10-09 21:42:26 -0700100static void debounce(struct timer_list *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 del_timer(&debounce_timer);
103 if (sgint->istat1 & SGINT_ISTAT1_PWR) {
104 /* Interrupt still being sent. */
Ralf Baechle70342282013-01-22 12:59:30 +0100105 debounce_timer.expires = jiffies + (HZ / 20); /* 0.05s */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 add_timer(&debounce_timer);
107
108 sgioc->panel = SGIOC_PANEL_POWERON | SGIOC_PANEL_POWERINTR |
109 SGIOC_PANEL_VOLDNINTR | SGIOC_PANEL_VOLDNHOLD |
110 SGIOC_PANEL_VOLUPINTR | SGIOC_PANEL_VOLUPHOLD;
111
112 return;
113 }
114
115 if (machine_state & MACHINE_PANICED)
116 sgimc->cpuctrl0 |= SGIMC_CCTRL0_SYSINIT;
117
118 enable_irq(SGI_PANEL_IRQ);
119}
120
121static inline void power_button(void)
122{
123 if (machine_state & MACHINE_PANICED)
124 return;
125
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700126 if ((machine_state & MACHINE_SHUTTING_DOWN) ||
127 kill_cad_pid(SIGINT, 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /* No init process or button pressed twice. */
129 sgi_machine_power_off();
130 }
131
132 machine_state |= MACHINE_SHUTTING_DOWN;
Kees Cooka66b8992017-10-09 21:42:26 -0700133 blink_timer_timeout = POWERDOWN_FREQ;
134 blink_timeout(&blink_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Kees Cooka66b8992017-10-09 21:42:26 -0700136 timer_setup(&power_timer, power_timeout, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 power_timer.expires = jiffies + POWERDOWN_TIMEOUT * HZ;
138 add_timer(&power_timer);
139}
140
David Howells7d12e782006-10-05 14:55:46 +0100141static irqreturn_t panel_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 unsigned int buttons;
144
145 buttons = sgioc->panel;
146 sgioc->panel = SGIOC_PANEL_POWERON | SGIOC_PANEL_POWERINTR;
147
148 if (sgint->istat1 & SGINT_ISTAT1_PWR) {
149 /* Wait until interrupt goes away */
Ralf Baechle7e9e05c2009-05-16 12:23:45 +0100150 disable_irq_nosync(SGI_PANEL_IRQ);
Kees Cooka66b8992017-10-09 21:42:26 -0700151 timer_setup(&debounce_timer, debounce, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 debounce_timer.expires = jiffies + 5;
153 add_timer(&debounce_timer);
154 }
155
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700156 /* Power button was pressed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * ioc.ps page 22: "The Panel Register is called Power Control by Full
158 * House. Only lowest 2 bits are used. Guiness uses upper four bits
159 * for volume control". This is not true, all bits are pulled high
160 * on fullhouse */
Thomas Bogendoerferb03d7b12008-07-11 23:03:03 +0200161 if (!(buttons & SGIOC_PANEL_POWERINTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 power_button();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 return IRQ_HANDLED;
165}
166
167static int panic_event(struct notifier_block *this, unsigned long event,
Ralf Baechle70342282013-01-22 12:59:30 +0100168 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 if (machine_state & MACHINE_PANICED)
171 return NOTIFY_DONE;
172 machine_state |= MACHINE_PANICED;
173
Kees Cooka66b8992017-10-09 21:42:26 -0700174 blink_timer_timeout = PANIC_FREQ;
175 blink_timeout(&blink_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 return NOTIFY_DONE;
178}
179
180static struct notifier_block panic_block = {
181 .notifier_call = panic_event,
182};
183
184static int __init reboot_setup(void)
185{
Ralf Baechle754d0f22007-10-14 23:04:27 +0100186 int res;
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 _machine_restart = sgi_machine_restart;
189 _machine_halt = sgi_machine_halt;
Ralf Baechlefcdb27a2006-01-18 17:37:07 +0000190 pm_power_off = sgi_machine_power_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Ralf Baechle754d0f22007-10-14 23:04:27 +0100192 res = request_irq(SGI_PANEL_IRQ, panel_int, 0, "Front Panel", NULL);
193 if (res) {
194 printk(KERN_ERR "Allocation of front panel IRQ failed\n");
195 return res;
196 }
197
Kees Cooka66b8992017-10-09 21:42:26 -0700198 timer_setup(&blink_timer, blink_timeout, 0);
Alan Sterne041c682006-03-27 01:16:30 -0800199 atomic_notifier_chain_register(&panic_notifier_list, &panic_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 return 0;
202}
203
204subsys_initcall(reboot_setup);