From nobody Wed Dec 17 15:32:51 2025 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 4D00FC61D97 for ; Fri, 24 Nov 2023 14:59:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345465AbjKXO7Y (ORCPT ); Fri, 24 Nov 2023 09:59:24 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57322 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231206AbjKXO7W (ORCPT ); Fri, 24 Nov 2023 09:59:22 -0500 X-Greylist: delayed 76 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Fri, 24 Nov 2023 06:59:25 PST Received: from mxout014.mail.hostpoint.ch (mxout014.mail.hostpoint.ch [IPv6:2a00:d70:0:e::314]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BF622D72; Fri, 24 Nov 2023 06:59:25 -0800 (PST) Received: from [10.0.2.44] (helo=asmtp014.mail.hostpoint.ch) by mxout014.mail.hostpoint.ch with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.96.2 (FreeBSD)) (envelope-from ) id 1r6Xd3-0007WZ-06; Fri, 24 Nov 2023 15:58:01 +0100 Received: from 157.20.79.83.dynamic.wline.res.cust.swisscom.ch ([83.79.20.157] helo=thinkpad.localdomain) by asmtp014.mail.hostpoint.ch with esmtpa (Exim 4.96.2 (FreeBSD)) (envelope-from ) id 1r6Xd2-000C8u-1q; Fri, 24 Nov 2023 15:58:00 +0100 X-Authenticated-Sender-Id: code@stefan-gloor.ch From: Stefan Gloor To: jdelvare@suse.com, linux@roeck-us.net, corbet@lwn.net, linux-hwmon@vger.kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Stefan Gloor Subject: [PATCH] hwmon: sht3x: read out sensor serial number Date: Fri, 24 Nov 2023 15:55:20 +0100 Message-ID: <20231124145519.11599-2-code@stefan-gloor.ch> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Vs-State: 0 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Some of the temperature/humidity sensors of the STS3x/SHT3x family are calibrated and factory-programmed with a unique serial number. This serial number can be used to obtain a calibration certificate via an API provided by the manufacturer (Sensirion). The serial number is exposed as a non-standard sysfs attribute. This feature is only available for STS32, STS33 and SHT33. The capability to read out the serial number is not documented for other sensors such as the STS31, but it is implemented in the ones I tested. To be safe, the driver will silently set the serial number to zero if it can not be read. Tested with: 1x STS32: serial number present 2x STS31: serial number present (feature not documented) 1x SHT31: serial number present (feature not documented) Signed-off-by: Stefan Gloor --- Documentation/hwmon/sht3x.rst | 2 ++ drivers/hwmon/sht3x.c | 39 +++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/Documentation/hwmon/sht3x.rst b/Documentation/hwmon/sht3x.rst index 87864ffd1777..1727994f4a4a 100644 --- a/Documentation/hwmon/sht3x.rst +++ b/Documentation/hwmon/sht3x.rst @@ -85,4 +85,6 @@ repeatability: write or read repeatability, higher r= epeatability means - 0: low repeatability - 1: medium repeatability - 2: high repeatability +serial_number: unique serial number of the sensor in decimal, 0 if + unavailable =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D diff --git a/drivers/hwmon/sht3x.c b/drivers/hwmon/sht3x.c index 79657910b79e..e4d436af1097 100644 --- a/drivers/hwmon/sht3x.c +++ b/drivers/hwmon/sht3x.c @@ -41,6 +41,7 @@ static const unsigned char sht3x_cmd_heater_off[] = =3D { 0x30, 0x66 }; /* other commands */ static const unsigned char sht3x_cmd_read_status_reg[] =3D { 0xf3,= 0x2d }; static const unsigned char sht3x_cmd_clear_status_reg[] =3D { 0x30,= 0x41 }; +static const unsigned char sht3x_cmd_read_serial_number[] =3D { 0x37,= 0x80 }; =20 /* delays for single-shot mode i2c commands, both in us */ #define SHT3X_SINGLE_WAIT_TIME_HPM 15000 @@ -169,6 +170,7 @@ struct sht3x_data { u32 wait_time; /* in us*/ unsigned long last_update; /* last update in periodic mode*/ enum sht3x_repeatability repeatability; + u32 serial_number; =20 /* * cached values for temperature and humidity and limits @@ -606,6 +608,33 @@ static int update_interval_write(struct device *dev, i= nt val) return 0; } =20 +static int serial_number_read(struct sht3x_data *data) +{ + int ret; + char buffer[SHT3X_RESPONSE_LENGTH]; + struct i2c_client *client =3D data->client; + + ret =3D sht3x_read_from_command(client, data, + sht3x_cmd_read_serial_number, + buffer, + SHT3X_RESPONSE_LENGTH, 0); + if (ret) + return ret; + + data->serial_number =3D (buffer[0] << 24) | (buffer[1] << 16) | + (buffer[3] << 8) | buffer[4]; + return ret; +} + +static ssize_t serial_number_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + struct sht3x_data *data =3D dev_get_drvdata(dev); + + return sysfs_emit(buf, "%d\n", data->serial_number); +} + static ssize_t repeatability_show(struct device *dev, struct device_attribute *attr, char *buf) @@ -639,10 +668,12 @@ static ssize_t repeatability_store(struct device *dev, =20 static SENSOR_DEVICE_ATTR_RW(heater_enable, heater_enable, 0); static SENSOR_DEVICE_ATTR_RW(repeatability, repeatability, 0); +static SENSOR_DEVICE_ATTR_RO(serial_number, serial_number, 0); =20 static struct attribute *sht3x_attrs[] =3D { &sensor_dev_attr_heater_enable.dev_attr.attr, &sensor_dev_attr_repeatability.dev_attr.attr, + &sensor_dev_attr_serial_number.dev_attr.attr, NULL }; =20 @@ -899,6 +930,14 @@ static int sht3x_probe(struct i2c_client *client) if (ret) return ret; =20 + /* + * Serial number readout is not documented for the whole + * STS3x/SHT3x series, so we don't return on error here. + */ + ret =3D serial_number_read(data); + if (ret) + data->serial_number =3D 0; + hwmon_dev =3D devm_hwmon_device_register_with_info(dev, client->name, data, --=20 2.41.0