* [PATCH v2 0/1] ahci: imx: setup power saving methods
@ 2013-10-08 9:29 Richard Zhu
[not found] ` <1381224562-2378-2-git-send-email-Hong-Xing.Zhu@freescale.com>
0 siblings, 1 reply; 3+ messages in thread
From: Richard Zhu @ 2013-10-08 9:29 UTC (permalink / raw)
To: linux-arm-kernel
v2: ahci: imx: setup power saving methods
- kernel build option is replaced by the module parameter(ahci-imx.hp)
v1: http://www.spinics.net/lists/linux-ide/msg46389.html
* Disable sata phy internal pll reference clock when
sysetem enter into suspend mode, enable it after resume.
* Enter into test power down mode when there is no sata disk
detected on the port and 'AHCI_IMX_PHY_POWER_DOWN_MODE' is
enabled.
This patche is based on for-next branch of
"http://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git"
[v2] ahci: imx: setup power saving methods
drivers/ata/ahci_imx.c | 85 ++++++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 82 insertions(+), 3 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [v2] ahci: imx: setup power saving methods
[not found] ` <1381224562-2378-2-git-send-email-Hong-Xing.Zhu@freescale.com>
@ 2013-10-09 20:35 ` Tejun Heo
2013-10-10 10:31 ` Zhu Richard-R65037
0 siblings, 1 reply; 3+ messages in thread
From: Tejun Heo @ 2013-10-09 20:35 UTC (permalink / raw)
To: linux-arm-kernel
Hello,
On Tue, Oct 08, 2013 at 05:29:22PM +0800, Richard Zhu wrote:
> @@ -1,6 +1,6 @@
> /*
> + * copyright (c) 2013 Freescale Semiconductor, Inc.
> * Freescale IMX AHCI SATA platform driver
> - * Copyright 2013 Freescale Semiconductor, Inc.
I don't really mind making small changes along with other changes but
would appreciate if you can at least mention the change in the
changelog. As it currently stands, I'm not even sure whether the
above is an intended change or just something slipped.
> +module_param_named(hp, ahci_imx_hp, int, 0644);
Can you please spellout "hp" to "hotplug" especially for the name
visible outside? It isn't a common abbreviation and it's not like we
despearately lose the extra three chars there.
> @@ -105,6 +114,39 @@ static int imx6q_sata_init(struct device *dev, void __iomem *mmio)
> reg_val = clk_get_rate(imxpriv->ahb_clk) / 1000;
> writel(reg_val, mmio + HOST_TIMER1MS);
>
> + if (ahci_imx_hp == 0) {
> + /*
> + * hot-plug is not supported.
> + * In order to save power consumption, enter PDDQ mode
> + * when there is no device detected on the port.
> + * NOTE: hot-plug wouldn't supported when PDDQ mode is
> + * ever entered.
> + */
> + do {
> + sstatus = readl(mmio + 0x100 + PORT_SCR_STAT);
> + if ((sstatus & 0xF) == 0)
> + usleep_range(1000, 2000);
> + else
> + break;
> +
> + if (iterations == 0) {
> + pr_info("No sata disk.\n");
> + reg_val = readl(mmio + PORT_PHY_CTL);
> + writel(reg_val | PORT_PHY_CTL_PDDQ_LOC,
> + mmio + PORT_PHY_CTL);
> + regmap_update_bits(imxpriv->gpr, IOMUXC_GPR13,
> + IMX6Q_GPR13_SATA_MPLL_CLK_EN,
> + !IMX6Q_GPR13_SATA_MPLL_CLK_EN);
> + clk_disable_unprepare(imxpriv->sata_ref_clk);
> + imxpriv->no_device = 1;
> +
> + return 0;
> + }
> + } while (iterations-- > 0);
Hmm... I'm not a big fan of this approach as it essentially is an
incomplete implementation of SATA device detection. Wouldn't it be
better to override error_handler? ie. implement
ahci_imx_error_handler() which wraps ahci_error_handler() and do
something like the following,
static bool first_time = true;
ahci_error_handler(ap);
if (!first_time || ahci_imx_hotplug)
return;
first_time = false;
ata_for_each_dev(dev, link, ENABLED)
return;
DISABLE LINK;
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 3+ messages in thread
* [v2] ahci: imx: setup power saving methods
2013-10-09 20:35 ` [v2] " Tejun Heo
@ 2013-10-10 10:31 ` Zhu Richard-R65037
0 siblings, 0 replies; 3+ messages in thread
From: Zhu Richard-R65037 @ 2013-10-10 10:31 UTC (permalink / raw)
To: linux-arm-kernel
Hi Tejun:
Thanks for your review.
Best Regards
Richard Zhu
-----Original Message-----
From: Tejun Heo [mailto:htejun at gmail.com] On Behalf Of Tejun Heo
Sent: Thursday, October 10, 2013 4:36 AM
To: Richard Zhu
Cc: shawn.guo at linaro.org; linux-arm-kernel at lists.infradead.org; jgarzik at pobox.com; linux-ide at vger.kernel.org; Zhu Richard-R65037
Subject: Re: [v2] ahci: imx: setup power saving methods
Hello,
On Tue, Oct 08, 2013 at 05:29:22PM +0800, Richard Zhu wrote:
> @@ -1,6 +1,6 @@
> /*
> + * copyright (c) 2013 Freescale Semiconductor, Inc.
> * Freescale IMX AHCI SATA platform driver
> - * Copyright 2013 Freescale Semiconductor, Inc.
I don't really mind making small changes along with other changes but would appreciate if you can at least mention the change in the changelog. As it currently stands, I'm not even sure whether the above is an intended change or just something slipped.
[Richard] thanks, No problem, I would add the change-notice in the change-log in next version.
> +module_param_named(hp, ahci_imx_hp, int, 0644);
Can you please spellout "hp" to "hotplug" especially for the name visible outside? It isn't a common abbreviation and it's not like we despearately lose the extra three chars there.
[Richard] Accepted. "hp" would be replaced by "hotplug".
> @@ -105,6 +114,39 @@ static int imx6q_sata_init(struct device *dev, void __iomem *mmio)
> reg_val = clk_get_rate(imxpriv->ahb_clk) / 1000;
> writel(reg_val, mmio + HOST_TIMER1MS);
>
> + if (ahci_imx_hp == 0) {
> + /*
> + * hot-plug is not supported.
> + * In order to save power consumption, enter PDDQ mode
> + * when there is no device detected on the port.
> + * NOTE: hot-plug wouldn't supported when PDDQ mode is
> + * ever entered.
> + */
> + do {
> + sstatus = readl(mmio + 0x100 + PORT_SCR_STAT);
> + if ((sstatus & 0xF) == 0)
> + usleep_range(1000, 2000);
> + else
> + break;
> +
> + if (iterations == 0) {
> + pr_info("No sata disk.\n");
> + reg_val = readl(mmio + PORT_PHY_CTL);
> + writel(reg_val | PORT_PHY_CTL_PDDQ_LOC,
> + mmio + PORT_PHY_CTL);
> + regmap_update_bits(imxpriv->gpr, IOMUXC_GPR13,
> + IMX6Q_GPR13_SATA_MPLL_CLK_EN,
> + !IMX6Q_GPR13_SATA_MPLL_CLK_EN);
> + clk_disable_unprepare(imxpriv->sata_ref_clk);
> + imxpriv->no_device = 1;
> +
> + return 0;
> + }
> + } while (iterations-- > 0);
Hmm... I'm not a big fan of this approach as it essentially is an incomplete implementation of SATA device detection. Wouldn't it be better to override error_handler? ie. implement
ahci_imx_error_handler() which wraps ahci_error_handler() and do something like the following,
static bool first_time = true;
ahci_error_handler(ap);
if (!first_time || ahci_imx_hotplug)
return;
first_time = false;
ata_for_each_dev(dev, link, ENABLED)
return;
DISABLE LINK;
[Richard] Do you means to override the .error_handler of ata_port_operations defined in libahci.c or ahci_platform.c driver?
Ok, let me make a try on it. Thanks again for your review comments.
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-10-10 10:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-08 9:29 [PATCH v2 0/1] ahci: imx: setup power saving methods Richard Zhu
[not found] ` <1381224562-2378-2-git-send-email-Hong-Xing.Zhu@freescale.com>
2013-10-09 20:35 ` [v2] " Tejun Heo
2013-10-10 10:31 ` Zhu Richard-R65037
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).