From: Jonathan Cameron <jic23@kernel.org>
To: Antoni Pokusinski <apokusinski01@gmail.com>
Cc: dlechner@baylibre.com, nuno.sa@analog.com, andy@kernel.org,
robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
linux-iio@vger.kernel.org, linux@roeck-us.net,
rodrigo.gobbi.7@gmail.com, naresh.solanki@9elements.com,
michal.simek@amd.com, grantpeltier93@gmail.com,
farouk.bouabid@cherry.de, marcelo.schmitt1@gmail.com
Subject: Re: [PATCH v3 4/4] iio: mpl3115: add support for sampling frequency
Date: Sat, 27 Sep 2025 17:54:59 +0100 [thread overview]
Message-ID: <20250927175343.156e00da@jic23-huawei> (raw)
In-Reply-To: <20250926220150.22560-5-apokusinski01@gmail.com>
On Sat, 27 Sep 2025 00:01:50 +0200
Antoni Pokusinski <apokusinski01@gmail.com> wrote:
> When the device is in ACTIVE mode the temperature and pressure measurements
> are collected with a frequency determined by the ST[3:0] bits of CTRL_REG2
> register.
>
> Reviewed-by: Nuno Sá <nuno.sa@analog.com>
> Signed-off-by: Antoni Pokusinski <apokusinski01@gmail.com>
One minor formatting thing inline.
And whilst I'm here, slow down a little. No need to send a v3 for a missing
include. Just do as you did and reply to say that it needs adding then wait
for reviews on v2.
In general, leaving a series on list for a week or more is a good plan to gather reviews
before doing a new version.
Jonathan
> ---
> drivers/iio/pressure/mpl3115.c | 82 ++++++++++++++++++++++++++++++++++
> 1 file changed, 82 insertions(+)
>
> diff --git a/drivers/iio/pressure/mpl3115.c b/drivers/iio/pressure/mpl3115.c
> index 13c8b338a15e..04c126ff4d46 100644
> --- a/drivers/iio/pressure/mpl3115.c
> +++ b/drivers/iio/pressure/mpl3115.c
> @@ -10,6 +10,7 @@
> * user offset correction, raw mode
> */
>
> +#include <linux/bitfield.h>
> #include <linux/cleanup.h>
> #include <linux/delay.h>
> #include <linux/i2c.h>
> @@ -30,6 +31,7 @@
> #define MPL3115_INT_SOURCE 0x12
> #define MPL3115_PT_DATA_CFG 0x13
> #define MPL3115_CTRL_REG1 0x26
> +#define MPL3115_CTRL_REG2 0x27
> #define MPL3115_CTRL_REG3 0x28
> #define MPL3115_CTRL_REG4 0x29
> #define MPL3115_CTRL_REG5 0x2a
> @@ -48,6 +50,8 @@
> #define MPL3115_CTRL1_ACTIVE BIT(0) /* continuous measurement */
> #define MPL3115_CTRL1_OS_258MS GENMASK(5, 4) /* 64x oversampling */
>
> +#define MPL3115_CTRL2_ST GENMASK(3, 0)
> +
> #define MPL3115_CTRL3_IPOL1 BIT(5)
> #define MPL3115_CTRL3_IPOL2 BIT(1)
>
> @@ -57,6 +61,25 @@
>
> #define MPL3115_INT2 BIT(2) /* flag that indicates INT2 in use */
>
> +static const unsigned int mpl3115_samp_freq_table[][2] = {
> + { 1, 0},
space before } in each of these.
> + { 0, 500000},
> + { 0, 250000},
> + { 0, 125000},
> + { 0, 62500},
> + { 0, 31250},
> + { 0, 15625},
> + { 0, 7812},
> + { 0, 3906},
> + { 0, 1953},
> + { 0, 976},
> + { 0, 488},
> + { 0, 244},
> + { 0, 122},
> + { 0, 61},
> + { 0, 30},
> +};
prev parent reply other threads:[~2025-09-27 16:55 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-26 22:01 [PATCH v3 0/4] iio: mpl3115: add support for DRDY interrupt Antoni Pokusinski
2025-09-26 22:01 ` [PATCH v3 1/4] dt-bindings: iio: pressure: add binding for mpl3115 Antoni Pokusinski
2025-09-26 22:01 ` [PATCH v3 2/4] iio: mpl3115: use guards from cleanup.h Antoni Pokusinski
2025-09-27 16:36 ` Jonathan Cameron
2025-09-28 9:41 ` Antoni Pokusinski
2025-09-26 22:01 ` [PATCH v3 3/4] iio: mpl3115: add support for DRDY interrupt Antoni Pokusinski
2025-09-27 16:51 ` Jonathan Cameron
2025-09-28 10:02 ` Antoni Pokusinski
2025-09-28 10:32 ` Jonathan Cameron
2025-09-26 22:01 ` [PATCH v3 4/4] iio: mpl3115: add support for sampling frequency Antoni Pokusinski
2025-09-27 16:54 ` Jonathan Cameron [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250927175343.156e00da@jic23-huawei \
--to=jic23@kernel.org \
--cc=andy@kernel.org \
--cc=apokusinski01@gmail.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dlechner@baylibre.com \
--cc=farouk.bouabid@cherry.de \
--cc=grantpeltier93@gmail.com \
--cc=krzk+dt@kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=marcelo.schmitt1@gmail.com \
--cc=michal.simek@amd.com \
--cc=naresh.solanki@9elements.com \
--cc=nuno.sa@analog.com \
--cc=robh@kernel.org \
--cc=rodrigo.gobbi.7@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox