# enable A20 address line
call enable_a20
+ # detect available memory
+ call detect_memory
+
# load the whole program into memory starting at 1MB
call load_main
numbuf: .space 16
+ # sets the carry flag on failure
+detect_memory:
+ mov $buffer, %edi
+ xor %ebx, %ebx
+ mov $0x534d4150, %edx
+
+memdet_looptop:
+ mov $0xe820, %eax
+ mov $24, %ecx
+ int $0x15
+ jc memdet_fail
+ cmp $0x534d4150, %eax
+ jnz memdet_fail
+
+ mov buffer, %eax
+ mov $boot_mem_map, %esi
+ mov boot_mem_map_size, %ebp
+ # again, that's [ebp * 8 + esi]
+ mov %eax, (%esi,%ebp,8)
+
+ # only care for type 1 (usable ram), otherwise ignore
+ cmpl $1, 16(%edi)
+ jnz memdet_skip
+
+ # skip areas with 0 size (also clamp size to 4gb)
+ # test high 32bits
+ cmpl $0, 12(%edi)
+ jz memdet_highzero
+ # high part is non-zero, make low part ffffffff
+ xor %eax, %eax
+ not %eax
+ jmp 0f
+
+memdet_highzero:
+ # if both high and low parts are zero, ignore
+ mov 8(%edi), %eax
+ cmpl $0, %eax
+ jz memdet_skip
+
+0: mov %eax, 4(%esi,%ebp,8)
+ incl boot_mem_map_size
+
+memdet_skip:
+ # terminate the loop if ebx was reset to 0
+ cmp $0, %ebx
+ jz memdet_done
+ jmp memdet_looptop
+
+memdet_done:
+ ret
+
+memdet_fail:
+ # if size > 0, then it's not a failure, just the end
+ cmpl $0, boot_mem_map_size
+ jnz memdet_done
+
+ # just panic...
+ mov $memdet_fail_msg, %esi
+ call putstr
+0: hlt
+ jmp 0b
+
+memdet_fail_msg: .asciz "Failed to detect available memory!\n"
+
+ .global boot_mem_map_size
+boot_mem_map_size: .long 0
+ .global boot_mem_map
+boot_mem_map: .space 128
+
+
# this is not boot loader code. It's called later on by the main kernel
# code in 32bit protected mode. It's placed here because it needs to be
# located in base memory as it returns and runs in real mode.
/* clear the next line that will be revealed by scrolling */
new_line = start_line + NROWS - 1;
- memset16(TEXT_ADDR + new_line * NCOLS, VMEM_CHAR(' ', txattr), NCOLS);
+ memset16(TEXT_ADDR + new_line * NCOLS * 2, VMEM_CHAR(' ', txattr), NCOLS);
crtc_setstart(start_line);
}
#include <ctype.h>
#include "segm.h"
#include "intr.h"
+#include "mem.h"
#include "keyb.h"
#include "timer.h"
#include "contty.h"
{
init_segm();
init_intr();
- kb_init();
+
con_init();
+ kb_init();
+
+ init_mem();
/* initialize the timer */
init_timer();
--- /dev/null
+/*
+pcboot - bootable PC demo/game kernel
+Copyright (C) 2018 John Tsiombikas <nuclear@member.fsf.org>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY, without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <https://www.gnu.org/licenses/>.
+*/
+#include <stdio.h>
+#include "panic.h"
+#include "mem.h"
+
+struct mem_range {
+ uint32_t start;
+ uint32_t size;
+};
+
+#define MAX_MAP_SIZE 16
+extern struct mem_range boot_mem_map[MAX_MAP_SIZE];
+extern int boot_mem_map_size;
+
+void init_mem(void)
+{
+ int i;
+
+ if(boot_mem_map_size <= 0 || boot_mem_map_size > MAX_MAP_SIZE) {
+ panic("invalid memory map size reported by the boot loader: %d\n", boot_mem_map_size);
+ }
+
+ printf("Memory map:\n");
+ for(i=0; i<boot_mem_map_size; i++) {
+ printf(" start: %08x - size: %08x\n", (unsigned int)boot_mem_map[i].start,
+ (unsigned int)boot_mem_map[i].size);
+ }
+}
--- /dev/null
+#ifndef MEM_H_
+#define MEM_H_
+
+void init_mem(void);
+
+#endif /* MEM_H_ */