All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: PATCH: Fix 2.6.18-rc6 IDE breakage, add missing ident needed for current VIA boards
  2006-09-11 13:45 PATCH: Fix 2.6.18-rc6 IDE breakage, add missing ident needed for current VIA boards Alan Cox
@ 2006-09-11 13:31 ` Jeff Garzik
  2006-09-11 14:59   ` Alan Cox
  0 siblings, 1 reply; 4+ messages in thread
From: Jeff Garzik @ 2006-09-11 13:31 UTC (permalink / raw)
  To: Alan Cox; +Cc: torvalds, linux-kernel

Alan Cox wrote:
> Ok Linus this should do the trick and is tested on the chipsets I have.
> There are two patches here. The first reverses the broken PCI_DEVICE
> conversion back to the old format. The second adds a missing PCI ID so 
> you can actually boot 2.6.18 on 2 month old VIA motherboards (right now only
> 2.6.18-mm works).

Two totally separate issues should be two totally separate patches.

For the first:
* just add the missing zeroes.  No need to revert PCI_DEVICE() usage.

For the second:
* the sata_via PCI ID has been queued for 2.6.19 for quite a while.  I 
don't see a hugely pressing need for it to be in 2.6.18, but it's not a 
big deal to me.

	Jeff



^ permalink raw reply	[flat|nested] 4+ messages in thread

* PATCH: Fix 2.6.18-rc6 IDE breakage, add missing ident needed for current VIA boards
@ 2006-09-11 13:45 Alan Cox
  2006-09-11 13:31 ` Jeff Garzik
  0 siblings, 1 reply; 4+ messages in thread
From: Alan Cox @ 2006-09-11 13:45 UTC (permalink / raw)
  To: torvalds, linux-kernel, jgarzik

Ok Linus this should do the trick and is tested on the chipsets I have.
There are two patches here. The first reverses the broken PCI_DEVICE
conversion back to the old format. The second adds a missing PCI ID so 
you can actually boot 2.6.18 on 2 month old VIA motherboards (right now only
2.6.18-mm works).

CC'd to Jeff to check the PCI ident but its a) in several distro kernels
and b) in 2.6.18-mm [twice ??]

Signed-off-by: Alan Cox <alan@redhat.com>


diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.18-rc6/drivers/ide/pci/aec62xx.c linux-2.6.18-rc6/drivers/ide/pci/aec62xx.c
--- linux.vanilla-2.6.18-rc6/drivers/ide/pci/aec62xx.c	2006-09-11 11:02:12.000000000 +0100
+++ linux-2.6.18-rc6/drivers/ide/pci/aec62xx.c	2006-09-11 11:13:16.000000000 +0100
@@ -425,12 +425,12 @@
 	return d->init_setup(dev, d);
 }
 
-static const struct pci_device_id aec62xx_pci_tbl[] = {
-	{ PCI_DEVICE(PCI_VENDOR_ID_ARTOP, PCI_DEVICE_ID_ARTOP_ATP850UF), 0 },
-	{ PCI_DEVICE(PCI_VENDOR_ID_ARTOP, PCI_DEVICE_ID_ARTOP_ATP860), 1 },
-	{ PCI_DEVICE(PCI_VENDOR_ID_ARTOP, PCI_DEVICE_ID_ARTOP_ATP860R), 2 },
-	{ PCI_DEVICE(PCI_VENDOR_ID_ARTOP, PCI_DEVICE_ID_ARTOP_ATP865), 3 },
-	{ PCI_DEVICE(PCI_VENDOR_ID_ARTOP, PCI_DEVICE_ID_ARTOP_ATP865R), 4 },
+static struct pci_device_id aec62xx_pci_tbl[] = {
+	{ PCI_VENDOR_ID_ARTOP, PCI_DEVICE_ID_ARTOP_ATP850UF, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
+	{ PCI_VENDOR_ID_ARTOP, PCI_DEVICE_ID_ARTOP_ATP860,   PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1 },
+	{ PCI_VENDOR_ID_ARTOP, PCI_DEVICE_ID_ARTOP_ATP860R,  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2 },
+	{ PCI_VENDOR_ID_ARTOP, PCI_DEVICE_ID_ARTOP_ATP865,   PCI_ANY_ID, PCI_ANY_ID, 0, 0, 3 },
+	{ PCI_VENDOR_ID_ARTOP, PCI_DEVICE_ID_ARTOP_ATP865R,  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4 },
 	{ 0, },
 };
 MODULE_DEVICE_TABLE(pci, aec62xx_pci_tbl);
diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.18-rc6/drivers/ide/pci/serverworks.c linux-2.6.18-rc6/drivers/ide/pci/serverworks.c
--- linux.vanilla-2.6.18-rc6/drivers/ide/pci/serverworks.c	2006-09-11 11:02:12.000000000 +0100
+++ linux-2.6.18-rc6/drivers/ide/pci/serverworks.c	2006-09-11 11:13:33.000000000 +0100
@@ -649,11 +649,11 @@
 }
 
 static struct pci_device_id svwks_pci_tbl[] = {
-	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_OSB4IDE), 0},
-	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_CSB5IDE), 1},
-	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_CSB6IDE), 2},
-	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_CSB6IDE2), 3},
-	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_HT1000IDE), 4},
+	{ PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_OSB4IDE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
+	{ PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_CSB5IDE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1},
+	{ PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_CSB6IDE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2},
+	{ PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_CSB6IDE2, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 3},
+	{ PCI_VENDOR_ID_SERVERWORKS, PCI_DEVICE_ID_SERVERWORKS_HT1000IDE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4},
 	{ 0, },
 };
 MODULE_DEVICE_TABLE(pci, svwks_pci_tbl);
diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.18-rc6/drivers/ide/pci/siimage.c linux-2.6.18-rc6/drivers/ide/pci/siimage.c
--- linux.vanilla-2.6.18-rc6/drivers/ide/pci/siimage.c	2006-09-11 11:02:12.000000000 +0100
+++ linux-2.6.18-rc6/drivers/ide/pci/siimage.c	2006-09-11 11:13:58.000000000 +0100
@@ -1082,10 +1082,10 @@
 }
 
 static struct pci_device_id siimage_pci_tbl[] = {
-	{ PCI_DEVICE(PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_SII_680), 0},
+	{ PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_SII_680,  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
 #ifdef CONFIG_BLK_DEV_IDE_SATA
-	{ PCI_DEVICE(PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_SII_3112), 1},
-	{ PCI_DEVICE(PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_SII_1210SA), 2},
+	{ PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_SII_3112, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1},
+	{ PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_SII_1210SA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2},
 #endif
 	{ 0, },
 };
diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.18-rc6/drivers/scsi/sata_via.c linux-2.6.18-rc6/drivers/scsi/sata_via.c
--- linux.vanilla-2.6.18-rc6/drivers/scsi/sata_via.c	2006-09-11 11:02:26.000000000 +0100
+++ linux-2.6.18-rc6/drivers/scsi/sata_via.c	2006-09-11 11:15:30.000000000 +0100
@@ -77,6 +77,7 @@
 static void vt6420_error_handler(struct ata_port *ap);
 
 static const struct pci_device_id svia_pci_tbl[] = {
+	{ 0x1106, 0x0591, PCI_ANY_ID, PCI_ANY_ID, 0, 0, vt6420 },
 	{ 0x1106, 0x3149, PCI_ANY_ID, PCI_ANY_ID, 0, 0, vt6420 },
 	{ 0x1106, 0x3249, PCI_ANY_ID, PCI_ANY_ID, 0, 0, vt6421 },
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: PATCH: Fix 2.6.18-rc6 IDE breakage, add missing ident needed for current VIA boards
  2006-09-11 13:31 ` Jeff Garzik
@ 2006-09-11 14:59   ` Alan Cox
  2006-09-11 18:12     ` Adrian Bunk
  0 siblings, 1 reply; 4+ messages in thread
From: Alan Cox @ 2006-09-11 14:59 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: torvalds, linux-kernel

Ar Llu, 2006-09-11 am 09:31 -0400, ysgrifennodd Jeff Garzik:
> For the first:
> * just add the missing zeroes.  No need to revert PCI_DEVICE() usage.

Safer to revert thats all

> For the second:
> * the sata_via PCI ID has been queued for 2.6.19 for quite a while.  I 
> don't see a hugely pressing need for it to be in 2.6.18, but it's not a 
> big deal to me.

Many of the current VIA mainboards have that ID so I would say its
pressing as it is "out there", and if 2.6.19 is another 2 months away...


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: PATCH: Fix 2.6.18-rc6 IDE breakage, add missing ident needed for current VIA boards
  2006-09-11 14:59   ` Alan Cox
@ 2006-09-11 18:12     ` Adrian Bunk
  0 siblings, 0 replies; 4+ messages in thread
From: Adrian Bunk @ 2006-09-11 18:12 UTC (permalink / raw)
  To: Alan Cox; +Cc: Jeff Garzik, torvalds, linux-kernel

On Mon, Sep 11, 2006 at 03:59:24PM +0100, Alan Cox wrote:
> Ar Llu, 2006-09-11 am 09:31 -0400, ysgrifennodd Jeff Garzik:
>...
> > For the second:
> > * the sata_via PCI ID has been queued for 2.6.19 for quite a while.  I 
> > don't see a hugely pressing need for it to be in 2.6.18, but it's not a 
> > big deal to me.
> 
> Many of the current VIA mainboards have that ID so I would say its
> pressing as it is "out there", and if 2.6.19 is another 2 months away...

Unless I missed the reason why kernel releases will suddenly become more 
frequent, it's another 3 months away...

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-09-11 18:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-09-11 13:45 PATCH: Fix 2.6.18-rc6 IDE breakage, add missing ident needed for current VIA boards Alan Cox
2006-09-11 13:31 ` Jeff Garzik
2006-09-11 14:59   ` Alan Cox
2006-09-11 18:12     ` Adrian Bunk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.