From: Sergei Shtylyov <sshtylyov@ru.mvista.com>
To: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Cc: linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] pata_hpt366: add hpt36x_find_mode() helper
Date: Fri, 27 Nov 2009 22:19:56 +0300 [thread overview]
Message-ID: <4B10265C.1090004@ru.mvista.com> (raw)
In-Reply-To: <200911271954.54019.bzolnier@gmail.com>
Hello.
Bartlomiej Zolnierkiewicz wrote:
> Factor out code for finding the register programming information
> from hpt366_set_mode() to hpt36x_find_mode().
Not sure what it gives us...
> This makes pata_hpt366 driver more similar to pata_{37x,3x2n} ones.
... if only that. :-)
> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
> ---
> Sergei, pata_hpt{37x,3x2n} drivers can also be made to use *set_mode()
> helper but I don't want to interfere with your pending fixes there.
Yeah, it's on my agenda. :-)
> drivers/ata/pata_hpt366.c | 35 +++++++++++++++++++++++++----------
> 1 file changed, 25 insertions(+), 10 deletions(-)
>
> Index: b/drivers/ata/pata_hpt366.c
> ===================================================================
> --- a/drivers/ata/pata_hpt366.c
> +++ b/drivers/ata/pata_hpt366.c
> @@ -114,6 +114,28 @@ static const struct hpt_clock hpt366_25[
> { 0, 0x01208585 }
> };
>
> +/**
> + * hpt36x_find_mode - find the hpt36x timing
> + * @ap: ATA port
> + * @speed: transfer mode
> + *
> + * Return the 32bit register programming information for this channel
> + * that matches the speed provided.
> + */
> +
> +static u32 hpt36x_find_mode(struct ata_port *ap, int speed)
> +{
> + struct hpt_clock *clocks = ap->host->private_data;
> +
> + while (clocks->xfer_mode) {
> + if (clocks->xfer_mode == speed)
> + return clocks->timing;
> + clocks++;
This whole data structure of <mode, timing> tuples makes my eyes hurt.
If you remember, I've changed it to a separate array of modes and timings
which takes ~twice less space...
> + }
> + BUG();
> + return 0xffffffffU; /* silence compiler warning */
> +}
> +
> static const char *bad_ata33[] = {
> "Maxtor 92720U8", "Maxtor 92040U6", "Maxtor 91360U4", "Maxtor 91020U3", "Maxtor 90845U3", "Maxtor 90650U2",
> "Maxtor 91360D8", "Maxtor 91190D7", "Maxtor 91020D6", "Maxtor 90845D5", "Maxtor 90680D4", "Maxtor 90510D3", "Maxtor 90340D2",
> @@ -238,11 +260,10 @@ static int hpt36x_prereset(struct ata_li
> static void hpt366_set_mode(struct ata_port *ap, struct ata_device *adev,
> u8 mode)
> {
> - struct hpt_clock *clocks = ap->host->private_data;
> struct pci_dev *pdev = to_pci_dev(ap->host->dev);
> u32 addr1 = 0x40 + 4 * (adev->devno + 2 * ap->port_no);
> u32 addr2 = 0x51 + 4 * ap->port_no;
> - u32 mask, reg;
> + u32 mask, reg, t;
Alan calls this 't' variable 'mode' if you want to be 100% similar. ;-)
WBR, Sergei
next prev parent reply other threads:[~2009-11-27 19:18 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-27 18:54 [PATCH] pata_hpt366: add hpt36x_find_mode() helper Bartlomiej Zolnierkiewicz
2009-11-27 19:19 ` Sergei Shtylyov [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-10-11 17:52 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=4B10265C.1090004@ru.mvista.com \
--to=sshtylyov@ru.mvista.com \
--cc=bzolnier@gmail.com \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@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).