Home
last modified time | relevance | path

Searched refs:setup_base (Results 1 – 7 of 7) sorted by relevance

/openbmc/u-boot/arch/x86/lib/
H A Dzimage.c132 struct boot_params *setup_base; in load_zimage() local
141 setup_base = (struct boot_params *)DEFAULT_SETUP_BASE; in load_zimage()
186 printf("Building boot_params at 0x%8.8lx\n", (ulong)setup_base); in load_zimage()
187 memset(setup_base, 0, sizeof(*setup_base)); in load_zimage()
188 setup_base->hdr = params->hdr; in load_zimage()
200 if ((ulong)setup_base != 0x90000) { in load_zimage()
202 memmove((void *)0x90000, setup_base, setup_size); in load_zimage()
206 (u8 *)setup_base + COMMAND_LINE_OFFSET, in load_zimage()
210 setup_base = (struct boot_params *)0x90000; in load_zimage()
236 return setup_base; in load_zimage()
[all …]
H A Dbootm.c149 int boot_linux_kernel(ulong setup_base, ulong load_address, bool image_64bit) in boot_linux_kernel() argument
167 return cpu_jump_to_64bit(setup_base, load_address); in boot_linux_kernel()
187 [boot_params] "S"(setup_base), in boot_linux_kernel()
/openbmc/u-boot/arch/x86/include/asm/
H A Dcpu.h245 void cpu_call64(ulong pgtable, ulong setup_base, ulong target);
265 int cpu_jump_to_64bit(ulong setup_base, ulong target);
H A Dbootm.h25 int boot_linux_kernel(ulong setup_base, ulong load_address, bool image_64bit);
H A Dzimage.h35 int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot,
/openbmc/linux/tools/testing/selftests/bpf/benchs/
H A Dbench_rename.c74 static void setup_base(void) in setup_base() function
112 .setup = setup_base,
/openbmc/u-boot/arch/x86/cpu/i386/
H A Dcpu.c491 int cpu_jump_to_64bit(ulong setup_base, ulong target) in cpu_jump_to_64bit() argument
500 cpu_call64((ulong)pgtable, setup_base, target); in cpu_jump_to_64bit()
523 typedef void (*func_t)(ulong pgtable, ulong setup_base, ulong target); in cpu_jump_to_64bit_uboot()