From: Conor Dooley <conor@kernel.org>
To: Prajna Rajendra Kumar <prajna.rajendrakumar@microchip.com>
Cc: Mark Brown <broonie@kernel.org>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
linux-riscv@lists.infradead.org, linux-spi@vger.kernel.org,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
Conor Dooley <conor.dooley@microchip.com>,
Daire McNamara <daire.mcnamara@microchip.com>,
valentina.fernandezalanis@microchip.com
Subject: Re: [PATCH v2 3/3] spi: spi-microchip-core: Add support for GPIO based CS
Date: Tue, 14 May 2024 18:57:04 +0100 [thread overview]
Message-ID: <20240514-malt-diffuser-2fd207015e72@spud> (raw)
In-Reply-To: <20240514104508.938448-4-prajna.rajendrakumar@microchip.com>
[-- Attachment #1.1: Type: text/plain, Size: 1978 bytes --]
Prajna, Mark,
On Tue, May 14, 2024 at 11:45:08AM +0100, Prajna Rajendra Kumar wrote:
> The SPI "hard" controller within the PolarFire SoC is capable of
> handling eight CS lines, but only one CS line is wired. Therefore, use
> GPIO descriptors to configure additional CS lines.
>
> Signed-off-by: Prajna Rajendra Kumar <prajna.rajendrakumar@microchip.com>
I provided an ack on v1, so here it is again:
Acked-by: Conor Dooley <conor.dooley@microchip.com>
In general you can keep tags between versions, if you intentionally drop
tags you should mention why you dropped them.
> ---
> drivers/spi/spi-microchip-core.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/spi/spi-microchip-core.c b/drivers/spi/spi-microchip-core.c
> index c10de45aa472..6246254e1dff 100644
> --- a/drivers/spi/spi-microchip-core.c
> +++ b/drivers/spi/spi-microchip-core.c
> @@ -258,6 +258,9 @@ static int mchp_corespi_setup(struct spi_device *spi)
> struct mchp_corespi *corespi = spi_controller_get_devdata(spi->controller);
> u32 reg;
>
> + if (spi_is_csgpiod(spi))
> + return 0;
Mark,
This has no users outside of core code, but is < 6 months old. Is using
it in a driver like this okay?
Cheers,
Conor.
> +
> /*
> * Active high targets need to be specifically set to their inactive
> * states during probe by adding them to the "control group" & thus
> @@ -516,6 +519,7 @@ static int mchp_corespi_probe(struct platform_device *pdev)
>
> host->num_chipselect = num_cs;
> host->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
> + host->use_gpio_descriptors = true;
> host->setup = mchp_corespi_setup;
> host->bits_per_word_mask = SPI_BPW_MASK(8);
> host->transfer_one = mchp_corespi_transfer_one;
> --
> 2.25.1
>
>
> _______________________________________________
> linux-riscv mailing list
> linux-riscv@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-riscv
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
[-- Attachment #2: Type: text/plain, Size: 161 bytes --]
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
WARNING: multiple messages have this Message-ID (diff)
From: Conor Dooley <conor@kernel.org>
To: Prajna Rajendra Kumar <prajna.rajendrakumar@microchip.com>
Cc: Mark Brown <broonie@kernel.org>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
linux-riscv@lists.infradead.org, linux-spi@vger.kernel.org,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
Conor Dooley <conor.dooley@microchip.com>,
Daire McNamara <daire.mcnamara@microchip.com>,
valentina.fernandezalanis@microchip.com
Subject: Re: [PATCH v2 3/3] spi: spi-microchip-core: Add support for GPIO based CS
Date: Tue, 14 May 2024 18:57:04 +0100 [thread overview]
Message-ID: <20240514-malt-diffuser-2fd207015e72@spud> (raw)
In-Reply-To: <20240514104508.938448-4-prajna.rajendrakumar@microchip.com>
[-- Attachment #1: Type: text/plain, Size: 1978 bytes --]
Prajna, Mark,
On Tue, May 14, 2024 at 11:45:08AM +0100, Prajna Rajendra Kumar wrote:
> The SPI "hard" controller within the PolarFire SoC is capable of
> handling eight CS lines, but only one CS line is wired. Therefore, use
> GPIO descriptors to configure additional CS lines.
>
> Signed-off-by: Prajna Rajendra Kumar <prajna.rajendrakumar@microchip.com>
I provided an ack on v1, so here it is again:
Acked-by: Conor Dooley <conor.dooley@microchip.com>
In general you can keep tags between versions, if you intentionally drop
tags you should mention why you dropped them.
> ---
> drivers/spi/spi-microchip-core.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/spi/spi-microchip-core.c b/drivers/spi/spi-microchip-core.c
> index c10de45aa472..6246254e1dff 100644
> --- a/drivers/spi/spi-microchip-core.c
> +++ b/drivers/spi/spi-microchip-core.c
> @@ -258,6 +258,9 @@ static int mchp_corespi_setup(struct spi_device *spi)
> struct mchp_corespi *corespi = spi_controller_get_devdata(spi->controller);
> u32 reg;
>
> + if (spi_is_csgpiod(spi))
> + return 0;
Mark,
This has no users outside of core code, but is < 6 months old. Is using
it in a driver like this okay?
Cheers,
Conor.
> +
> /*
> * Active high targets need to be specifically set to their inactive
> * states during probe by adding them to the "control group" & thus
> @@ -516,6 +519,7 @@ static int mchp_corespi_probe(struct platform_device *pdev)
>
> host->num_chipselect = num_cs;
> host->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
> + host->use_gpio_descriptors = true;
> host->setup = mchp_corespi_setup;
> host->bits_per_word_mask = SPI_BPW_MASK(8);
> host->transfer_one = mchp_corespi_transfer_one;
> --
> 2.25.1
>
>
> _______________________________________________
> linux-riscv mailing list
> linux-riscv@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-riscv
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2024-05-14 17:57 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-14 10:45 [PATCH v2 0/3] Add support for GPIO based CS Prajna Rajendra Kumar
2024-05-14 10:45 ` Prajna Rajendra Kumar
2024-05-14 10:45 ` [PATCH v2 1/3] spi: dt-bindings: Add num-cs property for mpfs-spi Prajna Rajendra Kumar
2024-05-14 10:45 ` Prajna Rajendra Kumar
2024-05-14 17:52 ` Conor Dooley
2024-05-14 17:52 ` Conor Dooley
2024-07-11 16:36 ` Conor Dooley
2024-07-11 16:36 ` Conor Dooley
2024-05-14 10:45 ` [PATCH v2 2/3] spi: spi-microchip-core: Fix the number of chip selects supported Prajna Rajendra Kumar
2024-05-14 10:45 ` Prajna Rajendra Kumar
2024-05-14 17:53 ` Conor Dooley
2024-05-14 17:53 ` Conor Dooley
2024-05-14 10:45 ` [PATCH v2 3/3] spi: spi-microchip-core: Add support for GPIO based CS Prajna Rajendra Kumar
2024-05-14 10:45 ` Prajna Rajendra Kumar
2024-05-14 17:57 ` Conor Dooley [this message]
2024-05-14 17:57 ` Conor Dooley
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=20240514-malt-diffuser-2fd207015e72@spud \
--to=conor@kernel.org \
--cc=broonie@kernel.org \
--cc=conor.dooley@microchip.com \
--cc=daire.mcnamara@microchip.com \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linux-spi@vger.kernel.org \
--cc=prajna.rajendrakumar@microchip.com \
--cc=robh@kernel.org \
--cc=valentina.fernandezalanis@microchip.com \
/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.