From: linux@arm.linux.org.uk (Russell King - ARM Linux)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/7] DMA: PL330: Add support runtime PM for PL330 DMAC
Date: Tue, 5 Jul 2011 09:04:30 +0100 [thread overview]
Message-ID: <20110705080430.GP8286@n2100.arm.linux.org.uk> (raw)
In-Reply-To: <1309781915-31549-2-git-send-email-kgene.kim@samsung.com>
On Mon, Jul 04, 2011 at 09:18:29PM +0900, Kukjin Kim wrote:
> @@ -666,6 +667,7 @@ pl330_probe(struct amba_device *adev, const struct amba_id *id)
> struct dma_device *pd;
> struct resource *res;
> int i, ret, irq;
> + struct clk* clk;
Please use checkpatch. 'struct clk *clk;'
> @@ -696,6 +698,28 @@ pl330_probe(struct amba_device *adev, const struct amba_id *id)
> goto probe_err1;
> }
>
Get the clock here and save its pointer. put the clock in the remove function.
> +#ifdef CONFIG_PM_RUNTIME
> + /* to use the runtime PM helper functions */
> + pm_runtime_enable(&adev->dev);
> +
> + /* enable the power domain */
> + if (pm_runtime_get_sync(&adev->dev)) {
> + dev_err(&adev->dev, "failed to get runtime pm\n");
> + ret = -ENODEV;
> + goto probe_err1;
> + }
> +#else
> + /* enable dma clk */
> + clk = clk_get(&adev->dev, "dma");
> +
> + if (IS_ERR(clk)) {
> + dev_err(&adev->dev, "Cannot get operation clock.\n");
> + ret = -EINVAL;
> + goto probe_err1;
> + }
> + clk_enable(clk);
> +#endif
> +
> irq = adev->irq[0];
> ret = request_irq(irq, pl330_irq_handler, 0,
> dev_name(&adev->dev), pi);
> @@ -838,10 +862,47 @@ static struct amba_id pl330_ids[] = {
> { 0, 0 },
> };
>
> +#ifdef CONFIG_PM_RUNTIME
> +static int pl330_runtime_suspend(struct device *dev)
> +{
> + struct clk *dmaclk = clk_get(dev, "dma");
> +
> + if (dmaclk == NULL) {
> + dev_err(dev, "failed to find dma clock source\n");
> + return -ENODEV;
> + }
Obviously wrong.
Use the clock you got in the probe function here.
> +
> + clk_disable(dmaclk);
> + return 0;
> +}
> +
> +static int pl330_runtime_resume(struct device *dev)
> +{
> + struct clk *dmaclk = clk_get(dev, "dma");
> +
> + if (dmaclk == NULL) {
> + dev_err(dev, "failed to find dma clock source\n");
> + return -ENODEV;
> + }
Obviously wrong as well.
Use the clock you got in the probe function here too.
> +
> + clk_enable(dmaclk);
> + return 0;
> +}
> +#else
> +#define pl330_runtime_suspend NULL
> +#define pl330_runtime_resume NULL
> +#endif /* CONFIG_PM_RUNTIME */
> +
> +static const struct dev_pm_ops pl330_pm_ops = {
> + .runtime_suspend = pl330_runtime_suspend,
> + .runtime_resume = pl330_runtime_resume,
> +};
> +
> static struct amba_driver pl330_driver = {
> .drv = {
> .owner = THIS_MODULE,
> .name = "dma-pl330",
> + .pm = &pl330_pm_ops,
> },
> .id_table = pl330_ids,
> .probe = pl330_probe,
> --
> 1.7.1
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2011-07-05 8:04 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-04 12:18 [PATCH 0/7] ARM: S5P: Use generic DMA APIs Kukjin Kim
2011-07-04 12:18 ` [PATCH 1/7] DMA: PL330: Add support runtime PM for PL330 DMAC Kukjin Kim
2011-07-05 6:11 ` Alim Akhtar
2011-07-05 7:26 ` Kukjin Kim
2011-07-05 8:04 ` Russell King - ARM Linux [this message]
2011-07-08 10:18 ` Kukjin Kim
2011-07-04 12:18 ` [PATCH 2/7] DMA: PL330: Update PL330 DMA API driver Kukjin Kim
2011-07-05 7:36 ` Russell King - ARM Linux
2011-07-08 7:57 ` Kukjin Kim
2011-07-04 12:18 ` [PATCH 3/7] DMA: PL330: Add DMA capabilities Kukjin Kim
2011-07-05 6:33 ` Chanho Park
2011-07-05 7:10 ` Kukjin Kim
2011-07-05 8:08 ` Chanho Park
2011-07-12 8:32 ` Jassi Brar
2011-07-14 0:57 ` boojin
2011-07-14 3:53 ` Jassi Brar
2011-07-14 9:04 ` boojin
2011-07-04 12:18 ` [PATCH 4/7] ARM: SAMSUNG: Update to use PL330-DMA driver Kukjin Kim
2011-07-04 12:18 ` [PATCH 5/7] ARM: EXYNOS4: Use generic DMA PL330 driver Kukjin Kim
2011-07-05 6:07 ` Alim Akhtar
2011-07-05 8:30 ` Sangwook Lee
2011-07-04 12:18 ` [PATCH 6/7] spi/s3c64xx: Add support DMA engine API Kukjin Kim
2011-07-04 16:42 ` Grant Likely
2011-07-04 16:56 ` Mark Brown
2011-07-04 16:59 ` Heiko Stübner
2011-07-04 17:02 ` Grant Likely
2011-07-04 19:51 ` Heiko Stübner
2011-07-04 23:27 ` Grant Likely
2011-07-05 7:05 ` Kukjin Kim
2011-07-05 7:53 ` Russell King - ARM Linux
2011-07-05 10:51 ` Heiko Stübner
2011-07-05 11:16 ` Jassi Brar
2011-07-05 11:27 ` Russell King - ARM Linux
2011-07-05 11:45 ` Jassi Brar
2011-07-08 9:26 ` Kukjin Kim
2011-07-05 7:48 ` Russell King - ARM Linux
2011-07-05 8:39 ` Chanho Park
2011-07-04 12:18 ` [PATCH 7/7] ASoC: Samsung: Update DMA interface Kukjin Kim
2011-07-04 17:03 ` Mark Brown
2011-07-05 7:19 ` Kukjin Kim
2011-07-05 18:04 ` Grant Likely
2011-07-05 7:45 ` Seungwhan Youn
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=20110705080430.GP8286@n2100.arm.linux.org.uk \
--to=linux@arm.linux.org.uk \
--cc=linux-arm-kernel@lists.infradead.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).