2 * SN Platform system controller communication support
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
8 * Copyright (C) 2004-2006 Silicon Graphics, Inc. All rights reserved.
12 * System controller event handler
14 * These routines deal with environmental events arriving from the
18 #include <linux/interrupt.h>
19 #include <linux/sched.h>
20 #include <linux/byteorder/generic.h>
21 #include <asm/sn/sn_sal.h>
22 #include <asm/unaligned.h>
25 static struct subch_data_s *event_sd;
27 void scdrv_event(unsigned long);
28 DECLARE_TASKLET(sn_sysctl_event, scdrv_event, 0);
31 * scdrv_event_interrupt
33 * Pull incoming environmental events off the physical link to the
34 * system controller and put them in a temporary holding area in SAL.
35 * Schedule scdrv_event() to move them along to their ultimate
39 scdrv_event_interrupt(int irq, void *subch_data)
41 struct subch_data_s *sd = subch_data;
45 spin_lock_irqsave(&sd->sd_rlock, flags);
46 status = ia64_sn_irtr_intr(sd->sd_nasid, sd->sd_subch);
48 if ((status > 0) && (status & SAL_IROUTER_INTR_RECV)) {
49 tasklet_schedule(&sn_sysctl_event);
51 spin_unlock_irqrestore(&sd->sd_rlock, flags);
59 * Break an event (as read from SAL) into useful pieces so we can decide
63 scdrv_parse_event(char *event, int *src, int *code, int *esp_code, char *desc)
67 /* record event source address */
68 *src = get_unaligned_be32(event);
69 event += 4; /* move on to event code */
71 /* record the system controller's event code */
72 *code = get_unaligned_be32(event);
73 event += 4; /* move on to event arguments */
75 /* how many arguments are in the packet? */
77 /* if not 2, give up */
81 /* parse out the ESP code */
82 if (*event++ != IR_ARG_INT) {
83 /* not an integer argument, so give up */
86 *esp_code = get_unaligned_be32(event);
89 /* parse out the event description */
90 if (*event++ != IR_ARG_ASCII) {
91 /* not an ASCII string, so give up */
94 event[CHUNKSIZE-1] = '\0'; /* ensure this string ends! */
95 event += 2; /* skip leading CR/LF */
96 desc_end = desc + sprintf(desc, "%s", event);
98 /* strip trailing CR/LF (if any) */
100 (desc_end != desc) && ((*desc_end == 0xd) || (*desc_end == 0xa));
110 * scdrv_event_severity
112 * Figure out how urgent a message we should write to the console/syslog
116 scdrv_event_severity(int code)
118 int ev_class = (code & EV_CLASS_MASK);
119 int ev_severity = (code & EV_SEVERITY_MASK);
120 char *pk_severity = KERN_NOTICE;
124 switch (ev_severity) {
125 case EV_SEVERITY_POWER_LOW_WARNING:
126 case EV_SEVERITY_POWER_HIGH_WARNING:
127 pk_severity = KERN_WARNING;
129 case EV_SEVERITY_POWER_HIGH_FAULT:
130 case EV_SEVERITY_POWER_LOW_FAULT:
131 pk_severity = KERN_ALERT;
136 switch (ev_severity) {
137 case EV_SEVERITY_FAN_WARNING:
138 pk_severity = KERN_WARNING;
140 case EV_SEVERITY_FAN_FAULT:
141 pk_severity = KERN_CRIT;
146 switch (ev_severity) {
147 case EV_SEVERITY_TEMP_ADVISORY:
148 pk_severity = KERN_WARNING;
150 case EV_SEVERITY_TEMP_CRITICAL:
151 pk_severity = KERN_CRIT;
153 case EV_SEVERITY_TEMP_FAULT:
154 pk_severity = KERN_ALERT;
159 pk_severity = KERN_ALERT;
161 case EV_CLASS_TEST_FAULT:
162 pk_severity = KERN_ALERT;
164 case EV_CLASS_TEST_WARNING:
165 pk_severity = KERN_WARNING;
167 case EV_CLASS_PWRD_NOTIFY:
168 pk_severity = KERN_ALERT;
177 * scdrv_dispatch_event
179 * Do the right thing with an incoming event. That's often nothing
180 * more than printing it to the system log. For power-down notifications
181 * we start a graceful shutdown.
184 scdrv_dispatch_event(char *event, int len)
186 static int snsc_shutting_down = 0;
187 int code, esp_code, src, class;
188 char desc[CHUNKSIZE];
191 if (scdrv_parse_event(event, &src, &code, &esp_code, desc) < 0) {
192 /* ignore uninterpretible event */
196 /* how urgent is the message? */
197 severity = scdrv_event_severity(code);
199 class = (code & EV_CLASS_MASK);
201 if (class == EV_CLASS_PWRD_NOTIFY || code == ENV_PWRDN_PEND) {
202 if (snsc_shutting_down)
205 snsc_shutting_down = 1;
207 /* give a message for each type of event */
208 if (class == EV_CLASS_PWRD_NOTIFY)
209 printk(KERN_NOTICE "Power off indication received."
210 " Sending SIGPWR to init...\n");
211 else if (code == ENV_PWRDN_PEND)
212 printk(KERN_CRIT "WARNING: Shutting down the system"
213 " due to a critical environmental condition."
214 " Sending SIGPWR to init...\n");
216 /* give a SIGPWR signal to init proc */
217 kill_cad_pid(SIGPWR, 0);
219 /* print to system log */
220 printk("%s|$(0x%x)%s\n", severity, esp_code, desc);
228 * Called as a tasklet when an event arrives from the L1. Read the event
229 * from where it's temporarily stored in SAL and call scdrv_dispatch_event()
230 * to send it on its way. Keep trying to read events until SAL indicates
231 * that there are no more immediately available.
234 scdrv_event(unsigned long dummy)
239 struct subch_data_s *sd = event_sd;
241 /* anything to read? */
243 spin_lock_irqsave(&sd->sd_rlock, flags);
244 status = ia64_sn_irtr_recv(sd->sd_nasid, sd->sd_subch,
247 while (!(status < 0)) {
248 spin_unlock_irqrestore(&sd->sd_rlock, flags);
249 scdrv_dispatch_event(sd->sd_rb, len);
251 spin_lock_irqsave(&sd->sd_rlock, flags);
252 status = ia64_sn_irtr_recv(sd->sd_nasid, sd->sd_subch,
255 spin_unlock_irqrestore(&sd->sd_rlock, flags);
262 * Sets up a system controller subchannel to begin receiving event
263 * messages. This is sort of a specialized version of scdrv_open()
264 * in drivers/char/sn_sysctl.c.
267 scdrv_event_init(struct sysctl_data_s *scd)
271 event_sd = kzalloc(sizeof (struct subch_data_s), GFP_KERNEL);
272 if (event_sd == NULL) {
273 printk(KERN_WARNING "%s: couldn't allocate subchannel info"
274 " for event monitoring\n", __func__);
278 /* initialize subch_data_s fields */
279 event_sd->sd_nasid = scd->scd_nasid;
280 spin_lock_init(&event_sd->sd_rlock);
282 /* ask the system controllers to send events to this node */
283 event_sd->sd_subch = ia64_sn_sysctl_event_init(scd->scd_nasid);
285 if (event_sd->sd_subch < 0) {
287 printk(KERN_WARNING "%s: couldn't open event subchannel\n",
292 /* hook event subchannel up to the system controller interrupt */
293 rv = request_irq(SGI_UART_VECTOR, scdrv_event_interrupt,
294 IRQF_SHARED | IRQF_DISABLED,
295 "system controller events", event_sd);
297 printk(KERN_WARNING "%s: irq request failed (%d)\n",
299 ia64_sn_irtr_close(event_sd->sd_nasid, event_sd->sd_subch);