Subject: Re: Continued Callenge 's' mezzanine attempts
To: None <port-sgimips@netbsd.org>
From: Christopher SEKIYA <wileyc@rezrov.net>
List: port-sgimips
Date: 02/06/2002 23:30:59
On Wed, Feb 06, 2002 at 02:19:56PM +0000, Steve Foster wrote:

> sq1 at hpc1 offset 0x54000panic: cannot share CPU interrupts

if_sq.c:

        if ((cpu_intr_establish(haa->ha_irq, IPL_NET, sq_intr, sc)) == NULL) {
                printf(": unable to establish interrupt!\n");
                goto fail_6;
        }

ip22.c:

        if (intrtab[level].ih_fun != NULL)
                panic("cannot share CPU interrupts");

The ip22 code doesn't take multiple HPCs into account, and the autoconfig
assumes the sq IRQ vector is known.

-- Chris