X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fthreads%2Finit.c;h=729c25ffcd528957ea96e5f22cf2cf1a439d2cfb;hb=d0d14ca50fbac167253e1e1d8d806bfd749a5e8a;hp=b70c16c43bee2046f4b134427dc60e811953b4e5;hpb=c9c283cb3e26a5b6d918ee47dcf8efe28522b18d;p=pintos-anon diff --git a/src/threads/init.c b/src/threads/init.c index b70c16c..729c25f 100644 --- a/src/threads/init.c +++ b/src/threads/init.c @@ -1,27 +1,34 @@ -#include "init.h" -#include -#include +#include "threads/init.h" +#include #include -#include "debug.h" -#include "gdt.h" -#include "interrupt.h" -#include "io.h" -#include "kbd.h" -#include "lib.h" -#include "loader.h" -#include "malloc.h" -#include "mmu.h" -#include "paging.h" -#include "palloc.h" -#include "random.h" -#include "serial.h" -#include "thread.h" -#include "timer.h" -#include "vga.h" +#include +#include +#include +#include +#include +#include +#include "devices/kbd.h" +#include "devices/serial.h" +#include "devices/timer.h" +#include "devices/vga.h" +#include "threads/interrupt.h" +#include "threads/io.h" +#include "threads/loader.h" +#include "threads/malloc.h" +#include "threads/mmu.h" +#include "threads/paging.h" +#include "threads/palloc.h" +#include "threads/thread.h" +#ifdef USERPROG +#include "userprog/exception.h" +#include "userprog/gdt.h" +#include "userprog/syscall.h" +#include "userprog/tss.h" +#endif #ifdef FILESYS -#include "filesys.h" -#include "disk.h" -#include "fsutil.h" +#include "devices/disk.h" +#include "filesys/filesys.h" +#include "filesys/fsutil.h" #endif /* Amount of physical memory, in 4 kB pages. */ @@ -40,57 +47,71 @@ static char *initial_program; static void ram_init (void); static void argv_init (void); -static void -main_thread (void *aux UNUSED) -{ -#ifdef FILESYS - disk_init (); - filesys_init (format_filesys); - fsutil_run (); -#endif - -#ifdef USERPROG - if (initial_program != NULL) - thread_execute (initial_program); - else - PANIC ("no initial program specified"); -#endif -} +int main (void) NO_RETURN; int main (void) { - /* Initialize prerequisites for calling printk(). */ + /* Needed by printf(), so initialize them very early. */ ram_init (); vga_init (); - serial_init (); + serial_init_poll (); /* Greet user. */ - printk ("Booting cnachos86 with %'d kB RAM...\n", ram_pages * 4); + printf ("Pintos booting with %'d kB RAM...\n", ram_pages * 4); /* Parse command line. */ argv_init (); - /* Initialize memory system. */ + /* Initialize memory system, segments, paging. */ + thread_init (); palloc_init (); paging_init (); +#ifdef USERPROG + tss_init (); gdt_init (); +#endif malloc_init (); + /* Set random seed if not already done. */ random_init (0); /* Initialize interrupt handlers. */ intr_init (); timer_init (); kbd_init (); +#ifdef USERPROG + exception_init (); + syscall_init (); +#endif - /* Do everything else in a system thread. */ - thread_init (); - thread_create ("main", main_thread, NULL); + /* Start thread scheduler and enable interrupts. */ thread_start (); -} + serial_init_queue (); + +#ifdef FILESYS + /* Initialize filesystem. */ + disk_init (); + filesys_init (format_filesys); + fsutil_run (); +#endif + printf ("Boot complete.\n"); + +#ifdef USERPROG + /* Run a user program. */ + if (initial_program != NULL) + { + printf ("\nExecuting '%s':\n", initial_program); + thread_execute (initial_program); + } +#endif + /* Terminate this thread. */ + thread_exit (); +} + +/* Clear BSS and obtain RAM size from loader. */ static void ram_init (void) { @@ -103,10 +124,11 @@ ram_init (void) extern char _start_bss, _end_bss; memset (&_start_bss, 0, &_end_bss - &_start_bss); - /* Get RAM size from loader. */ + /* Get RAM size from loader. See loader.S. */ ram_pages = *(uint32_t *) ptov (LOADER_RAM_PAGES); } - + +/* Parses the command line. */ static void argv_init (void) { @@ -154,7 +176,7 @@ argv_init (void) #endif else if (!strcmp (argv[i], "-u")) { - printk ( + printf ( "Kernel options:\n" " -rs SEED Seed random seed to SEED.\n" " -d CLASS[,...] Enable the given classes of debug messages.\n" @@ -168,8 +190,9 @@ argv_init (void) " -p FILENAME Print the contents of FILENAME\n" " -r FILENAME Delete FILENAME\n" " -ls List the files in the filesystem\n" - " -D Dump complete filesystem contents\n"); + " -D Dump complete filesystem contents\n" #endif + ); } else PANIC ("unknown option `%s'", argv[i]);