From: Frank Li <Frank.li@nxp.com>
To: Ioana Ciornei <ioana.ciornei@nxp.com>
Cc: Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Linus Walleij <linus.walleij@linaro.org>,
Bartosz Golaszewski <brgl@bgdev.pl>,
Shawn Guo <shawnguo@kernel.org>,
Michael Walle <mwalle@kernel.org>, Lee Jones <lee@kernel.org>,
devicetree@vger.kernel.org, linux-gpio@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 5/9] drivers: gpio: add QIXIS FPGA GPIO controller
Date: Tue, 16 Sep 2025 12:39:02 -0400 [thread overview]
Message-ID: <aMmSpu/TWOmpHJ60@lizhi-Precision-Tower-5810> (raw)
In-Reply-To: <20250915122354.217720-6-ioana.ciornei@nxp.com>
On Mon, Sep 15, 2025 at 03:23:50PM +0300, Ioana Ciornei wrote:
> Add support for the GPIO controller found on some QIXIS FPGAs in
> Layerscape boards such as LX2160ARDB and LS1046AQDS. This driver is
> using gpio-regmap.
>
> A GPIO controller has a maximum of 8 lines (all found in the same
> register). Even within the same controller, the GPIO lines' direction is
> fixed, which mean that both input and output lines are found in the same
> register. This is why the driver also passed to gpio-regmap the newly
> added .fixed_direction_output bitmap to represent the true direction of
> the lines.
>
> Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com>
> ---
> Changes in v2:
> - Use the newly added .fixed_direction_output bitmap representing
> the fixed direction of the GPIO lines.
>
> drivers/gpio/Kconfig | 9 +++
> drivers/gpio/Makefile | 1 +
> drivers/gpio/gpio-qixis-fpga.c | 123 +++++++++++++++++++++++++++++++++
> 3 files changed, 133 insertions(+)
> create mode 100644 drivers/gpio/gpio-qixis-fpga.c
>
> diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
> index 886bef9106da..4ca5890007ff 100644
> --- a/drivers/gpio/Kconfig
> +++ b/drivers/gpio/Kconfig
> @@ -1951,6 +1951,15 @@ config GPIO_LATCH
> Say yes here to enable a driver for GPIO multiplexers based on latches
> connected to other GPIOs.
>
> +config GPIO_QIXIS_FPGA
> + tristate "NXP QIXIS FPGA GPIO support"
> + depends on MFD_SIMPLE_MFD_I2C || COMPILE_TEST
> + select GPIO_REGMAP
> + help
> + This enables support for the GPIOs found in the QIXIS FPGA which is
> + integrated on some NXP Layerscape boards such as LX2160ARDB and
> + LS1046AQDS.
> +
> config GPIO_MOCKUP
> tristate "GPIO Testing Driver (DEPRECATED)"
> select IRQ_SIM
> diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile
> index 379f55e9ed1e..373b1f169558 100644
> --- a/drivers/gpio/Makefile
> +++ b/drivers/gpio/Makefile
> @@ -144,6 +144,7 @@ obj-$(CONFIG_GPIO_PL061) += gpio-pl061.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
> +obj-$(CONFIG_GPIO_QIXIS_FPGA) += gpio-qixis-fpga.o
> obj-$(CONFIG_GPIO_RASPBERRYPI_EXP) += gpio-raspberrypi-exp.o
> obj-$(CONFIG_GPIO_RC5T583) += gpio-rc5t583.o
> obj-$(CONFIG_GPIO_RCAR) += gpio-rcar.o
> diff --git a/drivers/gpio/gpio-qixis-fpga.c b/drivers/gpio/gpio-qixis-fpga.c
> new file mode 100644
> index 000000000000..23219a634f73
> --- /dev/null
> +++ b/drivers/gpio/gpio-qixis-fpga.c
> @@ -0,0 +1,123 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +/*
> + * Layerscape GPIO QIXIS FPGA driver
> + *
> + * Copyright 2025 NXP
> + */
> +
> +#include <linux/device.h>
> +#include <linux/gpio/driver.h>
> +#include <linux/gpio/regmap.h>
> +#include <linux/kernel.h>
> +#include <linux/mod_devicetable.h>
> +#include <linux/module.h>
> +#include <linux/platform_device.h>
> +#include <linux/regmap.h>
> +
> +enum qixis_cpld_gpio_type {
> + LX2160ARDB_GPIO_SFP = 0,
> + LS1046AQDS_GPIO_STAT_PRES2,
> +};
needn't type at all.
> +
> +struct qixis_cpld_gpio_config {
> + enum qixis_cpld_gpio_type type;
> + u64 output_lines;
> +};
> +
> +static struct qixis_cpld_gpio_config lx2160ardb_sfp_cfg = {
> + .type = LX2160ARDB_GPIO_SFP,
> + .output_lines = BIT(0),
> +};
> +
> +static struct qixis_cpld_gpio_config ls1046aqds_stat_pres2_cfg = {
> + .type = LS1046AQDS_GPIO_STAT_PRES2,
> + .output_lines = 0x0,
> +};
> +
> +static const struct regmap_config regmap_config_8r_8v = {
> + .reg_bits = 8,
> + .val_bits = 8,
> +};
> +
> +static int qixis_cpld_gpio_probe(struct platform_device *pdev)
> +{
> + const struct qixis_cpld_gpio_config *cfg;
> + struct gpio_regmap_config config = {0};
> + struct regmap *regmap;
> + void __iomem *reg;
> + u32 base;
> + int ret;
> +
> + if (!pdev->dev.parent)
> + return -ENODEV;
> +
> + cfg = device_get_match_data(&pdev->dev);
> + if (!cfg)
> + return -ENODEV;
Needn't this check.
> +
> + ret = device_property_read_u32(&pdev->dev, "reg", &base);
> + if (ret)
> + return ret;
> +
> + regmap = dev_get_regmap(pdev->dev.parent, NULL);
> + if (!regmap) {
> + /* In case there is no regmap configured by the parent device,
> + * create our own.
> + */
/* Use MMIO space */
> + reg = devm_platform_ioremap_resource(pdev, 0);
> + if (!reg)
> + return -ENODEV;
> +
> + regmap = devm_regmap_init_mmio(&pdev->dev, reg, ®map_config_8r_8v);
> + if (!regmap)
> + return -ENODEV;
> +
> + /* In this case, the offset of our register is 0 inside the
> + * regmap area that we just created.
> + */
> + base = 0;
> + }
> +
> + config.drvdata = (void *)cfg;
> + config.regmap = regmap;
> + config.parent = &pdev->dev;
> + config.ngpio_per_reg = 8;
> + config.ngpio = 8;
> + config.fixed_direction_output = bitmap_alloc(8, GFP_KERNEL);
> + if (!config.fixed_direction_output)
> + return -ENOMEM;
> + bitmap_from_u64(config.fixed_direction_output, cfg->output_lines);
> +
> + switch (cfg->type) {
> + case LX2160ARDB_GPIO_SFP:
> + case LS1046AQDS_GPIO_STAT_PRES2:
> + config.reg_dat_base = GPIO_REGMAP_ADDR(base);
> + config.reg_set_base = GPIO_REGMAP_ADDR(base);
only two compatibles string in qixis_cpld_gpio_of_match. so it can set
unconditional.
Frank
> + break;
> + }
> +
> + return PTR_ERR_OR_ZERO(devm_gpio_regmap_register(&pdev->dev, &config));
> +}
> +
> +static const struct of_device_id qixis_cpld_gpio_of_match[] = {
> + {
> + .compatible = "fsl,lx2160ardb-fpga-gpio-sfp",
> + .data = &lx2160ardb_sfp_cfg,
> + },
> + {
> + .compatible = "fsl,ls1046aqds-fpga-gpio-stat-pres2",
> + .data = &ls1046aqds_stat_pres2_cfg,
> + },
> +
> + {}
> +};
> +MODULE_DEVICE_TABLE(of, qixis_cpld_gpio_of_match);
> +
> +static struct platform_driver qixis_cpld_gpio_driver = {
> + .probe = qixis_cpld_gpio_probe,
> + .driver = {
> + .name = "gpio-qixis-cpld",
> + .of_match_table = qixis_cpld_gpio_of_match,
> + },
> +};
> +module_platform_driver(qixis_cpld_gpio_driver);
> --
> 2.25.1
>
next prev parent reply other threads:[~2025-09-16 16:39 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-15 12:23 [PATCH v2 0/9] drivers: gpio: and the QIXIS FPGA GPIO controller Ioana Ciornei
2025-09-15 12:23 ` [PATCH v2 1/9] dt-bindings: gpio: add QIXIS FPGA based " Ioana Ciornei
2025-09-15 20:29 ` Rob Herring
2025-09-16 16:07 ` Frank Li
2025-09-15 12:23 ` [PATCH v2 2/9] dt-bindings: fsl,fpga-qixis-i2c: extend support to also cover the LX2160ARDB FPGA Ioana Ciornei
2025-09-15 17:01 ` Rob Herring (Arm)
2025-09-15 20:27 ` Rob Herring
2025-09-16 12:45 ` Ioana Ciornei
2025-09-16 16:18 ` Frank Li
2025-09-17 7:15 ` Ioana Ciornei
2025-09-15 12:23 ` [PATCH v2 3/9] mfd: simple-mfd-i2c: add compatible string for LX2160ARDB Ioana Ciornei
2025-09-16 16:20 ` Frank Li
2025-09-17 7:21 ` Ioana Ciornei
2025-09-15 12:23 ` [PATCH v2 4/9] gpio: regmap: add the .fixed_direction_output configuration parameter Ioana Ciornei
2025-09-15 12:45 ` Michael Walle
2025-09-15 13:55 ` Ioana Ciornei
2025-09-15 14:01 ` Michael Walle
2025-09-16 9:52 ` Bartosz Golaszewski
2025-09-15 12:23 ` [PATCH v2 5/9] drivers: gpio: add QIXIS FPGA GPIO controller Ioana Ciornei
2025-09-16 16:39 ` Frank Li [this message]
2025-09-17 7:40 ` Ioana Ciornei
2025-09-17 8:08 ` Bartosz Golaszewski
2025-09-15 12:23 ` [PATCH v2 6/9] arm64: dts: lx2160a-rdb: describe the QIXIS FPGA and two child GPIO controllers Ioana Ciornei
2025-09-16 16:40 ` Frank Li
2025-09-15 12:23 ` [PATCH v2 7/9] arm64: dts: ls1046a-qds: describe the FPGA based GPIO controller Ioana Ciornei
2025-09-16 16:43 ` Frank Li
2025-09-15 12:23 ` [PATCH v2 8/9] arm64: dts: lx2160a-rdb: fully describe the two SFP+ cages Ioana Ciornei
2025-09-16 16:46 ` Frank Li
2025-09-17 7:42 ` Ioana Ciornei
2025-09-15 12:23 ` [PATCH v2 9/9] arm64: dts: ls1046a-qds: describe the two on-board " Ioana Ciornei
2025-09-16 16:47 ` Frank Li
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=aMmSpu/TWOmpHJ60@lizhi-Precision-Tower-5810 \
--to=frank.li@nxp.com \
--cc=brgl@bgdev.pl \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=ioana.ciornei@nxp.com \
--cc=krzk+dt@kernel.org \
--cc=lee@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mwalle@kernel.org \
--cc=robh@kernel.org \
--cc=shawnguo@kernel.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