51 lines
1.2 KiB
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2020 Western Digital Corporation or its affiliates.
*/
#ifndef _ASM_EFI_H
#define _ASM_EFI_H
#include <asm/csr.h>
#include <asm/io.h>
#include <asm/mmu_context.h>
#include <asm/ptrace.h>
#include <asm/tlbflush.h>
2026-01-29 22:25:33 +08:00
#include <asm/pgalloc.h>
2026-01-21 18:59:54 +08:00
#ifdef CONFIG_EFI
extern void efi_init(void);
#else
#define efi_init()
#endif
int efi_create_mapping(struct mm_struct *mm, efi_memory_desc_t *md);
2026-01-29 22:25:33 +08:00
int efi_set_mapping_permissions(struct mm_struct *mm, efi_memory_desc_t *md, bool);
2026-01-21 18:59:54 +08:00
#define ARCH_EFI_IRQ_FLAGS_MASK (SR_IE | SR_SPIE)
2026-01-29 22:25:33 +08:00
/* Load initrd anywhere in system RAM */
static inline unsigned long efi_get_max_initrd_addr(unsigned long image_addr)
2026-01-21 18:59:54 +08:00
{
return ULONG_MAX;
}
2026-01-29 22:25:33 +08:00
static inline unsigned long efi_get_kimg_min_align(void)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
/*
* RISC-V requires the kernel image to placed 2 MB aligned base for 64
* bit and 4MB for 32 bit.
*/
return IS_ENABLED(CONFIG_64BIT) ? SZ_2M : SZ_4M;
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
#define EFI_KIMG_PREFERRED_ADDRESS efi_get_kimg_min_align()
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
void arch_efi_call_virt_setup(void);
void arch_efi_call_virt_teardown(void);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
unsigned long stext_offset(void);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
void efi_icache_sync(unsigned long start, unsigned long end);
2026-01-21 18:59:54 +08:00
#endif /* _ASM_EFI_H */