From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Loic Pallardy Subject: [PATCH v2 15/16] remoteproc: st: associate memory device to memory regions Date: Thu, 30 Nov 2017 17:46:50 +0100 Message-ID: <1512060411-729-16-git-send-email-loic.pallardy@st.com> In-Reply-To: <1512060411-729-1-git-send-email-loic.pallardy@st.com> References: <1512060411-729-1-git-send-email-loic.pallardy@st.com> MIME-Version: 1.0 Content-Type: text/plain To: bjorn.andersson@linaro.org, ohad@wizery.com Cc: linux-remoteproc@vger.kernel.org, linux-kernel@vger.kernel.org, arnaud.pouliquen@st.com, benjamin.gaignard@linaro.org, Loic Pallardy List-ID: Enable memory device creation for each memory region added by rproc_add_carveout function. Signed-off-by: Loic Pallardy --- drivers/remoteproc/st_remoteproc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/remoteproc/st_remoteproc.c b/drivers/remoteproc/st_remoteproc.c index da42ec9..bf83d82 100644 --- a/drivers/remoteproc/st_remoteproc.c +++ b/drivers/remoteproc/st_remoteproc.c @@ -279,6 +279,7 @@ static int st_rproc_parse_dt(struct platform_device *pdev) mem->dma = res.start; mem->da = res.start; mem->len = resource_size(&res); + strncpy(mem->name, node->name, sizeof(mem->name)); mem->va = devm_ioremap_wc(dev, mem->dma, mem->len); if (!mem->va) { dev_err(dev, "Unable to map memory region: %pa+%zx\n", @@ -286,7 +287,7 @@ static int st_rproc_parse_dt(struct platform_device *pdev) return -EBUSY; } - rproc_add_carveout(rproc, mem, false); + rproc_add_carveout(rproc, mem, true); } err = clk_prepare(ddata->clk); -- 1.9.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753585AbdK3QsK (ORCPT ); Thu, 30 Nov 2017 11:48:10 -0500 Received: from mx08-00178001.pphosted.com ([91.207.212.93]:58265 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753795AbdK3QrY (ORCPT ); Thu, 30 Nov 2017 11:47:24 -0500 From: Loic Pallardy To: , CC: , , , , Loic Pallardy Subject: [PATCH v2 15/16] remoteproc: st: associate memory device to memory regions Date: Thu, 30 Nov 2017 17:46:50 +0100 Message-ID: <1512060411-729-16-git-send-email-loic.pallardy@st.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1512060411-729-1-git-send-email-loic.pallardy@st.com> References: <1512060411-729-1-git-send-email-loic.pallardy@st.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.75.127.49] X-ClientProxiedBy: SFHDAG2NODE3.st.com (10.75.127.6) To SFHDAG7NODE2.st.com (10.75.127.20) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-11-30_05:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Enable memory device creation for each memory region added by rproc_add_carveout function. Signed-off-by: Loic Pallardy --- drivers/remoteproc/st_remoteproc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/remoteproc/st_remoteproc.c b/drivers/remoteproc/st_remoteproc.c index da42ec9..bf83d82 100644 --- a/drivers/remoteproc/st_remoteproc.c +++ b/drivers/remoteproc/st_remoteproc.c @@ -279,6 +279,7 @@ static int st_rproc_parse_dt(struct platform_device *pdev) mem->dma = res.start; mem->da = res.start; mem->len = resource_size(&res); + strncpy(mem->name, node->name, sizeof(mem->name)); mem->va = devm_ioremap_wc(dev, mem->dma, mem->len); if (!mem->va) { dev_err(dev, "Unable to map memory region: %pa+%zx\n", @@ -286,7 +287,7 @@ static int st_rproc_parse_dt(struct platform_device *pdev) return -EBUSY; } - rproc_add_carveout(rproc, mem, false); + rproc_add_carveout(rproc, mem, true); } err = clk_prepare(ddata->clk); -- 1.9.1