Searched refs:pgtable (Results 1 – 5 of 5) sorted by relevance
473 static void build_pagetable(uint32_t *pgtable) in build_pagetable() argument477 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() local495 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 …]
245 void cpu_call64(ulong pgtable, ulong setup_base, ulong target);
38 + * The SECTION_SIZE of LPAE kernel is '1UL << 21' defined in pgtable-3level.h
[all...]