Re: HighPoint 374

From: Jindrich Makovicka
Date: Tue Oct 21 2003 - 04:25:24 EST


With my EPoX 8K9A3+, I had to hack the kernel to get the HPT374 running at all, as it reported slightly higher PCI clock than 33MHz, although the machine wasn't overclocked, but it seems to run fine. The current driver supports only 33MHz clock, which is probably the reason HPT374 isn't even initialized in some cases.

--
Jindrich Makovicka
--- hpt366.c.orig 2003-08-26 15:08:59.000000000 +0200
+++ hpt366.c 2003-08-26 15:09:46.000000000 +0200
@@ -808,6 +808,8 @@
printk("HPT37X: using 33MHz PCI clock\n");
} else if (freq < 0xb0) {
pll = F_LOW_PCI_40;
+ if (hpt_minimum_revision(dev,8))
+ pci_set_drvdata(dev, (void *) thirty_three_base_hpt374);
} else if (freq < 0xc8) {
pll = F_LOW_PCI_50;
if (hpt_minimum_revision(dev,8))