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