2007-08-27 14:48:03 +02:00
|
|
|
// Boot loader.
|
|
|
|
//
|
2007-09-15 22:05:47 +02:00
|
|
|
// Part of the boot sector, along with bootasm.S, which calls bootmain().
|
|
|
|
// bootasm.S has put the processor into protected 32-bit mode.
|
|
|
|
// bootmain() loads an ELF kernel image from the disk starting at
|
|
|
|
// sector 1 and then jumps to the kernel entry routine.
|
2006-09-06 21:08:14 +02:00
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
#include "elf.h"
|
|
|
|
#include "x86.h"
|
2011-07-29 13:31:27 +02:00
|
|
|
#include "memlayout.h"
|
2006-06-12 17:22:12 +02:00
|
|
|
|
2006-09-06 19:04:06 +02:00
|
|
|
#define SECTSIZE 512
|
2006-06-12 17:22:12 +02:00
|
|
|
|
2009-03-08 22:41:30 +01:00
|
|
|
void readseg(uchar*, uint, uint);
|
2006-06-12 17:22:12 +02:00
|
|
|
|
|
|
|
void
|
2007-08-28 15:01:10 +02:00
|
|
|
bootmain(void)
|
2006-06-12 17:22:12 +02:00
|
|
|
{
|
2007-08-24 22:28:08 +02:00
|
|
|
struct elfhdr *elf;
|
2006-09-06 19:04:06 +02:00
|
|
|
struct proghdr *ph, *eph;
|
2007-08-24 22:28:08 +02:00
|
|
|
void (*entry)(void);
|
2011-07-29 13:31:27 +02:00
|
|
|
uchar* pa;
|
2006-06-12 17:22:12 +02:00
|
|
|
|
2007-08-24 22:28:08 +02:00
|
|
|
elf = (struct elfhdr*)0x10000; // scratch space
|
2006-06-12 17:22:12 +02:00
|
|
|
|
2007-08-24 22:28:08 +02:00
|
|
|
// Read 1st page off disk
|
2009-03-08 22:41:30 +01:00
|
|
|
readseg((uchar*)elf, 4096, 0);
|
2007-08-24 22:28:08 +02:00
|
|
|
|
|
|
|
// Is this an ELF executable?
|
|
|
|
if(elf->magic != ELF_MAGIC)
|
2009-03-08 22:41:30 +01:00
|
|
|
return; // let bootasm.S handle error
|
2006-06-12 17:22:12 +02:00
|
|
|
|
2007-08-24 22:28:08 +02:00
|
|
|
// Load each program segment (ignores ph flags).
|
|
|
|
ph = (struct proghdr*)((uchar*)elf + elf->phoff);
|
|
|
|
eph = ph + elf->phnum;
|
2011-01-11 19:01:13 +01:00
|
|
|
for(; ph < eph; ph++){
|
2011-08-18 02:23:36 +02:00
|
|
|
pa = (uchar*)ph->paddr;
|
|
|
|
readseg(pa, ph->filesz, ph->off);
|
2009-03-08 22:41:30 +01:00
|
|
|
if(ph->memsz > ph->filesz)
|
2011-07-29 13:31:27 +02:00
|
|
|
stosb(pa + ph->filesz, 0, ph->memsz - ph->filesz);
|
2009-03-08 22:41:30 +01:00
|
|
|
}
|
2006-06-12 17:22:12 +02:00
|
|
|
|
2007-08-24 22:28:08 +02:00
|
|
|
// Call the entry point from the ELF header.
|
|
|
|
// Does not return!
|
2011-09-04 21:51:46 +02:00
|
|
|
entry = (void(*)(void))(elf->entry);
|
2007-08-24 22:28:08 +02:00
|
|
|
entry();
|
2006-06-12 17:22:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
waitdisk(void)
|
|
|
|
{
|
2007-08-24 22:28:08 +02:00
|
|
|
// Wait for disk ready.
|
2006-09-06 19:27:19 +02:00
|
|
|
while((inb(0x1F7) & 0xC0) != 0x40)
|
2006-09-06 19:50:20 +02:00
|
|
|
;
|
2006-06-12 17:22:12 +02:00
|
|
|
}
|
|
|
|
|
2007-08-22 08:01:32 +02:00
|
|
|
// Read a single sector at offset into dst.
|
2006-06-12 17:22:12 +02:00
|
|
|
void
|
2006-07-20 11:07:53 +02:00
|
|
|
readsect(void *dst, uint offset)
|
2006-06-12 17:22:12 +02:00
|
|
|
{
|
2007-08-24 22:28:08 +02:00
|
|
|
// Issue command.
|
2006-09-06 19:04:06 +02:00
|
|
|
waitdisk();
|
|
|
|
outb(0x1F2, 1); // count = 1
|
|
|
|
outb(0x1F3, offset);
|
|
|
|
outb(0x1F4, offset >> 8);
|
|
|
|
outb(0x1F5, offset >> 16);
|
|
|
|
outb(0x1F6, (offset >> 24) | 0xE0);
|
|
|
|
outb(0x1F7, 0x20); // cmd 0x20 - read sectors
|
2006-06-12 17:22:12 +02:00
|
|
|
|
2007-08-24 22:28:08 +02:00
|
|
|
// Read data.
|
2006-09-06 19:04:06 +02:00
|
|
|
waitdisk();
|
|
|
|
insl(0x1F0, dst, SECTSIZE/4);
|
2006-06-12 17:22:12 +02:00
|
|
|
}
|
|
|
|
|
2011-08-18 02:52:28 +02:00
|
|
|
// Read 'count' bytes at 'offset' from kernel into physical address 'pa'.
|
2007-08-22 08:01:32 +02:00
|
|
|
// Might copy more than asked.
|
|
|
|
void
|
2011-08-18 02:52:28 +02:00
|
|
|
readseg(uchar* pa, uint count, uint offset)
|
2007-08-22 08:01:32 +02:00
|
|
|
{
|
2011-08-18 02:52:28 +02:00
|
|
|
uchar* epa;
|
2007-08-22 08:01:32 +02:00
|
|
|
|
2011-08-18 02:52:28 +02:00
|
|
|
epa = pa + count;
|
2007-08-22 08:01:32 +02:00
|
|
|
|
2007-08-24 22:28:08 +02:00
|
|
|
// Round down to sector boundary.
|
2011-08-18 02:52:28 +02:00
|
|
|
pa -= offset % SECTSIZE;
|
2007-08-22 08:01:32 +02:00
|
|
|
|
2007-08-24 22:28:08 +02:00
|
|
|
// Translate from bytes to sectors; kernel starts at sector 1.
|
2007-08-22 08:01:32 +02:00
|
|
|
offset = (offset / SECTSIZE) + 1;
|
|
|
|
|
|
|
|
// If this is too slow, we could read lots of sectors at a time.
|
|
|
|
// We'd write more to memory than asked, but it doesn't matter --
|
|
|
|
// we load in increasing order.
|
2011-08-18 02:52:28 +02:00
|
|
|
for(; pa < epa; pa += SECTSIZE, offset++)
|
|
|
|
readsect(pa, offset);
|
2007-08-22 08:01:32 +02:00
|
|
|
}
|