Skip to content

Commit f74b8e4

Browse files
author
Louis Jenkins
committed
Merge branch 'development'
2 parents c98f3ab + 4f26c0c commit f74b8e4

40 files changed

+1027
-254
lines changed

MoltarOS.sublime-workspace

+349-114
Large diffs are not rendered by default.

README.md

+16-3
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ 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-
- [ ] Interactive Shell
1615
- [ ] Memory Management (Physical + Virtual)
16+
- [ ] Interactive Shell
1717
- [ ] File System
1818
- [ ] Multitasking and Scheduling
1919
- [ ] Networking
2020
- [ ] Process Creation and Managements
2121
- [ ] ELF Binary Support
2222
- [ ] Graphical User Interfaces
2323

24-
#Progress Update
24+
#Progress Update & Changelog
2525

2626
## Version .001a
2727

@@ -34,4 +34,17 @@ Implemented the GDT, IDT (and IRQs and ISRs), reprogrammed the PIC's (Master and
3434
Implemented the keyboard driver, but it won't be able to communicate with other components (such as an interactive shell) until memory management is implemented... perhaps, not even until processes and scheduling is implemented. That is the next thing I will be releasing. Currently, when you execute
3535
the OS, it will have a blank screen, until you use the keyboard. When executing the keyboard, it will display what key has been pressed and what has been released... but only one at a time unfortunaately, no multi-key press events are supported.
3636

37-
![Screenshot](/kbd_input.PNG)
37+
![Screenshot](/kbd_input.PNG)
38+
39+
## Version .001c
40+
41+
Began implementation of memory management, but not finished yet. Paging SHOULD be implemented very soon (and most code has been written), as well the heap is also mainly written using Pancakes' Bitmap Heap implementation, and paired with the identity paging technique, development of all other parts of the OS should proceed as expected. Today, I also managed to make use of the multiboot info struct that GRUB
42+
gives us that was pushed on the stack in 'kernel_init', and now it can detect the amount of physical memory (RAM) that the machine (or virtual machine) has to offer. This is crucial to finished memory management.
43+
44+
As well, there has been a huge restructure in terms of the hierarchy and logical structure of the operating system. For example, the folders 'mm' and 'drivers' now also have their own respective folders in the
45+
include folder, I.E 'drivers/vga.c' will have it's header in 'include/drivers/vga.h'. While in terms of usability, it is not too much of an update (yet, memory management will be in version .002), there has been
46+
a significant amount of work and should be pushed to master.
47+
48+
Lastly, I also added a nice logger macro, `KLOG`, and panic macro, `KPANIC`.
49+
50+
![Screenshot](/ram_and_kbd.PNG)

ram_and_kbd.PNG

62.5 KB
Loading

src/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ if [ $? -ne 0 ]; then
3333
fi
3434

3535
# Finally, run the virtual machine.
36-
bochs -f bochs.bxrc;
36+
bochs -f bochsrc.bxrc;

src/kernel/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Include directories
2-
INCLUDE := kernel include arch/i686 display drivers
2+
INCLUDE := kernel x86 drivers
33

44
# List of all headers from the included directories
55
HEADERS := $(shell find $(INCLUDE) -type f -name \*.h)
@@ -18,7 +18,7 @@ OBJECTS := $(C_OBJECTS) $(ASM_OBJECTS)
1818
DEPENDENCIES := $(patsubst %.c, %.d, $(C_SOURCES))
1919

2020
# Linker to be used
21-
LINKER := arch/i686/linker.ld
21+
LINKER := x86/linker.ld
2222

2323
# Compilers used during specific build sections
2424
LINKER_COMPILER := i686-elf-gcc -static

src/kernel/arch/i686/exceptions.c

-2
This file was deleted.

src/kernel/drivers/kbd.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#include <include/kbd.h>
2-
#include <include/vga.h>
3-
#include <include/idt.h>
4-
#include <include/io_port.h>
1+
#include <include/drivers/kbd.h>
2+
#include <include/drivers/vga.h>
3+
#include <include/x86/idt.h>
4+
#include <include/x86/io_port.h>
55
#include <include/helpers.h>
66
#include <stdbool.h>
77
#include <stdio.h>

src/kernel/drivers/rtc.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#include <include/rtc.h>
2-
#include <include/io_port.h>
1+
#include <include/drivers/rtc.h>
2+
#include <include/x86/io_port.h>
33
#include <stdio.h>
44
#include <stdbool.h>
55

src/kernel/kernel/timer.c src/kernel/drivers/timer.c

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
#include <include/timer.h>
2-
#include <include/io_port.h>
1+
#include <include/drivers/timer.h>
2+
#include <include/x86/io_port.h>
3+
#include <include/helpers.h>
34
#include <stdio.h>
45
#include <limits.h>
56

67
static const uint32_t oscillator_frequency = 1193180;
78

8-
static void timer_default_irq(struct registers *regs) {
9+
static void timer_default_irq(struct registers *UNUSED(regs)) {
910
// NOP
1011
}
1112

src/kernel/display/vga.c src/kernel/drivers/vga.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <stdint.h>
22

3-
#include <include/vga.h>
4-
#include <include/io_port.h>
3+
#include <include/drivers/vga.h>
4+
#include <include/x86/io_port.h>
55

66
/* X and Y coordinates for current position in VGA buffer */
77
static size_t x, y;

src/kernel/include/bit_array.h

-22
This file was deleted.
File renamed without changes.

src/kernel/include/kbd_hal.h src/kernel/include/drivers/kbd_hal.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#ifndef MOLTAROS_KBD_HAL_H
22
#define MOLTAROS_KBD_HAL_H
33

4-
#include <include/bit_array.h>
5-
#include <include/kbd.h>
4+
#include <include/helpers.h>
5+
#include <include/drivers/kbd.h>
66
#import <stdint.h>
77

88
static struct {
File renamed without changes.

src/kernel/include/timer.h src/kernel/include/drivers/timer.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88
#define PIT_REPEAT 0x36
99

1010
#include <stdint.h>
11-
#include <include/idt.h>
11+
#include <include/x86/idt.h>
1212

13-
void init_timer(uint32_t frequency, void (*cb)(struct registers *registers));
13+
void timer_init();
1414

15+
void timer_set_handler(uint32_t frequency, void (*cb)(struct registers *registers));
1516

1617
#endif /* MOLTAROS_TIMER_H */
File renamed without changes.

src/kernel/include/helpers.h

+25
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,32 @@
11
#ifndef MOLTAROS_HELPERS_H
22
#define MOLTAROS_HELPERS_H
33

4+
#include <stdio.h>
5+
#include <stdbool.h>
6+
7+
// Ceiling of integer divison.
48
#define CEILING(x,y) (((x) + (y) - 1) / (y))
9+
10+
// Get rid of annoying compiler warnings
511
#define UNUSED(x) (__attribute__((__unused__)) x)
612

13+
/*
14+
Helper macros for implementations of a bit array, normally used in the kernel for keeping arrays of flags.
15+
*/
16+
17+
// Declares a new bit array with the requested size
18+
#define BITMAP_SIZE(idx) CEILING(idx, 32)
19+
20+
// Set bit
21+
#define BITMAP_SET(arr, idx) (arr[(idx / 32)] |= (1 << (idx % 32)))
22+
23+
// Get raw value of bit
24+
#define BITMAP_GET(arr, idx) (arr[(idx / 32)] & (1 << (idx % 32)))
25+
26+
// Get value as 0 (false) or 1 (true)
27+
#define BITMAP_TEST(arr, idx) (!!BIT_ARRAY_GET(arr, idx))
28+
29+
// Clear bit
30+
#define BITMAP_CLEAR(arr, idx) (arr[(idx / 32)] &= ~(1 << (idx % 32)))
31+
732
#endif /* end MLTAROS_HELPERS_H */

src/kernel/include/kernel/logger.h

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#ifndef MOLTAROS_LOGGER_H
2+
#define MOLTAROS_LOGGER_H
3+
4+
#include <stdio.h>
5+
6+
#ifndef NDEBUG
7+
#define KLOG(format, ...) printf(format "\n", ##__VA_ARGS__)
8+
#else
9+
#define KLOG(format, ...)
10+
#endif
11+
12+
13+
// Kernel Panic which will just print error message and spin
14+
#define KPANIC(format, ...) \
15+
do { \
16+
printf("[%s:%s:%s] PANIC: \"" format "\"\n", __FILE__, __FUNCTION__, STRINGIFY(__LINE__), ##__VA_ARGS__); \
17+
asm volatile ("cli"); \
18+
while (true) \
19+
asm volatile ("hlt"); \
20+
} while (0)
21+
22+
#define STRINGIFY(x) _STRINGIFY(x)
23+
#define _STRINGIFY(x) #x
24+
25+
#endif /* MOLTAROS_LOGGER_H */

src/kernel/include/kernel/multiboot.h

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
#ifndef MOLTAROS_MULTIBOOT_H
2+
#define MOLTAROS_MULTIBOOT_H
3+
4+
#include <include/kernel/logger.h>
5+
#include <stdint.h>
6+
7+
#define MULTIBOOT_MMAP_RAM 1
8+
9+
// GRUB's Multiboot information structure, which we push on the stack for use during kernel_init.
10+
// It is used to determine hardware information, such as the amount of available RAM.
11+
struct multiboot_info {
12+
// Determines what information is available in this structure
13+
uint32_t flags;
14+
15+
// Only valid if bit 0 of flags is set.
16+
// Indicate amount of low and high memory respectively
17+
uint32_t mem_low;
18+
uint32_t mem_high;
19+
20+
// Only valid if bit 1 of flags is set.
21+
// Indicates which disk device we were loaded from.
22+
uint32_t boot_device;
23+
24+
// Only valid if bit 2 of flags is set.
25+
uint32_t cmdline;
26+
27+
// Only valid if bit 3 of flags is set.
28+
// Indicates the number of boot modules loaded
29+
// alongside us, with the addr being the physical
30+
// address an array of them.
31+
uint32_t mod_count;
32+
uint32_t mod_addr;
33+
34+
// Symbol table, which we ignore
35+
uint8_t sym_table[16];
36+
37+
// Only valid if bit 6 of flags is set.
38+
// Describe the memory mappings and the size
39+
// of their buffers. Of notable importance is
40+
// RAM, which we use to obtain physical memory size.
41+
uint32_t mmap_length;
42+
uint32_t mmap_addr;
43+
};
44+
45+
// GRUB's memory map structure. The 'size' field is located at offset -4
46+
// which means we have to take special care when going to the next entry.
47+
struct multiboot_mmap {
48+
// Size of this entry.
49+
uint32_t size;
50+
51+
// The start address
52+
uint32_t start_low;
53+
uint32_t start_high;
54+
55+
// The length of this memory mapping
56+
uint32_t length_low;
57+
uint32_t length_high;
58+
59+
// Whether this memory mapping is for RAM or some reserved area.
60+
uint32_t type;
61+
};
62+
63+
64+
static bool multiboot_RAM(struct multiboot_info *mbinfo, uint32_t *start, uint32_t *end) {
65+
bool found = false;
66+
printf("Flags: %d\n", mbinfo->flags);
67+
// Check if there is a memory mapping available
68+
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);
73+
// Jackpot... (The OS is 32-bit, so there is no upper currently.)
74+
if (mmap->type == MULTIBOOT_MMAP_RAM) {
75+
*start = mmap->start_low;
76+
*end = *start + mmap->length_low;
77+
found = true;
78+
}
79+
80+
mmap = (struct multiboot_mmap *) ((uint32_t) mmap + mmap->size + sizeof(mmap->size));
81+
}
82+
}
83+
84+
return found;
85+
}
86+
87+
#endif /* MOLTAROS_MULTIBOOT_H */

src/kernel/include/mm/alloc.h

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#ifndef MOLTAROS_ALLOC_H
2+
#define MOLTAROS_ALLOC_H
3+
4+
#include <stddef.h>
5+
#include <stdint.h>
6+
7+
void *kmalloc(size_t size);
8+
9+
void *kcalloc(size_t size);
10+
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);
18+
19+
#endif

src/kernel/include/mm/heap.h

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#ifndef MOLTAROS_MEMORY_MANAGEMENT_H
2+
#define MOLTAROS_MEMORY_MANAGEMENT_H
3+
4+
#include <stdint.h>
5+
#include <stddef.h>
6+
7+
typedef struct memblock memblock_t;
8+
typedef struct memheap memheap_t;
9+
10+
// memblock_t is a simple memory "superblock", which is effectively a header to
11+
// a chunk of blocks of memory: it should not be confused with a block in and of itself.
12+
// It is the header for a contiguous chunk of memory, given by the user. It also uses some
13+
// space to hold a bitmap, acting as a descriptor for certain blocks.
14+
// Implementation based on Pancakes' Bitmap Heap, seen here: http://wiki.osdev.org/User:Pancakes/BitmapHeapImplementation
15+
struct memblock {
16+
// Pointer to the next superblock in a linked-list fashion.
17+
memblock_t *next;
18+
// The total size in raw bytes of this superblock.
19+
uint32_t total_size;
20+
// Number of blocks used.
21+
uint32_t used;
22+
// The size of the individual blocks of memory.
23+
uint32_t block_size;
24+
// Index to the bitmap entry after the last allocation, a naive optimization where
25+
// the next allocation is assumed to be more likely in the same superblock and contain
26+
// free space immediately after. This yields significant increase in performance when the
27+
// block has not filled the initial superblock, but may degrade performance when it has.
28+
uint32_t last_alloc;
29+
};
30+
31+
struct memheap {
32+
memblock_t *head;
33+
};
34+
35+
void *kmalloc(size_t size);
36+
37+
void kfree(void *ptr);
38+
39+
#endif /* endif MOLTAROS_MEMORY_MANAGEMENT_H */

0 commit comments

Comments
 (0)