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