public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Chris Lew <clew@codeaurora.org>
To: Alex Elder <elder@linaro.org>, andy.gross@linaro.org
Cc: aneela@codeaurora.org, david.brown@linaro.org,
	linux-arm-msm@vger.kernel.org, linux-soc@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] soc: qcom: smem: introduce qcom_smem_virt_to_phys()
Date: Wed, 25 Apr 2018 16:29:26 -0700	[thread overview]
Message-ID: <4a127dda-576c-4eae-80d3-a928e578a1b9@codeaurora.org> (raw)
In-Reply-To: <20180425151820.25595-1-elder@linaro.org>

Hi Alex,

Minor comment.

On 4/25/2018 8:18 AM, Alex Elder wrote:
> Create function qcom_smem_virt_to_phys(), which returns the physical
> address corresponding to a given SMEM item's virtual address.  This
> feature is required for a driver that will soon be out for review.
> 
> Signed-off-by: Alex Elder <elder@linaro.org>
> ---
>   drivers/soc/qcom/smem.c       | 27 +++++++++++++++++++++++++++
>   include/linux/soc/qcom/smem.h |  2 ++
>   2 files changed, 29 insertions(+)
> 
> diff --git a/drivers/soc/qcom/smem.c b/drivers/soc/qcom/smem.c
> index 7d9a43da5084..70b2ee80d6bd 100644
> --- a/drivers/soc/qcom/smem.c
> +++ b/drivers/soc/qcom/smem.c
> @@ -655,6 +655,33 @@ int qcom_smem_get_free_space(unsigned host)
>   }
>   EXPORT_SYMBOL(qcom_smem_get_free_space);
>   
> +/**
> + * qcom_smem_virt_to_phys() - return the physical address associated
> + * with an smem item pointer (previously returned by qcom_smem_get()
> + * @p:	the virtual address to convert
> + *
> + * Returns 0 if the pointer provided is not within any smem region.
> + */
> +phys_addr_t qcom_smem_virt_to_phys(void *p)
> +{
> +	unsigned i;
> +

We have a null pointer check for __smem here since it is called by 
external clients. This case should probably never happen though.

> +	for (i = 0; i < __smem->num_regions; i++) {
> +		struct smem_region *region = &__smem->regions[i];
> +
> +		if (p < region->virt_base)
> +			continue;
> +		if (p < region->virt_base + region->size) {
> +			u64 offset = p - region->virt_base;
> +
> +			return (phys_addr_t)region->aux_base + offset;
> +		}
> +	}
> +
> +	return 0;
> +}
> +EXPORT_SYMBOL(qcom_smem_virt_to_phys);

Thanks,
Chris

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

  parent reply	other threads:[~2018-04-25 23:29 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-25 15:18 [PATCH] soc: qcom: smem: introduce qcom_smem_virt_to_phys() Alex Elder
2018-04-25 23:14 ` Bjorn Andersson
2018-04-26  1:22   ` Alex Elder
2018-04-25 23:29 ` Chris Lew [this message]
2018-04-26  1:31   ` Alex Elder

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=4a127dda-576c-4eae-80d3-a928e578a1b9@codeaurora.org \
    --to=clew@codeaurora.org \
    --cc=andy.gross@linaro.org \
    --cc=aneela@codeaurora.org \
    --cc=david.brown@linaro.org \
    --cc=elder@linaro.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-soc@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