From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Arnaud Pouliquen Subject: [RFC 14/18] remoteproc: Add pa to da translation API Date: Thu, 16 Apr 2020 18:13:27 +0200 Message-ID: <20200416161331.7606-15-arnaud.pouliquen@st.com> In-Reply-To: <20200416161331.7606-1-arnaud.pouliquen@st.com> References: <20200416161331.7606-1-arnaud.pouliquen@st.com> MIME-Version: 1.0 Content-Type: text/plain To: Bjorn Andersson , Ohad Ben-Cohen , Mathieu Poirier Cc: linux-remoteproc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com, arnaud.pouliquen@st.com List-ID: Add remote proc API to allow IPC client to translate address from local to device paradigm. Signed-off-by: Arnaud Pouliquen --- drivers/remoteproc/remoteproc_core.c | 24 ++++++++++++++++++++++++ include/linux/remoteproc.h | 4 ++++ 2 files changed, 28 insertions(+) diff --git a/drivers/remoteproc/remoteproc_core.c b/drivers/remoteproc/remoteproc_core.c index f9d04e59081c..72fb97f28048 100644 --- a/drivers/remoteproc/remoteproc_core.c +++ b/drivers/remoteproc/remoteproc_core.c @@ -1939,6 +1939,30 @@ int rproc_add(struct rproc *rproc) } EXPORT_SYMBOL(rproc_add); +/** + * rproc_pa_to_da() - memory translation from local physical address to + * remote device address + * @rproc: the remote processor handle to register + * @pa: local physical address + * @da: remote device address + * + * Return the device address associated to the physical address + * The translation is delegated to the platform driver if the ops is + * implemented. By default this function returns the physical address. + * + * Returns 0 on success and an appropriate error code otherwise. + */ +int rproc_pa_to_da(struct rproc *rproc, phys_addr_t pa, u64 *da) +{ + if (!rproc->ops->pa_to_da) { + *da = pa; + return 0; + } + + return rproc->ops->pa_to_da(rproc, pa, da); +} +EXPORT_SYMBOL(rproc_pa_to_da); + /** * rproc_type_release() - release a remote processor instance * @dev: the rproc's device diff --git a/include/linux/remoteproc.h b/include/linux/remoteproc.h index d7235f7356e2..7b8a6c3ef519 100644 --- a/include/linux/remoteproc.h +++ b/include/linux/remoteproc.h @@ -359,6 +359,7 @@ enum rsc_handling_status { * @stop: power off the device * @kick: kick a virtqueue (virtqueue id given as a parameter) * @da_to_va: optional platform hook to perform address translations + * @pa_to_da: optional platform hook to perform address translations * @parse_fw: parse firmware to extract information (e.g. resource table) * @handle_rsc: optional platform hook to handle vendor resources. Should return * RSC_HANDLED if resource was handled, RSC_IGNORED if not handled and a @@ -375,6 +376,7 @@ struct rproc_ops { int (*stop)(struct rproc *rproc); void (*kick)(struct rproc *rproc, int vqid); void * (*da_to_va)(struct rproc *rproc, u64 da, int len); + int (*pa_to_da)(struct rproc *rproc, phys_addr_t pa, u64 *da); int (*parse_fw)(struct rproc *rproc, const struct firmware *fw); int (*handle_rsc)(struct rproc *rproc, u32 rsc_type, void *rsc, int offset, int avail); @@ -618,6 +620,8 @@ struct rproc_mem_entry * rproc_of_resm_mem_entry_init(struct device *dev, u32 of_resm_idx, int len, u32 da, const char *name, ...); +int rproc_pa_to_da(struct rproc *rproc, phys_addr_t pa, u64 *da); + int rproc_boot(struct rproc *rproc); void rproc_shutdown(struct rproc *rproc); void rproc_report_crash(struct rproc *rproc, enum rproc_crash_type type); -- 2.17.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A5F3DC2BB85 for ; Thu, 16 Apr 2020 16:14:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 81A4822247 for ; Thu, 16 Apr 2020 16:14:39 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=st.com header.i=@st.com header.b="cGpXFzqA" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2442845AbgDPQOf (ORCPT ); Thu, 16 Apr 2020 12:14:35 -0400 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:61090 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2439167AbgDPQOd (ORCPT ); Thu, 16 Apr 2020 12:14:33 -0400 Received: from pps.filterd (m0046668.ppops.net [127.0.0.1]) by mx07-00178001.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 03GGDE3h005331; Thu, 16 Apr 2020 18:14:29 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=st.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-type; s=STMicroelectronics; bh=VGuKiENXB4g+nYignzR0Sc0mT76eLrYMZJujuuwAYk4=; b=cGpXFzqALuH/em3ROP3/sU2rUi2hfvi7KYTKvUWHLHRKD3TMfG6SFw8pVa+fSEXy4EKj 3BqqcqARJ+5CmK5K9+uqpQB7eTwewNMfY1rNkZwCltkUCEO7t8DTzK4H3Qcso+GRkfCK FKK1AcNK6PCfJi14BggVr7IZ+EfAFBss2Daq3YJbiIVd/ElsGoJbV/Y+cM4+AM8aHO13 hB68f9qN4zRkqT9cxBtm7WeNGp3vx6fZl+Sp465fqBvi+io1/fMCUOBKInm3T4NUakoO Fuqk0XKCka/fsWhic1AirP2uS73O+3O+FmoQAtcHFxrxnXRyOuxRRNhL9GjzIALz9SHo jQ== Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx07-00178001.pphosted.com with ESMTP id 30dn6t3ndb-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 16 Apr 2020 18:14:29 +0200 Received: from euls16034.sgp.st.com (euls16034.sgp.st.com [10.75.44.20]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id DB503100034; Thu, 16 Apr 2020 18:14:28 +0200 (CEST) Received: from Webmail-eu.st.com (sfhdag3node1.st.com [10.75.127.7]) by euls16034.sgp.st.com (STMicroelectronics) with ESMTP id D00AD2B2D2A; Thu, 16 Apr 2020 18:14:28 +0200 (CEST) Received: from localhost (10.75.127.44) by SFHDAG3NODE1.st.com (10.75.127.7) with Microsoft SMTP Server (TLS) id 15.0.1473.3; Thu, 16 Apr 2020 18:14:28 +0200 From: Arnaud Pouliquen To: Bjorn Andersson , Ohad Ben-Cohen , Mathieu Poirier CC: , , , Subject: [RFC 14/18] remoteproc: Add pa to da translation API Date: Thu, 16 Apr 2020 18:13:27 +0200 Message-ID: <20200416161331.7606-15-arnaud.pouliquen@st.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200416161331.7606-1-arnaud.pouliquen@st.com> References: <20200416161331.7606-1-arnaud.pouliquen@st.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.75.127.44] X-ClientProxiedBy: SFHDAG5NODE3.st.com (10.75.127.15) To SFHDAG3NODE1.st.com (10.75.127.7) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.138,18.0.676 definitions=2020-04-16_06:2020-04-14,2020-04-16 signatures=0 Sender: linux-remoteproc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-remoteproc@vger.kernel.org Message-ID: <20200416161327.SoKC8f6jMDKe0rgqoJMaHT2JWvK7WfDXKPnF1CATEuo@z> Add remote proc API to allow IPC client to translate address from local to device paradigm. Signed-off-by: Arnaud Pouliquen --- drivers/remoteproc/remoteproc_core.c | 24 ++++++++++++++++++++++++ include/linux/remoteproc.h | 4 ++++ 2 files changed, 28 insertions(+) diff --git a/drivers/remoteproc/remoteproc_core.c b/drivers/remoteproc/remoteproc_core.c index f9d04e59081c..72fb97f28048 100644 --- a/drivers/remoteproc/remoteproc_core.c +++ b/drivers/remoteproc/remoteproc_core.c @@ -1939,6 +1939,30 @@ int rproc_add(struct rproc *rproc) } EXPORT_SYMBOL(rproc_add); +/** + * rproc_pa_to_da() - memory translation from local physical address to + * remote device address + * @rproc: the remote processor handle to register + * @pa: local physical address + * @da: remote device address + * + * Return the device address associated to the physical address + * The translation is delegated to the platform driver if the ops is + * implemented. By default this function returns the physical address. + * + * Returns 0 on success and an appropriate error code otherwise. + */ +int rproc_pa_to_da(struct rproc *rproc, phys_addr_t pa, u64 *da) +{ + if (!rproc->ops->pa_to_da) { + *da = pa; + return 0; + } + + return rproc->ops->pa_to_da(rproc, pa, da); +} +EXPORT_SYMBOL(rproc_pa_to_da); + /** * rproc_type_release() - release a remote processor instance * @dev: the rproc's device diff --git a/include/linux/remoteproc.h b/include/linux/remoteproc.h index d7235f7356e2..7b8a6c3ef519 100644 --- a/include/linux/remoteproc.h +++ b/include/linux/remoteproc.h @@ -359,6 +359,7 @@ enum rsc_handling_status { * @stop: power off the device * @kick: kick a virtqueue (virtqueue id given as a parameter) * @da_to_va: optional platform hook to perform address translations + * @pa_to_da: optional platform hook to perform address translations * @parse_fw: parse firmware to extract information (e.g. resource table) * @handle_rsc: optional platform hook to handle vendor resources. Should return * RSC_HANDLED if resource was handled, RSC_IGNORED if not handled and a @@ -375,6 +376,7 @@ struct rproc_ops { int (*stop)(struct rproc *rproc); void (*kick)(struct rproc *rproc, int vqid); void * (*da_to_va)(struct rproc *rproc, u64 da, int len); + int (*pa_to_da)(struct rproc *rproc, phys_addr_t pa, u64 *da); int (*parse_fw)(struct rproc *rproc, const struct firmware *fw); int (*handle_rsc)(struct rproc *rproc, u32 rsc_type, void *rsc, int offset, int avail); @@ -618,6 +620,8 @@ struct rproc_mem_entry * rproc_of_resm_mem_entry_init(struct device *dev, u32 of_resm_idx, int len, u32 da, const char *name, ...); +int rproc_pa_to_da(struct rproc *rproc, phys_addr_t pa, u64 *da); + int rproc_boot(struct rproc *rproc); void rproc_shutdown(struct rproc *rproc); void rproc_report_crash(struct rproc *rproc, enum rproc_crash_type type); -- 2.17.1