linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Stephen Boyd <sboyd@kernel.org>
To: Vivek Gautam <vivek.gautam@codeaurora.org>,
	devicetree@vger.kernel.org, iommu@lists.linux-foundation.org,
	joro@8bytes.org, robh+dt@kernel.org, robin.murphy@arm.com,
	will.deacon@arm.com
Cc: alex.williamson@redhat.com, mark.rutland@arm.com,
	rjw@rjwysocki.net, robdclark@gmail.com,
	linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org,
	freedreno@lists.freedesktop.org, tfiga@chromium.org,
	jcrouse@codeaurora.org, sricharan@codeaurora.org,
	m.szyprowski@samsung.com, architt@codeaurora.org,
	linux-arm-msm@vger.kernel.org, thor.thayer@linux.intel.com,
	Vivek Gautam <vivek.gautam@codeaurora.org>
Subject: Re: [PATCH v18 1/5] iommu/arm-smmu: Add pm_runtime/sleep ops
Date: Wed, 28 Nov 2018 08:24:19 -0800	[thread overview]
Message-ID: <154342225921.88331.14467967828250776155@swboyd.mtv.corp.google.com> (raw)
In-Reply-To: <20181127101145.7682-2-vivek.gautam@codeaurora.org>

Quoting Vivek Gautam (2018-11-27 02:11:41)
> @@ -1966,6 +1970,23 @@ static const struct of_device_id arm_smmu_of_match[] = {
>  };
>  MODULE_DEVICE_TABLE(of, arm_smmu_of_match);
>  
> +static void arm_smmu_fill_clk_data(struct arm_smmu_device *smmu,
> +                                  const char * const *clks)
> +{
> +       int i;
> +
> +       if (smmu->num_clks < 1)
> +               return;
> +
> +       smmu->clks = devm_kcalloc(smmu->dev, smmu->num_clks,
> +                                 sizeof(*smmu->clks), GFP_KERNEL);
> +       if (!smmu->clks)
> +               return;
> +
> +       for (i = 0; i < smmu->num_clks; i++)
> +               smmu->clks[i].id = clks[i];

Is this clk_bulk_get_all()?


  parent reply	other threads:[~2018-11-28 16:24 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-27 10:11 [PATCH v18 0/5] iommu/arm-smmu: Add runtime pm/sleep support Vivek Gautam
2018-11-27 10:11 ` [PATCH v18 1/5] iommu/arm-smmu: Add pm_runtime/sleep ops Vivek Gautam
2018-11-28 14:32   ` Thor Thayer
2018-11-28 16:24   ` Stephen Boyd [this message]
2018-11-28 16:36     ` Robin Murphy
2018-11-29 14:55       ` Vivek Gautam
2018-11-30 18:15         ` Will Deacon
2018-12-03  6:43           ` Vivek Gautam
2018-12-03 23:44             ` Stephen Boyd
2018-11-27 10:11 ` [PATCH v18 2/5] iommu/arm-smmu: Invoke pm_runtime during probe, add/remove device Vivek Gautam
2018-11-27 10:11 ` [PATCH v18 3/5] iommu/arm-smmu: Add the device_link between masters and smmu Vivek Gautam
2018-11-27 10:11 ` [PATCH v18 4/5] dt-bindings: arm-smmu: Add bindings for qcom,smmu-v2 Vivek Gautam
2018-11-27 10:11 ` [PATCH v18 5/5] iommu/arm-smmu: Add support for qcom,smmu-v2 variant Vivek Gautam

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=154342225921.88331.14467967828250776155@swboyd.mtv.corp.google.com \
    --to=sboyd@kernel.org \
    --cc=alex.williamson@redhat.com \
    --cc=architt@codeaurora.org \
    --cc=devicetree@vger.kernel.org \
    --cc=freedreno@lists.freedesktop.org \
    --cc=iommu@lists.linux-foundation.org \
    --cc=jcrouse@codeaurora.org \
    --cc=joro@8bytes.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=m.szyprowski@samsung.com \
    --cc=mark.rutland@arm.com \
    --cc=rjw@rjwysocki.net \
    --cc=robdclark@gmail.com \
    --cc=robh+dt@kernel.org \
    --cc=robin.murphy@arm.com \
    --cc=sricharan@codeaurora.org \
    --cc=tfiga@chromium.org \
    --cc=thor.thayer@linux.intel.com \
    --cc=vivek.gautam@codeaurora.org \
    --cc=will.deacon@arm.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;
as well as URLs for NNTP newsgroup(s).