This source file includes following definitions.
- setup_tlb_core_data
- check_smt_enabled
- early_smt_enabled
- fixup_boot_paca
- configure_exceptions
- cpu_ready_for_interrupts
- record_spr_defaults
- early_setup
- early_setup_secondary
- panic_smp_self_stop
- use_spinloop
- smp_release_cpus
- init_cache_info
- parse_cache_info
- initialize_cache_info
- ppc64_bolted_size
- alloc_stack
- irqstack_early_init
- exc_lvl_early_init
- emergency_stack_init
- pcpu_fc_alloc
- pcpu_fc_free
- pcpu_cpu_distance
- setup_per_cpu_areas
- memory_block_size_bytes
- hw_nmi_get_sample_period
- disable_hardlockup_detector
- handle_no_rfi_flush
- handle_no_pti
- do_nothing
- rfi_flush_enable
- init_fallback_flush
- setup_rfi_flush
- rfi_flush_set
- rfi_flush_get
- rfi_flush_debugfs_init
1
2
3
4
5
6
7
8
9 #include <linux/export.h>
10 #include <linux/string.h>
11 #include <linux/sched.h>
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <linux/reboot.h>
15 #include <linux/delay.h>
16 #include <linux/initrd.h>
17 #include <linux/seq_file.h>
18 #include <linux/ioport.h>
19 #include <linux/console.h>
20 #include <linux/utsname.h>
21 #include <linux/tty.h>
22 #include <linux/root_dev.h>
23 #include <linux/notifier.h>
24 #include <linux/cpu.h>
25 #include <linux/unistd.h>
26 #include <linux/serial.h>
27 #include <linux/serial_8250.h>
28 #include <linux/memblock.h>
29 #include <linux/pci.h>
30 #include <linux/lockdep.h>
31 #include <linux/memory.h>
32 #include <linux/nmi.h>
33
34 #include <asm/debugfs.h>
35 #include <asm/io.h>
36 #include <asm/kdump.h>
37 #include <asm/prom.h>
38 #include <asm/processor.h>
39 #include <asm/pgtable.h>
40 #include <asm/smp.h>
41 #include <asm/elf.h>
42 #include <asm/machdep.h>
43 #include <asm/paca.h>
44 #include <asm/time.h>
45 #include <asm/cputable.h>
46 #include <asm/dt_cpu_ftrs.h>
47 #include <asm/sections.h>
48 #include <asm/btext.h>
49 #include <asm/nvram.h>
50 #include <asm/setup.h>
51 #include <asm/rtas.h>
52 #include <asm/iommu.h>
53 #include <asm/serial.h>
54 #include <asm/cache.h>
55 #include <asm/page.h>
56 #include <asm/mmu.h>
57 #include <asm/firmware.h>
58 #include <asm/xmon.h>
59 #include <asm/udbg.h>
60 #include <asm/kexec.h>
61 #include <asm/code-patching.h>
62 #include <asm/livepatch.h>
63 #include <asm/opal.h>
64 #include <asm/cputhreads.h>
65 #include <asm/hw_irq.h>
66 #include <asm/feature-fixups.h>
67 #include <asm/kup.h>
68
69 #include "setup.h"
70
71 #ifdef DEBUG
72 #define DBG(fmt...) udbg_printf(fmt)
73 #else
74 #define DBG(fmt...)
75 #endif
76
77 int spinning_secondaries;
78 u64 ppc64_pft_size;
79
80 struct ppc64_caches ppc64_caches = {
81 .l1d = {
82 .block_size = 0x40,
83 .log_block_size = 6,
84 },
85 .l1i = {
86 .block_size = 0x40,
87 .log_block_size = 6
88 },
89 };
90 EXPORT_SYMBOL_GPL(ppc64_caches);
91
92 #if defined(CONFIG_PPC_BOOK3E) && defined(CONFIG_SMP)
93 void __init setup_tlb_core_data(void)
94 {
95 int cpu;
96
97 BUILD_BUG_ON(offsetof(struct tlb_core_data, lock) != 0);
98
99 for_each_possible_cpu(cpu) {
100 int first = cpu_first_thread_sibling(cpu);
101
102
103
104
105
106
107 if (cpu_first_thread_sibling(boot_cpuid) == first)
108 first = boot_cpuid;
109
110 paca_ptrs[cpu]->tcd_ptr = &paca_ptrs[first]->tcd;
111
112
113
114
115
116
117
118 WARN_ONCE(smt_enabled_at_boot >= 2 &&
119 !mmu_has_feature(MMU_FTR_USE_TLBRSRV) &&
120 book3e_htw_mode != PPC_HTW_E6500,
121 "%s: unsupported MMU configuration\n", __func__);
122 }
123 }
124 #endif
125
126 #ifdef CONFIG_SMP
127
128 static char *smt_enabled_cmdline;
129
130
131 void __init check_smt_enabled(void)
132 {
133 struct device_node *dn;
134 const char *smt_option;
135
136
137 smt_enabled_at_boot = threads_per_core;
138
139
140 if (smt_enabled_cmdline) {
141 if (!strcmp(smt_enabled_cmdline, "on"))
142 smt_enabled_at_boot = threads_per_core;
143 else if (!strcmp(smt_enabled_cmdline, "off"))
144 smt_enabled_at_boot = 0;
145 else {
146 int smt;
147 int rc;
148
149 rc = kstrtoint(smt_enabled_cmdline, 10, &smt);
150 if (!rc)
151 smt_enabled_at_boot =
152 min(threads_per_core, smt);
153 }
154 } else {
155 dn = of_find_node_by_path("/options");
156 if (dn) {
157 smt_option = of_get_property(dn, "ibm,smt-enabled",
158 NULL);
159
160 if (smt_option) {
161 if (!strcmp(smt_option, "on"))
162 smt_enabled_at_boot = threads_per_core;
163 else if (!strcmp(smt_option, "off"))
164 smt_enabled_at_boot = 0;
165 }
166
167 of_node_put(dn);
168 }
169 }
170 }
171
172
173 static int __init early_smt_enabled(char *p)
174 {
175 smt_enabled_cmdline = p;
176 return 0;
177 }
178 early_param("smt-enabled", early_smt_enabled);
179
180 #endif
181
182
183 static void __init fixup_boot_paca(void)
184 {
185
186 get_paca()->cpu_start = 1;
187
188 get_paca()->data_offset = 0;
189
190 irq_soft_mask_set(IRQS_DISABLED);
191 }
192
193 static void __init configure_exceptions(void)
194 {
195
196
197
198
199 setup_kdump_trampoline();
200
201
202 if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
203
204 pseries_enable_reloc_on_exc();
205
206
207
208
209
210
211
212
213
214 #ifdef __LITTLE_ENDIAN__
215 pseries_little_endian_exceptions();
216 #endif
217 } else {
218
219 if (firmware_has_feature(FW_FEATURE_OPAL))
220 opal_configure_cores();
221
222
223 }
224 }
225
226 static void cpu_ready_for_interrupts(void)
227 {
228
229
230
231
232
233
234
235 if (cpu_has_feature(CPU_FTR_HVMODE) &&
236 cpu_has_feature(CPU_FTR_ARCH_207S)) {
237 unsigned long lpcr = mfspr(SPRN_LPCR);
238 mtspr(SPRN_LPCR, lpcr | LPCR_AIL_3);
239 }
240
241
242
243
244
245
246
247
248
249 if (cpu_has_feature(CPU_FTR_HVMODE)) {
250 if (cpu_has_feature(CPU_FTR_TM_COMP))
251 mtspr(SPRN_HFSCR, mfspr(SPRN_HFSCR) | HFSCR_TM);
252 else
253 mtspr(SPRN_HFSCR, mfspr(SPRN_HFSCR) & ~HFSCR_TM);
254 }
255
256
257 get_paca()->kernel_msr = MSR_KERNEL;
258 }
259
260 unsigned long spr_default_dscr = 0;
261
262 void __init record_spr_defaults(void)
263 {
264 if (early_cpu_has_feature(CPU_FTR_DSCR))
265 spr_default_dscr = mfspr(SPRN_DSCR);
266 }
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287 void __init __nostackprotector early_setup(unsigned long dt_ptr)
288 {
289 static __initdata struct paca_struct boot_paca;
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312 initialise_paca(&boot_paca, 0);
313 setup_paca(&boot_paca);
314 fixup_boot_paca();
315
316
317
318
319 if (!dt_cpu_ftrs_init(__va(dt_ptr)))
320
321 identify_cpu(0, mfspr(SPRN_PVR));
322
323
324 udbg_early_init();
325
326 DBG(" -> early_setup(), dt_ptr: 0x%lx\n", dt_ptr);
327
328
329
330
331
332
333 early_init_devtree(__va(dt_ptr));
334
335
336 if (boot_cpuid != 0) {
337
338 memset(&paca_ptrs[0], 0x88, sizeof(paca_ptrs[0]));
339 }
340 setup_paca(paca_ptrs[boot_cpuid]);
341 fixup_boot_paca();
342
343
344
345
346
347 configure_exceptions();
348
349
350
351
352
353 setup_kup();
354
355
356 apply_feature_fixups();
357 setup_feature_keys();
358
359
360 early_init_mmu();
361
362
363
364
365
366
367 record_spr_defaults();
368
369
370
371
372
373
374 cpu_ready_for_interrupts();
375
376
377
378
379
380
381 this_cpu_enable_ftrace();
382
383 DBG(" <- early_setup()\n");
384
385 #ifdef CONFIG_PPC_EARLY_DEBUG_BOOTX
386
387
388
389
390
391
392
393
394 btext_map();
395 #endif
396 }
397
398 #ifdef CONFIG_SMP
399 void early_setup_secondary(void)
400 {
401
402 irq_soft_mask_set(IRQS_DISABLED);
403
404
405 early_init_mmu_secondary();
406
407
408 setup_kup();
409
410
411
412
413
414
415 cpu_ready_for_interrupts();
416 }
417
418 #endif
419
420 void panic_smp_self_stop(void)
421 {
422 hard_irq_disable();
423 spin_begin();
424 while (1)
425 spin_cpu_relax();
426 }
427
428 #if defined(CONFIG_SMP) || defined(CONFIG_KEXEC_CORE)
429 static bool use_spinloop(void)
430 {
431 if (IS_ENABLED(CONFIG_PPC_BOOK3S)) {
432
433
434
435
436
437 if (firmware_has_feature(FW_FEATURE_OPAL))
438 return false;
439 return true;
440 }
441
442
443
444
445
446 return of_property_read_bool(of_chosen, "linux,booted-from-kexec");
447 }
448
449 void smp_release_cpus(void)
450 {
451 unsigned long *ptr;
452 int i;
453
454 if (!use_spinloop())
455 return;
456
457 DBG(" -> smp_release_cpus()\n");
458
459
460
461
462
463
464
465 ptr = (unsigned long *)((unsigned long)&__secondary_hold_spinloop
466 - PHYSICAL_START);
467 *ptr = ppc_function_entry(generic_secondary_smp_init);
468
469
470 for (i = 0; i < 100000; i++) {
471 mb();
472 HMT_low();
473 if (spinning_secondaries == 0)
474 break;
475 udelay(1);
476 }
477 DBG("spinning_secondaries = %d\n", spinning_secondaries);
478
479 DBG(" <- smp_release_cpus()\n");
480 }
481 #endif
482
483
484
485
486
487
488
489
490
491 static void init_cache_info(struct ppc_cache_info *info, u32 size, u32 lsize,
492 u32 bsize, u32 sets)
493 {
494 info->size = size;
495 info->sets = sets;
496 info->line_size = lsize;
497 info->block_size = bsize;
498 info->log_block_size = __ilog2(bsize);
499 if (bsize)
500 info->blocks_per_page = PAGE_SIZE / bsize;
501 else
502 info->blocks_per_page = 0;
503
504 if (sets == 0)
505 info->assoc = 0xffff;
506 else
507 info->assoc = size / (sets * lsize);
508 }
509
510 static bool __init parse_cache_info(struct device_node *np,
511 bool icache,
512 struct ppc_cache_info *info)
513 {
514 static const char *ipropnames[] __initdata = {
515 "i-cache-size",
516 "i-cache-sets",
517 "i-cache-block-size",
518 "i-cache-line-size",
519 };
520 static const char *dpropnames[] __initdata = {
521 "d-cache-size",
522 "d-cache-sets",
523 "d-cache-block-size",
524 "d-cache-line-size",
525 };
526 const char **propnames = icache ? ipropnames : dpropnames;
527 const __be32 *sizep, *lsizep, *bsizep, *setsp;
528 u32 size, lsize, bsize, sets;
529 bool success = true;
530
531 size = 0;
532 sets = -1u;
533 lsize = bsize = cur_cpu_spec->dcache_bsize;
534 sizep = of_get_property(np, propnames[0], NULL);
535 if (sizep != NULL)
536 size = be32_to_cpu(*sizep);
537 setsp = of_get_property(np, propnames[1], NULL);
538 if (setsp != NULL)
539 sets = be32_to_cpu(*setsp);
540 bsizep = of_get_property(np, propnames[2], NULL);
541 lsizep = of_get_property(np, propnames[3], NULL);
542 if (bsizep == NULL)
543 bsizep = lsizep;
544 if (lsizep == NULL)
545 lsizep = bsizep;
546 if (lsizep != NULL)
547 lsize = be32_to_cpu(*lsizep);
548 if (bsizep != NULL)
549 bsize = be32_to_cpu(*bsizep);
550 if (sizep == NULL || bsizep == NULL || lsizep == NULL)
551 success = false;
552
553
554
555
556
557
558
559 if (sets == 1)
560 sets = 0;
561 else if (sets == 0)
562 sets = 1;
563
564 init_cache_info(info, size, lsize, bsize, sets);
565
566 return success;
567 }
568
569 void __init initialize_cache_info(void)
570 {
571 struct device_node *cpu = NULL, *l2, *l3 = NULL;
572 u32 pvr;
573
574 DBG(" -> initialize_cache_info()\n");
575
576
577
578
579
580
581
582 pvr = PVR_VER(mfspr(SPRN_PVR));
583 if (pvr == PVR_POWER8 || pvr == PVR_POWER8E ||
584 pvr == PVR_POWER8NVL) {
585
586 init_cache_info(&ppc64_caches.l1i, 0x8000, 128, 128, 32);
587 init_cache_info(&ppc64_caches.l1d, 0x10000, 128, 128, 64);
588 init_cache_info(&ppc64_caches.l2, 0x80000, 128, 0, 512);
589 init_cache_info(&ppc64_caches.l3, 0x800000, 128, 0, 8192);
590 } else
591 cpu = of_find_node_by_type(NULL, "cpu");
592
593
594
595
596
597 if (cpu) {
598 if (!parse_cache_info(cpu, false, &ppc64_caches.l1d))
599 DBG("Argh, can't find dcache properties !\n");
600
601 if (!parse_cache_info(cpu, true, &ppc64_caches.l1i))
602 DBG("Argh, can't find icache properties !\n");
603
604
605
606
607
608 l2 = of_find_next_cache_node(cpu);
609 of_node_put(cpu);
610 if (l2) {
611 parse_cache_info(l2, false, &ppc64_caches.l2);
612 l3 = of_find_next_cache_node(l2);
613 of_node_put(l2);
614 }
615 if (l3) {
616 parse_cache_info(l3, false, &ppc64_caches.l3);
617 of_node_put(l3);
618 }
619 }
620
621
622 dcache_bsize = ppc64_caches.l1d.block_size;
623 icache_bsize = ppc64_caches.l1i.block_size;
624
625 cur_cpu_spec->dcache_bsize = dcache_bsize;
626 cur_cpu_spec->icache_bsize = icache_bsize;
627
628 DBG(" <- initialize_cache_info()\n");
629 }
630
631
632
633
634
635
636
637
638
639
640 __init u64 ppc64_bolted_size(void)
641 {
642 #ifdef CONFIG_PPC_BOOK3E
643
644
645 if (early_mmu_has_feature(MMU_FTR_TYPE_FSL_E))
646 return linear_map_top;
647
648 return 1ul << 30;
649 #else
650
651 if (early_radix_enabled())
652 return ULONG_MAX;
653
654
655 if (early_mmu_has_feature(MMU_FTR_1T_SEGMENT))
656 return 1UL << SID_SHIFT_1T;
657 return 1UL << SID_SHIFT;
658 #endif
659 }
660
661 static void *__init alloc_stack(unsigned long limit, int cpu)
662 {
663 void *ptr;
664
665 BUILD_BUG_ON(STACK_INT_FRAME_SIZE % 16);
666
667 ptr = memblock_alloc_try_nid(THREAD_SIZE, THREAD_SIZE,
668 MEMBLOCK_LOW_LIMIT, limit,
669 early_cpu_to_node(cpu));
670 if (!ptr)
671 panic("cannot allocate stacks");
672
673 return ptr;
674 }
675
676 void __init irqstack_early_init(void)
677 {
678 u64 limit = ppc64_bolted_size();
679 unsigned int i;
680
681
682
683
684
685
686 for_each_possible_cpu(i) {
687 softirq_ctx[i] = alloc_stack(limit, i);
688 hardirq_ctx[i] = alloc_stack(limit, i);
689 }
690 }
691
692 #ifdef CONFIG_PPC_BOOK3E
693 void __init exc_lvl_early_init(void)
694 {
695 unsigned int i;
696
697 for_each_possible_cpu(i) {
698 void *sp;
699
700 sp = alloc_stack(ULONG_MAX, i);
701 critirq_ctx[i] = sp;
702 paca_ptrs[i]->crit_kstack = sp + THREAD_SIZE;
703
704 sp = alloc_stack(ULONG_MAX, i);
705 dbgirq_ctx[i] = sp;
706 paca_ptrs[i]->dbg_kstack = sp + THREAD_SIZE;
707
708 sp = alloc_stack(ULONG_MAX, i);
709 mcheckirq_ctx[i] = sp;
710 paca_ptrs[i]->mc_kstack = sp + THREAD_SIZE;
711 }
712
713 if (cpu_has_feature(CPU_FTR_DEBUG_LVL_EXC))
714 patch_exception(0x040, exc_debug_debug_book3e);
715 }
716 #endif
717
718
719
720
721
722
723 void __init emergency_stack_init(void)
724 {
725 u64 limit;
726 unsigned int i;
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742 limit = min(ppc64_bolted_size(), ppc64_rma_size);
743
744 for_each_possible_cpu(i) {
745 paca_ptrs[i]->emergency_sp = alloc_stack(limit, i) + THREAD_SIZE;
746
747 #ifdef CONFIG_PPC_BOOK3S_64
748
749 paca_ptrs[i]->nmi_emergency_sp = alloc_stack(limit, i) + THREAD_SIZE;
750
751
752 paca_ptrs[i]->mc_emergency_sp = alloc_stack(limit, i) + THREAD_SIZE;
753 #endif
754 }
755 }
756
757 #ifdef CONFIG_SMP
758 #define PCPU_DYN_SIZE ()
759
760 static void * __init pcpu_fc_alloc(unsigned int cpu, size_t size, size_t align)
761 {
762 return memblock_alloc_try_nid(size, align, __pa(MAX_DMA_ADDRESS),
763 MEMBLOCK_ALLOC_ACCESSIBLE,
764 early_cpu_to_node(cpu));
765
766 }
767
768 static void __init pcpu_fc_free(void *ptr, size_t size)
769 {
770 memblock_free(__pa(ptr), size);
771 }
772
773 static int pcpu_cpu_distance(unsigned int from, unsigned int to)
774 {
775 if (early_cpu_to_node(from) == early_cpu_to_node(to))
776 return LOCAL_DISTANCE;
777 else
778 return REMOTE_DISTANCE;
779 }
780
781 unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
782 EXPORT_SYMBOL(__per_cpu_offset);
783
784 void __init setup_per_cpu_areas(void)
785 {
786 const size_t dyn_size = PERCPU_MODULE_RESERVE + PERCPU_DYNAMIC_RESERVE;
787 size_t atom_size;
788 unsigned long delta;
789 unsigned int cpu;
790 int rc;
791
792
793
794
795
796
797 if (mmu_linear_psize == MMU_PAGE_4K)
798 atom_size = PAGE_SIZE;
799 else
800 atom_size = 1 << 20;
801
802 rc = pcpu_embed_first_chunk(0, dyn_size, atom_size, pcpu_cpu_distance,
803 pcpu_fc_alloc, pcpu_fc_free);
804 if (rc < 0)
805 panic("cannot initialize percpu area (err=%d)", rc);
806
807 delta = (unsigned long)pcpu_base_addr - (unsigned long)__per_cpu_start;
808 for_each_possible_cpu(cpu) {
809 __per_cpu_offset[cpu] = delta + pcpu_unit_offsets[cpu];
810 paca_ptrs[cpu]->data_offset = __per_cpu_offset[cpu];
811 }
812 }
813 #endif
814
815 #ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
816 unsigned long memory_block_size_bytes(void)
817 {
818 if (ppc_md.memory_block_size)
819 return ppc_md.memory_block_size();
820
821 return MIN_MEMORY_BLOCK_SIZE;
822 }
823 #endif
824
825 #if defined(CONFIG_PPC_INDIRECT_PIO) || defined(CONFIG_PPC_INDIRECT_MMIO)
826 struct ppc_pci_io ppc_pci_io;
827 EXPORT_SYMBOL(ppc_pci_io);
828 #endif
829
830 #ifdef CONFIG_HARDLOCKUP_DETECTOR_PERF
831 u64 hw_nmi_get_sample_period(int watchdog_thresh)
832 {
833 return ppc_proc_freq * watchdog_thresh;
834 }
835 #endif
836
837
838
839
840
841
842
843
844
845 static int __init disable_hardlockup_detector(void)
846 {
847 #ifdef CONFIG_HARDLOCKUP_DETECTOR_PERF
848 hardlockup_detector_disable();
849 #else
850 if (firmware_has_feature(FW_FEATURE_LPAR))
851 hardlockup_detector_disable();
852 #endif
853
854 return 0;
855 }
856 early_initcall(disable_hardlockup_detector);
857
858 #ifdef CONFIG_PPC_BOOK3S_64
859 static enum l1d_flush_type enabled_flush_types;
860 static void *l1d_flush_fallback_area;
861 static bool no_rfi_flush;
862 bool rfi_flush;
863
864 static int __init handle_no_rfi_flush(char *p)
865 {
866 pr_info("rfi-flush: disabled on command line.");
867 no_rfi_flush = true;
868 return 0;
869 }
870 early_param("no_rfi_flush", handle_no_rfi_flush);
871
872
873
874
875
876 static int __init handle_no_pti(char *p)
877 {
878 pr_info("rfi-flush: disabling due to 'nopti' on command line.\n");
879 handle_no_rfi_flush(NULL);
880 return 0;
881 }
882 early_param("nopti", handle_no_pti);
883
884 static void do_nothing(void *unused)
885 {
886
887
888
889
890 }
891
892 void rfi_flush_enable(bool enable)
893 {
894 if (enable) {
895 do_rfi_flush_fixups(enabled_flush_types);
896 on_each_cpu(do_nothing, NULL, 1);
897 } else
898 do_rfi_flush_fixups(L1D_FLUSH_NONE);
899
900 rfi_flush = enable;
901 }
902
903 static void __ref init_fallback_flush(void)
904 {
905 u64 l1d_size, limit;
906 int cpu;
907
908
909 if (l1d_flush_fallback_area)
910 return;
911
912 l1d_size = ppc64_caches.l1d.size;
913
914
915
916
917
918
919
920
921 if (!l1d_size)
922 l1d_size = (64 * 1024);
923
924 limit = min(ppc64_bolted_size(), ppc64_rma_size);
925
926
927
928
929
930
931 l1d_flush_fallback_area = memblock_alloc_try_nid(l1d_size * 2,
932 l1d_size, MEMBLOCK_LOW_LIMIT,
933 limit, NUMA_NO_NODE);
934 if (!l1d_flush_fallback_area)
935 panic("%s: Failed to allocate %llu bytes align=0x%llx max_addr=%pa\n",
936 __func__, l1d_size * 2, l1d_size, &limit);
937
938
939 for_each_possible_cpu(cpu) {
940 struct paca_struct *paca = paca_ptrs[cpu];
941 paca->rfi_flush_fallback_area = l1d_flush_fallback_area;
942 paca->l1d_flush_size = l1d_size;
943 }
944 }
945
946 void setup_rfi_flush(enum l1d_flush_type types, bool enable)
947 {
948 if (types & L1D_FLUSH_FALLBACK) {
949 pr_info("rfi-flush: fallback displacement flush available\n");
950 init_fallback_flush();
951 }
952
953 if (types & L1D_FLUSH_ORI)
954 pr_info("rfi-flush: ori type flush available\n");
955
956 if (types & L1D_FLUSH_MTTRIG)
957 pr_info("rfi-flush: mttrig type flush available\n");
958
959 enabled_flush_types = types;
960
961 if (!no_rfi_flush && !cpu_mitigations_off())
962 rfi_flush_enable(enable);
963 }
964
965 #ifdef CONFIG_DEBUG_FS
966 static int rfi_flush_set(void *data, u64 val)
967 {
968 bool enable;
969
970 if (val == 1)
971 enable = true;
972 else if (val == 0)
973 enable = false;
974 else
975 return -EINVAL;
976
977
978 if (enable != rfi_flush)
979 rfi_flush_enable(enable);
980
981 return 0;
982 }
983
984 static int rfi_flush_get(void *data, u64 *val)
985 {
986 *val = rfi_flush ? 1 : 0;
987 return 0;
988 }
989
990 DEFINE_SIMPLE_ATTRIBUTE(fops_rfi_flush, rfi_flush_get, rfi_flush_set, "%llu\n");
991
992 static __init int rfi_flush_debugfs_init(void)
993 {
994 debugfs_create_file("rfi_flush", 0600, powerpc_debugfs_root, NULL, &fops_rfi_flush);
995 return 0;
996 }
997 device_initcall(rfi_flush_debugfs_init);
998 #endif
999 #endif