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

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

add IOC (ATA)

File size: 12.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_register.h>
30
31#include <hal_remote.h>
32#include <hal_irqmask.h>
33
34#include <memcpy.h>
35#include <thread.h>
36#include <string.h>
37#include <process.h>
38#include <printk.h>
39#include <vmm.h>
40#include <core.h>
41#include <cluster.h>
42#include <chdev.h>
43
44#include <boot_info.h>
45
46void kernel_init(boot_info_t *info);
47
48static void gdt_create();
49static void idt_create();
50void cpu_tls_init(size_t lid);
51void cpu_identify();
52void cpu_attach();
53
54size_t mytest __in_kdata = 0;
55
56struct multiboot_info mb_info __in_kdata;
57char mb_loader_name[PAGE_SIZE] __in_kdata;
58uint8_t mb_mmap[PAGE_SIZE] __in_kdata;
59
60/* -------------------------------------------------------------------------- */
61
62static void
63dump_memmap()
64{
65        size_t mmap_length = mb_info.mi_mmap_length;
66        uint8_t *mmap_addr = (uint8_t *)&mb_mmap;
67        size_t i;
68
69        if (!(mb_info.mi_flags & MULTIBOOT_INFO_HAS_MMAP))
70                x86_panic("No mmap");
71
72        i = 0;
73        while (i < mmap_length) {
74                struct multiboot_mmap *mm;
75
76                mm = (struct multiboot_mmap *)(mmap_addr + i);
77
78                x86_printf("-> [%Z, %Z] %s\n", mm->mm_base_addr,
79                    mm->mm_base_addr + mm->mm_length,
80                    (mm->mm_type == 1) ? "ram" : "rsv" );
81
82                i += mm->mm_size + 4;
83        }
84}
85
86/* -------------------------------------------------------------------------- */
87
88static size_t init_bootinfo_pages_nr()
89{
90        size_t mmap_length = mb_info.mi_mmap_length;
91        uint8_t *mmap_addr = (uint8_t *)&mb_mmap;
92        paddr_t maxpa, pa;
93        size_t i;
94
95        i = 0;
96        maxpa = 0;
97        while (i < mmap_length) {
98                struct multiboot_mmap *mm;
99
100                mm = (struct multiboot_mmap *)(mmap_addr + i);
101
102                if (mm->mm_type == 1) {
103                        pa = mm->mm_base_addr + mm->mm_length;
104                        if (pa > maxpa)
105                                maxpa = pa;
106                }
107
108                i += mm->mm_size + 4;
109        }
110
111        return (maxpa / PAGE_SIZE);
112}
113
114static size_t init_bootinfo_rsvd(boot_rsvd_t *rsvd)
115{
116        size_t mmap_length = mb_info.mi_mmap_length;
117        uint8_t *mmap_addr = (uint8_t *)&mb_mmap;
118        size_t i, rsvd_nr;
119
120        memset(rsvd, 0, sizeof(boot_rsvd_t) * CONFIG_PPM_MAX_RSVD);
121
122        i = 0, rsvd_nr = 0;
123        while (i < mmap_length) {
124                struct multiboot_mmap *mm;
125
126                mm = (struct multiboot_mmap *)(mmap_addr + i);
127
128                if (mm->mm_type != 1) {
129                        rsvd[rsvd_nr].first_page =
130                            rounddown(mm->mm_base_addr, PAGE_SIZE) / PAGE_SIZE;
131                        rsvd[rsvd_nr].npages =
132                            roundup(mm->mm_length, PAGE_SIZE) / PAGE_SIZE;
133                        rsvd_nr++;
134                        if (rsvd_nr == CONFIG_PPM_MAX_RSVD)
135                                x86_panic("too many memory holes");
136                }
137
138                i += mm->mm_size + 4;
139        }
140
141        return rsvd_nr;
142}
143
144static void init_bootinfo_core(boot_core_t *core)
145{
146        memset(core, 0, sizeof(boot_core_t));
147
148        core->gid = hal_lapic_gid();
149        core->lid = 0;
150        core->cxy = 0;
151}
152
153static void init_bootinfo_ioc(boot_device_t *dev)
154{
155        memset(dev, 0, sizeof(boot_device_t));
156
157        dev->base = 0;
158        dev->type = (DEV_FUNC_IOC << 16) | IMPL_IOC_BDV;
159        dev->channels = 1;
160}
161
162static void init_bootinfo_pic(boot_device_t *dev)
163{
164        memset(dev, 0, sizeof(boot_device_t));
165
166        dev->base = 0;
167        dev->type = (DEV_FUNC_PIC << 16) | IMPL_PIC_SCL;
168        dev->channels = 1;
169        dev->param0 = 0;
170        dev->param1 = 0;
171        dev->param2 = 0;
172        dev->param3 = 0;
173
174        dev->irqs = 5;
175
176        /* COM1 */
177        dev->irq[4].dev_type = (DEV_FUNC_TXT << 16) | IMPL_TXT_TTY;
178        dev->irq[4].channel = 0;
179        dev->irq[4].is_rx = 0;
180        dev->irq[4].valid = 1;
181}
182
183static void init_bootinfo_txt(boot_device_t *dev)
184{
185        memset(dev, 0, sizeof(boot_device_t));
186
187        dev->base = 0;
188        dev->type = (DEV_FUNC_TXT << 16) | IMPL_TXT_TTY;
189        dev->channels = 1;
190        dev->param0 = 0;
191        dev->param1 = 0;
192        dev->param2 = 0;
193        dev->param3 = 0;
194}
195
196static void init_bootinfo(boot_info_t *info)
197{
198        size_t offset;
199
200        extern uint64_t __kernel_data_start;
201        extern uint64_t __kernel_end;
202
203        memset(info, 0, sizeof(boot_info_t));
204
205        info->signature = 0;
206
207        info->paddr_width = 0;
208        info->x_width = 1;
209        info->y_width = 1;
210        info->x_size = 1;
211        info->y_size = 1;
212        info->io_cxy = 0;
213
214        info->ext_dev_nr = 3;
215        init_bootinfo_txt(&info->ext_dev[0]);
216        init_bootinfo_pic(&info->ext_dev[1]);
217        init_bootinfo_ioc(&info->ext_dev[2]);
218
219        info->cxy = 0;
220        info->cores_nr = 1;
221        init_bootinfo_core(&info->core[0]);
222
223        info->rsvd_nr = init_bootinfo_rsvd((boot_rsvd_t *)&info->rsvd);
224
225        /* TODO: dev_icu */
226        /* TODO: dev_mmc */
227        /* TODO: dev_dma */
228
229        offset = hal_gpt_bootstrap_uniformize();
230        info->pages_offset = offset / PAGE_SIZE;
231        info->pages_nr = init_bootinfo_pages_nr();
232
233        info->kernel_code_start = (intptr_t)(KERNTEXTOFF - KERNBASE);
234        info->kernel_code_end = (intptr_t)(&__kernel_data_start - KERNBASE) - 1;
235        info->kernel_data_start = (intptr_t)(&__kernel_data_start - KERNBASE);
236        info->kernel_code_end = (intptr_t)(&__kernel_end - KERNBASE) - 1;
237}
238
239/* -------------------------------------------------------------------------- */
240
241void init_x86_64(paddr_t firstpa)
242{
243        boot_info_t btinfo;
244
245        /* Initialize the serial port */
246        hal_com_init_early();
247
248        x86_printf("[+] init_x86_64 called\n");
249
250        /* Create the global structures */
251        gdt_create();
252        idt_create();
253
254        /* Identify the features of the cpu */
255        cpu_identify();
256
257        /* Attach cpu0 */
258        cpu_attach(0);
259        x86_printf("[+] cpu_attach called\n");
260
261        x86_printf("[+] bootloader: '%s'\n", mb_loader_name);
262
263        dump_memmap();
264        x86_printf("[+] dump finished\n");
265
266        hal_gpt_init(firstpa);
267        x86_printf("[+] hal_gpt_init called\n");
268
269        hal_acpi_init();
270        x86_printf("[+] hal_acpi_init called\n");
271
272        hal_gpt_bootstrap_reset();
273        x86_printf("[+] hal_gpt_bootstrap_reset called\n");
274
275        hal_apic_init();
276        x86_printf("[+] hal_apic_init called\n");
277
278        cpu_tls_init(0);
279        x86_printf("[+] cput_tls_init called\n");
280
281        x86_printf("-> mytest = %z\n", mytest);
282        void *hoho = &init_x86_64;
283        xptr_t myptr = XPTR(0, &mytest);
284
285        hal_remote_spt(myptr, hoho);
286        x86_printf("-> mytest = %Z\n", hal_remote_lpt(myptr));
287
288        init_bootinfo(&btinfo);
289
290        reg_t dummy;
291        hal_enable_irq(&dummy);
292
293        kernel_init(&btinfo);
294
295        x86_printf("[+] kernel_init called\n");
296/*
297        void *ptr;
298
299        khm_t *khm = &LOCAL_CLUSTER->khm;
300        ptr = khm_alloc(khm, 10);
301        memset(ptr, 0, 10);
302        khm_free(ptr);
303
304
305        kcm_t *kcm = &LOCAL_CLUSTER->kcm;
306        ptr = kcm_alloc(kcm);
307        memset(ptr, 0, 1);
308        kcm_free(ptr);
309
310        ptr = ppm_alloc_pages(1);
311        ppm_free_pages(ptr);
312*/
313        while (1);
314
315//      void x86_stop();
316//      x86_stop();
317}
318
319/* -------------------------------------------------------------------------- */
320
321/* x86-specific per-cluster structures */
322uint8_t gdtstore[PAGE_SIZE] __in_kdata;
323uint8_t idtstore[PAGE_SIZE] __in_kdata;
324
325/* x86-specific per-cpu structures */
326typedef struct {
327        struct tss tss;
328        struct tls tls;
329        uint8_t intr_stack[STKSIZE];
330        uint8_t dbfl_stack[STKSIZE];
331        uint8_t nmfl_stack[STKSIZE];
332} percpu_archdata_t;
333percpu_archdata_t cpudata[CONFIG_MAX_LOCAL_CORES] __in_kdata;
334
335static void
336setregion(struct region_descriptor *rd, void *base, uint16_t limit)
337{
338        rd->rd_limit = limit;
339        rd->rd_base = (uint64_t)base;
340}
341
342/* -------------------------------------------------------------------------- */
343
344static void
345gdt_set_memseg(struct gdt_memseg *sd, void *base, size_t limit,
346        int type, int dpl, int gran, int is64)
347{
348        sd->sd_lolimit = (unsigned)limit;
349        sd->sd_lobase = (unsigned long)base;
350        sd->sd_type = type;
351        sd->sd_dpl = dpl;
352        sd->sd_p = 1;
353        sd->sd_hilimit = (unsigned)limit >> 16;
354        sd->sd_avl = 0;
355        sd->sd_long = is64;
356        sd->sd_def32 = 0;
357        sd->sd_gran = gran;
358        sd->sd_hibase = (unsigned long)base >> 24;
359}
360
361static void
362gdt_set_sysseg(struct gdt_sysseg *sd, void *base, size_t limit,
363        int type, int dpl, int gran)
364{
365        memset(sd, 0, sizeof *sd);
366        sd->sd_lolimit = (unsigned)limit;
367        sd->sd_lobase = (uint64_t)base;
368        sd->sd_type = type;
369        sd->sd_dpl = dpl;
370        sd->sd_p = 1;
371        sd->sd_hilimit = (unsigned)limit >> 16;
372        sd->sd_gran = gran;
373        sd->sd_hibase = (uint64_t)base >> 24;
374}
375
376static void gdt_create()
377{
378        memset(&gdtstore, 0, PAGE_SIZE);
379
380        /* Flat segments */
381        gdt_set_memseg(GDT_ADDR_MEM(gdtstore, GDT_KCODE_SEL), 0,
382            0xfffff, SDT_MEMERA, SEL_KPL, 1, 1);
383        gdt_set_memseg(GDT_ADDR_MEM(gdtstore, GDT_KDATA_SEL), 0,
384            0xfffff, SDT_MEMRWA, SEL_KPL, 1, 1);
385        gdt_set_memseg(GDT_ADDR_MEM(gdtstore, GDT_UCODE_SEL), 0,
386            0xfffff, SDT_MEMERA, SEL_UPL, 1, 1);
387        gdt_set_memseg(GDT_ADDR_MEM(gdtstore, GDT_UDATA_SEL), 0,
388            0xfffff, SDT_MEMRWA, SEL_UPL, 1, 1);
389}
390
391void cpu_load_gdt()
392{
393        struct region_descriptor region;
394        setregion(&region, &gdtstore, PAGE_SIZE - 1);
395        lgdt(&region);
396}
397
398/* -------------------------------------------------------------------------- */
399
400static void
401idt_set_seg(struct idt_seg *seg, void *func, int ist, int type, int dpl, int sel)
402{
403        seg->gd_looffset = (uint64_t)func & 0xffff;
404        seg->gd_selector = sel;
405        seg->gd_ist = ist;
406        seg->gd_type = type;
407        seg->gd_dpl = dpl;
408        seg->gd_p = 1;
409        seg->gd_hioffset = (uint64_t)func >> 16;
410        seg->gd_zero = 0;
411        seg->gd_xx1 = 0;
412        seg->gd_xx2 = 0;
413        seg->gd_xx3 = 0;
414}
415
416static void idt_create()
417{
418        extern uint64_t x86_traps[], x86_intrs[], x86_rsvd;
419        struct idt_seg *idt;
420        size_t i;
421
422        idt = (struct idt_seg *)&idtstore;
423
424        /* First, put a dead entry */
425        for (i = 0; i < NIDT; i++) {
426                idt_set_seg(&idt[i], (void *)&x86_rsvd, 0,
427                    SDT_SYS386IGT, SEL_KPL, GDT_FIXED_SEL(GDT_KCODE_SEL, SEL_KPL));
428        }
429
430        /* General exceptions */
431        for (i = CPUVEC_MIN; i < CPUVEC_MAX; i++) {
432                idt_set_seg(&idt[i], (void *)x86_traps[i - CPUVEC_MIN], 0,
433                    SDT_SYS386IGT, SEL_KPL, GDT_FIXED_SEL(GDT_KCODE_SEL, SEL_KPL));
434        }
435
436        /* Dynamically configured interrupts */
437        for (i = DYNVEC_MIN; i < DYNVEC_MAX; i++) {
438                idt_set_seg(&idt[i], (void *)x86_intrs[i - DYNVEC_MIN], 0,
439                    SDT_SYS386IGT, SEL_KPL, GDT_FIXED_SEL(GDT_KCODE_SEL, SEL_KPL));
440        }
441}
442
443void cpu_load_idt()
444{
445        struct region_descriptor region;
446        setregion(&region, &idtstore, PAGE_SIZE - 1);
447        lidt(&region);
448}
449
450/* -------------------------------------------------------------------------- */
451
452int tss_alloc(struct tss *tss, size_t lid)
453{
454        int slot;
455
456        slot = GDT_CPUTSS_SEL + lid;
457
458        gdt_set_sysseg(GDT_ADDR_SYS(gdtstore, slot), tss,
459            sizeof(*tss) - 1, SDT_SYS386TSS, SEL_KPL, 0);
460
461        return GDT_DYNAM_SEL(slot, SEL_KPL);
462}
463
464void cpu_create_tss(size_t lid)
465{
466        percpu_archdata_t *data = &cpudata[lid];
467        struct tss *tss = &data->tss;
468        int sel;
469
470        /* Create the tss */
471        memset(tss, 0, sizeof(*tss));
472
473        /* tss->tss_rsp0 */
474        tss->tss_ist[0] = (uint64_t)data->intr_stack[lid] + STKSIZE;
475        tss->tss_ist[1] = (uint64_t)data->dbfl_stack[lid] + STKSIZE;
476        tss->tss_ist[2] = (uint64_t)data->nmfl_stack[lid] + STKSIZE;
477        tss->tss_iobase = IOMAP_INVALOFF << 16;
478        sel = tss_alloc(tss, lid);
479
480        /* Load it */
481        ltr(sel);
482}
483
484/* -------------------------------------------------------------------------- */
485
486void cpu_tls_init(size_t lid)
487{
488        percpu_archdata_t *data = &cpudata[lid];
489        tls_t *cputls = &data->tls;
490
491        memset(cputls, 0, sizeof(tls_t));
492
493        cputls->tls_self = cputls;
494        cputls->tls_gid = hal_lapic_gid();
495        cputls->tls_lid = lid;
496
497        wrmsr(MSR_FSBASE, 0);
498        wrmsr(MSR_GSBASE, (uint64_t)cputls);
499        wrmsr(MSR_KERNELGSBASE, 0);
500}
501
502/* -------------------------------------------------------------------------- */
503
504uint64_t cpu_features[4] __in_kdata;
505
506void cpu_identify()
507{
508        /*
509         * desc[0] = eax
510         * desc[1] = ebx
511         * desc[2] = ecx
512         * desc[3] = edx
513         */
514        uint32_t desc[4];
515        char vendor[13];
516        size_t lvl;
517
518        /*
519         * Get information from the standard cpuid leafs
520         */
521        cpuid(0, 0, (uint32_t *)&desc);
522
523        lvl = (uint64_t)desc[0];
524        x86_printf("-> cpuid standard level: %z\n", lvl);
525
526        memcpy(vendor + 0, &desc[1], sizeof(uint32_t));
527        memcpy(vendor + 8, &desc[2], sizeof(uint32_t));
528        memcpy(vendor + 4, &desc[3], sizeof(uint32_t));
529        vendor[12] = '\0';
530        x86_printf("-> CPU vendor: '%s'\n", vendor);
531
532        if (lvl >= 1) {
533                cpuid(1, 0, (uint32_t *)&desc);
534                cpu_features[0] = desc[3];
535                cpu_features[1] = desc[2];
536        }
537
538        /*
539         * Get information from the extended cpuid leafs
540         */
541        cpuid(0x80000000, 0, desc);
542
543        lvl = (uint64_t)desc[0];
544        x86_printf("-> cpuid extended level: %Z\n", lvl);
545}
546
547/* -------------------------------------------------------------------------- */
548
549void cpu_attach(size_t lid)
550{
551        /* Per-cluster structures */
552        cpu_load_gdt();
553        cpu_load_idt();
554
555        /* Per-cpu structures */
556        cpu_create_tss(lid);
557
558        if (cpu_features[0] & CPUID_PSE) {
559                lcr4(rcr4() | CR4_PSE);
560                tlbflushg();
561        } else {
562                /*
563                 * amd64 supports PSE by default, if it's not here we have a
564                 * problem
565                 */
566                x86_panic("PSE not supported");
567        }
568}
569
Note: See TracBrowser for help on using the repository browser.