Skip to content

Commit 8637e5d

Browse files
author
Louis Jenkins
committed
Merge branch 'development'
2 parents f74b8e4 + b962bf3 commit 8637e5d

29 files changed

+1147
-544
lines changed

MoltarOS.sublime-workspace

+496-145
Large diffs are not rendered by default.

README.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ The below depicts an early "schedule" or rather a path I will be taking in terms
1212
- [x] Interrupts (IRQ + ISR)
1313
- [x] VGA Display Driver
1414
- [x] Keyboard Driver
15-
- [ ] Memory Management (Physical + Virtual)
16-
- [ ] Interactive Shell
15+
- [x] Memory Management (Physical + Virtual)
16+
- [x] Higher Half Kernel
1717
- [ ] File System
18+
- [ ] Process Creation and Managements
1819
- [ ] Multitasking and Scheduling
1920
- [ ] Networking
20-
- [ ] Process Creation and Managements
2121
- [ ] ELF Binary Support
22+
- [ ] Interactive Shell
2223
- [ ] Graphical User Interfaces
2324

2425
#Progress Update & Changelog
@@ -47,4 +48,11 @@ a significant amount of work and should be pushed to master.
4748

4849
Lastly, I also added a nice logger macro, `KLOG`, and panic macro, `KPANIC`.
4950

50-
![Screenshot](/ram_and_kbd.PNG)
51+
![Screenshot](/ram_and_kbd.PNG)
52+
53+
54+
## Version .002
55+
56+
It is FINALLY here! I have implemented not only memory management (paging and a heap allocator), but even converted to a higher-half kernel approach, which was also easier, surprisingly, than a normal identity-mapped system. I've also fixed up the tests and their output format to better portray the significance of the initialization of the kernel thus far. I am very satisfied with what I have done, but unfortunately, I have to attend to another project for the time being.
57+
58+
![Screenshot](/all_tests_and_heap.PNG)

all_tests_and_heap.PNG

70.8 KB
Loading

src/kernel/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Include directories
2-
INCLUDE := kernel x86 drivers
2+
INCLUDE := kernel x86 drivers mm
33

44
# List of all headers from the included directories
55
HEADERS := $(shell find $(INCLUDE) -type f -name \*.h)

src/kernel/drivers/vga.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ static void update_cursor();
3434
Initializes the buffer's attributes above to their proper values, should be called before kmain().
3535
*/
3636
void vga_init() {
37-
buf = (uint16_t *) 0xB8000;
37+
buf = (uint16_t *) 0xC00B8000;
3838
x = y = 0;
3939
color = make_color(COLOR_LIGHT_GREY, COLOR_BLACK);
4040

src/kernel/include/drivers/kbd_hal.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ static struct {
2222
// Note: All the above is packed into 1 byte. :)
2323

2424
// Bit array of currently pressed keys
25-
uint8_t pressed[BIT_ARRAY_SZ(256)];
25+
uint8_t pressed[BITMAP_SIZE(256)];
2626
} KBD_STATE;
2727

2828
#endif /* endif MOLTAROS_KBD_HAL_H */

src/kernel/include/helpers.h

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@
44
#include <stdio.h>
55
#include <stdbool.h>
66

7+
#define MAX(x, y) ((x) > (y) ? (x) : (y))
8+
9+
#define MIN(x, y) ((x) > (y) ? (y) : (x))
10+
11+
#define HALT \
12+
do { \
13+
asm volatile ("cli"); \
14+
while (true) \
15+
asm volatile ("hlt"); \
16+
} while (0)
17+
718
// Ceiling of integer divison.
819
#define CEILING(x,y) (((x) + (y) - 1) / (y))
920

src/kernel/include/kernel/logger.h

+6-1
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,17 @@
1313
// Kernel Panic which will just print error message and spin
1414
#define KPANIC(format, ...) \
1515
do { \
16-
printf("[%s:%s:%s] PANIC: \"" format "\"\n", __FILE__, __FUNCTION__, STRINGIFY(__LINE__), ##__VA_ARGS__); \
16+
printf("\n[%s:%s:%s] PANIC: \"" format "\"\n", __FILE__, __FUNCTION__, STRINGIFY(__LINE__), ##__VA_ARGS__); \
1717
asm volatile ("cli"); \
1818
while (true) \
1919
asm volatile ("hlt"); \
2020
} while (0)
2121

22+
#define KFRAME \
23+
do {\
24+
printf("FUNCTION: %s, FP: %x, CALLER FP: %x\n", __FUNCTION__, __builtin_frame_address(0), __builtin_frame_address(1)); \
25+
} while (0)
26+
2227
#define STRINGIFY(x) _STRINGIFY(x)
2328
#define _STRINGIFY(x) #x
2429

src/kernel/include/kernel/mem.h

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#ifndef MOLTAROS_MEM_H
2+
#define MOLTAROS_MEM_H
3+
4+
#include <stddef.h>
5+
#include <stdint.h>
6+
7+
extern uint32_t PAGE_SIZE;
8+
9+
void mem_init();
10+
11+
void *kmalloc(size_t sz);
12+
13+
void kfree(void *ptr);
14+
15+
#endif /* endif MOLTAROS_MEM_H */

src/kernel/include/kernel/multiboot.h

+4-5
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,12 @@ struct multiboot_mmap {
6363

6464
static bool multiboot_RAM(struct multiboot_info *mbinfo, uint32_t *start, uint32_t *end) {
6565
bool found = false;
66-
printf("Flags: %d\n", mbinfo->flags);
6766
// Check if there is a memory mapping available
6867
if (mbinfo->flags & (1 << 6)) {
69-
KLOG("MMAP Entries: %d", mbinfo->mmap_length / 24);
70-
struct multiboot_mmap *mmap = mbinfo->mmap_addr;
71-
while(mmap < mbinfo->mmap_addr + mbinfo->mmap_length) {
72-
KLOG("MMAP Entry: {Type: %s, Start: %x, Length: %x}", mmap->type == MULTIBOOT_MMAP_RAM ? "RAM" : "RESERVED", mmap->start_low, mmap->length_low);
68+
// KLOG("MMAP Entries: %d", mbinfo->mmap_length / 24);
69+
struct multiboot_mmap *mmap = (struct multiboot_mmap *) (0xC0000000 + mbinfo->mmap_addr);
70+
while((uint32_t) mmap - 0xC0000000 < (mbinfo->mmap_addr + mbinfo->mmap_length)) {
71+
// KLOG("MMAP Entry: {Type: %s, Start: %x, Length: %x}", mmap->type == MULTIBOOT_MMAP_RAM ? "RAM" : "RESERVED", mmap->start_low, mmap->length_low);
7372
// Jackpot... (The OS is 32-bit, so there is no upper currently.)
7473
if (mmap->type == MULTIBOOT_MMAP_RAM) {
7574
*start = mmap->start_low;

src/kernel/include/mm/alloc.h

+5-9
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,13 @@
33

44
#include <stddef.h>
55
#include <stdint.h>
6+
#include <stdbool.h>
67

7-
void *kmalloc(size_t size);
8+
typedef uint32_t paddr_t;
9+
typedef uint32_t vaddr_t;
810

9-
void *kcalloc(size_t size);
11+
void alloc_init();
1012

11-
void *kmalloc_aligned(size_t size);
12-
13-
void *kcalloc_aligned_phys(size_t size, uint32_t *phys_ptr);
14-
15-
void *kcalloc_aligned(size_t size);
16-
17-
void kfree(void *ptr);
13+
vaddr_t alloc_block();
1814

1915
#endif

src/kernel/include/mm/heap.h

+6-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,12 @@ struct memheap {
3232
memblock_t *head;
3333
};
3434

35-
void *kmalloc(size_t size);
35+
void memheap_init(memheap_t *heap);
3636

37-
void kfree(void *ptr);
37+
void memheap_add_block(memheap_t *heap, uintptr_t addr, uint32_t size, uint32_t block_size);
38+
39+
void *memheap_alloc(memheap_t *heap, uint32_t size);
40+
41+
void memheap_free(memheap_t *heap, void *ptr);
3842

3943
#endif /* endif MOLTAROS_MEMORY_MANAGEMENT_H */

src/kernel/include/mm/page.h

-50
This file was deleted.

src/kernel/include/x86/exceptions.h

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#ifndef MOLTAROS_EXCEPTIONS_H
2+
#define MOLTAROS_EXCEPTIONS_H
3+
4+
void exceptions_init();
5+
6+
#endif /* endif MOLTAROS_EXCEPTIONS_H */

0 commit comments

Comments
 (0)