1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20#include <linux/clockchips.h>
21#include <linux/kernel.h>
22#include <linux/sched.h>
23#include <linux/smp.h>
24#include <linux/cpumask.h>
25#include <linux/interrupt.h>
26#include <linux/kernel_stat.h>
27#include <linux/module.h>
28#include <linux/ftrace.h>
29#include <linux/slab.h>
30
31#include <asm/cpu.h>
32#include <asm/processor.h>
33#include <asm/atomic.h>
34#include <asm/system.h>
35#include <asm/hardirq.h>
36#include <asm/hazards.h>
37#include <asm/irq.h>
38#include <asm/mmu_context.h>
39#include <asm/mipsregs.h>
40#include <asm/cacheflush.h>
41#include <asm/time.h>
42#include <asm/addrspace.h>
43#include <asm/smtc.h>
44#include <asm/smtc_proc.h>
45
46
47
48
49
50
51unsigned long irq_hwmask[NR_IRQS];
52
53#define LOCK_MT_PRA() \
54 local_irq_save(flags); \
55 mtflags = dmt()
56
57#define UNLOCK_MT_PRA() \
58 emt(mtflags); \
59 local_irq_restore(flags)
60
61#define LOCK_CORE_PRA() \
62 local_irq_save(flags); \
63 mtflags = dvpe()
64
65#define UNLOCK_CORE_PRA() \
66 evpe(mtflags); \
67 local_irq_restore(flags)
68
69
70
71
72
73
74
75
76
77
78asiduse smtc_live_asid[MAX_SMTC_TLBS][MAX_SMTC_ASIDS];
79
80
81
82
83
84#define IPIBUF_PER_CPU 4
85
86struct smtc_ipi_q IPIQ[NR_CPUS];
87static struct smtc_ipi_q freeIPIq;
88
89
90
91
92void ipi_decode(struct smtc_ipi *);
93static void post_direct_ipi(int cpu, struct smtc_ipi *pipi);
94static void setup_cross_vpe_interrupts(unsigned int nvpe);
95void init_smtc_stats(void);
96
97
98
99unsigned int smtc_status;
100
101
102
103static int vpe0limit;
104static int ipibuffers;
105static int nostlb;
106static int asidmask;
107unsigned long smtc_asid_mask = 0xff;
108
109static int __init vpe0tcs(char *str)
110{
111 get_option(&str, &vpe0limit);
112
113 return 1;
114}
115
116static int __init ipibufs(char *str)
117{
118 get_option(&str, &ipibuffers);
119 return 1;
120}
121
122static int __init stlb_disable(char *s)
123{
124 nostlb = 1;
125 return 1;
126}
127
128static int __init asidmask_set(char *str)
129{
130 get_option(&str, &asidmask);
131 switch (asidmask) {
132 case 0x1:
133 case 0x3:
134 case 0x7:
135 case 0xf:
136 case 0x1f:
137 case 0x3f:
138 case 0x7f:
139 case 0xff:
140 smtc_asid_mask = (unsigned long)asidmask;
141 break;
142 default:
143 printk("ILLEGAL ASID mask 0x%x from command line\n", asidmask);
144 }
145 return 1;
146}
147
148__setup("vpe0tcs=", vpe0tcs);
149__setup("ipibufs=", ipibufs);
150__setup("nostlb", stlb_disable);
151__setup("asidmask=", asidmask_set);
152
153#ifdef CONFIG_SMTC_IDLE_HOOK_DEBUG
154
155static int hang_trig;
156
157static int __init hangtrig_enable(char *s)
158{
159 hang_trig = 1;
160 return 1;
161}
162
163
164__setup("hangtrig", hangtrig_enable);
165
166#define DEFAULT_BLOCKED_IPI_LIMIT 32
167
168static int timerq_limit = DEFAULT_BLOCKED_IPI_LIMIT;
169
170static int __init tintq(char *str)
171{
172 get_option(&str, &timerq_limit);
173 return 1;
174}
175
176__setup("tintq=", tintq);
177
178static int imstuckcount[2][8];
179
180static int vpemask[2][8] = {
181 {0, 0, 1, 0, 0, 0, 0, 1},
182 {0, 0, 0, 0, 0, 0, 0, 1}
183};
184int tcnoprog[NR_CPUS];
185static atomic_t idle_hook_initialized = ATOMIC_INIT(0);
186static int clock_hang_reported[NR_CPUS];
187
188#endif
189
190
191
192
193
194static void smtc_configure_tlb(void)
195{
196 int i, tlbsiz, vpes;
197 unsigned long mvpconf0;
198 unsigned long config1val;
199
200
201 for (vpes=0; vpes<MAX_SMTC_TLBS; vpes++) {
202 for(i = 0; i < MAX_SMTC_ASIDS; i++) {
203 smtc_live_asid[vpes][i] = 0;
204 }
205 }
206 mvpconf0 = read_c0_mvpconf0();
207
208 if ((vpes = ((mvpconf0 & MVPCONF0_PVPE)
209 >> MVPCONF0_PVPE_SHIFT) + 1) > 1) {
210
211 if ((mvpconf0 & MVPCONF0_TLBS) && !nostlb) {
212
213
214
215
216
217
218 if ((tlbsiz = ((mvpconf0 & MVPCONF0_PTLBE)
219 >> MVPCONF0_PTLBE_SHIFT)) == 0) {
220
221
222
223
224
225
226 settc(1);
227
228 write_tc_c0_tchalt(TCHALT_H);
229 mips_ihb();
230
231 for (i=0; i < vpes; i++) {
232 write_tc_c0_tcbind(i);
233
234
235
236
237
238 write_c0_mvpcontrol(
239 read_c0_mvpcontrol() & ~ MVPCONTROL_VPC );
240 mips_ihb();
241
242
243
244 if (((read_vpe_c0_config() & MIPS_CONF_MT) >> 7) == 1) {
245 config1val = read_vpe_c0_config1();
246 tlbsiz += ((config1val >> 25) & 0x3f) + 1;
247 }
248
249
250 write_c0_mvpcontrol(
251 read_c0_mvpcontrol() | MVPCONTROL_VPC );
252 mips_ihb();
253 }
254 }
255 write_c0_mvpcontrol(read_c0_mvpcontrol() | MVPCONTROL_STLB);
256 ehb();
257
258
259
260
261
262
263
264
265
266 if (tlbsiz > 64)
267 tlbsiz = 64;
268 cpu_data[0].tlbsize = current_cpu_data.tlbsize = tlbsiz;
269 smtc_status |= SMTC_TLB_SHARED;
270 local_flush_tlb_all();
271
272 printk("TLB of %d entry pairs shared by %d VPEs\n",
273 tlbsiz, vpes);
274 } else {
275 printk("WARNING: TLB Not Sharable on SMTC Boot!\n");
276 }
277 }
278}
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298int __init smtc_build_cpu_map(int start_cpu_slot)
299{
300 int i, ntcs;
301
302
303
304
305
306
307 ntcs = ((read_c0_mvpconf0() & MVPCONF0_PTC) >> MVPCONF0_PTC_SHIFT) + 1;
308 for (i=start_cpu_slot; i<NR_CPUS && i<ntcs; i++) {
309 set_cpu_possible(i, true);
310 __cpu_number_map[i] = i;
311 __cpu_logical_map[i] = i;
312 }
313#ifdef CONFIG_MIPS_MT_FPAFF
314
315 cpus_clear(mt_fpu_cpumask);
316#endif
317
318
319 printk("%i available secondary CPU TC(s)\n", i - 1);
320
321 return i;
322}
323
324
325
326
327
328
329
330
331
332
333static void smtc_tc_setup(int vpe, int tc, int cpu)
334{
335 settc(tc);
336 write_tc_c0_tchalt(TCHALT_H);
337 mips_ihb();
338 write_tc_c0_tcstatus((read_tc_c0_tcstatus()
339 & ~(TCSTATUS_TKSU | TCSTATUS_DA | TCSTATUS_IXMT))
340 | TCSTATUS_A);
341
342
343
344
345
346 write_tc_c0_tccontext((sizeof(struct smtc_ipi_q) * cpu) << 16);
347
348 write_tc_c0_tcbind(vpe);
349
350 memcpy(&cpu_data[cpu], &cpu_data[0], sizeof(struct cpuinfo_mips));
351
352 if (cpu_data[0].cputype == CPU_34K ||
353 cpu_data[0].cputype == CPU_1004K)
354 cpu_data[cpu].options &= ~MIPS_CPU_FPU;
355 cpu_data[cpu].vpe_id = vpe;
356 cpu_data[cpu].tc_id = tc;
357
358 cpu_data[cpu].core = (read_vpe_c0_ebase() >> 1) & 0xff;
359}
360
361
362
363
364
365
366#define CP0_SKEW 8
367
368void smtc_prepare_cpus(int cpus)
369{
370 int i, vpe, tc, ntc, nvpe, tcpervpe[NR_CPUS], slop, cpu;
371 unsigned long flags;
372 unsigned long val;
373 int nipi;
374 struct smtc_ipi *pipi;
375
376
377 local_irq_save(flags);
378
379 dvpe();
380 dmt();
381
382 spin_lock_init(&freeIPIq.lock);
383
384
385
386
387
388 for (i=0; i<NR_CPUS; i++) {
389 IPIQ[i].head = IPIQ[i].tail = NULL;
390 spin_lock_init(&IPIQ[i].lock);
391 IPIQ[i].depth = 0;
392 IPIQ[i].resched_flag = 0;
393 }
394
395
396 cpu = 0;
397 cpu_data[cpu].vpe_id = 0;
398 cpu_data[cpu].tc_id = 0;
399 cpu_data[cpu].core = (read_c0_ebase() >> 1) & 0xff;
400 cpu++;
401
402
403 mips_mt_set_cpuoptions();
404 if (vpelimit > 0)
405 printk("Limit of %d VPEs set\n", vpelimit);
406 if (tclimit > 0)
407 printk("Limit of %d TCs set\n", tclimit);
408 if (nostlb) {
409 printk("Shared TLB Use Inhibited - UNSAFE for Multi-VPE Operation\n");
410 }
411 if (asidmask)
412 printk("ASID mask value override to 0x%x\n", asidmask);
413
414
415#ifdef CONFIG_SMTC_IDLE_HOOK_DEBUG
416 if (hang_trig)
417 printk("Logic Analyser Trigger on suspected TC hang\n");
418#endif
419
420
421 write_c0_mvpcontrol( read_c0_mvpcontrol() | MVPCONTROL_VPC );
422
423 val = read_c0_mvpconf0();
424 nvpe = ((val & MVPCONF0_PVPE) >> MVPCONF0_PVPE_SHIFT) + 1;
425 if (vpelimit > 0 && nvpe > vpelimit)
426 nvpe = vpelimit;
427 ntc = ((val & MVPCONF0_PTC) >> MVPCONF0_PTC_SHIFT) + 1;
428 if (ntc > NR_CPUS)
429 ntc = NR_CPUS;
430 if (tclimit > 0 && ntc > tclimit)
431 ntc = tclimit;
432 slop = ntc % nvpe;
433 for (i = 0; i < nvpe; i++) {
434 tcpervpe[i] = ntc / nvpe;
435 if (slop) {
436 if((slop - i) > 0) tcpervpe[i]++;
437 }
438 }
439
440 if (vpe0limit > ntc) vpe0limit = ntc;
441 if (vpe0limit > 0) {
442 int slopslop;
443 if (vpe0limit < tcpervpe[0]) {
444
445 slop = tcpervpe[0] - vpe0limit;
446 slopslop = slop % (nvpe - 1);
447 tcpervpe[0] = vpe0limit;
448 for (i = 1; i < nvpe; i++) {
449 tcpervpe[i] += slop / (nvpe - 1);
450 if(slopslop && ((slopslop - (i - 1) > 0)))
451 tcpervpe[i]++;
452 }
453 } else if (vpe0limit > tcpervpe[0]) {
454
455 slop = vpe0limit - tcpervpe[0];
456 slopslop = slop % (nvpe - 1);
457 tcpervpe[0] = vpe0limit;
458 for (i = 1; i < nvpe; i++) {
459 tcpervpe[i] -= slop / (nvpe - 1);
460 if(slopslop && ((slopslop - (i - 1) > 0)))
461 tcpervpe[i]--;
462 }
463 }
464 }
465
466
467 smtc_configure_tlb();
468
469 for (tc = 0, vpe = 0 ; (vpe < nvpe) && (tc < ntc) ; vpe++) {
470 if (tcpervpe[vpe] == 0)
471 continue;
472 if (vpe != 0)
473 printk(", ");
474 printk("VPE %d: TC", vpe);
475 for (i = 0; i < tcpervpe[vpe]; i++) {
476
477
478
479
480
481 if (tc != 0) {
482 smtc_tc_setup(vpe, tc, cpu);
483 cpu++;
484 }
485 printk(" %d", tc);
486 tc++;
487 }
488 if (vpe != 0) {
489
490
491
492 write_vpe_c0_vpeconf0(read_vpe_c0_vpeconf0() |
493 VPECONF0_MVP);
494
495
496
497
498 write_vpe_c0_cause(0);
499
500
501
502
503
504 write_vpe_c0_status((read_vpe_c0_status()
505 & ~(ST0_BEV | ST0_ERL | ST0_EXL | ST0_IM))
506 | (STATUSF_IP0 | STATUSF_IP1 | STATUSF_IP7
507 | ST0_IE));
508
509
510
511
512 write_vpe_c0_config(read_c0_config());
513
514 write_vpe_c0_compare(0);
515
516 write_vpe_c0_config7(read_c0_config7());
517 write_vpe_c0_count(read_c0_count() + CP0_SKEW);
518 ehb();
519 }
520
521 write_vpe_c0_vpecontrol(read_vpe_c0_vpecontrol() | VPECONTROL_TE);
522
523 write_vpe_c0_vpeconf0(read_vpe_c0_vpeconf0() | VPECONF0_VPA);
524 }
525
526
527
528
529 while (tc < (((val & MVPCONF0_PTC) >> MVPCONF0_PTC_SHIFT) + 1)) {
530 set_cpu_possible(tc, false);
531 set_cpu_present(tc, false);
532 tc++;
533 }
534
535
536 write_c0_mvpcontrol( read_c0_mvpcontrol() & ~ MVPCONTROL_VPC );
537
538 printk("\n");
539
540
541
542#ifdef CONFIG_MIPS_MT_FPAFF
543 for (tc = 0; tc < ntc; tc++) {
544 if (cpu_data[tc].options & MIPS_CPU_FPU)
545 cpu_set(tc, mt_fpu_cpumask);
546 }
547#endif
548
549
550
551
552
553 setup_cross_vpe_interrupts(nvpe);
554
555
556 nipi = NR_CPUS * IPIBUF_PER_CPU;
557 if (ipibuffers > 0)
558 nipi = ipibuffers;
559
560 pipi = kmalloc(nipi *sizeof(struct smtc_ipi), GFP_KERNEL);
561 if (pipi == NULL)
562 panic("kmalloc of IPI message buffers failed\n");
563 else
564 printk("IPI buffer pool of %d buffers\n", nipi);
565 for (i = 0; i < nipi; i++) {
566 smtc_ipi_nq(&freeIPIq, pipi);
567 pipi++;
568 }
569
570
571 emt(EMT_ENABLE);
572 evpe(EVPE_ENABLE);
573 local_irq_restore(flags);
574
575 init_smtc_stats();
576}
577
578
579
580
581
582
583
584
585
586
587void __cpuinit smtc_boot_secondary(int cpu, struct task_struct *idle)
588{
589 extern u32 kernelsp[NR_CPUS];
590 unsigned long flags;
591 int mtflags;
592
593 LOCK_MT_PRA();
594 if (cpu_data[cpu].vpe_id != cpu_data[smp_processor_id()].vpe_id) {
595 dvpe();
596 }
597 settc(cpu_data[cpu].tc_id);
598
599
600 write_tc_c0_tcrestart((unsigned long)&smp_bootstrap);
601
602
603 kernelsp[cpu] = __KSTK_TOS(idle);
604 write_tc_gpr_sp(__KSTK_TOS(idle));
605
606
607 write_tc_gpr_gp((unsigned long)task_thread_info(idle));
608
609 smtc_status |= SMTC_MTC_ACTIVE;
610 write_tc_c0_tchalt(0);
611 if (cpu_data[cpu].vpe_id != cpu_data[smp_processor_id()].vpe_id) {
612 evpe(EVPE_ENABLE);
613 }
614 UNLOCK_MT_PRA();
615}
616
617void smtc_init_secondary(void)
618{
619 local_irq_enable();
620}
621
622void smtc_smp_finish(void)
623{
624 int cpu = smp_processor_id();
625
626
627
628
629
630
631
632 if (cpu > 0 && (cpu_data[cpu].vpe_id != cpu_data[cpu - 1].vpe_id))
633 write_c0_compare(read_c0_count() + mips_hpt_frequency/HZ);
634
635 printk("TC %d going on-line as CPU %d\n",
636 cpu_data[smp_processor_id()].tc_id, smp_processor_id());
637}
638
639void smtc_cpus_done(void)
640{
641}
642
643
644
645
646
647
648
649
650
651
652
653int setup_irq_smtc(unsigned int irq, struct irqaction * new,
654 unsigned long hwmask)
655{
656#ifdef CONFIG_SMTC_IDLE_HOOK_DEBUG
657 unsigned int vpe = current_cpu_data.vpe_id;
658
659 vpemask[vpe][irq - MIPS_CPU_IRQ_BASE] = 1;
660#endif
661 irq_hwmask[irq] = hwmask;
662
663 return setup_irq(irq, new);
664}
665
666#ifdef CONFIG_MIPS_MT_SMTC_IRQAFF
667
668
669
670
671void smtc_set_irq_affinity(unsigned int irq, cpumask_t affinity)
672{
673
674
675
676
677
678}
679
680void smtc_forward_irq(unsigned int irq)
681{
682 int target;
683
684
685
686
687
688
689
690
691
692
693
694
695 target = cpumask_first(irq_desc[irq].affinity);
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710 if (target >= NR_CPUS) {
711 do_IRQ_no_affinity(irq);
712 return;
713 }
714
715 smtc_send_ipi(target, IRQ_AFFINITY_IPI, irq);
716}
717
718#endif
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743static void smtc_ipi_qdump(void)
744{
745 int i;
746 struct smtc_ipi *temp;
747
748 for (i = 0; i < NR_CPUS ;i++) {
749 pr_info("IPIQ[%d]: head = 0x%x, tail = 0x%x, depth = %d\n",
750 i, (unsigned)IPIQ[i].head, (unsigned)IPIQ[i].tail,
751 IPIQ[i].depth);
752 temp = IPIQ[i].head;
753
754 while (temp != IPIQ[i].tail) {
755 pr_debug("%d %d %d: ", temp->type, temp->dest,
756 (int)temp->arg);
757#ifdef SMTC_IPI_DEBUG
758 pr_debug("%u %lu\n", temp->sender, temp->stamp);
759#else
760 pr_debug("\n");
761#endif
762 temp = temp->flink;
763 }
764 }
765}
766
767
768
769
770
771
772
773
774
775static inline int atomic_postincrement(atomic_t *v)
776{
777 unsigned long result;
778
779 unsigned long temp;
780
781 __asm__ __volatile__(
782 "1: ll %0, %2 \n"
783 " addu %1, %0, 1 \n"
784 " sc %1, %2 \n"
785 " beqz %1, 1b \n"
786 __WEAK_LLSC_MB
787 : "=&r" (result), "=&r" (temp), "=m" (v->counter)
788 : "m" (v->counter)
789 : "memory");
790
791 return result;
792}
793
794void smtc_send_ipi(int cpu, int type, unsigned int action)
795{
796 int tcstatus;
797 struct smtc_ipi *pipi;
798 unsigned long flags;
799 int mtflags;
800 unsigned long tcrestart;
801 extern void r4k_wait_irqoff(void), __pastwait(void);
802 int set_resched_flag = (type == LINUX_SMP_IPI &&
803 action == SMP_RESCHEDULE_YOURSELF);
804
805 if (cpu == smp_processor_id()) {
806 printk("Cannot Send IPI to self!\n");
807 return;
808 }
809 if (set_resched_flag && IPIQ[cpu].resched_flag != 0)
810 return;
811
812
813 pipi = smtc_ipi_dq(&freeIPIq);
814 if (pipi == NULL) {
815 bust_spinlocks(1);
816 mips_mt_regdump(dvpe());
817 panic("IPI Msg. Buffers Depleted\n");
818 }
819 pipi->type = type;
820 pipi->arg = (void *)action;
821 pipi->dest = cpu;
822 if (cpu_data[cpu].vpe_id != cpu_data[smp_processor_id()].vpe_id) {
823
824 IPIQ[cpu].resched_flag |= set_resched_flag;
825 smtc_ipi_nq(&IPIQ[cpu], pipi);
826 LOCK_CORE_PRA();
827 settc(cpu_data[cpu].tc_id);
828 write_vpe_c0_cause(read_vpe_c0_cause() | C_SW1);
829 UNLOCK_CORE_PRA();
830 } else {
831
832
833
834
835
836 LOCK_CORE_PRA();
837 settc(cpu_data[cpu].tc_id);
838
839 write_tc_c0_tchalt(TCHALT_H);
840 mips_ihb();
841
842
843
844
845
846
847 tcstatus = read_tc_c0_tcstatus();
848
849 if ((tcstatus & TCSTATUS_IXMT) != 0) {
850
851
852
853
854
855 if (cpu_wait == r4k_wait_irqoff) {
856 tcrestart = read_tc_c0_tcrestart();
857 if (tcrestart >= (unsigned long)r4k_wait_irqoff
858 && tcrestart < (unsigned long)__pastwait) {
859 write_tc_c0_tcrestart(__pastwait);
860 tcstatus &= ~TCSTATUS_IXMT;
861 write_tc_c0_tcstatus(tcstatus);
862 goto postdirect;
863 }
864 }
865
866
867
868
869 write_tc_c0_tchalt(0);
870 UNLOCK_CORE_PRA();
871 IPIQ[cpu].resched_flag |= set_resched_flag;
872 smtc_ipi_nq(&IPIQ[cpu], pipi);
873 } else {
874postdirect:
875 post_direct_ipi(cpu, pipi);
876 write_tc_c0_tchalt(0);
877 UNLOCK_CORE_PRA();
878 }
879 }
880}
881
882
883
884
885static void post_direct_ipi(int cpu, struct smtc_ipi *pipi)
886{
887 struct pt_regs *kstack;
888 unsigned long tcstatus;
889 unsigned long tcrestart;
890 extern u32 kernelsp[NR_CPUS];
891 extern void __smtc_ipi_vector(void);
892
893
894
895 tcstatus = read_tc_c0_tcstatus();
896 tcrestart = read_tc_c0_tcrestart();
897
898 if ((tcrestart & 0x80000000)
899 && ((*(unsigned int *)tcrestart & 0xfe00003f) == 0x42000020)) {
900 tcrestart += 4;
901 }
902
903
904
905
906
907
908 if (tcstatus & ST0_CU0) {
909
910 kstack = ((struct pt_regs *)read_tc_gpr_sp()) - 1;
911 } else {
912 kstack = ((struct pt_regs *)kernelsp[cpu]) - 1;
913 }
914
915 kstack->cp0_epc = (long)tcrestart;
916
917 kstack->cp0_tcstatus = tcstatus;
918
919 kstack->pad0[4] = (unsigned long)pipi;
920
921 kstack->pad0[5] = (unsigned long)&ipi_decode;
922
923 tcstatus |= TCSTATUS_IXMT;
924 tcstatus &= ~TCSTATUS_TKSU;
925 write_tc_c0_tcstatus(tcstatus);
926 ehb();
927
928 write_tc_c0_tcrestart(__smtc_ipi_vector);
929}
930
931static void ipi_resched_interrupt(void)
932{
933
934}
935
936static void ipi_call_interrupt(void)
937{
938
939 smp_call_function_interrupt();
940}
941
942DECLARE_PER_CPU(struct clock_event_device, mips_clockevent_device);
943
944static void __irq_entry smtc_clock_tick_interrupt(void)
945{
946 unsigned int cpu = smp_processor_id();
947 struct clock_event_device *cd;
948 int irq = MIPS_CPU_IRQ_BASE + 1;
949
950 irq_enter();
951 kstat_incr_irqs_this_cpu(irq, irq_to_desc(irq));
952 cd = &per_cpu(mips_clockevent_device, cpu);
953 cd->event_handler(cd);
954 irq_exit();
955}
956
957void ipi_decode(struct smtc_ipi *pipi)
958{
959 void *arg_copy = pipi->arg;
960 int type_copy = pipi->type;
961
962 smtc_ipi_nq(&freeIPIq, pipi);
963
964 switch (type_copy) {
965 case SMTC_CLOCK_TICK:
966 smtc_clock_tick_interrupt();
967 break;
968
969 case LINUX_SMP_IPI:
970 switch ((int)arg_copy) {
971 case SMP_RESCHEDULE_YOURSELF:
972 ipi_resched_interrupt();
973 break;
974 case SMP_CALL_FUNCTION:
975 ipi_call_interrupt();
976 break;
977 default:
978 printk("Impossible SMTC IPI Argument %p\n", arg_copy);
979 break;
980 }
981 break;
982#ifdef CONFIG_MIPS_MT_SMTC_IRQAFF
983 case IRQ_AFFINITY_IPI:
984
985
986
987
988 do_IRQ_no_affinity((int)arg_copy);
989 break;
990#endif
991 default:
992 printk("Impossible SMTC IPI Type 0x%x\n", type_copy);
993 break;
994 }
995}
996
997
998
999
1000
1001
1002
1003void deferred_smtc_ipi(void)
1004{
1005 int cpu = smp_processor_id();
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016 while (IPIQ[cpu].head != NULL) {
1017 struct smtc_ipi_q *q = &IPIQ[cpu];
1018 struct smtc_ipi *pipi;
1019 unsigned long flags;
1020
1021
1022
1023
1024
1025 local_irq_save(flags);
1026 spin_lock(&q->lock);
1027 pipi = __smtc_ipi_dq(q);
1028 spin_unlock(&q->lock);
1029 if (pipi != NULL) {
1030 if (pipi->type == LINUX_SMP_IPI &&
1031 (int)pipi->arg == SMP_RESCHEDULE_YOURSELF)
1032 IPIQ[cpu].resched_flag = 0;
1033 ipi_decode(pipi);
1034 }
1035
1036
1037
1038
1039
1040
1041 __arch_local_irq_restore(flags);
1042 }
1043}
1044
1045
1046
1047
1048
1049
1050
1051
1052static int cpu_ipi_irq = MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_IRQ;
1053
1054static irqreturn_t ipi_interrupt(int irq, void *dev_idm)
1055{
1056 int my_vpe = cpu_data[smp_processor_id()].vpe_id;
1057 int my_tc = cpu_data[smp_processor_id()].tc_id;
1058 int cpu;
1059 struct smtc_ipi *pipi;
1060 unsigned long tcstatus;
1061 int sent;
1062 unsigned long flags;
1063 unsigned int mtflags;
1064 unsigned int vpflags;
1065
1066
1067
1068
1069
1070
1071
1072 local_irq_save(flags);
1073 vpflags = dvpe();
1074 clear_c0_cause(0x100 << MIPS_CPU_IPI_IRQ);
1075 set_c0_status(0x100 << MIPS_CPU_IPI_IRQ);
1076 irq_enable_hazard();
1077 evpe(vpflags);
1078 local_irq_restore(flags);
1079
1080
1081
1082
1083
1084
1085
1086
1087 for_each_online_cpu(cpu) {
1088 if (cpu_data[cpu].vpe_id != my_vpe)
1089 continue;
1090
1091 pipi = smtc_ipi_dq(&IPIQ[cpu]);
1092 if (pipi != NULL) {
1093 if (cpu_data[cpu].tc_id != my_tc) {
1094 sent = 0;
1095 LOCK_MT_PRA();
1096 settc(cpu_data[cpu].tc_id);
1097 write_tc_c0_tchalt(TCHALT_H);
1098 mips_ihb();
1099 tcstatus = read_tc_c0_tcstatus();
1100 if ((tcstatus & TCSTATUS_IXMT) == 0) {
1101 post_direct_ipi(cpu, pipi);
1102 sent = 1;
1103 }
1104 write_tc_c0_tchalt(0);
1105 UNLOCK_MT_PRA();
1106 if (!sent) {
1107 smtc_ipi_req(&IPIQ[cpu], pipi);
1108 }
1109 } else {
1110
1111
1112
1113
1114 local_irq_save(flags);
1115 if (pipi->type == LINUX_SMP_IPI &&
1116 (int)pipi->arg == SMP_RESCHEDULE_YOURSELF)
1117 IPIQ[cpu].resched_flag = 0;
1118 ipi_decode(pipi);
1119 local_irq_restore(flags);
1120 }
1121 }
1122 }
1123
1124 return IRQ_HANDLED;
1125}
1126
1127static void ipi_irq_dispatch(void)
1128{
1129 do_IRQ(cpu_ipi_irq);
1130}
1131
1132static struct irqaction irq_ipi = {
1133 .handler = ipi_interrupt,
1134 .flags = IRQF_DISABLED | IRQF_PERCPU,
1135 .name = "SMTC_IPI"
1136};
1137
1138static void setup_cross_vpe_interrupts(unsigned int nvpe)
1139{
1140 if (nvpe < 1)
1141 return;
1142
1143 if (!cpu_has_vint)
1144 panic("SMTC Kernel requires Vectored Interrupt support");
1145
1146 set_vi_handler(MIPS_CPU_IPI_IRQ, ipi_irq_dispatch);
1147
1148 setup_irq_smtc(cpu_ipi_irq, &irq_ipi, (0x100 << MIPS_CPU_IPI_IRQ));
1149
1150 set_irq_handler(cpu_ipi_irq, handle_percpu_irq);
1151}
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161void smtc_ipi_replay(void)
1162{
1163 unsigned int cpu = smp_processor_id();
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176 while (IPIQ[cpu].head != NULL) {
1177 struct smtc_ipi_q *q = &IPIQ[cpu];
1178 struct smtc_ipi *pipi;
1179 unsigned long flags;
1180
1181
1182
1183
1184
1185 local_irq_save(flags);
1186
1187 spin_lock(&q->lock);
1188 pipi = __smtc_ipi_dq(q);
1189 spin_unlock(&q->lock);
1190
1191
1192
1193 __arch_local_irq_restore(flags);
1194
1195 if (pipi) {
1196 self_ipi(pipi);
1197 smtc_cpu_stats[cpu].selfipis++;
1198 }
1199 }
1200}
1201
1202EXPORT_SYMBOL(smtc_ipi_replay);
1203
1204void smtc_idle_loop_hook(void)
1205{
1206#ifdef CONFIG_SMTC_IDLE_HOOK_DEBUG
1207 int im;
1208 int flags;
1209 int mtflags;
1210 int bit;
1211 int vpe;
1212 int tc;
1213 int hook_ntcs;
1214
1215
1216
1217
1218 char *pdb_msg;
1219 char id_ho_db_msg[768];
1220
1221 if (atomic_read(&idle_hook_initialized) == 0) {
1222 if (atomic_add_return(1, &idle_hook_initialized) == 1) {
1223 int mvpconf0;
1224
1225 mvpconf0 = read_c0_mvpconf0();
1226 hook_ntcs = ((mvpconf0 & MVPCONF0_PTC) >> MVPCONF0_PTC_SHIFT) + 1;
1227 if (hook_ntcs > NR_CPUS)
1228 hook_ntcs = NR_CPUS;
1229 for (tc = 0; tc < hook_ntcs; tc++) {
1230 tcnoprog[tc] = 0;
1231 clock_hang_reported[tc] = 0;
1232 }
1233 for (vpe = 0; vpe < 2; vpe++)
1234 for (im = 0; im < 8; im++)
1235 imstuckcount[vpe][im] = 0;
1236 printk("Idle loop test hook initialized for %d TCs\n", hook_ntcs);
1237 atomic_set(&idle_hook_initialized, 1000);
1238 } else {
1239
1240 while (atomic_read(&idle_hook_initialized) < 1000)
1241 ;
1242 }
1243 }
1244
1245
1246 if (read_c0_tcstatus() & 0x400) {
1247 write_c0_tcstatus(read_c0_tcstatus() & ~0x400);
1248 ehb();
1249 printk("Dangling IXMT in cpu_idle()\n");
1250 }
1251
1252
1253#define IM_LIMIT 2000
1254 local_irq_save(flags);
1255 mtflags = dmt();
1256 pdb_msg = &id_ho_db_msg[0];
1257 im = read_c0_status();
1258 vpe = current_cpu_data.vpe_id;
1259 for (bit = 0; bit < 8; bit++) {
1260
1261
1262
1263
1264 if (vpemask[vpe][bit]) {
1265 if (!(im & (0x100 << bit)))
1266 imstuckcount[vpe][bit]++;
1267 else
1268 imstuckcount[vpe][bit] = 0;
1269 if (imstuckcount[vpe][bit] > IM_LIMIT) {
1270 set_c0_status(0x100 << bit);
1271 ehb();
1272 imstuckcount[vpe][bit] = 0;
1273 pdb_msg += sprintf(pdb_msg,
1274 "Dangling IM %d fixed for VPE %d\n", bit,
1275 vpe);
1276 }
1277 }
1278 }
1279
1280 emt(mtflags);
1281 local_irq_restore(flags);
1282 if (pdb_msg != &id_ho_db_msg[0])
1283 printk("CPU%d: %s", smp_processor_id(), id_ho_db_msg);
1284#endif
1285
1286 smtc_ipi_replay();
1287}
1288
1289void smtc_soft_dump(void)
1290{
1291 int i;
1292
1293 printk("Counter Interrupts taken per CPU (TC)\n");
1294 for (i=0; i < NR_CPUS; i++) {
1295 printk("%d: %ld\n", i, smtc_cpu_stats[i].timerints);
1296 }
1297 printk("Self-IPI invocations:\n");
1298 for (i=0; i < NR_CPUS; i++) {
1299 printk("%d: %ld\n", i, smtc_cpu_stats[i].selfipis);
1300 }
1301 smtc_ipi_qdump();
1302 printk("%d Recoveries of \"stolen\" FPU\n",
1303 atomic_read(&smtc_fpu_recoveries));
1304}
1305
1306
1307
1308
1309
1310
1311void smtc_get_new_mmu_context(struct mm_struct *mm, unsigned long cpu)
1312{
1313 unsigned long flags, mtflags, tcstat, prevhalt, asid;
1314 int tlb, i;
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327 local_irq_save(flags);
1328 if (smtc_status & SMTC_TLB_SHARED) {
1329 mtflags = dvpe();
1330 tlb = 0;
1331 } else {
1332 mtflags = dmt();
1333 tlb = cpu_data[cpu].vpe_id;
1334 }
1335 asid = asid_cache(cpu);
1336
1337 do {
1338 if (!((asid += ASID_INC) & ASID_MASK) ) {
1339 if (cpu_has_vtag_icache)
1340 flush_icache_all();
1341
1342 for_each_online_cpu(i) {
1343
1344
1345
1346
1347 if ((i != smp_processor_id()) &&
1348 ((smtc_status & SMTC_TLB_SHARED) ||
1349 (cpu_data[i].vpe_id == cpu_data[cpu].vpe_id))) {
1350 settc(cpu_data[i].tc_id);
1351 prevhalt = read_tc_c0_tchalt() & TCHALT_H;
1352 if (!prevhalt) {
1353 write_tc_c0_tchalt(TCHALT_H);
1354 mips_ihb();
1355 }
1356 tcstat = read_tc_c0_tcstatus();
1357 smtc_live_asid[tlb][(tcstat & ASID_MASK)] |= (asiduse)(0x1 << i);
1358 if (!prevhalt)
1359 write_tc_c0_tchalt(0);
1360 }
1361 }
1362 if (!asid)
1363 asid = ASID_FIRST_VERSION;
1364 local_flush_tlb_all();
1365 }
1366 } while (smtc_live_asid[tlb][(asid & ASID_MASK)]);
1367
1368
1369
1370
1371 for_each_online_cpu(i) {
1372 if ((smtc_status & SMTC_TLB_SHARED) ||
1373 (cpu_data[i].vpe_id == cpu_data[cpu].vpe_id))
1374 cpu_context(i, mm) = asid_cache(i) = asid;
1375 }
1376
1377 if (smtc_status & SMTC_TLB_SHARED)
1378 evpe(mtflags);
1379 else
1380 emt(mtflags);
1381 local_irq_restore(flags);
1382}
1383
1384
1385
1386
1387
1388
1389
1390void smtc_flush_tlb_asid(unsigned long asid)
1391{
1392 int entry;
1393 unsigned long ehi;
1394
1395 entry = read_c0_wired();
1396
1397
1398 while (entry < current_cpu_data.tlbsize) {
1399 write_c0_index(entry);
1400 ehb();
1401 tlb_read();
1402 ehb();
1403 ehi = read_c0_entryhi();
1404 if ((ehi & ASID_MASK) == asid) {
1405
1406
1407
1408
1409 write_c0_entryhi(CKSEG0 + (entry << (PAGE_SHIFT + 1)));
1410 write_c0_entrylo0(0);
1411 write_c0_entrylo1(0);
1412 mtc0_tlbw_hazard();
1413 tlb_write_indexed();
1414 }
1415 entry++;
1416 }
1417 write_c0_index(PARKED_INDEX);
1418 tlbw_use_hazard();
1419}
1420
1421
1422
1423
1424
1425static int halt_state_save[NR_CPUS];
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436void smtc_cflush_lockdown(void)
1437{
1438 int cpu;
1439
1440 for_each_online_cpu(cpu) {
1441 if (cpu != smp_processor_id()) {
1442 settc(cpu_data[cpu].tc_id);
1443 halt_state_save[cpu] = read_tc_c0_tchalt();
1444 write_tc_c0_tchalt(TCHALT_H);
1445 }
1446 }
1447 mips_ihb();
1448}
1449
1450
1451
1452void smtc_cflush_release(void)
1453{
1454 int cpu;
1455
1456
1457
1458
1459
1460 mips_ihb();
1461
1462 for_each_online_cpu(cpu) {
1463 if (cpu != smp_processor_id()) {
1464 settc(cpu_data[cpu].tc_id);
1465 write_tc_c0_tchalt(halt_state_save[cpu]);
1466 }
1467 }
1468 mips_ihb();
1469}
1470