Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Anton Blanchard | 560285c | 2012-11-01 14:55:04 +0000 | [diff] [blame] | 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; |
Anton Blanchard | 560285c | 2012-11-01 14:55:04 +0000 | [diff] [blame] | 11 | extern unsigned long long memory_limit; |
| 12 | extern unsigned long klimit; |
| 13 | extern void *zalloc_maybe_bootmem(size_t size, gfp_t mask); |
| 14 | |
Anton Blanchard | 560285c | 2012-11-01 14:55:04 +0000 | [diff] [blame] | 15 | struct device_node; |
| 16 | extern void note_scsi_host(struct device_node *, void *); |
| 17 | |
| 18 | /* Used in very early kernel initialization. */ |
| 19 | extern unsigned long reloc_offset(void); |
| 20 | extern unsigned long add_reloc_offset(unsigned long); |
| 21 | extern void reloc_got2(unsigned long); |
| 22 | |
| 23 | #define PTRRELOC(x) ((typeof(x)) add_reloc_offset((unsigned long)(x))) |
| 24 | |
Robert Jennings | b88c476 | 2013-10-28 09:20:51 -0500 | [diff] [blame] | 25 | void check_for_initrd(void); |
Nicholas Piggin | 9bd9be0 | 2018-02-14 01:08:16 +1000 | [diff] [blame] | 26 | void mem_topology_setup(void); |
Anton Blanchard | 1023973 | 2014-09-17 22:15:33 +1000 | [diff] [blame] | 27 | void initmem_init(void); |
David Gibson | ab9dbf7 | 2017-12-04 16:27:25 +1100 | [diff] [blame] | 28 | void setup_panic(void); |
Jason Baron | b71d47c | 2013-11-25 23:23:11 +0000 | [diff] [blame] | 29 | #define ARCH_PANIC_TIMEOUT 180 |
Robert Jennings | b88c476 | 2013-10-28 09:20:51 -0500 | [diff] [blame] | 30 | |
Benjamin Herrenschmidt | d3cbff1 | 2016-07-05 15:03:49 +1000 | [diff] [blame] | 31 | #ifdef CONFIG_PPC_PSERIES |
| 32 | extern void pseries_enable_reloc_on_exc(void); |
| 33 | extern void pseries_disable_reloc_on_exc(void); |
| 34 | extern void pseries_big_endian_exceptions(void); |
| 35 | extern void pseries_little_endian_exceptions(void); |
| 36 | #else |
| 37 | static inline void pseries_enable_reloc_on_exc(void) {} |
| 38 | static inline void pseries_disable_reloc_on_exc(void) {} |
| 39 | static inline void pseries_big_endian_exceptions(void) {} |
| 40 | static inline void pseries_little_endian_exceptions(void) {} |
| 41 | #endif /* CONFIG_PPC_PSERIES */ |
| 42 | |
Michael Ellerman | aa8a5e0 | 2018-01-10 03:07:15 +1100 | [diff] [blame] | 43 | void rfi_flush_enable(bool enable); |
| 44 | |
| 45 | /* These are bit flags */ |
| 46 | enum l1d_flush_type { |
| 47 | L1D_FLUSH_NONE = 0x1, |
| 48 | L1D_FLUSH_FALLBACK = 0x2, |
| 49 | L1D_FLUSH_ORI = 0x4, |
| 50 | L1D_FLUSH_MTTRIG = 0x8, |
| 51 | }; |
| 52 | |
Michael Ellerman | abf110f | 2018-03-14 19:40:39 -0300 | [diff] [blame] | 53 | void setup_rfi_flush(enum l1d_flush_type, bool enable); |
Michael Ellerman | aa8a5e0 | 2018-01-10 03:07:15 +1100 | [diff] [blame] | 54 | void do_rfi_flush_fixups(enum l1d_flush_type types); |
| 55 | |
Anton Blanchard | 560285c | 2012-11-01 14:55:04 +0000 | [diff] [blame] | 56 | #endif /* !__ASSEMBLY__ */ |
| 57 | |
| 58 | #endif /* _ASM_POWERPC_SETUP_H */ |
| 59 | |