2011-01-11 18:27:45 +00:00
|
|
|
# Multiboot header, for multiboot boot loaders like GNU Grub.
|
|
|
|
# http://www.gnu.org/software/grub/manual/multiboot/multiboot.html
|
|
|
|
#
|
|
|
|
# Using GRUB 2, you can boot xv6 from a file stored in a
|
|
|
|
# Linux file system by copying kernel or kernelmemfs to /boot
|
|
|
|
# and then adding this menu entry:
|
|
|
|
#
|
|
|
|
# menuentry "xv6" {
|
|
|
|
# insmod ext2
|
|
|
|
# set root='(hd0,msdos1)'
|
|
|
|
# set kernel='/boot/kernel'
|
|
|
|
# echo "Loading ${kernel}..."
|
|
|
|
# multiboot ${kernel} ${kernel}
|
|
|
|
# boot
|
|
|
|
# }
|
|
|
|
|
|
|
|
#include "asm.h"
|
2011-07-29 11:31:27 +00:00
|
|
|
#include "memlayout.h"
|
2011-08-08 17:30:08 +00:00
|
|
|
#include "mmu.h"
|
2011-09-01 16:18:43 +00:00
|
|
|
#include "param.h"
|
2011-01-11 18:27:45 +00:00
|
|
|
|
|
|
|
# Multiboot header. Data to direct multiboot loader.
|
|
|
|
.p2align 2
|
|
|
|
.text
|
|
|
|
.globl multiboot_header
|
|
|
|
multiboot_header:
|
|
|
|
#define magic 0x1badb002
|
2011-09-04 19:51:46 +00:00
|
|
|
#define flags 0
|
2011-01-11 18:27:45 +00:00
|
|
|
.long magic
|
|
|
|
.long flags
|
|
|
|
.long (-magic-flags)
|
2011-09-04 19:51:46 +00:00
|
|
|
|
|
|
|
# By convention, the _start symbol specifies the ELF entry point.
|
|
|
|
# Since we haven't set up virtual memory yet, our entry point is
|
|
|
|
# the physical address of 'entry'.
|
|
|
|
.globl _start
|
|
|
|
_start = V2P_WO(entry)
|
2011-01-11 18:27:45 +00:00
|
|
|
|
2011-09-13 16:28:45 +00:00
|
|
|
# Entering xv6 on boot processor, with paging off.
|
2011-08-16 00:11:13 +00:00
|
|
|
.globl entry
|
|
|
|
entry:
|
2011-08-15 21:41:58 +00:00
|
|
|
# Turn on page size extension for 4Mbyte pages
|
|
|
|
movl %cr4, %eax
|
|
|
|
orl $(CR4_PSE), %eax
|
|
|
|
movl %eax, %cr4
|
|
|
|
# Set page directory
|
2011-08-31 00:50:19 +00:00
|
|
|
movl $(V2P_WO(entrypgdir)), %eax
|
2011-08-10 01:37:35 +00:00
|
|
|
movl %eax, %cr3
|
|
|
|
# Turn on paging.
|
|
|
|
movl %cr0, %eax
|
2011-08-31 00:50:19 +00:00
|
|
|
orl $(CR0_PG|CR0_WP), %eax
|
2011-08-10 01:37:35 +00:00
|
|
|
movl %eax, %cr0
|
|
|
|
|
2011-08-31 09:38:05 +00:00
|
|
|
# Set up the stack pointer.
|
2011-09-01 16:18:43 +00:00
|
|
|
movl $(stack + KSTACKSIZE), %esp
|
2011-08-31 09:38:05 +00:00
|
|
|
|
2011-09-01 16:02:49 +00:00
|
|
|
# Jump to main(), and switch to executing at
|
2011-08-31 09:38:05 +00:00
|
|
|
# high addresses. The indirect call is needed because
|
|
|
|
# the assembler produces a PC-relative instruction
|
2011-09-01 16:02:49 +00:00
|
|
|
# for a direct jump.
|
2011-08-31 09:38:05 +00:00
|
|
|
mov $main, %eax
|
|
|
|
jmp *%eax
|
2011-01-11 18:27:45 +00:00
|
|
|
|
2011-09-01 16:18:43 +00:00
|
|
|
.comm stack, KSTACKSIZE
|