Message ID | 20090620.171945.140676687.davem@davemloft.net |
---|---|
State | Not Applicable |
Delegated to: | David Miller |
Headers | show |
On Sunday 21 June 2009, David Miller wrote: > From: Frans Pop <elendil@planet.nl> > Date: Sat, 20 Jun 2009 23:52:33 +0200 > > > ide0 at 0x1fe02c00000-0x1fe02c00007,0x1fe02c0000a on irq 14 > > (serialized) irq 14: nobody cared (try booting with the "irqpoll" > > option) Call Trace: > > Try reverting this patch: > > commit 6b5cde3629701258004b94cde75dd1089b556b02 > Author: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> > Date: Mon Dec 29 20:27:32 2008 +0100 > > cmd64x: set IDE_HFLAG_SERIALIZE explictly for CMD646 Yes, that was my suspect too (see the later mail I sent). I'll give your partial revert a try. > Alternatively you can try using the pata_cmd64x.c driver instead :-) Well, that's not yet available in current Debian kernels. I did test pata_cmd64x once (way back in July 2007, when Alan Cox requested it), but have not used it since as I normally run distro kernels on the box. When I build the custom kernel with your patch I'll activate it and give it a try again. Thanks, FJP -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Sunday 21 June 2009 02:19:45 David Miller wrote: > From: Frans Pop <elendil@planet.nl> > Date: Sat, 20 Jun 2009 23:52:33 +0200 > > > ide0 at 0x1fe02c00000-0x1fe02c00007,0x1fe02c0000a on irq 14 (serialized) > > irq 14: nobody cared (try booting with the "irqpoll" option) > > Call Trace: > > Try reverting this patch: > > commit 6b5cde3629701258004b94cde75dd1089b556b02 > Author: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> > Date: Mon Dec 29 20:27:32 2008 +0100 > > cmd64x: set IDE_HFLAG_SERIALIZE explictly for CMD646 > > * Set IDE_HFLAG_SERIALIZE explictly for CMD646. > > * Remove no longer needed ide_cmd646 chipset type (which has > a nice side-effect of fixing handling of unexpected IRQs). > > Cc: Sergei Shtylyov <sshtylyov@ru.mvista.com> > Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Great work Sherlock, Frans has found this already by himself.. ;) > Unlike the commit log message states, I suspect this change > "introduces" incorrect handling of unexpected IRQs rather than > "fixing". I suspect the problem arises when the controller Please take a look at ide_intr() at the time of the commit: 1348 if ((handler = hwgroup->handler) == NULL || hwgroup->polling) { 1349 /* 1350 * Not expecting an interrupt from this drive. 1351 * That means this could be: 1352 * (1) an interrupt from another PCI device 1353 * sharing the same PCI INT# as us. 1354 * or (2) a drive just entered sleep or standby mode, 1355 * and is interrupting to let us know. 1356 * or (3) a spurious interrupt of unknown origin. 1357 * 1358 * For PCI, we cannot tell the difference, 1359 * so in that case we just ignore it and hope it goes away. 1360 * 1361 * FIXME: unexpected_intr should be hwif-> then we can 1362 * remove all the ifdef PCI crap 1363 */ 1364 #ifdef CONFIG_BLK_DEV_IDEPCI 1365 if (hwif->chipset != ide_pci) 1366 #endif /* CONFIG_BLK_DEV_IDEPCI */ Before the patch hwif->chipset was set to ide_cmd646 and CONFIG_BLK_DEV_IDEPCI was always 'y'. 1367 { 1368 /* 1369 * Probably not a shared PCI interrupt, 1370 * so we can safely try to do something about it: 1371 */ 1372 unexpected_intr(irq, hwgroup); 1373 #ifdef CONFIG_BLK_DEV_IDEPCI 1374 } else { 1375 /* 1376 * Whack the status register, just in case 1377 * we have a leftover pending IRQ. 1378 */ 1379 (void)hwif->tp_ops->read_status(hwif); 1380 #endif /* CONFIG_BLK_DEV_IDEPCI */ 1381 } 1382 goto out; 1383 } > has a pending interrupt before the kernel boots, and after the > reset the IDE layer now won't clear the thing properly due to > the IDE_HFLAG_SERIALIZE now being set. Because of hwif->chipset == ide_cmd646 IDE core has treated this chipset as serialized one anyway: init_irq(): 1061 if (h && h->hwgroup) { /* scan only initialized ports */ 1062 if (hwif->irq == h->irq) { 1063 hwif->sharing_irq = h->sharing_irq = 1; 1064 if (hwif->chipset != ide_pci || 1065 h->chipset != ide_pci) { 1066 save_match(hwif, h, &match); 1067 } 1068 } > I suspect the following logic in ide_intr() is being triggered: > > if (host->host_flags & IDE_HFLAG_SERIALIZE) { > if (hwif != host->cur_port) > goto out_early; > } > > so the interrupt isn't cleared and it just keeps trying to run the > interrupt handler over and over until the generic IRQ layer gives up > and shuts off the interrupt. > > This would make sense if the CMD64X chip reset code triggers the > interrupt, because I see absolutely nothing the makes sure > host->cur_port would be setup correctly to ensure that the interrupt > got services in that case. At the moment that we call request_irq() the first time both ports have already been probed. Since this includes reading device status there should be no pending IRQs at this point. IOW I think that this commit is just a trigger for some other issue (which in turn was uncovered by rework of handling of serialized interfaces). Welcome in the wonderful land of broken devices (we have a separate issue in this system -- ATAPI device returns buggy ID block and since we added stricter checks we will need to workaround it now to get DMA working), buggy controllers and no errata documentation. > I wonder how much testing this commit received... Too less, any help with improving testing coverage is welcomed (this was just a tiny part of very large rework which has been tested and has been sitting in linux-next for weeks before push to Linus). > Actually... the patch doesn't revert cleanly. Let me setup a > patch to test by hand. It just removes the IDE_HFLAG_SERIALIZE > flag from the chipset array entry. It would be worth to try it since IDE_HFLAG_SERIALIZE might be not needed by CMD646 chipset. It was suggested by mikpe & Sergei (IIRC) in the past and pata_cmd64x.c has never used serialization (though this a worthless data since initially libata didn't support serialization and some host drivers still lack it when needed) but we couldn't get a definitive answer without anybody testing the change. [ The problem is that it can potentially cause a data corruption if we are wrong. OTOH the worst thing that could happened with keeping it around was slower operation and (as discovered now) wrong handling of unexpected IRQs (so even slower operation). ] > Alternatively you can try using the pata_cmd64x.c driver instead :-) I fail to see how this is going to help with cmd64x.c testing coverage.. :( The good news now -- the current Linus tree contains the patches from Sergei adding support host-side testing/clearing of IRQs for hosts that support it (this includes CMD64x ones) that should in the long-term give us a saner and more reliable handling of shared and/or unexpected IRQs. Frans, could you try also the current Linus tree + David's patch? Thanks. Bart -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Sunday 21 June 2009 02:19:45 David Miller wrote: > Actually... the patch doesn't revert cleanly. Let me setup a > patch to test by hand. It just removes the IDE_HFLAG_SERIALIZE > flag from the chipset array entry. We still need to fix the root cause of "screaming IRQ" but in the meantime could you resend with your S-o-B (now that Frans has tested it)? > diff --git a/drivers/ide/cmd64x.c b/drivers/ide/cmd64x.c > index 80b777e..f98ba24 100644 > --- a/drivers/ide/cmd64x.c > +++ b/drivers/ide/cmd64x.c > @@ -425,8 +425,7 @@ static const struct ide_port_info cmd64x_chipsets[] __devinitdata = { > .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}}, > .port_ops = &cmd64x_port_ops, > .dma_ops = &cmd648_dma_ops, > - .host_flags = IDE_HFLAG_SERIALIZE | > - IDE_HFLAG_ABUSE_PREFETCH, > + .host_flags = IDE_HFLAG_ABUSE_PREFETCH, > .pio_mask = ATA_PIO5, > .mwdma_mask = ATA_MWDMA2, > .udma_mask = ATA_UDMA2, -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
From: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Date: Sun, 21 Jun 2009 15:15:56 +0200 > On Sunday 21 June 2009 02:19:45 David Miller wrote: >> I wonder how much testing this commit received... > > Too less, any help with improving testing coverage is welcomed > (this was just a tiny part of very large rework which has been tested > and has been sitting in linux-next for weeks before push to Linus). Maybe you should leave the driver alone until you can get affirmative testing results from people who have the hardware?!?!? :-/ And in leiu of that, simply leave it alone until such testing can actually be performed. That's why all the IDE drivers are constantly breaking on sparc. The IDE layer is more than legacy at this point, so if you aren't fixing bugs (those reported by users and the fix for which can be absolutely tested), just leave it be. So this totally eliminates any argument you may have about necessary "infrastructure" changes that might be blocked by not being able to make these kinds modifications to drivers for devices you can't even test. -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
From: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Date: Sun, 21 Jun 2009 17:43:09 +0200 > On Sunday 21 June 2009 02:19:45 David Miller wrote: > >> Actually... the patch doesn't revert cleanly. Let me setup a >> patch to test by hand. It just removes the IDE_HFLAG_SERIALIZE >> flag from the chipset array entry. > > We still need to fix the root cause of "screaming IRQ" but in the meantime > could you resend with your S-o-B (now that Frans has tested it)? I deleted the patch, just add my signoff to my original patch. Signed-off-by: David S. Miller <davem@davemloft.net> -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/ide/cmd64x.c b/drivers/ide/cmd64x.c index 80b777e..f98ba24 100644 --- a/drivers/ide/cmd64x.c +++ b/drivers/ide/cmd64x.c @@ -425,8 +425,7 @@ static const struct ide_port_info cmd64x_chipsets[] __devinitdata = { .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}}, .port_ops = &cmd64x_port_ops, .dma_ops = &cmd648_dma_ops, - .host_flags = IDE_HFLAG_SERIALIZE | - IDE_HFLAG_ABUSE_PREFETCH, + .host_flags = IDE_HFLAG_ABUSE_PREFETCH, .pio_mask = ATA_PIO5, .mwdma_mask = ATA_MWDMA2, .udma_mask = ATA_UDMA2,