From: Tejun Heo <tj@kernel.org>
To: Yuan-Hsin Chen <yuanlmm@gmail.com>
Cc: jgarzik@pobox.com, linux-ide@vger.kernel.org,
linux-kernel@vger.kernel.org,
Yuan-Hsin Chen <yhchen@faraday-tech.com>
Subject: Re: [PATCH v3] ahci: move ahci_sb600_softreset to libahci.c and rename it
Date: Fri, 17 Jun 2011 14:07:04 +0200 [thread overview]
Message-ID: <20110617120704.GH2611@htj.dyndns.org> (raw)
In-Reply-To: <1308307158-1796-1-git-send-email-yuanlmm@gmail.com>
Hello, Yuan-Hsin.
Yeap, we're getting almost there. :)
On Fri, Jun 17, 2011 at 06:39:18PM +0800, Yuan-Hsin Chen wrote:
> diff --git a/drivers/ata/ahci.h b/drivers/ata/ahci.h
> index 12c5282..e20f8d7 100644
> --- a/drivers/ata/ahci.h
> +++ b/drivers/ata/ahci.h
> @@ -312,6 +312,7 @@ extern struct device_attribute *ahci_sdev_attrs[];
> .sdev_attrs = ahci_sdev_attrs
>
> extern struct ata_port_operations ahci_ops;
> +extern struct ata_port_operations ahci_pmp_ops;
But I don't like ahci_pmp_ops name. ahci_ops works just fine for pmp.
It's a workaround ops. Maybe something like ahci_pmp_retry_srst_ops?
> +static int ahci_pmp_softreset(struct ata_link *link, unsigned int *class,
> + unsigned long deadline);
Similarly, ahci_pmp_retry_srst_softreset()
> +struct ata_port_operations ahci_pmp_ops = {
> + .inherits = &ahci_ops,
> + .softreset = ahci_pmp_softreset,
> + .pmp_softreset = ahci_pmp_softreset,
> +};
Isn't overriding .softreset enough? .pmp_softreset is used only for
downstream links.
> +static int ahci_pmp_check_ready(struct ata_link *link)
> +{
> + void __iomem *port_mmio = ahci_port_base(link->ap);
> + u8 status = readl(port_mmio + PORT_TFDATA) & 0xFF;
> + u32 irq_status = readl(port_mmio + PORT_IRQ_STAT);
> +
> + /*
> + * There is no need to check TFDATA if BAD PMP is found due to HW bug,
> + * which can save timeout delay.
> + */
> + if (irq_status & PORT_IRQ_BAD_PMP)
> + return -EIO;
> +
> + printk("%s:TFT 0x%x\n", __func__, status);
You probably want ata_link_printk(link, KERN_DEBUG, ...);
Thanks.
--
tejun
next prev parent reply other threads:[~2011-06-17 12:07 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-14 5:48 [PATCH] ahci: enable pmp but connected to HDD issue fixed Yuan-Hsin Chen
2011-06-14 6:52 ` Tejun Heo
2011-06-15 10:04 ` [PATCH v2] ahci: fix pmp softreset with HDD Yuan-Hsin Chen
2011-06-15 10:14 ` Tejun Heo
2011-06-17 10:39 ` [PATCH v3] ahci: move ahci_sb600_softreset to libahci.c and rename it Yuan-Hsin Chen
2011-06-17 11:34 ` Sergei Shtylyov
2011-06-17 12:07 ` Tejun Heo [this message]
2011-06-20 8:06 ` [PATCH v4] " Yuan-Hsin Chen
2011-06-20 8:15 ` Sergei Shtylyov
2011-06-20 8:47 ` Yuan-Hsin Chen
2011-06-20 8:19 ` Tejun Heo
2011-06-20 10:06 ` Yuan-Hsin Chen
2011-06-20 12:47 ` Tejun Heo
2011-06-21 3:24 ` Yuan-Hsin Chen
2011-06-21 7:17 ` Tejun Heo
2011-06-21 9:17 ` [PATCH v5] " Yuan-Hsin Chen
2011-06-21 9:53 ` Tejun Heo
[not found] ` <BANLkTimiJheFauWXjh-8GszGHoqMOa0Kkw@mail.gmail.com>
2011-06-15 2:50 ` Fwd: [PATCH] ahci: enable pmp but connected to HDD issue fixed BingJiun Luo
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=20110617120704.GH2611@htj.dyndns.org \
--to=tj@kernel.org \
--cc=jgarzik@pobox.com \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=yhchen@faraday-tech.com \
--cc=yuanlmm@gmail.com \
/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
all inboxes | Powered by JetHome®