All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2.6.20-rc2-mm1] HPT36x PCI clock detection fix
@ 2006-12-30 19:36 Sergei Shtylyov
  2007-01-02 20:20 ` Bartlomiej Zolnierkiewicz
  0 siblings, 1 reply; 2+ messages in thread
From: Sergei Shtylyov @ 2006-12-30 19:36 UTC (permalink / raw)
  To: akpm, bzolnier; +Cc: linux-ide, alan

Fix minor coding mistake in the HPT36x PCI clock detection code noticed by
Bartlomiej Zolnierkiewicz -- it always reported 33 MHz due to the missing
'break' statements.  This, however, most probably never mattered -- in fact,
I was thinking of removing the 25/40 MHz cases completely since HPT36x BIOSes
didn't seem to set any other value than 7 into the 'cmd_high_time' field, i.e.
supported only 33 MHz PCI.

Note that in the original driver there was another bug: 25 and 40 MHz cases
were interchanged.  Since the 'cmd_high_time' field is in units of PCI clocks,
a lower clock count just *cannot* correspond to a higher frequency, i. e. it
should be 5 for 25 MHz PCI and 9 for 40 MHz PCI, not the other way around.

Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>

 drivers/ide/pci/hpt366.c |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

Index: linux-2.6/drivers/ide/pci/hpt366.c
===================================================================
--- linux-2.6.orig/drivers/ide/pci/hpt366.c
+++ linux-2.6/drivers/ide/pci/hpt366.c
@@ -1,5 +1,5 @@
 /*
- * linux/drivers/ide/pci/hpt366.c		Version 1.00	Jun 25, 2006
+ * linux/drivers/ide/pci/hpt366.c		Version 1.01	Dec 23, 2006
  *
  * Copyright (C) 1999-2003		Andre Hedrick <andre@linux-ide.org>
  * Portions Copyright (C) 2001	        Sun Microsystems, Inc.
@@ -107,7 +107,8 @@
  *   frequency
  * - switch to using the  DPLL clock and enable UltraATA/133 mode by default on
  *   anything  newer than HPT370/A
- * - fold PCI clock detection and DPLL setup code into init_chipset_hpt366();
+ * - fold PCI clock detection and DPLL setup code into init_chipset_hpt366(),
+ *   also fixing the interchanged 25/40 MHz PCI clock cases for HPT36x chips;
  *   unify HPT36x/37x timing setup code and the speedproc handlers by joining
  *   the register setting lists into the table indexed by the clock selected
  *	Sergei Shtylyov, <sshtylyov@ru.mvista.com> or <source@mvista.com>
@@ -1125,11 +1126,14 @@ static unsigned int __devinit init_chips
 		switch((itr1 >> 8) & 0x07) {
 			case 0x09:
 				pci_clk = 40;
+				break;
 			case 0x05:
 				pci_clk = 25;
+				break;
 			case 0x07:
 			default:
 				pci_clk = 33;
+				break;
 		}
 	}
 


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

* Re: [PATCH 2.6.20-rc2-mm1] HPT36x PCI clock detection fix
  2006-12-30 19:36 [PATCH 2.6.20-rc2-mm1] HPT36x PCI clock detection fix Sergei Shtylyov
@ 2007-01-02 20:20 ` Bartlomiej Zolnierkiewicz
  0 siblings, 0 replies; 2+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2007-01-02 20:20 UTC (permalink / raw)
  To: Sergei Shtylyov; +Cc: akpm, linux-ide, alan

On 12/30/06, Sergei Shtylyov <sshtylyov@ru.mvista.com> wrote:
> Fix minor coding mistake in the HPT36x PCI clock detection code noticed by
> Bartlomiej Zolnierkiewicz -- it always reported 33 MHz due to the missing
> 'break' statements.  This, however, most probably never mattered -- in fact,
> I was thinking of removing the 25/40 MHz cases completely since HPT36x BIOSes
> didn't seem to set any other value than 7 into the 'cmd_high_time' field, i.e.
> supported only 33 MHz PCI.
>
> Note that in the original driver there was another bug: 25 and 40 MHz cases
> were interchanged.  Since the 'cmd_high_time' field is in units of PCI clocks,
> a lower clock count just *cannot* correspond to a higher frequency, i. e. it
> should be 5 for 25 MHz PCI and 9 for 40 MHz PCI, not the other way around.
>
> Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>

Acked-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>

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

end of thread, other threads:[~2007-01-02 20:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-12-30 19:36 [PATCH 2.6.20-rc2-mm1] HPT36x PCI clock detection fix Sergei Shtylyov
2007-01-02 20:20 ` Bartlomiej Zolnierkiewicz

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.