linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ata: hpt366: fix incorrect mask when checking at cmd_high_time
@ 2016-07-12 11:16 Colin King
  2016-07-12 11:27 ` Bartlomiej Zolnierkiewicz
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Colin King @ 2016-07-12 11:16 UTC (permalink / raw)
  To: kernel-tram, Bartlomiej Zolnierkiewicz, Tejun Heo, linux-ide; +Cc: linux-kernel

From: Colin Ian King <colin.king@canonical.com>

According to the HPT366 data sheet, PCI config space dword 0x40-0x43
bits 11:8 specify the primary drive cmd_high_time, however,
currently just 3 bits of the 4 are being used because the mask
is 0x700 and not 0x0f00.  Fix the mask, allowing for the 40MHz clock
to be detected.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/ata/pata_hpt366.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/ata/pata_hpt366.c b/drivers/ata/pata_hpt366.c
index e5fb752..a219a50 100644
--- a/drivers/ata/pata_hpt366.c
+++ b/drivers/ata/pata_hpt366.c
@@ -368,7 +368,7 @@ static int hpt36x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
 
 	/* PCI clocking determines the ATA timing values to use */
 	/* info_hpt366 is safe against re-entry so we can scribble on it */
-	switch ((reg1 & 0x700) >> 8) {
+	switch ((reg1 & 0xf00) >> 8) {
 	case 9:
 		hpriv = &hpt366_40;
 		break;
-- 
2.8.1


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

* Re: [PATCH] ata: hpt366: fix incorrect mask when checking at cmd_high_time
  2016-07-12 11:16 [PATCH] ata: hpt366: fix incorrect mask when checking at cmd_high_time Colin King
@ 2016-07-12 11:27 ` Bartlomiej Zolnierkiewicz
  2016-07-12 11:33   ` Colin Ian King
  2016-07-12 15:03 ` Tejun Heo
  2016-07-18 20:14 ` One Thousand Gnomes
  2 siblings, 1 reply; 5+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2016-07-12 11:27 UTC (permalink / raw)
  To: Colin King
  Cc: kernel-tram, Tejun Heo, linux-ide, linux-kernel, Sergei Shtylyov


Hi,

On Tuesday, July 12, 2016 12:16:19 PM Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> According to the HPT366 data sheet, PCI config space dword 0x40-0x43
> bits 11:8 specify the primary drive cmd_high_time, however,
> currently just 3 bits of the 4 are being used because the mask
> is 0x700 and not 0x0f00.  Fix the mask, allowing for the 40MHz clock
> to be detected.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Acked-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>

Thanks for the patch, could you also fix also the old driver
(drivers/ide/hpt366.c)?

Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics

> ---
>  drivers/ata/pata_hpt366.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/ata/pata_hpt366.c b/drivers/ata/pata_hpt366.c
> index e5fb752..a219a50 100644
> --- a/drivers/ata/pata_hpt366.c
> +++ b/drivers/ata/pata_hpt366.c
> @@ -368,7 +368,7 @@ static int hpt36x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
>  
>  	/* PCI clocking determines the ATA timing values to use */
>  	/* info_hpt366 is safe against re-entry so we can scribble on it */
> -	switch ((reg1 & 0x700) >> 8) {
> +	switch ((reg1 & 0xf00) >> 8) {
>  	case 9:
>  		hpriv = &hpt366_40;
>  		break;


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

* Re: [PATCH] ata: hpt366: fix incorrect mask when checking at cmd_high_time
  2016-07-12 11:27 ` Bartlomiej Zolnierkiewicz
@ 2016-07-12 11:33   ` Colin Ian King
  0 siblings, 0 replies; 5+ messages in thread
From: Colin Ian King @ 2016-07-12 11:33 UTC (permalink / raw)
  To: Bartlomiej Zolnierkiewicz
  Cc: Tejun Heo, linux-ide, linux-kernel, Sergei Shtylyov

On 12/07/16 12:27, Bartlomiej Zolnierkiewicz wrote:
> 
> Hi,
> 
> On Tuesday, July 12, 2016 12:16:19 PM Colin King wrote:
>> From: Colin Ian King <colin.king@canonical.com>
>>
>> According to the HPT366 data sheet, PCI config space dword 0x40-0x43
>> bits 11:8 specify the primary drive cmd_high_time, however,
>> currently just 3 bits of the 4 are being used because the mask
>> is 0x700 and not 0x0f00.  Fix the mask, allowing for the 40MHz clock
>> to be detected.
>>
>> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> 
> Acked-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> 
> Thanks for the patch, could you also fix also the old driver
> (drivers/ide/hpt366.c)?

Yep, patch already sent.

https://lkml.org/lkml/2016/7/12/199

> 
> Best regards,
> --
> Bartlomiej Zolnierkiewicz
> Samsung R&D Institute Poland
> Samsung Electronics
> 
>> ---
>>  drivers/ata/pata_hpt366.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/ata/pata_hpt366.c b/drivers/ata/pata_hpt366.c
>> index e5fb752..a219a50 100644
>> --- a/drivers/ata/pata_hpt366.c
>> +++ b/drivers/ata/pata_hpt366.c
>> @@ -368,7 +368,7 @@ static int hpt36x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
>>  
>>  	/* PCI clocking determines the ATA timing values to use */
>>  	/* info_hpt366 is safe against re-entry so we can scribble on it */
>> -	switch ((reg1 & 0x700) >> 8) {
>> +	switch ((reg1 & 0xf00) >> 8) {
>>  	case 9:
>>  		hpriv = &hpt366_40;
>>  		break;
> 

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

* Re: [PATCH] ata: hpt366: fix incorrect mask when checking at cmd_high_time
  2016-07-12 11:16 [PATCH] ata: hpt366: fix incorrect mask when checking at cmd_high_time Colin King
  2016-07-12 11:27 ` Bartlomiej Zolnierkiewicz
@ 2016-07-12 15:03 ` Tejun Heo
  2016-07-18 20:14 ` One Thousand Gnomes
  2 siblings, 0 replies; 5+ messages in thread
From: Tejun Heo @ 2016-07-12 15:03 UTC (permalink / raw)
  To: Colin King
  Cc: kernel-tram, Bartlomiej Zolnierkiewicz, linux-ide, linux-kernel

On Tue, Jul 12, 2016 at 12:16:19PM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> According to the HPT366 data sheet, PCI config space dword 0x40-0x43
> bits 11:8 specify the primary drive cmd_high_time, however,
> currently just 3 bits of the 4 are being used because the mask
> is 0x700 and not 0x0f00.  Fix the mask, allowing for the 40MHz clock
> to be detected.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Applied to libata/for-4.8.

Thanks.

-- 
tejun

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

* Re: [PATCH] ata: hpt366: fix incorrect mask when checking at cmd_high_time
  2016-07-12 11:16 [PATCH] ata: hpt366: fix incorrect mask when checking at cmd_high_time Colin King
  2016-07-12 11:27 ` Bartlomiej Zolnierkiewicz
  2016-07-12 15:03 ` Tejun Heo
@ 2016-07-18 20:14 ` One Thousand Gnomes
  2 siblings, 0 replies; 5+ messages in thread
From: One Thousand Gnomes @ 2016-07-18 20:14 UTC (permalink / raw)
  To: Colin King
  Cc: kernel-tram, Bartlomiej Zolnierkiewicz, Tejun Heo, linux-ide,
	linux-kernel

On Tue, 12 Jul 2016 12:16:19 +0100
Colin King <colin.king@canonical.com> wrote:

> From: Colin Ian King <colin.king@canonical.com>
> 
> According to the HPT366 data sheet, PCI config space dword 0x40-0x43
> bits 11:8 specify the primary drive cmd_high_time, however,
> currently just 3 bits of the 4 are being used because the mask
> is 0x700 and not 0x0f00.  Fix the mask, allowing for the 40MHz clock
> to be detected.

Is this tested on real hardware ? I learned long ago never to blindly
trust IDE data sheets. It looks right but if anyone actually has a 40MHz
PCI bus box with an HPT366 it would be good to test.

Alan

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

end of thread, other threads:[~2016-07-18 20:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-12 11:16 [PATCH] ata: hpt366: fix incorrect mask when checking at cmd_high_time Colin King
2016-07-12 11:27 ` Bartlomiej Zolnierkiewicz
2016-07-12 11:33   ` Colin Ian King
2016-07-12 15:03 ` Tejun Heo
2016-07-18 20:14 ` One Thousand Gnomes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).