linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sergei Shtylyov <sshtylyov@ru.mvista.com>
To: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Cc: linux-ide@vger.kernel.org
Subject: Re: [PATCH] ide: add ide_set{_max}_pio() (take 2)
Date: Wed, 04 Jul 2007 21:55:11 +0400	[thread overview]
Message-ID: <468BDEFF.5080709@ru.mvista.com> (raw)
In-Reply-To: <200707040040.33812.bzolnier@gmail.com>

Bartlomiej Zolnierkiewicz wrote:

>>>  reporting PIO mode selected from ->tuneproc implementations.

>>>* Rename ->tuneproc hook to ->set_pio_mode

>>    Well, tuneproc() went with speedproc() rather well. :-)

> ->set_pio_mode goes better with ->set_dma_mode ;-)

    Ah, good to know where we're moving... :-)

>>>and make 'pio' argument const.

>>    Isn't it too strict, const value argument?

> Not really, this is to prevent potential mistakes and catch them early.

> Please note that this patch pushes all logic dealing with finding the best
> PIO mode and also limiting PIO mode passed by the user from ->tuneproc
> to the core code.  Another logical step is to move ide_rate_filter() out
> of ->speedproc to the core code (fixing ide_rate_filter() while at it)
> and this step is alsmost done (I will post patch soon).

    Too many patches recently. :-)

> After ide_rate_filter() change is done we can start syncing code setting
> PIO modes in ->set_pio_mode and ->speedproc (there are some suspicious
> disrepancies in some drivers besides the usual bug of not setting transfer
> mode on the device in ->tuneproc).  Finally we can switch the core code to
> just use ->set_pio_mode for PIO modes and turn ->speedproc into new shiny
> ->set_dma_mode method.

>>>* Remove stale comment from ide_config_drive_speed().

>>    Hm, the next logical step would be to remove a call to 
>>ide_config_drive_speed() from the set_pio_mode() handler, wouldn't it?..

> Yes.

    Again, good to know. Too bad that these cleanups haven't happened until 
now -- when libata PATA support seems already ripe enough. :-)

>>>Index: b/drivers/ide/pci/it8213.c
>>>===================================================================
>>>--- a/drivers/ide/pci/it8213.c
>>>+++ b/drivers/ide/pci/it8213.c
>>>@@ -4,6 +4,8 @@
>>>  * Copyright (C) 2006 Jack Lee
>>>  * Copyright (C) 2006 Alan Cox
>>>  * Copyright (C) 2007 Bartlomiej Zolnierkiewicz
>>>+ *
>>>+ * TODO: make ->set_pio_mode method set transfer mode on the device

>>    IMHO, this actually better be done outside of this method (if possible).

> In the long-term, yes.

>>Sigh, that would undo many of my prior fixes...

> It shouldn't if would be handled exactly as is currently done piix.c.

    Well, that would turn piix_tune_drive() into completely useless wrapper to 
piix_tune_pio() -- exactly what I mean.

> it8213_set_pio_mode() will become a wrapper for it8213_tune_pio().

    Hm, there are currently no it8213_tune_pio() -- and would be no need for 
it if we start calling ide_config_drive_speed() outside the set_pio_mode() 
method...

>>>@@ -193,7 +194,9 @@ static int it8213_tune_chipset (ide_driv
>>> 		if (reg55 & w_flag)
>>> 			pci_write_config_byte(dev, 0x55, (u8) reg55 & ~w_flag);
>>> 	}
>>>-	it8213_tuneproc(drive, it8213_dma_2_pio(speed));
>>>+
>>>+	it8213_set_pio_mode(drive, it8213_dma_2_pio(speed));
>>
>>    Bleh... Still haven't "divorced" PIO/DMA timings -- need to get this done 
>>finally. :-/

> Well, if you would spend some less time nitpicking about CodingStyle... ;-)

    That's negligible compared to what I'd have to spend on piix.c (and even 
on finding the real issues with these patches :-).

>>>@@ -307,10 +306,11 @@ static void pdc202xx_reset (ide_drive_t 
>>> {
>>> 	ide_hwif_t *hwif	= HWIF(drive);
>>> 	ide_hwif_t *mate	= hwif->mate;
>>>-	
>>>+
>>> 	pdc202xx_reset_host(hwif);
>>> 	pdc202xx_reset_host(mate);

>>    Bleh... this double reset horror still needs to be sorted out as well. I'm 
>>not at all sure it's useful -- its assumed purpose is to be able to set MWDMA 
>>modes after UDMA (can't do this w/o reset).

    I completely disliked this whole approach and just forbade the downgrade 
from UDMA to MWDMA in the internal tree... never got to submitting this though.

>>>-	pdc202xx_tune_drive(drive, 255);
>>>+
>>>+	ide_set_max_pio(drive);

>>    I wonder why the code doesn't retune all 4 drives? :-/

> Because it is buggy/broken - all drives should be re-tuned but there
> is no needed locking in the IDE core to achieve this currently.

    Well, you have the spec... :-)

> take 3

> [PATCH] ide: add ide_set{_max}_pio() (take 3)

> * Add IDE_HFLAG_ABUSE_{PREFETCH,FAST_DEVSEL,DMA_MODES} flags
>   and set them in ht6560, cmd640, cmd64x and sc1200 host drivers.

> * Add set_pio_mode_abuse() for checking if host driver has a non-standard
>   ->tuneproc() implementation and use it in do_special().

> * Add ide_set_pio() for setting PIO mode (it uses hwif->pio_mask to find
>   the maximum PIO mode supported by the host), also add ide_set_max_pio()
>   wrapper for ide_set_pio() to use for auto-tuning.  Convert users of
>   ->tuneproc to use ide_set{_max}_pio() where possible.  This leaves only
>   do_special(), set_using_pio(), ide_hwif_restore() and ide_set_pio() as
>   a direct users of ->tuneproc.

> * Remove no longer needed ide_get_best_pio_mode() calls and printk-s
>   reporting PIO mode selected from ->tuneproc implementations.

> * Rename ->tuneproc hook to ->set_pio_mode and make 'pio' argument const.

> * Remove stale comment from ide_config_drive_speed().

> v2:
> * Fix "ata_" prefix (Noticed by Jeff).

> v3:
> * Minor cleanups/fixups per Sergei's suggestions.

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

    Though some nits haven't been addressed:

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

> Index: b/drivers/ide/pci/jmicron.c
> ===================================================================
> --- a/drivers/ide/pci/jmicron.c
> +++ b/drivers/ide/pci/jmicron.c
> @@ -83,7 +83,7 @@ static u8 __devinit ata66_jmicron(ide_hw
>  	return ATA_CBL_PATA80;
>  }
>  
> -static void jmicron_tuneproc (ide_drive_t *drive, byte mode_wanted)
> +static void jmicron_set_pio_mode(ide_drive_t *drive, const u8 pio)
>  {
>  	return;

    I was asking for adding TODO here... :-(

> Index: b/drivers/ide/pci/opti621.c
> ===================================================================
> --- a/drivers/ide/pci/opti621.c
> +++ b/drivers/ide/pci/opti621.c
> @@ -47,7 +47,7 @@
>   * The main problem with OPTi is that some timings for master
>   * and slave must be the same. For example, if you have master
>   * PIO 3 and slave PIO 0, driver have to set some timings of
> - * master for PIO 0. Second problem is that opti621_tune_drive
> + * master for PIO 0. Second problem is that opti621_set_pio_mode
>   * got only one drive to set, but have to set both drives.
>   * This is solved in compute_pios. If you don't set
>   * the second drive, compute_pios use ide_get_best_pio_mode
> @@ -103,7 +103,7 @@
>  
>  #include <asm/io.h>
>  
> -#define OPTI621_MAX_PIO 3
> +//#define OPTI621_MAX_PIO 3
>  /* In fact, I do not have any PIO 4 drive
>   * (address: 25 ns, data: 70 ns, recovery: 35 ns),

    PIO4 recovery is 25, not 35 ns. Well, it should only be achievable on 
non-standard PCI freq's (well, except for 30 MHz probably), so this whole 
comment may be killed...

> Index: b/drivers/ide/pci/sl82c105.c
> ===================================================================
> --- a/drivers/ide/pci/sl82c105.c
> +++ b/drivers/ide/pci/sl82c105.c
> @@ -75,16 +75,12 @@ static unsigned int get_pio_timings(ide_
>  /*
>   * Configure the chipset for PIO mode.
>   */
> -static u8 sl82c105_tune_pio(ide_drive_t *drive, u8 pio)
> +static void sl82c105_tune_pio(ide_drive_t *drive, const u8 pio)
>  {
>  	struct pci_dev *dev	= HWIF(drive)->pci_dev;
>  	int reg			= 0x44 + drive->dn * 4;
>  	u16 drv_ctrl;
>  
> -	DBG(("sl82c105_tune_pio(drive:%s, pio:%u)\n", drive->name, pio));
> -

    Well, not that it was that useful anyway... :-)

MBR, Sergei

  reply	other threads:[~2007-07-04 17:53 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-06-30 22:46 [PATCH] ide: add ide_set{_max}_pio() (take 2) Bartlomiej Zolnierkiewicz
2007-06-30 22:40 ` Jeff Garzik
2007-06-30 22:49   ` Alan Cox
2007-06-30 23:09     ` Bartlomiej Zolnierkiewicz
2007-06-30 23:05   ` Bartlomiej Zolnierkiewicz
2007-07-03 20:04 ` Sergei Shtylyov
2007-07-03 22:40   ` Bartlomiej Zolnierkiewicz
2007-07-04 17:55     ` Sergei Shtylyov [this message]
2007-07-04 19:51       ` 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=468BDEFF.5080709@ru.mvista.com \
    --to=sshtylyov@ru.mvista.com \
    --cc=bzolnier@gmail.com \
    --cc=linux-ide@vger.kernel.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;
as well as URLs for NNTP newsgroup(s).