Skip to content
Snippets Groups Projects
Commit 3c00695e authored by Simon Glass's avatar Simon Glass
Browse files

x86: Invalidate TLB as early as possible


We should invalidate the TLB right at the start to ensure that we don't get
false address translations even though paging is disabled.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarBin Meng <bmeng.cn@gmail.com>
parent 85d87328
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,9 @@ start16: ...@@ -24,6 +24,9 @@ start16:
/* Set the Cold Boot / Hard Reset flag */ /* Set the Cold Boot / Hard Reset flag */
movl $GD_FLG_COLD_BOOT, %ebx movl $GD_FLG_COLD_BOOT, %ebx
xorl %eax, %eax
movl %eax, %cr3 /* Invalidate TLB */
/* Turn off cache (this might require a 486-class CPU) */ /* Turn off cache (this might require a 486-class CPU) */
movl %cr0, %eax movl %cr0, %eax
orl $(X86_CR0_NW | X86_CR0_CD), %eax orl $(X86_CR0_NW | X86_CR0_CD), %eax
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment