Home
last modified time | relevance | path

Searched refs:pgtable (Results 1 – 2 of 2) sorted by relevance

/external/u-boot/arch/x86/cpu/i386/
Dcpu.c472 static void build_pagetable(uint32_t *pgtable) in build_pagetable() argument
476 memset(pgtable, '\0', PAGETABLE_SIZE); in build_pagetable()
479 pgtable[0] = (ulong)&pgtable[1024] + 7; in build_pagetable()
483 pgtable[1024 + i * 2] = (ulong)&pgtable[2048] + 0x1000 * i + 7; in build_pagetable()
487 pgtable[2048 + i * 2] = 0x183 + (i << 21UL); in build_pagetable()
492 uint32_t *pgtable; in cpu_jump_to_64bit() local
494 pgtable = memalign(4096, PAGETABLE_SIZE); in cpu_jump_to_64bit()
495 if (!pgtable) in cpu_jump_to_64bit()
498 build_pagetable(pgtable); in cpu_jump_to_64bit()
499 cpu_call64((ulong)pgtable, setup_base, target); in cpu_jump_to_64bit()
[all …]
/external/u-boot/arch/x86/include/asm/
Dcpu.h245 void cpu_call64(ulong pgtable, ulong setup_base, ulong target);