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