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#include <linux/jiffies.h>
74#include <linux/types.h>
75#include <linux/init.h>
76#include <linux/sched/signal.h>
77#include <linux/sched/debug.h>
78#include <linux/sched/task.h>
79#include <linux/interrupt.h>
80#include <linux/irq.h>
81#include <linux/memblock.h>
82#include <linux/acpi.h>
83#include <linux/timer.h>
84#include <linux/module.h>
85#include <linux/kernel.h>
86#include <linux/smp.h>
87#include <linux/workqueue.h>
88#include <linux/cpumask.h>
89#include <linux/kdebug.h>
90#include <linux/cpu.h>
91#include <linux/gfp.h>
92
93#include <asm/delay.h>
94#include <asm/meminit.h>
95#include <asm/page.h>
96#include <asm/ptrace.h>
97#include <asm/sal.h>
98#include <asm/mca.h>
99#include <asm/kexec.h>
100
101#include <asm/irq.h>
102#include <asm/hw_irq.h>
103#include <asm/tlb.h>
104
105#include "mca_drv.h"
106#include "entry.h"
107#include "irq.h"
108
109#if defined(IA64_MCA_DEBUG_INFO)
110# define IA64_MCA_DEBUG(fmt...) printk(fmt)
111#else
112# define IA64_MCA_DEBUG(fmt...)
113#endif
114
115#define NOTIFY_INIT(event, regs, arg, spin) \
116do { \
117 if ((notify_die((event), "INIT", (regs), (arg), 0, 0) \
118 == NOTIFY_STOP) && ((spin) == 1)) \
119 ia64_mca_spin(__func__); \
120} while (0)
121
122#define NOTIFY_MCA(event, regs, arg, spin) \
123do { \
124 if ((notify_die((event), "MCA", (regs), (arg), 0, 0) \
125 == NOTIFY_STOP) && ((spin) == 1)) \
126 ia64_mca_spin(__func__); \
127} while (0)
128
129
130DEFINE_PER_CPU(u64, ia64_mca_data);
131DEFINE_PER_CPU(u64, ia64_mca_per_cpu_pte);
132DEFINE_PER_CPU(u64, ia64_mca_pal_pte);
133DEFINE_PER_CPU(u64, ia64_mca_pal_base);
134DEFINE_PER_CPU(u64, ia64_mca_tr_reload);
135
136unsigned long __per_cpu_mca[NR_CPUS];
137
138
139extern void ia64_os_init_dispatch_monarch (void);
140extern void ia64_os_init_dispatch_slave (void);
141
142static int monarch_cpu = -1;
143
144static ia64_mc_info_t ia64_mc_info;
145
146#define MAX_CPE_POLL_INTERVAL (15*60*HZ)
147#define MIN_CPE_POLL_INTERVAL (2*60*HZ)
148#define CMC_POLL_INTERVAL (1*60*HZ)
149#define CPE_HISTORY_LENGTH 5
150#define CMC_HISTORY_LENGTH 5
151
152static struct timer_list cpe_poll_timer;
153static struct timer_list cmc_poll_timer;
154
155
156
157
158
159static int cmc_polling_enabled = 1;
160
161
162
163
164
165
166
167static int cpe_poll_enabled = 1;
168
169extern void salinfo_log_wakeup(int type, u8 *buffer, u64 size, int irqsafe);
170
171static int mca_init __initdata;
172
173
174
175
176
177#define mprintk(fmt...) ia64_mca_printk(fmt)
178
179#define MLOGBUF_SIZE (512+256*NR_CPUS)
180#define MLOGBUF_MSGMAX 256
181static char mlogbuf[MLOGBUF_SIZE];
182static DEFINE_SPINLOCK(mlogbuf_wlock);
183static DEFINE_SPINLOCK(mlogbuf_rlock);
184static unsigned long mlogbuf_start;
185static unsigned long mlogbuf_end;
186static unsigned int mlogbuf_finished = 0;
187static unsigned long mlogbuf_timestamp = 0;
188
189static int loglevel_save = -1;
190#define BREAK_LOGLEVEL(__console_loglevel) \
191 oops_in_progress = 1; \
192 if (loglevel_save < 0) \
193 loglevel_save = __console_loglevel; \
194 __console_loglevel = 15;
195
196#define RESTORE_LOGLEVEL(__console_loglevel) \
197 if (loglevel_save >= 0) { \
198 __console_loglevel = loglevel_save; \
199 loglevel_save = -1; \
200 } \
201 mlogbuf_finished = 0; \
202 oops_in_progress = 0;
203
204
205
206
207void ia64_mca_printk(const char *fmt, ...)
208{
209 va_list args;
210 int printed_len;
211 char temp_buf[MLOGBUF_MSGMAX];
212 char *p;
213
214 va_start(args, fmt);
215 printed_len = vscnprintf(temp_buf, sizeof(temp_buf), fmt, args);
216 va_end(args);
217
218
219 if (oops_in_progress) {
220
221 printk("%s", temp_buf);
222 } else {
223 spin_lock(&mlogbuf_wlock);
224 for (p = temp_buf; *p; p++) {
225 unsigned long next = (mlogbuf_end + 1) % MLOGBUF_SIZE;
226 if (next != mlogbuf_start) {
227 mlogbuf[mlogbuf_end] = *p;
228 mlogbuf_end = next;
229 } else {
230
231 break;
232 }
233 }
234 mlogbuf[mlogbuf_end] = '\0';
235 spin_unlock(&mlogbuf_wlock);
236 }
237}
238EXPORT_SYMBOL(ia64_mca_printk);
239
240
241
242
243
244void ia64_mlogbuf_dump(void)
245{
246 char temp_buf[MLOGBUF_MSGMAX];
247 char *p;
248 unsigned long index;
249 unsigned long flags;
250 unsigned int printed_len;
251
252
253 while (mlogbuf_start != mlogbuf_end) {
254 temp_buf[0] = '\0';
255 p = temp_buf;
256 printed_len = 0;
257
258 spin_lock_irqsave(&mlogbuf_rlock, flags);
259
260 index = mlogbuf_start;
261 while (index != mlogbuf_end) {
262 *p = mlogbuf[index];
263 index = (index + 1) % MLOGBUF_SIZE;
264 if (!*p)
265 break;
266 p++;
267 if (++printed_len >= MLOGBUF_MSGMAX - 1)
268 break;
269 }
270 *p = '\0';
271 if (temp_buf[0])
272 printk("%s", temp_buf);
273 mlogbuf_start = index;
274
275 mlogbuf_timestamp = 0;
276 spin_unlock_irqrestore(&mlogbuf_rlock, flags);
277 }
278}
279EXPORT_SYMBOL(ia64_mlogbuf_dump);
280
281
282
283
284
285
286
287static void ia64_mlogbuf_finish(int wait)
288{
289 BREAK_LOGLEVEL(console_loglevel);
290
291 spin_lock_init(&mlogbuf_rlock);
292 ia64_mlogbuf_dump();
293 printk(KERN_EMERG "mlogbuf_finish: printing switched to urgent mode, "
294 "MCA/INIT might be dodgy or fail.\n");
295
296 if (!wait)
297 return;
298
299
300 printk("Delaying for 5 seconds...\n");
301 udelay(5*1000000);
302
303 mlogbuf_finished = 1;
304}
305
306
307
308
309static void ia64_mlogbuf_dump_from_init(void)
310{
311 if (mlogbuf_finished)
312 return;
313
314 if (mlogbuf_timestamp &&
315 time_before(jiffies, mlogbuf_timestamp + 30 * HZ)) {
316 printk(KERN_ERR "INIT: mlogbuf_dump is interrupted by INIT "
317 " and the system seems to be messed up.\n");
318 ia64_mlogbuf_finish(0);
319 return;
320 }
321
322 if (!spin_trylock(&mlogbuf_rlock)) {
323 printk(KERN_ERR "INIT: mlogbuf_dump is interrupted by INIT. "
324 "Generated messages other than stack dump will be "
325 "buffered to mlogbuf and will be printed later.\n");
326 printk(KERN_ERR "INIT: If messages would not printed after "
327 "this INIT, wait 30sec and assert INIT again.\n");
328 if (!mlogbuf_timestamp)
329 mlogbuf_timestamp = jiffies;
330 return;
331 }
332 spin_unlock(&mlogbuf_rlock);
333 ia64_mlogbuf_dump();
334}
335
336static inline void
337ia64_mca_spin(const char *func)
338{
339 if (monarch_cpu == smp_processor_id())
340 ia64_mlogbuf_finish(0);
341 mprintk(KERN_EMERG "%s: spinning here, not returning to SAL\n", func);
342 while (1)
343 cpu_relax();
344}
345
346
347
348#define IA64_MAX_LOGS 2
349#define IA64_MAX_LOG_TYPES 4
350
351typedef struct ia64_state_log_s
352{
353 spinlock_t isl_lock;
354 int isl_index;
355 unsigned long isl_count;
356 ia64_err_rec_t *isl_log[IA64_MAX_LOGS];
357} ia64_state_log_t;
358
359static ia64_state_log_t ia64_state_log[IA64_MAX_LOG_TYPES];
360
361#define IA64_LOG_LOCK_INIT(it) spin_lock_init(&ia64_state_log[it].isl_lock)
362#define IA64_LOG_LOCK(it) spin_lock_irqsave(&ia64_state_log[it].isl_lock, s)
363#define IA64_LOG_UNLOCK(it) spin_unlock_irqrestore(&ia64_state_log[it].isl_lock,s)
364#define IA64_LOG_NEXT_INDEX(it) ia64_state_log[it].isl_index
365#define IA64_LOG_CURR_INDEX(it) 1 - ia64_state_log[it].isl_index
366#define IA64_LOG_INDEX_INC(it) \
367 {ia64_state_log[it].isl_index = 1 - ia64_state_log[it].isl_index; \
368 ia64_state_log[it].isl_count++;}
369#define IA64_LOG_INDEX_DEC(it) \
370 ia64_state_log[it].isl_index = 1 - ia64_state_log[it].isl_index
371#define IA64_LOG_NEXT_BUFFER(it) (void *)((ia64_state_log[it].isl_log[IA64_LOG_NEXT_INDEX(it)]))
372#define IA64_LOG_CURR_BUFFER(it) (void *)((ia64_state_log[it].isl_log[IA64_LOG_CURR_INDEX(it)]))
373#define IA64_LOG_COUNT(it) ia64_state_log[it].isl_count
374
375static inline void ia64_log_allocate(int it, u64 size)
376{
377 ia64_state_log[it].isl_log[IA64_LOG_CURR_INDEX(it)] =
378 (ia64_err_rec_t *)memblock_alloc(size, SMP_CACHE_BYTES);
379 if (!ia64_state_log[it].isl_log[IA64_LOG_CURR_INDEX(it)])
380 panic("%s: Failed to allocate %llu bytes\n", __func__, size);
381
382 ia64_state_log[it].isl_log[IA64_LOG_NEXT_INDEX(it)] =
383 (ia64_err_rec_t *)memblock_alloc(size, SMP_CACHE_BYTES);
384 if (!ia64_state_log[it].isl_log[IA64_LOG_NEXT_INDEX(it)])
385 panic("%s: Failed to allocate %llu bytes\n", __func__, size);
386}
387
388
389
390
391
392
393
394static void __init
395ia64_log_init(int sal_info_type)
396{
397 u64 max_size = 0;
398
399 IA64_LOG_NEXT_INDEX(sal_info_type) = 0;
400 IA64_LOG_LOCK_INIT(sal_info_type);
401
402
403 max_size = ia64_sal_get_state_info_size(sal_info_type);
404 if (!max_size)
405
406 return;
407
408
409 ia64_log_allocate(sal_info_type, max_size);
410}
411
412
413
414
415
416
417
418
419
420
421
422
423static u64
424ia64_log_get(int sal_info_type, u8 **buffer, int irq_safe)
425{
426 sal_log_record_header_t *log_buffer;
427 u64 total_len = 0;
428 unsigned long s;
429
430 IA64_LOG_LOCK(sal_info_type);
431
432
433 log_buffer = IA64_LOG_NEXT_BUFFER(sal_info_type);
434
435 total_len = ia64_sal_get_state_info(sal_info_type, (u64 *)log_buffer);
436
437 if (total_len) {
438 IA64_LOG_INDEX_INC(sal_info_type);
439 IA64_LOG_UNLOCK(sal_info_type);
440 if (irq_safe) {
441 IA64_MCA_DEBUG("%s: SAL error record type %d retrieved. Record length = %ld\n",
442 __func__, sal_info_type, total_len);
443 }
444 *buffer = (u8 *) log_buffer;
445 return total_len;
446 } else {
447 IA64_LOG_UNLOCK(sal_info_type);
448 return 0;
449 }
450}
451
452
453
454
455
456
457
458
459
460
461static void
462ia64_mca_log_sal_error_record(int sal_info_type)
463{
464 u8 *buffer;
465 sal_log_record_header_t *rh;
466 u64 size;
467 int irq_safe = sal_info_type != SAL_INFO_TYPE_MCA;
468#ifdef IA64_MCA_DEBUG_INFO
469 static const char * const rec_name[] = { "MCA", "INIT", "CMC", "CPE" };
470#endif
471
472 size = ia64_log_get(sal_info_type, &buffer, irq_safe);
473 if (!size)
474 return;
475
476 salinfo_log_wakeup(sal_info_type, buffer, size, irq_safe);
477
478 if (irq_safe)
479 IA64_MCA_DEBUG("CPU %d: SAL log contains %s error record\n",
480 smp_processor_id(),
481 sal_info_type < ARRAY_SIZE(rec_name) ? rec_name[sal_info_type] : "UNKNOWN");
482
483
484 rh = (sal_log_record_header_t *)buffer;
485 if (rh->severity == sal_log_severity_corrected)
486 ia64_sal_clear_state_info(sal_info_type);
487}
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502int
503search_mca_table (const struct mca_table_entry *first,
504 const struct mca_table_entry *last,
505 unsigned long ip)
506{
507 const struct mca_table_entry *curr;
508 u64 curr_start, curr_end;
509
510 curr = first;
511 while (curr <= last) {
512 curr_start = (u64) &curr->start_addr + curr->start_addr;
513 curr_end = (u64) &curr->end_addr + curr->end_addr;
514
515 if ((ip >= curr_start) && (ip <= curr_end)) {
516 return 1;
517 }
518 curr++;
519 }
520 return 0;
521}
522
523
524int mca_recover_range(unsigned long addr)
525{
526 extern struct mca_table_entry __start___mca_table[];
527 extern struct mca_table_entry __stop___mca_table[];
528
529 return search_mca_table(__start___mca_table, __stop___mca_table-1, addr);
530}
531EXPORT_SYMBOL_GPL(mca_recover_range);
532
533int cpe_vector = -1;
534int ia64_cpe_irq = -1;
535
536static irqreturn_t
537ia64_mca_cpe_int_handler (int cpe_irq, void *arg)
538{
539 static unsigned long cpe_history[CPE_HISTORY_LENGTH];
540 static int index;
541 static DEFINE_SPINLOCK(cpe_history_lock);
542
543 IA64_MCA_DEBUG("%s: received interrupt vector = %#x on CPU %d\n",
544 __func__, cpe_irq, smp_processor_id());
545
546
547 local_irq_enable();
548
549 spin_lock(&cpe_history_lock);
550 if (!cpe_poll_enabled && cpe_vector >= 0) {
551
552 int i, count = 1;
553 unsigned long now = jiffies;
554
555 for (i = 0; i < CPE_HISTORY_LENGTH; i++) {
556 if (now - cpe_history[i] <= HZ)
557 count++;
558 }
559
560 IA64_MCA_DEBUG(KERN_INFO "CPE threshold %d/%d\n", count, CPE_HISTORY_LENGTH);
561 if (count >= CPE_HISTORY_LENGTH) {
562
563 cpe_poll_enabled = 1;
564 spin_unlock(&cpe_history_lock);
565 disable_irq_nosync(local_vector_to_irq(IA64_CPE_VECTOR));
566
567
568
569
570
571
572 printk(KERN_WARNING "WARNING: Switching to polling CPE handler; error records may be lost\n");
573
574 mod_timer(&cpe_poll_timer, jiffies + MIN_CPE_POLL_INTERVAL);
575
576
577 goto out;
578 } else {
579 cpe_history[index++] = now;
580 if (index == CPE_HISTORY_LENGTH)
581 index = 0;
582 }
583 }
584 spin_unlock(&cpe_history_lock);
585out:
586
587 ia64_mca_log_sal_error_record(SAL_INFO_TYPE_CPE);
588
589 local_irq_disable();
590
591 return IRQ_HANDLED;
592}
593
594
595
596
597
598
599
600
601
602
603
604
605void
606ia64_mca_register_cpev (int cpev)
607{
608
609 struct ia64_sal_retval isrv;
610
611 isrv = ia64_sal_mc_set_params(SAL_MC_PARAM_CPE_INT, SAL_MC_PARAM_MECHANISM_INT, cpev, 0, 0);
612 if (isrv.status) {
613 printk(KERN_ERR "Failed to register Corrected Platform "
614 "Error interrupt vector with SAL (status %ld)\n", isrv.status);
615 return;
616 }
617
618 IA64_MCA_DEBUG("%s: corrected platform error "
619 "vector %#x registered\n", __func__, cpev);
620}
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635void
636ia64_mca_cmc_vector_setup (void)
637{
638 cmcv_reg_t cmcv;
639
640 cmcv.cmcv_regval = 0;
641 cmcv.cmcv_mask = 1;
642 cmcv.cmcv_vector = IA64_CMC_VECTOR;
643 ia64_setreg(_IA64_REG_CR_CMCV, cmcv.cmcv_regval);
644
645 IA64_MCA_DEBUG("%s: CPU %d corrected machine check vector %#x registered.\n",
646 __func__, smp_processor_id(), IA64_CMC_VECTOR);
647
648 IA64_MCA_DEBUG("%s: CPU %d CMCV = %#016lx\n",
649 __func__, smp_processor_id(), ia64_getreg(_IA64_REG_CR_CMCV));
650}
651
652
653
654
655
656
657
658
659
660
661
662
663
664static void
665ia64_mca_cmc_vector_disable (void *dummy)
666{
667 cmcv_reg_t cmcv;
668
669 cmcv.cmcv_regval = ia64_getreg(_IA64_REG_CR_CMCV);
670
671 cmcv.cmcv_mask = 1;
672 ia64_setreg(_IA64_REG_CR_CMCV, cmcv.cmcv_regval);
673
674 IA64_MCA_DEBUG("%s: CPU %d corrected machine check vector %#x disabled.\n",
675 __func__, smp_processor_id(), cmcv.cmcv_vector);
676}
677
678
679
680
681
682
683
684
685
686
687
688
689
690static void
691ia64_mca_cmc_vector_enable (void *dummy)
692{
693 cmcv_reg_t cmcv;
694
695 cmcv.cmcv_regval = ia64_getreg(_IA64_REG_CR_CMCV);
696
697 cmcv.cmcv_mask = 0;
698 ia64_setreg(_IA64_REG_CR_CMCV, cmcv.cmcv_regval);
699
700 IA64_MCA_DEBUG("%s: CPU %d corrected machine check vector %#x enabled.\n",
701 __func__, smp_processor_id(), cmcv.cmcv_vector);
702}
703
704
705
706
707
708
709
710static void
711ia64_mca_cmc_vector_disable_keventd(struct work_struct *unused)
712{
713 on_each_cpu(ia64_mca_cmc_vector_disable, NULL, 0);
714}
715
716
717
718
719
720
721
722static void
723ia64_mca_cmc_vector_enable_keventd(struct work_struct *unused)
724{
725 on_each_cpu(ia64_mca_cmc_vector_enable, NULL, 0);
726}
727
728
729
730
731
732
733
734
735
736static void
737ia64_mca_wakeup(int cpu)
738{
739 ia64_send_ipi(cpu, IA64_MCA_WAKEUP_VECTOR, IA64_IPI_DM_INT, 0);
740}
741
742
743
744
745
746
747
748
749
750static void
751ia64_mca_wakeup_all(void)
752{
753 int cpu;
754
755
756 for_each_online_cpu(cpu) {
757 if (ia64_mc_info.imi_rendez_checkin[cpu] == IA64_MCA_RENDEZ_CHECKIN_DONE)
758 ia64_mca_wakeup(cpu);
759 }
760
761}
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776static irqreturn_t
777ia64_mca_rendez_int_handler(int rendez_irq, void *arg)
778{
779 unsigned long flags;
780 int cpu = smp_processor_id();
781 struct ia64_mca_notify_die nd =
782 { .sos = NULL, .monarch_cpu = &monarch_cpu };
783
784
785 local_irq_save(flags);
786
787 NOTIFY_MCA(DIE_MCA_RENDZVOUS_ENTER, get_irq_regs(), (long)&nd, 1);
788
789 ia64_mc_info.imi_rendez_checkin[cpu] = IA64_MCA_RENDEZ_CHECKIN_DONE;
790
791
792
793 ia64_sal_mc_rendez();
794
795 NOTIFY_MCA(DIE_MCA_RENDZVOUS_PROCESS, get_irq_regs(), (long)&nd, 1);
796
797
798 while (monarch_cpu != -1)
799 cpu_relax();
800
801 NOTIFY_MCA(DIE_MCA_RENDZVOUS_LEAVE, get_irq_regs(), (long)&nd, 1);
802
803 ia64_mc_info.imi_rendez_checkin[cpu] = IA64_MCA_RENDEZ_CHECKIN_NOTDONE;
804
805 local_irq_restore(flags);
806 return IRQ_HANDLED;
807}
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823static irqreturn_t
824ia64_mca_wakeup_int_handler(int wakeup_irq, void *arg)
825{
826 return IRQ_HANDLED;
827}
828
829
830int (*ia64_mca_ucmc_extension)
831 (void*,struct ia64_sal_os_state*)
832 = NULL;
833
834int
835ia64_reg_MCA_extension(int (*fn)(void *, struct ia64_sal_os_state *))
836{
837 if (ia64_mca_ucmc_extension)
838 return 1;
839
840 ia64_mca_ucmc_extension = fn;
841 return 0;
842}
843
844void
845ia64_unreg_MCA_extension(void)
846{
847 if (ia64_mca_ucmc_extension)
848 ia64_mca_ucmc_extension = NULL;
849}
850
851EXPORT_SYMBOL(ia64_reg_MCA_extension);
852EXPORT_SYMBOL(ia64_unreg_MCA_extension);
853
854
855static inline void
856copy_reg(const u64 *fr, u64 fnat, unsigned long *tr, unsigned long *tnat)
857{
858 u64 fslot, tslot, nat;
859 *tr = *fr;
860 fslot = ((unsigned long)fr >> 3) & 63;
861 tslot = ((unsigned long)tr >> 3) & 63;
862 *tnat &= ~(1UL << tslot);
863 nat = (fnat >> fslot) & 1;
864 *tnat |= (nat << tslot);
865}
866
867
868
869
870
871
872
873static void
874ia64_mca_modify_comm(const struct task_struct *previous_current)
875{
876 char *p, comm[sizeof(current->comm)];
877 if (previous_current->pid)
878 snprintf(comm, sizeof(comm), "%s %d",
879 current->comm, previous_current->pid);
880 else {
881 int l;
882 if ((p = strchr(previous_current->comm, ' ')))
883 l = p - previous_current->comm;
884 else
885 l = strlen(previous_current->comm);
886 snprintf(comm, sizeof(comm), "%s %*s %d",
887 current->comm, l, previous_current->comm,
888 task_thread_info(previous_current)->cpu);
889 }
890 memcpy(current->comm, comm, sizeof(current->comm));
891}
892
893static void
894finish_pt_regs(struct pt_regs *regs, struct ia64_sal_os_state *sos,
895 unsigned long *nat)
896{
897 const pal_min_state_area_t *ms = sos->pal_min_state;
898 const u64 *bank;
899
900
901
902
903 if (ia64_psr(regs)->ic) {
904 regs->cr_iip = ms->pmsa_iip;
905 regs->cr_ipsr = ms->pmsa_ipsr;
906 regs->cr_ifs = ms->pmsa_ifs;
907 } else {
908 regs->cr_iip = ms->pmsa_xip;
909 regs->cr_ipsr = ms->pmsa_xpsr;
910 regs->cr_ifs = ms->pmsa_xfs;
911
912 sos->iip = ms->pmsa_iip;
913 sos->ipsr = ms->pmsa_ipsr;
914 sos->ifs = ms->pmsa_ifs;
915 }
916 regs->pr = ms->pmsa_pr;
917 regs->b0 = ms->pmsa_br0;
918 regs->ar_rsc = ms->pmsa_rsc;
919 copy_reg(&ms->pmsa_gr[1-1], ms->pmsa_nat_bits, ®s->r1, nat);
920 copy_reg(&ms->pmsa_gr[2-1], ms->pmsa_nat_bits, ®s->r2, nat);
921 copy_reg(&ms->pmsa_gr[3-1], ms->pmsa_nat_bits, ®s->r3, nat);
922 copy_reg(&ms->pmsa_gr[8-1], ms->pmsa_nat_bits, ®s->r8, nat);
923 copy_reg(&ms->pmsa_gr[9-1], ms->pmsa_nat_bits, ®s->r9, nat);
924 copy_reg(&ms->pmsa_gr[10-1], ms->pmsa_nat_bits, ®s->r10, nat);
925 copy_reg(&ms->pmsa_gr[11-1], ms->pmsa_nat_bits, ®s->r11, nat);
926 copy_reg(&ms->pmsa_gr[12-1], ms->pmsa_nat_bits, ®s->r12, nat);
927 copy_reg(&ms->pmsa_gr[13-1], ms->pmsa_nat_bits, ®s->r13, nat);
928 copy_reg(&ms->pmsa_gr[14-1], ms->pmsa_nat_bits, ®s->r14, nat);
929 copy_reg(&ms->pmsa_gr[15-1], ms->pmsa_nat_bits, ®s->r15, nat);
930 if (ia64_psr(regs)->bn)
931 bank = ms->pmsa_bank1_gr;
932 else
933 bank = ms->pmsa_bank0_gr;
934 copy_reg(&bank[16-16], ms->pmsa_nat_bits, ®s->r16, nat);
935 copy_reg(&bank[17-16], ms->pmsa_nat_bits, ®s->r17, nat);
936 copy_reg(&bank[18-16], ms->pmsa_nat_bits, ®s->r18, nat);
937 copy_reg(&bank[19-16], ms->pmsa_nat_bits, ®s->r19, nat);
938 copy_reg(&bank[20-16], ms->pmsa_nat_bits, ®s->r20, nat);
939 copy_reg(&bank[21-16], ms->pmsa_nat_bits, ®s->r21, nat);
940 copy_reg(&bank[22-16], ms->pmsa_nat_bits, ®s->r22, nat);
941 copy_reg(&bank[23-16], ms->pmsa_nat_bits, ®s->r23, nat);
942 copy_reg(&bank[24-16], ms->pmsa_nat_bits, ®s->r24, nat);
943 copy_reg(&bank[25-16], ms->pmsa_nat_bits, ®s->r25, nat);
944 copy_reg(&bank[26-16], ms->pmsa_nat_bits, ®s->r26, nat);
945 copy_reg(&bank[27-16], ms->pmsa_nat_bits, ®s->r27, nat);
946 copy_reg(&bank[28-16], ms->pmsa_nat_bits, ®s->r28, nat);
947 copy_reg(&bank[29-16], ms->pmsa_nat_bits, ®s->r29, nat);
948 copy_reg(&bank[30-16], ms->pmsa_nat_bits, ®s->r30, nat);
949 copy_reg(&bank[31-16], ms->pmsa_nat_bits, ®s->r31, nat);
950}
951
952
953
954
955
956
957
958
959
960
961
962
963
964static struct task_struct *
965ia64_mca_modify_original_stack(struct pt_regs *regs,
966 const struct switch_stack *sw,
967 struct ia64_sal_os_state *sos,
968 const char *type)
969{
970 char *p;
971 ia64_va va;
972 extern char ia64_leave_kernel[];
973 const pal_min_state_area_t *ms = sos->pal_min_state;
974 struct task_struct *previous_current;
975 struct pt_regs *old_regs;
976 struct switch_stack *old_sw;
977 unsigned size = sizeof(struct pt_regs) +
978 sizeof(struct switch_stack) + 16;
979 unsigned long *old_bspstore, *old_bsp;
980 unsigned long *new_bspstore, *new_bsp;
981 unsigned long old_unat, old_rnat, new_rnat, nat;
982 u64 slots, loadrs = regs->loadrs;
983 u64 r12 = ms->pmsa_gr[12-1], r13 = ms->pmsa_gr[13-1];
984 u64 ar_bspstore = regs->ar_bspstore;
985 u64 ar_bsp = regs->ar_bspstore + (loadrs >> 16);
986 const char *msg;
987 int cpu = smp_processor_id();
988
989 previous_current = curr_task(cpu);
990 ia64_set_curr_task(cpu, current);
991 if ((p = strchr(current->comm, ' ')))
992 *p = '\0';
993
994
995
996
997 regs->cr_ipsr = ms->pmsa_ipsr;
998 if (ia64_psr(regs)->dt == 0) {
999 va.l = r12;
1000 if (va.f.reg == 0) {
1001 va.f.reg = 7;
1002 r12 = va.l;
1003 }
1004 va.l = r13;
1005 if (va.f.reg == 0) {
1006 va.f.reg = 7;
1007 r13 = va.l;
1008 }
1009 }
1010 if (ia64_psr(regs)->rt == 0) {
1011 va.l = ar_bspstore;
1012 if (va.f.reg == 0) {
1013 va.f.reg = 7;
1014 ar_bspstore = va.l;
1015 }
1016 va.l = ar_bsp;
1017 if (va.f.reg == 0) {
1018 va.f.reg = 7;
1019 ar_bsp = va.l;
1020 }
1021 }
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032 old_bspstore = (unsigned long *)ar_bspstore;
1033 old_bsp = (unsigned long *)ar_bsp;
1034 slots = ia64_rse_num_regs(old_bspstore, old_bsp);
1035 new_bspstore = (unsigned long *)((u64)current + IA64_RBS_OFFSET);
1036 new_bsp = ia64_rse_skip_regs(new_bspstore, slots);
1037 regs->loadrs = (new_bsp - new_bspstore) * 8 << 16;
1038
1039
1040 if (user_mode(regs)) {
1041 msg = "occurred in user space";
1042
1043
1044
1045 ia64_mca_modify_comm(previous_current);
1046 goto no_mod;
1047 }
1048
1049 if (r13 != sos->prev_IA64_KR_CURRENT) {
1050 msg = "inconsistent previous current and r13";
1051 goto no_mod;
1052 }
1053
1054 if (!mca_recover_range(ms->pmsa_iip)) {
1055 if ((r12 - r13) >= KERNEL_STACK_SIZE) {
1056 msg = "inconsistent r12 and r13";
1057 goto no_mod;
1058 }
1059 if ((ar_bspstore - r13) >= KERNEL_STACK_SIZE) {
1060 msg = "inconsistent ar.bspstore and r13";
1061 goto no_mod;
1062 }
1063 va.p = old_bspstore;
1064 if (va.f.reg < 5) {
1065 msg = "old_bspstore is in the wrong region";
1066 goto no_mod;
1067 }
1068 if ((ar_bsp - r13) >= KERNEL_STACK_SIZE) {
1069 msg = "inconsistent ar.bsp and r13";
1070 goto no_mod;
1071 }
1072 size += (ia64_rse_skip_regs(old_bspstore, slots) - old_bspstore) * 8;
1073 if (ar_bspstore + size > r12) {
1074 msg = "no room for blocked state";
1075 goto no_mod;
1076 }
1077 }
1078
1079 ia64_mca_modify_comm(previous_current);
1080
1081
1082
1083
1084
1085 p = (char *)r12 - sizeof(*regs);
1086 old_regs = (struct pt_regs *)p;
1087 memcpy(old_regs, regs, sizeof(*regs));
1088 old_regs->loadrs = loadrs;
1089 old_unat = old_regs->ar_unat;
1090 finish_pt_regs(old_regs, sos, &old_unat);
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108 p -= sizeof(struct switch_stack);
1109 old_sw = (struct switch_stack *)p;
1110 memcpy(old_sw, sw, sizeof(*sw));
1111 old_sw->caller_unat = old_unat;
1112 old_sw->ar_fpsr = old_regs->ar_fpsr;
1113 copy_reg(&ms->pmsa_gr[4-1], ms->pmsa_nat_bits, &old_sw->r4, &old_unat);
1114 copy_reg(&ms->pmsa_gr[5-1], ms->pmsa_nat_bits, &old_sw->r5, &old_unat);
1115 copy_reg(&ms->pmsa_gr[6-1], ms->pmsa_nat_bits, &old_sw->r6, &old_unat);
1116 copy_reg(&ms->pmsa_gr[7-1], ms->pmsa_nat_bits, &old_sw->r7, &old_unat);
1117 old_sw->b0 = (u64)ia64_leave_kernel;
1118 old_sw->b1 = ms->pmsa_br1;
1119 old_sw->ar_pfs = 0;
1120 old_sw->ar_unat = old_unat;
1121 old_sw->pr = old_regs->pr | (1UL << PRED_NON_SYSCALL);
1122 previous_current->thread.ksp = (u64)p - 16;
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136 new_rnat = ia64_get_rnat(ia64_rse_rnat_addr(new_bspstore));
1137 old_rnat = regs->ar_rnat;
1138 while (slots--) {
1139 if (ia64_rse_is_rnat_slot(new_bspstore)) {
1140 new_rnat = ia64_get_rnat(new_bspstore++);
1141 }
1142 if (ia64_rse_is_rnat_slot(old_bspstore)) {
1143 *old_bspstore++ = old_rnat;
1144 old_rnat = 0;
1145 }
1146 nat = (new_rnat >> ia64_rse_slot_num(new_bspstore)) & 1UL;
1147 old_rnat &= ~(1UL << ia64_rse_slot_num(old_bspstore));
1148 old_rnat |= (nat << ia64_rse_slot_num(old_bspstore));
1149 *old_bspstore++ = *new_bspstore++;
1150 }
1151 old_sw->ar_bspstore = (unsigned long)old_bspstore;
1152 old_sw->ar_rnat = old_rnat;
1153
1154 sos->prev_task = previous_current;
1155 return previous_current;
1156
1157no_mod:
1158 mprintk(KERN_INFO "cpu %d, %s %s, original stack not modified\n",
1159 smp_processor_id(), type, msg);
1160 old_unat = regs->ar_unat;
1161 finish_pt_regs(regs, sos, &old_unat);
1162 return previous_current;
1163}
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173static void
1174ia64_wait_for_slaves(int monarch, const char *type)
1175{
1176 int c, i , wait;
1177
1178
1179
1180
1181 for (i = 0; i < 5000; i++) {
1182 wait = 0;
1183 for_each_online_cpu(c) {
1184 if (c == monarch)
1185 continue;
1186 if (ia64_mc_info.imi_rendez_checkin[c]
1187 == IA64_MCA_RENDEZ_CHECKIN_NOTDONE) {
1188 udelay(1000);
1189 wait = 1;
1190 break;
1191 }
1192 }
1193 if (!wait)
1194 goto all_in;
1195 }
1196
1197
1198
1199
1200 ia64_mlogbuf_finish(0);
1201 mprintk(KERN_INFO "OS %s slave did not rendezvous on cpu", type);
1202 for_each_online_cpu(c) {
1203 if (c == monarch)
1204 continue;
1205 if (ia64_mc_info.imi_rendez_checkin[c] == IA64_MCA_RENDEZ_CHECKIN_NOTDONE)
1206 mprintk(" %d", c);
1207 }
1208 mprintk("\n");
1209 return;
1210
1211all_in:
1212 mprintk(KERN_INFO "All OS %s slaves have reached rendezvous\n", type);
1213 return;
1214}
1215
1216
1217
1218
1219
1220
1221
1222static void mca_insert_tr(u64 iord)
1223{
1224
1225 int i;
1226 u64 old_rr;
1227 struct ia64_tr_entry *p;
1228 unsigned long psr;
1229 int cpu = smp_processor_id();
1230
1231 if (!ia64_idtrs[cpu])
1232 return;
1233
1234 psr = ia64_clear_ic();
1235 for (i = IA64_TR_ALLOC_BASE; i < IA64_TR_ALLOC_MAX; i++) {
1236 p = ia64_idtrs[cpu] + (iord - 1) * IA64_TR_ALLOC_MAX;
1237 if (p->pte & 0x1) {
1238 old_rr = ia64_get_rr(p->ifa);
1239 if (old_rr != p->rr) {
1240 ia64_set_rr(p->ifa, p->rr);
1241 ia64_srlz_d();
1242 }
1243 ia64_ptr(iord, p->ifa, p->itir >> 2);
1244 ia64_srlz_i();
1245 if (iord & 0x1) {
1246 ia64_itr(0x1, i, p->ifa, p->pte, p->itir >> 2);
1247 ia64_srlz_i();
1248 }
1249 if (iord & 0x2) {
1250 ia64_itr(0x2, i, p->ifa, p->pte, p->itir >> 2);
1251 ia64_srlz_i();
1252 }
1253 if (old_rr != p->rr) {
1254 ia64_set_rr(p->ifa, old_rr);
1255 ia64_srlz_d();
1256 }
1257 }
1258 }
1259 ia64_set_psr(psr);
1260}
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282void
1283ia64_mca_handler(struct pt_regs *regs, struct switch_stack *sw,
1284 struct ia64_sal_os_state *sos)
1285{
1286 int recover, cpu = smp_processor_id();
1287 struct task_struct *previous_current;
1288 struct ia64_mca_notify_die nd =
1289 { .sos = sos, .monarch_cpu = &monarch_cpu, .data = &recover };
1290 static atomic_t mca_count;
1291 static cpumask_t mca_cpu;
1292
1293 if (atomic_add_return(1, &mca_count) == 1) {
1294 monarch_cpu = cpu;
1295 sos->monarch = 1;
1296 } else {
1297 cpumask_set_cpu(cpu, &mca_cpu);
1298 sos->monarch = 0;
1299 }
1300 mprintk(KERN_INFO "Entered OS MCA handler. PSP=%lx cpu=%d "
1301 "monarch=%ld\n", sos->proc_state_param, cpu, sos->monarch);
1302
1303 previous_current = ia64_mca_modify_original_stack(regs, sw, sos, "MCA");
1304
1305 NOTIFY_MCA(DIE_MCA_MONARCH_ENTER, regs, (long)&nd, 1);
1306
1307 ia64_mc_info.imi_rendez_checkin[cpu] = IA64_MCA_RENDEZ_CHECKIN_CONCURRENT_MCA;
1308 if (sos->monarch) {
1309 ia64_wait_for_slaves(cpu, "MCA");
1310
1311
1312
1313
1314
1315
1316
1317
1318 ia64_mca_wakeup_all();
1319 } else {
1320 while (cpumask_test_cpu(cpu, &mca_cpu))
1321 cpu_relax();
1322 }
1323
1324 NOTIFY_MCA(DIE_MCA_MONARCH_PROCESS, regs, (long)&nd, 1);
1325
1326
1327 ia64_mca_log_sal_error_record(SAL_INFO_TYPE_MCA);
1328
1329
1330 recover = (ia64_mca_ucmc_extension
1331 && ia64_mca_ucmc_extension(
1332 IA64_LOG_CURR_BUFFER(SAL_INFO_TYPE_MCA),
1333 sos));
1334
1335 if (recover) {
1336 sal_log_record_header_t *rh = IA64_LOG_CURR_BUFFER(SAL_INFO_TYPE_MCA);
1337 rh->severity = sal_log_severity_corrected;
1338 ia64_sal_clear_state_info(SAL_INFO_TYPE_MCA);
1339 sos->os_status = IA64_MCA_CORRECTED;
1340 } else {
1341
1342 ia64_mlogbuf_finish(1);
1343 }
1344
1345 if (__this_cpu_read(ia64_mca_tr_reload)) {
1346 mca_insert_tr(0x1);
1347 mca_insert_tr(0x2);
1348 }
1349
1350 NOTIFY_MCA(DIE_MCA_MONARCH_LEAVE, regs, (long)&nd, 1);
1351
1352 if (atomic_dec_return(&mca_count) > 0) {
1353 int i;
1354
1355
1356
1357
1358 for_each_online_cpu(i) {
1359 if (cpumask_test_cpu(i, &mca_cpu)) {
1360 monarch_cpu = i;
1361 cpumask_clear_cpu(i, &mca_cpu);
1362 while (monarch_cpu != -1)
1363 cpu_relax();
1364 ia64_set_curr_task(cpu, previous_current);
1365 ia64_mc_info.imi_rendez_checkin[cpu]
1366 = IA64_MCA_RENDEZ_CHECKIN_NOTDONE;
1367 return;
1368 }
1369 }
1370 }
1371 ia64_set_curr_task(cpu, previous_current);
1372 ia64_mc_info.imi_rendez_checkin[cpu] = IA64_MCA_RENDEZ_CHECKIN_NOTDONE;
1373 monarch_cpu = -1;
1374}
1375
1376static DECLARE_WORK(cmc_disable_work, ia64_mca_cmc_vector_disable_keventd);
1377static DECLARE_WORK(cmc_enable_work, ia64_mca_cmc_vector_enable_keventd);
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393static irqreturn_t
1394ia64_mca_cmc_int_handler(int cmc_irq, void *arg)
1395{
1396 static unsigned long cmc_history[CMC_HISTORY_LENGTH];
1397 static int index;
1398 static DEFINE_SPINLOCK(cmc_history_lock);
1399
1400 IA64_MCA_DEBUG("%s: received interrupt vector = %#x on CPU %d\n",
1401 __func__, cmc_irq, smp_processor_id());
1402
1403
1404 local_irq_enable();
1405
1406 spin_lock(&cmc_history_lock);
1407 if (!cmc_polling_enabled) {
1408 int i, count = 1;
1409 unsigned long now = jiffies;
1410
1411 for (i = 0; i < CMC_HISTORY_LENGTH; i++) {
1412 if (now - cmc_history[i] <= HZ)
1413 count++;
1414 }
1415
1416 IA64_MCA_DEBUG(KERN_INFO "CMC threshold %d/%d\n", count, CMC_HISTORY_LENGTH);
1417 if (count >= CMC_HISTORY_LENGTH) {
1418
1419 cmc_polling_enabled = 1;
1420 spin_unlock(&cmc_history_lock);
1421
1422
1423
1424
1425 ia64_mca_cmc_vector_disable(NULL);
1426 schedule_work(&cmc_disable_work);
1427
1428
1429
1430
1431
1432
1433 printk(KERN_WARNING "WARNING: Switching to polling CMC handler; error records may be lost\n");
1434
1435 mod_timer(&cmc_poll_timer, jiffies + CMC_POLL_INTERVAL);
1436
1437
1438 goto out;
1439 } else {
1440 cmc_history[index++] = now;
1441 if (index == CMC_HISTORY_LENGTH)
1442 index = 0;
1443 }
1444 }
1445 spin_unlock(&cmc_history_lock);
1446out:
1447
1448 ia64_mca_log_sal_error_record(SAL_INFO_TYPE_CMC);
1449
1450 local_irq_disable();
1451
1452 return IRQ_HANDLED;
1453}
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468static irqreturn_t
1469ia64_mca_cmc_int_caller(int cmc_irq, void *arg)
1470{
1471 static int start_count = -1;
1472 unsigned int cpuid;
1473
1474 cpuid = smp_processor_id();
1475
1476
1477 if (start_count == -1)
1478 start_count = IA64_LOG_COUNT(SAL_INFO_TYPE_CMC);
1479
1480 ia64_mca_cmc_int_handler(cmc_irq, arg);
1481
1482 cpuid = cpumask_next(cpuid+1, cpu_online_mask);
1483
1484 if (cpuid < nr_cpu_ids) {
1485 ia64_send_ipi(cpuid, IA64_CMCP_VECTOR, IA64_IPI_DM_INT, 0);
1486 } else {
1487
1488 if (start_count == IA64_LOG_COUNT(SAL_INFO_TYPE_CMC)) {
1489
1490 printk(KERN_WARNING "Returning to interrupt driven CMC handler\n");
1491 schedule_work(&cmc_enable_work);
1492 cmc_polling_enabled = 0;
1493
1494 } else {
1495
1496 mod_timer(&cmc_poll_timer, jiffies + CMC_POLL_INTERVAL);
1497 }
1498
1499 start_count = -1;
1500 }
1501
1502 return IRQ_HANDLED;
1503}
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514static void
1515ia64_mca_cmc_poll (struct timer_list *unused)
1516{
1517
1518 ia64_send_ipi(cpumask_first(cpu_online_mask), IA64_CMCP_VECTOR,
1519 IA64_IPI_DM_INT, 0);
1520}
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535static irqreturn_t
1536ia64_mca_cpe_int_caller(int cpe_irq, void *arg)
1537{
1538 static int start_count = -1;
1539 static int poll_time = MIN_CPE_POLL_INTERVAL;
1540 unsigned int cpuid;
1541
1542 cpuid = smp_processor_id();
1543
1544
1545 if (start_count == -1)
1546 start_count = IA64_LOG_COUNT(SAL_INFO_TYPE_CPE);
1547
1548 ia64_mca_cpe_int_handler(cpe_irq, arg);
1549
1550 cpuid = cpumask_next(cpuid+1, cpu_online_mask);
1551
1552 if (cpuid < NR_CPUS) {
1553 ia64_send_ipi(cpuid, IA64_CPEP_VECTOR, IA64_IPI_DM_INT, 0);
1554 } else {
1555
1556
1557
1558
1559 if (start_count != IA64_LOG_COUNT(SAL_INFO_TYPE_CPE)) {
1560 poll_time = max(MIN_CPE_POLL_INTERVAL, poll_time / 2);
1561 } else if (cpe_vector < 0) {
1562 poll_time = min(MAX_CPE_POLL_INTERVAL, poll_time * 2);
1563 } else {
1564 poll_time = MIN_CPE_POLL_INTERVAL;
1565
1566 printk(KERN_WARNING "Returning to interrupt driven CPE handler\n");
1567 enable_irq(local_vector_to_irq(IA64_CPE_VECTOR));
1568 cpe_poll_enabled = 0;
1569 }
1570
1571 if (cpe_poll_enabled)
1572 mod_timer(&cpe_poll_timer, jiffies + poll_time);
1573 start_count = -1;
1574 }
1575
1576 return IRQ_HANDLED;
1577}
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589static void
1590ia64_mca_cpe_poll (struct timer_list *unused)
1591{
1592
1593 ia64_send_ipi(cpumask_first(cpu_online_mask), IA64_CPEP_VECTOR,
1594 IA64_IPI_DM_INT, 0);
1595}
1596
1597static int
1598default_monarch_init_process(struct notifier_block *self, unsigned long val, void *data)
1599{
1600 int c;
1601 struct task_struct *g, *t;
1602 if (val != DIE_INIT_MONARCH_PROCESS)
1603 return NOTIFY_DONE;
1604#ifdef CONFIG_KEXEC
1605 if (atomic_read(&kdump_in_progress))
1606 return NOTIFY_DONE;
1607#endif
1608
1609
1610
1611
1612
1613
1614 BREAK_LOGLEVEL(console_loglevel);
1615 ia64_mlogbuf_dump_from_init();
1616
1617 printk(KERN_ERR "Processes interrupted by INIT -");
1618 for_each_online_cpu(c) {
1619 struct ia64_sal_os_state *s;
1620 t = __va(__per_cpu_mca[c] + IA64_MCA_CPU_INIT_STACK_OFFSET);
1621 s = (struct ia64_sal_os_state *)((char *)t + MCA_SOS_OFFSET);
1622 g = s->prev_task;
1623 if (g) {
1624 if (g->pid)
1625 printk(" %d", g->pid);
1626 else
1627 printk(" %d (cpu %d task 0x%p)", g->pid, task_cpu(g), g);
1628 }
1629 }
1630 printk("\n\n");
1631 if (read_trylock(&tasklist_lock)) {
1632 do_each_thread (g, t) {
1633 printk("\nBacktrace of pid %d (%s)\n", t->pid, t->comm);
1634 show_stack(t, NULL);
1635 } while_each_thread (g, t);
1636 read_unlock(&tasklist_lock);
1637 }
1638
1639 RESTORE_LOGLEVEL(console_loglevel);
1640 return NOTIFY_DONE;
1641}
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660void
1661ia64_init_handler(struct pt_regs *regs, struct switch_stack *sw,
1662 struct ia64_sal_os_state *sos)
1663{
1664 static atomic_t slaves;
1665 static atomic_t monarchs;
1666 struct task_struct *previous_current;
1667 int cpu = smp_processor_id();
1668 struct ia64_mca_notify_die nd =
1669 { .sos = sos, .monarch_cpu = &monarch_cpu };
1670
1671 NOTIFY_INIT(DIE_INIT_ENTER, regs, (long)&nd, 0);
1672
1673 mprintk(KERN_INFO "Entered OS INIT handler. PSP=%lx cpu=%d monarch=%ld\n",
1674 sos->proc_state_param, cpu, sos->monarch);
1675 salinfo_log_wakeup(SAL_INFO_TYPE_INIT, NULL, 0, 0);
1676
1677 previous_current = ia64_mca_modify_original_stack(regs, sw, sos, "INIT");
1678 sos->os_status = IA64_INIT_RESUME;
1679
1680
1681
1682
1683
1684
1685 if (!sos->monarch && atomic_add_return(1, &slaves) == num_online_cpus()) {
1686 mprintk(KERN_WARNING "%s: Promoting cpu %d to monarch.\n",
1687 __func__, cpu);
1688 atomic_dec(&slaves);
1689 sos->monarch = 1;
1690 }
1691
1692
1693
1694
1695
1696
1697 if (sos->monarch && atomic_add_return(1, &monarchs) > 1) {
1698 mprintk(KERN_WARNING "%s: Demoting cpu %d to slave.\n",
1699 __func__, cpu);
1700 atomic_dec(&monarchs);
1701 sos->monarch = 0;
1702 }
1703
1704 if (!sos->monarch) {
1705 ia64_mc_info.imi_rendez_checkin[cpu] = IA64_MCA_RENDEZ_CHECKIN_INIT;
1706
1707#ifdef CONFIG_KEXEC
1708 while (monarch_cpu == -1 && !atomic_read(&kdump_in_progress))
1709 udelay(1000);
1710#else
1711 while (monarch_cpu == -1)
1712 cpu_relax();
1713#endif
1714
1715 NOTIFY_INIT(DIE_INIT_SLAVE_ENTER, regs, (long)&nd, 1);
1716 NOTIFY_INIT(DIE_INIT_SLAVE_PROCESS, regs, (long)&nd, 1);
1717
1718#ifdef CONFIG_KEXEC
1719 while (monarch_cpu != -1 && !atomic_read(&kdump_in_progress))
1720 udelay(1000);
1721#else
1722 while (monarch_cpu != -1)
1723 cpu_relax();
1724#endif
1725
1726 NOTIFY_INIT(DIE_INIT_SLAVE_LEAVE, regs, (long)&nd, 1);
1727
1728 mprintk("Slave on cpu %d returning to normal service.\n", cpu);
1729 ia64_set_curr_task(cpu, previous_current);
1730 ia64_mc_info.imi_rendez_checkin[cpu] = IA64_MCA_RENDEZ_CHECKIN_NOTDONE;
1731 atomic_dec(&slaves);
1732 return;
1733 }
1734
1735 monarch_cpu = cpu;
1736 NOTIFY_INIT(DIE_INIT_MONARCH_ENTER, regs, (long)&nd, 1);
1737
1738
1739
1740
1741
1742
1743
1744 mprintk("Delaying for 5 seconds...\n");
1745 udelay(5*1000000);
1746 ia64_wait_for_slaves(cpu, "INIT");
1747
1748
1749
1750
1751 NOTIFY_INIT(DIE_INIT_MONARCH_PROCESS, regs, (long)&nd, 1);
1752 NOTIFY_INIT(DIE_INIT_MONARCH_LEAVE, regs, (long)&nd, 1);
1753
1754 mprintk("\nINIT dump complete. Monarch on cpu %d returning to normal service.\n", cpu);
1755 atomic_dec(&monarchs);
1756 ia64_set_curr_task(cpu, previous_current);
1757 monarch_cpu = -1;
1758 return;
1759}
1760
1761static int __init
1762ia64_mca_disable_cpe_polling(char *str)
1763{
1764 cpe_poll_enabled = 0;
1765 return 1;
1766}
1767
1768__setup("disable_cpe_poll", ia64_mca_disable_cpe_polling);
1769
1770
1771
1772
1773
1774
1775
1776static void
1777format_mca_init_stack(void *mca_data, unsigned long offset,
1778 const char *type, int cpu)
1779{
1780 struct task_struct *p = (struct task_struct *)((char *)mca_data + offset);
1781 struct thread_info *ti;
1782 memset(p, 0, KERNEL_STACK_SIZE);
1783 ti = task_thread_info(p);
1784 ti->flags = _TIF_MCA_INIT;
1785 ti->preempt_count = 1;
1786 ti->task = p;
1787 ti->cpu = cpu;
1788 p->stack = ti;
1789 p->state = TASK_UNINTERRUPTIBLE;
1790 cpumask_set_cpu(cpu, &p->cpus_mask);
1791 INIT_LIST_HEAD(&p->tasks);
1792 p->parent = p->real_parent = p->group_leader = p;
1793 INIT_LIST_HEAD(&p->children);
1794 INIT_LIST_HEAD(&p->sibling);
1795 strncpy(p->comm, type, sizeof(p->comm)-1);
1796}
1797
1798
1799static void * __ref mca_bootmem(void)
1800{
1801 return memblock_alloc(sizeof(struct ia64_mca_cpu), KERNEL_STACK_SIZE);
1802}
1803
1804
1805void
1806ia64_mca_cpu_init(void *cpu_data)
1807{
1808 void *pal_vaddr;
1809 void *data;
1810 long sz = sizeof(struct ia64_mca_cpu);
1811 int cpu = smp_processor_id();
1812 static int first_time = 1;
1813
1814
1815
1816
1817
1818 if (__per_cpu_mca[cpu]) {
1819 data = __va(__per_cpu_mca[cpu]);
1820 } else {
1821 if (first_time) {
1822 data = mca_bootmem();
1823 first_time = 0;
1824 } else
1825 data = (void *)__get_free_pages(GFP_KERNEL,
1826 get_order(sz));
1827 if (!data)
1828 panic("Could not allocate MCA memory for cpu %d\n",
1829 cpu);
1830 }
1831 format_mca_init_stack(data, offsetof(struct ia64_mca_cpu, mca_stack),
1832 "MCA", cpu);
1833 format_mca_init_stack(data, offsetof(struct ia64_mca_cpu, init_stack),
1834 "INIT", cpu);
1835 __this_cpu_write(ia64_mca_data, (__per_cpu_mca[cpu] = __pa(data)));
1836
1837
1838
1839
1840
1841 __this_cpu_write(ia64_mca_per_cpu_pte,
1842 pte_val(mk_pte_phys(__pa(cpu_data), PAGE_KERNEL)));
1843
1844
1845
1846
1847
1848 pal_vaddr = efi_get_pal_addr();
1849 if (!pal_vaddr)
1850 return;
1851 __this_cpu_write(ia64_mca_pal_base,
1852 GRANULEROUNDDOWN((unsigned long) pal_vaddr));
1853 __this_cpu_write(ia64_mca_pal_pte, pte_val(mk_pte_phys(__pa(pal_vaddr),
1854 PAGE_KERNEL)));
1855}
1856
1857static int ia64_mca_cpu_online(unsigned int cpu)
1858{
1859 unsigned long flags;
1860
1861 local_irq_save(flags);
1862 if (!cmc_polling_enabled)
1863 ia64_mca_cmc_vector_enable(NULL);
1864 local_irq_restore(flags);
1865 return 0;
1866}
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888void __init
1889ia64_mca_init(void)
1890{
1891 ia64_fptr_t *init_hldlr_ptr_monarch = (ia64_fptr_t *)ia64_os_init_dispatch_monarch;
1892 ia64_fptr_t *init_hldlr_ptr_slave = (ia64_fptr_t *)ia64_os_init_dispatch_slave;
1893 ia64_fptr_t *mca_hldlr_ptr = (ia64_fptr_t *)ia64_os_mca_dispatch;
1894 int i;
1895 long rc;
1896 struct ia64_sal_retval isrv;
1897 unsigned long timeout = IA64_MCA_RENDEZ_TIMEOUT;
1898 static struct notifier_block default_init_monarch_nb = {
1899 .notifier_call = default_monarch_init_process,
1900 .priority = 0
1901 };
1902
1903 IA64_MCA_DEBUG("%s: begin\n", __func__);
1904
1905
1906 for(i = 0 ; i < NR_CPUS; i++)
1907 ia64_mc_info.imi_rendez_checkin[i] = IA64_MCA_RENDEZ_CHECKIN_NOTDONE;
1908
1909
1910
1911
1912
1913
1914 while (1) {
1915 isrv = ia64_sal_mc_set_params(SAL_MC_PARAM_RENDEZ_INT,
1916 SAL_MC_PARAM_MECHANISM_INT,
1917 IA64_MCA_RENDEZ_VECTOR,
1918 timeout,
1919 SAL_MC_PARAM_RZ_ALWAYS);
1920 rc = isrv.status;
1921 if (rc == 0)
1922 break;
1923 if (rc == -2) {
1924 printk(KERN_INFO "Increasing MCA rendezvous timeout from "
1925 "%ld to %ld milliseconds\n", timeout, isrv.v0);
1926 timeout = isrv.v0;
1927 NOTIFY_MCA(DIE_MCA_NEW_TIMEOUT, NULL, timeout, 0);
1928 continue;
1929 }
1930 printk(KERN_ERR "Failed to register rendezvous interrupt "
1931 "with SAL (status %ld)\n", rc);
1932 return;
1933 }
1934
1935
1936 isrv = ia64_sal_mc_set_params(SAL_MC_PARAM_RENDEZ_WAKEUP,
1937 SAL_MC_PARAM_MECHANISM_INT,
1938 IA64_MCA_WAKEUP_VECTOR,
1939 0, 0);
1940 rc = isrv.status;
1941 if (rc) {
1942 printk(KERN_ERR "Failed to register wakeup interrupt with SAL "
1943 "(status %ld)\n", rc);
1944 return;
1945 }
1946
1947 IA64_MCA_DEBUG("%s: registered MCA rendezvous spinloop and wakeup mech.\n", __func__);
1948
1949 ia64_mc_info.imi_mca_handler = ia64_tpa(mca_hldlr_ptr->fp);
1950
1951
1952
1953
1954 ia64_mc_info.imi_mca_handler_size = 0;
1955
1956
1957 if ((rc = ia64_sal_set_vectors(SAL_VECTOR_OS_MCA,
1958 ia64_mc_info.imi_mca_handler,
1959 ia64_tpa(mca_hldlr_ptr->gp),
1960 ia64_mc_info.imi_mca_handler_size,
1961 0, 0, 0)))
1962 {
1963 printk(KERN_ERR "Failed to register OS MCA handler with SAL "
1964 "(status %ld)\n", rc);
1965 return;
1966 }
1967
1968 IA64_MCA_DEBUG("%s: registered OS MCA handler with SAL at 0x%lx, gp = 0x%lx\n", __func__,
1969 ia64_mc_info.imi_mca_handler, ia64_tpa(mca_hldlr_ptr->gp));
1970
1971
1972
1973
1974
1975 ia64_mc_info.imi_monarch_init_handler = ia64_tpa(init_hldlr_ptr_monarch->fp);
1976 ia64_mc_info.imi_monarch_init_handler_size = 0;
1977 ia64_mc_info.imi_slave_init_handler = ia64_tpa(init_hldlr_ptr_slave->fp);
1978 ia64_mc_info.imi_slave_init_handler_size = 0;
1979
1980 IA64_MCA_DEBUG("%s: OS INIT handler at %lx\n", __func__,
1981 ia64_mc_info.imi_monarch_init_handler);
1982
1983
1984 if ((rc = ia64_sal_set_vectors(SAL_VECTOR_OS_INIT,
1985 ia64_mc_info.imi_monarch_init_handler,
1986 ia64_tpa(ia64_getreg(_IA64_REG_GP)),
1987 ia64_mc_info.imi_monarch_init_handler_size,
1988 ia64_mc_info.imi_slave_init_handler,
1989 ia64_tpa(ia64_getreg(_IA64_REG_GP)),
1990 ia64_mc_info.imi_slave_init_handler_size)))
1991 {
1992 printk(KERN_ERR "Failed to register m/s INIT handlers with SAL "
1993 "(status %ld)\n", rc);
1994 return;
1995 }
1996 if (register_die_notifier(&default_init_monarch_nb)) {
1997 printk(KERN_ERR "Failed to register default monarch INIT process\n");
1998 return;
1999 }
2000
2001 IA64_MCA_DEBUG("%s: registered OS INIT handler with SAL\n", __func__);
2002
2003
2004
2005
2006
2007 ia64_log_init(SAL_INFO_TYPE_MCA);
2008 ia64_log_init(SAL_INFO_TYPE_INIT);
2009 ia64_log_init(SAL_INFO_TYPE_CMC);
2010 ia64_log_init(SAL_INFO_TYPE_CPE);
2011
2012 mca_init = 1;
2013 printk(KERN_INFO "MCA related initialization done\n");
2014}
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024void __init ia64_mca_irq_init(void)
2025{
2026
2027
2028
2029
2030 register_percpu_irq(IA64_CMC_VECTOR, ia64_mca_cmc_int_handler, 0,
2031 "cmc_hndlr");
2032 register_percpu_irq(IA64_CMCP_VECTOR, ia64_mca_cmc_int_caller, 0,
2033 "cmc_poll");
2034 ia64_mca_cmc_vector_setup();
2035
2036
2037 register_percpu_irq(IA64_MCA_RENDEZ_VECTOR, ia64_mca_rendez_int_handler,
2038 0, "mca_rdzv");
2039
2040
2041 register_percpu_irq(IA64_MCA_WAKEUP_VECTOR, ia64_mca_wakeup_int_handler,
2042 0, "mca_wkup");
2043
2044
2045 register_percpu_irq(IA64_CPEP_VECTOR, ia64_mca_cpe_int_caller, 0,
2046 "cpe_poll");
2047}
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059static int __init
2060ia64_mca_late_init(void)
2061{
2062 if (!mca_init)
2063 return 0;
2064
2065
2066 timer_setup(&cmc_poll_timer, ia64_mca_cmc_poll, 0);
2067
2068
2069 cmc_polling_enabled = 0;
2070 cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "ia64/mca:online",
2071 ia64_mca_cpu_online, NULL);
2072 IA64_MCA_DEBUG("%s: CMCI/P setup and enabled.\n", __func__);
2073
2074
2075 cpe_vector = acpi_request_vector(ACPI_INTERRUPT_CPEI);
2076 timer_setup(&cpe_poll_timer, ia64_mca_cpe_poll, 0);
2077
2078 {
2079 unsigned int irq;
2080
2081 if (cpe_vector >= 0) {
2082
2083 irq = local_vector_to_irq(cpe_vector);
2084 if (irq > 0) {
2085 cpe_poll_enabled = 0;
2086 irq_set_status_flags(irq, IRQ_PER_CPU);
2087 if (request_irq(irq, ia64_mca_cpe_int_handler,
2088 0, "cpe_hndlr", NULL))
2089 pr_err("Failed to register cpe_hndlr interrupt\n");
2090 ia64_cpe_irq = irq;
2091 ia64_mca_register_cpev(cpe_vector);
2092 IA64_MCA_DEBUG("%s: CPEI/P setup and enabled.\n",
2093 __func__);
2094 return 0;
2095 }
2096 printk(KERN_ERR "%s: Failed to find irq for CPE "
2097 "interrupt handler, vector %d\n",
2098 __func__, cpe_vector);
2099 }
2100
2101 if (cpe_poll_enabled) {
2102 ia64_mca_cpe_poll(0UL);
2103 IA64_MCA_DEBUG("%s: CPEP setup and enabled.\n", __func__);
2104 }
2105 }
2106
2107 return 0;
2108}
2109
2110device_initcall(ia64_mca_late_init);
2111