Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A4083C6FD1C for ; Wed, 8 Mar 2023 18:06:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230002AbjCHSGy (ORCPT ); Wed, 8 Mar 2023 13:06:54 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46534 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229551AbjCHSGv (ORCPT ); Wed, 8 Mar 2023 13:06:51 -0500 Received: from relay8-d.mail.gandi.net (relay8-d.mail.gandi.net [217.70.183.201]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9F139CB075; Wed, 8 Mar 2023 10:06:48 -0800 (PST) Received: (Authenticated sender: miquel.raynal@bootlin.com) by mail.gandi.net (Postfix) with ESMTPSA id 90DC71BF204; Wed, 8 Mar 2023 18:06:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1678298807; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Gv2fMnDV5YVDmU/WD/edhazTBSuJsXAYdZKsUr/gI7I=; b=aXAA3XR0/uQbA8HlRLjTiu3XU0Pc5mGrUraV8jv7/arCpUR+on5iC2KvJN0Q6O0LU2SYAf Lzyd5x27kyI+ZUVZVaTnMJPVp4yU9bWvz6TkzAE+2cnSLOj4KePxCrymP8boB9Cwr2WtT6 JYfarsN3HfmsWPZTfFhwY2e7i/PdDJVYDnJXoM/efwchiHzbJyaZnyKhRctHG02qEtgTjC D4p/XYGN6lPwS6kcT5JII/Zp7XjHRajsxO03h7+cU2eNnD4CB0tHdXHpzIkJwjrgeinttK 4JnaqOVgbb4awMbADQRG67BKyIItMSKT/J4DBz0Y+Z5h2qmierrdi0K9Qsns7g== Date: Wed, 8 Mar 2023 19:06:36 +0100 From: Miquel Raynal To: =?UTF-8?B?UmFmYcWCIE1pxYJlY2tp?= Cc: =?UTF-8?B?UmFmYcWCIE1pxYJlY2tp?= , Srinivas Kandagatla , Richard Weinberger , Vignesh Raghavendra , Hector Martin , Sven Peter , Alyssa Rosenzweig , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , Neil Armstrong , Kevin Hilman , Jerome Brunet , Martin Blumenstingl , Claudiu Beznea , Matthias Brugger , AngeloGioacchino Del Regno , Andy Gross , Bjorn Andersson , Konrad Dybcio , Heiko Stuebner , Orson Zhai , Baolin Wang , Chunyan Zhang , Maxime Coquelin , Alexandre Torgue , Vincent Shih , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , Kunihiko Hayashi , Masami Hiramatsu , Michal Simek , Alessandro Zummo , Alexandre Belloni , Evgeniy Polyakov , linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org, asahi@lists.linux.dev, linux-arm-kernel@lists.infradead.org, linux-amlogic@lists.infradead.org, linux-mediatek@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-rockchip@lists.infradead.org, linux-stm32@st-md-mailman.stormreply.com, linux-sunxi@lists.linux.dev, linux-rtc@vger.kernel.org Subject: Re: [PATCH V2] nvmem: add explicit config option to read OF fixed cells Message-ID: <20230308190636.7fabab9c@xps-13> In-Reply-To: <91ff425b4c901648b1faf34c784f20ad@milecki.pl> References: <20230224072903.20945-1-zajec5@gmail.com> <20230308173256.3837b87b@xps-13> <91ff425b4c901648b1faf34c784f20ad@milecki.pl> Organization: Bootlin X-Mailer: Claws Mail 4.0.0 (GTK+ 3.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Rafa=C5=82, rafal@milecki.pl wrote on Wed, 08 Mar 2023 17:55:46 +0100: > On 2023-03-08 17:34, Miquel Raynal wrote: > > Hi Rafa=C5=82, > >=20 > > zajec5@gmail.com wrote on Fri, 24 Feb 2023 08:29:03 +0100: > > =20 > >> From: Rafa=C5=82 Mi=C5=82ecki =20 > >> >> NVMEM subsystem looks for fixed NVMEM cells (specified in DT) by =20 > >> default. This behaviour made sense in early days before adding support > >> for dynamic cells. =20 > >> >> With every new supported NVMEM device with dynamic cells current =20 > >> behaviour becomes non-optimal. It results in unneeded iterating over >= > DT > >> nodes and may result in false discovery of cells (depending on used DT > >> properties). =20 > >> >> This behaviour has actually caused a problem already with the MTD = =20 > >> subsystem. MTD subpartitions were incorrectly treated as NVMEM cells. = =20 > >=20 > > That's true, but I expect this to be really MTD specific. > >=20 > > A concrete proposal below. > > =20 > >> Also with upcoming support for NVMEM layouts no new binding or driver > >> should support fixed cells defined in device node. =20 > >=20 > > I'm not sure I agree with this statement. We are not preventing new > > binding/driver to use fixed cells, or...? We offer a new way to expose > > nvmem cells with another way than "fixed-offset" and "fixed-size" OF > > nodes. =20 >=20 > From what I understood all new NVMEM bindings should have cells defined > in the nvmem-layout { } node. That's what I mean by saying they should > not be defined in device node (but its "nvmem-layout" instead). Layouts are just another possibility, either you user the nvmem-cells compatible and produce nvmem cells with fixed OF nodes, or you use the nvmem-layout container. I don't think all new bindings should have cells in layouts. It depends if the content is static or not. > >> Solve this by modifying drivers for bindings that support specifying > >> fixed NVMEM cells in DT. Make them explicitly tell NVMEM subsystem to > >> read cells from DT. =20 > >> >> It wasn't clear (to me) if rtc and w1 code actually uses fixed cell= s. >> I =20 > >> enabled them to don't risk any breakage. =20 > >> >> Signed-off-by: Rafa=C5=82 Mi=C5=82ecki =20 > >> [for drivers/nvmem/meson-{efuse,mx-efuse}.c] > >> Acked-by: Martin Blumenstingl > >> --- > >> V2: Fix stm32-romem.c typo breaking its compilation > >> Pick Martin's Acked-by > >> Add paragraph about layouts deprecating use_fixed_of_cells > >> --- > >> drivers/mtd/mtdcore.c | 2 ++ > >> drivers/nvmem/apple-efuses.c | 1 + > >> drivers/nvmem/core.c | 8 +++++--- > >> drivers/nvmem/imx-ocotp-scu.c | 1 + > >> drivers/nvmem/imx-ocotp.c | 1 + > >> drivers/nvmem/meson-efuse.c | 1 + > >> drivers/nvmem/meson-mx-efuse.c | 1 + > >> drivers/nvmem/microchip-otpc.c | 1 + > >> drivers/nvmem/mtk-efuse.c | 1 + > >> drivers/nvmem/qcom-spmi-sdam.c | 1 + > >> drivers/nvmem/qfprom.c | 1 + > >> drivers/nvmem/rave-sp-eeprom.c | 1 + > >> drivers/nvmem/rockchip-efuse.c | 1 + > >> drivers/nvmem/sc27xx-efuse.c | 1 + > >> drivers/nvmem/sprd-efuse.c | 1 + > >> drivers/nvmem/stm32-romem.c | 1 + > >> drivers/nvmem/sunplus-ocotp.c | 1 + > >> drivers/nvmem/sunxi_sid.c | 1 + > >> drivers/nvmem/uniphier-efuse.c | 1 + > >> drivers/nvmem/zynqmp_nvmem.c | 1 + > >> drivers/rtc/nvmem.c | 1 + > >> drivers/w1/slaves/w1_ds250x.c | 1 + > >> include/linux/nvmem-provider.h | 2 ++ > >> 23 files changed, 29 insertions(+), 3 deletions(-) =20 > >> >> diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c =20 > >> index 0feacb9fbdac..1bb479c0f758 100644 > >> --- a/drivers/mtd/mtdcore.c > >> +++ b/drivers/mtd/mtdcore.c > >> @@ -523,6 +523,7 @@ static int mtd_nvmem_add(struct mtd_info *mtd) > >> config.dev =3D &mtd->dev; > >> config.name =3D dev_name(&mtd->dev); > >> config.owner =3D THIS_MODULE; > >> + config.use_fixed_of_cells =3D of_device_is_compatible(node, >> "nvme= m-cells"); =20 > >=20 > > I am wondering how mtd specific this is? For me all OF nodes containing > > the nvmem-cells compatible should be treated as cells providers and > > populate nvmem cells as for each children. > >=20 > > Why don't we just check for this compatible to be present? in > > nvmem_add_cells_from_of() ? And if not we just skip the operation. > >=20 > > This way we still follow the bindings (even though using nvmem-cells in > > the compatible property to require cells population was a mistake in > > the first place, as discussed in the devlink thread recently) but there > > is no need for a per-driver config option? =20 >=20 > This isn't mtd specific. Please check this patch for all occurrences of > the: > use_fixed_of_cells =3D true >=20 > The very first one: drivers/nvmem/apple-efuses.c driver for the > "apple,efuses" binding. That binding supports fixed OF cells, see: > Documentation/devicetree/bindings/nvmem/apple,efuses.yaml I'm saying: based on what has been enforced so far, I would expect all fixed cell providers to come with nvmem-cells as compatible, no? If that's the case we could use that as a common denominator? >=20 >=20 > >> config.reg_read =3D mtd_nvmem_reg_read; > >> config.size =3D mtd->size; > >> config.word_size =3D 1; > >> @@ -891,6 +892,7 @@ static struct nvmem_device >> *mtd_otp_nvmem_regis= ter(struct mtd_info *mtd, > >> config.name =3D kasprintf(GFP_KERNEL, "%s-%s", dev_name(&mtd->dev), = >> compatible); > >> config.id =3D NVMEM_DEVID_NONE; > >> config.owner =3D THIS_MODULE; > >> + config.use_fixed_of_cells =3D true; > >> config.type =3D NVMEM_TYPE_OTP; > >> config.root_only =3D true; > >> config.ignore_wp =3D true; > >> diff --git a/drivers/nvmem/apple-efuses.c >> b/drivers/nvmem/apple-efu= ses.c > >> index 9b7c87102104..0119bac43b2c 100644 > >> --- a/drivers/nvmem/apple-efuses.c > >> +++ b/drivers/nvmem/apple-efuses.c > >> @@ -36,6 +36,7 @@ static int apple_efuses_probe(struct platform_device= >> *pdev) > >> struct resource *res; > >> struct nvmem_config config =3D { > >> .dev =3D &pdev->dev, > >> + .use_fixed_of_cells =3D true, > >> .read_only =3D true, > >> .reg_read =3D apple_efuses_read, > >> .stride =3D sizeof(u32), > >> diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c > >> index 174ef3574e07..6783cd8478d7 100644 > >> --- a/drivers/nvmem/core.c > >> +++ b/drivers/nvmem/core.c > >> @@ -844,9 +844,11 @@ struct nvmem_device *nvmem_register(const struct = >> nvmem_config *config) > >> if (rval) > >> goto err_remove_cells; =20 > >> >> - rval =3D nvmem_add_cells_from_of(nvmem); =20 > >> - if (rval) > >> - goto err_remove_cells; > >> + if (config->use_fixed_of_cells) { > >> + rval =3D nvmem_add_cells_from_of(nvmem); > >> + if (rval) > >> + goto err_remove_cells; > >> + } =20 > >> >> dev_dbg(&nvmem->dev, "Registering nvmem device %s\n", config->nam= e); > >> > > Thanks, =20 > > Miqu=C3=A8l =20 Thanks, Miqu=C3=A8l