diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-05-14 22:23:49 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-05-14 22:23:49 +0000 |
commit | 455aa7469dd19a4d2f3fa31b6c4f2df116ad0a36 (patch) | |
tree | fbf7137f2f6822c0c161fbaf706a9bfc2c90b4e4 | |
parent | a48b3a9dd771092cda75e6808c6865654014e60f (diff) |
Parse arguments passed by the bootloader and take appropriate action.
-rw-r--r-- | sys/arch/socppc/socppc/locore.S | 14 | ||||
-rw-r--r-- | sys/arch/socppc/socppc/machdep.c | 58 |
2 files changed, 65 insertions, 7 deletions
diff --git a/sys/arch/socppc/socppc/locore.S b/sys/arch/socppc/socppc/locore.S index ffa8cad7308..b438788c4f7 100644 --- a/sys/arch/socppc/socppc/locore.S +++ b/sys/arch/socppc/socppc/locore.S @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.S,v 1.4 2008/05/14 20:54:36 kettenis Exp $ */ +/* $OpenBSD: locore.S,v 1.5 2008/05/14 22:23:48 kettenis Exp $ */ /* $NetBSD: locore.S,v 1.2 1996/10/16 19:33:09 ws Exp $ */ /* @@ -87,19 +87,21 @@ start: /* compute end of kernel memory */ lis %r8,_end@ha addi %r8,%r8,_end@l + cmpwi %r4,0 + beq 1f + li %r6,0 +1: #if defined(DDB) - cmpwi %r4, 0 - bne 1f cmpwi %r6, 0 - beq 1f + beq 2f add %r9,%r6,%r7 lwz %r9, -4(%r9) cmpwi %r9,0 - beq 1f + beq 2f lis %r8,_C_LABEL(esym)@ha stw %r9,_C_LABEL(esym)@l(%r8) mr %r8, %r9 -1: +2: #endif li %r9,PGOFSET add %r8,%r8,%r9 diff --git a/sys/arch/socppc/socppc/machdep.c b/sys/arch/socppc/socppc/machdep.c index ed9ac81d25b..c89c962eda7 100644 --- a/sys/arch/socppc/socppc/machdep.c +++ b/sys/arch/socppc/socppc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.3 2008/05/14 20:54:36 kettenis Exp $ */ +/* $OpenBSD: machdep.c,v 1.4 2008/05/14 22:23:48 kettenis Exp $ */ /* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */ /* @@ -65,6 +65,11 @@ #include <dev/ic/comvar.h> +#ifdef DDB +#include <machine/db_machdep.h> +#include <ddb/db_extern.h> +#endif + /* * Global variables used here and there */ @@ -91,6 +96,9 @@ struct vm_map *phys_map = NULL; int ppc_malloc_ok = 0; +char *bootpath; +char bootpathbuf[512]; + struct bd_info { unsigned long bi_memstart; unsigned long bi_memsize; @@ -167,6 +175,9 @@ initppc(u_int startkernel, u_int endkernel, char *args) extern char __bss_start[], __end[]; bzero(__bss_start, __end - __bss_start); + /* Make a copy of the args! */ + strlcpy(bootpathbuf, args ? args : "wd0a", sizeof bootpathbuf); + proc0.p_cpu = &cpu_info[0]; proc0.p_addr = proc0paddr; bzero(proc0.p_addr, sizeof *proc0.p_addr); @@ -320,6 +331,38 @@ initppc(u_int startkernel, u_int endkernel, char *args) */ boothowto = RB_AUTOBOOT; + /* + * Parse arg string. + */ + bootpath = &bootpathbuf[0]; + while (*++bootpath && *bootpath != ' '); + if (*bootpath) { + *bootpath++ = 0; + while (*bootpath) { + switch (*bootpath++) { + case 'a': + boothowto |= RB_ASKNAME; + break; + case 's': + boothowto |= RB_SINGLE; + break; + case 'd': + boothowto |= RB_KDB; + break; + case 'c': + boothowto |= RB_CONFIG; + break; + default: + break; + } + } + } + bootpath = &bootpathbuf[0]; + +#ifdef DDB + ddb_init(); +#endif + devio_ex = extent_create("devio", 0x80000000, 0xffffffff, M_DEVBUF, (caddr_t)devio_ex_storage, sizeof(devio_ex_storage), EX_NOCOALESCE|EX_NOWAIT); @@ -333,6 +376,19 @@ initppc(u_int startkernel, u_int endkernel, char *args) comconsaddr = 0x00004500; comconsiot = &mainbus_bus_space; consinit(); + +#ifdef DDB + if (boothowto & RB_KDB) + Debugger(); +#endif + + if (boothowto & RB_CONFIG) { +#ifdef BOOT_CONFIG + user_config(); +#else + printf("kernel does not support -c; continuing..\n"); +#endif + } } void |