source: trunk/hal/x86_64/core/hal_init.c @ 96

Last change on this file since 96 was 94, checked in by max@…, 7 years ago

remove lw_unc, add a few ops, and update a few things

File size: 8.6 KB
Line 
1/*
2 * hal_init.c - C initialization procedure for x86.
3 *
4 * Copyright (c) 2017 Maxime Villard
5 *
6 * This file is part of ALMOS-MKH.
7 *
8 * ALMOS-MKH is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2.0 of the License.
11 *
12 * ALMOS-MKH is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with ALMOS-MKH.; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <hal_types.h>
23#include <hal_boot.h>
24#include <hal_multiboot.h>
25#include <hal_segmentation.h>
26#include <hal_acpi.h>
27#include <hal_apic.h>
28#include <hal_internal.h>
29#include <hal_remote.h>
30
31#include <memcpy.h>
32#include <thread.h>
33#include <string.h>
34#include <process.h>
35#include <printk.h>
36#include <vmm.h>
37#include <core.h>
38#include <cluster.h>
39#include <chdev.h>
40
41#include <boot_info.h>
42
43void kernel_init(boot_info_t *info);
44
45static void gdt_create();
46static void idt_create();
47void cpu_attach();
48
49size_t mytest __in_kdata = 0;
50
51struct multiboot_info mb_info __in_kdata;
52char mb_loader_name[PAGE_SIZE] __in_kdata;
53uint8_t mb_mmap[PAGE_SIZE] __in_kdata;
54
55/* -------------------------------------------------------------------------- */
56
57static void
58dump_memmap()
59{
60        size_t mmap_length = mb_info.mi_mmap_length;
61        uint8_t *mmap_addr = (uint8_t *)&mb_mmap;
62        size_t i;
63
64        if (!(mb_info.mi_flags & MULTIBOOT_INFO_HAS_MMAP))
65                x86_panic("No mmap");
66
67        i = 0;
68        while (i < mmap_length) {
69                struct multiboot_mmap *mm;
70
71                mm = (struct multiboot_mmap *)(mmap_addr + i);
72
73                x86_printf("-> [%Z, %Z] %s\n", mm->mm_base_addr,
74                    mm->mm_base_addr + mm->mm_length,
75                    (mm->mm_type == 1) ? "ram" : "rsv" );
76
77                i += mm->mm_size + 4;
78        }
79}
80
81static void init_bootinfo_core(boot_core_t *core)
82{
83        memset(core, 0, sizeof(boot_core_t));
84
85        core->gid = hal_lapic_gid();
86        core->lid = 0;
87        core->cxy = 0;
88}
89
90static void init_bootinfo_txt(boot_device_t *dev)
91{
92        memset(dev, 0, sizeof(boot_device_t));
93
94        dev->base = 0xB8000;
95        dev->type = (DEV_FUNC_TXT << 16) | IMPL_TXT_X86;
96        dev->channels = 1;
97        dev->param0 = 0;
98        dev->param1 = 0;
99        dev->param2 = 0;
100        dev->param3 = 0;
101
102#ifdef NOTYET
103    uint32_t    irqs;    /*! number of input IRQs                    */
104    boot_irq_t  irq[32]; /*! array of input IRQS (PIC and ICU only)  */
105#endif
106}
107
108static void init_bootinfo(boot_info_t *info)
109{
110        extern uint64_t __kernel_data_start;
111        extern uint64_t __kernel_end;
112
113        memset(info, 0, sizeof(boot_info_t));
114
115        info->signature = 0;
116
117        info->paddr_width = 0;
118        info->x_width = 1;
119        info->y_width = 1;
120        info->x_size = 1;
121        info->y_size = 1;
122        info->io_cxy = 0;
123
124        info->ext_dev_nr = 1;
125        init_bootinfo_txt(&info->ext_dev[0]);
126
127        info->cxy = 0;
128        info->cores_nr = 1;
129        init_bootinfo_core(&info->core[0]);
130
131        info->rsvd_nr = 0;
132        /* rsvd XXX */
133
134        /* dev_ XXX */
135
136        info->pages_offset = 0;
137        info->pages_nr = 0;
138
139        info->kernel_code_start = (intptr_t)(KERNTEXTOFF - KERNBASE);
140        info->kernel_code_end = (intptr_t)(&__kernel_data_start - KERNBASE) - 1;
141        info->kernel_data_start = (intptr_t)(&__kernel_data_start - KERNBASE);
142        info->kernel_code_end = (intptr_t)(&__kernel_end - KERNBASE) - 1;
143}
144
145void init_x86_64(paddr_t firstpa)
146{
147        boot_info_t btinfo;
148
149        x86_printf("[+] init_x86_64 called\n");
150
151        /* Create the global structures */
152        gdt_create();
153        idt_create();
154
155        /* Attach cpu0 */
156        cpu_attach();
157        x86_printf("[+] cpu_attach called\n");
158
159        x86_printf("[+] bootloader: '%s'\n", mb_loader_name);
160
161        dump_memmap();
162        x86_printf("[+] dump finished\n");
163
164        hal_gpt_init(firstpa);
165        x86_printf("[+] hal_gpt_init called\n");
166
167        hal_acpi_init();
168        x86_printf("[+] hal_acpi_init called\n");
169
170        hal_gpt_bootstrap_reset();
171        x86_printf("[+] hal_gpt_bootstrap_reset called\n");
172
173        hal_apic_init();
174        x86_printf("[+] hal_apic_init called\n");
175
176        hal_tls_init_cpu0();
177        x86_printf("[+] hal_tls_init_cpu0 called\n");
178
179        x86_printf("-> mytest = %z\n", mytest);
180        void *hoho = &init_x86_64;
181        xptr_t myptr = XPTR(0, &mytest);
182
183        hal_remote_atomic_add(myptr, 3);
184        x86_printf("-> mytest = %z\n", mytest);
185
186        hal_remote_spt(myptr, hoho);
187        x86_printf("-> mytest = %Z\n", hal_remote_lpt(myptr));
188
189
190        init_bootinfo(&btinfo);
191        kernel_init(&btinfo);
192        x86_printf("[+] kernel_init called\n");
193
194//      void x86_stop();
195//      x86_stop();
196
197        sti();
198        while (1);
199
200        int m = 0;
201        int v = 1 / m;
202
203        char *buf = NULL;
204        *buf = (char)0x01;
205
206        x86_printf("ALIVE!\n");
207
208        while (1);
209}
210
211/* -------------------------------------------------------------------------- */
212
213uint8_t gdtstore[PAGE_SIZE] __in_kdata;
214uint8_t idtstore[PAGE_SIZE] __in_kdata;
215struct tss cpu0_tss __in_kdata;
216uint8_t cpu0_intr_stack[STKSIZE] __in_kdata;
217uint8_t cpu0_dbfl_stack[STKSIZE] __in_kdata;
218uint8_t cpu0_nmfl_stack[STKSIZE] __in_kdata;
219
220static void
221setregion(struct region_descriptor *rd, void *base, uint16_t limit)
222{
223        rd->rd_limit = limit;
224        rd->rd_base = (uint64_t)base;
225}
226
227/* -------------------------------------------------------------------------- */
228
229static void
230gdt_set_memseg(struct gdt_memseg *sd, void *base, size_t limit,
231        int type, int dpl, int gran, int is64)
232{
233        sd->sd_lolimit = (unsigned)limit;
234        sd->sd_lobase = (unsigned long)base;
235        sd->sd_type = type;
236        sd->sd_dpl = dpl;
237        sd->sd_p = 1;
238        sd->sd_hilimit = (unsigned)limit >> 16;
239        sd->sd_avl = 0;
240        sd->sd_long = is64;
241        sd->sd_def32 = 0;
242        sd->sd_gran = gran;
243        sd->sd_hibase = (unsigned long)base >> 24;
244}
245
246static void
247gdt_set_sysseg(struct gdt_sysseg *sd, void *base, size_t limit,
248        int type, int dpl, int gran)
249{
250        memset(sd, 0, sizeof *sd);
251        sd->sd_lolimit = (unsigned)limit;
252        sd->sd_lobase = (uint64_t)base;
253        sd->sd_type = type;
254        sd->sd_dpl = dpl;
255        sd->sd_p = 1;
256        sd->sd_hilimit = (unsigned)limit >> 16;
257        sd->sd_gran = gran;
258        sd->sd_hibase = (uint64_t)base >> 24;
259}
260
261static void gdt_create()
262{
263        memset(&gdtstore, 0, PAGE_SIZE);
264
265        /* Flat segments */
266        gdt_set_memseg(GDT_ADDR_MEM(gdtstore, GDT_KCODE_SEL), 0,
267            0xfffff, SDT_MEMERA, SEL_KPL, 1, 1);
268        gdt_set_memseg(GDT_ADDR_MEM(gdtstore, GDT_KDATA_SEL), 0,
269            0xfffff, SDT_MEMRWA, SEL_KPL, 1, 1);
270        gdt_set_memseg(GDT_ADDR_MEM(gdtstore, GDT_UCODE_SEL), 0,
271            0xfffff, SDT_MEMERA, SEL_UPL, 1, 1);
272        gdt_set_memseg(GDT_ADDR_MEM(gdtstore, GDT_UDATA_SEL), 0,
273            0xfffff, SDT_MEMRWA, SEL_UPL, 1, 1);
274}
275
276void cpu_load_gdt()
277{
278        struct region_descriptor region;
279        setregion(&region, &gdtstore, PAGE_SIZE - 1);
280        lgdt(&region);
281}
282
283/* -------------------------------------------------------------------------- */
284
285static void
286idt_set_seg(struct idt_seg *seg, void *func, int ist, int type, int dpl, int sel)
287{
288        seg->gd_looffset = (uint64_t)func & 0xffff;
289        seg->gd_selector = sel;
290        seg->gd_ist = ist;
291        seg->gd_type = type;
292        seg->gd_dpl = dpl;
293        seg->gd_p = 1;
294        seg->gd_hioffset = (uint64_t)func >> 16;
295        seg->gd_zero = 0;
296        seg->gd_xx1 = 0;
297        seg->gd_xx2 = 0;
298        seg->gd_xx3 = 0;
299}
300
301static void idt_create()
302{
303        extern uint64_t x86_traps[], x86_intrs[], x86_rsvd;
304        struct idt_seg *idt;
305        size_t i;
306
307        idt = (struct idt_seg *)&idtstore;
308
309        /* First, put a dead entry */
310        for (i = 0; i < NIDT; i++) {
311                idt_set_seg(&idt[i], (void *)&x86_rsvd, 0,
312                    SDT_SYS386IGT, SEL_KPL, GDT_FIXED_SEL(GDT_KCODE_SEL, SEL_KPL));
313        }
314
315        /* General exceptions */
316        for (i = CPUVEC_MIN; i < CPUVEC_MAX; i++) {
317                idt_set_seg(&idt[i], (void *)x86_traps[i - CPUVEC_MIN], 0,
318                    SDT_SYS386IGT, SEL_KPL, GDT_FIXED_SEL(GDT_KCODE_SEL, SEL_KPL));
319        }
320
321        /* LAPIC interrupts */
322        for (i = LAPICVEC_MIN; i < LAPICVEC_MAX; i++) {
323                idt_set_seg(&idt[i], (void *)x86_intrs[i - LAPICVEC_MIN], 0,
324                    SDT_SYS386IGT, SEL_KPL, GDT_FIXED_SEL(GDT_KCODE_SEL, SEL_KPL));
325        }
326}
327
328void cpu_load_idt()
329{
330        struct region_descriptor region;
331        setregion(&region, &idtstore, PAGE_SIZE - 1);
332        lidt(&region);
333}
334
335/* -------------------------------------------------------------------------- */
336
337/*
338 * The gdt bitmap must be per-cluster.
339 */
340int tss_alloc(struct tss *tss)
341{
342        int slot;
343
344        /* Once we have proper SMP support, we will change that */
345        slot = GDT_CPU0TSS_SEL;
346
347        gdt_set_sysseg(GDT_ADDR_SYS(gdtstore, slot), tss,
348            sizeof(*tss) - 1, SDT_SYS386TSS, SEL_KPL, 0);
349
350        return GDT_DYNAM_SEL(slot, SEL_KPL);
351}
352
353void cpu_create_tss()
354{
355        struct tss *tss = &cpu0_tss;
356        int sel;
357
358        /* Create the tss */
359        memset(tss, 0, sizeof(*tss));
360        tss->tss_iobase = IOMAP_INVALOFF << 16;
361        tss->tss_ist[0] = (uint64_t)cpu0_intr_stack + STKSIZE;
362        tss->tss_ist[1] = (uint64_t)cpu0_dbfl_stack + STKSIZE;
363        tss->tss_ist[2] = (uint64_t)cpu0_nmfl_stack + STKSIZE;
364        sel = tss_alloc(tss);
365
366        /* Load it */
367        ltr(sel);
368}
369
370/* -------------------------------------------------------------------------- */
371
372void cpu_attach()
373{
374        cpu_load_gdt();
375        cpu_load_idt();
376        cpu_create_tss();
377}
378
Note: See TracBrowser for help on using the repository browser.