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#undef DEBUG
28
29#include <linux/export.h>
30#include <linux/threads.h>
31#include <linux/kernel_stat.h>
32#include <linux/signal.h>
33#include <linux/sched.h>
34#include <linux/ptrace.h>
35#include <linux/ioport.h>
36#include <linux/interrupt.h>
37#include <linux/timex.h>
38#include <linux/init.h>
39#include <linux/slab.h>
40#include <linux/delay.h>
41#include <linux/irq.h>
42#include <linux/seq_file.h>
43#include <linux/cpumask.h>
44#include <linux/profile.h>
45#include <linux/bitops.h>
46#include <linux/list.h>
47#include <linux/radix-tree.h>
48#include <linux/mutex.h>
49#include <linux/pci.h>
50#include <linux/debugfs.h>
51#include <linux/of.h>
52#include <linux/of_irq.h>
53#include <linux/vmalloc.h>
54#include <linux/pgtable.h>
55
56#include <linux/uaccess.h>
57#include <asm/interrupt.h>
58#include <asm/io.h>
59#include <asm/irq.h>
60#include <asm/cache.h>
61#include <asm/prom.h>
62#include <asm/ptrace.h>
63#include <asm/machdep.h>
64#include <asm/udbg.h>
65#include <asm/smp.h>
66#include <asm/livepatch.h>
67#include <asm/hw_irq.h>
68#include <asm/softirq_stack.h>
69
70#ifdef CONFIG_PPC64
71#include <asm/paca.h>
72#include <asm/firmware.h>
73#include <asm/lv1call.h>
74#include <asm/dbell.h>
75#endif
76#define CREATE_TRACE_POINTS
77#include <asm/trace.h>
78#include <asm/cpu_has_feature.h>
79
80DEFINE_PER_CPU_SHARED_ALIGNED(irq_cpustat_t, irq_stat);
81EXPORT_PER_CPU_SYMBOL(irq_stat);
82
83#ifdef CONFIG_PPC32
84atomic_t ppc_n_lost_interrupts;
85
86#ifdef CONFIG_TAU_INT
87extern int tau_initialized;
88u32 tau_interrupts(unsigned long cpu);
89#endif
90#endif
91
92#ifdef CONFIG_PPC64
93
94int distribute_irqs = 1;
95
96static inline notrace unsigned long get_irq_happened(void)
97{
98 unsigned long happened;
99
100 __asm__ __volatile__("lbz %0,%1(13)"
101 : "=r" (happened) : "i" (offsetof(struct paca_struct, irq_happened)));
102
103 return happened;
104}
105
106void replay_soft_interrupts(void)
107{
108 struct pt_regs regs;
109
110
111
112
113
114
115
116
117
118
119
120
121 ppc_save_regs(®s);
122 regs.softe = IRQS_ENABLED;
123 regs.msr |= MSR_EE;
124
125again:
126 if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG))
127 WARN_ON_ONCE(mfmsr() & MSR_EE);
128
129
130
131
132
133 if (firmware_has_feature(FW_FEATURE_PS3_LV1)) {
134 u64 tmp, tmp2;
135 lv1_get_version_info(&tmp, &tmp2);
136 }
137
138
139
140
141
142
143 if (IS_ENABLED(CONFIG_PPC_BOOK3S) && (local_paca->irq_happened & PACA_IRQ_HMI)) {
144 local_paca->irq_happened &= ~PACA_IRQ_HMI;
145 regs.trap = INTERRUPT_HMI;
146 handle_hmi_exception(®s);
147 if (!(local_paca->irq_happened & PACA_IRQ_HARD_DIS))
148 hard_irq_disable();
149 }
150
151 if (local_paca->irq_happened & PACA_IRQ_DEC) {
152 local_paca->irq_happened &= ~PACA_IRQ_DEC;
153 regs.trap = INTERRUPT_DECREMENTER;
154 timer_interrupt(®s);
155 if (!(local_paca->irq_happened & PACA_IRQ_HARD_DIS))
156 hard_irq_disable();
157 }
158
159 if (local_paca->irq_happened & PACA_IRQ_EE) {
160 local_paca->irq_happened &= ~PACA_IRQ_EE;
161 regs.trap = INTERRUPT_EXTERNAL;
162 do_IRQ(®s);
163 if (!(local_paca->irq_happened & PACA_IRQ_HARD_DIS))
164 hard_irq_disable();
165 }
166
167 if (IS_ENABLED(CONFIG_PPC_DOORBELL) && (local_paca->irq_happened & PACA_IRQ_DBELL)) {
168 local_paca->irq_happened &= ~PACA_IRQ_DBELL;
169 regs.trap = INTERRUPT_DOORBELL;
170 doorbell_exception(®s);
171 if (!(local_paca->irq_happened & PACA_IRQ_HARD_DIS))
172 hard_irq_disable();
173 }
174
175
176 if (IS_ENABLED(CONFIG_PPC_BOOK3S) && (local_paca->irq_happened & PACA_IRQ_PMI)) {
177 local_paca->irq_happened &= ~PACA_IRQ_PMI;
178 regs.trap = INTERRUPT_PERFMON;
179 performance_monitor_exception(®s);
180 if (!(local_paca->irq_happened & PACA_IRQ_HARD_DIS))
181 hard_irq_disable();
182 }
183
184 if (local_paca->irq_happened & ~PACA_IRQ_HARD_DIS) {
185
186
187
188
189 trace_hardirqs_on();
190 trace_hardirqs_off();
191 goto again;
192 }
193}
194
195#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_PPC_KUAP)
196static inline void replay_soft_interrupts_irqrestore(void)
197{
198 unsigned long kuap_state = get_kuap();
199
200
201
202
203
204
205
206 kuap_assert_locked();
207
208 if (kuap_state != AMR_KUAP_BLOCKED)
209 set_kuap(AMR_KUAP_BLOCKED);
210
211 replay_soft_interrupts();
212
213 if (kuap_state != AMR_KUAP_BLOCKED)
214 set_kuap(kuap_state);
215}
216#else
217#define replay_soft_interrupts_irqrestore() replay_soft_interrupts()
218#endif
219
220#ifdef CONFIG_CC_HAS_ASM_GOTO
221notrace void arch_local_irq_restore(unsigned long mask)
222{
223 unsigned char irq_happened;
224
225
226 if (mask) {
227 irq_soft_mask_set(mask);
228 return;
229 }
230
231 if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG))
232 WARN_ON_ONCE(in_nmi() || in_hardirq());
233
234
235
236
237
238
239
240
241
242
243
244 asm_volatile_goto(
245"1: \n"
246" lbz 9,%0(13) \n"
247" cmpwi 9,0 \n"
248" bne %l[happened] \n"
249" stb 9,%1(13) \n"
250"2: \n"
251 RESTART_TABLE(1b, 2b, 1b)
252 : : "i" (offsetof(struct paca_struct, irq_happened)),
253 "i" (offsetof(struct paca_struct, irq_soft_mask))
254 : "cr0", "r9"
255 : happened);
256
257 if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG))
258 WARN_ON_ONCE(!(mfmsr() & MSR_EE));
259
260 return;
261
262happened:
263 irq_happened = get_irq_happened();
264 if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG))
265 WARN_ON_ONCE(!irq_happened);
266
267 if (irq_happened == PACA_IRQ_HARD_DIS) {
268 if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG))
269 WARN_ON_ONCE(mfmsr() & MSR_EE);
270 irq_soft_mask_set(IRQS_ENABLED);
271 local_paca->irq_happened = 0;
272 __hard_irq_enable();
273 return;
274 }
275
276
277 if (!(irq_happened & PACA_IRQ_HARD_DIS)) {
278 if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG)) {
279 if (!(mfmsr() & MSR_EE)) {
280
281
282
283
284
285
286 irq_happened = get_irq_happened();
287 WARN_ON_ONCE(!(irq_happened & PACA_IRQ_HARD_DIS));
288 }
289 }
290 __hard_irq_disable();
291 local_paca->irq_happened |= PACA_IRQ_HARD_DIS;
292 } else {
293 if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG)) {
294 if (WARN_ON_ONCE(mfmsr() & MSR_EE))
295 __hard_irq_disable();
296 }
297 }
298
299
300
301
302
303
304 preempt_disable();
305 irq_soft_mask_set(IRQS_ALL_DISABLED);
306 trace_hardirqs_off();
307
308 replay_soft_interrupts_irqrestore();
309 local_paca->irq_happened = 0;
310
311 trace_hardirqs_on();
312 irq_soft_mask_set(IRQS_ENABLED);
313 __hard_irq_enable();
314 preempt_enable();
315}
316#else
317notrace void arch_local_irq_restore(unsigned long mask)
318{
319 unsigned char irq_happened;
320
321
322 irq_soft_mask_set(mask);
323 if (mask)
324 return;
325
326 if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG))
327 WARN_ON_ONCE(in_nmi() || in_hardirq());
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342 irq_happened = get_irq_happened();
343 if (!irq_happened) {
344 if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG))
345 WARN_ON_ONCE(!(mfmsr() & MSR_EE));
346 return;
347 }
348
349
350 if (!(irq_happened & PACA_IRQ_HARD_DIS)) {
351 if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG))
352 WARN_ON_ONCE(!(mfmsr() & MSR_EE));
353 __hard_irq_disable();
354 local_paca->irq_happened |= PACA_IRQ_HARD_DIS;
355 } else {
356
357
358
359
360
361
362 if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG)) {
363 if (WARN_ON_ONCE(mfmsr() & MSR_EE))
364 __hard_irq_disable();
365 }
366
367 if (irq_happened == PACA_IRQ_HARD_DIS) {
368 local_paca->irq_happened = 0;
369 __hard_irq_enable();
370 return;
371 }
372 }
373
374
375
376
377
378
379 preempt_disable();
380 irq_soft_mask_set(IRQS_ALL_DISABLED);
381 trace_hardirqs_off();
382
383 replay_soft_interrupts_irqrestore();
384 local_paca->irq_happened = 0;
385
386 trace_hardirqs_on();
387 irq_soft_mask_set(IRQS_ENABLED);
388 __hard_irq_enable();
389 preempt_enable();
390}
391#endif
392EXPORT_SYMBOL(arch_local_irq_restore);
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409bool prep_irq_for_idle(void)
410{
411
412
413
414
415 __hard_irq_disable();
416 local_paca->irq_happened |= PACA_IRQ_HARD_DIS;
417
418
419
420
421
422 if (lazy_irq_pending())
423 return false;
424
425
426 trace_hardirqs_on();
427
428
429
430
431
432
433
434 local_paca->irq_happened &= ~PACA_IRQ_HARD_DIS;
435 irq_soft_mask_set(IRQS_ENABLED);
436
437
438 return true;
439}
440
441#ifdef CONFIG_PPC_BOOK3S
442
443
444
445
446
447
448bool prep_irq_for_idle_irqsoff(void)
449{
450 WARN_ON(!irqs_disabled());
451
452
453
454
455
456 __hard_irq_disable();
457 local_paca->irq_happened |= PACA_IRQ_HARD_DIS;
458
459
460
461
462
463 if (lazy_irq_pending())
464 return false;
465
466
467 trace_hardirqs_on();
468
469 return true;
470}
471
472
473
474
475
476
477
478
479
480
481
482#define IRQ_SYSTEM_RESET 0xff
483
484static const u8 srr1_to_lazyirq[0x10] = {
485 0, 0, 0,
486 PACA_IRQ_DBELL,
487 IRQ_SYSTEM_RESET,
488 PACA_IRQ_DBELL,
489 PACA_IRQ_DEC,
490 0,
491 PACA_IRQ_EE,
492 PACA_IRQ_EE,
493 PACA_IRQ_HMI,
494 0, 0, 0, 0, 0 };
495
496void replay_system_reset(void)
497{
498 struct pt_regs regs;
499
500 ppc_save_regs(®s);
501 regs.trap = 0x100;
502 get_paca()->in_nmi = 1;
503 system_reset_exception(®s);
504 get_paca()->in_nmi = 0;
505}
506EXPORT_SYMBOL_GPL(replay_system_reset);
507
508void irq_set_pending_from_srr1(unsigned long srr1)
509{
510 unsigned int idx = (srr1 & SRR1_WAKEMASK_P8) >> 18;
511 u8 reason = srr1_to_lazyirq[idx];
512
513
514
515
516
517
518 if (unlikely(reason == IRQ_SYSTEM_RESET)) {
519 replay_system_reset();
520 return;
521 }
522
523 if (reason == PACA_IRQ_DBELL) {
524
525
526
527
528
529
530
531
532
533 ppc_msgclr(PPC_DBELL_MSGTYPE);
534 }
535
536
537
538
539
540
541
542
543
544
545 local_paca->irq_happened |= reason;
546}
547#endif
548
549
550
551
552void force_external_irq_replay(void)
553{
554
555
556
557
558 WARN_ON(!arch_irqs_disabled());
559
560
561
562
563
564
565 __hard_irq_disable();
566 local_paca->irq_happened |= PACA_IRQ_HARD_DIS;
567
568
569 local_paca->irq_happened |= PACA_IRQ_EE;
570}
571
572#endif
573
574int arch_show_interrupts(struct seq_file *p, int prec)
575{
576 int j;
577
578#if defined(CONFIG_PPC32) && defined(CONFIG_TAU_INT)
579 if (tau_initialized) {
580 seq_printf(p, "%*s: ", prec, "TAU");
581 for_each_online_cpu(j)
582 seq_printf(p, "%10u ", tau_interrupts(j));
583 seq_puts(p, " PowerPC Thermal Assist (cpu temp)\n");
584 }
585#endif
586
587 seq_printf(p, "%*s: ", prec, "LOC");
588 for_each_online_cpu(j)
589 seq_printf(p, "%10u ", per_cpu(irq_stat, j).timer_irqs_event);
590 seq_printf(p, " Local timer interrupts for timer event device\n");
591
592 seq_printf(p, "%*s: ", prec, "BCT");
593 for_each_online_cpu(j)
594 seq_printf(p, "%10u ", per_cpu(irq_stat, j).broadcast_irqs_event);
595 seq_printf(p, " Broadcast timer interrupts for timer event device\n");
596
597 seq_printf(p, "%*s: ", prec, "LOC");
598 for_each_online_cpu(j)
599 seq_printf(p, "%10u ", per_cpu(irq_stat, j).timer_irqs_others);
600 seq_printf(p, " Local timer interrupts for others\n");
601
602 seq_printf(p, "%*s: ", prec, "SPU");
603 for_each_online_cpu(j)
604 seq_printf(p, "%10u ", per_cpu(irq_stat, j).spurious_irqs);
605 seq_printf(p, " Spurious interrupts\n");
606
607 seq_printf(p, "%*s: ", prec, "PMI");
608 for_each_online_cpu(j)
609 seq_printf(p, "%10u ", per_cpu(irq_stat, j).pmu_irqs);
610 seq_printf(p, " Performance monitoring interrupts\n");
611
612 seq_printf(p, "%*s: ", prec, "MCE");
613 for_each_online_cpu(j)
614 seq_printf(p, "%10u ", per_cpu(irq_stat, j).mce_exceptions);
615 seq_printf(p, " Machine check exceptions\n");
616
617#ifdef CONFIG_PPC_BOOK3S_64
618 if (cpu_has_feature(CPU_FTR_HVMODE)) {
619 seq_printf(p, "%*s: ", prec, "HMI");
620 for_each_online_cpu(j)
621 seq_printf(p, "%10u ", paca_ptrs[j]->hmi_irqs);
622 seq_printf(p, " Hypervisor Maintenance Interrupts\n");
623 }
624#endif
625
626 seq_printf(p, "%*s: ", prec, "NMI");
627 for_each_online_cpu(j)
628 seq_printf(p, "%10u ", per_cpu(irq_stat, j).sreset_irqs);
629 seq_printf(p, " System Reset interrupts\n");
630
631#ifdef CONFIG_PPC_WATCHDOG
632 seq_printf(p, "%*s: ", prec, "WDG");
633 for_each_online_cpu(j)
634 seq_printf(p, "%10u ", per_cpu(irq_stat, j).soft_nmi_irqs);
635 seq_printf(p, " Watchdog soft-NMI interrupts\n");
636#endif
637
638#ifdef CONFIG_PPC_DOORBELL
639 if (cpu_has_feature(CPU_FTR_DBELL)) {
640 seq_printf(p, "%*s: ", prec, "DBL");
641 for_each_online_cpu(j)
642 seq_printf(p, "%10u ", per_cpu(irq_stat, j).doorbell_irqs);
643 seq_printf(p, " Doorbell interrupts\n");
644 }
645#endif
646
647 return 0;
648}
649
650
651
652
653u64 arch_irq_stat_cpu(unsigned int cpu)
654{
655 u64 sum = per_cpu(irq_stat, cpu).timer_irqs_event;
656
657 sum += per_cpu(irq_stat, cpu).broadcast_irqs_event;
658 sum += per_cpu(irq_stat, cpu).pmu_irqs;
659 sum += per_cpu(irq_stat, cpu).mce_exceptions;
660 sum += per_cpu(irq_stat, cpu).spurious_irqs;
661 sum += per_cpu(irq_stat, cpu).timer_irqs_others;
662#ifdef CONFIG_PPC_BOOK3S_64
663 sum += paca_ptrs[cpu]->hmi_irqs;
664#endif
665 sum += per_cpu(irq_stat, cpu).sreset_irqs;
666#ifdef CONFIG_PPC_WATCHDOG
667 sum += per_cpu(irq_stat, cpu).soft_nmi_irqs;
668#endif
669#ifdef CONFIG_PPC_DOORBELL
670 sum += per_cpu(irq_stat, cpu).doorbell_irqs;
671#endif
672
673 return sum;
674}
675
676static inline void check_stack_overflow(void)
677{
678 long sp;
679
680 if (!IS_ENABLED(CONFIG_DEBUG_STACKOVERFLOW))
681 return;
682
683 sp = current_stack_pointer & (THREAD_SIZE - 1);
684
685
686 if (unlikely(sp < 2048)) {
687 pr_err("do_IRQ: stack overflow: %ld\n", sp);
688 dump_stack();
689 }
690}
691
692static __always_inline void call_do_softirq(const void *sp)
693{
694
695 asm volatile (
696 PPC_STLU " %%r1, %[offset](%[sp]) ;"
697 "mr %%r1, %[sp] ;"
698 "bl %[callee] ;"
699 PPC_LL " %%r1, 0(%%r1) ;"
700 :
701 :
702 [sp] "b" (sp), [offset] "i" (THREAD_SIZE - STACK_FRAME_OVERHEAD),
703 [callee] "i" (__do_softirq)
704 :
705 "lr", "xer", "ctr", "memory", "cr0", "cr1", "cr5", "cr6",
706 "cr7", "r0", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10",
707 "r11", "r12"
708 );
709}
710
711static __always_inline void call_do_irq(struct pt_regs *regs, void *sp)
712{
713 register unsigned long r3 asm("r3") = (unsigned long)regs;
714
715
716 asm volatile (
717 PPC_STLU " %%r1, %[offset](%[sp]) ;"
718 "mr %%r1, %[sp] ;"
719 "bl %[callee] ;"
720 PPC_LL " %%r1, 0(%%r1) ;"
721 :
722 "+r" (r3)
723 :
724 [sp] "b" (sp), [offset] "i" (THREAD_SIZE - STACK_FRAME_OVERHEAD),
725 [callee] "i" (__do_irq)
726 :
727 "lr", "xer", "ctr", "memory", "cr0", "cr1", "cr5", "cr6",
728 "cr7", "r0", "r4", "r5", "r6", "r7", "r8", "r9", "r10",
729 "r11", "r12"
730 );
731}
732
733void __do_irq(struct pt_regs *regs)
734{
735 unsigned int irq;
736
737 trace_irq_entry(regs);
738
739
740
741
742
743
744 irq = ppc_md.get_irq();
745
746
747 if (should_hard_irq_enable())
748 do_hard_irq_enable();
749
750
751 if (unlikely(!irq))
752 __this_cpu_inc(irq_stat.spurious_irqs);
753 else
754 generic_handle_irq(irq);
755
756 trace_irq_exit(regs);
757}
758
759void __do_IRQ(struct pt_regs *regs)
760{
761 struct pt_regs *old_regs = set_irq_regs(regs);
762 void *cursp, *irqsp, *sirqsp;
763
764
765 cursp = (void *)(current_stack_pointer & ~(THREAD_SIZE - 1));
766 irqsp = hardirq_ctx[raw_smp_processor_id()];
767 sirqsp = softirq_ctx[raw_smp_processor_id()];
768
769 check_stack_overflow();
770
771
772 if (unlikely(cursp == irqsp || cursp == sirqsp)) {
773 __do_irq(regs);
774 set_irq_regs(old_regs);
775 return;
776 }
777
778 call_do_irq(regs, irqsp);
779
780 set_irq_regs(old_regs);
781}
782
783DEFINE_INTERRUPT_HANDLER_ASYNC(do_IRQ)
784{
785 __do_IRQ(regs);
786}
787
788static void *__init alloc_vm_stack(void)
789{
790 return __vmalloc_node(THREAD_SIZE, THREAD_ALIGN, THREADINFO_GFP,
791 NUMA_NO_NODE, (void *)_RET_IP_);
792}
793
794static void __init vmap_irqstack_init(void)
795{
796 int i;
797
798 for_each_possible_cpu(i) {
799 softirq_ctx[i] = alloc_vm_stack();
800 hardirq_ctx[i] = alloc_vm_stack();
801 }
802}
803
804
805void __init init_IRQ(void)
806{
807 if (IS_ENABLED(CONFIG_VMAP_STACK))
808 vmap_irqstack_init();
809
810 if (ppc_md.init_IRQ)
811 ppc_md.init_IRQ();
812}
813
814#ifdef CONFIG_BOOKE_OR_40x
815void *critirq_ctx[NR_CPUS] __read_mostly;
816void *dbgirq_ctx[NR_CPUS] __read_mostly;
817void *mcheckirq_ctx[NR_CPUS] __read_mostly;
818#endif
819
820void *softirq_ctx[NR_CPUS] __read_mostly;
821void *hardirq_ctx[NR_CPUS] __read_mostly;
822
823void do_softirq_own_stack(void)
824{
825 call_do_softirq(softirq_ctx[smp_processor_id()]);
826}
827
828irq_hw_number_t virq_to_hw(unsigned int virq)
829{
830 struct irq_data *irq_data = irq_get_irq_data(virq);
831 return WARN_ON(!irq_data) ? 0 : irq_data->hwirq;
832}
833EXPORT_SYMBOL_GPL(virq_to_hw);
834
835#ifdef CONFIG_SMP
836int irq_choose_cpu(const struct cpumask *mask)
837{
838 int cpuid;
839
840 if (cpumask_equal(mask, cpu_online_mask)) {
841 static int irq_rover;
842 static DEFINE_RAW_SPINLOCK(irq_rover_lock);
843 unsigned long flags;
844
845
846do_round_robin:
847 raw_spin_lock_irqsave(&irq_rover_lock, flags);
848
849 irq_rover = cpumask_next(irq_rover, cpu_online_mask);
850 if (irq_rover >= nr_cpu_ids)
851 irq_rover = cpumask_first(cpu_online_mask);
852
853 cpuid = irq_rover;
854
855 raw_spin_unlock_irqrestore(&irq_rover_lock, flags);
856 } else {
857 cpuid = cpumask_first_and(mask, cpu_online_mask);
858 if (cpuid >= nr_cpu_ids)
859 goto do_round_robin;
860 }
861
862 return get_hard_smp_processor_id(cpuid);
863}
864#else
865int irq_choose_cpu(const struct cpumask *mask)
866{
867 return hard_smp_processor_id();
868}
869#endif
870
871#ifdef CONFIG_PPC64
872static int __init setup_noirqdistrib(char *str)
873{
874 distribute_irqs = 0;
875 return 1;
876}
877
878__setup("noirqdistrib", setup_noirqdistrib);
879#endif
880