From: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: Mark Brown <broonie@kernel.org>, <linux-spi@vger.kernel.org>,
Marek Vasut <marek.vasut@gmail.com>,
Daniel Mack <daniel@zonque.org>,
Haojian Zhuang <haojian.zhuang@gmail.com>,
Robert Jarzmik <robert.jarzmik@free.fr>,
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH] spi: pxa2xx_spi: Convert to use GPIO descriptors
Date: Fri, 21 Jan 2022 09:42:43 +0000 [thread overview]
Message-ID: <20220121094243.0000651f@Huawei.com> (raw)
In-Reply-To: <20220121012014.287288-1-linus.walleij@linaro.org>
On Fri, 21 Jan 2022 02:20:14 +0100
Linus Walleij <linus.walleij@linaro.org> wrote:
> This converts the PXA2xx SPI driver to use GPIO descriptors
> exclusively to retrieve GPIO chip select lines.
>
> The device tree and ACPI paths of the driver already use
> descriptors, hence ->use_gpio_descriptors is already set and
> this codepath is well tested.
>
> Convert all the PXA boards providing chip select GPIOs as
> platform data and drop the old GPIO chipselect handling in
> favor of the core managing it exclusively.
>
> Cc: Marek Vasut <marek.vasut@gmail.com>
> Cc: Daniel Mack <daniel@zonque.org>
> Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
> Cc: Robert Jarzmik <robert.jarzmik@free.fr>
> Cc: linux-arm-kernel@lists.infradead.org
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> Documentation/spi/pxa2xx.rst | 3 --
> arch/arm/mach-pxa/corgi.c | 26 +++++++---------
> arch/arm/mach-pxa/hx4700.c | 10 +++++-
> arch/arm/mach-pxa/icontrol.c | 26 +++++++++++++---
> arch/arm/mach-pxa/littleton.c | 10 +++++-
> arch/arm/mach-pxa/magician.c | 12 +++++--
> arch/arm/mach-pxa/poodle.c | 14 ++++++---
> arch/arm/mach-pxa/spitz.c | 26 +++++++---------
> arch/arm/mach-pxa/stargate2.c | 21 +++++++++++--
> arch/arm/mach-pxa/z2.c | 20 ++++++++++--
> drivers/spi/spi-pxa2xx.c | 57 ----------------------------------
> include/linux/spi/pxa2xx_spi.h | 1 -
> 12 files changed, 117 insertions(+), 109 deletions(-)
>
...
> diff --git a/arch/arm/mach-pxa/stargate2.c b/arch/arm/mach-pxa/stargate2.c
> index 8ca02ec1d44c..650043023006 100644
> --- a/arch/arm/mach-pxa/stargate2.c
> +++ b/arch/arm/mach-pxa/stargate2.c
> @@ -346,6 +346,23 @@ static struct pxa2xx_spi_controller pxa_ssp_master_2_info = {
> .num_chipselect = 1,
> };
>
> +static struct gpiod_lookup_table pxa_ssp1_gpio_table = {
> + .dev_id = "pxa2xx-spi.1",
> + .table = {
> + GPIO_LOOKUP_IDX("gpio-pxa", 24, "cs", 0, GPIO_ACTIVE_LOW),
> + { },
> + },
> +};
> +
> +static struct gpiod_lookup_table pxa_ssp3_gpio_table = {
> + .dev_id = "pxa2xx-spi.3",
> + .table = {
> + GPIO_LOOKUP_IDX("gpio-pxa", 39, "cs", 0, GPIO_ACTIVE_LOW),
> + { },
> + },
> +};
> +
Nitpick, one line will do.
As a side note I have a patch outstanding (from May 2021) to drop
stargate2/imote2 on basis that I strongly suspect I'm the only person
who still has access to hardware and I've not booted one for a few years.
https://lore.kernel.org/all/20210523163606.1966355-1-jic23@kernel.org/
Patch still applies cleanly.
In meantime for stargate2/imote2 (same file) Should both patches go in
the merge conflict will be very obvious ;)
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> +
> /* An upcoming kernel change will scrap SFRM usage so these
> * drivers have been moved to use GPIOs */
> static struct pxa2xx_spi_chip staccel_chip_info = {
> @@ -353,7 +370,6 @@ static struct pxa2xx_spi_chip staccel_chip_info = {
> .rx_threshold = 8,
> .dma_burst_size = 8,
> .timeout = 235,
> - .gpio_cs = 24,
> };
>
> static struct pxa2xx_spi_chip cc2420_info = {
> @@ -361,7 +377,6 @@ static struct pxa2xx_spi_chip cc2420_info = {
> .rx_threshold = 8,
> .dma_burst_size = 8,
> .timeout = 235,
> - .gpio_cs = 39,
> };
>
> static struct spi_board_info spi_board_info[] __initdata = {
> @@ -410,6 +425,8 @@ static void __init imote2_stargate2_init(void)
> pxa_set_btuart_info(NULL);
> pxa_set_stuart_info(NULL);
>
> + gpiod_add_lookup_table(&pxa_ssp1_gpio_table);
> + gpiod_add_lookup_table(&pxa_ssp3_gpio_table);
> pxa2xx_set_spi_info(1, &pxa_ssp_master_0_info);
> pxa2xx_set_spi_info(2, &pxa_ssp_master_1_info);
> pxa2xx_set_spi_info(3, &pxa_ssp_master_2_info);
WARNING: multiple messages have this Message-ID (diff)
From: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: Mark Brown <broonie@kernel.org>, <linux-spi@vger.kernel.org>,
Marek Vasut <marek.vasut@gmail.com>,
Daniel Mack <daniel@zonque.org>,
Haojian Zhuang <haojian.zhuang@gmail.com>,
Robert Jarzmik <robert.jarzmik@free.fr>,
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH] spi: pxa2xx_spi: Convert to use GPIO descriptors
Date: Fri, 21 Jan 2022 09:42:43 +0000 [thread overview]
Message-ID: <20220121094243.0000651f@Huawei.com> (raw)
In-Reply-To: <20220121012014.287288-1-linus.walleij@linaro.org>
On Fri, 21 Jan 2022 02:20:14 +0100
Linus Walleij <linus.walleij@linaro.org> wrote:
> This converts the PXA2xx SPI driver to use GPIO descriptors
> exclusively to retrieve GPIO chip select lines.
>
> The device tree and ACPI paths of the driver already use
> descriptors, hence ->use_gpio_descriptors is already set and
> this codepath is well tested.
>
> Convert all the PXA boards providing chip select GPIOs as
> platform data and drop the old GPIO chipselect handling in
> favor of the core managing it exclusively.
>
> Cc: Marek Vasut <marek.vasut@gmail.com>
> Cc: Daniel Mack <daniel@zonque.org>
> Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
> Cc: Robert Jarzmik <robert.jarzmik@free.fr>
> Cc: linux-arm-kernel@lists.infradead.org
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> Documentation/spi/pxa2xx.rst | 3 --
> arch/arm/mach-pxa/corgi.c | 26 +++++++---------
> arch/arm/mach-pxa/hx4700.c | 10 +++++-
> arch/arm/mach-pxa/icontrol.c | 26 +++++++++++++---
> arch/arm/mach-pxa/littleton.c | 10 +++++-
> arch/arm/mach-pxa/magician.c | 12 +++++--
> arch/arm/mach-pxa/poodle.c | 14 ++++++---
> arch/arm/mach-pxa/spitz.c | 26 +++++++---------
> arch/arm/mach-pxa/stargate2.c | 21 +++++++++++--
> arch/arm/mach-pxa/z2.c | 20 ++++++++++--
> drivers/spi/spi-pxa2xx.c | 57 ----------------------------------
> include/linux/spi/pxa2xx_spi.h | 1 -
> 12 files changed, 117 insertions(+), 109 deletions(-)
>
...
> diff --git a/arch/arm/mach-pxa/stargate2.c b/arch/arm/mach-pxa/stargate2.c
> index 8ca02ec1d44c..650043023006 100644
> --- a/arch/arm/mach-pxa/stargate2.c
> +++ b/arch/arm/mach-pxa/stargate2.c
> @@ -346,6 +346,23 @@ static struct pxa2xx_spi_controller pxa_ssp_master_2_info = {
> .num_chipselect = 1,
> };
>
> +static struct gpiod_lookup_table pxa_ssp1_gpio_table = {
> + .dev_id = "pxa2xx-spi.1",
> + .table = {
> + GPIO_LOOKUP_IDX("gpio-pxa", 24, "cs", 0, GPIO_ACTIVE_LOW),
> + { },
> + },
> +};
> +
> +static struct gpiod_lookup_table pxa_ssp3_gpio_table = {
> + .dev_id = "pxa2xx-spi.3",
> + .table = {
> + GPIO_LOOKUP_IDX("gpio-pxa", 39, "cs", 0, GPIO_ACTIVE_LOW),
> + { },
> + },
> +};
> +
Nitpick, one line will do.
As a side note I have a patch outstanding (from May 2021) to drop
stargate2/imote2 on basis that I strongly suspect I'm the only person
who still has access to hardware and I've not booted one for a few years.
https://lore.kernel.org/all/20210523163606.1966355-1-jic23@kernel.org/
Patch still applies cleanly.
In meantime for stargate2/imote2 (same file) Should both patches go in
the merge conflict will be very obvious ;)
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> +
> /* An upcoming kernel change will scrap SFRM usage so these
> * drivers have been moved to use GPIOs */
> static struct pxa2xx_spi_chip staccel_chip_info = {
> @@ -353,7 +370,6 @@ static struct pxa2xx_spi_chip staccel_chip_info = {
> .rx_threshold = 8,
> .dma_burst_size = 8,
> .timeout = 235,
> - .gpio_cs = 24,
> };
>
> static struct pxa2xx_spi_chip cc2420_info = {
> @@ -361,7 +377,6 @@ static struct pxa2xx_spi_chip cc2420_info = {
> .rx_threshold = 8,
> .dma_burst_size = 8,
> .timeout = 235,
> - .gpio_cs = 39,
> };
>
> static struct spi_board_info spi_board_info[] __initdata = {
> @@ -410,6 +425,8 @@ static void __init imote2_stargate2_init(void)
> pxa_set_btuart_info(NULL);
> pxa_set_stuart_info(NULL);
>
> + gpiod_add_lookup_table(&pxa_ssp1_gpio_table);
> + gpiod_add_lookup_table(&pxa_ssp3_gpio_table);
> pxa2xx_set_spi_info(1, &pxa_ssp_master_0_info);
> pxa2xx_set_spi_info(2, &pxa_ssp_master_1_info);
> pxa2xx_set_spi_info(3, &pxa_ssp_master_2_info);
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2022-01-21 9:42 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-21 1:20 [PATCH] spi: pxa2xx_spi: Convert to use GPIO descriptors Linus Walleij
2022-01-21 1:20 ` Linus Walleij
2022-01-21 9:42 ` Jonathan Cameron [this message]
2022-01-21 9:42 ` Jonathan Cameron
2022-01-31 16:39 ` Mark Brown
2022-01-31 16:39 ` Mark Brown
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=20220121094243.0000651f@Huawei.com \
--to=jonathan.cameron@huawei.com \
--cc=broonie@kernel.org \
--cc=daniel@zonque.org \
--cc=haojian.zhuang@gmail.com \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-spi@vger.kernel.org \
--cc=marek.vasut@gmail.com \
--cc=robert.jarzmik@free.fr \
/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.