mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

GPIOLIB core: - introduce a parallel, limited sysfs user ABI that doesn't expose the global GPIO numbers to user-space while maintaining backward compatibility with the end goal of it completely replacing the existing interface, allowing us to remove it - remove the legacy devm_gpio_request() routine which has no more users - start the process of allowing to compile-out the legacy parts of the GPIO core for users who don't need it by introducing a new Kconfig option: GPIOLIB_LEGACY - don't use global GPIO numbers in debugfs output from the core code (drivers still do it, the work is ongoing) - start the process of moving the fields specific to the gpio-mmio helper out of the core struct gpio_chip into their own structure that wraps it: create a new header with modern interfaces and convert several drivers to using it - remove the platform data structure associated with the gpio-mmio helper from the kernel after having converted all remaining users to generic device properties - remove legacy struct gpio definition as it has no more users New drivers: - add the GPIO driver for the Apple System Management Controller Driver improvements: - add support for new models to gpio-adp5585, gpio-tps65219 and gpio-pca953x - extend the interrupt support in gpio-loongson-64bit - allow to mark the simulated GPIO lines as invalid in gpio-sim - convert all remaining GPIO drivers to using the new GPIO value setter callbacks - convert gpio-rcar to using simple device power management ops callbacks - don't check if current direction of a line is output before setting the value in gpio-pisosr and ti-fpc202: the GPIO core already handles that - also drop unneeded GPIO range checks in drivers, the core already makes sure we're within bounds when calling driver callbacks - use dev_fwnode() where applicable across GPIO drivers - set line value in gpio-zynqmp-modepin and gpio-twl6040 when the user wants to change direction of the pin to output even though these drivers don't need to do anything else to actually set the direction, otherwise a call like gpiod_direction_output(d, 1) will not result in the line driver high - remove the reduntant call to pm_runtime_mark_last_busy() from gpio-arizona - use lock guards in gpio-cadence and gpio-mxc - check the return values of regmap functions in gpio-wcd934x and gpio-tps65912 - use better regmap interfaces in gpio-wcove and gpio-pca953x - remove dummy GPIO chip callbacks from several drivers in cases where the GPIO core can already handle their absence - allow building gpio-palmas as a module Fixes: - use correct bit widths (according to the documentation) in gpio-virtio Device-tree bindings: - convert several of the legacy .txt documents for many different devices to YAML, improving automatic validation - create a "trivial" GPIO DT schema that covers a wide range of simple hardware that share a set of basic GPIO properties - document new HW: Apple MAC SMC GPIO block and adp5589 I/O expander - document a new model for pca95xx - add and/or remove properties in YAML documents for gpio-rockchip, fsl,qoriq-gpio, arm,pl061 and gpio-xilinx Misc: - some minor refactoring in several places, adding/removing forward declarations, moving defines to better places, constify the arguments in some functions, remove duplicate includes, etc. - documentation updates -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEFp3rbAvDxGAT0sefEacuoBRx13IFAmiHQsUACgkQEacuoBRx 13LNDxAAsHxVqBjdCSzmnOCteIRrRWv8yCzeuPzFWekxGPJNEx/tC83cqdLF2yN/ MFrlQLx4ZksCBWOmcoC9aQE5c8ZXfnugF2rztxeDIRtSwC0ED97K9Z798RrgLJUF M6HyaWgsEcMBDk0jXG2w3JESnPbx74VnGtPixv8+QeiM2DA5XRsLPaPbQEkatBVo 9T7Ls/vfS6AK9fSqMg2ZjKi3bXpXMsmU4PXrhh/mCGSBU/TO3fF1IPig5SsKUpNL C2nm3e4XIaXCNIBqgGSpppbzCrwDBlDTb029QtoStXgsiMbppXI532NjuCfDlj80 1Vlmwot4O91SJoC9XvmSM6KBWrBqX2zL3bYtpkLymEPPS8+25gwQ3HxteIzl1V4S Up8KZ+9EmNxxhfKYzhdWG0Puyam4sHiP1MlkeyEKgHJen4/07Pg4WdOthyuH72tg /U5wS+zDhhDpibHFYdQ5F04ubMfVxipvf0JHhbjuDAuXKqGohjJNUiE2/M7yBnyd n0IS9Bw95lOLepbAHkm/JneFvSJYJfOrLz+d981664tfrY7A99RLtSOluzQKSrzz dpqc+yn+x/TKaZeYV22mhIri5o9oupT7JqPHqXYe//iWzJt3m2EavzTRoR2JeJQq p7Quytgfj4FcR2v6GyldXWwFhRK0397kOLcNUQ7HVMaOAMMi5Y8= =tUPm -----END PGP SIGNATURE----- Merge tag 'gpio-updates-for-v6.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux Pull gpio updates from Bartosz Golaszewski: "There's one new driver (Apple SMC) and extensions to existing drivers for supporting new HW models. A lot of different impovements across drivers and in core GPIO code. Details on that are in the signed tag as usual. We managed to remove some of the legacy APIs. Arnd Bergmann started to work on making the legacy bits optional so that we may compile them only for older platforms that still really need them. Rob Herring has done a lot of work to convert legacy .txt dt-bindings for GPIO controllers to YAML. There are only a few left now in the GPIO tree. A big part of the commits in this PR concern the conversion of GPIO drivers to using the new line value setter callbacks. This conversion is now complete treewide (unless I've missed something) and once all the changes from different trees land in mainline, I'll send you another PR containing a commit dropping the legacy callbacks from the tree. As the quest to pay back technical dept never really ends, we're starting another set of interface conversions, this time it's about moving fields specific to only a handful of drivers using the gpio-mmio helper out of the core gpio_chip structure that every controller implements and uses. This cycle we introduce a new set of APIs and convert a few drivers under drivers/gpio/, next cycle we'll convert remaining modules treewide (in gpio, pinctrl and mfd trees) and finally remove the old interfaces and move the gpio-mmio fields into their own structure wrapping gpio_chip. One last change I should mention here is the rework of the sysfs interface. In 2016, we introduced the GPIO character device as the preferred alternative to the sysfs class under /sys/class/gpio. While it has seen a wide adoption with the help of its user-space counterpart - libgpiod - there are still users who prefer the simplicity of sysfs. As far as the GPIO subsystem is concerned, the problem is not the existince of the GPIO class as such but rather the fact that it exposes the global GPIO numbers to the user-space, stopping us from ever being able to remove the numberspace from the kernel. To that end, this release we introduced a parallel, limited sysfs interface that doesn't expose these numbers and only implements a subset of features that are relevant to the existing users. This is a result of several discussions over the course of last year and should allow us to remove the legacy part some time in the future. Summary: GPIOLIB core: - introduce a parallel, limited sysfs user ABI that doesn't expose the global GPIO numbers to user-space while maintaining backward compatibility with the end goal of it completely replacing the existing interface, allowing us to remove it - remove the legacy devm_gpio_request() routine which has no more users - start the process of allowing to compile-out the legacy parts of the GPIO core for users who don't need it by introducing a new Kconfig option: GPIOLIB_LEGACY - don't use global GPIO numbers in debugfs output from the core code (drivers still do it, the work is ongoing) - start the process of moving the fields specific to the gpio-mmio helper out of the core struct gpio_chip into their own structure that wraps it: create a new header with modern interfaces and convert several drivers to using it - remove the platform data structure associated with the gpio-mmio helper from the kernel after having converted all remaining users to generic device properties - remove legacy struct gpio definition as it has no more users New drivers: - add the GPIO driver for the Apple System Management Controller Driver improvements: - add support for new models to gpio-adp5585, gpio-tps65219 and gpio-pca953x - extend the interrupt support in gpio-loongson-64bit - allow to mark the simulated GPIO lines as invalid in gpio-sim - convert all remaining GPIO drivers to using the new GPIO value setter callbacks - convert gpio-rcar to using simple device power management ops callbacks - don't check if current direction of a line is output before setting the value in gpio-pisosr and ti-fpc202: the GPIO core already handles that - also drop unneeded GPIO range checks in drivers, the core already makes sure we're within bounds when calling driver callbacks - use dev_fwnode() where applicable across GPIO drivers - set line value in gpio-zynqmp-modepin and gpio-twl6040 when the user wants to change direction of the pin to output even though these drivers don't need to do anything else to actually set the direction, otherwise a call like gpiod_direction_output(d, 1) will not result in the line driver high - remove the reduntant call to pm_runtime_mark_last_busy() from gpio-arizona - use lock guards in gpio-cadence and gpio-mxc - check the return values of regmap functions in gpio-wcd934x and gpio-tps65912 - use better regmap interfaces in gpio-wcove and gpio-pca953x - remove dummy GPIO chip callbacks from several drivers in cases where the GPIO core can already handle their absence - allow building gpio-palmas as a module Fixes: - use correct bit widths (according to the documentation) in gpio-virtio Device-tree bindings: - convert several of the legacy .txt documents for many different devices to YAML, improving automatic validation - create a "trivial" GPIO DT schema that covers a wide range of simple hardware that share a set of basic GPIO properties - document new HW: Apple MAC SMC GPIO block and adp5589 I/O expander - document a new model for pca95xx - add and/or remove properties in YAML documents for gpio-rockchip, fsl,qoriq-gpio, arm,pl061 and gpio-xilinx Misc: - some minor refactoring in several places, adding/removing forward declarations, moving defines to better places, constify the arguments in some functions, remove duplicate includes, etc. - documentation updates" * tag 'gpio-updates-for-v6.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux: (202 commits) MIPS: alchemy: gpio: use new GPIO line value setter callbacks for the remaining chips gpiolib: enable CONFIG_GPIOLIB_LEGACY even for !GPIOLIB gpio: virtio: Fix config space reading. gpiolib: make legacy interfaces optional dt-bindings: gpio: rockchip: Allow use of a power-domain gpiolib: of: add forward declaration for struct device_node power: reset: macsmc-reboot: Add driver for rebooting via Apple SMC gpio: Add new gpio-macsmc driver for Apple Macs mfd: Add Apple Silicon System Management Controller soc: apple: rtkit: Make shmem_destroy optional dt-bindings: mfd: Add Apple Mac System Management Controller dt-bindings: power: reboot: Add Apple Mac SMC Reboot Controller dt-bindings: gpio: Add Apple Mac SMC GPIO block gpio: cadence: Remove duplicated include in gpio-cadence.c gpio: tps65219: Add support for TI TPS65214 PMIC gpio: tps65219: Update _IDX & _OFFSET macro prefix gpio: sysfs: Fix an end of loop test in gpiod_unexport() dt-bindings: gpio: Convert qca,ar7100-gpio to DT schema dt-bindings: gpio: Convert maxim,max3191x to DT schema dt-bindings: gpio: fsl,qoriq-gpio: Add missing mpc8xxx compatibles ...
394 lines
9.7 KiB
C
394 lines
9.7 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Loongson GPIO Support
|
|
*
|
|
* Copyright (C) 2022-2023 Loongson Technology Corporation Limited
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/init.h>
|
|
#include <linux/module.h>
|
|
#include <linux/spinlock.h>
|
|
#include <linux/err.h>
|
|
#include <linux/gpio/driver.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/bitops.h>
|
|
#include <asm/types.h>
|
|
|
|
enum loongson_gpio_mode {
|
|
BIT_CTRL_MODE,
|
|
BYTE_CTRL_MODE,
|
|
};
|
|
|
|
struct loongson_gpio_chip_data {
|
|
const char *label;
|
|
enum loongson_gpio_mode mode;
|
|
unsigned int conf_offset;
|
|
unsigned int out_offset;
|
|
unsigned int in_offset;
|
|
unsigned int inten_offset;
|
|
};
|
|
|
|
struct loongson_gpio_chip {
|
|
struct gpio_chip chip;
|
|
spinlock_t lock;
|
|
void __iomem *reg_base;
|
|
const struct loongson_gpio_chip_data *chip_data;
|
|
};
|
|
|
|
static inline struct loongson_gpio_chip *to_loongson_gpio_chip(struct gpio_chip *chip)
|
|
{
|
|
return container_of(chip, struct loongson_gpio_chip, chip);
|
|
}
|
|
|
|
static inline void loongson_commit_direction(struct loongson_gpio_chip *lgpio, unsigned int pin,
|
|
int input)
|
|
{
|
|
u8 bval = input ? 1 : 0;
|
|
|
|
writeb(bval, lgpio->reg_base + lgpio->chip_data->conf_offset + pin);
|
|
}
|
|
|
|
static void loongson_commit_level(struct loongson_gpio_chip *lgpio, unsigned int pin, int high)
|
|
{
|
|
u8 bval = high ? 1 : 0;
|
|
|
|
writeb(bval, lgpio->reg_base + lgpio->chip_data->out_offset + pin);
|
|
}
|
|
|
|
static int loongson_gpio_direction_input(struct gpio_chip *chip, unsigned int pin)
|
|
{
|
|
unsigned long flags;
|
|
struct loongson_gpio_chip *lgpio = to_loongson_gpio_chip(chip);
|
|
|
|
spin_lock_irqsave(&lgpio->lock, flags);
|
|
loongson_commit_direction(lgpio, pin, 1);
|
|
spin_unlock_irqrestore(&lgpio->lock, flags);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int loongson_gpio_direction_output(struct gpio_chip *chip, unsigned int pin, int value)
|
|
{
|
|
unsigned long flags;
|
|
struct loongson_gpio_chip *lgpio = to_loongson_gpio_chip(chip);
|
|
|
|
spin_lock_irqsave(&lgpio->lock, flags);
|
|
loongson_commit_level(lgpio, pin, value);
|
|
loongson_commit_direction(lgpio, pin, 0);
|
|
spin_unlock_irqrestore(&lgpio->lock, flags);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int loongson_gpio_get(struct gpio_chip *chip, unsigned int pin)
|
|
{
|
|
u8 bval;
|
|
int val;
|
|
struct loongson_gpio_chip *lgpio = to_loongson_gpio_chip(chip);
|
|
|
|
bval = readb(lgpio->reg_base + lgpio->chip_data->in_offset + pin);
|
|
val = bval & 1;
|
|
|
|
return val;
|
|
}
|
|
|
|
static int loongson_gpio_get_direction(struct gpio_chip *chip, unsigned int pin)
|
|
{
|
|
u8 bval;
|
|
struct loongson_gpio_chip *lgpio = to_loongson_gpio_chip(chip);
|
|
|
|
bval = readb(lgpio->reg_base + lgpio->chip_data->conf_offset + pin);
|
|
if (bval & 1)
|
|
return GPIO_LINE_DIRECTION_IN;
|
|
|
|
return GPIO_LINE_DIRECTION_OUT;
|
|
}
|
|
|
|
static int loongson_gpio_set(struct gpio_chip *chip, unsigned int pin, int value)
|
|
{
|
|
unsigned long flags;
|
|
struct loongson_gpio_chip *lgpio = to_loongson_gpio_chip(chip);
|
|
|
|
spin_lock_irqsave(&lgpio->lock, flags);
|
|
loongson_commit_level(lgpio, pin, value);
|
|
spin_unlock_irqrestore(&lgpio->lock, flags);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int loongson_gpio_to_irq(struct gpio_chip *chip, unsigned int offset)
|
|
{
|
|
unsigned int u;
|
|
struct platform_device *pdev = to_platform_device(chip->parent);
|
|
struct loongson_gpio_chip *lgpio = to_loongson_gpio_chip(chip);
|
|
|
|
if (lgpio->chip_data->mode == BIT_CTRL_MODE) {
|
|
/* Get the register index from offset then multiply by bytes per register */
|
|
u = readl(lgpio->reg_base + lgpio->chip_data->inten_offset + (offset / 32) * 4);
|
|
u |= BIT(offset % 32);
|
|
writel(u, lgpio->reg_base + lgpio->chip_data->inten_offset + (offset / 32) * 4);
|
|
} else {
|
|
writeb(1, lgpio->reg_base + lgpio->chip_data->inten_offset + offset);
|
|
}
|
|
|
|
return platform_get_irq(pdev, offset);
|
|
}
|
|
|
|
static int loongson_gpio_init(struct device *dev, struct loongson_gpio_chip *lgpio,
|
|
void __iomem *reg_base)
|
|
{
|
|
int ret;
|
|
|
|
lgpio->reg_base = reg_base;
|
|
if (lgpio->chip_data->mode == BIT_CTRL_MODE) {
|
|
ret = bgpio_init(&lgpio->chip, dev, 8,
|
|
lgpio->reg_base + lgpio->chip_data->in_offset,
|
|
lgpio->reg_base + lgpio->chip_data->out_offset,
|
|
NULL, NULL,
|
|
lgpio->reg_base + lgpio->chip_data->conf_offset,
|
|
0);
|
|
if (ret) {
|
|
dev_err(dev, "unable to init generic GPIO\n");
|
|
return ret;
|
|
}
|
|
} else {
|
|
lgpio->chip.direction_input = loongson_gpio_direction_input;
|
|
lgpio->chip.get = loongson_gpio_get;
|
|
lgpio->chip.get_direction = loongson_gpio_get_direction;
|
|
lgpio->chip.direction_output = loongson_gpio_direction_output;
|
|
lgpio->chip.set_rv = loongson_gpio_set;
|
|
lgpio->chip.parent = dev;
|
|
spin_lock_init(&lgpio->lock);
|
|
}
|
|
|
|
lgpio->chip.label = lgpio->chip_data->label;
|
|
lgpio->chip.can_sleep = false;
|
|
if (lgpio->chip_data->inten_offset)
|
|
lgpio->chip.to_irq = loongson_gpio_to_irq;
|
|
|
|
return devm_gpiochip_add_data(dev, &lgpio->chip, lgpio);
|
|
}
|
|
|
|
static int loongson_gpio_probe(struct platform_device *pdev)
|
|
{
|
|
void __iomem *reg_base;
|
|
struct loongson_gpio_chip *lgpio;
|
|
struct device *dev = &pdev->dev;
|
|
|
|
lgpio = devm_kzalloc(dev, sizeof(*lgpio), GFP_KERNEL);
|
|
if (!lgpio)
|
|
return -ENOMEM;
|
|
|
|
lgpio->chip_data = device_get_match_data(dev);
|
|
|
|
reg_base = devm_platform_ioremap_resource(pdev, 0);
|
|
if (IS_ERR(reg_base))
|
|
return PTR_ERR(reg_base);
|
|
|
|
return loongson_gpio_init(dev, lgpio, reg_base);
|
|
}
|
|
|
|
static const struct loongson_gpio_chip_data loongson_gpio_ls2k_data = {
|
|
.label = "ls2k_gpio",
|
|
.mode = BIT_CTRL_MODE,
|
|
.conf_offset = 0x0,
|
|
.in_offset = 0x20,
|
|
.out_offset = 0x10,
|
|
.inten_offset = 0x30,
|
|
};
|
|
|
|
static const struct loongson_gpio_chip_data loongson_gpio_ls2k0500_data0 = {
|
|
.label = "ls2k0500_gpio",
|
|
.mode = BIT_CTRL_MODE,
|
|
.conf_offset = 0x0,
|
|
.in_offset = 0x8,
|
|
.out_offset = 0x10,
|
|
.inten_offset = 0xb0,
|
|
};
|
|
|
|
static const struct loongson_gpio_chip_data loongson_gpio_ls2k0500_data1 = {
|
|
.label = "ls2k0500_gpio",
|
|
.mode = BIT_CTRL_MODE,
|
|
.conf_offset = 0x0,
|
|
.in_offset = 0x8,
|
|
.out_offset = 0x10,
|
|
.inten_offset = 0x98,
|
|
};
|
|
|
|
static const struct loongson_gpio_chip_data loongson_gpio_ls2k2000_data0 = {
|
|
.label = "ls2k2000_gpio",
|
|
.mode = BIT_CTRL_MODE,
|
|
.conf_offset = 0x0,
|
|
.in_offset = 0xc,
|
|
.out_offset = 0x8,
|
|
.inten_offset = 0x14,
|
|
};
|
|
|
|
static const struct loongson_gpio_chip_data loongson_gpio_ls2k2000_data1 = {
|
|
.label = "ls2k2000_gpio",
|
|
.mode = BIT_CTRL_MODE,
|
|
.conf_offset = 0x0,
|
|
.in_offset = 0x20,
|
|
.out_offset = 0x10,
|
|
.inten_offset = 0x30,
|
|
};
|
|
|
|
static const struct loongson_gpio_chip_data loongson_gpio_ls2k2000_data2 = {
|
|
.label = "ls2k2000_gpio",
|
|
.mode = BIT_CTRL_MODE,
|
|
.conf_offset = 0x4,
|
|
.in_offset = 0x8,
|
|
.out_offset = 0x0,
|
|
};
|
|
|
|
static const struct loongson_gpio_chip_data loongson_gpio_ls3a5000_data = {
|
|
.label = "ls3a5000_gpio",
|
|
.mode = BIT_CTRL_MODE,
|
|
.conf_offset = 0x0,
|
|
.in_offset = 0xc,
|
|
.out_offset = 0x8,
|
|
.inten_offset = 0x14,
|
|
};
|
|
|
|
static const struct loongson_gpio_chip_data loongson_gpio_ls7a_data = {
|
|
.label = "ls7a_gpio",
|
|
.mode = BYTE_CTRL_MODE,
|
|
.conf_offset = 0x800,
|
|
.in_offset = 0xa00,
|
|
.out_offset = 0x900,
|
|
.inten_offset = 0xb00,
|
|
};
|
|
|
|
/* LS7A2000 chipset GPIO */
|
|
static const struct loongson_gpio_chip_data loongson_gpio_ls7a2000_data0 = {
|
|
.label = "ls7a2000_gpio",
|
|
.mode = BYTE_CTRL_MODE,
|
|
.conf_offset = 0x800,
|
|
.in_offset = 0xa00,
|
|
.out_offset = 0x900,
|
|
.inten_offset = 0xb00,
|
|
};
|
|
|
|
/* LS7A2000 ACPI GPIO */
|
|
static const struct loongson_gpio_chip_data loongson_gpio_ls7a2000_data1 = {
|
|
.label = "ls7a2000_gpio",
|
|
.mode = BIT_CTRL_MODE,
|
|
.conf_offset = 0x4,
|
|
.in_offset = 0x8,
|
|
.out_offset = 0x0,
|
|
};
|
|
|
|
/* Loongson-3A6000 node GPIO */
|
|
static const struct loongson_gpio_chip_data loongson_gpio_ls3a6000_data = {
|
|
.label = "ls3a6000_gpio",
|
|
.mode = BIT_CTRL_MODE,
|
|
.conf_offset = 0x0,
|
|
.in_offset = 0xc,
|
|
.out_offset = 0x8,
|
|
.inten_offset = 0x14,
|
|
};
|
|
|
|
static const struct of_device_id loongson_gpio_of_match[] = {
|
|
{
|
|
.compatible = "loongson,ls2k-gpio",
|
|
.data = &loongson_gpio_ls2k_data,
|
|
},
|
|
{
|
|
.compatible = "loongson,ls2k0500-gpio0",
|
|
.data = &loongson_gpio_ls2k0500_data0,
|
|
},
|
|
{
|
|
.compatible = "loongson,ls2k0500-gpio1",
|
|
.data = &loongson_gpio_ls2k0500_data1,
|
|
},
|
|
{
|
|
.compatible = "loongson,ls2k2000-gpio0",
|
|
.data = &loongson_gpio_ls2k2000_data0,
|
|
},
|
|
{
|
|
.compatible = "loongson,ls2k2000-gpio1",
|
|
.data = &loongson_gpio_ls2k2000_data1,
|
|
},
|
|
{
|
|
.compatible = "loongson,ls2k2000-gpio2",
|
|
.data = &loongson_gpio_ls2k2000_data2,
|
|
},
|
|
{
|
|
.compatible = "loongson,ls3a5000-gpio",
|
|
.data = &loongson_gpio_ls3a5000_data,
|
|
},
|
|
{
|
|
.compatible = "loongson,ls7a-gpio",
|
|
.data = &loongson_gpio_ls7a_data,
|
|
},
|
|
{
|
|
.compatible = "loongson,ls7a2000-gpio1",
|
|
.data = &loongson_gpio_ls7a2000_data0,
|
|
},
|
|
{
|
|
.compatible = "loongson,ls7a2000-gpio2",
|
|
.data = &loongson_gpio_ls7a2000_data1,
|
|
},
|
|
{
|
|
.compatible = "loongson,ls3a6000-gpio",
|
|
.data = &loongson_gpio_ls3a6000_data,
|
|
},
|
|
{}
|
|
};
|
|
MODULE_DEVICE_TABLE(of, loongson_gpio_of_match);
|
|
|
|
static const struct acpi_device_id loongson_gpio_acpi_match[] = {
|
|
{
|
|
.id = "LOON0002",
|
|
.driver_data = (kernel_ulong_t)&loongson_gpio_ls7a_data,
|
|
},
|
|
{
|
|
.id = "LOON0007",
|
|
.driver_data = (kernel_ulong_t)&loongson_gpio_ls3a5000_data,
|
|
},
|
|
{
|
|
.id = "LOON000A",
|
|
.driver_data = (kernel_ulong_t)&loongson_gpio_ls2k2000_data0,
|
|
},
|
|
{
|
|
.id = "LOON000B",
|
|
.driver_data = (kernel_ulong_t)&loongson_gpio_ls2k2000_data1,
|
|
},
|
|
{
|
|
.id = "LOON000C",
|
|
.driver_data = (kernel_ulong_t)&loongson_gpio_ls2k2000_data2,
|
|
},
|
|
{
|
|
.id = "LOON000D",
|
|
.driver_data = (kernel_ulong_t)&loongson_gpio_ls7a2000_data0,
|
|
},
|
|
{
|
|
.id = "LOON000E",
|
|
.driver_data = (kernel_ulong_t)&loongson_gpio_ls7a2000_data1,
|
|
},
|
|
{
|
|
.id = "LOON000F",
|
|
.driver_data = (kernel_ulong_t)&loongson_gpio_ls3a6000_data,
|
|
},
|
|
{}
|
|
};
|
|
MODULE_DEVICE_TABLE(acpi, loongson_gpio_acpi_match);
|
|
|
|
static struct platform_driver loongson_gpio_driver = {
|
|
.driver = {
|
|
.name = "loongson-gpio",
|
|
.of_match_table = loongson_gpio_of_match,
|
|
.acpi_match_table = loongson_gpio_acpi_match,
|
|
},
|
|
.probe = loongson_gpio_probe,
|
|
};
|
|
|
|
static int __init loongson_gpio_setup(void)
|
|
{
|
|
return platform_driver_register(&loongson_gpio_driver);
|
|
}
|
|
postcore_initcall(loongson_gpio_setup);
|
|
|
|
MODULE_DESCRIPTION("Loongson gpio driver");
|
|
MODULE_LICENSE("GPL");
|