[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: antares qlogic sbus scsi controller ?




Eric Brower wrote:
Heitzso wrote:

I have an sbus antares (actually a qlogic)
fast/wide scsi2 controller in my ss20 that the
bootprom finds and solaris found and used but
my 2.2.25 kernel flags as missing an interrupt
and skips over.


I think you are talking seeing this:

 >             /* Sometimes Antares cards come up not completely
 >              * setup, and we get a report of a zero IRQ.
 >              * Skip over them in such cases so we survive.
 >              */
 >             if (sdev->irqs[0] == 0) {
 >                 printk("qpti%d: Adapter reports no interrupt, "
 >                        "skipping over this card.", nqptis);
 >                 continue;
 >             }


My guess is "sometimes" in the above comment means "On sun4c/d/m".

If you wanted to test in 2.2.x without the aforementioned patch, you might be able to do something like (specific to your sun4m):

if (sdev->irqs[0] == 0) {
	sdev->irqs[0] = 0x35;
	printk("qpti%d: Adapter reports no interrupt, "
		"blindly assigning irq 0x35\n");
}

...and see how the rest of the driver likes your card. This is just off the top of my head-- no guarantees, of course.

E



Reply to: