From: Daniele Alessandrelli <daniele.alessandrelli@linux.intel.com>
To: Sudeep Holla <sudeep.holla@arm.com>,
linux-arm-kernel@lists.infradead.org
Cc: Daniele Alessandrelli <daniele.alessandrelli@intel.com>,
Peng Fan <peng.fan@nxp.com>,
"Paul J. Murphy" <paul.j.murphy@linux.intel.com>,
"Paul J. Murphy" <paul.j.murphy@intel.com>,
linux-kernel@vger.kernel.org
Subject: [PATCH] firmware: arm_scmi: Pass shmem address to SMCCC call
Date: Wed, 15 Jul 2020 17:55:18 +0100 [thread overview]
Message-ID: <20200715165518.57558-1-daniele.alessandrelli@linux.intel.com> (raw)
From: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
Currently, when SMC/HVC is used as transport, the base address of the
shared memory used for communication is not passed to the SMCCC call.
This means that such an address must be hard-coded into the bootloader.
In order to increase flexibility and allow the memory layout to be
changed without modifying the bootloader, this patch adds the shared
memory base address to the a1 argument of the SMCCC call.
On the Secure Monitor side, the service call implementation can
therefore read the a1 argument in order to know the location of the
shared memory to use. This change is backward compatible to existing
service call implementations as long as they don't check for a1 to be
zero.
Signed-off-by: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
Signed-off-by: Paul J. Murphy <paul.j.murphy@intel.com>
---
drivers/firmware/arm_scmi/smc.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/drivers/firmware/arm_scmi/smc.c b/drivers/firmware/arm_scmi/smc.c
index 49bc4b0e8428..aef3a58f8266 100644
--- a/drivers/firmware/arm_scmi/smc.c
+++ b/drivers/firmware/arm_scmi/smc.c
@@ -21,12 +21,14 @@
*
* @cinfo: SCMI channel info
* @shmem: Transmit/Receive shared memory area
+ * @shmem_paddr: Physical address of shmem
* @func_id: smc/hvc call function id
*/
struct scmi_smc {
struct scmi_chan_info *cinfo;
struct scmi_shared_mem __iomem *shmem;
+ resource_size_t shmem_paddr;
struct mutex shmem_lock;
u32 func_id;
};
@@ -73,6 +75,7 @@ static int smc_chan_setup(struct scmi_chan_info *cinfo, struct device *dev,
dev_err(dev, "failed to ioremap SCMI Tx shared memory\n");
return -EADDRNOTAVAIL;
}
+ scmi_info->shmem_paddr = res.start;
ret = of_property_read_u32(dev->of_node, "arm,smc-id", &func_id);
if (ret < 0)
@@ -109,7 +112,8 @@ static int smc_send_message(struct scmi_chan_info *cinfo,
shmem_tx_prepare(scmi_info->shmem, xfer);
- arm_smccc_1_1_invoke(scmi_info->func_id, 0, 0, 0, 0, 0, 0, 0, &res);
+ arm_smccc_1_1_invoke(scmi_info->func_id, scmi_info->shmem_paddr, 0, 0,
+ 0, 0, 0, 0, &res);
scmi_rx_callback(scmi_info->cinfo, shmem_read_header(scmi_info->shmem));
mutex_unlock(&scmi_info->shmem_lock);
--
2.26.2
next reply other threads:[~2020-07-15 16:55 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-15 16:55 Daniele Alessandrelli [this message]
2020-07-15 22:43 ` Florian Fainelli
2020-07-16 14:13 ` Daniele Alessandrelli
2020-07-16 19:57 ` Florian Fainelli
2020-07-17 10:31 ` Sudeep Holla
2020-07-17 14:59 ` Daniele Alessandrelli
2020-07-17 14:00 ` Paul Murphy
2020-07-17 14:42 ` Daniele Alessandrelli
2020-07-17 10:08 ` Sudeep Holla
2020-07-17 9:45 ` Sudeep Holla
2020-07-17 18:01 ` Florian Fainelli
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=20200715165518.57558-1-daniele.alessandrelli@linux.intel.com \
--to=daniele.alessandrelli@linux.intel.com \
--cc=daniele.alessandrelli@intel.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=paul.j.murphy@intel.com \
--cc=paul.j.murphy@linux.intel.com \
--cc=peng.fan@nxp.com \
--cc=sudeep.holla@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
all inboxes | Powered by JetHome®