Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 2 | /* |
Bin Meng | fea1c47 | 2015-01-20 11:25:44 +0800 | [diff] [blame] | 3 | * U-Boot - x86 Startup Code |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 4 | * |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 5 | * (C) Copyright 2008-2011 |
| 6 | * Graeme Russ, <graeme.russ@gmail.com> |
| 7 | * |
| 8 | * (C) Copyright 2002,2003 |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 9 | * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
Graeme Russ | c81b26b | 2010-10-07 20:03:30 +1100 | [diff] [blame] | 12 | #include <asm/global_data.h> |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 13 | #include <asm/processor-flags.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 14 | |
| 15 | #define BOOT_SEG 0xffff0000 /* linear segment of boot code */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 16 | |
| 17 | .section .start16, "ax" |
| 18 | .code16 |
| 19 | .globl start16 |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 20 | start16: |
Simon Glass | f67cd51 | 2014-11-06 13:20:10 -0700 | [diff] [blame] | 21 | /* Save BIST */ |
| 22 | movl %eax, %ecx |
| 23 | |
Simon Glass | 3c00695 | 2014-11-06 13:20:03 -0700 | [diff] [blame] | 24 | xorl %eax, %eax |
Bin Meng | fea1c47 | 2015-01-20 11:25:44 +0800 | [diff] [blame] | 25 | movl %eax, %cr3 /* Invalidate TLB */ |
Simon Glass | 3c00695 | 2014-11-06 13:20:03 -0700 | [diff] [blame] | 26 | |
Simon Glass | 85d8732 | 2014-11-06 13:20:01 -0700 | [diff] [blame] | 27 | /* Turn off cache (this might require a 486-class CPU) */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 28 | movl %cr0, %eax |
Ondrej Kupka | 7b3d538 | 2011-09-30 21:05:11 +1100 | [diff] [blame] | 29 | orl $(X86_CR0_NW | X86_CR0_CD), %eax |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 30 | movl %eax, %cr0 |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 31 | wbinvd |
| 32 | |
Graeme Russ | c14a366 | 2010-04-24 00:05:43 +1000 | [diff] [blame] | 33 | /* load the temporary Global Descriptor Table */ |
Masahiro Yamada | 0d915a9 | 2019-12-03 14:20:49 +0900 | [diff] [blame] | 34 | data32 cs lidt idt_ptr |
| 35 | data32 cs lgdt gdt_ptr |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 36 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 37 | /* Now, we enter protected mode */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 38 | movl %cr0, %eax |
Graeme Russ | 0c24c9c | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 39 | orl $X86_CR0_PE, %eax |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 40 | movl %eax, %cr0 |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 41 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 42 | /* Flush the prefetch queue */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 43 | jmp ff |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 44 | ff: |
Simon Glass | f67cd51 | 2014-11-06 13:20:10 -0700 | [diff] [blame] | 45 | |
Bin Meng | fea1c47 | 2015-01-20 11:25:44 +0800 | [diff] [blame] | 46 | /* Finally restore BIST and jump to the 32-bit initialization code */ |
Simon Glass | f67cd51 | 2014-11-06 13:20:10 -0700 | [diff] [blame] | 47 | movl %ecx, %eax |
Masahiro Yamada | 90ab311 | 2019-12-03 14:28:58 +0900 | [diff] [blame] | 48 | data32 cs ljmp *code32start |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 49 | |
| 50 | /* 48-bit far pointer */ |
| 51 | code32start: |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 52 | .long _start /* offset */ |
| 53 | .word 0x10 /* segment */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 54 | |
Graeme Russ | 797960f | 2010-08-22 16:25:59 +1000 | [diff] [blame] | 55 | idt_ptr: |
| 56 | .word 0 /* limit */ |
| 57 | .long 0 /* base */ |
| 58 | |
Bin Meng | fea1c47 | 2015-01-20 11:25:44 +0800 | [diff] [blame] | 59 | /* |
| 60 | * The following Global Descriptor Table is just enough to get us into |
| 61 | * 'Flat Protected Mode' - It will be discarded as soon as the final |
| 62 | * GDT is setup in a safe location in RAM |
| 63 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 64 | gdt_ptr: |
Bin Meng | 35d4fed | 2014-10-16 22:58:35 +0800 | [diff] [blame] | 65 | .word 0x1f /* limit (31 bytes = 4 GDT entries - 1) */ |
Bin Meng | 002610f | 2015-06-07 11:33:13 +0800 | [diff] [blame] | 66 | .long BOOT_SEG + gdt_rom /* base */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 67 | |
Bin Meng | fea1c47 | 2015-01-20 11:25:44 +0800 | [diff] [blame] | 68 | /* Some CPUs are picky about GDT alignment... */ |
| 69 | .align 16 |
Bin Meng | 002610f | 2015-06-07 11:33:13 +0800 | [diff] [blame] | 70 | .globl gdt_rom |
| 71 | gdt_rom: |
Graeme Russ | 58c7a67 | 2011-12-19 14:26:18 +1100 | [diff] [blame] | 72 | /* |
| 73 | * The GDT table ... |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 74 | * |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 75 | * Selector Type |
| 76 | * 0x00 NULL |
| 77 | * 0x08 Unused |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 78 | * 0x10 32bit code |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 79 | * 0x18 32bit data/stack |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 80 | */ |
Graeme Russ | 58c7a67 | 2011-12-19 14:26:18 +1100 | [diff] [blame] | 81 | /* The NULL Desciptor - Mandatory */ |
| 82 | .word 0x0000 /* limit_low */ |
| 83 | .word 0x0000 /* base_low */ |
| 84 | .byte 0x00 /* base_middle */ |
| 85 | .byte 0x00 /* access */ |
| 86 | .byte 0x00 /* flags + limit_high */ |
| 87 | .byte 0x00 /* base_high */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 88 | |
Graeme Russ | 58c7a67 | 2011-12-19 14:26:18 +1100 | [diff] [blame] | 89 | /* Unused Desciptor - (matches Linux) */ |
| 90 | .word 0x0000 /* limit_low */ |
| 91 | .word 0x0000 /* base_low */ |
| 92 | .byte 0x00 /* base_middle */ |
| 93 | .byte 0x00 /* access */ |
| 94 | .byte 0x00 /* flags + limit_high */ |
| 95 | .byte 0x00 /* base_high */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 96 | |
Graeme Russ | 58c7a67 | 2011-12-19 14:26:18 +1100 | [diff] [blame] | 97 | /* |
| 98 | * The Code Segment Descriptor: |
| 99 | * - Base = 0x00000000 |
| 100 | * - Size = 4GB |
| 101 | * - Access = Present, Ring 0, Exec (Code), Readable |
| 102 | * - Flags = 4kB Granularity, 32-bit |
| 103 | */ |
| 104 | .word 0xffff /* limit_low */ |
| 105 | .word 0x0000 /* base_low */ |
| 106 | .byte 0x00 /* base_middle */ |
| 107 | .byte 0x9b /* access */ |
| 108 | .byte 0xcf /* flags + limit_high */ |
| 109 | .byte 0x00 /* base_high */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 110 | |
Graeme Russ | 58c7a67 | 2011-12-19 14:26:18 +1100 | [diff] [blame] | 111 | /* |
| 112 | * The Data Segment Descriptor: |
| 113 | * - Base = 0x00000000 |
| 114 | * - Size = 4GB |
| 115 | * - Access = Present, Ring 0, Non-Exec (Data), Writable |
| 116 | * - Flags = 4kB Granularity, 32-bit |
| 117 | */ |
| 118 | .word 0xffff /* limit_low */ |
| 119 | .word 0x0000 /* base_low */ |
| 120 | .byte 0x00 /* base_middle */ |
| 121 | .byte 0x93 /* access */ |
| 122 | .byte 0xcf /* flags + limit_high */ |
| 123 | .byte 0x00 /* base_high */ |