From: Md Shofiqul Islam <shofiqtest@gmail.com>
To: Jonathan Cameron <jic23@kernel.org>
Cc: linux-iio@vger.kernel.org, lars@metafoo.de,
linux-kernel@vger.kernel.org, krzk@kernel.org
Subject: Re: [PATCH v5 2/3] iio: health: add MAX86150 ECG and PPG biosensor driver
Date: Mon, 06 Jul 2026 13:50:42 -0700 (PDT) [thread overview]
Message-ID: <6a4c1522.63d4a161.13ea90.1761@mx.google.com> (raw)
In-Reply-To: <20260702044246.68e4dfd7@jic23-huawei>
On Wed, 2 Jul 2026, Jonathan Cameron wrote:
> [PATCH v5 2/3] iio: health: add MAX86150 ECG and PPG biosensor driver
Thank you for the thorough review. I apologise for sending v6 before
addressing the driver feedback — that was a mistake. v7 (being sent now)
addresses all points raised below:
Architectural change:
- Switch from devm_iio_triggered_buffer_setup() to
devm_iio_kfifo_buffer_setup() with iio_buffer_setup_ops
(postenable/predisable), matching MAX30100 and MAX30102. The IIO
trigger object and trigger_ops are removed entirely.
Kconfig:
- Remove spurious 'select IIO_TRIGGER' from AFE4403, AFE4404, MAX30100,
MAX30102. Those were wrong — I was not touching those drivers.
- MAX86150 now selects IIO_KFIFO_BUF, not IIO_TRIGGER or
IIO_TRIGGERED_BUFFER.
Register field macros:
- All renamed to include the parent register name and _MASK suffix,
e.g. MAX86150_PPG_ADC_RGE -> MAX86150_PPG_CONFIG1_ADC_RGE_MASK.
Buffer declaration:
- s32 buf[6] -> IIO_DECLARE_BUFFER_WITH_TS(s32, buf, 3).
- ARCH_DMA_MINALIGN -> IIO_DMA_MINALIGN; comment about
CONFIG_DMA_API_DEBUG removed.
FIFO read:
- get_unaligned_be24() with a single mask for each 24-bit word,
matching si1133.c and rm3100-core.c.
Error handling:
- if (!ret) chains replaced with goto throughout read_raw and
buffer_postenable.
regmap helpers:
- regmap_update_bits(..., SHDN, 0) -> regmap_clear_bits().
- regmap_update_bits(..., SHDN, SHDN) -> regmap_set_bits().
IRQ handler:
- Overflow: flush FIFO pointers and return — no attempt to reconstruct
timestamps from unreliable data.
- memset of push buffer removed.
- iio_push_to_buffers_with_timestamp() -> iio_push_to_buffers_with_ts().
- pf->timestamp replaced with ktime_get_ns() (no trigger object now).
Other style fixes:
- All code-section comments removed (/* Trigger */, /* Probe */, etc.).
- Forced variable declaration alignment removed.
- usleep_range(1000, 2000) -> fsleep(1000).
- 10000000 -> 10 * NSEC_PER_MSEC.
- LED_PA_DEFAULT -> LED_PA_50MA.
- Part ID mismatch: dev_warn() instead of returning -ENODEV.
- IRQ trigger type fallback (IRQF_TRIGGER_FALLING) removed.
Regulators:
- vref removed from driver and DT binding (not a supply per datasheet).
- devm_regulator_get_enable_optional() -> devm_regulator_get_enable().
Signed-off-by: Md Shofiqul Islam <shofiqtest@gmail.com>
next prev parent reply other threads:[~2026-07-06 20:50 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-23 14:01 [PATCH 0/1] iio: health: add MAX86150 ECG and PPG biosensor driver Md Shofiqul Islam
2026-06-23 14:01 ` [PATCH 1/1] " Md Shofiqul Islam
2026-06-23 14:14 ` sashiko-bot
2026-06-23 14:38 ` Joshua Crofts
2026-06-23 15:38 ` Krzysztof Kozlowski
2026-06-30 16:52 ` Uwe Kleine-König
2026-06-23 15:55 ` [PATCH v2 0/3] " Md Shofiqul Islam
2026-06-23 15:55 ` [PATCH v2 1/3] dt-bindings: iio: health: add maxim,max86150 Md Shofiqul Islam
2026-06-23 16:02 ` sashiko-bot
2026-06-23 15:55 ` [PATCH v2 2/3] iio: health: add MAX86150 ECG and PPG biosensor driver Md Shofiqul Islam
2026-06-23 16:12 ` sashiko-bot
2026-06-23 15:55 ` [PATCH v2 3/3] MAINTAINERS: add entry for MAX86150 IIO health driver Md Shofiqul Islam
2026-06-23 17:45 ` [PATCH v4 0/3] iio: health: add MAX86150 ECG and PPG biosensor driver Md Shofiqul Islam
2026-06-23 17:45 ` [PATCH v4 1/3] dt-bindings: iio: health: add maxim,max86150 Md Shofiqul Islam
2026-06-23 17:45 ` [PATCH v4 2/3] iio: health: add MAX86150 ECG and PPG biosensor driver Md Shofiqul Islam
2026-06-23 17:57 ` sashiko-bot
2026-06-23 20:52 ` Andy Shevchenko
2026-06-23 17:46 ` [PATCH v4 3/3] MAINTAINERS: add entry for MAX86150 IIO health driver Md Shofiqul Islam
2026-06-23 20:11 ` [PATCH v5 0/3] iio: health: add MAX86150 ECG and PPG biosensor driver Md Shofiqul Islam
2026-06-23 20:11 ` [PATCH v5 1/3] dt-bindings: iio: health: add adi,max86150 Md Shofiqul Islam
2026-06-23 21:17 ` sashiko-bot
2026-06-25 6:33 ` Krzysztof Kozlowski
2026-07-02 2:58 ` Jonathan Cameron
2026-06-23 20:11 ` [PATCH v5 2/3] iio: health: add MAX86150 ECG and PPG biosensor driver Md Shofiqul Islam
2026-06-23 21:30 ` sashiko-bot
2026-07-02 3:42 ` Jonathan Cameron
2026-07-06 20:50 ` Md Shofiqul Islam [this message]
2026-06-23 20:11 ` [PATCH v5 3/3] MAINTAINERS: add entry for MAX86150 IIO health driver Md Shofiqul Islam
2026-06-24 6:22 ` Krzysztof Kozlowski
2026-06-24 6:53 ` Joshua Crofts
2026-07-02 1:41 ` [PATCH v5 0/3] iio: health: add MAX86150 ECG and PPG biosensor driver Jonathan Cameron
2026-06-23 21:04 ` [PATCH v2 " David Lechner
2026-07-02 1:43 ` Jonathan Cameron
2026-06-23 16:43 ` [PATCH v3 " Md Shofiqul Islam
2026-06-23 16:43 ` [PATCH v3 1/3] dt-bindings: iio: health: add maxim,max86150 Md Shofiqul Islam
2026-06-23 17:53 ` Conor Dooley
2026-06-23 16:43 ` [PATCH v3 2/3] iio: health: add MAX86150 ECG and PPG biosensor driver Md Shofiqul Islam
2026-06-23 16:57 ` sashiko-bot
2026-06-23 16:43 ` [PATCH v3 3/3] MAINTAINERS: add entry for MAX86150 IIO health driver Md Shofiqul Islam
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=6a4c1522.63d4a161.13ea90.1761@mx.google.com \
--to=shofiqtest@gmail.com \
--cc=jic23@kernel.org \
--cc=krzk@kernel.org \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.