From: Alan Cox <alan@lxorguk.ukuu.org.uk>
To: torvalds@osdl.org,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Bartlomiej Zolnierkiewicz <B.Zolnierkiewicz@elka.pw.edu.pl>
Subject: PATCH: 2.6.10 - Add support for CSB6 RAID
Date: Mon, 27 Dec 2004 14:01:56 +0000 [thread overview]
Message-ID: <1104156116.20898.7.camel@localhost.localdomain> (raw)
The serverworks chips include a raid variant that the 2.6 driver didn't
support. This enables support for this and removes a pile of #if and
other pointless obfuscations. This removes the need to use various
vendor binary only drivers for CSB6 RAID
diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.10/drivers/ide/pci/serverworks.c linux-2.6.10/drivers/ide/pci/serverworks.c
--- linux.vanilla-2.6.10/drivers/ide/pci/serverworks.c 2004-12-25 21:15:34.000000000 +0000
+++ linux-2.6.10/drivers/ide/pci/serverworks.c 2004-12-26 18:50:17.058127504 +0000
@@ -359,11 +359,9 @@
else if ((dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB5IDE) ||
(dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE) ||
(dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB6IDE2)) {
-// u32 pioreg = 0, dmareg = 0;
/* Third Channel Test */
if (!(PCI_FUNC(dev->devfn) & 1)) {
-#if 1
struct pci_dev * findev = NULL;
u32 reg4c = 0;
findev = pci_find_device(PCI_VENDOR_ID_SERVERWORKS,
@@ -375,19 +373,11 @@
reg4c |= 0x00000020;
pci_write_config_dword(findev, 0x4C, reg4c);
}
-#endif
outb_p(0x06, 0x0c00);
dev->irq = inb_p(0x0c01);
#if 0
- /* WE need to figure out how to get the correct one */
- printk("%s: interrupt %d\n", name, dev->irq);
- if (dev->irq != 0x0B)
- dev->irq = 0x0B;
-#endif
-#if 0
printk("%s: device class (0x%04x)\n",
name, dev->class);
-#else
if ((dev->class >> 8) != PCI_CLASS_STORAGE_IDE) {
dev->class &= ~0x000F0F00;
// dev->class |= ~0x00000400;
@@ -413,7 +403,8 @@
* interrupt pin to be set, and it is a compatibility
* mode issue.
*/
- dev->irq = 0;
+ if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE)
+ dev->irq = 0;
}
// pci_read_config_dword(dev, 0x40, &pioreg)
// pci_write_config_dword(dev, 0x40, 0x99999999);
@@ -577,9 +568,6 @@
d->bootable = NEVER_BOARD;
if (dev->resource[0].start == 0x01f1)
d->bootable = ON_BOARD;
- } else {
- if ((dev->class >> 8) != PCI_CLASS_STORAGE_IDE)
- return;
}
#if 0
if ((IDE_PCI_DEVID_EQ(d->devid, DEVID_CSB6) &&
@@ -625,10 +613,6 @@
.name = "Serverworks_IDE",
.id_table = svwks_pci_tbl,
.probe = svwks_init_one,
-#if 0 /* FIXME: implement */
- .suspend = ,
- .resume = ,
-#endif
};
static int svwks_ide_init(void)
next reply other threads:[~2004-12-27 15:06 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-12-27 14:01 Alan Cox [this message]
2004-12-30 21:50 ` PATCH: 2.6.10 - Add support for CSB6 RAID Bartlomiej Zolnierkiewicz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1104156116.20898.7.camel@localhost.localdomain \
--to=alan@lxorguk.ukuu.org.uk \
--cc=B.Zolnierkiewicz@elka.pw.edu.pl \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@osdl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox