Is it posible to run FreeBSD/sparc64 on SunFire V215?

Marius Strobl marius at alchemy.franken.de
Wed Sep 23 00:30:07 UTC 2009


On Tue, Sep 22, 2009 at 06:22:22PM +0400, KOT MATPOCKuH wrote:
> Hello!
> 
> 2009/9/21 Marius Strobl <marius at alchemy.franken.de>:
> >> pcib1: <OFW PCI-PCI bridge> mem 0x100pcib0: DMC error: MMU error 0x4000000040
> >> panic: pcib0: fatal DMC/PEC error
> > Please re-fetch fire.diff and try again.
> I have a new panic logs :)
> http://kot.spb.ru/tmp/fbsd/boot.log.0 (with -sv)
> http://kot.spb.ru/tmp/fbsd/boot.log.1 (without)
> 

Please try booting the same kernel using the following loader:
http://people.freebsd.org/~marius/loader

If that still results in the following panic:
pcib0: DMC error: MMU error 0x4000000040
panic: pcib0: fatal DMC/PEC error
locate the following lines in fire.c:
	/* not enabled by OpenSolaris *
	FIRE_PCI_SET(sc, FO_PCI_MMU_INT_EN,
	    FO_PCI_MMU_ERR_INT_S_MASK | FO_PCI_MMU_ERR_INT_P_MASK);
and replace them with:
	FIRE_PCI_SET(sc, FO_PCI_MMU_INT_EN,
	    (FO_PCI_MMU_ERR_INT_S_MASK | FO_PCI_MMU_ERR_INT_P_MASK) &
	    ~(FO_PCI_MMU_ERR_INT_TTE_INV_S | FO_PCI_MMU_ERR_INT_TTE_INV_P));
Then try again with a kernel built with that change in place
(the loader shouldn't matter in this case).

Marius



More information about the freebsd-sparc64 mailing list