/* SPDX-License-Identifier: GPL-2.0-only */ #include #include #include #include #include #include #include int payload_arch_usable_ram_quirk(uint64_t start, uint64_t size) { if (start < 1 * MiB && (start + size) <= 1 * MiB) { printk(BIOS_DEBUG, "Payload being loaded at below 1MiB without region being marked as RAM usable.\n"); return 1; } return 0; } void arch_prog_run(struct prog *prog) { #if ENV_RAMSTAGE && defined(__x86_64__) const uint32_t arg = pointer_to_uint32_safe(prog_entry_arg(prog)); const uint32_t entry = pointer_to_uint32_safe(prog_entry(prog)); /* On x86 coreboot payloads expect to be called in protected mode */ protected_mode_jump(entry, arg); #else #ifdef __x86_64__ void (*doit)(void *arg); #else /* Ensure the argument is pushed on the stack. */ asmlinkage void (*doit)(void *arg); #endif doit = prog_entry(prog); doit(prog_entry_arg(prog)); #endif }