Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/arch/x86/cpu/i386/
H A Dcpu.c473 static void build_pagetable(uint32_t *pgtable) in build_pagetable() argument
477 memset(pgtable, '\0', PAGETABLE_SIZE); in build_pagetable()
480 pgtable[0] = (ulong)&pgtable[1024] + 7; in build_pagetable()
484 pgtable[1024 + i * 2] = (ulong)&pgtable[2048] + 0x1000 * i + 7; in build_pagetable()
488 pgtable[2048 + i * 2] = 0x183 + (i << 21UL); in build_pagetable()
493 uint32_t *pgtable; in cpu_jump_to_64bit() local
495 pgtable = memalign(4096, PAGETABLE_SIZE); in cpu_jump_to_64bit()
496 if (!pgtable) in cpu_jump_to_64bit()
499 build_pagetable(pgtable); in cpu_jump_to_64bit()
500 cpu_call64((ulong)pgtable, setup_base, target); in cpu_jump_to_64bit()
[all …]
/rk3399_rockchip-uboot/arch/x86/include/asm/
H A Dcpu.h246 void cpu_call64(ulong pgtable, ulong setup_base, ulong target);