Mercurial > lcfOS
annotate cos/kernel/kernel.c @ 36:91f91ff07ea8
Removed test variables
author | windel |
---|---|
date | Mon, 16 Jan 2012 20:47:05 +0100 |
parents | bcb3b68c8147 |
children | 5c20bd53cccd |
rev | line source |
---|---|
9 | 1 #include "kernel.h" |
2 | |
29 | 3 static void testMalloc() |
20 | 4 { |
5 char *a, *b; | |
23 | 6 |
7 printf("Testing malloc\n"); | |
20 | 8 a = kmalloc(100); |
9 printf("Got a at %x\n", a); | |
10 a[0] = 'A'; | |
11 b = kmalloc(22); | |
12 printf("Got b at %x\n", b); | |
13 b[0] = 'B'; | |
14 kfree(a); | |
15 } | |
16 | |
32
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
17 multiboot_info_t *multiboot_info = 0; // Set by startup code. |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
18 |
29 | 19 /* This routine initializes the kernel. |
20 * We are left here in 64-bit long mode with the first 6 MB identity mapped. | |
21 * */ | |
9 | 22 void kmain() |
23 { | |
34
8012221dd740
Fixes for uninitialized data. This causes problems on real machines
windel
parents:
33
diff
changeset
|
24 // No kmalloc required here yet: |
29 | 25 init_screen(); |
26 setupIDT(); | |
35
bcb3b68c8147
Added bss end address and load end address to multiboot header
windel
parents:
34
diff
changeset
|
27 |
34
8012221dd740
Fixes for uninitialized data. This causes problems on real machines
windel
parents:
33
diff
changeset
|
28 /* Retrieve memory information from multiboot header */ |
8012221dd740
Fixes for uninitialized data. This causes problems on real machines
windel
parents:
33
diff
changeset
|
29 uint64_t available_memory = 0; |
36 | 30 if ((multiboot_info->flags & (1 << 6)) == (1 << 6)) |
32
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
31 { |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
32 multiboot_memory_map_t *mmap; |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
33 for (mmap = (multiboot_memory_map_t*)(uint64_t)multiboot_info->mmap_addr; |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
34 (uint64_t)mmap < multiboot_info->mmap_addr + multiboot_info->mmap_length; |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
35 mmap = (multiboot_memory_map_t*) ( (uint64_t)mmap + mmap->size + sizeof(mmap->size)) ) |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
36 { |
34
8012221dd740
Fixes for uninitialized data. This causes problems on real machines
windel
parents:
33
diff
changeset
|
37 /* |
8012221dd740
Fixes for uninitialized data. This causes problems on real machines
windel
parents:
33
diff
changeset
|
38 printf("size: %d, start: 0x%x, length=0x%x, type=%d\n", mmap->size, |
8012221dd740
Fixes for uninitialized data. This causes problems on real machines
windel
parents:
33
diff
changeset
|
39 mmap->base, mmap->length, mmap->type); |
8012221dd740
Fixes for uninitialized data. This causes problems on real machines
windel
parents:
33
diff
changeset
|
40 */ |
32
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
41 |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
42 if ( (mmap->type == 1) && (mmap->base == 0x100000) ) |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
43 { |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
44 available_memory = mmap->length; |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
45 } |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
46 } |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
47 } |
36 | 48 |
49 if (available_memory == 0) | |
33 | 50 { |
36 | 51 panic("Found no usable memory in grub's memory map\n"); |
33 | 52 } |
32
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
53 |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
54 printf("Running with %d MB ram\n", available_memory / 1000000); |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
55 |
36 | 56 init_memory(available_memory); // Setup paging and memory manager |
57 | |
58 keyboard_init(); | |
59 timer_init(); | |
60 | |
34
8012221dd740
Fixes for uninitialized data. This causes problems on real machines
windel
parents:
33
diff
changeset
|
61 /* |
32
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
62 fs_node_t *fs_root = 0; |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
63 if ( (multiboot_info->flags & (1<<3)) == (1<<3)) |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
64 { |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
65 printf("Mod count: %d\n", multiboot_info->mods_count); |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
66 uint64_t i; |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
67 multiboot_module_t *mod; |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
68 for (i=0, mod=(multiboot_module_t*)(uint64_t)multiboot_info->mods_addr; i<multiboot_info->mods_count; i++, mod++) |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
69 { |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
70 printf("Mod start: %x, end: %x\n", mod->mod_start, mod->mod_end); |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
71 if (i == 0) |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
72 { |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
73 uint64_t ramdisk_location = ((uint32_t*)((uint64_t)multiboot_info->mods_addr))[0]; |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
74 fs_root = initialize_initrd(ramdisk_location); |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
75 } |
34
8012221dd740
Fixes for uninitialized data. This causes problems on real machines
windel
parents:
33
diff
changeset
|
76 // TODO: Make sure that placement malloc does not overwrite the ramdisk. |
8012221dd740
Fixes for uninitialized data. This causes problems on real machines
windel
parents:
33
diff
changeset
|
77 printf("Mod size: %d", mod->mod_end - mod->mod_start); |
32
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
78 } |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
79 } |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
80 |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
81 if (fs_root != 0) |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
82 { |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
83 fs_dirent_t *node = 0; |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
84 int i = 0; |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
85 while ( (node = readdir_fs(fs_root, i)) != 0) |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
86 { |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
87 |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
88 } |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
89 } |
34
8012221dd740
Fixes for uninitialized data. This causes problems on real machines
windel
parents:
33
diff
changeset
|
90 */ |
29 | 91 |
14 | 92 |
32
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
93 // TODO: make below a user space program! |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
94 printf("Welcome!\n"); |
3a6a9b929db0
Added initial ramdisk and some virtual file system functions
windel
parents:
31
diff
changeset
|
95 |
34
8012221dd740
Fixes for uninitialized data. This causes problems on real machines
windel
parents:
33
diff
changeset
|
96 while (1) |
9 | 97 { |
98 char buffer[70]; | |
27 | 99 printf(">"); |
9 | 100 getline(buffer, 70); |
101 // TODO: interpret this line with python :) | |
102 printf("\n"); | |
103 if (buffer[0] == 'x') | |
104 { | |
105 printf("System time in ms: %d\n", getTimeMS()); | |
106 } | |
23 | 107 if (buffer[0] == 't') |
108 { | |
109 testMalloc(); | |
110 } | |
9 | 111 if ( strncmp(buffer, "help", 4)) |
112 { | |
113 printf("Help\n Try one of these commands:\n"); | |
114 printf(" x: print system time in ms\n"); | |
28 | 115 printf(" r: reboot\n"); |
116 printf(" t: test\n"); | |
29 | 117 printf(" b: break\n"); |
9 | 118 } |
24 | 119 if (strncmp(buffer, "r", 1)) |
120 { | |
121 reboot(); | |
122 } | |
29 | 123 if (strncmp(buffer, "b", 1)) |
124 { | |
125 magicBochsBreak(); | |
126 } | |
33 | 127 if (strncmp(buffer, "pf", 2)) |
128 { | |
129 /* Test general protection exception */ | |
130 uint64_t *x; | |
131 x = (uint64_t*)0x4000000; // Address that is not mapped | |
132 *x = 0x2; // trigger paging exception | |
133 } | |
134 } | |
9 | 135 } |
136 | |
137 |