mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 09:14:19 +08:00
5e6a5845dd
- new driver: gpio-virtio allowing a guest VM running linux to access GPIO lines provided by the host - split the GPIO driver out of the rockchip pin control driver - add support for a new model to gpio-aspeed-sgpio, refactor the driver and use generic device property interfaces, improve property sanitization - add ACPI support to gpio-tegra186 - improve the code setting the line names to support multiple GPIO banks per device - constify a bunch of OF functions in the core GPIO code and make the declaration for one of the core OF functions we use consistent within its header - use software nodes in intel_quark_i2c_gpio - add support for the gpio-line-names property in gpio-mt7621 - use the standard GPIO function for setting the GPIO names in gpio-brcmstb - fix a bunch of leaks and other bugs in gpio-mpc8xxx - use generic pm callbacks in gpio-ml-ioh - improve resource management and PM handling in gpio-mlxbf2 - modernize and improve the gpio-dwapb driver - coding style improvements in gpio-rcar - documentation fixes and improvements - update the MAINTAINERS entry for gpio-zynq - minor tweaks in several drivers -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEFp3rbAvDxGAT0sefEacuoBRx13IFAmE3ItgACgkQEacuoBRx 13LKqA//Q2E9QYJx0lLO0C15JKzJjqYGyVqSm73Huo8pKWRSKr9YuB4/tBPKz5Ya pg/h7wbsk+mtQ0pqot/SEGVLo1rK6ZcPiCDkYkuaVsY9pS0zX7A/Sb2N7xKML+Nj wTFuhSZH2byxH6QgUrX3RLMagW4p/owlDvFjZ6Z6Vh8Ulsnb0pdL3nYg5L017GMT A1ySzbP79NK3LfOLTqdqgALv4EF2x+paolyEpI/Jv0naBYkIP4AcbOBQEVMpoCY/ XEcIdPvqMyPm4PdYSy3iCqtkf7jclDbV030SHlir2bKHjI79l8ARy0Tu6hvISRSG 8XMwt6ke40GYnPkESZTkWlqeVHYzli84FxYXYLnqFa/21c4qswHk/aZZq5h83fn8 7aonkEQQuHfQM00MvLu0mhtKXYdLbqv7jjd0CYChwxQSpu0iu7IQSWW8c2YmGvvt vqfM8TdKyGNPAmSl2/enPKOr+LugG4rcgMehU9/p6QvHbB6y2SxC1MykldPOdC6d 53PeDeNP6XOp2s10zVPWh6P0rbrMaEtv/GZ143kUw9bhb1g3woX5SaS7W76cOXhE kty6g1e8xNaKDZbJ++UAh7G9IGQdtz0xRCXDUHFUc89uCThc9RcHowNPtzMMnmgM ucWJ81XnGDSDyzzG/f7uhcOtszWYCOtFmteooaMGB36/pH2CG9Y= =y/RY -----END PGP SIGNATURE----- Merge tag 'gpio-updates-for-v5.15' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux Pull gpio updates from Bartosz Golaszewski: "We mostly have various improvements and refactoring all over the place but also some interesting new features - like the virtio GPIO driver that allows guest VMs to use host's GPIOs. We also have a new/old GPIO driver for rockchip - this one has been split out of the pinctrl driver. Summary: - new driver: gpio-virtio allowing a guest VM running linux to access GPIO lines provided by the host - split the GPIO driver out of the rockchip pin control driver - add support for a new model to gpio-aspeed-sgpio, refactor the driver and use generic device property interfaces, improve property sanitization - add ACPI support to gpio-tegra186 - improve the code setting the line names to support multiple GPIO banks per device - constify a bunch of OF functions in the core GPIO code and make the declaration for one of the core OF functions we use consistent within its header - use software nodes in intel_quark_i2c_gpio - add support for the gpio-line-names property in gpio-mt7621 - use the standard GPIO function for setting the GPIO names in gpio-brcmstb - fix a bunch of leaks and other bugs in gpio-mpc8xxx - use generic pm callbacks in gpio-ml-ioh - improve resource management and PM handling in gpio-mlxbf2 - modernize and improve the gpio-dwapb driver - coding style improvements in gpio-rcar - documentation fixes and improvements - update the MAINTAINERS entry for gpio-zynq - minor tweaks in several drivers" * tag 'gpio-updates-for-v5.15' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux: (35 commits) gpio: mpc8xxx: Use 'devm_gpiochip_add_data()' to simplify the code and avoid a leak gpio: mpc8xxx: Fix a potential double iounmap call in 'mpc8xxx_probe()' gpio: mpc8xxx: Fix a resources leak in the error handling path of 'mpc8xxx_probe()' gpio: viperboard: remove platform_set_drvdata() call in probe gpio: virtio: Add missing mailings lists in MAINTAINERS entry gpio: virtio: Fix sparse warnings gpio: remove the obsolete MX35 3DS BOARD MC9S08DZ60 GPIO functions gpio: max730x: Use the right include gpio: Add virtio-gpio driver gpio: mlxbf2: Use DEFINE_RES_MEM_NAMED() helper macro gpio: mlxbf2: Use devm_platform_ioremap_resource() gpio: mlxbf2: Drop wrong use of ACPI_PTR() gpio: mlxbf2: Convert to device PM ops gpio: dwapb: Get rid of legacy platform data mfd: intel_quark_i2c_gpio: Convert GPIO to use software nodes gpio: dwapb: Read GPIO base from gpio-base property gpio: dwapb: Unify ACPI enumeration checks in get_irq() and configure_irqs() gpiolib: Deduplicate forward declaration in the consumer.h header MAINTAINERS: update gpio-zynq.yaml reference gpio: tegra186: Add ACPI support ...
337 lines
8.0 KiB
C
337 lines
8.0 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2009-2011 Gabor Juhos <juhosg@openwrt.org>
|
|
* Copyright (C) 2013 John Crispin <blogic@openwrt.org>
|
|
*/
|
|
|
|
#include <linux/err.h>
|
|
#include <linux/gpio/driver.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/io.h>
|
|
#include <linux/module.h>
|
|
#include <linux/of_irq.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/spinlock.h>
|
|
|
|
#define MTK_BANK_CNT 3
|
|
#define MTK_BANK_WIDTH 32
|
|
|
|
#define GPIO_BANK_STRIDE 0x04
|
|
#define GPIO_REG_CTRL 0x00
|
|
#define GPIO_REG_POL 0x10
|
|
#define GPIO_REG_DATA 0x20
|
|
#define GPIO_REG_DSET 0x30
|
|
#define GPIO_REG_DCLR 0x40
|
|
#define GPIO_REG_REDGE 0x50
|
|
#define GPIO_REG_FEDGE 0x60
|
|
#define GPIO_REG_HLVL 0x70
|
|
#define GPIO_REG_LLVL 0x80
|
|
#define GPIO_REG_STAT 0x90
|
|
#define GPIO_REG_EDGE 0xA0
|
|
|
|
struct mtk_gc {
|
|
struct irq_chip irq_chip;
|
|
struct gpio_chip chip;
|
|
spinlock_t lock;
|
|
int bank;
|
|
u32 rising;
|
|
u32 falling;
|
|
u32 hlevel;
|
|
u32 llevel;
|
|
};
|
|
|
|
/**
|
|
* struct mtk - state container for
|
|
* data of the platform driver. It is 3
|
|
* separate gpio-chip each one with its
|
|
* own irq_chip.
|
|
* @dev: device instance
|
|
* @base: memory base address
|
|
* @gpio_irq: irq number from the device tree
|
|
* @gc_map: array of the gpio chips
|
|
*/
|
|
struct mtk {
|
|
struct device *dev;
|
|
void __iomem *base;
|
|
int gpio_irq;
|
|
struct mtk_gc gc_map[MTK_BANK_CNT];
|
|
};
|
|
|
|
static inline struct mtk_gc *
|
|
to_mediatek_gpio(struct gpio_chip *chip)
|
|
{
|
|
return container_of(chip, struct mtk_gc, chip);
|
|
}
|
|
|
|
static inline void
|
|
mtk_gpio_w32(struct mtk_gc *rg, u32 offset, u32 val)
|
|
{
|
|
struct gpio_chip *gc = &rg->chip;
|
|
struct mtk *mtk = gpiochip_get_data(gc);
|
|
|
|
offset = (rg->bank * GPIO_BANK_STRIDE) + offset;
|
|
gc->write_reg(mtk->base + offset, val);
|
|
}
|
|
|
|
static inline u32
|
|
mtk_gpio_r32(struct mtk_gc *rg, u32 offset)
|
|
{
|
|
struct gpio_chip *gc = &rg->chip;
|
|
struct mtk *mtk = gpiochip_get_data(gc);
|
|
|
|
offset = (rg->bank * GPIO_BANK_STRIDE) + offset;
|
|
return gc->read_reg(mtk->base + offset);
|
|
}
|
|
|
|
static irqreturn_t
|
|
mediatek_gpio_irq_handler(int irq, void *data)
|
|
{
|
|
struct gpio_chip *gc = data;
|
|
struct mtk_gc *rg = to_mediatek_gpio(gc);
|
|
irqreturn_t ret = IRQ_NONE;
|
|
unsigned long pending;
|
|
int bit;
|
|
|
|
pending = mtk_gpio_r32(rg, GPIO_REG_STAT);
|
|
|
|
for_each_set_bit(bit, &pending, MTK_BANK_WIDTH) {
|
|
generic_handle_domain_irq(gc->irq.domain, bit);
|
|
mtk_gpio_w32(rg, GPIO_REG_STAT, BIT(bit));
|
|
ret |= IRQ_HANDLED;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void
|
|
mediatek_gpio_irq_unmask(struct irq_data *d)
|
|
{
|
|
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
|
struct mtk_gc *rg = to_mediatek_gpio(gc);
|
|
int pin = d->hwirq;
|
|
unsigned long flags;
|
|
u32 rise, fall, high, low;
|
|
|
|
spin_lock_irqsave(&rg->lock, flags);
|
|
rise = mtk_gpio_r32(rg, GPIO_REG_REDGE);
|
|
fall = mtk_gpio_r32(rg, GPIO_REG_FEDGE);
|
|
high = mtk_gpio_r32(rg, GPIO_REG_HLVL);
|
|
low = mtk_gpio_r32(rg, GPIO_REG_LLVL);
|
|
mtk_gpio_w32(rg, GPIO_REG_REDGE, rise | (BIT(pin) & rg->rising));
|
|
mtk_gpio_w32(rg, GPIO_REG_FEDGE, fall | (BIT(pin) & rg->falling));
|
|
mtk_gpio_w32(rg, GPIO_REG_HLVL, high | (BIT(pin) & rg->hlevel));
|
|
mtk_gpio_w32(rg, GPIO_REG_LLVL, low | (BIT(pin) & rg->llevel));
|
|
spin_unlock_irqrestore(&rg->lock, flags);
|
|
}
|
|
|
|
static void
|
|
mediatek_gpio_irq_mask(struct irq_data *d)
|
|
{
|
|
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
|
struct mtk_gc *rg = to_mediatek_gpio(gc);
|
|
int pin = d->hwirq;
|
|
unsigned long flags;
|
|
u32 rise, fall, high, low;
|
|
|
|
spin_lock_irqsave(&rg->lock, flags);
|
|
rise = mtk_gpio_r32(rg, GPIO_REG_REDGE);
|
|
fall = mtk_gpio_r32(rg, GPIO_REG_FEDGE);
|
|
high = mtk_gpio_r32(rg, GPIO_REG_HLVL);
|
|
low = mtk_gpio_r32(rg, GPIO_REG_LLVL);
|
|
mtk_gpio_w32(rg, GPIO_REG_FEDGE, fall & ~BIT(pin));
|
|
mtk_gpio_w32(rg, GPIO_REG_REDGE, rise & ~BIT(pin));
|
|
mtk_gpio_w32(rg, GPIO_REG_HLVL, high & ~BIT(pin));
|
|
mtk_gpio_w32(rg, GPIO_REG_LLVL, low & ~BIT(pin));
|
|
spin_unlock_irqrestore(&rg->lock, flags);
|
|
}
|
|
|
|
static int
|
|
mediatek_gpio_irq_type(struct irq_data *d, unsigned int type)
|
|
{
|
|
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
|
struct mtk_gc *rg = to_mediatek_gpio(gc);
|
|
int pin = d->hwirq;
|
|
u32 mask = BIT(pin);
|
|
|
|
if (type == IRQ_TYPE_PROBE) {
|
|
if ((rg->rising | rg->falling |
|
|
rg->hlevel | rg->llevel) & mask)
|
|
return 0;
|
|
|
|
type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
|
|
}
|
|
|
|
rg->rising &= ~mask;
|
|
rg->falling &= ~mask;
|
|
rg->hlevel &= ~mask;
|
|
rg->llevel &= ~mask;
|
|
|
|
switch (type & IRQ_TYPE_SENSE_MASK) {
|
|
case IRQ_TYPE_EDGE_BOTH:
|
|
rg->rising |= mask;
|
|
rg->falling |= mask;
|
|
break;
|
|
case IRQ_TYPE_EDGE_RISING:
|
|
rg->rising |= mask;
|
|
break;
|
|
case IRQ_TYPE_EDGE_FALLING:
|
|
rg->falling |= mask;
|
|
break;
|
|
case IRQ_TYPE_LEVEL_HIGH:
|
|
rg->hlevel |= mask;
|
|
break;
|
|
case IRQ_TYPE_LEVEL_LOW:
|
|
rg->llevel |= mask;
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
mediatek_gpio_xlate(struct gpio_chip *chip,
|
|
const struct of_phandle_args *spec, u32 *flags)
|
|
{
|
|
int gpio = spec->args[0];
|
|
struct mtk_gc *rg = to_mediatek_gpio(chip);
|
|
|
|
if (rg->bank != gpio / MTK_BANK_WIDTH)
|
|
return -EINVAL;
|
|
|
|
if (flags)
|
|
*flags = spec->args[1];
|
|
|
|
return gpio % MTK_BANK_WIDTH;
|
|
}
|
|
|
|
static int
|
|
mediatek_gpio_bank_probe(struct device *dev,
|
|
struct device_node *node, int bank)
|
|
{
|
|
struct mtk *mtk = dev_get_drvdata(dev);
|
|
struct mtk_gc *rg;
|
|
void __iomem *dat, *set, *ctrl, *diro;
|
|
int ret;
|
|
|
|
rg = &mtk->gc_map[bank];
|
|
memset(rg, 0, sizeof(*rg));
|
|
|
|
spin_lock_init(&rg->lock);
|
|
rg->chip.of_node = node;
|
|
rg->bank = bank;
|
|
|
|
dat = mtk->base + GPIO_REG_DATA + (rg->bank * GPIO_BANK_STRIDE);
|
|
set = mtk->base + GPIO_REG_DSET + (rg->bank * GPIO_BANK_STRIDE);
|
|
ctrl = mtk->base + GPIO_REG_DCLR + (rg->bank * GPIO_BANK_STRIDE);
|
|
diro = mtk->base + GPIO_REG_CTRL + (rg->bank * GPIO_BANK_STRIDE);
|
|
|
|
ret = bgpio_init(&rg->chip, dev, 4, dat, set, ctrl, diro, NULL,
|
|
BGPIOF_NO_SET_ON_INPUT);
|
|
if (ret) {
|
|
dev_err(dev, "bgpio_init() failed\n");
|
|
return ret;
|
|
}
|
|
|
|
rg->chip.of_gpio_n_cells = 2;
|
|
rg->chip.of_xlate = mediatek_gpio_xlate;
|
|
rg->chip.label = devm_kasprintf(dev, GFP_KERNEL, "%s-bank%d",
|
|
dev_name(dev), bank);
|
|
if (!rg->chip.label)
|
|
return -ENOMEM;
|
|
|
|
rg->chip.offset = bank * MTK_BANK_WIDTH;
|
|
rg->irq_chip.name = dev_name(dev);
|
|
rg->irq_chip.parent_device = dev;
|
|
rg->irq_chip.irq_unmask = mediatek_gpio_irq_unmask;
|
|
rg->irq_chip.irq_mask = mediatek_gpio_irq_mask;
|
|
rg->irq_chip.irq_mask_ack = mediatek_gpio_irq_mask;
|
|
rg->irq_chip.irq_set_type = mediatek_gpio_irq_type;
|
|
|
|
if (mtk->gpio_irq) {
|
|
struct gpio_irq_chip *girq;
|
|
|
|
/*
|
|
* Directly request the irq here instead of passing
|
|
* a flow-handler because the irq is shared.
|
|
*/
|
|
ret = devm_request_irq(dev, mtk->gpio_irq,
|
|
mediatek_gpio_irq_handler, IRQF_SHARED,
|
|
rg->chip.label, &rg->chip);
|
|
|
|
if (ret) {
|
|
dev_err(dev, "Error requesting IRQ %d: %d\n",
|
|
mtk->gpio_irq, ret);
|
|
return ret;
|
|
}
|
|
|
|
girq = &rg->chip.irq;
|
|
girq->chip = &rg->irq_chip;
|
|
/* This will let us handle the parent IRQ in the driver */
|
|
girq->parent_handler = NULL;
|
|
girq->num_parents = 0;
|
|
girq->parents = NULL;
|
|
girq->default_type = IRQ_TYPE_NONE;
|
|
girq->handler = handle_simple_irq;
|
|
}
|
|
|
|
ret = devm_gpiochip_add_data(dev, &rg->chip, mtk);
|
|
if (ret < 0) {
|
|
dev_err(dev, "Could not register gpio %d, ret=%d\n",
|
|
rg->chip.ngpio, ret);
|
|
return ret;
|
|
}
|
|
|
|
/* set polarity to low for all gpios */
|
|
mtk_gpio_w32(rg, GPIO_REG_POL, 0);
|
|
|
|
dev_info(dev, "registering %d gpios\n", rg->chip.ngpio);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
mediatek_gpio_probe(struct platform_device *pdev)
|
|
{
|
|
struct device *dev = &pdev->dev;
|
|
struct device_node *np = dev->of_node;
|
|
struct mtk *mtk;
|
|
int i;
|
|
int ret;
|
|
|
|
mtk = devm_kzalloc(dev, sizeof(*mtk), GFP_KERNEL);
|
|
if (!mtk)
|
|
return -ENOMEM;
|
|
|
|
mtk->base = devm_platform_ioremap_resource(pdev, 0);
|
|
if (IS_ERR(mtk->base))
|
|
return PTR_ERR(mtk->base);
|
|
|
|
mtk->gpio_irq = irq_of_parse_and_map(np, 0);
|
|
mtk->dev = dev;
|
|
platform_set_drvdata(pdev, mtk);
|
|
|
|
for (i = 0; i < MTK_BANK_CNT; i++) {
|
|
ret = mediatek_gpio_bank_probe(dev, np, i);
|
|
if (ret)
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct of_device_id mediatek_gpio_match[] = {
|
|
{ .compatible = "mediatek,mt7621-gpio" },
|
|
{},
|
|
};
|
|
MODULE_DEVICE_TABLE(of, mediatek_gpio_match);
|
|
|
|
static struct platform_driver mediatek_gpio_driver = {
|
|
.probe = mediatek_gpio_probe,
|
|
.driver = {
|
|
.name = "mt7621_gpio",
|
|
.of_match_table = mediatek_gpio_match,
|
|
},
|
|
};
|
|
|
|
builtin_platform_driver(mediatek_gpio_driver);
|