Blame view

arch/mips/sgi-ip22/ip22-reset.c 4.98 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
  /*
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
   * for more details.
   *
fcdb27ad1   Ralf Baechle   [MIPS] Rename _ma...
6
   * Copyright (C) 1997, 1998, 2001, 03, 05, 06 by Ralf Baechle
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
   */
71baa1a59   Ralf Baechle   [MIPS] Get rid of...
8
  #include <linux/linkage.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
10
11
12
13
14
15
  #include <linux/init.h>
  #include <linux/ds1286.h>
  #include <linux/module.h>
  #include <linux/interrupt.h>
  #include <linux/kernel.h>
  #include <linux/sched.h>
  #include <linux/notifier.h>
fcdb27ad1   Ralf Baechle   [MIPS] Rename _ma...
16
  #include <linux/pm.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  #include <linux/timer.h>
  
  #include <asm/io.h>
  #include <asm/irq.h>
  #include <asm/system.h>
  #include <asm/reboot.h>
  #include <asm/sgialib.h>
  #include <asm/sgi/ioc.h>
  #include <asm/sgi/hpc3.h>
  #include <asm/sgi/mc.h>
  #include <asm/sgi/ip22.h>
  
  /*
   * Just powerdown if init hasn't done after POWERDOWN_TIMEOUT seconds.
   * I'm not sure if this feature is a good idea, for now it's here just to
   * make the power button make behave just like under IRIX.
   */
  #define POWERDOWN_TIMEOUT	120
  
  /*
f18190bd3   Lee Revell   fix paniced->pani...
37
   * Blink frequency during reboot grace period and when panicked.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38
39
40
   */
  #define POWERDOWN_FREQ		(HZ / 4)
  #define PANIC_FREQ		(HZ / 8)
b03d7b18f   Thomas Bogendoerfer   [MIPS] IP22: Add ...
41
  static struct timer_list power_timer, blink_timer, debounce_timer;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42
43
44
  
  #define MACHINE_PANICED		1
  #define MACHINE_SHUTTING_DOWN	2
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45

71baa1a59   Ralf Baechle   [MIPS] Get rid of...
46
  static int machine_state;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
47

b3f6df9f2   Robert P. J. Day   [MIPS] Transform ...
48
  static void __noreturn sgi_machine_power_off(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  {
  	unsigned int tmp;
  
  	local_irq_disable();
  
  	/* Disable watchdog */
  	tmp = hpc3c0->rtcregs[RTC_CMD] & 0xff;
  	hpc3c0->rtcregs[RTC_CMD] = tmp | RTC_WAM;
  	hpc3c0->rtcregs[RTC_WSEC] = 0;
  	hpc3c0->rtcregs[RTC_WHSEC] = 0;
  
  	while (1) {
  		sgioc->panel = ~SGIOC_PANEL_POWERON;
  		/* Good bye cruel world ...  */
  
  		/* If we're still running, we probably got sent an alarm
  		   interrupt.  Read the flag to clear it.  */
  		tmp = hpc3c0->rtcregs[RTC_HOURS_ALARM];
  	}
  }
b3f6df9f2   Robert P. J. Day   [MIPS] Transform ...
69
  static void __noreturn sgi_machine_restart(char *command)
71baa1a59   Ralf Baechle   [MIPS] Get rid of...
70
71
72
73
74
75
  {
  	if (machine_state & MACHINE_SHUTTING_DOWN)
  		sgi_machine_power_off();
  	sgimc->cpuctrl0 |= SGIMC_CCTRL0_SYSINIT;
  	while (1);
  }
b3f6df9f2   Robert P. J. Day   [MIPS] Transform ...
76
  static void __noreturn sgi_machine_halt(void)
71baa1a59   Ralf Baechle   [MIPS] Get rid of...
77
78
79
80
81
  {
  	if (machine_state & MACHINE_SHUTTING_DOWN)
  		sgi_machine_power_off();
  	ArcEnterInteractiveMode();
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
82
83
84
85
86
87
88
89
90
91
  static void power_timeout(unsigned long data)
  {
  	sgi_machine_power_off();
  }
  
  static void blink_timeout(unsigned long data)
  {
  	/* XXX fix this for fullhouse  */
  	sgi_ioc_reset ^= (SGIOC_RESET_LC0OFF|SGIOC_RESET_LC1OFF);
  	sgioc->reset = sgi_ioc_reset;
71baa1a59   Ralf Baechle   [MIPS] Get rid of...
92
  	mod_timer(&blink_timer, jiffies + data);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
93
94
95
96
97
98
99
  }
  
  static void debounce(unsigned long data)
  {
  	del_timer(&debounce_timer);
  	if (sgint->istat1 & SGINT_ISTAT1_PWR) {
  		/* Interrupt still being sent. */
71baa1a59   Ralf Baechle   [MIPS] Get rid of...
100
  		debounce_timer.expires = jiffies + (HZ / 20); /* 0.05s  */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
  		add_timer(&debounce_timer);
  
  		sgioc->panel = SGIOC_PANEL_POWERON | SGIOC_PANEL_POWERINTR |
  			       SGIOC_PANEL_VOLDNINTR | SGIOC_PANEL_VOLDNHOLD |
  			       SGIOC_PANEL_VOLUPINTR | SGIOC_PANEL_VOLUPHOLD;
  
  		return;
  	}
  
  	if (machine_state & MACHINE_PANICED)
  		sgimc->cpuctrl0 |= SGIMC_CCTRL0_SYSINIT;
  
  	enable_irq(SGI_PANEL_IRQ);
  }
  
  static inline void power_button(void)
  {
  	if (machine_state & MACHINE_PANICED)
  		return;
9ec52099e   Cedric Le Goater   [PATCH] replace c...
120
121
  	if ((machine_state & MACHINE_SHUTTING_DOWN) ||
  			kill_cad_pid(SIGINT, 1)) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
122
123
124
125
126
127
128
129
130
131
132
133
134
  		/* No init process or button pressed twice.  */
  		sgi_machine_power_off();
  	}
  
  	machine_state |= MACHINE_SHUTTING_DOWN;
  	blink_timer.data = POWERDOWN_FREQ;
  	blink_timeout(POWERDOWN_FREQ);
  
  	init_timer(&power_timer);
  	power_timer.function = power_timeout;
  	power_timer.expires = jiffies + POWERDOWN_TIMEOUT * HZ;
  	add_timer(&power_timer);
  }
7d12e780e   David Howells   IRQ: Maintain reg...
135
  static irqreturn_t panel_int(int irq, void *dev_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
136
137
138
139
140
141
142
143
  {
  	unsigned int buttons;
  
  	buttons = sgioc->panel;
  	sgioc->panel = SGIOC_PANEL_POWERON | SGIOC_PANEL_POWERINTR;
  
  	if (sgint->istat1 & SGINT_ISTAT1_PWR) {
  		/* Wait until interrupt goes away */
7e9e05cad   Ralf Baechle   MIPS: IP22: Fix h...
144
  		disable_irq_nosync(SGI_PANEL_IRQ);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
145
146
147
148
149
  		init_timer(&debounce_timer);
  		debounce_timer.function = debounce;
  		debounce_timer.expires = jiffies + 5;
  		add_timer(&debounce_timer);
  	}
42a3b4f25   Ralf Baechle   [PATCH] mips: nuk...
150
  	/* Power button was pressed
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
151
152
153
154
  	 * ioc.ps page 22: "The Panel Register is called Power Control by Full
  	 * House. Only lowest 2 bits are used. Guiness uses upper four bits
  	 * for volume control". This is not true, all bits are pulled high
  	 * on fullhouse */
b03d7b18f   Thomas Bogendoerfer   [MIPS] IP22: Add ...
155
  	if (!(buttons & SGIOC_PANEL_POWERINTR))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
156
  		power_button();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
  
  	return IRQ_HANDLED;
  }
  
  static int panic_event(struct notifier_block *this, unsigned long event,
                        void *ptr)
  {
  	if (machine_state & MACHINE_PANICED)
  		return NOTIFY_DONE;
  	machine_state |= MACHINE_PANICED;
  
  	blink_timer.data = PANIC_FREQ;
  	blink_timeout(PANIC_FREQ);
  
  	return NOTIFY_DONE;
  }
  
  static struct notifier_block panic_block = {
  	.notifier_call	= panic_event,
  };
  
  static int __init reboot_setup(void)
  {
754d0f239   Ralf Baechle   [MIPS] IP22: Comp...
180
  	int res;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
181
182
  	_machine_restart = sgi_machine_restart;
  	_machine_halt = sgi_machine_halt;
fcdb27ad1   Ralf Baechle   [MIPS] Rename _ma...
183
  	pm_power_off = sgi_machine_power_off;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
184

754d0f239   Ralf Baechle   [MIPS] IP22: Comp...
185
186
187
188
189
190
  	res = request_irq(SGI_PANEL_IRQ, panel_int, 0, "Front Panel", NULL);
  	if (res) {
  		printk(KERN_ERR "Allocation of front panel IRQ failed
  ");
  		return res;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
191
192
  	init_timer(&blink_timer);
  	blink_timer.function = blink_timeout;
e041c6834   Alan Stern   [PATCH] Notifier ...
193
  	atomic_notifier_chain_register(&panic_notifier_list, &panic_block);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
194
195
196
197
198
  
  	return 0;
  }
  
  subsys_initcall(reboot_setup);