From: Gokul Sriram P <quic_gokulsri@quicinc.com>
To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Cc: <sboyd@kernel.org>, <andersson@kernel.org>,
<bjorn.andersson@linaro.org>, <david.brown@linaro.org>,
<devicetree@vger.kernel.org>, <jassisinghbrar@gmail.com>,
<linux-arm-msm@vger.kernel.org>, <linux-clk@vger.kernel.org>,
<linux-kernel@vger.kernel.org>,
<linux-remoteproc@vger.kernel.org>, <mark.rutland@arm.com>,
<mturquette@baylibre.com>, <ohad@wizery.com>, <robh@kernel.org>,
<sricharan@codeaurora.org>, <gokulsri@codeaurora.org>
Subject: Re: [PATCH v9 2/8] remoteproc: qcom: Add secure PIL support
Date: Tue, 25 Jun 2024 11:06:37 +0530 [thread overview]
Message-ID: <b664d24b-79b7-4ba2-8d93-22ef481b52cd@quicinc.com> (raw)
In-Reply-To: <mew7kifravbescnenvstmebfxkbpwdnarmagh6v4a2hqnbrxc6@cepyqz4vgum6>
On 6/22/2024 2:47 AM, Dmitry Baryshkov wrote:
> On Fri, Jun 21, 2024 at 05:16:53PM GMT, Gokul Sriram Palanisamy wrote:
>> IPQ8074 uses secure PIL. Hence, adding the support for the same.
> See Documentation/process/submitting-patches.rst
Thanks. Will add detailed description.
>> Signed-off-by: Nikhil Prakash V <quic_nprakash@quicinc.com>
>> Signed-off-by: Sricharan R <quic_srichara@quicinc.com>
>> Signed-off-by: Gokul Sriram Palanisamy <quic_gokulsri@quicinc.com>
>> ---
>> drivers/remoteproc/qcom_q6v5_wcss.c | 43 +++++++++++++++++++++++++++--
>> 1 file changed, 40 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/remoteproc/qcom_q6v5_wcss.c b/drivers/remoteproc/qcom_q6v5_wcss.c
>> index 366b19cbd994..e45e79d80238 100644
>> --- a/drivers/remoteproc/qcom_q6v5_wcss.c
>> +++ b/drivers/remoteproc/qcom_q6v5_wcss.c
>> @@ -18,6 +18,7 @@
>> #include <linux/regulator/consumer.h>
>> #include <linux/reset.h>
>> #include <linux/soc/qcom/mdt_loader.h>
>> +#include <linux/firmware/qcom/qcom_scm.h>
>> #include "qcom_common.h"
>> #include "qcom_pil_info.h"
>> #include "qcom_q6v5.h"
>> @@ -86,6 +87,9 @@
>> #define TCSR_WCSS_CLK_ENABLE 0x14
>>
>> #define MAX_HALT_REG 3
>> +
>> +#define WCNSS_PAS_ID 6
>> +
>> enum {
>> WCSS_IPQ8074,
>> WCSS_QCS404,
>> @@ -134,6 +138,7 @@ struct q6v5_wcss {
>> unsigned int crash_reason_smem;
>> u32 version;
>> bool requires_force_stop;
>> + bool need_mem_protection;
> needs
>
>>
>> struct qcom_rproc_glink glink_subdev;
>> struct qcom_rproc_ssr ssr_subdev;
>> @@ -152,6 +157,7 @@ struct wcss_data {
>> int ssctl_id;
>> const struct rproc_ops *ops;
>> bool requires_force_stop;
>> + bool need_mem_protection;
> needs
Thanks. Will update.
>> };
>>
>> static int q6v5_wcss_reset(struct q6v5_wcss *wcss)
>> @@ -251,6 +257,15 @@ static int q6v5_wcss_start(struct rproc *rproc)
>>
>> qcom_q6v5_prepare(&wcss->q6v5);
>>
>> + if (wcss->need_mem_protection) {
>> + ret = qcom_scm_pas_auth_and_reset(WCNSS_PAS_ID);
>> + if (ret) {
>> + dev_err(wcss->dev, "wcss_reset failed\n");
>> + return ret;
>> + }
>> + goto wait_for_reset;
>> + }
> Use if/else instead of a goto.
sure. Will update.
>
>> +
>> /* Release Q6 and WCSS reset */
>> ret = reset_control_deassert(wcss->wcss_reset);
>> if (ret) {
>> @@ -285,6 +300,7 @@ static int q6v5_wcss_start(struct rproc *rproc)
>> if (ret)
>> goto wcss_q6_reset;
>>
>> +wait_for_reset:
> This is more like wait_for_start
yes, this looks more appropriate. Will update. Thanks.
>> ret = qcom_q6v5_wait_for_start(&wcss->q6v5, 5 * HZ);
>> if (ret == -ETIMEDOUT)
>> dev_err(wcss->dev, "start timed out\n");
>> @@ -718,6 +734,15 @@ static int q6v5_wcss_stop(struct rproc *rproc)
>> struct q6v5_wcss *wcss = rproc->priv;
>> int ret;
>>
>> + if (wcss->need_mem_protection) {
>> + ret = qcom_scm_pas_shutdown(WCNSS_PAS_ID);
>> + if (ret) {
>> + dev_err(wcss->dev, "not able to shutdown\n");
>> + return ret;
>> + }
>> + goto pas_done;
>> + }
> if/else. Or abstract this to functions.
sure. Will update appropriately.
>> +
>> /* WCSS powerdown */
>> if (wcss->requires_force_stop) {
>> ret = qcom_q6v5_request_stop(&wcss->q6v5, NULL);
>> @@ -742,6 +767,7 @@ static int q6v5_wcss_stop(struct rproc *rproc)
>> return ret;
>> }
>>
>> +pas_done:
>> clk_disable_unprepare(wcss->prng_clk);
>> qcom_q6v5_unprepare(&wcss->q6v5);
>>
>> @@ -765,9 +791,15 @@ static int q6v5_wcss_load(struct rproc *rproc, const struct firmware *fw)
>> struct q6v5_wcss *wcss = rproc->priv;
>> int ret;
>>
>> - ret = qcom_mdt_load_no_init(wcss->dev, fw, rproc->firmware,
>> - 0, wcss->mem_region, wcss->mem_phys,
>> - wcss->mem_size, &wcss->mem_reloc);
>> + if (wcss->need_mem_protection)
>> + ret = qcom_mdt_load(wcss->dev, fw, rproc->firmware,
>> + WCNSS_PAS_ID, wcss->mem_region,
>> + wcss->mem_phys, wcss->mem_size,
>> + &wcss->mem_reloc);
>> + else
>> + ret = qcom_mdt_load_no_init(wcss->dev, fw, rproc->firmware,
>> + 0, wcss->mem_region, wcss->mem_phys,
>> + wcss->mem_size, &wcss->mem_reloc);
>> if (ret)
>> return ret;
>>
>> @@ -1035,6 +1067,9 @@ static int q6v5_wcss_probe(struct platform_device *pdev)
>> if (!desc)
>> return -EINVAL;
>>
>> + if (desc->need_mem_protection && !qcom_scm_is_available())
>> + return -EPROBE_DEFER;
>> +
>> rproc = devm_rproc_alloc(&pdev->dev, pdev->name, desc->ops,
>> desc->firmware_name, sizeof(*wcss));
>> if (!rproc) {
>> @@ -1048,6 +1083,7 @@ static int q6v5_wcss_probe(struct platform_device *pdev)
>>
>> wcss->version = desc->version;
>> wcss->requires_force_stop = desc->requires_force_stop;
>> + wcss->need_mem_protection = desc->need_mem_protection;
>>
>> ret = q6v5_wcss_init_mmio(wcss, pdev);
>> if (ret)
>> @@ -1111,6 +1147,7 @@ static const struct wcss_data wcss_ipq8074_res_init = {
>> .wcss_q6_reset_required = true,
>> .ops = &q6v5_wcss_ipq8074_ops,
>> .requires_force_stop = true,
>> + .need_mem_protection = true,
>> };
>>
>> static const struct wcss_data wcss_qcs404_res_init = {
>> --
>> 2.34.1
>>
next prev parent reply other threads:[~2024-06-25 5:37 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-21 11:46 [PATCH v9 0/8] remoteproc: qcom: q6v5-wcss: Add support for secure pil Gokul Sriram Palanisamy
2024-06-21 11:46 ` [PATCH v9 1/8] remoteproc: qcom: Add PRNG proxy clock Gokul Sriram Palanisamy
2024-06-21 15:09 ` Krzysztof Kozlowski
2024-06-25 4:25 ` Gokul Sriram P
2024-06-21 21:08 ` Dmitry Baryshkov
2024-06-25 5:33 ` Gokul Sriram P
2024-06-26 19:17 ` Dmitry Baryshkov
2024-06-27 10:01 ` Gokul Sriram P
2024-06-27 11:08 ` Dmitry Baryshkov
2024-06-27 11:29 ` Gokul Sriram P
2024-06-27 13:35 ` Dmitry Baryshkov
2024-06-21 11:46 ` [PATCH v9 2/8] remoteproc: qcom: Add secure PIL support Gokul Sriram Palanisamy
2024-06-21 21:17 ` Dmitry Baryshkov
2024-06-25 5:36 ` Gokul Sriram P [this message]
2024-06-21 11:46 ` [PATCH v9 3/8] remoteproc: qcom: Add support for split q6 + m3 wlan firmware Gokul Sriram Palanisamy
2024-06-27 11:11 ` Dmitry Baryshkov
2024-06-21 11:46 ` [PATCH v9 4/8] remoteproc: qcom: Add ssr subdevice identifier Gokul Sriram Palanisamy
2024-06-21 15:10 ` Krzysztof Kozlowski
[not found] ` <8adae0a7-d496-4c9f-ab0c-f162c06e90c4@quicinc.com>
2024-06-25 7:04 ` Krzysztof Kozlowski
2024-06-25 7:13 ` Dmitry Baryshkov
2024-06-21 21:23 ` Dmitry Baryshkov
2024-06-21 11:46 ` [PATCH v9 5/8] remoteproc: qcom: Update regmap offsets for halt register Gokul Sriram Palanisamy
2024-06-21 15:11 ` Krzysztof Kozlowski
2024-06-21 11:46 ` [PATCH v9 6/8] dt-bindings: clock: qcom: Add reset for WCSSAON Gokul Sriram Palanisamy
2024-06-21 15:12 ` Krzysztof Kozlowski
2024-06-21 16:17 ` Kathiravan Thirumoorthy
2024-06-21 11:46 ` [PATCH v9 7/8] clk: qcom: Add WCSSAON reset Gokul Sriram Palanisamy
2024-06-21 16:14 ` Kathiravan Thirumoorthy
2024-06-21 21:28 ` Dmitry Baryshkov
2024-06-21 11:46 ` [PATCH v9 8/8] arm64: dts: qcom: Enable Q6v5 WCSS for ipq8074 SoC Gokul Sriram Palanisamy
2024-06-21 15:14 ` Krzysztof Kozlowski
2024-06-21 16:09 ` Kathiravan Thirumoorthy
2024-06-27 12:42 ` kernel test robot
2024-06-28 2:47 ` kernel test robot
2024-06-28 21:12 ` kernel test robot
2024-06-21 21:22 ` [PATCH v9 0/8] remoteproc: qcom: q6v5-wcss: Add support for secure pil Dmitry Baryshkov
2024-06-21 21:24 ` Dmitry Baryshkov
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=b664d24b-79b7-4ba2-8d93-22ef481b52cd@quicinc.com \
--to=quic_gokulsri@quicinc.com \
--cc=andersson@kernel.org \
--cc=bjorn.andersson@linaro.org \
--cc=david.brown@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=gokulsri@codeaurora.org \
--cc=jassisinghbrar@gmail.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-remoteproc@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mturquette@baylibre.com \
--cc=ohad@wizery.com \
--cc=robh@kernel.org \
--cc=sboyd@kernel.org \
--cc=sricharan@codeaurora.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