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=-12.6 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham 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 A2302C433E0 for ; Fri, 26 Feb 2021 16:41:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5C3B364F0D for ; Fri, 26 Feb 2021 16:41:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229967AbhBZQlk (ORCPT ); Fri, 26 Feb 2021 11:41:40 -0500 Received: from mx08-00178001.pphosted.com ([91.207.212.93]:40826 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S229769AbhBZQlj (ORCPT ); Fri, 26 Feb 2021 11:41:39 -0500 Received: from pps.filterd (m0046661.ppops.net [127.0.0.1]) by mx07-00178001.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 11QGR2fZ025164; Fri, 26 Feb 2021 17:40:52 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=foss.st.com; h=subject : to : cc : references : from : message-id : date : mime-version : in-reply-to : content-type : content-transfer-encoding; s=selector1; bh=o+3X4BLuP5e42GOpScJQqAr//WbdMHgL/Zpk/eGJKqA=; b=ynektlSvURU73KKGUMj/mpyXAaO0ThH4BZC0kKl1+WOcgoUYaNJ42V+1uVjAHX6yOf7L WOZhDeUDi2PCWG4CVzTeNQze+Rb/IuIL6LQyDXhowIYCjGVgfyhTauPdZ8laxvZEmtsf BFGmK3t/cIDat9P5TZ+vKU5HbIQo3XcUBdlFEIr6SXchGNhM51wn80srGoO2u2A7Qs+z kpAY04eOdQHp7zDlofSDAQjQs+YT8OG3ZnKx4V2o1uqyTcSCRrswyCeIJxW34fU/8LOM 0Euaq3nLx2dFlLIYCOtQMWY7G5KSLB8O/5xe+csl9kbZ5DBM8hIjQhaoqa13urv6zAZ2 Ag== Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx07-00178001.pphosted.com with ESMTP id 36w66vxuud-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 26 Feb 2021 17:40:52 +0100 Received: from euls16034.sgp.st.com (euls16034.sgp.st.com [10.75.44.20]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 694B5100038; Fri, 26 Feb 2021 17:40:51 +0100 (CET) Received: from Webmail-eu.st.com (sfhdag2node3.st.com [10.75.127.6]) by euls16034.sgp.st.com (STMicroelectronics) with ESMTP id 5693B24163A; Fri, 26 Feb 2021 17:40:51 +0100 (CET) Received: from lmecxl0889.lme.st.com (10.75.127.48) by SFHDAG2NODE3.st.com (10.75.127.6) with Microsoft SMTP Server (TLS) id 15.0.1473.3; Fri, 26 Feb 2021 17:40:50 +0100 Subject: Re: [PATCH v6 00/16] remoteproc: Add support for detaching a remote processor To: Mathieu Poirier , , , CC: , , , , References: <20210223233515.3468677-1-mathieu.poirier@linaro.org> From: Arnaud POULIQUEN Message-ID: Date: Fri, 26 Feb 2021 17:40:49 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20210223233515.3468677-1-mathieu.poirier@linaro.org> Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.75.127.48] X-ClientProxiedBy: SFHDAG2NODE1.st.com (10.75.127.4) To SFHDAG2NODE3.st.com (10.75.127.6) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.369,18.0.761 definitions=2021-02-26_05:2021-02-26,2021-02-26 signatures=0 Precedence: bulk List-ID: X-Mailing-List: linux-remoteproc@vger.kernel.org Hi Mathieu, On 2/24/21 12:34 AM, Mathieu Poirier wrote: > Following the work done here [1], this set provides support for the > remoteproc core to release resources associated with a remote processor > without having to switch it off. That way a platform driver can be removed > or the application processor power cycled while the remote processor is > still operating. > > Modifications for this revision are detailed in the changelog of each patch > but the main difference is that going from RPROC_RUNNING -> RPROC_DETACHED > is no longer supported to avoid dealing tricky resource table issues. This seems reasonable to me. If necessary, this could be part of a separate series. >From test point of view, it is working pretty well on my side. Thanks, Arnaud > > Applies cleanly on rproc-next (e8b4e9a21af7). I will rebase on 5.12-rc1 when it > comes out next week. > > Thanks, > Mathieu > > Arnaud POULIQUEN (1): > remoteproc: stm32: Move memory parsing to rproc_ops > > Mathieu Poirier (15): > remoteproc: Remove useless check in rproc_del() > remoteproc: Rename function rproc_actuate() > remoteproc: Add new RPROC_ATTACHED state > remoteproc: Properly represent the attached state > remoteproc: Add new get_loaded_rsc_table() to rproc_ops > remoteproc: stm32: Move resource table setup to rproc_ops > remoteproc: Add new detach() remoteproc operation > remoteproc: Introduce function __rproc_detach() > remoteproc: Introduce function rproc_detach() > remoteproc: Properly deal with the resource table when attached > remoteproc: Properly deal with a kernel panic when attached > remoteproc: Properly deal with a start request when attached > remoteproc: Properly deal with a stop request when attached > remoteproc: Properly deal with a detach request when attached > remoteproc: Refactor rproc delete and cdev release path > > drivers/remoteproc/remoteproc_cdev.c | 21 +- > drivers/remoteproc/remoteproc_core.c | 263 ++++++++++++++++++++--- > drivers/remoteproc/remoteproc_internal.h | 10 + > drivers/remoteproc/remoteproc_sysfs.c | 17 +- > drivers/remoteproc/stm32_rproc.c | 168 +++++++-------- > include/linux/remoteproc.h | 21 +- > 6 files changed, 362 insertions(+), 138 deletions(-) > 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=-10.6 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_1 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 E2774C433DB for ; Fri, 26 Feb 2021 16:42:10 +0000 (UTC) Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 9E8E464F0E for ; Fri, 26 Feb 2021 16:42:10 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 9E8E464F0E Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=foss.st.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:Date:Message-ID:From: References:To:Subject:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=iSoJe91cNsEnbd/tY5vJE5D6xqlNVq+xuDh18hI8uHA=; b=V58eJAM7dU9QVqtMX+kF9NrWq g33Nm367B7PSx4zKvdCadnWXvxj75PERxPQR4AgJlvRvaotTlq9KWBRs6T6isPT9+gG/aJkIQSbrp L3+j/mguZ69491z95wYRuEVAPPHKmQ9W/0W5ZTL9x7S7/1AhcOP0IrLwOPFpAxQqOeHwJ75LPPEny BN7rsi8tUWWu5fOBNSZV0ypqQPV5ge6Uun/ABM/QcCA4fQQj9/V3GWh1hMPiAx9DHw1Ghuslgkah6 9gadwD6yEuxziQsZBNvuqlejPoz0NEd+nRZJ/lv0TV4rSmrEsQiYO0GekDxvHS7PBLt/WtzyJ/4SQ oLIl4tfgQ==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1lFgAj-0004S4-TD; Fri, 26 Feb 2021 16:40:57 +0000 Received: from mx08-00178001.pphosted.com ([91.207.212.93] helo=mx07-00178001.pphosted.com) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1lFgAh-0004RX-Hk for linux-arm-kernel@lists.infradead.org; Fri, 26 Feb 2021 16:40:56 +0000 Received: from pps.filterd (m0046661.ppops.net [127.0.0.1]) by mx07-00178001.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 11QGR2fZ025164; Fri, 26 Feb 2021 17:40:52 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=foss.st.com; h=subject : to : cc : references : from : message-id : date : mime-version : in-reply-to : content-type : content-transfer-encoding; s=selector1; bh=o+3X4BLuP5e42GOpScJQqAr//WbdMHgL/Zpk/eGJKqA=; b=ynektlSvURU73KKGUMj/mpyXAaO0ThH4BZC0kKl1+WOcgoUYaNJ42V+1uVjAHX6yOf7L WOZhDeUDi2PCWG4CVzTeNQze+Rb/IuIL6LQyDXhowIYCjGVgfyhTauPdZ8laxvZEmtsf BFGmK3t/cIDat9P5TZ+vKU5HbIQo3XcUBdlFEIr6SXchGNhM51wn80srGoO2u2A7Qs+z kpAY04eOdQHp7zDlofSDAQjQs+YT8OG3ZnKx4V2o1uqyTcSCRrswyCeIJxW34fU/8LOM 0Euaq3nLx2dFlLIYCOtQMWY7G5KSLB8O/5xe+csl9kbZ5DBM8hIjQhaoqa13urv6zAZ2 Ag== Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx07-00178001.pphosted.com with ESMTP id 36w66vxuud-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 26 Feb 2021 17:40:52 +0100 Received: from euls16034.sgp.st.com (euls16034.sgp.st.com [10.75.44.20]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 694B5100038; Fri, 26 Feb 2021 17:40:51 +0100 (CET) Received: from Webmail-eu.st.com (sfhdag2node3.st.com [10.75.127.6]) by euls16034.sgp.st.com (STMicroelectronics) with ESMTP id 5693B24163A; Fri, 26 Feb 2021 17:40:51 +0100 (CET) Received: from lmecxl0889.lme.st.com (10.75.127.48) by SFHDAG2NODE3.st.com (10.75.127.6) with Microsoft SMTP Server (TLS) id 15.0.1473.3; Fri, 26 Feb 2021 17:40:50 +0100 Subject: Re: [PATCH v6 00/16] remoteproc: Add support for detaching a remote processor To: Mathieu Poirier , , , References: <20210223233515.3468677-1-mathieu.poirier@linaro.org> From: Arnaud POULIQUEN Message-ID: Date: Fri, 26 Feb 2021 17:40:49 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20210223233515.3468677-1-mathieu.poirier@linaro.org> Content-Language: en-US X-Originating-IP: [10.75.127.48] X-ClientProxiedBy: SFHDAG2NODE1.st.com (10.75.127.4) To SFHDAG2NODE3.st.com (10.75.127.6) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.369, 18.0.761 definitions=2021-02-26_05:2021-02-26, 2021-02-26 signatures=0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210226_114055_814100_2440110E X-CRM114-Status: GOOD ( 22.84 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-arm-kernel@lists.infradead.org, linux-remoteproc@vger.kernel.org, alexandre.torgue@st.com, mcoquelin.stm32@gmail.com, linux-kernel@vger.kernel.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Mathieu, On 2/24/21 12:34 AM, Mathieu Poirier wrote: > Following the work done here [1], this set provides support for the > remoteproc core to release resources associated with a remote processor > without having to switch it off. That way a platform driver can be removed > or the application processor power cycled while the remote processor is > still operating. > > Modifications for this revision are detailed in the changelog of each patch > but the main difference is that going from RPROC_RUNNING -> RPROC_DETACHED > is no longer supported to avoid dealing tricky resource table issues. This seems reasonable to me. If necessary, this could be part of a separate series. >From test point of view, it is working pretty well on my side. Thanks, Arnaud > > Applies cleanly on rproc-next (e8b4e9a21af7). I will rebase on 5.12-rc1 when it > comes out next week. > > Thanks, > Mathieu > > Arnaud POULIQUEN (1): > remoteproc: stm32: Move memory parsing to rproc_ops > > Mathieu Poirier (15): > remoteproc: Remove useless check in rproc_del() > remoteproc: Rename function rproc_actuate() > remoteproc: Add new RPROC_ATTACHED state > remoteproc: Properly represent the attached state > remoteproc: Add new get_loaded_rsc_table() to rproc_ops > remoteproc: stm32: Move resource table setup to rproc_ops > remoteproc: Add new detach() remoteproc operation > remoteproc: Introduce function __rproc_detach() > remoteproc: Introduce function rproc_detach() > remoteproc: Properly deal with the resource table when attached > remoteproc: Properly deal with a kernel panic when attached > remoteproc: Properly deal with a start request when attached > remoteproc: Properly deal with a stop request when attached > remoteproc: Properly deal with a detach request when attached > remoteproc: Refactor rproc delete and cdev release path > > drivers/remoteproc/remoteproc_cdev.c | 21 +- > drivers/remoteproc/remoteproc_core.c | 263 ++++++++++++++++++++--- > drivers/remoteproc/remoteproc_internal.h | 10 + > drivers/remoteproc/remoteproc_sysfs.c | 17 +- > drivers/remoteproc/stm32_rproc.c | 168 +++++++-------- > include/linux/remoteproc.h | 21 +- > 6 files changed, 362 insertions(+), 138 deletions(-) > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel