This commit is contained in:
fredette 2001-03-29 03:24:19 +00:00
parent 0640ad6ace
commit 6095b6e2ff
2 changed files with 1479 additions and 0 deletions

1013
sys/arch/sun2/sun2/locore.s Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,466 @@
/* $NetBSD: locore2.c,v 1.1 2001/03/29 03:26:13 fredette Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Adam Glass, Gordon W. Ross, and Matthew Fredette.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "opt_ddb.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/reboot.h>
#include <sys/user.h>
#include <sys/exec_aout.h>
#include <vm/vm.h>
#include <machine/cpu.h>
#include <machine/db_machdep.h>
#include <machine/dvma.h>
#include <machine/idprom.h>
#include <machine/leds.h>
#include <machine/mon.h>
#include <machine/pmap.h>
#include <machine/pte.h>
#include <machine/stdarg.h>
#include <sun3/sun3/control.h>
#include <sun3/sun3/interreg.h>
#include <sun3/sun3/machdep.h>
#include <sun3/sun3/obmem.h>
#include <sun3/sun3/vector.h>
/* This is defined in locore.s */
extern char kernel_text[];
/* These are defined by the linker */
extern char etext[], edata[], end[];
char *esym; /* DDB */
/*
* XXX: m68k common code needs these...
* ... but this port does not need to deal with anything except
* an mc68010, so these two variables are always ignored.
* XXX: Need to do something about <m68k/include/cpu.h>
*/
int cputype = -1; /* CPU_68010 */
int mmutype = 2; /* MMU_SUN */
/*
* Now our own stuff.
*/
u_char cpu_machine_id = 0;
char *cpu_string = NULL;
int cpu_has_multibus = 0;
int cpu_has_vme = 0;
struct sunromvec _captive_romVectorPtr;
static u_int _mon_memorySize;
static u_char _mon_inSource;
static u_char _mon_outSink;
static struct bootparam *_mon_bootParam;
static struct bootparam _mon_bootParamBuf;
/*
* XXX - Should empirically estimate the divisor...
* Note that the value of delay_divisor is roughly
* 2048 / cpuclock (where cpuclock is in MHz).
*/
int delay_divisor = 82; /* assume the fastest (3/260) */
extern int physmem;
struct user *proc0paddr; /* proc[0] pcb address (u-area VA) */
extern struct pcb *curpcb;
/* First C code called by locore.s */
void _bootstrap __P((struct exec));
static void _verify_hardware __P((void));
static void _vm_init __P((struct exec *kehp));
#if defined(DDB) && !defined(SYMTAB_SPACE)
static void _save_symtab __P((struct exec *kehp));
/*
* Preserve DDB symbols and strings by setting esym.
*/
static void
_save_symtab(kehp)
struct exec *kehp; /* kernel exec header */
{
int x, *symsz, *strsz;
char *endp, *errdesc;
/* Initialize */
endp = end;
symsz = (int*)end;
/*
* Sanity-check the exec header.
*/
errdesc = "bad magic";
if ((kehp->a_midmag & 0xFFF0) != 0x0100)
goto err;
/* Boundary between text and data varries a little. */
errdesc = "bad header";
x = kehp->a_text + kehp->a_data;
if (x != (edata - kernel_text))
goto err;
if (kehp->a_bss != (end - edata))
goto err;
if (kehp->a_entry != (int)kernel_text)
goto err;
if (kehp->a_trsize || kehp->a_drsize)
goto err;
/* The exec header looks OK... */
/* Check the symtab length word. */
errdesc = "bad symbols/strings";
if (kehp->a_syms != *symsz)
goto err;
endp += sizeof(int); /* past length word */
endp += *symsz; /* past nlist array */
/* Sanity-check the string table length. */
strsz = (int*)endp;
if ((*strsz < 4) || (*strsz > 0x80000))
goto err;
/* OK, we have a valid symbol table. */
endp += *strsz; /* past strings */
#ifdef _SUN3_
/*
* The Sun3/50 has further restrictions on the
* size of the kernel boot image. If preserving
* the symbol table would take us over the limit,
* then just ignore the symbols.
*/
if ((cpu_machine_id == SUN3_MACH_50) &&
((long)endp > (KERNBASE+OBMEM_BW50_ADDR-USPACE))) {
errdesc = "too large for 3/50";
goto err;
}
#endif /* SUN3 */
/* Success! Advance esym past the symbol data. */
esym = endp;
return;
err:
/*
* Make sure the later call to ddb_init()
* will pass zero as the symbol table size.
*/
*symsz = 0;
mon_printf("_save_symtab: %s\n", errdesc);
}
#endif /* DDB && !SYMTAB_SPACE */
/*
* This function is called from _bootstrap() to initialize
* pre-vm-sytem virtual memory. All this really does is to
* set virtual_avail to the first page following preloaded
* data (i.e. the kernel and its symbol table) and special
* things that may be needed very early (proc0 upages).
* Once that is done, pmap_bootstrap() is called to do the
* usual preparations for our use of the MMU.
*/
static void
_vm_init(kehp)
struct exec *kehp; /* kernel exec header */
{
vm_offset_t nextva;
/*
* First preserve our symbol table, which might have been
* loaded after our BSS area by the boot loader. However,
* if DDB is not part of this kernel, ignore the symbols.
*/
esym = end + 4;
#if defined(DDB) && !defined(SYMTAB_SPACE)
/* This will advance esym past the symbols. */
_save_symtab(kehp);
#endif
/*
* Steal some special-purpose, already mapped pages.
* Note: msgbuf is setup in machdep.c:cpu_startup()
*/
nextva = m68k_round_page(esym);
/*
* Setup the u-area pages (stack, etc.) for proc0.
* This is done very early (here) to make sure the
* fault handler works in case we hit an early bug.
* (The fault handler may reference proc0 stuff.)
*/
proc0paddr = (struct user *) nextva;
nextva += USPACE;
bzero((caddr_t)proc0paddr, USPACE);
proc0.p_addr = proc0paddr;
/*
* Now that proc0 exists, make it the "current" one.
*/
curproc = &proc0;
curpcb = &proc0paddr->u_pcb;
/* This does most of the real work. */
pmap_bootstrap(nextva);
}
/*
* Determine which Sun2 model we are running on.
#if 0
* We have to do this very early on the Sun3 because
* pmap_bootstrap() needs to know if it should avoid
* the video memory on the Sun3/50.
#endif
*
* XXX: Just save idprom.idp_machtype here, and
* XXX: move the rest of this to identifycpu().
* XXX: Move cache_size stuff to cache.c.
*/
static void
_verify_hardware()
{
unsigned char machtype;
int cpu_match = 0;
machtype = identity_prom.idp_machtype;
if ((machtype & IDM_ARCH_MASK) != IDM_ARCH_SUN2) {
mon_printf("Bad IDPROM arch!\n");
sunmon_abort();
}
cpu_machine_id = machtype;
switch (cpu_machine_id) {
case SUN2_MACH_120 :
cpu_match++;
cpu_string = "{120,170}";
delay_divisor = 205; /* 10 MHz */
cpu_has_multibus = TRUE;
break;
case SUN2_MACH_50 :
cpu_match++;
cpu_string = "50";
delay_divisor = 205; /* 10 MHz */
cpu_has_vme = TRUE;
break;
default:
mon_printf("unknown sun2 model\n");
sunmon_abort();
}
if (!cpu_match) {
mon_printf("kernel not configured for the Sun 2 model\n");
sunmon_abort();
}
}
/*
* This is definitely a hack. The PROM keeps its data is in the first
* four physical pages, and assumes that they're mapped to the first
* four virtual pages (i.e., segment zero). Normally we keep segment
* zero either unmapped or mapped to something else entirely, so
* before we can call the PROM, we have to set up its mapping. The
* pmeg to use is the same one used to map KERNBASE, since KERNBASE
* points to the first four physical pages. To make this somewhat
* transparent, in include/mon.h we capture romVectorPtr and point
* it to a copy we make of the PROM's vectors, fixed up to call these
* captive functions.
*/
#define _CAPTIVE_PROM_FUNC(func, proto, args) \
static int __CONCAT(_mon_, func) __P(proto); \
static int __CONCAT(_mon_, func) proto \
{ \
int sme, rc; \
int saved_ctx; \
saved_ctx = get_context(); \
set_context(0); \
sme = get_segmap(0); \
set_segmap(0, get_segmap(KERNBASE)); \
rc = (*((struct sunromvec *) SUN2_PROM_BASE)->func) args; \
set_segmap(0, sme); \
set_context(saved_ctx); \
return(rc); \
}
_CAPTIVE_PROM_FUNC(fbWriteStr, (char *buf, int len), (buf, len))
_CAPTIVE_PROM_FUNC(fbWriteChar, (int c), (c))
_CAPTIVE_PROM_FUNC(putChar, (int c), (c))
_CAPTIVE_PROM_FUNC(mayGet, (void), ())
_CAPTIVE_PROM_FUNC(exitToMon, (void), ())
_CAPTIVE_PROM_FUNC(reBoot, (char *str), (str))
#undef _CAPTIVE_PROM_FUNC
/*
* printf is difficult, because it's a varargs function.
* This is very ugly. Please fix me!
*/
static int
#ifdef __STDC__
_mon_printf(char *fmt, ...)
#else
_mon_printf(fmt, va_alist)
char *fmt;
va_dcl
#endif
{
int sme, rc;
int saved_ctx;
va_list ap;
const char *p1;
char c1;
struct printf_args {
int arg[15];
} varargs;
int i;
/*
* Since the PROM obviously doesn't take a va_list, we conjure
* up a structure of ints to hold the arguments, and pass it
* the structure (*not* a pointer to the structure!) to get
* the same effect. This means there is a limit on the number
* of arguments you can use with mon_printf. Ugly indeed.
*/
va_start(ap, fmt);
i = 0;
for(p1 = fmt; (c1 = *(p1++)) != '\0'; ) {
if (c1 == '%') {
if (i == (sizeof(varargs.arg) / sizeof(varargs.arg[0]))) {
mon_printf("too many args to mon_printf, format %s", fmt);
sunmon_abort();
}
varargs.arg[i++] = va_arg(ap, int);
}
}
va_end(ap);
/* now call the monitor's printf: */
saved_ctx = get_context();
set_context(0);
sme = get_segmap(0);
set_segmap(0, get_segmap(KERNBASE));
rc = (*
/* the ghastly type we cast the PROM printf vector to: */
( (int (*) __P((const char *, struct printf_args)))
/* the PROM printf vector: */
(((struct sunromvec *) SUN2_PROM_BASE)->printf))
)(fmt, varargs);
set_segmap(0, sme);
set_context(saved_ctx);
return(rc);
}
/*
* This is called from locore.s just after the kernel is remapped
* to its proper address, but before the call to main(). The work
* done here corresponds to various things done in locore.s on the
* hp300 port (and other m68k) but which we prefer to do in C code.
* Also do setup specific to the Sun PROM monitor and IDPROM here.
*/
void
_bootstrap(keh)
struct exec keh; /* kernel exec header */
{
struct sunromvec *v;
/* First, Clear BSS. */
bzero(edata, end - edata);
/*
* Make our captive ROM vector and data. See the
* explanation above for an explanation of this hack.
*/
v = (struct sunromvec *) SUN2_PROM_BASE;
_captive_romVectorPtr = *v;
_mon_memorySize = *v->memorySize;
_mon_inSource = *v->inSource;
_mon_outSink = *v->outSink;
_mon_bootParam = &_mon_bootParamBuf;
_mon_bootParamBuf = **v->bootParam;
_captive_romVectorPtr.memorySize = &_mon_memorySize;
_captive_romVectorPtr.inSource = &_mon_inSource;
_captive_romVectorPtr.outSink = &_mon_outSink;
_captive_romVectorPtr.bootParam = &_mon_bootParam;
#define _CAPTURE_PROM_FUNC(func) _captive_romVectorPtr.func = __CONCAT(_mon_, func)
_CAPTURE_PROM_FUNC(fbWriteStr);
_CAPTURE_PROM_FUNC(fbWriteChar);
_CAPTURE_PROM_FUNC(putChar);
_CAPTURE_PROM_FUNC(mayGet);
_CAPTURE_PROM_FUNC(exitToMon);
_CAPTURE_PROM_FUNC(reBoot);
_CAPTURE_PROM_FUNC(printf);
#undef _CAPTURE_PROM_FUNC
/* Set v_handler, get boothowto. */
sunmon_init();
/* Copy the IDPROM from control space. */
idprom_init();
/* Validate the Sun2 model (from IDPROM). */
_verify_hardware();
/* Handle kernel mapping, pmap_bootstrap(), etc. */
_vm_init(&keh);
/*
* Find and save OBIO and OBMEM mappings needed early,
* and call some init functions.
*/
obio_init();
obmem_init();
/*
* Point interrupts/exceptions to our vector table.
* (Until now, we use the one setup by the PROM.)
*/
setvbr((void **)vector_table);
/* Interrupts are enabled later, after autoconfig. */
/*
* Turn on the LEDs so we know power is on.
* Needs idprom_init and obio_init earlier.
*/
leds_init();
}