[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <ZnwXO6vApHfkXyqx@debian-BULLSEYE-live-builder-AMD64>
Date: Wed, 26 Jun 2024 10:27:23 -0300
From: Marcelo Schmitt <marcelo.schmitt1@...il.com>
To: Alexandru Ardelean <aardelean@...libre.com>
Cc: Marcelo Schmitt <marcelo.schmitt@...log.com>, broonie@...nel.org,
lars@...afoo.de, Michael.Hennerich@...log.com, jic23@...nel.org,
robh+dt@...nel.org, krzysztof.kozlowski+dt@...aro.org,
conor+dt@...nel.org, nuno.sa@...log.com, dlechner@...libre.com,
corbet@....net, linux-iio@...r.kernel.org,
devicetree@...r.kernel.org, linux-spi@...r.kernel.org,
linux-doc@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v5 4/7] spi: spi-axi-spi-engine: Add support for MOSI
idle configuration
On 06/26, Alexandru Ardelean wrote:
> On Wed, Jun 26, 2024 at 12:55 AM Marcelo Schmitt
> <marcelo.schmitt@...log.com> wrote:
> >
> > Implement MOSI idle low and MOSI idle high to better support peripherals
> > that request specific MOSI behavior.
> >
>
> One minor nitpick.
> Feel free to ignore, if there won't be a re-spin.
>
> > Signed-off-by: Marcelo Schmitt <marcelo.schmitt@...log.com>
> > ---
> > drivers/spi/spi-axi-spi-engine.c | 8 ++++++++
> > 1 file changed, 8 insertions(+)
> >
...
> > @@ -646,6 +651,9 @@ static int spi_engine_probe(struct platform_device *pdev)
> >
> > host->dev.of_node = pdev->dev.of_node;
> > host->mode_bits = SPI_CPOL | SPI_CPHA | SPI_3WIRE;
> > + if (ADI_AXI_PCORE_VER_MAJOR(version) >= 1 &&
> > + ADI_AXI_PCORE_VER_MINOR(version) >= 3)
> > + host->mode_bits |= SPI_MOSI_IDLE_LOW | SPI_MOSI_IDLE_HIGH;
>
> There's a second space after the assignment.
> host->mode_bits |=<2 spaces here>SPI_MOSI_IDLE_LOW |
> SPI_MOSI_IDLE_HIGH;
ack
thanks
>
>
> > host->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32);
> > host->max_speed_hz = clk_get_rate(spi_engine->ref_clk) / 2;
> > host->transfer_one_message = spi_engine_transfer_one_message;
> > --
> > 2.43.0
> >
> >
Powered by blists - more mailing lists