From: laurent.pinchart@ideasonboard.com (Laurent Pinchart)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 6/6] pinctrl: sh-pfc: Confine legacy function GPIOs to SH
Date: Tue, 04 Aug 2015 17:19:57 +0300 [thread overview]
Message-ID: <2553252.oFXfDSh3t2@avalon> (raw)
In-Reply-To: <1438696519-13727-7-git-send-email-geert+renesas@glider.be>
Hi Geert,
Thank you for the patch.
On Tuesday 04 August 2015 15:55:19 Geert Uytterhoeven wrote:
> Legacy function GPIOs are no longer used on ARM since commit
> a27c5cd1a08cc95c ("sh-pfc: sh73a0: Remove function GPIOs").
> Extract its setup code into a separate function, and make all function
> GPIO related code and data depend on CONFIG_SUPERH.
>
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
We now need a volunteer to port SH to proper pinctrl to remove the function
GPIOs completely :-)
> ---
> Compile-tested on sh using se7724_defconfig.
>
> v2:
> - Add Acked-by,
> - #ifdef out the code instead of introducing helper and dummy
> functions.
> ---
> drivers/pinctrl/sh-pfc/core.h | 2 ++
> drivers/pinctrl/sh-pfc/gpio.c | 7 ++++++-
> drivers/pinctrl/sh-pfc/sh_pfc.h | 2 ++
> 3 files changed, 10 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/pinctrl/sh-pfc/core.h b/drivers/pinctrl/sh-pfc/core.h
> index 4c3c37bf7161804d..c38ace46d7111b0d 100644
> --- a/drivers/pinctrl/sh-pfc/core.h
> +++ b/drivers/pinctrl/sh-pfc/core.h
> @@ -46,7 +46,9 @@ struct sh_pfc {
> unsigned int nr_gpio_pins;
>
> struct sh_pfc_chip *gpio;
> +#ifdef CONFIG_SUPERH
> struct sh_pfc_chip *func;
> +#endif
>
> struct sh_pfc_pinctrl *pinctrl;
> };
> diff --git a/drivers/pinctrl/sh-pfc/gpio.c b/drivers/pinctrl/sh-pfc/gpio.c
> index e46439030914ad13..685b3c24627daf03 100644
> --- a/drivers/pinctrl/sh-pfc/gpio.c
> +++ b/drivers/pinctrl/sh-pfc/gpio.c
> @@ -261,6 +261,7 @@ static int gpio_pin_setup(struct sh_pfc_chip *chip)
> * Function GPIOs
> */
>
> +#ifdef CONFIG_SUPERH
> static int gpio_function_request(struct gpio_chip *gc, unsigned offset)
> {
> static bool __print_once;
> @@ -300,6 +301,7 @@ static int gpio_function_setup(struct sh_pfc_chip *chip)
>
> return 0;
> }
> +#endif
>
> /*
> ---------------------------------------------------------------------------
> -- * Register/unregister
> @@ -399,6 +401,7 @@ int sh_pfc_register_gpiochip(struct sh_pfc *pfc)
> }
> }
>
> +#ifdef CONFIG_SUPERH
> /* Register the function GPIOs chip. */
> if (pfc->info->nr_func_gpios == 0)
> return 0;
> @@ -408,6 +411,7 @@ int sh_pfc_register_gpiochip(struct sh_pfc *pfc)
> return PTR_ERR(chip);
>
> pfc->func = chip;
> +#endif /* CONFIG_SUPERH */
>
> return 0;
> }
> @@ -415,7 +419,8 @@ int sh_pfc_register_gpiochip(struct sh_pfc *pfc)
> int sh_pfc_unregister_gpiochip(struct sh_pfc *pfc)
> {
> gpiochip_remove(&pfc->gpio->gpio_chip);
> +#ifdef CONFIG_SUPERH
> gpiochip_remove(&pfc->func->gpio_chip);
> -
> +#endif
> return 0;
> }
> diff --git a/drivers/pinctrl/sh-pfc/sh_pfc.h
> b/drivers/pinctrl/sh-pfc/sh_pfc.h index 0874cfee6889afa1..1f43bae56065e659
> 100644
> --- a/drivers/pinctrl/sh-pfc/sh_pfc.h
> +++ b/drivers/pinctrl/sh-pfc/sh_pfc.h
> @@ -138,8 +138,10 @@ struct sh_pfc_soc_info {
> const struct sh_pfc_function *functions;
> unsigned int nr_functions;
>
> +#ifdef CONFIG_SUPERH
> const struct pinmux_func *func_gpios;
> unsigned int nr_func_gpios;
> +#endif
>
> const struct pinmux_cfg_reg *cfg_regs;
> const struct pinmux_data_reg *data_regs;
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2015-08-04 14:19 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-04 13:55 [PATCH v2 0/6] ARM: shmobile: Move gpio ranges from C code to DT Geert Uytterhoeven
2015-08-04 13:55 ` [PATCH v2 1/6] ARM: shmobile: r8a73a4 dtsi: Add missing "gpio-ranges" to gpio node Geert Uytterhoeven
2015-08-04 13:55 ` [PATCH v2 2/6] ARM: shmobile: r8a7740 " Geert Uytterhoeven
2015-08-04 13:55 ` [PATCH v2 3/6] ARM: shmobile: sh73a0 " Geert Uytterhoeven
2015-08-04 13:55 ` [PATCH v2 4/6] pinctrl: sh-pfc: Stop calling gpiochip_add_pin_range() on DT platforms Geert Uytterhoeven
2015-10-01 16:04 ` Laurent Pinchart
2015-08-04 13:55 ` [PATCH v2 5/6] pinctrl: sh-pfc: Remove empty gpio_function_free() Geert Uytterhoeven
2015-08-04 13:55 ` [PATCH v2 6/6] pinctrl: sh-pfc: Confine legacy function GPIOs to SH Geert Uytterhoeven
2015-08-04 14:19 ` Laurent Pinchart [this message]
2015-08-05 0:55 ` [PATCH v2 0/6] ARM: shmobile: Move gpio ranges from C code to DT Simon Horman
2015-08-05 6:51 ` Geert Uytterhoeven
2015-08-13 12:29 ` Linus Walleij
2015-08-13 12:45 ` Geert Uytterhoeven
2015-08-14 0:30 ` Simon Horman
2015-08-14 7:46 ` Geert Uytterhoeven
2015-08-14 10:34 ` Linus Walleij
2015-08-17 15:56 ` Simon Horman
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=2553252.oFXfDSh3t2@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox