On Fri, May 29, 2026 at 12:14 AM Rosen Penev <[email protected]> wrote:
>
> Move the ppc4xx gpio driver out of arch/powerpc/platforms/44x/ into
> drivers/gpio/gpio-ppc44x.c. The driver follows the same pattern as
> other PowerPC GPIO drivers already in drivers/gpio/ (e.g.
> gpio-mpc8xxx, gpio-mpc5200).
>
> - Replace PPC-specific clrbits32()/setbits32() with local helpers
> using ioread32be()/iowrite32be() so the driver can be built on
> any architecture with COMPILE_TEST
> - Renamed Kconfig symbol from PPC4xx_GPIO to GPIO_PPC44X (40x was
> removed in 47d13a269bbd, only 44x remains)
> - Rename symbols in the driver with 44x instead of 4xx to reflect the
> absense of 40x.
> - Changed dependency to depends on 44x || COMPILE_TEST
> - Updated ppc44x_defconfig and warp_defconfig to use the new symbol
> - Marked the new option as tristate (was bool) since the driver
> supports module build via module_platform_driver()
>
> Assisted-by: OpenCode:BigPickle
> Signed-off-by: Rosen Penev <[email protected]>
> ---
> v2: COMPILE_TEST everywhere
This was not it either. I forgot I had a bunch of local modifications
that would conflict. Back to the drawing board...
> arch/powerpc/configs/44x/warp_defconfig | 2 +-
> arch/powerpc/configs/ppc44x_defconfig | 2 +-
> arch/powerpc/platforms/44x/Kconfig | 8 --
> arch/powerpc/platforms/44x/Makefile | 1 -
> drivers/gpio/Kconfig | 7 ++
> drivers/gpio/Makefile | 1 +
> .../44x/gpio.c => drivers/gpio/gpio-ppc44x.c | 88 +++++++++++--------
> 7 files changed, 62 insertions(+), 47 deletions(-)
> rename arch/powerpc/platforms/44x/gpio.c => drivers/gpio/gpio-ppc44x.c (61%)
>
> diff --git a/arch/powerpc/configs/44x/warp_defconfig
> b/arch/powerpc/configs/44x/warp_defconfig
> index 5757625469c4..d6014b9c5708 100644
> --- a/arch/powerpc/configs/44x/warp_defconfig
> +++ b/arch/powerpc/configs/44x/warp_defconfig
> @@ -12,7 +12,7 @@ CONFIG_MODULE_UNLOAD=y
> # CONFIG_BLK_DEV_BSG is not set
> # CONFIG_EBONY is not set
> CONFIG_WARP=y
> -CONFIG_PPC4xx_GPIO=y
> +CONFIG_GPIO_PPC44X=y
> CONFIG_HZ_1000=y
> CONFIG_CMDLINE="ip=on"
> # CONFIG_PCI is not set
> diff --git a/arch/powerpc/configs/ppc44x_defconfig
> b/arch/powerpc/configs/ppc44x_defconfig
> index 41c930f74ed4..b0c7ad8c6d9b 100644
> --- a/arch/powerpc/configs/ppc44x_defconfig
> +++ b/arch/powerpc/configs/ppc44x_defconfig
> @@ -22,7 +22,7 @@ CONFIG_GLACIER=y
> CONFIG_REDWOOD=y
> CONFIG_EIGER=y
> CONFIG_YOSEMITE=y
> -CONFIG_PPC4xx_GPIO=y
> +CONFIG_GPIO_PPC44X=y
> CONFIG_MATH_EMULATION=y
> CONFIG_NET=y
> CONFIG_PACKET=y
> diff --git a/arch/powerpc/platforms/44x/Kconfig
> b/arch/powerpc/platforms/44x/Kconfig
> index d9717bf04a3f..150813cea945 100644
> --- a/arch/powerpc/platforms/44x/Kconfig
> +++ b/arch/powerpc/platforms/44x/Kconfig
> @@ -227,14 +227,6 @@ config PPC44x_SIMPLE
> help
> This option enables the simple PowerPC 44x platform support.
>
> -config PPC4xx_GPIO
> - bool "PPC4xx GPIO support"
> - depends on 44x
> - select GPIO_GENERIC
> - select GPIOLIB
> - help
> - Enable gpiolib support for ppc440 based boards
> -
> # 44x specific CPU modules, selected based on the board above.
> config 440EP
> bool
> diff --git a/arch/powerpc/platforms/44x/Makefile
> b/arch/powerpc/platforms/44x/Makefile
> index ca7b1bb442d9..179468a00f5e 100644
> --- a/arch/powerpc/platforms/44x/Makefile
> +++ b/arch/powerpc/platforms/44x/Makefile
> @@ -15,4 +15,3 @@ obj-$(CONFIG_FSP2) += fsp2.o
> obj-$(CONFIG_PCI) += pci.o
> obj-$(CONFIG_PPC4xx_HSTA_MSI) += hsta_msi.o
> obj-$(CONFIG_PPC4xx_CPM) += cpm.o
> -obj-$(CONFIG_PPC4xx_GPIO) += gpio.o
> diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
> index 89c77ec6c205..7374f82b7040 100644
> --- a/drivers/gpio/Kconfig
> +++ b/drivers/gpio/Kconfig
> @@ -593,6 +593,13 @@ config GPIO_POLARFIRE_SOC
> help
> Say yes here to support the GPIO controllers on Microchip FPGAs.
>
> +config GPIO_PPC44X
> + tristate "PPC44x GPIO support"
> + depends on 44x || COMPILE_TEST
> + select GPIO_GENERIC
> + help
> + Enable gpiolib support for ppc440 based boards.
> +
> config GPIO_PXA
> bool "PXA GPIO support"
> depends on ARCH_PXA || ARCH_MMP || COMPILE_TEST
> diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile
> index 8ec03c9aec20..9e8c9ca1d3fb 100644
> --- a/drivers/gpio/Makefile
> +++ b/drivers/gpio/Makefile
> @@ -146,6 +146,7 @@ obj-$(CONFIG_GPIO_PCIE_IDIO_24) +=
> gpio-pcie-idio-24.o
> obj-$(CONFIG_GPIO_PCI_IDIO_16) += gpio-pci-idio-16.o
> obj-$(CONFIG_GPIO_PISOSR) += gpio-pisosr.o
> obj-$(CONFIG_GPIO_PL061) += gpio-pl061.o
> +obj-$(CONFIG_GPIO_PPC44X) += gpio-ppc44x.o
> obj-$(CONFIG_GPIO_PMIC_EIC_SPRD) += gpio-pmic-eic-sprd.o
> obj-$(CONFIG_GPIO_POLARFIRE_SOC) += gpio-mpfs.o
> obj-$(CONFIG_GPIO_PXA) += gpio-pxa.o
> diff --git a/arch/powerpc/platforms/44x/gpio.c b/drivers/gpio/gpio-ppc44x.c
> similarity index 61%
> rename from arch/powerpc/platforms/44x/gpio.c
> rename to drivers/gpio/gpio-ppc44x.c
> index 6b4814ed12b5..cc7796e0cfbd 100644
> --- a/arch/powerpc/platforms/44x/gpio.c
> +++ b/drivers/gpio/gpio-ppc44x.c
> @@ -1,6 +1,6 @@
> // SPDX-License-Identifier: GPL-2.0-only
> /*
> - * PPC4xx gpio driver
> + * PPC44x gpio driver
> *
> * Copyright (c) 2008 Harris Corporation
> * Copyright (c) 2008 Sascha Hauer <[email protected]>, Pengutronix
> @@ -22,7 +22,7 @@
> #define GPIO_MASK2(gpio) (0xc0000000 >> ((gpio) * 2))
>
> /* Physical GPIO register layout */
> -struct ppc4xx_gpio {
> +struct ppc44x_gpio {
> __be32 or;
> __be32 tcr;
> __be32 osrl;
> @@ -43,11 +43,27 @@ struct ppc4xx_gpio {
> __be32 isr3h;
> };
>
> -struct ppc4xx_gpio_chip {
> +struct ppc44x_gpio_chip {
> struct gpio_generic_chip chip;
> void __iomem *regs;
> };
>
> +static inline void ppc44x_clrbits32(void __iomem *addr, u32 mask)
> +{
> + u32 val = ioread32be(addr);
> +
> + val &= ~mask;
> + iowrite32be(val, addr);
> +}
> +
> +static inline void ppc44x_setbits32(void __iomem *addr, u32 mask)
> +{
> + u32 val = ioread32be(addr);
> +
> + val |= mask;
> + iowrite32be(val, addr);
> +}
> +
> /*
> * GPIO LIB API implementation for GPIOs
> *
> @@ -55,9 +71,9 @@ struct ppc4xx_gpio_chip {
> */
>
> static inline void
> -__ppc4xx_gpio_set(struct gpio_chip *gc, unsigned int gpio, int val)
> +__ppc44x_gpio_set(struct gpio_chip *gc, unsigned int gpio, int val)
> {
> - struct ppc4xx_gpio_chip *chip = gpiochip_get_data(gc);
> + struct ppc44x_gpio_chip *chip = gpiochip_get_data(gc);
> struct gpio_generic_chip *gen_gc = &chip->chip;
>
> if (val)
> @@ -68,29 +84,29 @@ __ppc4xx_gpio_set(struct gpio_chip *gc, unsigned int
> gpio, int val)
> gpio_generic_write_reg(gen_gc, gen_gc->reg_set, gen_gc->sdata);
> }
>
> -static int ppc4xx_gpio_dir_in(struct gpio_chip *gc, unsigned int gpio)
> +static int ppc44x_gpio_dir_in(struct gpio_chip *gc, unsigned int gpio)
> {
> - struct ppc4xx_gpio_chip *chip = gpiochip_get_data(gc);
> + struct ppc44x_gpio_chip *chip = gpiochip_get_data(gc);
> struct gpio_generic_chip *gen_gc = &chip->chip;
> - struct ppc4xx_gpio __iomem *regs = chip->regs;
> + struct ppc44x_gpio __iomem *regs = chip->regs;
> unsigned long flags;
>
> gpio_generic_chip_lock_irqsave(gen_gc, flags);
>
> /* Disable open-drain function */
> - clrbits32(®s->odr, GPIO_MASK(gpio));
> + ppc44x_clrbits32(®s->odr, GPIO_MASK(gpio));
>
> /* Float the pin */
> - clrbits32(®s->tcr, GPIO_MASK(gpio));
> + ppc44x_clrbits32(®s->tcr, GPIO_MASK(gpio));
> gen_gc->sdir &= ~GPIO_MASK(gpio);
>
> /* Bits 0-15 use TSRL/OSRL, bits 16-31 use TSRH/OSRH */
> if (gpio < 16) {
> - clrbits32(®s->osrl, GPIO_MASK2(gpio));
> - clrbits32(®s->tsrl, GPIO_MASK2(gpio));
> + ppc44x_clrbits32(®s->osrl, GPIO_MASK2(gpio));
> + ppc44x_clrbits32(®s->tsrl, GPIO_MASK2(gpio));
> } else {
> - clrbits32(®s->osrh, GPIO_MASK2(gpio));
> - clrbits32(®s->tsrh, GPIO_MASK2(gpio));
> + ppc44x_clrbits32(®s->osrh, GPIO_MASK2(gpio));
> + ppc44x_clrbits32(®s->tsrh, GPIO_MASK2(gpio));
> }
>
> gpio_generic_chip_unlock_irqrestore(gen_gc, flags);
> @@ -99,32 +115,32 @@ static int ppc4xx_gpio_dir_in(struct gpio_chip *gc,
> unsigned int gpio)
> }
>
> static int
> -ppc4xx_gpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
> +ppc44x_gpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
> {
> - struct ppc4xx_gpio_chip *chip = gpiochip_get_data(gc);
> + struct ppc44x_gpio_chip *chip = gpiochip_get_data(gc);
> struct gpio_generic_chip *gen_gc = &chip->chip;
> - struct ppc4xx_gpio __iomem *regs = chip->regs;
> + struct ppc44x_gpio __iomem *regs = chip->regs;
> unsigned long flags;
>
> gpio_generic_chip_lock_irqsave(gen_gc, flags);
>
> /* First set initial value */
> - __ppc4xx_gpio_set(gc, gpio, val);
> + __ppc44x_gpio_set(gc, gpio, val);
>
> /* Disable open-drain function */
> - clrbits32(®s->odr, GPIO_MASK(gpio));
> + ppc44x_clrbits32(®s->odr, GPIO_MASK(gpio));
>
> /* Drive the pin */
> - setbits32(®s->tcr, GPIO_MASK(gpio));
> + ppc44x_setbits32(®s->tcr, GPIO_MASK(gpio));
> gen_gc->sdir |= GPIO_MASK(gpio);
>
> /* Bits 0-15 use TSRL, bits 16-31 use TSRH */
> if (gpio < 16) {
> - clrbits32(®s->osrl, GPIO_MASK2(gpio));
> - clrbits32(®s->tsrl, GPIO_MASK2(gpio));
> + ppc44x_clrbits32(®s->osrl, GPIO_MASK2(gpio));
> + ppc44x_clrbits32(®s->tsrl, GPIO_MASK2(gpio));
> } else {
> - clrbits32(®s->osrh, GPIO_MASK2(gpio));
> - clrbits32(®s->tsrh, GPIO_MASK2(gpio));
> + ppc44x_clrbits32(®s->osrh, GPIO_MASK2(gpio));
> + ppc44x_clrbits32(®s->tsrh, GPIO_MASK2(gpio));
> }
>
> gpio_generic_chip_unlock_irqrestore(gen_gc, flags);
> @@ -134,14 +150,14 @@ ppc4xx_gpio_dir_out(struct gpio_chip *gc, unsigned int
> gpio, int val)
> return 0;
> }
>
> -static int ppc4xx_gpio_probe(struct platform_device *ofdev)
> +static int ppc44x_gpio_probe(struct platform_device *ofdev)
> {
> struct device *dev = &ofdev->dev;
> struct device_node *np = dev->of_node;
> - struct ppc4xx_gpio_chip *chip;
> + struct ppc44x_gpio_chip *chip;
> struct gpio_generic_chip_config config;
> struct gpio_chip *gc;
> - struct ppc4xx_gpio __iomem *regs;
> + struct ppc44x_gpio __iomem *regs;
> int ret;
>
> chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
> @@ -169,8 +185,8 @@ static int ppc4xx_gpio_probe(struct platform_device
> *ofdev)
>
> gc = &chip->chip.gc;
> gc->fwnode = dev_fwnode(dev);
> - gc->direction_input = ppc4xx_gpio_dir_in;
> - gc->direction_output = ppc4xx_gpio_dir_out;
> + gc->direction_input = ppc44x_gpio_dir_in;
> + gc->direction_output = ppc44x_gpio_dir_out;
>
> gc->label = devm_kasprintf(dev, GFP_KERNEL, "%pOF", np);
> if (!gc->label)
> @@ -179,20 +195,20 @@ static int ppc4xx_gpio_probe(struct platform_device
> *ofdev)
> return devm_gpiochip_add_data(dev, gc, chip);
> }
>
> -static const struct of_device_id ppc4xx_gpio_match[] = {
> +static const struct of_device_id ppc44x_gpio_match[] = {
> {
> .compatible = "ibm,ppc4xx-gpio",
> },
> {},
> };
> -MODULE_DEVICE_TABLE(of, ppc4xx_gpio_match);
> +MODULE_DEVICE_TABLE(of, ppc44x_gpio_match);
>
> -static struct platform_driver ppc4xx_gpio_driver = {
> - .probe = ppc4xx_gpio_probe,
> +static struct platform_driver ppc44x_gpio_driver = {
> + .probe = ppc44x_gpio_probe,
> .driver = {
> - .name = "ppc4xx-gpio",
> - .of_match_table = ppc4xx_gpio_match,
> + .name = "ppc44x-gpio",
> + .of_match_table = ppc44x_gpio_match,
> },
> };
>
> -module_platform_driver(ppc4xx_gpio_driver);
> +module_platform_driver(ppc44x_gpio_driver);
> --
> 2.54.0
>