This repository was archived by the owner on Jul 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathstartup.asm
146 lines (121 loc) · 3.47 KB
/
startup.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
; Copyright 2014 runtime.js project authors
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
format ELF64
THIS_LOADER_LOCATION = 0x200000
section ".loader"
use32
org THIS_LOADER_LOCATION
;=====================================================
; Constants
;=====================================================
include 'startup_conf.inc'
;=====================================================
; Multiboot structure
;=====================================================
_header:
dd MULTIBOOT_HEADER_MAGIC ; Magic
dd MULTIBOOT_HEADER_FLAGS ; Flags
dd -MULTIBOOT_HEADER_MAGIC-MULTIBOOT_HEADER_FLAGS ; Checksum
dd _header ; Header address
dd _header ; Data and Code start address
;dd _datacode_end ; Data and Code end address
;dd _end ; BSS end address
dd MULTIBOOT_LOAD_DATACODE_LEN
dd MULTIBOOT_LOAD_DATACODEBSS_LEN
dd _entry ; Entry address
dd 0 ;mode_type
dd 0 ;width
dd 0 ;height
dd 0 ;depth
;=====================================================
; Code
;=====================================================
_entry:
; Check loader (multiboot?)
cmp eax, MULTIBOOT_LOADED_MAGIC
jnz not_multiboot_loaded
; Save multiboot location
mov dword [mbt], ebx
; Set 32bit stack
mov esp, SYSTEM_STACK_32BIT
; Clear out the 4096 bytes of memory for 64-bit IDT
mov ecx, 1024
xor eax, eax
mov edi, SYSTEM_IDT_TABLE_ADDR_64_32len
rep stosd
; Clear memory for the Page Descriptor Entries
mov edi, 0x00020000
mov ecx, 65536
rep stosd
; Copy the GDT to its final location in memory
mov esi, gdt64
mov edi, SYSTEM_GDT_TABLE_ADDR_64_32len ; GDT address
mov ecx, (gdt64_end - gdt64)
rep movsb ; Move it
; Create a PML4 entry
cld
mov edi, PAGING_PML4_ADDR
mov eax, PAGING_PDP_ADDR+PAGING_PDP_OPTIONS
stosd
xor eax, eax
stosd
; Single PDP entry can map 1GiB with 2MB pages
mov ecx, PAGING_PDP_COUNT
mov edi, PAGING_PDP_ADDR
mov eax, PAGING_PD_ADDR+PAGING_PD_OPTIONS
mkpdpe:
stosd
push eax
xor eax, eax
stosd
pop eax
add eax, 0x00001000
dec ecx
cmp ecx, 0
jne mkpdpe
; Create the PD entries
mov edi, PAGING_PD_ADDR
mov eax, PAGING_PHYS_PAGE_OPTIONS
xor ecx, ecx
mkpd:
stosd
push eax
xor eax, eax
stosd
pop eax
add eax, 0x00200000
inc ecx
cmp ecx, PAGING_PD_COUNT
jne mkpd
; Set current cpu #0 (BSP)
xor ax, ax
mov gs, ax
; Init system
include 'startup_init.inc'
use32
not_multiboot_loaded:
mov eax, 'N M '
mov [0x000B8000], eax
jmp $
;=====================================================
; BSS Section. No more data or code below
;=====================================================
_datacode_end:
;=====================================================
; End of segments (nothing except label below)
;=====================================================
_end:
;=====================================================
; EOF
;=====================================================