Searched refs:pgtable (Results 1 – 2 of 2) sorted by relevance
472 static void build_pagetable(uint32_t *pgtable) in build_pagetable() argument476 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() local494 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 …]
245 void cpu_call64(ulong pgtable, ulong setup_base, ulong target);