[PATCH RFC] iio: ad_sigma_delta: support four byte register writes
From: Tapio Reijonen
Date: Wed Sep 02 2026 - 00:12:12 EST
ad_sd_write_reg() writes at most three bytes of data after the command
byte. Devices that protect register writes with a checksum need one more
byte on the wire: a three byte register plus its CRC is four bytes of
data, which the switch currently rejects with -EINVAL.
Add the four byte case, and grow tx_buf from four to five bytes so that
the command byte and four data bytes fit. The layout of the structure
does not change, since rx_buf is aligned to eight bytes and only the
amount of padding before it shrinks.
Signed-off-by: Tapio Reijonen <tapio.reijonen@xxxxxxxxxxx>
---
There is no in-tree user of a four byte write yet, so I am sending this
as an RFC to ask how you would like it handled.
We drive an ad_sigma_delta part with CRC protected register writes
downstream. A three byte register plus its CRC byte is four bytes of
data after the command byte, which ad_sd_write_reg() currently rejects
with -EINVAL. No mainline sigma-delta driver implements the protocol
CRC these parts support, so the four byte case has no caller in tree
today.
Two questions:
- Is the core change welcome ahead of a driver that uses it, or would
you rather see it together with CRC support for one of the AD7xxx
parts?
- If the latter, is CRC support for ad7173 or ad7124 something you would
want at all?
Note that the buffer growth is not optional if the four byte case is
added: put_unaligned_be32() writes data[1] through data[4] and the
transfer length becomes five, so tx_buf has to be five bytes. Adding the
case without growing the buffer writes one byte out of bounds, into the
padding that alignment happens to leave before rx_buf.
---
drivers/iio/adc/ad_sigma_delta.c | 3 +++
include/linux/iio/adc/ad_sigma_delta.h | 4 ++--
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/iio/adc/ad_sigma_delta.c b/drivers/iio/adc/ad_sigma_delta.c
index 1b410291da5378584347231fcdb328fa5633a68e..bfdf28348e226a3b2311a8fc707aa4f41ed7e848 100644
--- a/drivers/iio/adc/ad_sigma_delta.c
+++ b/drivers/iio/adc/ad_sigma_delta.c
@@ -84,6 +84,9 @@ int ad_sd_write_reg(struct ad_sigma_delta *sigma_delta, unsigned int reg,
data[0] = (reg << sigma_delta->info->addr_shift) | sigma_delta->comm;
switch (size) {
+ case 4:
+ put_unaligned_be32(val, &data[1]);
+ break;
case 3:
put_unaligned_be24(val, &data[1]);
break;
diff --git a/include/linux/iio/adc/ad_sigma_delta.h b/include/linux/iio/adc/ad_sigma_delta.h
index 6e70a412e218d54bbf9bb6861b1a4cc89be868e8..866355789ef0923c28fe8b61cfecb8b29fa9fb42 100644
--- a/include/linux/iio/adc/ad_sigma_delta.h
+++ b/include/linux/iio/adc/ad_sigma_delta.h
@@ -121,11 +121,11 @@ struct ad_sigma_delta {
/*
* DMA (thus cache coherency maintenance) requires the
* transfer buffers to live in their own cache lines.
- * 'tx_buf' is up to 32 bits.
+ * 'tx_buf' is an 8 bit command plus up to 32 bits of data.
* 'rx_buf' is up to 32 bits per sample + 64 bit timestamp,
* rounded to 16 bytes to take into account padding.
*/
- u8 tx_buf[4] __aligned(IIO_DMA_MINALIGN);
+ u8 tx_buf[5] __aligned(IIO_DMA_MINALIGN);
u8 rx_buf[16] __aligned(8);
u8 sample_addr;
};
---
base-commit: cee9395acd8043be0644b25c34bfa86623f2b935
change-id: 20260831-ad-sigma-delta-4byte-82f465fd2d48
Best regards,
--
Tapio Reijonen <tapio.reijonen@xxxxxxxxxxx>