[53634f9] | 1 | #
|
---|
[df4ed85] | 2 | # Copyright (c) 2005 Ondrej Palkovsky
|
---|
| 3 | # Copyright (c) 2006 Martin Decky
|
---|
[19077a5] | 4 | # Copyright (c) 2008 Jakub Jermar
|
---|
[1141c1a] | 5 | # All rights reserved.
|
---|
| 6 | #
|
---|
| 7 | # Redistribution and use in source and binary forms, with or without
|
---|
| 8 | # modification, are permitted provided that the following conditions
|
---|
| 9 | # are met:
|
---|
| 10 | #
|
---|
| 11 | # - Redistributions of source code must retain the above copyright
|
---|
| 12 | # notice, this list of conditions and the following disclaimer.
|
---|
| 13 | # - Redistributions in binary form must reproduce the above copyright
|
---|
| 14 | # notice, this list of conditions and the following disclaimer in the
|
---|
| 15 | # documentation and/or other materials provided with the distribution.
|
---|
| 16 | # - The name of the author may not be used to endorse or promote products
|
---|
| 17 | # derived from this software without specific prior written permission.
|
---|
| 18 | #
|
---|
| 19 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 20 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 21 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 22 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 23 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 24 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 25 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 26 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 27 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 28 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 29 | #
|
---|
| 30 |
|
---|
[46d26ee] | 31 | #include <arch/boot/boot.h>
|
---|
| 32 | #include <arch/boot/memmap.h>
|
---|
[8fc0d455] | 33 | #include <arch/mm/page.h>
|
---|
[6f878b7] | 34 | #include <arch/mm/ptl.h>
|
---|
[8fc0d455] | 35 | #include <arch/pm.h>
|
---|
[89344d85] | 36 | #include <arch/cpu.h>
|
---|
[c4b3e3e] | 37 | #include <arch/cpuid.h>
|
---|
[1141c1a] | 38 |
|
---|
[8725fb4] | 39 | #define START_STACK (BOOT_OFFSET - BOOT_STACK_SIZE)
|
---|
[c4b3e3e] | 40 |
|
---|
[874e312a] | 41 | .section K_TEXT_START, "ax"
|
---|
[46d26ee] | 42 |
|
---|
[8ccec3c1] | 43 | .code32
|
---|
| 44 | .align 4
|
---|
[46d26ee] | 45 | .global multiboot_image_start
|
---|
[8ccec3c1] | 46 | multiboot_header:
|
---|
| 47 | .long MULTIBOOT_HEADER_MAGIC
|
---|
| 48 | .long MULTIBOOT_HEADER_FLAGS
|
---|
| 49 | .long -(MULTIBOOT_HEADER_MAGIC + MULTIBOOT_HEADER_FLAGS) # checksum
|
---|
[8725fb4] | 50 | .long multiboot_header
|
---|
| 51 | .long unmapped_ktext_start
|
---|
[8ccec3c1] | 52 | .long 0
|
---|
| 53 | .long 0
|
---|
[8725fb4] | 54 | .long multiboot_image_start
|
---|
[8ccec3c1] | 55 |
|
---|
| 56 | multiboot_image_start:
|
---|
[e13daa5d] | 57 | cld
|
---|
[46d26ee] | 58 | movl $START_STACK, %esp # initialize stack pointer
|
---|
[19077a5] | 59 | lgdtl bootstrap_gdtr # initialize Global Descriptor Table register
|
---|
[1a67595] | 60 |
|
---|
| 61 | movw $gdtselector(KDATA_DES), %cx
|
---|
| 62 | movw %cx, %es
|
---|
| 63 | movw %cx, %ds # kernel data + stack
|
---|
| 64 | movw %cx, %ss
|
---|
[65640fef] | 65 | # Simics seems to remove hidden part of GS on entering user mode
|
---|
| 66 | # when _visible_ part of GS does not point to user-mode segment
|
---|
| 67 | movw $gdtselector(UDATA_DES), %cx
|
---|
| 68 | movw %cx, %fs
|
---|
| 69 | movw %cx, %gs
|
---|
[1a67595] | 70 |
|
---|
[46d26ee] | 71 | jmpl $gdtselector(KTEXT32_DES), $multiboot_meeting_point
|
---|
[1a67595] | 72 | multiboot_meeting_point:
|
---|
| 73 |
|
---|
[19077a5] | 74 | movl %eax, grub_eax # save parameters from GRUB
|
---|
[46d26ee] | 75 | movl %ebx, grub_ebx
|
---|
| 76 |
|
---|
[ac88c93] | 77 | # Protected 32-bit. We want to reuse the code-seg descriptor,
|
---|
| 78 | # the Default operand size must not be 1 when entering long mode
|
---|
| 79 |
|
---|
[4fb6bf36] | 80 | movl $(INTEL_CPUID_EXTENDED), %eax
|
---|
[ac88c93] | 81 | cpuid
|
---|
[4fb6bf36] | 82 | cmp $(INTEL_CPUID_EXTENDED), %eax
|
---|
| 83 | ja extended_cpuid_supported
|
---|
| 84 |
|
---|
| 85 | movl $extended_cpuid_msg, %esi
|
---|
| 86 | jmp error_halt
|
---|
| 87 |
|
---|
| 88 | extended_cpuid_supported:
|
---|
| 89 |
|
---|
| 90 | movl $(AMD_CPUID_EXTENDED), %eax
|
---|
[ac88c93] | 91 | cpuid
|
---|
[4fb6bf36] | 92 | bt $(AMD_EXT_LONG_MODE), %edx
|
---|
[ac88c93] | 93 | jc long_mode_supported
|
---|
[4fb6bf36] | 94 |
|
---|
[ac88c93] | 95 | movl $long_mode_msg, %esi
|
---|
| 96 | jmp error_halt
|
---|
[4fb6bf36] | 97 |
|
---|
[ac88c93] | 98 | long_mode_supported:
|
---|
| 99 |
|
---|
[4fb6bf36] | 100 | bt $(AMD_EXT_NOEXECUTE), %edx
|
---|
| 101 | jc noexecute_supported
|
---|
| 102 |
|
---|
| 103 | movl $noexecute_msg, %esi
|
---|
| 104 | jmp error_halt
|
---|
| 105 |
|
---|
| 106 | noexecute_supported:
|
---|
| 107 |
|
---|
| 108 | movl $(INTEL_CPUID_STANDARD), %eax
|
---|
| 109 | cpuid
|
---|
| 110 | bt $(INTEL_FXSAVE), %edx
|
---|
| 111 | jc fx_supported
|
---|
| 112 |
|
---|
| 113 | movl $fx_msg, %esi
|
---|
| 114 | jmp error_halt
|
---|
| 115 |
|
---|
| 116 | fx_supported:
|
---|
| 117 |
|
---|
| 118 | bt $(INTEL_SSE2), %edx
|
---|
| 119 | jc sse2_supported
|
---|
| 120 |
|
---|
| 121 | movl $sse2_msg, %esi
|
---|
| 122 | jmp error_halt
|
---|
| 123 |
|
---|
| 124 | sse2_supported:
|
---|
| 125 |
|
---|
[de07bcf] | 126 | #ifdef CONFIG_FB
|
---|
[ac88c93] | 127 | mov $vesa_init, %esi
|
---|
[8778271] | 128 | mov $VESA_INIT_SEGMENT << 4, %edi
|
---|
| 129 | mov $e_vesa_init - vesa_init, %ecx
|
---|
| 130 | rep movsb
|
---|
[de07bcf] | 131 |
|
---|
[8778271] | 132 | mov $VESA_INIT_SEGMENT << 4, %edi
|
---|
| 133 | jmpl *%edi
|
---|
| 134 |
|
---|
| 135 | vesa_meeting_point:
|
---|
| 136 |
|
---|
| 137 | mov %esi, KA2PA(vesa_ph_addr)
|
---|
| 138 | mov %di, KA2PA(vesa_height)
|
---|
| 139 | shr $16, %edi
|
---|
| 140 | mov %di, KA2PA(vesa_width)
|
---|
| 141 | mov %bx, KA2PA(vesa_scanline)
|
---|
| 142 | shr $16, %ebx
|
---|
| 143 | mov %bx, KA2PA(vesa_bpp)
|
---|
[de07bcf] | 144 | #endif
|
---|
[42edee68] | 145 |
|
---|
[4fb6bf36] | 146 | # Enable 64-bit page translation entries - CR4.PAE = 1.
|
---|
[6f878b7] | 147 | # Paging is not enabled until after long mode is enabled
|
---|
[8725fb4] | 148 |
|
---|
[6f878b7] | 149 | movl %cr4, %eax
|
---|
| 150 | btsl $5, %eax
|
---|
| 151 | movl %eax, %cr4
|
---|
| 152 |
|
---|
| 153 | # Set up paging tables
|
---|
[8725fb4] | 154 |
|
---|
[6f878b7] | 155 | leal ptl_0, %eax
|
---|
| 156 | movl %eax, %cr3
|
---|
[c4b3e3e] | 157 |
|
---|
[6f878b7] | 158 | # Enable long mode
|
---|
[8725fb4] | 159 |
|
---|
[19077a5] | 160 | movl $EFER_MSR_NUM, %ecx # EFER MSR number
|
---|
[8725fb4] | 161 | rdmsr # Read EFER
|
---|
[19077a5] | 162 | btsl $AMD_LME_FLAG, %eax # Set LME = 1
|
---|
[8725fb4] | 163 | wrmsr # Write EFER
|
---|
[c245372b] | 164 |
|
---|
[4fb6bf36] | 165 | # Enable paging to activate long mode (set CR0.PG = 1)
|
---|
[8725fb4] | 166 |
|
---|
[6f878b7] | 167 | movl %cr0, %eax
|
---|
| 168 | btsl $31, %eax
|
---|
| 169 | movl %eax, %cr0
|
---|
[c245372b] | 170 |
|
---|
[6f878b7] | 171 | # At this point we are in compatibility mode
|
---|
[8725fb4] | 172 |
|
---|
[b9e97fb] | 173 | jmpl $gdtselector(KTEXT_DES), $start64
|
---|
[c245372b] | 174 |
|
---|
[6f878b7] | 175 | .code64
|
---|
| 176 | start64:
|
---|
[c4b3e3e] | 177 | movq $(PA2KA(START_STACK)), %rsp
|
---|
[46d26ee] | 178 | movl grub_eax, %eax
|
---|
| 179 | movl grub_ebx, %ebx
|
---|
| 180 |
|
---|
[19077a5] | 181 | cmpl $MULTIBOOT_LOADER_MAGIC, %eax # compare GRUB signature
|
---|
[46d26ee] | 182 | je valid_boot
|
---|
| 183 |
|
---|
[19077a5] | 184 | xorl %ecx, %ecx # no memory size or map available
|
---|
[46d26ee] | 185 | movl %ecx, e820counter
|
---|
| 186 |
|
---|
| 187 | jmp invalid_boot
|
---|
| 188 |
|
---|
| 189 | valid_boot:
|
---|
| 190 |
|
---|
[19077a5] | 191 | movl (%ebx), %eax # ebx = physical address of struct multiboot_info
|
---|
[46d26ee] | 192 |
|
---|
[19077a5] | 193 | bt $3, %eax # mbi->flags[3] (mods_count, mods_addr valid)
|
---|
[46d26ee] | 194 | jc mods_valid
|
---|
| 195 |
|
---|
[6eb103c] | 196 | xorq %rcx, %rcx
|
---|
| 197 | movq %rcx, init
|
---|
[d764ddc] | 198 | jmp mods_end
|
---|
[46d26ee] | 199 |
|
---|
| 200 | mods_valid:
|
---|
[d764ddc] | 201 |
|
---|
| 202 | xorq %rcx, %rcx
|
---|
[19077a5] | 203 | movl 20(%ebx), %ecx # mbi->mods_count
|
---|
[6eb103c] | 204 | movq %rcx, init
|
---|
[d764ddc] | 205 |
|
---|
[46d26ee] | 206 | cmpl $0, %ecx
|
---|
[d764ddc] | 207 | je mods_end
|
---|
[46d26ee] | 208 |
|
---|
[19077a5] | 209 | movl 24(%ebx), %esi # mbi->mods_addr
|
---|
[d764ddc] | 210 | movq $init, %rdi
|
---|
[46d26ee] | 211 |
|
---|
[d764ddc] | 212 | mods_loop:
|
---|
| 213 |
|
---|
| 214 | xorq %rdx, %rdx
|
---|
[19077a5] | 215 | movl 0(%esi), %edx # mods->mod_start
|
---|
[93165be] | 216 | movq $0xffff800000000000, %r10
|
---|
| 217 | addq %r10, %rdx
|
---|
[6eb103c] | 218 | movq %rdx, 8(%rdi)
|
---|
[d764ddc] | 219 |
|
---|
| 220 | xorq %rdx, %rdx
|
---|
| 221 | movl 4(%esi), %edx
|
---|
[19077a5] | 222 | subl 0(%esi), %edx # mods->mod_end - mods->mod_start
|
---|
[6eb103c] | 223 | movq %rdx, 16(%rdi)
|
---|
[d764ddc] | 224 |
|
---|
| 225 | addl $16, %esi
|
---|
[0f94c3d] | 226 | addq $48, %rdi
|
---|
[d764ddc] | 227 |
|
---|
| 228 | loop mods_loop
|
---|
| 229 |
|
---|
| 230 | mods_end:
|
---|
[46d26ee] | 231 |
|
---|
[19077a5] | 232 | bt $6, %eax # mbi->flags[6] (mmap_length, mmap_addr valid)
|
---|
[46d26ee] | 233 | jc mmap_valid
|
---|
| 234 |
|
---|
| 235 | xorl %edx, %edx
|
---|
| 236 | jmp mmap_invalid
|
---|
| 237 |
|
---|
| 238 | mmap_valid:
|
---|
[19077a5] | 239 | movl 44(%ebx), %ecx # mbi->mmap_length
|
---|
| 240 | movl 48(%ebx), %esi # mbi->mmap_addr
|
---|
[46d26ee] | 241 | movq $e820table, %rdi
|
---|
| 242 | xorl %edx, %edx
|
---|
| 243 |
|
---|
| 244 | mmap_loop:
|
---|
| 245 | cmpl $0, %ecx
|
---|
| 246 | jle mmap_end
|
---|
| 247 |
|
---|
[19077a5] | 248 | movl 4(%esi), %eax # mmap->base_addr_low
|
---|
[46d26ee] | 249 | movl %eax, (%rdi)
|
---|
| 250 |
|
---|
[19077a5] | 251 | movl 8(%esi), %eax # mmap->base_addr_high
|
---|
[46d26ee] | 252 | movl %eax, 4(%rdi)
|
---|
| 253 |
|
---|
[19077a5] | 254 | movl 12(%esi), %eax # mmap->length_low
|
---|
[46d26ee] | 255 | movl %eax, 8(%rdi)
|
---|
| 256 |
|
---|
[19077a5] | 257 | movl 16(%esi), %eax # mmap->length_high
|
---|
[46d26ee] | 258 | movl %eax, 12(%rdi)
|
---|
| 259 |
|
---|
[19077a5] | 260 | movl 20(%esi), %eax # mmap->type
|
---|
[46d26ee] | 261 | movl %eax, 16(%rdi)
|
---|
| 262 |
|
---|
[19077a5] | 263 | movl (%esi), %eax # mmap->size
|
---|
[46d26ee] | 264 | addl $0x4, %eax
|
---|
| 265 | addl %eax, %esi
|
---|
| 266 | subl %eax, %ecx
|
---|
| 267 | addq $MEMMAP_E820_RECORD_SIZE, %rdi
|
---|
| 268 | incl %edx
|
---|
| 269 | jmp mmap_loop
|
---|
| 270 |
|
---|
| 271 | mmap_end:
|
---|
| 272 |
|
---|
| 273 | mmap_invalid:
|
---|
| 274 | movl %edx, e820counter
|
---|
| 275 |
|
---|
| 276 | invalid_boot:
|
---|
| 277 |
|
---|
[42edee68] | 278 | #ifdef CONFIG_SMP
|
---|
| 279 |
|
---|
| 280 | # copy AP bootstrap routines below 1 MB
|
---|
| 281 |
|
---|
| 282 | movq $BOOT_OFFSET, %rsi
|
---|
| 283 | movq $AP_BOOT_OFFSET, %rdi
|
---|
| 284 | movq $_hardcoded_unmapped_size, %rcx
|
---|
| 285 | rep movsb
|
---|
| 286 |
|
---|
| 287 | #endif
|
---|
| 288 |
|
---|
[6f878b7] | 289 | call main_bsp # never returns
|
---|
[8725fb4] | 290 |
|
---|
| 291 | cli
|
---|
| 292 | hlt
|
---|
[de07bcf] | 293 |
|
---|
| 294 | #ifdef CONFIG_FB
|
---|
| 295 | .code32
|
---|
| 296 | vesa_init:
|
---|
[8778271] | 297 | jmp $gdtselector(VESA_INIT_DES), $vesa_init_real - vesa_init
|
---|
| 298 |
|
---|
[de07bcf] | 299 | .code16
|
---|
[8778271] | 300 | vesa_init_real:
|
---|
| 301 |
|
---|
| 302 | mov %cr0, %eax
|
---|
| 303 | and $~1, %eax
|
---|
| 304 | mov %eax, %cr0
|
---|
| 305 |
|
---|
| 306 | jmp $VESA_INIT_SEGMENT, $vesa_init_real2 - vesa_init
|
---|
| 307 |
|
---|
| 308 | vesa_init_real2:
|
---|
| 309 |
|
---|
| 310 | mov $VESA_INIT_SEGMENT, %bx
|
---|
| 311 |
|
---|
| 312 | mov %bx, %es
|
---|
| 313 | mov %bx, %fs
|
---|
| 314 | mov %bx, %gs
|
---|
| 315 | mov %bx, %ds
|
---|
| 316 | mov %bx, %ss
|
---|
| 317 |
|
---|
| 318 | movl $0x0000fffc, %esp
|
---|
[9652bd59] | 319 | movl $0x0000fffc, %ebp
|
---|
[de07bcf] | 320 |
|
---|
| 321 | #define VESA_INFO_SIZE 1024
|
---|
| 322 |
|
---|
[4f42d52] | 323 | #define VESA_MODE_ATTRIBUTES_OFFSET 0
|
---|
[8778271] | 324 | #define VESA_MODE_LIST_PTR_OFFSET 14
|
---|
[4f42d52] | 325 | #define VESA_MODE_SCANLINE_OFFSET 16
|
---|
[de07bcf] | 326 | #define VESA_MODE_WIDTH_OFFSET 18
|
---|
| 327 | #define VESA_MODE_HEIGHT_OFFSET 20
|
---|
| 328 | #define VESA_MODE_BPP_OFFSET 25
|
---|
| 329 | #define VESA_MODE_PHADDR_OFFSET 40
|
---|
| 330 |
|
---|
[8778271] | 331 | #define VESA_END_OF_MODES 0xffff
|
---|
[de07bcf] | 332 |
|
---|
[8778271] | 333 | #define VESA_OK 0x4f
|
---|
[de07bcf] | 334 |
|
---|
[8778271] | 335 | #define VESA_GET_INFO 0x4f00
|
---|
[de07bcf] | 336 | #define VESA_GET_MODE_INFO 0x4f01
|
---|
| 337 | #define VESA_SET_MODE 0x4f02
|
---|
[4f42d52] | 338 | #define VESA_SET_PALETTE 0x4f09
|
---|
[de07bcf] | 339 |
|
---|
| 340 | #define CONFIG_VESA_BPP_a 255
|
---|
| 341 |
|
---|
[8778271] | 342 | #if CONFIG_VESA_BPP == 24
|
---|
[4f42d52] | 343 | #define CONFIG_VESA_BPP_VARIANT 32
|
---|
[de07bcf] | 344 | #endif
|
---|
[4f42d52] | 345 |
|
---|
[8778271] | 346 | mov $VESA_GET_INFO, %ax
|
---|
| 347 | mov $e_vesa_init - vesa_init, %di
|
---|
| 348 | push %di
|
---|
| 349 | int $0x10
|
---|
| 350 |
|
---|
| 351 | pop %di
|
---|
| 352 | cmp $VESA_OK, %al
|
---|
| 353 | jnz 0f
|
---|
| 354 |
|
---|
| 355 | mov 2 + VESA_MODE_LIST_PTR_OFFSET(%di), %si
|
---|
| 356 | mov %si, %gs
|
---|
| 357 | mov VESA_MODE_LIST_PTR_OFFSET(%di), %si
|
---|
| 358 |
|
---|
| 359 | add $VESA_INFO_SIZE, %di
|
---|
[4f42d52] | 360 |
|
---|
[de07bcf] | 361 | 1:# Try next mode
|
---|
[8778271] | 362 | mov %gs:(%si), %cx
|
---|
| 363 | cmp $VESA_END_OF_MODES, %cx
|
---|
| 364 | jz 0f
|
---|
| 365 |
|
---|
| 366 | inc %si
|
---|
| 367 | inc %si
|
---|
| 368 | push %cx
|
---|
| 369 | push %di
|
---|
| 370 | push %si
|
---|
| 371 | mov $VESA_GET_MODE_INFO, %ax
|
---|
| 372 | int $0x10
|
---|
| 373 |
|
---|
| 374 | pop %si
|
---|
| 375 | pop %di
|
---|
| 376 | pop %cx
|
---|
| 377 | cmp $VESA_OK, %al
|
---|
| 378 | jnz 0f
|
---|
| 379 |
|
---|
| 380 | mov $CONFIG_VESA_WIDTH, %ax
|
---|
| 381 | cmp VESA_MODE_WIDTH_OFFSET(%di), %ax
|
---|
| 382 | jnz 1b
|
---|
| 383 |
|
---|
| 384 | mov $CONFIG_VESA_HEIGHT, %ax
|
---|
| 385 | cmp VESA_MODE_HEIGHT_OFFSET(%di), %ax
|
---|
| 386 | jnz 1b
|
---|
| 387 |
|
---|
| 388 | mov $CONFIG_VESA_BPP, %al
|
---|
| 389 | cmp VESA_MODE_BPP_OFFSET(%di), %al
|
---|
[4f42d52] | 390 |
|
---|
| 391 | #ifdef CONFIG_VESA_BPP_VARIANT
|
---|
[8778271] | 392 | jz 2f
|
---|
| 393 |
|
---|
[4f42d52] | 394 | mov $CONFIG_VESA_BPP_VARIANT, %al
|
---|
[8778271] | 395 | cmp VESA_MODE_BPP_OFFSET(%di), %al
|
---|
[4f42d52] | 396 | #endif
|
---|
[8778271] | 397 | jnz 1b
|
---|
| 398 |
|
---|
[de07bcf] | 399 | 2:
|
---|
| 400 |
|
---|
[8778271] | 401 | mov %cx, %bx
|
---|
| 402 | or $0xc000, %bx
|
---|
| 403 | push %di
|
---|
| 404 | mov $VESA_SET_MODE, %ax
|
---|
| 405 | int $0x10
|
---|
[de07bcf] | 406 |
|
---|
[8778271] | 407 | pop %di
|
---|
| 408 | cmp $VESA_OK, %al
|
---|
| 409 | jnz 0f
|
---|
[4f42d52] | 410 |
|
---|
| 411 | #if CONFIG_VESA_BPP == 8
|
---|
| 412 |
|
---|
| 413 | # Set 3:2:3 VGA palette
|
---|
| 414 |
|
---|
| 415 | mov VESA_MODE_ATTRIBUTES_OFFSET(%di), %ax
|
---|
| 416 | push %di
|
---|
| 417 | mov $vga323 - vesa_init, %di
|
---|
| 418 | mov $0x100, %ecx
|
---|
| 419 |
|
---|
[19077a5] | 420 | bt $5, %ax # Test if VGA compatible registers are present
|
---|
[4f42d52] | 421 | jnc vga_compat
|
---|
| 422 |
|
---|
| 423 | # Try VESA routine to set palette
|
---|
| 424 |
|
---|
| 425 | mov $VESA_SET_PALETTE, %ax
|
---|
| 426 | xor %bl, %bl
|
---|
| 427 | xor %dx, %dx
|
---|
| 428 | int $0x10
|
---|
| 429 |
|
---|
[b1747a5] | 430 | cmp $0x00, %ah
|
---|
| 431 | je vga_not_compat
|
---|
[4f42d52] | 432 |
|
---|
| 433 | vga_compat:
|
---|
| 434 |
|
---|
| 435 | # Try VGA registers to set palette
|
---|
| 436 |
|
---|
[19077a5] | 437 | movw $0x3c6, %dx # Set palette mask
|
---|
[4f42d52] | 438 | movb $0xff, %al
|
---|
| 439 | outb %al, %dx
|
---|
| 440 |
|
---|
[19077a5] | 441 | movw $0x3c8, %dx # First index to set
|
---|
[4f42d52] | 442 | xor %al, %al
|
---|
| 443 | outb %al, %dx
|
---|
| 444 |
|
---|
[19077a5] | 445 | movw $0x3c9, %dx # Data port
|
---|
[4f42d52] | 446 | vga_loop:
|
---|
| 447 | movb %es:2(%di), %al
|
---|
| 448 | outb %al, %dx
|
---|
| 449 |
|
---|
| 450 | movb %es:1(%di), %al
|
---|
| 451 | outb %al, %dx
|
---|
| 452 |
|
---|
| 453 | movb %es:(%di), %al
|
---|
| 454 | outb %al, %dx
|
---|
| 455 |
|
---|
| 456 | addw $4, %di
|
---|
| 457 | loop vga_loop
|
---|
| 458 |
|
---|
| 459 | vga_not_compat:
|
---|
| 460 |
|
---|
| 461 | pop %di
|
---|
| 462 |
|
---|
| 463 | #endif
|
---|
[8778271] | 464 |
|
---|
| 465 | mov VESA_MODE_PHADDR_OFFSET(%di), %esi
|
---|
| 466 | mov VESA_MODE_WIDTH_OFFSET(%di), %ax
|
---|
| 467 | shl $16, %eax
|
---|
| 468 | mov VESA_MODE_HEIGHT_OFFSET(%di), %ax
|
---|
| 469 | mov VESA_MODE_BPP_OFFSET(%di), %bl
|
---|
| 470 | xor %bh, %bh
|
---|
| 471 | shl $16, %ebx
|
---|
| 472 | mov VESA_MODE_SCANLINE_OFFSET(%di), %bx
|
---|
| 473 | mov %eax, %edi
|
---|
| 474 |
|
---|
| 475 | 8:
|
---|
| 476 |
|
---|
| 477 | mov %cr0, %eax
|
---|
| 478 | or $1, %eax
|
---|
| 479 | mov %eax, %cr0
|
---|
| 480 |
|
---|
| 481 | jmp 9f
|
---|
[de07bcf] | 482 | 9:
|
---|
[8778271] | 483 |
|
---|
| 484 | ljmpl $gdtselector(KTEXT32_DES), $(vesa_init_protect - vesa_init + VESA_INIT_SEGMENT << 4)
|
---|
| 485 |
|
---|
| 486 | 0:# No prefered mode found
|
---|
| 487 | mov $0x111, %cx
|
---|
| 488 | push %di
|
---|
| 489 | push %cx
|
---|
| 490 | mov $VESA_GET_MODE_INFO, %ax
|
---|
| 491 | int $0x10
|
---|
| 492 |
|
---|
| 493 | pop %cx
|
---|
| 494 | pop %di
|
---|
| 495 | cmp $VESA_OK, %al
|
---|
| 496 | jnz 1f
|
---|
| 497 | jz 2b # Force relative jump
|
---|
| 498 |
|
---|
| 499 | 1:
|
---|
| 500 | mov $0x0003, %ax
|
---|
| 501 | int $0x10
|
---|
[19077a5] | 502 | mov $0xffffffff, %edi # EGA text mode used, because of problems with VESA
|
---|
[8778271] | 503 | xor %ax, %ax
|
---|
| 504 | jz 8b # Force relative jump
|
---|
[4f42d52] | 505 |
|
---|
| 506 | vga323:
|
---|
| 507 | #include "vga323.pal"
|
---|
[8778271] | 508 |
|
---|
[de07bcf] | 509 | .code32
|
---|
[8778271] | 510 | vesa_init_protect:
|
---|
| 511 | movw $gdtselector(KDATA_DES), %cx
|
---|
| 512 | movw %cx, %es
|
---|
[19077a5] | 513 | movw %cx, %ds # kernel data + stack
|
---|
[8778271] | 514 | movw %cx, %ss
|
---|
| 515 | # Simics seems to remove hidden part of GS on entering user mode
|
---|
| 516 | # when _visible_ part of GS does not point to user-mode segment
|
---|
| 517 | movw $gdtselector(UDATA_DES), %cx
|
---|
| 518 | movw %cx, %fs
|
---|
| 519 | movw %cx, %gs
|
---|
| 520 |
|
---|
[19077a5] | 521 | movl $START_STACK, %esp # initialize stack pointer
|
---|
[7cb567cd] | 522 |
|
---|
[8778271] | 523 | jmpl $gdtselector(KTEXT32_DES), $vesa_meeting_point
|
---|
| 524 |
|
---|
[de07bcf] | 525 | .align 4
|
---|
| 526 | e_vesa_init:
|
---|
[ac88c93] | 527 | #endif
|
---|
| 528 |
|
---|
| 529 | # Print string from %esi to EGA display (in red) and halt
|
---|
| 530 | error_halt:
|
---|
[19077a5] | 531 | movl $0xb8000, %edi # base of EGA text mode memory
|
---|
[ac88c93] | 532 | xorl %eax, %eax
|
---|
| 533 |
|
---|
[19077a5] | 534 | movw $0x3d4, %dx # read bits 8 - 15 of the cursor address
|
---|
[ac88c93] | 535 | movb $0xe, %al
|
---|
| 536 | outb %al, %dx
|
---|
| 537 |
|
---|
| 538 | movw $0x3d5, %dx
|
---|
| 539 | inb %dx, %al
|
---|
| 540 | shl $8, %ax
|
---|
| 541 |
|
---|
[19077a5] | 542 | movw $0x3d4, %dx # read bits 0 - 7 of the cursor address
|
---|
[ac88c93] | 543 | movb $0xf, %al
|
---|
| 544 | outb %al, %dx
|
---|
| 545 |
|
---|
| 546 | movw $0x3d5, %dx
|
---|
| 547 | inb %dx, %al
|
---|
| 548 |
|
---|
| 549 | cmp $1920, %ax
|
---|
| 550 | jbe cursor_ok
|
---|
[19077a5] | 551 | movw $1920, %ax # sanity check for the cursor on the last line
|
---|
[ac88c93] | 552 | cursor_ok:
|
---|
| 553 |
|
---|
| 554 | movw %ax, %bx
|
---|
| 555 | shl $1, %eax
|
---|
| 556 | addl %eax, %edi
|
---|
| 557 |
|
---|
[19077a5] | 558 | movw $0x0c00, %ax # black background, light red foreground
|
---|
[ac88c93] | 559 |
|
---|
| 560 | ploop:
|
---|
| 561 | lodsb
|
---|
| 562 | cmp $0, %al
|
---|
| 563 | je ploop_end
|
---|
| 564 | stosw
|
---|
| 565 | inc %bx
|
---|
| 566 | jmp ploop
|
---|
| 567 | ploop_end:
|
---|
| 568 |
|
---|
[19077a5] | 569 | movw $0x3d4, %dx # write bits 8 - 15 of the cursor address
|
---|
[ac88c93] | 570 | movb $0xe, %al
|
---|
| 571 | outb %al, %dx
|
---|
| 572 |
|
---|
| 573 | movw $0x3d5, %dx
|
---|
| 574 | movb %bh, %al
|
---|
| 575 | outb %al, %dx
|
---|
| 576 |
|
---|
[19077a5] | 577 | movw $0x3d4, %dx # write bits 0 - 7 of the cursor address
|
---|
[ac88c93] | 578 | movb $0xf, %al
|
---|
| 579 | outb %al, %dx
|
---|
| 580 |
|
---|
| 581 | movw $0x3d5, %dx
|
---|
| 582 | movb %bl, %al
|
---|
| 583 | outb %al, %dx
|
---|
| 584 |
|
---|
| 585 | cli
|
---|
| 586 | hlt
|
---|
[b9e97fb] | 587 |
|
---|
[19077a5] | 588 |
|
---|
| 589 | .section K_INI_PTLS, "aw", @progbits
|
---|
| 590 |
|
---|
| 591 | #
|
---|
| 592 | # Macro for generating initial page table contents.
|
---|
| 593 | # @param cnt Number of entries to generat. Must be multiple of 8.
|
---|
| 594 | # @param g Number of GB that will be added to the mapping.
|
---|
| 595 | #
|
---|
| 596 | .macro ptl2gen cnt g
|
---|
| 597 | .if \cnt
|
---|
| 598 | ptl2gen "\cnt - 8" \g
|
---|
| 599 | .quad ((\cnt - 8) * 0x200000) + (\g * 1024 * 1024 * 1024) | (PTL_WRITABLE | PTL_PRESENT | PTL_2MB_PAGE)
|
---|
| 600 | .quad ((\cnt - 7) * 0x200000) + (\g * 1024 * 1024 * 1024) | (PTL_WRITABLE | PTL_PRESENT | PTL_2MB_PAGE)
|
---|
| 601 | .quad ((\cnt - 6) * 0x200000) + (\g * 1024 * 1024 * 1024) | (PTL_WRITABLE | PTL_PRESENT | PTL_2MB_PAGE)
|
---|
| 602 | .quad ((\cnt - 5) * 0x200000) + (\g * 1024 * 1024 * 1024) | (PTL_WRITABLE | PTL_PRESENT | PTL_2MB_PAGE)
|
---|
| 603 | .quad ((\cnt - 4) * 0x200000) + (\g * 1024 * 1024 * 1024) | (PTL_WRITABLE | PTL_PRESENT | PTL_2MB_PAGE)
|
---|
| 604 | .quad ((\cnt - 3) * 0x200000) + (\g * 1024 * 1024 * 1024) | (PTL_WRITABLE | PTL_PRESENT | PTL_2MB_PAGE)
|
---|
| 605 | .quad ((\cnt - 2) * 0x200000) + (\g * 1024 * 1024 * 1024) | (PTL_WRITABLE | PTL_PRESENT | PTL_2MB_PAGE)
|
---|
| 606 | .quad ((\cnt - 1) * 0x200000) + (\g * 1024 * 1024 * 1024) | (PTL_WRITABLE | PTL_PRESENT | PTL_2MB_PAGE)
|
---|
| 607 | .endif
|
---|
| 608 | .endm
|
---|
| 609 |
|
---|
| 610 | # Page table for pages in the first gigabyte.
|
---|
[1141c1a] | 611 | .align 4096
|
---|
[19077a5] | 612 | .global ptl_2_0g
|
---|
| 613 | ptl_2_0g:
|
---|
| 614 | ptl2gen 512 0
|
---|
| 615 |
|
---|
| 616 | # Page table for pages in the second gigabyte.
|
---|
| 617 | .align 4096
|
---|
| 618 | .global ptl_2_1g
|
---|
| 619 | ptl_2_1g:
|
---|
| 620 | ptl2gen 512 1
|
---|
| 621 |
|
---|
| 622 | # Page table for pages in the third gigabyte.
|
---|
| 623 | .align 4096
|
---|
| 624 | .global ptl_2_2g
|
---|
| 625 | ptl_2_2g:
|
---|
| 626 | ptl2gen 512 2
|
---|
| 627 |
|
---|
| 628 | # Page table for pages in the fourth gigabyte.
|
---|
| 629 | .align 4096
|
---|
| 630 | .global ptl_2_3g
|
---|
| 631 | ptl_2_3g:
|
---|
| 632 | ptl2gen 512 3
|
---|
[b9e97fb] | 633 |
|
---|
[6f878b7] | 634 | .align 4096
|
---|
| 635 | .global ptl_1
|
---|
| 636 | ptl_1:
|
---|
[19077a5] | 637 | # Identity mapping for [0; 4G)
|
---|
| 638 | .quad ptl_2_0g + (PTL_WRITABLE | PTL_PRESENT)
|
---|
| 639 | .quad ptl_2_1g + (PTL_WRITABLE | PTL_PRESENT)
|
---|
| 640 | .quad ptl_2_2g + (PTL_WRITABLE | PTL_PRESENT)
|
---|
| 641 | .quad ptl_2_3g + (PTL_WRITABLE | PTL_PRESENT)
|
---|
| 642 | .fill 506, 8, 0
|
---|
| 643 | # Mapping of [0; 1G) at -2G
|
---|
| 644 | .quad ptl_2_0g + (PTL_WRITABLE | PTL_PRESENT)
|
---|
| 645 | .fill 1, 8, 0
|
---|
[6f878b7] | 646 |
|
---|
| 647 | .align 4096
|
---|
| 648 | .global ptl_0
|
---|
| 649 | ptl_0:
|
---|
| 650 | .quad ptl_1 + (PTL_WRITABLE | PTL_PRESENT)
|
---|
[93165be] | 651 | .fill 255,8,0
|
---|
| 652 | .quad ptl_1 + (PTL_WRITABLE | PTL_PRESENT)
|
---|
| 653 | .fill 254,8,0
|
---|
[6f878b7] | 654 | .quad ptl_1 + (PTL_WRITABLE | PTL_PRESENT)
|
---|
| 655 |
|
---|
[19077a5] | 656 | .section K_DATA_START, "aw", @progbits
|
---|
| 657 |
|
---|
[46d26ee] | 658 | .global bootstrap_gdtr
|
---|
| 659 | bootstrap_gdtr:
|
---|
[1a67595] | 660 | .word gdtselector(GDT_ITEMS)
|
---|
| 661 | .long KA2PA(gdt)
|
---|
[46d26ee] | 662 |
|
---|
| 663 | grub_eax:
|
---|
| 664 | .long 0
|
---|
| 665 |
|
---|
| 666 | grub_ebx:
|
---|
| 667 | .long 0
|
---|
[ac88c93] | 668 |
|
---|
[4fb6bf36] | 669 | extended_cpuid_msg:
|
---|
| 670 | .asciz "Extended CPUID not supported. System halted."
|
---|
[ac88c93] | 671 | long_mode_msg:
|
---|
[4f42d52] | 672 | .asciz "64 bit long mode not supported. System halted."
|
---|
[4fb6bf36] | 673 | noexecute_msg:
|
---|
| 674 | .asciz "No-execute pages not supported. System halted."
|
---|
| 675 | fx_msg:
|
---|
| 676 | .asciz "FXSAVE/FXRESTORE instructions not supported. System halted."
|
---|
| 677 | sse2_msg:
|
---|
| 678 | .asciz "SSE2 instructions not supported. System halted."
|
---|