Commit 58b7c856 authored by Peng Fan's avatar Peng Fan Committed by Mathieu Poirier

remoteproc: imx_rproc: Ignore create mem entry for resource table

Resource table is used by Linux to get information published by
remote processor. It should be not be used for memory allocation, so
not create rproc mem entry.

Fixes: b29b4249 ("remoteproc: imx_rproc: add i.MX specific parse fw hook")
Signed-off-by: default avatarPeng Fan <peng.fan@nxp.com>
Link: https://lore.kernel.org/r/20220415025737.1561976-1-peng.fan@oss.nxp.comSigned-off-by: default avatarMathieu Poirier <mathieu.poirier@linaro.org>
parent 5e6a0e05
...@@ -423,6 +423,9 @@ static int imx_rproc_prepare(struct rproc *rproc) ...@@ -423,6 +423,9 @@ static int imx_rproc_prepare(struct rproc *rproc)
if (!strcmp(it.node->name, "vdev0buffer")) if (!strcmp(it.node->name, "vdev0buffer"))
continue; continue;
if (!strcmp(it.node->name, "rsc-table"))
continue;
rmem = of_reserved_mem_lookup(it.node); rmem = of_reserved_mem_lookup(it.node);
if (!rmem) { if (!rmem) {
dev_err(priv->dev, "unable to acquire memory-region\n"); dev_err(priv->dev, "unable to acquire memory-region\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment