2018-07-19 11:11:28 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef BOOT_BOOT_H
|
|
|
|
#define BOOT_BOOT_H
|
|
|
|
|
|
|
|
void startup_kernel(void);
|
2018-04-11 09:56:55 +00:00
|
|
|
void detect_memory(void);
|
2018-05-15 11:28:53 +00:00
|
|
|
void store_ipl_parmblock(void);
|
|
|
|
void setup_boot_command_line(void);
|
2019-02-27 15:52:42 +00:00
|
|
|
void parse_boot_command_line(void);
|
2018-05-15 11:28:53 +00:00
|
|
|
void setup_memory_end(void);
|
2019-02-27 16:36:35 +00:00
|
|
|
void print_missing_facilities(void);
|
2019-02-03 20:37:20 +00:00
|
|
|
unsigned long get_random_base(unsigned long safe_addr);
|
|
|
|
|
|
|
|
extern int kaslr_enabled;
|
2019-07-15 13:30:33 +00:00
|
|
|
extern const char kernel_version[];
|
2018-07-19 11:11:28 +00:00
|
|
|
|
2019-02-21 13:23:04 +00:00
|
|
|
unsigned long read_ipl_report(unsigned long safe_offset);
|
|
|
|
|
2018-07-19 11:11:28 +00:00
|
|
|
#endif /* BOOT_BOOT_H */
|