1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _ASM_POWERPC_SETUP_H 3 #define _ASM_POWERPC_SETUP_H 4 5 #include <uapi/asm/setup.h> 6 7 #ifndef __ASSEMBLY__ 8 extern void ppc_printk_progress(char *s, unsigned short hex); 9 10 extern unsigned int rtas_data; 11 extern unsigned long long memory_limit; 12 extern void *zalloc_maybe_bootmem(size_t size, gfp_t mask); 13 14 struct device_node; 15 extern void note_scsi_host(struct device_node *, void *); 16 17 /* Used in very early kernel initialization. */ 18 extern unsigned long reloc_offset(void); 19 extern unsigned long add_reloc_offset(unsigned long); 20 extern void reloc_got2(unsigned long); 21 22 #define PTRRELOC(x) ((typeof(x)) add_reloc_offset((unsigned long)(x))) 23 24 void check_for_initrd(void); 25 void mem_topology_setup(void); 26 void initmem_init(void); 27 void setup_panic(void); 28 #define ARCH_PANIC_TIMEOUT 180 29 30 #ifdef CONFIG_PPC_PSERIES 31 extern bool pseries_reloc_on_exception(void); 32 extern bool pseries_enable_reloc_on_exc(void); 33 extern void pseries_disable_reloc_on_exc(void); 34 extern void pseries_big_endian_exceptions(void); 35 void __init pseries_little_endian_exceptions(void); 36 #else 37 static inline bool pseries_reloc_on_exception(void) { return false; } 38 static inline bool pseries_enable_reloc_on_exc(void) { return false; } 39 static inline void pseries_disable_reloc_on_exc(void) {} 40 static inline void pseries_big_endian_exceptions(void) {} 41 static inline void pseries_little_endian_exceptions(void) {} 42 #endif /* CONFIG_PPC_PSERIES */ 43 44 void rfi_flush_enable(bool enable); 45 46 /* These are bit flags */ 47 enum l1d_flush_type { 48 L1D_FLUSH_NONE = 0x1, 49 L1D_FLUSH_FALLBACK = 0x2, 50 L1D_FLUSH_ORI = 0x4, 51 L1D_FLUSH_MTTRIG = 0x8, 52 }; 53 54 void setup_rfi_flush(enum l1d_flush_type, bool enable); 55 void setup_entry_flush(bool enable); 56 void setup_uaccess_flush(bool enable); 57 void do_rfi_flush_fixups(enum l1d_flush_type types); 58 #ifdef CONFIG_PPC_BARRIER_NOSPEC 59 void __init setup_barrier_nospec(void); 60 #else 61 static inline void setup_barrier_nospec(void) { } 62 #endif 63 void do_uaccess_flush_fixups(enum l1d_flush_type types); 64 void do_entry_flush_fixups(enum l1d_flush_type types); 65 void do_barrier_nospec_fixups(bool enable); 66 extern bool barrier_nospec_enabled; 67 68 #ifdef CONFIG_PPC_BARRIER_NOSPEC 69 void do_barrier_nospec_fixups_range(bool enable, void *start, void *end); 70 #else 71 static inline void do_barrier_nospec_fixups_range(bool enable, void *start, void *end) { } 72 #endif 73 74 #ifdef CONFIG_PPC_FSL_BOOK3E 75 void __init setup_spectre_v2(void); 76 #else 77 static inline void setup_spectre_v2(void) {} 78 #endif 79 void __init do_btb_flush_fixups(void); 80 81 #ifdef CONFIG_PPC32 82 unsigned long __init early_init(unsigned long dt_ptr); 83 void __init machine_init(u64 dt_ptr); 84 #endif 85 void __init early_setup(unsigned long dt_ptr); 86 void early_setup_secondary(void); 87 88 #endif /* !__ASSEMBLY__ */ 89 90 #endif /* _ASM_POWERPC_SETUP_H */ 91 92