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