Subject: Re: NEC Mobilepro880 doesn't boot with current or netbsd-4
To: None <acruhl@gmail.com>
From: Jun Ebihara <jun@soum.co.jp>
List: port-hpcmips
Date: 01/21/2007 09:34:09
From: "Andy Ruhl" <acruhl@gmail.com>
Subject: NEC Mobilepro880 doesn't boot with current or netbsd-4
Date: Sat, 20 Jan 2007 09:45:06 -0700

> mqvideo0: framebuffer address: 0xaa0ea600
> trap: TLB miss (load or instr. fetch) in kernel mode

there is a bug in MQ200 initialization.
Disable MQ200 from kernel configration. 

src/sys/arch/hpcmips/dev/mq200machdep.c:

void
mq200_mdsetup(struct mq200_softc *sc)
{
        const struct mq200_md_param *mdp;

        sc->sc_md = NULL;
        for (mdp = machdep_params; mdp->md_platform != NULL; mdp++) {
                                   ~~~~~~~~~~~~~~~~~~~~~~~~

---
jun ebihara