Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751456AbWIAKsy (ORCPT ); Fri, 1 Sep 2006 06:48:54 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751457AbWIAKsy (ORCPT ); Fri, 1 Sep 2006 06:48:54 -0400 Received: from webmail.netprotector.fi ([81.209.6.194]:55488 "EHLO mail.osp.fi") by vger.kernel.org with ESMTP id S1751456AbWIAKsx (ORCPT ); Fri, 1 Sep 2006 06:48:53 -0400 Message-ID: <44F81013.4030904@osp.fi> Date: Fri, 01 Sep 2006 13:48:51 +0300 From: Johnny Strom User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.8) Gecko/20060803 Debian/1.7.8-1sarge7.2.1 X-Accept-Language: en MIME-Version: 1.0 To: Andrew Morton Cc: linux-kernel@vger.kernel.org, Chris Wedgwood Subject: Re: Patch to make VIA sata board bootable again. References: <44F7EC15.8040800@osp.fi> <20060901014745.750e69d1.akpm@osdl.org> In-Reply-To: <20060901014745.750e69d1.akpm@osdl.org> Content-Type: multipart/mixed; boundary="------------090101000401040509030106" Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2690 Lines: 79 This is a multi-part message in MIME format. --------------090101000401040509030106 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Andrew Morton wrote: > On Fri, 01 Sep 2006 11:15:17 +0300 > Johnny Strom wrote: > > >> >>Hello >> >>The quirks.c update that went into 2.6.16.17 made an VIA machine here >>non bootable from an sata drive (via_sata), the error is: >> >>"ATA1 qc timout" >>"Failed to set xfermode". > > > argh. > > Does 2.6.18-rc5 work? > No it is the same problem with 2.6.18-rc5. > >>And later kernel panic becouse no sata disk was found. >>I tracked it down to the quirk update in 2.6.16.17. Below is a patch >>against 2.6.17.11 that reverses the uppdate and makse the system >>bootable again. >> >>Another option is to find out the PCI_DEVICE_ID_VIA for the motherboard >>in question but I could not get that info. Dose someone have an idea how >>to find that info? then I can provide an patch that adds the right >>PCI_DEVICE_ID_VIA for my motherboard. > > > That's wordwrapped. > Attached an new diff. Johnny --------------090101000401040509030106 Content-Type: text/x-patch; name="quirks.c-via-fix.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="quirks.c-via-fix.diff" diff -ur linux-2.6.17.11-org/drivers/pci/quirks.c linux-2.6.17.11/drivers/pci/quirks.c --- linux-2.6.17.11-org/drivers/pci/quirks.c 2006-09-01 10:38:31.135747500 +0300 +++ linux-2.6.17.11/drivers/pci/quirks.c 2006-09-01 10:42:28.870605000 +0300 @@ -652,13 +652,7 @@ pci_write_config_byte(dev, PCI_INTERRUPT_LINE, new_irq); } } -DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_0, quirk_via_irq); -DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_1, quirk_via_irq); -DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_2, quirk_via_irq); -DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_3, quirk_via_irq); -DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686, quirk_via_irq); -DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686_4, quirk_via_irq); -DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686_5, quirk_via_irq); +DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_VIA, PCI_ANY_ID, quirk_via_irq); /* * VIA VT82C598 has its device ID settable and many BIOSes --------------090101000401040509030106-- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/