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