Re: [PATCH v26 2/4] dt-bindings: i2c: ast2600-i2c.yaml: Add global-regs and transfer-mode properties
From: Rob Herring <robh@kernel.org>
Date: 2026-03-16 16:47:36
Also in:
linux-aspeed, linux-devicetree, linux-i2c, lkml, openbmc
On Sun, Mar 15, 2026 at 8:50 PM Jeremy Kerr [off-list ref] wrote:
Hi Ryan & Rob,quoted
quoted
quoted
+ aspeed,transfer-mode: + description: | + ASPEED ast2600 platform equipped with 16 I2C controllers each i2c controller + have 1 byte transfer buffer(byte mode), 32 bytes buffer(buffer mode), and + share a DMA engine. + Select I2C transfer mode for this controller. Supported values are: + - "byte": Use 1 byte for i2c transmit (1-byte buffer). + - "buffer": Use buffer (32-byte buffer) for i2c transmit. (default) + Better performance then byte mode.Good, I like worse performance so I can use byte mode.Thanks your review. Will remove performance statement.I don't think that really addresses Rob's point there. The selection of mode is somewhat a driver implementation decision (and so would not belong in a DT binding) - *except* that there are considerations around the use of hardware DMA channels, as covered in earlier review.
Am I supposed to go read the prior 25 versions?
[My understanding is that the mode needs to be defined here to select which i2c devices have a DMA channel allocated to them. I also think that byte mode may be useful in some scenarios, but that consideration certainly does not belong in the DT binding spec]
But this is selecting DMA for the bus, not specific devices. I would think the decision would be dynamic based on some xfer size. Certainly if the xfer is less than the buffer size (32bytes), then there is no advantage of DMA. Or do you mean some instances of the I2C controllers have DMA and some do not? If so, then ...
So, how about we refine this to *just* the hardware-specific component:
whether a DMA channel is allocated. A driver implementation can then
select the appropriate mode (dma, byte or buffer), depending on
implementation-specific details.
In that case, we would just have a boolean property, like:
aspeed,i2c-dma-enabled;... yes, this is fine.
- to signify that this controller may use a DMA channel. The choice of actual mode is left up to the driver implementation. Rob, would that suit better? This way, we don't have ambiguity on "buffer" default vs. absent property, and we're no longer specifying actual driver behaviour in the DT. Cheers, Jeremy