Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 2 | /* |
Bin Meng | 8c5acf4 | 2014-12-12 21:05:22 +0800 | [diff] [blame] | 3 | * U-Boot - x86 Startup Code |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 4 | * |
Graeme Russ | 45fc1d8 | 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 |
Albert ARIBAUD | 60fbc8d | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 9 | * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se> |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 12 | #include <config.h> |
Graeme Russ | 5fb91cc | 2010-10-07 20:03:29 +1100 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Simon Glass | 245561d | 2014-11-12 22:42:09 -0700 | [diff] [blame] | 14 | #include <asm/post.h> |
Graeme Russ | 391bb95 | 2011-12-31 10:24:36 +1100 | [diff] [blame] | 15 | #include <asm/processor.h> |
Graeme Russ | 93efcb2 | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 16 | #include <asm/processor-flags.h> |
Graeme Russ | 3536896 | 2011-12-31 22:58:15 +1100 | [diff] [blame] | 17 | #include <generated/generic-asm-offsets.h> |
Bin Meng | 8c5acf4 | 2014-12-12 21:05:22 +0800 | [diff] [blame] | 18 | #include <generated/asm-offsets.h> |
Bin Meng | 253a24a | 2018-10-25 03:05:37 -0700 | [diff] [blame] | 19 | #include <linux/linkage.h> |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 20 | |
Alexander Graf | 94a10f2 | 2018-06-12 07:48:37 +0200 | [diff] [blame] | 21 | .section .text.start |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 22 | .code32 |
| 23 | .globl _start |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 24 | .type _start, @function |
Graeme Russ | cbfce1d | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 25 | .globl _x86boot_start |
| 26 | _x86boot_start: |
Graeme Russ | 8accbb9 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 27 | /* |
Simon Glass | 611f749 | 2015-07-31 09:31:25 -0600 | [diff] [blame] | 28 | * This is the fail-safe 32-bit bootstrap entry point. |
| 29 | * |
| 30 | * This code is used when booting from another boot loader like |
| 31 | * coreboot or EFI. So we repeat some of the same init found in |
| 32 | * start16. |
Graeme Russ | 8accbb9 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 33 | */ |
| 34 | cli |
| 35 | cld |
| 36 | |
Graeme Russ | c379b5d | 2011-11-08 02:33:23 +0000 | [diff] [blame] | 37 | /* Turn off cache (this might require a 486-class CPU) */ |
Graeme Russ | 8accbb9 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 38 | movl %cr0, %eax |
Graeme Russ | 93efcb2 | 2011-02-12 15:11:32 +1100 | [diff] [blame] | 39 | orl $(X86_CR0_NW | X86_CR0_CD), %eax |
Graeme Russ | 8accbb9 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 40 | movl %eax, %cr0 |
| 41 | wbinvd |
| 42 | |
Simon Glass | f95ad8c | 2015-08-04 12:33:57 -0600 | [diff] [blame] | 43 | /* |
| 44 | * Zero the BIST (Built-In Self Test) value since we don't have it. |
| 45 | * It must be 0 or the previous loader would have reported an error. |
| 46 | */ |
| 47 | movl $0, %ebp |
| 48 | |
Gabe Black | ef89932 | 2012-11-03 11:41:28 +0000 | [diff] [blame] | 49 | jmp 1f |
Simon Glass | 5d18dc9 | 2015-07-31 09:31:28 -0600 | [diff] [blame] | 50 | |
| 51 | /* Add a way for tools to discover the _start entry point */ |
| 52 | .align 4 |
| 53 | .long 0x12345678 |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 54 | _start: |
Stefan Roese | faa8821 | 2019-08-16 14:45:28 +0200 | [diff] [blame^] | 55 | /* This is the 32-bit cold-reset entry point, coming from start16 */ |
Simon Glass | f95ad8c | 2015-08-04 12:33:57 -0600 | [diff] [blame] | 56 | |
Simon Glass | 1f4476c | 2014-11-06 13:20:10 -0700 | [diff] [blame] | 57 | /* Save BIST */ |
| 58 | movl %eax, %ebp |
Simon Glass | f95ad8c | 2015-08-04 12:33:57 -0600 | [diff] [blame] | 59 | 1: |
| 60 | |
| 61 | /* Save table pointer */ |
| 62 | movl %ecx, %esi |
Graeme Russ | 8accbb9 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 63 | |
Andy Shevchenko | 2ae7da0 | 2017-02-05 16:52:00 +0300 | [diff] [blame] | 64 | #ifdef CONFIG_X86_LOAD_FROM_32_BIT |
Simon Glass | b4ded74 | 2016-03-16 07:44:40 -0600 | [diff] [blame] | 65 | lgdt gdt_ptr2 |
| 66 | #endif |
| 67 | |
Simon Glass | 611f749 | 2015-07-31 09:31:25 -0600 | [diff] [blame] | 68 | /* Load the segement registers to match the GDT loaded in start16.S */ |
Graeme Russ | 391bb95 | 2011-12-31 10:24:36 +1100 | [diff] [blame] | 69 | movl $(X86_GDT_ENTRY_32BIT_DS * X86_GDT_ENTRY_SIZE), %eax |
Graeme Russ | 3e6ec38 | 2010-10-07 20:03:21 +1100 | [diff] [blame] | 70 | movw %ax, %fs |
| 71 | movw %ax, %ds |
| 72 | movw %ax, %gs |
| 73 | movw %ax, %es |
| 74 | movw %ax, %ss |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 75 | |
Mike Williams | bf895ad | 2011-07-22 04:01:30 +0000 | [diff] [blame] | 76 | /* Clear the interrupt vectors */ |
Graeme Russ | 8accbb9 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 77 | lidt blank_idt_ptr |
| 78 | |
Simon Glass | 611f749 | 2015-07-31 09:31:25 -0600 | [diff] [blame] | 79 | /* |
| 80 | * Critical early platform init - generally not used, we prefer init |
| 81 | * to happen later when we have a console, in case something goes |
| 82 | * wrong. |
| 83 | */ |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 84 | jmp early_board_init |
Graeme Russ | 157b0e9 | 2010-10-07 20:03:27 +1100 | [diff] [blame] | 85 | .globl early_board_init_ret |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 86 | early_board_init_ret: |
Simon Glass | 245561d | 2014-11-12 22:42:09 -0700 | [diff] [blame] | 87 | post_code(POST_START) |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 88 | |
Graeme Russ | bc76193 | 2011-02-12 15:11:52 +1100 | [diff] [blame] | 89 | /* Initialise Cache-As-RAM */ |
| 90 | jmp car_init |
| 91 | .globl car_init_ret |
| 92 | car_init_ret: |
Park, Aiden | 6e3cc36 | 2019-08-03 08:30:12 +0000 | [diff] [blame] | 93 | #ifndef CONFIG_USE_HOB |
Graeme Russ | bc76193 | 2011-02-12 15:11:52 +1100 | [diff] [blame] | 94 | /* |
| 95 | * We now have CONFIG_SYS_CAR_SIZE bytes of Cache-As-RAM (or SRAM, |
| 96 | * or fully initialised SDRAM - we really don't care which) |
| 97 | * starting at CONFIG_SYS_CAR_ADDR to be used as a temporary stack |
Simon Glass | 611f749 | 2015-07-31 09:31:25 -0600 | [diff] [blame] | 98 | * and early malloc() area. The MRC requires some space at the top. |
Simon Glass | a4fd0db | 2014-11-06 13:20:04 -0700 | [diff] [blame] | 99 | * |
| 100 | * Stack grows down from top of CAR. We have: |
| 101 | * |
| 102 | * top-> CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE |
Simon Glass | 268eefd | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 103 | * MRC area |
Simon Glass | 0e27b87 | 2015-08-10 20:44:32 -0600 | [diff] [blame] | 104 | * global_data with x86 global descriptor table |
Simon Glass | a4fd0db | 2014-11-06 13:20:04 -0700 | [diff] [blame] | 105 | * early malloc area |
| 106 | * stack |
| 107 | * bottom-> CONFIG_SYS_CAR_ADDR |
Graeme Russ | bc76193 | 2011-02-12 15:11:52 +1100 | [diff] [blame] | 108 | */ |
Simon Glass | 268eefd | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 109 | movl $(CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE - 4), %esp |
| 110 | #ifdef CONFIG_DCACHE_RAM_MRC_VAR_SIZE |
| 111 | subl $CONFIG_DCACHE_RAM_MRC_VAR_SIZE, %esp |
| 112 | #endif |
Bin Meng | 005f0af | 2014-12-12 21:05:31 +0800 | [diff] [blame] | 113 | #else |
| 114 | /* |
Bin Meng | 73574dc | 2015-08-20 06:40:20 -0700 | [diff] [blame] | 115 | * U-Boot enters here twice. For the first time it comes from |
| 116 | * car_init_done() with esp points to a temporary stack and esi |
| 117 | * set to zero. For the second time it comes from fsp_init_done() |
| 118 | * with esi holding the HOB list address returned by the FSP. |
Bin Meng | 005f0af | 2014-12-12 21:05:31 +0800 | [diff] [blame] | 119 | */ |
| 120 | #endif |
Simon Glass | 0e27b87 | 2015-08-10 20:44:32 -0600 | [diff] [blame] | 121 | /* Set up global data */ |
| 122 | mov %esp, %eax |
Albert ARIBAUD | 6cb4c46 | 2015-11-25 17:56:32 +0100 | [diff] [blame] | 123 | call board_init_f_alloc_reserve |
Simon Glass | 0e27b87 | 2015-08-10 20:44:32 -0600 | [diff] [blame] | 124 | mov %eax, %esp |
Albert ARIBAUD | 6cb4c46 | 2015-11-25 17:56:32 +0100 | [diff] [blame] | 125 | call board_init_f_init_reserve |
Graeme Russ | 007818a | 2012-11-27 15:38:36 +0000 | [diff] [blame] | 126 | |
Simon Glass | 4773012 | 2015-10-18 19:51:26 -0600 | [diff] [blame] | 127 | #ifdef CONFIG_DEBUG_UART |
| 128 | call debug_uart_init |
| 129 | #endif |
Simon Glass | 9bbb37f | 2015-08-02 18:07:21 -0600 | [diff] [blame] | 130 | |
Simon Glass | 0e27b87 | 2015-08-10 20:44:32 -0600 | [diff] [blame] | 131 | /* Get address of global_data */ |
| 132 | mov %fs:0, %edx |
Park, Aiden | 6e3cc36 | 2019-08-03 08:30:12 +0000 | [diff] [blame] | 133 | #ifdef CONFIG_USE_HOB |
Simon Glass | 0e27b87 | 2015-08-10 20:44:32 -0600 | [diff] [blame] | 134 | /* Store the HOB list if we have one */ |
Bin Meng | d560c5c | 2015-06-07 11:33:14 +0800 | [diff] [blame] | 135 | test %esi, %esi |
| 136 | jz skip_hob |
Simon Glass | 0e27b87 | 2015-08-10 20:44:32 -0600 | [diff] [blame] | 137 | movl %esi, GD_HOB_LIST(%edx) |
Bin Meng | 005f0af | 2014-12-12 21:05:31 +0800 | [diff] [blame] | 138 | |
Park, Aiden | 6e3cc36 | 2019-08-03 08:30:12 +0000 | [diff] [blame] | 139 | #ifdef CONFIG_HAVE_FSP |
Bin Meng | 12440cd | 2015-08-20 06:40:19 -0700 | [diff] [blame] | 140 | /* |
| 141 | * After fsp_init() returns, the stack has already been switched to a |
| 142 | * place within system memory as defined by CONFIG_FSP_TEMP_RAM_ADDR. |
| 143 | * Enlarge the size of malloc() pool before relocation since we have |
| 144 | * plenty of memory now. |
| 145 | */ |
| 146 | subl $CONFIG_FSP_SYS_MALLOC_F_LEN, %esp |
| 147 | movl %esp, GD_MALLOC_BASE(%edx) |
Park, Aiden | 6e3cc36 | 2019-08-03 08:30:12 +0000 | [diff] [blame] | 148 | #endif |
Bin Meng | d560c5c | 2015-06-07 11:33:14 +0800 | [diff] [blame] | 149 | skip_hob: |
Simon Glass | f95ad8c | 2015-08-04 12:33:57 -0600 | [diff] [blame] | 150 | #else |
| 151 | /* Store table pointer */ |
Simon Glass | 0e27b87 | 2015-08-10 20:44:32 -0600 | [diff] [blame] | 152 | movl %esi, GD_TABLE(%edx) |
Bin Meng | d560c5c | 2015-06-07 11:33:14 +0800 | [diff] [blame] | 153 | #endif |
Simon Glass | 0e27b87 | 2015-08-10 20:44:32 -0600 | [diff] [blame] | 154 | /* Store BIST */ |
| 155 | movl %ebp, GD_BIST(%edx) |
Graeme Russ | 3536896 | 2011-12-31 22:58:15 +1100 | [diff] [blame] | 156 | |
Graeme Russ | 3818393 | 2011-02-12 15:11:54 +1100 | [diff] [blame] | 157 | /* Set parameter to board_init_f() to boot flags */ |
Simon Glass | 245561d | 2014-11-12 22:42:09 -0700 | [diff] [blame] | 158 | post_code(POST_START_DONE) |
Graeme Russ | 45fc1d8 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 159 | xorl %eax, %eax |
Graeme Russ | 5fb91cc | 2010-10-07 20:03:29 +1100 | [diff] [blame] | 160 | |
Simon Glass | 611f749 | 2015-07-31 09:31:25 -0600 | [diff] [blame] | 161 | /* Enter, U-Boot! */ |
Graeme Russ | 45fc1d8 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 162 | call board_init_f |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 163 | |
| 164 | /* indicate (lack of) progress */ |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 165 | movw $0x85, %ax |
Graeme Russ | 9c44afc | 2011-02-12 15:11:58 +1100 | [diff] [blame] | 166 | jmp die |
| 167 | |
Graeme Russ | d7755b4 | 2012-01-01 15:06:39 +1100 | [diff] [blame] | 168 | .globl board_init_f_r_trampoline |
| 169 | .type board_init_f_r_trampoline, @function |
| 170 | board_init_f_r_trampoline: |
Graeme Russ | 9c44afc | 2011-02-12 15:11:58 +1100 | [diff] [blame] | 171 | /* |
| 172 | * SDRAM has been initialised, U-Boot code has been copied into |
| 173 | * RAM, BSS has been cleared and relocation adjustments have been |
| 174 | * made. It is now time to jump into the in-RAM copy of U-Boot |
| 175 | * |
Graeme Russ | d7755b4 | 2012-01-01 15:06:39 +1100 | [diff] [blame] | 176 | * %eax = Address of top of new stack |
Graeme Russ | 9c44afc | 2011-02-12 15:11:58 +1100 | [diff] [blame] | 177 | */ |
| 178 | |
Graeme Russ | 007818a | 2012-11-27 15:38:36 +0000 | [diff] [blame] | 179 | /* Stack grows down from top of SDRAM */ |
Graeme Russ | 9c44afc | 2011-02-12 15:11:58 +1100 | [diff] [blame] | 180 | movl %eax, %esp |
| 181 | |
Simon Glass | 0e27b87 | 2015-08-10 20:44:32 -0600 | [diff] [blame] | 182 | /* See if we need to disable CAR */ |
Simon Glass | 78da72c | 2015-01-01 16:18:13 -0700 | [diff] [blame] | 183 | call car_uninit |
Bin Meng | 253a24a | 2018-10-25 03:05:37 -0700 | [diff] [blame] | 184 | |
Simon Glass | 611f749 | 2015-07-31 09:31:25 -0600 | [diff] [blame] | 185 | /* Re-enter U-Boot by calling board_init_f_r() */ |
Graeme Russ | d7755b4 | 2012-01-01 15:06:39 +1100 | [diff] [blame] | 186 | call board_init_f_r |
Graeme Russ | 9c44afc | 2011-02-12 15:11:58 +1100 | [diff] [blame] | 187 | |
Simon Glass | d4f266f | 2019-05-02 10:52:27 -0600 | [diff] [blame] | 188 | #ifdef CONFIG_TPL |
| 189 | .globl jump_to_spl |
| 190 | .type jump_to_spl, @function |
| 191 | jump_to_spl: |
| 192 | /* Reset stack to the top of CAR space */ |
| 193 | movl $(CONFIG_SYS_CAR_ADDR + CONFIG_SYS_CAR_SIZE - 4), %esp |
| 194 | #ifdef CONFIG_DCACHE_RAM_MRC_VAR_SIZE |
| 195 | subl $CONFIG_DCACHE_RAM_MRC_VAR_SIZE, %esp |
| 196 | #endif |
| 197 | |
| 198 | jmp *%eax |
| 199 | #endif |
| 200 | |
Graeme Russ | c379b5d | 2011-11-08 02:33:23 +0000 | [diff] [blame] | 201 | die: |
| 202 | hlt |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 203 | jmp die |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 204 | hlt |
Graeme Russ | 8accbb9 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 205 | |
Bin Meng | 253a24a | 2018-10-25 03:05:37 -0700 | [diff] [blame] | 206 | WEAK(car_uninit) |
| 207 | ret |
| 208 | ENDPROC(car_uninit) |
| 209 | |
Graeme Russ | 8accbb9 | 2010-04-24 00:05:42 +1000 | [diff] [blame] | 210 | blank_idt_ptr: |
| 211 | .word 0 /* limit */ |
| 212 | .long 0 /* base */ |
Graeme Russ | 786c395 | 2011-11-08 02:33:19 +0000 | [diff] [blame] | 213 | |
| 214 | .p2align 2 /* force 4-byte alignment */ |
| 215 | |
Simon Glass | 611f749 | 2015-07-31 09:31:25 -0600 | [diff] [blame] | 216 | /* Add a multiboot header so U-Boot can be loaded by GRUB2 */ |
Graeme Russ | 786c395 | 2011-11-08 02:33:19 +0000 | [diff] [blame] | 217 | multiboot_header: |
| 218 | /* magic */ |
Simon Glass | 611f749 | 2015-07-31 09:31:25 -0600 | [diff] [blame] | 219 | .long 0x1badb002 |
Graeme Russ | 786c395 | 2011-11-08 02:33:19 +0000 | [diff] [blame] | 220 | /* flags */ |
| 221 | .long (1 << 16) |
| 222 | /* checksum */ |
| 223 | .long -0x1BADB002 - (1 << 16) |
| 224 | /* header addr */ |
| 225 | .long multiboot_header - _x86boot_start + CONFIG_SYS_TEXT_BASE |
| 226 | /* load addr */ |
| 227 | .long CONFIG_SYS_TEXT_BASE |
| 228 | /* load end addr */ |
| 229 | .long 0 |
| 230 | /* bss end addr */ |
| 231 | .long 0 |
| 232 | /* entry addr */ |
| 233 | .long CONFIG_SYS_TEXT_BASE |
Simon Glass | b4ded74 | 2016-03-16 07:44:40 -0600 | [diff] [blame] | 234 | |
Andy Shevchenko | 2ae7da0 | 2017-02-05 16:52:00 +0300 | [diff] [blame] | 235 | #ifdef CONFIG_X86_LOAD_FROM_32_BIT |
Simon Glass | b4ded74 | 2016-03-16 07:44:40 -0600 | [diff] [blame] | 236 | /* |
| 237 | * The following Global Descriptor Table is just enough to get us into |
| 238 | * 'Flat Protected Mode' - It will be discarded as soon as the final |
| 239 | * GDT is setup in a safe location in RAM |
| 240 | */ |
| 241 | gdt_ptr2: |
| 242 | .word 0x1f /* limit (31 bytes = 4 GDT entries - 1) */ |
| 243 | .long gdt_rom2 /* base */ |
| 244 | |
| 245 | /* Some CPUs are picky about GDT alignment... */ |
| 246 | .align 16 |
| 247 | .globl gdt_rom2 |
| 248 | gdt_rom2: |
| 249 | /* |
| 250 | * The GDT table ... |
| 251 | * |
| 252 | * Selector Type |
| 253 | * 0x00 NULL |
| 254 | * 0x08 Unused |
| 255 | * 0x10 32bit code |
| 256 | * 0x18 32bit data/stack |
| 257 | */ |
| 258 | /* The NULL Desciptor - Mandatory */ |
| 259 | .word 0x0000 /* limit_low */ |
| 260 | .word 0x0000 /* base_low */ |
| 261 | .byte 0x00 /* base_middle */ |
| 262 | .byte 0x00 /* access */ |
| 263 | .byte 0x00 /* flags + limit_high */ |
| 264 | .byte 0x00 /* base_high */ |
| 265 | |
| 266 | /* Unused Desciptor - (matches Linux) */ |
| 267 | .word 0x0000 /* limit_low */ |
| 268 | .word 0x0000 /* base_low */ |
| 269 | .byte 0x00 /* base_middle */ |
| 270 | .byte 0x00 /* access */ |
| 271 | .byte 0x00 /* flags + limit_high */ |
| 272 | .byte 0x00 /* base_high */ |
| 273 | |
| 274 | /* |
| 275 | * The Code Segment Descriptor: |
| 276 | * - Base = 0x00000000 |
| 277 | * - Size = 4GB |
| 278 | * - Access = Present, Ring 0, Exec (Code), Readable |
| 279 | * - Flags = 4kB Granularity, 32-bit |
| 280 | */ |
| 281 | .word 0xffff /* limit_low */ |
| 282 | .word 0x0000 /* base_low */ |
| 283 | .byte 0x00 /* base_middle */ |
| 284 | .byte 0x9b /* access */ |
| 285 | .byte 0xcf /* flags + limit_high */ |
| 286 | .byte 0x00 /* base_high */ |
| 287 | |
| 288 | /* |
| 289 | * The Data Segment Descriptor: |
| 290 | * - Base = 0x00000000 |
| 291 | * - Size = 4GB |
| 292 | * - Access = Present, Ring 0, Non-Exec (Data), Writable |
| 293 | * - Flags = 4kB Granularity, 32-bit |
| 294 | */ |
| 295 | .word 0xffff /* limit_low */ |
| 296 | .word 0x0000 /* base_low */ |
| 297 | .byte 0x00 /* base_middle */ |
| 298 | .byte 0x93 /* access */ |
| 299 | .byte 0xcf /* flags + limit_high */ |
| 300 | .byte 0x00 /* base_high */ |
| 301 | #endif |