pi.h 616 Bytes
Newer Older
Jesse Taube's avatar
Jesse Taube committed
1 2 3 4 5 6 7 8 9 10 11 12 13
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _RISCV_PI_H_
#define _RISCV_PI_H_

#include <linux/types.h>

/*
 * The following functions are exported (but prefixed). Declare them here so
 * that LLVM does not complain it lacks the 'static' keyword (which, if
 * added, makes LLVM complain because the function is unused).
 */

u64 get_kaslr_seed(uintptr_t dtb_pa);
14
u64 get_kaslr_seed_zkr(const uintptr_t dtb_pa);
Jesse Taube's avatar
Jesse Taube committed
15 16 17
bool set_nokaslr_from_cmdline(uintptr_t dtb_pa);
u64 set_satp_mode_from_cmdline(uintptr_t dtb_pa);

18 19
bool fdt_early_match_extension_isa(const void *fdt, const char *ext_name);

Jesse Taube's avatar
Jesse Taube committed
20
#endif /* _RISCV_PI_H_ */