From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B782636680C for ; Tue, 19 May 2026 12:13:54 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779192834; cv=none; b=iyXn5bIE01sJoGYZcbo010zb23FcVIH/3p4r929Z23xxJUs5PWHL443KvUkBRFmzRqRITWMIt/KgoagytNJpKmve8Y9mGDqh/SFv2NVVoYalO1h5EPPjnc2QfJOYyQiqSAE0W5RTLTfzkp000M05VYnBiBzfY95TkTHpLE1UiTU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779192834; c=relaxed/simple; bh=VW3DGWbbz+Xa61I+taRdBZt+xS6d/BPINKRn7GXDFMQ=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=CYNGHFPTiDBTise85emEwhcQDBkR/IiymEGiToFLNUAJerDlEWN9/PILE7fT2+qK6USuUpRHLPRSuWw+Dux1Bs0J+eY9PalFXUVbCUg36+N1u5Ul9XtgvPGgIxvyeZpFB/OvpqEZbhZIpMjVbwdlJ5xjsF0mZcgSpEFBJmwN/h4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=FmOJI3r6; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="FmOJI3r6" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 141D0C2BCB3; Tue, 19 May 2026 12:13:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1779192834; bh=VW3DGWbbz+Xa61I+taRdBZt+xS6d/BPINKRn7GXDFMQ=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=FmOJI3r6lWkEKT6bPaX3KgfjAoNBF55/g03BFG3k2xNz3E7gK9DM8kk0NEfok1SJ4 aUkv6uoBMQVkg4GGEkb/lI5f7I7cdDzz5lghjC0oBfWNWej1PwFzCSQsvXx5GfL+km 4CbwDpdJl1CKKa28GC6kUQyXarzh65ClrphFMKq9p3hQbAOyD/Z2lbh3/mWyXRI7NP NZUxFIFiM2xFNSKGjRZwExm0YY5XRZSClzH6BGo8YkVgNKQFixG4T2AWXBH9vB/3xk kEqfET9q7GZxyxO+Szzk1mWifxfTHQCrDcqy+OeavDCHmqJdj0SujxOlbrfVzFSHYX er9m9slha5Fuw== Message-ID: <4ebc5633-a44c-4dbb-9407-23c48f96c507@kernel.org> Date: Tue, 19 May 2026 07:13:53 -0500 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v2 0/3] firmware: stratix10-rsu: expose QSPI flash size and erase size from firmware Content-Language: en-US To: tze.yee.ng@altera.com, linux-kernel@vger.kernel.org Cc: Adrian Ng Ho Yin , Nazim Amirul References: From: Dinh Nguyen In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Hi Tze Yee, On 5/14/26 21:11, tze.yee.ng@altera.com wrote: > From: Tze Yee Ng > > This series lets user space read per-device QSPI flash size and erase > size for the Intel Stratix 10 RSU driver, using the existing service > layer SMC path. > > Patch 1 documents the new sysfs attributes (size0-size3 and > erase_size0-erase_size3). > > Patch 2 implements COMMAND_RSU_GET_DEVICE_INFO in the RSU and service > drivers, caches up to four devices in the driver, and adds the sysfs > files. > > Patch 3 fixes probe/remove teardown after the async client is registered: > remove the async client before freeing the SVC channel so async state > is not leaked. It also corrects probe return values on the affected > error paths. > > Changes in v2: > - No code changes in all patches, only documentation updates to fix commit > title and description in Patch 3. > > Tze Yee Ng (3): > Documentation: ABI: add stratix10-rsu QSPI size and erase_size sysfs > firmware: stratix10-rsu: Add flash device info retrieval via SMC > firmware: stratix10-rsu: remove async client before freeing channel on > probe errors > > .../sysfs-devices-platform-stratix10-rsu | 58 +++++ > drivers/firmware/stratix10-rsu.c | 210 +++++++++++++++++- > drivers/firmware/stratix10-svc.c | 94 +++++++- > include/linux/firmware/intel/stratix10-smc.h | 25 ++- > .../firmware/intel/stratix10-svc-client.h | 12 +- > 5 files changed, 382 insertions(+), 17 deletions(-) > I've applied the first 2 patches in this series, but for patch 3/3, please make the following update and re-send: - You have marked a patch with a "Fixes:" tag for a commit that is in an older released kernel, yet you do not have a cc: stable line in the signed-off-by area at all, which means that the patch will not be applied to any older kernel releases. To properly fix this, please follow the documented rules in the Documentation/process/stable-kernel-rules.rst file for how to resolve this. And I think for patch 3, it might be a : Cc: stable@vger.kernel.org # v6.18+, but please double check. Thanks, Dinh