On 4/13/24 11:14 AM, Jonathan Cameron wrote: > On Tue, 9 Apr 2024 12:30:09 -0300 > Marcelo Schmitt <marcelo.schmitt1@xxxxxxxxx> wrote: > >> On 04/08, David Lechner wrote: >>> On Mon, Apr 8, 2024 at 9:32 AM Marcelo Schmitt >>> <marcelo.schmitt@xxxxxxxxxx> wrote: >>>> ... >>>> + >>>> + adi,spi-mode: >>>> + $ref: /schemas/types.yaml#/definitions/string >>>> + enum: [ single, chain ] >>> >>> It sounds like there are more possible wiring configurations for these >>> chips that I thought when suggesting reusing this binding from AD7944 >>> so we probably need more options here. (see my reply to the cover >>> letter for the complete context of these remarks) >>> >>> We identified A) an additional wiring configuration where SDI of the >>> ADC chip is wired to SDO of the SPI controller and B) a potential need >>> to pin mux between wiring modes to work around SPI controller >>> limitations perhaps we could omit the adi,spi-mode property and just >>> use the standard pinctrl properties. >>> >>> pinctrl-names: > > I'm lost on how pinctrl makes sense here. > Yes you are changing the modes of the pins, but not in a conventional sense > of some register that is being updated to say now use them like this. > The mode is dependent on the timing sequence of how the pins are used. > Otherwise looking at it a different way it's an external wiring thing we > aren't controlling it at all. Is pinctrl suitable for that? > I always thought of it as a way to change configurations of SoC pins. Yes, this is exactly what I think we need here. To write to the register, the chip has to be wired like this ("default"): +-------------+ +-----------------------------------| SDO | | | | | +--------------------| CS | | v | | | +--------------------+ | HOST | | | CNV | | | +--->| SDI AD7944 SDO |-------->| SDI | | SCK | | | +--------------------+ | | ^ | | +--------------------| SCLK | +-------------+ But to read sample data, the chip has to be wired in one of these 3 configurations: 3-wire mode ("single"): +-------------+ +--------------------| CS | v | | VIO +--------------------+ | HOST | | | CNV | | | +--->| SDI AD7944 SDO |-------->| SDI | | SCK | | | +--------------------+ | | ^ | | +--------------------| SCLK | +-------------+ 4-wire mode ("multi"): +-------------+ +-----------------------------------| CS | | | | | +--------------------| GPIO | | v | | | +--------------------+ | HOST | | | CNV | | | +--->| SDI AD7944 SDO |-------->| SDI | | SCK | | | +--------------------+ | | ^ | | +--------------------| SCLK | +-------------+ Chain mode ("chain"): +-------------+ +--------------------| CS | v | | +--------------------+ | HOST | | CNV | | | +--->| SDI AD7944 SDO |-------->| SDI | | | SCK | | | GND +--------------------+ | | ^ | | +--------------------| SCLK | +-------------+ If we want to be able to both write the register and read data, some reconfiguration is needed. It might be possible to read data using the register-write wiring configuration, but that only works if SDO can be set to the correct state *before* the CS line changes. This is not something that I think most SPI controllers can do (e.g. Marcelo mentioned in the cover letter that RPi always returns SDO to low after every xfer while the AXI SPI Engine leaves SDO wherever it was last). > > A pointer to some precendence in another driver for using it like this > would go some way towards convincing me. > > Jonathan > I didn't find much precedence for something like this, but I found devicetree/bindings/net/mediatek-bluetooth.txt that uses pinctrl to pull a UART Rx pin low for a bootstrap mode which sounds very similar to what we need to do here (pull the SPI controller SDO pin high or low for 3-wire or chain mode). For example, if we wanted to use 3-wire mode for reading data, we would set the pinctrl to "default" to write the register to configure the chip during driver probe. Then to read data, we would change the pinctrl to "single" before doing the SPI xfer to ensure that the ADC SDI pin is pulled high independent of what the SDO line of the SPI controller is currently doing.