From nobody Sun Feb 8 16:53:25 2026 Received: from metis.whiteo.stw.pengutronix.de (metis.whiteo.stw.pengutronix.de [185.203.201.7]) (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 3F35682863 for ; Fri, 23 Feb 2024 15:41:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.203.201.7 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708702898; cv=none; b=s6F3useJEOKH1FavtJxqox++x7z1T0ASTVGU5tAQrRxp8tMGE63aoTJYvFejgWlVw0ze8fzLKaVsOCrkYy/6oAscSAjYpSOqiRVl0Y5nvOEMcBqChCjCtAQ5RXHq+LK7VVabJcS0SKpPAwIq4Zs7InaYZ+tALZjxaR7Q4P9SWDY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708702898; c=relaxed/simple; bh=ISOpelRzcKba5NgCuFuc5tbG/MHEVgcIyOM8/9vVlnQ=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=PNue3PkZ656iYfLz4VJkCEbiV9ZM4/HbMkpKFvPkoHepTarcsTWhsbpUG1tf00jN5QRgltTjHmksFplf7jZq2ol9uF7VR5OOofqHZsPZdLUudU5ybGAP+HCveBiwyqG+UioyQZHnpj3aA6tDSjE6cz1t77Htvylgd7GZWs9uIj4= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de; spf=pass smtp.mailfrom=pengutronix.de; arc=none smtp.client-ip=185.203.201.7 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=pengutronix.de Received: from dude02.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::28]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1rdXg3-0001um-4d; Fri, 23 Feb 2024 16:41:31 +0100 From: Marco Felsch To: srinivas.kandagatla@linaro.org, miquel.raynal@bootlin.com, michael@walle.cc Cc: linux-kernel@vger.kernel.org, kernel@pengutronix.de Subject: [PATCH] nvmem: core: add sysfs cell write support Date: Fri, 23 Feb 2024 16:41:29 +0100 Message-Id: <20240223154129.1902905-1-m.felsch@pengutronix.de> X-Mailer: git-send-email 2.39.2 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-SA-Exim-Connect-IP: 2a0a:edc0:0:1101:1d::28 X-SA-Exim-Mail-From: m.felsch@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Add the sysfs cell write support to make it possible to write to exposed cells from sysfs as well e.g. for device provisioning. The write support is limited to EEPROM based nvmem devices and to nvmem-cells which don't require post-processing. Signed-off-by: Marco Felsch --- drivers/nvmem/core.c | 43 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c index 980123fb4dde..b1f86cb431ef 100644 --- a/drivers/nvmem/core.c +++ b/drivers/nvmem/core.c @@ -336,6 +336,40 @@ static ssize_t nvmem_cell_attr_read(struct file *filp,= struct kobject *kobj, return read_len; } =20 +static ssize_t nvmem_cell_attr_write(struct file *filp, struct kobject *ko= bj, + struct bin_attribute *attr, char *buf, + loff_t pos, size_t count) +{ + struct nvmem_cell_entry *entry; + struct nvmem_cell *cell; + int ret; + + entry =3D attr->private; + + if (!entry->nvmem->reg_write) + return -EPERM; + + if (pos >=3D entry->bytes) + return -EFBIG; + + if (pos + count > entry->bytes) + count =3D entry->bytes - pos; + + cell =3D nvmem_create_cell(entry, entry->name, 0); + if (IS_ERR(cell)) + return PTR_ERR(cell); + + if (!cell) + return -EINVAL; + + ret =3D nvmem_cell_write(cell, buf, count); + + kfree_const(cell->id); + kfree(cell); + + return ret; +} + /* default read/write permissions */ static struct bin_attribute bin_attr_rw_nvmem =3D { .attr =3D { @@ -458,13 +492,20 @@ static int nvmem_populate_sysfs_cells(struct nvmem_de= vice *nvmem) =20 /* Initialize each attribute to take the name and size of the cell */ list_for_each_entry(entry, &nvmem->cells, node) { + umode_t mode =3D nvmem_bin_attr_get_umode(nvmem); + + /* Limit cell-write support to EEPROMs at the moment */ + if (entry->read_post_process || nvmem->type !=3D NVMEM_TYPE_EEPROM) + mode &=3D ~0222; + sysfs_bin_attr_init(&attrs[i]); attrs[i].attr.name =3D devm_kasprintf(&nvmem->dev, GFP_KERNEL, "%s@%x", entry->name, entry->offset); - attrs[i].attr.mode =3D 0444; + attrs[i].attr.mode =3D mode; attrs[i].size =3D entry->bytes; attrs[i].read =3D &nvmem_cell_attr_read; + attrs[i].write =3D &nvmem_cell_attr_write; attrs[i].private =3D entry; if (!attrs[i].attr.name) { ret =3D -ENOMEM; --=20 2.39.2