2018-05-22 10:32:54 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
//
|
|
|
|
// MXC GPIO support. (c) 2008 Daniel Mack <daniel@caiaq.de>
|
|
|
|
// Copyright 2008 Juergen Beisert, kernel@pengutronix.de
|
|
|
|
//
|
|
|
|
// Based on code from Freescale Semiconductor,
|
|
|
|
// Authors: Daniel Mack, Juergen Beisert.
|
|
|
|
// Copyright (C) 2004-2010 Freescale Semiconductor, Inc. All Rights Reserved.
|
2008-07-05 16:02:49 +08:00
|
|
|
|
2018-05-22 11:05:40 +08:00
|
|
|
#include <linux/clk.h>
|
2013-07-23 05:17:52 +08:00
|
|
|
#include <linux/err.h>
|
2008-07-05 16:02:49 +08:00
|
|
|
#include <linux/init.h>
|
2010-10-23 22:12:48 +08:00
|
|
|
#include <linux/interrupt.h>
|
2008-07-05 16:02:49 +08:00
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/irq.h>
|
2012-06-13 09:04:03 +08:00
|
|
|
#include <linux/irqdomain.h>
|
2013-01-18 23:31:37 +08:00
|
|
|
#include <linux/irqchip/chained_irq.h>
|
gpio: mxc: Support module build
Change config to tristate, add module device table, module author,
description and license to support module build for i.MX GPIO driver.
As this is a SoC GPIO module, it provides common functions for most
of the peripheral devices, such as GPIO pins control, secondary
interrupt controller for GPIO pins IRQ etc., without GPIO driver, most
of the peripheral devices will NOT work properly, so GPIO module is
similar with clock, pinctrl driver that should be loaded ONCE and
never unloaded.
Since MXC GPIO driver needs to have init function to register syscore
ops once, here still use subsys_initcall(), NOT module_platform_driver().
Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
Link: https://lore.kernel.org/r/1600320829-1453-1-git-send-email-Anson.Huang@nxp.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
2020-09-17 13:33:46 +08:00
|
|
|
#include <linux/module.h>
|
2011-06-06 00:07:55 +08:00
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/slab.h>
|
2018-11-09 12:56:56 +08:00
|
|
|
#include <linux/syscore_ops.h>
|
2015-12-04 21:02:58 +08:00
|
|
|
#include <linux/gpio/driver.h>
|
2011-07-07 00:37:43 +08:00
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/of_device.h>
|
2015-08-28 15:27:22 +08:00
|
|
|
#include <linux/bug.h>
|
2008-07-05 16:02:49 +08:00
|
|
|
|
2011-07-07 00:37:41 +08:00
|
|
|
/* device type dependent stuff */
|
|
|
|
struct mxc_gpio_hwdata {
|
|
|
|
unsigned dr_reg;
|
|
|
|
unsigned gdir_reg;
|
|
|
|
unsigned psr_reg;
|
|
|
|
unsigned icr1_reg;
|
|
|
|
unsigned icr2_reg;
|
|
|
|
unsigned imr_reg;
|
|
|
|
unsigned isr_reg;
|
2012-06-23 03:04:06 +08:00
|
|
|
int edge_sel_reg;
|
2011-07-07 00:37:41 +08:00
|
|
|
unsigned low_level;
|
|
|
|
unsigned high_level;
|
|
|
|
unsigned rise_edge;
|
|
|
|
unsigned fall_edge;
|
|
|
|
};
|
|
|
|
|
2018-07-18 09:25:32 +08:00
|
|
|
struct mxc_gpio_reg_saved {
|
|
|
|
u32 icr1;
|
|
|
|
u32 icr2;
|
|
|
|
u32 imr;
|
|
|
|
u32 gdir;
|
|
|
|
u32 edge_sel;
|
|
|
|
u32 dr;
|
|
|
|
};
|
|
|
|
|
2011-06-06 00:07:55 +08:00
|
|
|
struct mxc_gpio_port {
|
|
|
|
struct list_head node;
|
|
|
|
void __iomem *base;
|
2018-05-22 11:05:40 +08:00
|
|
|
struct clk *clk;
|
2011-06-06 00:07:55 +08:00
|
|
|
int irq;
|
|
|
|
int irq_high;
|
2012-06-13 09:04:03 +08:00
|
|
|
struct irq_domain *domain;
|
2015-12-04 21:02:58 +08:00
|
|
|
struct gpio_chip gc;
|
2017-08-09 20:25:06 +08:00
|
|
|
struct device *dev;
|
2011-06-06 00:07:55 +08:00
|
|
|
u32 both_edges;
|
2018-07-18 09:25:32 +08:00
|
|
|
struct mxc_gpio_reg_saved gpio_saved_reg;
|
|
|
|
bool power_off;
|
2020-11-17 18:59:17 +08:00
|
|
|
const struct mxc_gpio_hwdata *hwdata;
|
2011-06-06 00:07:55 +08:00
|
|
|
};
|
|
|
|
|
2011-07-07 00:37:41 +08:00
|
|
|
static struct mxc_gpio_hwdata imx1_imx21_gpio_hwdata = {
|
|
|
|
.dr_reg = 0x1c,
|
|
|
|
.gdir_reg = 0x00,
|
|
|
|
.psr_reg = 0x24,
|
|
|
|
.icr1_reg = 0x28,
|
|
|
|
.icr2_reg = 0x2c,
|
|
|
|
.imr_reg = 0x30,
|
|
|
|
.isr_reg = 0x34,
|
2012-06-23 03:04:06 +08:00
|
|
|
.edge_sel_reg = -EINVAL,
|
2011-07-07 00:37:41 +08:00
|
|
|
.low_level = 0x03,
|
|
|
|
.high_level = 0x02,
|
|
|
|
.rise_edge = 0x00,
|
|
|
|
.fall_edge = 0x01,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct mxc_gpio_hwdata imx31_gpio_hwdata = {
|
|
|
|
.dr_reg = 0x00,
|
|
|
|
.gdir_reg = 0x04,
|
|
|
|
.psr_reg = 0x08,
|
|
|
|
.icr1_reg = 0x0c,
|
|
|
|
.icr2_reg = 0x10,
|
|
|
|
.imr_reg = 0x14,
|
|
|
|
.isr_reg = 0x18,
|
2012-06-23 03:04:06 +08:00
|
|
|
.edge_sel_reg = -EINVAL,
|
|
|
|
.low_level = 0x00,
|
|
|
|
.high_level = 0x01,
|
|
|
|
.rise_edge = 0x02,
|
|
|
|
.fall_edge = 0x03,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct mxc_gpio_hwdata imx35_gpio_hwdata = {
|
|
|
|
.dr_reg = 0x00,
|
|
|
|
.gdir_reg = 0x04,
|
|
|
|
.psr_reg = 0x08,
|
|
|
|
.icr1_reg = 0x0c,
|
|
|
|
.icr2_reg = 0x10,
|
|
|
|
.imr_reg = 0x14,
|
|
|
|
.isr_reg = 0x18,
|
|
|
|
.edge_sel_reg = 0x1c,
|
2011-07-07 00:37:41 +08:00
|
|
|
.low_level = 0x00,
|
|
|
|
.high_level = 0x01,
|
|
|
|
.rise_edge = 0x02,
|
|
|
|
.fall_edge = 0x03,
|
|
|
|
};
|
|
|
|
|
2020-11-17 18:59:17 +08:00
|
|
|
#define GPIO_DR (port->hwdata->dr_reg)
|
|
|
|
#define GPIO_GDIR (port->hwdata->gdir_reg)
|
|
|
|
#define GPIO_PSR (port->hwdata->psr_reg)
|
|
|
|
#define GPIO_ICR1 (port->hwdata->icr1_reg)
|
|
|
|
#define GPIO_ICR2 (port->hwdata->icr2_reg)
|
|
|
|
#define GPIO_IMR (port->hwdata->imr_reg)
|
|
|
|
#define GPIO_ISR (port->hwdata->isr_reg)
|
|
|
|
#define GPIO_EDGE_SEL (port->hwdata->edge_sel_reg)
|
|
|
|
|
|
|
|
#define GPIO_INT_LOW_LEV (port->hwdata->low_level)
|
|
|
|
#define GPIO_INT_HIGH_LEV (port->hwdata->high_level)
|
|
|
|
#define GPIO_INT_RISE_EDGE (port->hwdata->rise_edge)
|
|
|
|
#define GPIO_INT_FALL_EDGE (port->hwdata->fall_edge)
|
2012-06-23 03:04:06 +08:00
|
|
|
#define GPIO_INT_BOTH_EDGES 0x4
|
2011-07-07 00:37:41 +08:00
|
|
|
|
2011-07-07 00:37:43 +08:00
|
|
|
static const struct of_device_id mxc_gpio_dt_ids[] = {
|
2020-11-17 18:59:17 +08:00
|
|
|
{ .compatible = "fsl,imx1-gpio", .data = &imx1_imx21_gpio_hwdata },
|
|
|
|
{ .compatible = "fsl,imx21-gpio", .data = &imx1_imx21_gpio_hwdata },
|
|
|
|
{ .compatible = "fsl,imx31-gpio", .data = &imx31_gpio_hwdata },
|
|
|
|
{ .compatible = "fsl,imx35-gpio", .data = &imx35_gpio_hwdata },
|
|
|
|
{ .compatible = "fsl,imx7d-gpio", .data = &imx35_gpio_hwdata },
|
2011-07-07 00:37:43 +08:00
|
|
|
{ /* sentinel */ }
|
|
|
|
};
|
gpio: mxc: Support module build
Change config to tristate, add module device table, module author,
description and license to support module build for i.MX GPIO driver.
As this is a SoC GPIO module, it provides common functions for most
of the peripheral devices, such as GPIO pins control, secondary
interrupt controller for GPIO pins IRQ etc., without GPIO driver, most
of the peripheral devices will NOT work properly, so GPIO module is
similar with clock, pinctrl driver that should be loaded ONCE and
never unloaded.
Since MXC GPIO driver needs to have init function to register syscore
ops once, here still use subsys_initcall(), NOT module_platform_driver().
Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
Link: https://lore.kernel.org/r/1600320829-1453-1-git-send-email-Anson.Huang@nxp.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
2020-09-17 13:33:46 +08:00
|
|
|
MODULE_DEVICE_TABLE(of, mxc_gpio_dt_ids);
|
2011-07-07 00:37:43 +08:00
|
|
|
|
2011-06-06 00:07:55 +08:00
|
|
|
/*
|
|
|
|
* MX2 has one interrupt *for all* gpio ports. The list is used
|
|
|
|
* to save the references to all ports, so that mx2_gpio_irq_handler
|
|
|
|
* can walk through all interrupt status registers.
|
|
|
|
*/
|
|
|
|
static LIST_HEAD(mxc_gpio_ports);
|
2008-07-05 16:02:49 +08:00
|
|
|
|
|
|
|
/* Note: This driver assumes 32 GPIOs are handled in one register */
|
|
|
|
|
2010-11-29 18:16:23 +08:00
|
|
|
static int gpio_set_irq_type(struct irq_data *d, u32 type)
|
2008-07-05 16:02:49 +08:00
|
|
|
{
|
2011-06-07 16:25:37 +08:00
|
|
|
struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
|
|
|
|
struct mxc_gpio_port *port = gc->private;
|
2008-07-05 16:02:49 +08:00
|
|
|
u32 bit, val;
|
2012-06-13 09:04:03 +08:00
|
|
|
u32 gpio_idx = d->hwirq;
|
2008-07-05 16:02:49 +08:00
|
|
|
int edge;
|
|
|
|
void __iomem *reg = port->base;
|
|
|
|
|
2012-06-13 09:04:03 +08:00
|
|
|
port->both_edges &= ~(1 << gpio_idx);
|
2008-07-05 16:02:49 +08:00
|
|
|
switch (type) {
|
2008-07-27 11:23:31 +08:00
|
|
|
case IRQ_TYPE_EDGE_RISING:
|
2008-07-05 16:02:49 +08:00
|
|
|
edge = GPIO_INT_RISE_EDGE;
|
|
|
|
break;
|
2008-07-27 11:23:31 +08:00
|
|
|
case IRQ_TYPE_EDGE_FALLING:
|
2008-07-05 16:02:49 +08:00
|
|
|
edge = GPIO_INT_FALL_EDGE;
|
|
|
|
break;
|
2009-03-12 19:46:41 +08:00
|
|
|
case IRQ_TYPE_EDGE_BOTH:
|
2012-06-23 03:04:06 +08:00
|
|
|
if (GPIO_EDGE_SEL >= 0) {
|
|
|
|
edge = GPIO_INT_BOTH_EDGES;
|
2009-03-12 19:46:41 +08:00
|
|
|
} else {
|
2018-04-16 04:25:00 +08:00
|
|
|
val = port->gc.get(&port->gc, gpio_idx);
|
2012-06-23 03:04:06 +08:00
|
|
|
if (val) {
|
|
|
|
edge = GPIO_INT_LOW_LEV;
|
2018-04-16 04:25:00 +08:00
|
|
|
pr_debug("mxc: set GPIO %d to low trigger\n", gpio_idx);
|
2012-06-23 03:04:06 +08:00
|
|
|
} else {
|
|
|
|
edge = GPIO_INT_HIGH_LEV;
|
2018-04-16 04:25:00 +08:00
|
|
|
pr_debug("mxc: set GPIO %d to high trigger\n", gpio_idx);
|
2012-06-23 03:04:06 +08:00
|
|
|
}
|
GPIO changes for v3.6:
- New driver for AMD-8111 southbridge GPIOs
- New driver for Wolfson Micro Arizona devices
- Propagate device tree parse errors
- Probe deferral finalizations - all expected calls to
GPIO will now hopefully request deferral where apropriate
- Misc updates to TCA6424, WM8994, LPC32xx, PCF857x, Samsung
MXC, OMAP and PCA953X drivers.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iQIcBAABAgAGBQJQEHMDAAoJEEEQszewGV1zwPYP/jkxBzvEl+iEO0RFwT4PtmCi
Y8JOJNT1bw/3MHPcRT12E+gzj01S9GldbuaUObcudmnnynpjeC0S8JNhSKGD9uHa
TTcCcMbZiKzJyZr/OL8EId7W1FGUO+51uB4hqEKCHMWRY/PBIjKxhvtj+BKEWyvn
OVhWCxo2O7lv7rzeKiPc8WJMiodLS1urbZEyz7IADZtT3m8vu146rEQRvbNSSXa0
AJfl494XX1sbv0tzYzvE66+vjvvkgsjHq3O7On5b2svdnZGpAL/6CjEUVrpBXr4K
NPKuq9TsLfVMH3w3xvQ70PoA7M0L+KvKcdjTvgZpf2KLIU7dwoL91PzAupcjSTr1
SkcTPtNFxuaRy0cFD+ZAwL2eIOGaNxk6N4tj1da35QjCUkNROHG5K6ByIL1e1ewO
NuxAyn7QLrYdmXzBc5/DhZiBA0ShqoYg4oEgBDZklOKqjT3mqmjQbDq8i0Qy197W
lb3Barg+WWm+NW1kmPYnrOJUZXa1ApVHuz8db7OrcUy5kTcUhVTY3DcQzFgG1CZT
H284c9Zm8WaP814jE8SzLMGeFaCuI63xFMNkpnba11Bt+8Cr1I+LjWSd+ttCFdVm
W9t/fMEX1bVpVrbTKMvcwm7AwnoeOUEwJCqAICLe5OE/1mEvanyjNXX4wfFP58jv
OlQ/a9REqoOLAvvbV2qp
=tujx
-----END PGP SIGNATURE-----
Merge tag 'gpio-for-v3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio
Pull GPIO changes from Linus Walleij:
- New driver for AMD-8111 southbridge GPIOs
- New driver for Wolfson Micro Arizona devices
- Propagate device tree parse errors
- Probe deferral finalizations - all expected calls to GPIO will now
hopefully request deferral where apropriate
- Misc updates to TCA6424, WM8994, LPC32xx, PCF857x, Samsung MXC, OMAP
and PCA953X drivers.
Fix up gpio_idx conflicts in drivers/gpio/gpio-mxc.c
* tag 'gpio-for-v3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio:
gpio: of_get_named_gpio_flags() return -EPROBE_DEFER if GPIO not yet available
gpiolib: Defer failed gpio requests by default
MAINTAINERS: add entry OMAP GPIO driver
gpio/pca953x: increase variables size to support 24 bit of data
GPIO: PCA953X: Increase size of invert variable to support 24 bit
gpio/omap: move bank->dbck initialization to omap_gpio_mod_init()
gpio/mxc: use the edge_sel feature if available
gpio: propagate of_parse_phandle_with_args errors
gpio: samsung: add flags specifier to device-tree binding
gpiolib: Add support for Wolfson Microelectronics Arizona class devices
gpio: gpio-lpc32xx: Add gpio_to_irq mapping
gpio: pcf857x: share 8/16 bit access functions
gpio: LPC32xx: Driver cleanup
MAINTAINERS: Add Wolfson gpiolib drivers to the Wolfson entry
gpiolib: wm8994: Convert to devm_kzalloc()
gpiolib: wm8994: Use irq_domain mappings for gpios
gpio: add a driver for GPIO pins found on AMD-8111 south bridge chips
gpio/tca6424: merge I2C transactions, remove cast
gpio/of: fix a typo of comment message
2012-07-27 04:56:38 +08:00
|
|
|
port->both_edges |= 1 << gpio_idx;
|
2009-03-12 19:46:41 +08:00
|
|
|
}
|
|
|
|
break;
|
2008-07-27 11:23:31 +08:00
|
|
|
case IRQ_TYPE_LEVEL_LOW:
|
2008-07-05 16:02:49 +08:00
|
|
|
edge = GPIO_INT_LOW_LEV;
|
|
|
|
break;
|
2008-07-27 11:23:31 +08:00
|
|
|
case IRQ_TYPE_LEVEL_HIGH:
|
2008-07-05 16:02:49 +08:00
|
|
|
edge = GPIO_INT_HIGH_LEV;
|
|
|
|
break;
|
2009-03-12 19:46:41 +08:00
|
|
|
default:
|
2008-07-05 16:02:49 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2012-06-23 03:04:06 +08:00
|
|
|
if (GPIO_EDGE_SEL >= 0) {
|
|
|
|
val = readl(port->base + GPIO_EDGE_SEL);
|
|
|
|
if (edge == GPIO_INT_BOTH_EDGES)
|
GPIO changes for v3.6:
- New driver for AMD-8111 southbridge GPIOs
- New driver for Wolfson Micro Arizona devices
- Propagate device tree parse errors
- Probe deferral finalizations - all expected calls to
GPIO will now hopefully request deferral where apropriate
- Misc updates to TCA6424, WM8994, LPC32xx, PCF857x, Samsung
MXC, OMAP and PCA953X drivers.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iQIcBAABAgAGBQJQEHMDAAoJEEEQszewGV1zwPYP/jkxBzvEl+iEO0RFwT4PtmCi
Y8JOJNT1bw/3MHPcRT12E+gzj01S9GldbuaUObcudmnnynpjeC0S8JNhSKGD9uHa
TTcCcMbZiKzJyZr/OL8EId7W1FGUO+51uB4hqEKCHMWRY/PBIjKxhvtj+BKEWyvn
OVhWCxo2O7lv7rzeKiPc8WJMiodLS1urbZEyz7IADZtT3m8vu146rEQRvbNSSXa0
AJfl494XX1sbv0tzYzvE66+vjvvkgsjHq3O7On5b2svdnZGpAL/6CjEUVrpBXr4K
NPKuq9TsLfVMH3w3xvQ70PoA7M0L+KvKcdjTvgZpf2KLIU7dwoL91PzAupcjSTr1
SkcTPtNFxuaRy0cFD+ZAwL2eIOGaNxk6N4tj1da35QjCUkNROHG5K6ByIL1e1ewO
NuxAyn7QLrYdmXzBc5/DhZiBA0ShqoYg4oEgBDZklOKqjT3mqmjQbDq8i0Qy197W
lb3Barg+WWm+NW1kmPYnrOJUZXa1ApVHuz8db7OrcUy5kTcUhVTY3DcQzFgG1CZT
H284c9Zm8WaP814jE8SzLMGeFaCuI63xFMNkpnba11Bt+8Cr1I+LjWSd+ttCFdVm
W9t/fMEX1bVpVrbTKMvcwm7AwnoeOUEwJCqAICLe5OE/1mEvanyjNXX4wfFP58jv
OlQ/a9REqoOLAvvbV2qp
=tujx
-----END PGP SIGNATURE-----
Merge tag 'gpio-for-v3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio
Pull GPIO changes from Linus Walleij:
- New driver for AMD-8111 southbridge GPIOs
- New driver for Wolfson Micro Arizona devices
- Propagate device tree parse errors
- Probe deferral finalizations - all expected calls to GPIO will now
hopefully request deferral where apropriate
- Misc updates to TCA6424, WM8994, LPC32xx, PCF857x, Samsung MXC, OMAP
and PCA953X drivers.
Fix up gpio_idx conflicts in drivers/gpio/gpio-mxc.c
* tag 'gpio-for-v3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio:
gpio: of_get_named_gpio_flags() return -EPROBE_DEFER if GPIO not yet available
gpiolib: Defer failed gpio requests by default
MAINTAINERS: add entry OMAP GPIO driver
gpio/pca953x: increase variables size to support 24 bit of data
GPIO: PCA953X: Increase size of invert variable to support 24 bit
gpio/omap: move bank->dbck initialization to omap_gpio_mod_init()
gpio/mxc: use the edge_sel feature if available
gpio: propagate of_parse_phandle_with_args errors
gpio: samsung: add flags specifier to device-tree binding
gpiolib: Add support for Wolfson Microelectronics Arizona class devices
gpio: gpio-lpc32xx: Add gpio_to_irq mapping
gpio: pcf857x: share 8/16 bit access functions
gpio: LPC32xx: Driver cleanup
MAINTAINERS: Add Wolfson gpiolib drivers to the Wolfson entry
gpiolib: wm8994: Convert to devm_kzalloc()
gpiolib: wm8994: Use irq_domain mappings for gpios
gpio: add a driver for GPIO pins found on AMD-8111 south bridge chips
gpio/tca6424: merge I2C transactions, remove cast
gpio/of: fix a typo of comment message
2012-07-27 04:56:38 +08:00
|
|
|
writel(val | (1 << gpio_idx),
|
2012-06-23 03:04:06 +08:00
|
|
|
port->base + GPIO_EDGE_SEL);
|
|
|
|
else
|
GPIO changes for v3.6:
- New driver for AMD-8111 southbridge GPIOs
- New driver for Wolfson Micro Arizona devices
- Propagate device tree parse errors
- Probe deferral finalizations - all expected calls to
GPIO will now hopefully request deferral where apropriate
- Misc updates to TCA6424, WM8994, LPC32xx, PCF857x, Samsung
MXC, OMAP and PCA953X drivers.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iQIcBAABAgAGBQJQEHMDAAoJEEEQszewGV1zwPYP/jkxBzvEl+iEO0RFwT4PtmCi
Y8JOJNT1bw/3MHPcRT12E+gzj01S9GldbuaUObcudmnnynpjeC0S8JNhSKGD9uHa
TTcCcMbZiKzJyZr/OL8EId7W1FGUO+51uB4hqEKCHMWRY/PBIjKxhvtj+BKEWyvn
OVhWCxo2O7lv7rzeKiPc8WJMiodLS1urbZEyz7IADZtT3m8vu146rEQRvbNSSXa0
AJfl494XX1sbv0tzYzvE66+vjvvkgsjHq3O7On5b2svdnZGpAL/6CjEUVrpBXr4K
NPKuq9TsLfVMH3w3xvQ70PoA7M0L+KvKcdjTvgZpf2KLIU7dwoL91PzAupcjSTr1
SkcTPtNFxuaRy0cFD+ZAwL2eIOGaNxk6N4tj1da35QjCUkNROHG5K6ByIL1e1ewO
NuxAyn7QLrYdmXzBc5/DhZiBA0ShqoYg4oEgBDZklOKqjT3mqmjQbDq8i0Qy197W
lb3Barg+WWm+NW1kmPYnrOJUZXa1ApVHuz8db7OrcUy5kTcUhVTY3DcQzFgG1CZT
H284c9Zm8WaP814jE8SzLMGeFaCuI63xFMNkpnba11Bt+8Cr1I+LjWSd+ttCFdVm
W9t/fMEX1bVpVrbTKMvcwm7AwnoeOUEwJCqAICLe5OE/1mEvanyjNXX4wfFP58jv
OlQ/a9REqoOLAvvbV2qp
=tujx
-----END PGP SIGNATURE-----
Merge tag 'gpio-for-v3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio
Pull GPIO changes from Linus Walleij:
- New driver for AMD-8111 southbridge GPIOs
- New driver for Wolfson Micro Arizona devices
- Propagate device tree parse errors
- Probe deferral finalizations - all expected calls to GPIO will now
hopefully request deferral where apropriate
- Misc updates to TCA6424, WM8994, LPC32xx, PCF857x, Samsung MXC, OMAP
and PCA953X drivers.
Fix up gpio_idx conflicts in drivers/gpio/gpio-mxc.c
* tag 'gpio-for-v3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio:
gpio: of_get_named_gpio_flags() return -EPROBE_DEFER if GPIO not yet available
gpiolib: Defer failed gpio requests by default
MAINTAINERS: add entry OMAP GPIO driver
gpio/pca953x: increase variables size to support 24 bit of data
GPIO: PCA953X: Increase size of invert variable to support 24 bit
gpio/omap: move bank->dbck initialization to omap_gpio_mod_init()
gpio/mxc: use the edge_sel feature if available
gpio: propagate of_parse_phandle_with_args errors
gpio: samsung: add flags specifier to device-tree binding
gpiolib: Add support for Wolfson Microelectronics Arizona class devices
gpio: gpio-lpc32xx: Add gpio_to_irq mapping
gpio: pcf857x: share 8/16 bit access functions
gpio: LPC32xx: Driver cleanup
MAINTAINERS: Add Wolfson gpiolib drivers to the Wolfson entry
gpiolib: wm8994: Convert to devm_kzalloc()
gpiolib: wm8994: Use irq_domain mappings for gpios
gpio: add a driver for GPIO pins found on AMD-8111 south bridge chips
gpio/tca6424: merge I2C transactions, remove cast
gpio/of: fix a typo of comment message
2012-07-27 04:56:38 +08:00
|
|
|
writel(val & ~(1 << gpio_idx),
|
2012-06-23 03:04:06 +08:00
|
|
|
port->base + GPIO_EDGE_SEL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (edge != GPIO_INT_BOTH_EDGES) {
|
GPIO changes for v3.6:
- New driver for AMD-8111 southbridge GPIOs
- New driver for Wolfson Micro Arizona devices
- Propagate device tree parse errors
- Probe deferral finalizations - all expected calls to
GPIO will now hopefully request deferral where apropriate
- Misc updates to TCA6424, WM8994, LPC32xx, PCF857x, Samsung
MXC, OMAP and PCA953X drivers.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iQIcBAABAgAGBQJQEHMDAAoJEEEQszewGV1zwPYP/jkxBzvEl+iEO0RFwT4PtmCi
Y8JOJNT1bw/3MHPcRT12E+gzj01S9GldbuaUObcudmnnynpjeC0S8JNhSKGD9uHa
TTcCcMbZiKzJyZr/OL8EId7W1FGUO+51uB4hqEKCHMWRY/PBIjKxhvtj+BKEWyvn
OVhWCxo2O7lv7rzeKiPc8WJMiodLS1urbZEyz7IADZtT3m8vu146rEQRvbNSSXa0
AJfl494XX1sbv0tzYzvE66+vjvvkgsjHq3O7On5b2svdnZGpAL/6CjEUVrpBXr4K
NPKuq9TsLfVMH3w3xvQ70PoA7M0L+KvKcdjTvgZpf2KLIU7dwoL91PzAupcjSTr1
SkcTPtNFxuaRy0cFD+ZAwL2eIOGaNxk6N4tj1da35QjCUkNROHG5K6ByIL1e1ewO
NuxAyn7QLrYdmXzBc5/DhZiBA0ShqoYg4oEgBDZklOKqjT3mqmjQbDq8i0Qy197W
lb3Barg+WWm+NW1kmPYnrOJUZXa1ApVHuz8db7OrcUy5kTcUhVTY3DcQzFgG1CZT
H284c9Zm8WaP814jE8SzLMGeFaCuI63xFMNkpnba11Bt+8Cr1I+LjWSd+ttCFdVm
W9t/fMEX1bVpVrbTKMvcwm7AwnoeOUEwJCqAICLe5OE/1mEvanyjNXX4wfFP58jv
OlQ/a9REqoOLAvvbV2qp
=tujx
-----END PGP SIGNATURE-----
Merge tag 'gpio-for-v3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio
Pull GPIO changes from Linus Walleij:
- New driver for AMD-8111 southbridge GPIOs
- New driver for Wolfson Micro Arizona devices
- Propagate device tree parse errors
- Probe deferral finalizations - all expected calls to GPIO will now
hopefully request deferral where apropriate
- Misc updates to TCA6424, WM8994, LPC32xx, PCF857x, Samsung MXC, OMAP
and PCA953X drivers.
Fix up gpio_idx conflicts in drivers/gpio/gpio-mxc.c
* tag 'gpio-for-v3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio:
gpio: of_get_named_gpio_flags() return -EPROBE_DEFER if GPIO not yet available
gpiolib: Defer failed gpio requests by default
MAINTAINERS: add entry OMAP GPIO driver
gpio/pca953x: increase variables size to support 24 bit of data
GPIO: PCA953X: Increase size of invert variable to support 24 bit
gpio/omap: move bank->dbck initialization to omap_gpio_mod_init()
gpio/mxc: use the edge_sel feature if available
gpio: propagate of_parse_phandle_with_args errors
gpio: samsung: add flags specifier to device-tree binding
gpiolib: Add support for Wolfson Microelectronics Arizona class devices
gpio: gpio-lpc32xx: Add gpio_to_irq mapping
gpio: pcf857x: share 8/16 bit access functions
gpio: LPC32xx: Driver cleanup
MAINTAINERS: Add Wolfson gpiolib drivers to the Wolfson entry
gpiolib: wm8994: Convert to devm_kzalloc()
gpiolib: wm8994: Use irq_domain mappings for gpios
gpio: add a driver for GPIO pins found on AMD-8111 south bridge chips
gpio/tca6424: merge I2C transactions, remove cast
gpio/of: fix a typo of comment message
2012-07-27 04:56:38 +08:00
|
|
|
reg += GPIO_ICR1 + ((gpio_idx & 0x10) >> 2); /* lower or upper register */
|
|
|
|
bit = gpio_idx & 0xf;
|
2012-06-23 03:04:06 +08:00
|
|
|
val = readl(reg) & ~(0x3 << (bit << 1));
|
|
|
|
writel(val | (edge << (bit << 1)), reg);
|
|
|
|
}
|
|
|
|
|
2012-06-13 09:04:03 +08:00
|
|
|
writel(1 << gpio_idx, port->base + GPIO_ISR);
|
2008-07-05 16:02:49 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-12 19:46:41 +08:00
|
|
|
static void mxc_flip_edge(struct mxc_gpio_port *port, u32 gpio)
|
|
|
|
{
|
|
|
|
void __iomem *reg = port->base;
|
|
|
|
u32 bit, val;
|
|
|
|
int edge;
|
|
|
|
|
|
|
|
reg += GPIO_ICR1 + ((gpio & 0x10) >> 2); /* lower or upper register */
|
|
|
|
bit = gpio & 0xf;
|
2011-06-06 00:07:55 +08:00
|
|
|
val = readl(reg);
|
2009-03-12 19:46:41 +08:00
|
|
|
edge = (val >> (bit << 1)) & 3;
|
|
|
|
val &= ~(0x3 << (bit << 1));
|
2010-02-06 05:14:37 +08:00
|
|
|
if (edge == GPIO_INT_HIGH_LEV) {
|
2009-03-12 19:46:41 +08:00
|
|
|
edge = GPIO_INT_LOW_LEV;
|
|
|
|
pr_debug("mxc: switch GPIO %d to low trigger\n", gpio);
|
2010-02-06 05:14:37 +08:00
|
|
|
} else if (edge == GPIO_INT_LOW_LEV) {
|
2009-03-12 19:46:41 +08:00
|
|
|
edge = GPIO_INT_HIGH_LEV;
|
|
|
|
pr_debug("mxc: switch GPIO %d to high trigger\n", gpio);
|
2010-02-06 05:14:37 +08:00
|
|
|
} else {
|
2009-03-12 19:46:41 +08:00
|
|
|
pr_err("mxc: invalid configuration for GPIO %d: %x\n",
|
|
|
|
gpio, edge);
|
|
|
|
return;
|
|
|
|
}
|
2011-06-06 00:07:55 +08:00
|
|
|
writel(val | (edge << (bit << 1)), reg);
|
2009-03-12 19:46:41 +08:00
|
|
|
}
|
|
|
|
|
2010-02-09 04:02:30 +08:00
|
|
|
/* handle 32 interrupts in one status register */
|
2008-07-05 16:02:49 +08:00
|
|
|
static void mxc_gpio_irq_handler(struct mxc_gpio_port *port, u32 irq_stat)
|
|
|
|
{
|
2010-02-09 04:02:30 +08:00
|
|
|
while (irq_stat != 0) {
|
|
|
|
int irqoffset = fls(irq_stat) - 1;
|
2008-07-05 16:02:49 +08:00
|
|
|
|
2010-02-09 04:02:30 +08:00
|
|
|
if (port->both_edges & (1 << irqoffset))
|
|
|
|
mxc_flip_edge(port, irqoffset);
|
2009-03-12 19:46:41 +08:00
|
|
|
|
2012-06-13 09:04:03 +08:00
|
|
|
generic_handle_irq(irq_find_mapping(port->domain, irqoffset));
|
2009-03-12 19:46:41 +08:00
|
|
|
|
2010-02-09 04:02:30 +08:00
|
|
|
irq_stat &= ~(1 << irqoffset);
|
2008-07-05 16:02:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-14 18:01:38 +08:00
|
|
|
/* MX1 and MX3 has one interrupt *per* gpio port */
|
2015-09-14 16:42:37 +08:00
|
|
|
static void mx3_gpio_irq_handler(struct irq_desc *desc)
|
2008-07-05 16:02:49 +08:00
|
|
|
{
|
|
|
|
u32 irq_stat;
|
2015-06-04 12:13:15 +08:00
|
|
|
struct mxc_gpio_port *port = irq_desc_get_handler_data(desc);
|
|
|
|
struct irq_chip *chip = irq_desc_get_chip(desc);
|
2011-09-21 21:24:04 +08:00
|
|
|
|
|
|
|
chained_irq_enter(chip, desc);
|
2008-07-05 16:02:49 +08:00
|
|
|
|
2011-06-06 00:07:55 +08:00
|
|
|
irq_stat = readl(port->base + GPIO_ISR) & readl(port->base + GPIO_IMR);
|
2009-04-21 18:39:59 +08:00
|
|
|
|
2008-07-05 16:02:49 +08:00
|
|
|
mxc_gpio_irq_handler(port, irq_stat);
|
2011-09-21 21:24:04 +08:00
|
|
|
|
|
|
|
chained_irq_exit(chip, desc);
|
2008-07-05 16:02:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* MX2 has one interrupt *for all* gpio ports */
|
2015-09-14 16:42:37 +08:00
|
|
|
static void mx2_gpio_irq_handler(struct irq_desc *desc)
|
2008-07-05 16:02:49 +08:00
|
|
|
{
|
|
|
|
u32 irq_msk, irq_stat;
|
2011-06-06 00:07:55 +08:00
|
|
|
struct mxc_gpio_port *port;
|
2015-06-04 12:13:15 +08:00
|
|
|
struct irq_chip *chip = irq_desc_get_chip(desc);
|
2013-07-18 20:58:06 +08:00
|
|
|
|
|
|
|
chained_irq_enter(chip, desc);
|
2008-07-05 16:02:49 +08:00
|
|
|
|
|
|
|
/* walk through all interrupt status registers */
|
2011-06-06 00:07:55 +08:00
|
|
|
list_for_each_entry(port, &mxc_gpio_ports, node) {
|
|
|
|
irq_msk = readl(port->base + GPIO_IMR);
|
2008-07-05 16:02:49 +08:00
|
|
|
if (!irq_msk)
|
|
|
|
continue;
|
|
|
|
|
2011-06-06 00:07:55 +08:00
|
|
|
irq_stat = readl(port->base + GPIO_ISR) & irq_msk;
|
2008-07-05 16:02:49 +08:00
|
|
|
if (irq_stat)
|
2011-06-06 00:07:55 +08:00
|
|
|
mxc_gpio_irq_handler(port, irq_stat);
|
2008-07-05 16:02:49 +08:00
|
|
|
}
|
2013-07-18 20:58:06 +08:00
|
|
|
chained_irq_exit(chip, desc);
|
2008-07-05 16:02:49 +08:00
|
|
|
}
|
|
|
|
|
2010-10-23 22:12:48 +08:00
|
|
|
/*
|
|
|
|
* Set interrupt number "irq" in the GPIO as a wake-up source.
|
|
|
|
* While system is running, all registered GPIO interrupts need to have
|
|
|
|
* wake-up enabled. When system is suspended, only selected GPIO interrupts
|
|
|
|
* need to have wake-up enabled.
|
|
|
|
* @param irq interrupt source number
|
|
|
|
* @param enable enable as wake-up if equal to non-zero
|
|
|
|
* @return This function returns 0 on success.
|
|
|
|
*/
|
2010-11-29 18:16:23 +08:00
|
|
|
static int gpio_set_wake_irq(struct irq_data *d, u32 enable)
|
2010-10-23 22:12:48 +08:00
|
|
|
{
|
2011-06-07 16:25:37 +08:00
|
|
|
struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
|
|
|
|
struct mxc_gpio_port *port = gc->private;
|
2012-06-13 09:04:03 +08:00
|
|
|
u32 gpio_idx = d->hwirq;
|
2017-07-12 16:36:40 +08:00
|
|
|
int ret;
|
2010-10-23 22:12:48 +08:00
|
|
|
|
|
|
|
if (enable) {
|
|
|
|
if (port->irq_high && (gpio_idx >= 16))
|
2017-07-12 16:36:40 +08:00
|
|
|
ret = enable_irq_wake(port->irq_high);
|
2010-10-23 22:12:48 +08:00
|
|
|
else
|
2017-07-12 16:36:40 +08:00
|
|
|
ret = enable_irq_wake(port->irq);
|
2010-10-23 22:12:48 +08:00
|
|
|
} else {
|
|
|
|
if (port->irq_high && (gpio_idx >= 16))
|
2017-07-12 16:36:40 +08:00
|
|
|
ret = disable_irq_wake(port->irq_high);
|
2010-10-23 22:12:48 +08:00
|
|
|
else
|
2017-07-12 16:36:40 +08:00
|
|
|
ret = disable_irq_wake(port->irq);
|
2010-10-23 22:12:48 +08:00
|
|
|
}
|
|
|
|
|
2017-07-12 16:36:40 +08:00
|
|
|
return ret;
|
2010-10-23 22:12:48 +08:00
|
|
|
}
|
|
|
|
|
2015-08-23 21:11:52 +08:00
|
|
|
static int mxc_gpio_init_gc(struct mxc_gpio_port *port, int irq_base)
|
2011-06-07 16:25:37 +08:00
|
|
|
{
|
|
|
|
struct irq_chip_generic *gc;
|
|
|
|
struct irq_chip_type *ct;
|
2017-08-09 20:25:06 +08:00
|
|
|
int rv;
|
2011-06-07 16:25:37 +08:00
|
|
|
|
2017-08-09 20:25:06 +08:00
|
|
|
gc = devm_irq_alloc_generic_chip(port->dev, "gpio-mxc", 1, irq_base,
|
|
|
|
port->base, handle_level_irq);
|
2015-08-23 21:11:52 +08:00
|
|
|
if (!gc)
|
|
|
|
return -ENOMEM;
|
2011-06-07 16:25:37 +08:00
|
|
|
gc->private = port;
|
|
|
|
|
|
|
|
ct = gc->chip_types;
|
2011-07-19 21:16:56 +08:00
|
|
|
ct->chip.irq_ack = irq_gc_ack_set_bit;
|
2011-06-07 16:25:37 +08:00
|
|
|
ct->chip.irq_mask = irq_gc_mask_clr_bit;
|
|
|
|
ct->chip.irq_unmask = irq_gc_mask_set_bit;
|
|
|
|
ct->chip.irq_set_type = gpio_set_irq_type;
|
2011-07-19 21:16:56 +08:00
|
|
|
ct->chip.irq_set_wake = gpio_set_wake_irq;
|
2021-06-17 21:54:13 +08:00
|
|
|
ct->chip.flags = IRQCHIP_MASK_ON_SUSPEND | IRQCHIP_ENABLE_WAKEUP_ON_SUSPEND;
|
2011-06-07 16:25:37 +08:00
|
|
|
ct->regs.ack = GPIO_ISR;
|
|
|
|
ct->regs.mask = GPIO_IMR;
|
|
|
|
|
2017-08-09 20:25:06 +08:00
|
|
|
rv = devm_irq_setup_generic_chip(port->dev, gc, IRQ_MSK(32),
|
|
|
|
IRQ_GC_INIT_NESTED_LOCK,
|
|
|
|
IRQ_NOREQUEST, 0);
|
2015-08-23 21:11:52 +08:00
|
|
|
|
2017-08-09 20:25:06 +08:00
|
|
|
return rv;
|
2011-06-07 16:25:37 +08:00
|
|
|
}
|
2011-04-04 20:29:58 +08:00
|
|
|
|
2011-08-14 00:14:02 +08:00
|
|
|
static int mxc_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
|
|
|
|
{
|
2015-12-04 21:02:58 +08:00
|
|
|
struct mxc_gpio_port *port = gpiochip_get_data(gc);
|
2011-08-14 00:14:02 +08:00
|
|
|
|
2012-06-13 09:04:03 +08:00
|
|
|
return irq_find_mapping(port->domain, offset);
|
2011-08-14 00:14:02 +08:00
|
|
|
}
|
|
|
|
|
2012-11-20 02:22:34 +08:00
|
|
|
static int mxc_gpio_probe(struct platform_device *pdev)
|
2008-07-05 16:02:49 +08:00
|
|
|
{
|
2011-07-07 00:37:43 +08:00
|
|
|
struct device_node *np = pdev->dev.of_node;
|
2011-06-06 00:07:55 +08:00
|
|
|
struct mxc_gpio_port *port;
|
2019-09-19 17:39:17 +08:00
|
|
|
int irq_count;
|
2012-06-13 09:04:03 +08:00
|
|
|
int irq_base;
|
2011-06-07 16:25:37 +08:00
|
|
|
int err;
|
2011-06-06 00:07:55 +08:00
|
|
|
|
2013-07-09 04:14:39 +08:00
|
|
|
port = devm_kzalloc(&pdev->dev, sizeof(*port), GFP_KERNEL);
|
2011-06-06 00:07:55 +08:00
|
|
|
if (!port)
|
|
|
|
return -ENOMEM;
|
2008-07-05 16:02:49 +08:00
|
|
|
|
2017-08-09 20:25:06 +08:00
|
|
|
port->dev = &pdev->dev;
|
|
|
|
|
2020-11-17 18:59:17 +08:00
|
|
|
port->hwdata = device_get_match_data(&pdev->dev);
|
|
|
|
|
2019-03-12 02:55:01 +08:00
|
|
|
port->base = devm_platform_ioremap_resource(pdev, 0);
|
2013-07-09 04:14:39 +08:00
|
|
|
if (IS_ERR(port->base))
|
|
|
|
return PTR_ERR(port->base);
|
2011-06-06 00:07:55 +08:00
|
|
|
|
2019-09-19 17:39:17 +08:00
|
|
|
irq_count = platform_irq_count(pdev);
|
|
|
|
if (irq_count < 0)
|
|
|
|
return irq_count;
|
|
|
|
|
|
|
|
if (irq_count > 1) {
|
|
|
|
port->irq_high = platform_get_irq(pdev, 1);
|
|
|
|
if (port->irq_high < 0)
|
|
|
|
port->irq_high = 0;
|
|
|
|
}
|
2017-07-12 16:36:39 +08:00
|
|
|
|
2011-06-06 00:07:55 +08:00
|
|
|
port->irq = platform_get_irq(pdev, 0);
|
2013-07-09 04:14:39 +08:00
|
|
|
if (port->irq < 0)
|
2013-12-21 15:35:57 +08:00
|
|
|
return port->irq;
|
2011-06-06 00:07:55 +08:00
|
|
|
|
2018-05-22 11:05:40 +08:00
|
|
|
/* the controller clock is optional */
|
2019-08-01 16:44:39 +08:00
|
|
|
port->clk = devm_clk_get_optional(&pdev->dev, NULL);
|
|
|
|
if (IS_ERR(port->clk))
|
|
|
|
return PTR_ERR(port->clk);
|
2018-05-22 11:05:40 +08:00
|
|
|
|
|
|
|
err = clk_prepare_enable(port->clk);
|
|
|
|
if (err) {
|
|
|
|
dev_err(&pdev->dev, "Unable to enable clock.\n");
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2018-07-18 09:25:32 +08:00
|
|
|
if (of_device_is_compatible(np, "fsl,imx7d-gpio"))
|
|
|
|
port->power_off = true;
|
|
|
|
|
2011-06-06 00:07:55 +08:00
|
|
|
/* disable the interrupt and clear the status */
|
|
|
|
writel(0, port->base + GPIO_IMR);
|
|
|
|
writel(~0, port->base + GPIO_ISR);
|
|
|
|
|
2020-11-17 18:59:17 +08:00
|
|
|
if (of_device_is_compatible(np, "fsl,imx21-gpio")) {
|
2012-06-06 17:49:23 +08:00
|
|
|
/*
|
|
|
|
* Setup one handler for all GPIO interrupts. Actually setting
|
|
|
|
* the handler is needed only once, but doing it for every port
|
|
|
|
* is more robust and easier.
|
|
|
|
*/
|
|
|
|
irq_set_chained_handler(port->irq, mx2_gpio_irq_handler);
|
2011-06-06 00:07:55 +08:00
|
|
|
} else {
|
|
|
|
/* setup one handler for each entry */
|
2015-06-17 06:06:40 +08:00
|
|
|
irq_set_chained_handler_and_data(port->irq,
|
|
|
|
mx3_gpio_irq_handler, port);
|
|
|
|
if (port->irq_high > 0)
|
2011-06-06 00:07:55 +08:00
|
|
|
/* setup handler for GPIO 16 to 31 */
|
2015-06-17 06:06:40 +08:00
|
|
|
irq_set_chained_handler_and_data(port->irq_high,
|
|
|
|
mx3_gpio_irq_handler,
|
|
|
|
port);
|
2008-07-05 16:02:49 +08:00
|
|
|
}
|
|
|
|
|
2015-12-04 21:02:58 +08:00
|
|
|
err = bgpio_init(&port->gc, &pdev->dev, 4,
|
2011-06-06 13:22:41 +08:00
|
|
|
port->base + GPIO_PSR,
|
|
|
|
port->base + GPIO_DR, NULL,
|
2015-04-29 23:35:01 +08:00
|
|
|
port->base + GPIO_GDIR, NULL,
|
|
|
|
BGPIOF_READ_OUTPUT_REG_SET);
|
2011-06-06 13:22:41 +08:00
|
|
|
if (err)
|
2013-07-09 04:14:39 +08:00
|
|
|
goto out_bgio;
|
2011-06-06 00:07:55 +08:00
|
|
|
|
2020-04-02 04:05:26 +08:00
|
|
|
port->gc.request = gpiochip_generic_request;
|
|
|
|
port->gc.free = gpiochip_generic_free;
|
2015-12-04 21:02:58 +08:00
|
|
|
port->gc.to_irq = mxc_gpio_to_irq;
|
|
|
|
port->gc.base = (pdev->id < 0) ? of_alias_get_id(np, "gpio") * 32 :
|
2012-08-05 14:01:26 +08:00
|
|
|
pdev->id * 32;
|
2011-06-06 00:07:55 +08:00
|
|
|
|
2016-02-22 20:13:28 +08:00
|
|
|
err = devm_gpiochip_add_data(&pdev->dev, &port->gc, port);
|
2011-06-06 00:07:55 +08:00
|
|
|
if (err)
|
2015-12-04 21:02:58 +08:00
|
|
|
goto out_bgio;
|
2011-06-06 00:07:55 +08:00
|
|
|
|
2017-03-05 00:23:38 +08:00
|
|
|
irq_base = devm_irq_alloc_descs(&pdev->dev, -1, 0, 32, numa_node_id());
|
2012-06-13 09:04:03 +08:00
|
|
|
if (irq_base < 0) {
|
|
|
|
err = irq_base;
|
2016-02-22 20:13:28 +08:00
|
|
|
goto out_bgio;
|
2012-06-13 09:04:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
port->domain = irq_domain_add_legacy(np, 32, irq_base, 0,
|
|
|
|
&irq_domain_simple_ops, NULL);
|
|
|
|
if (!port->domain) {
|
|
|
|
err = -ENODEV;
|
2017-03-05 00:23:38 +08:00
|
|
|
goto out_bgio;
|
2012-06-13 09:04:03 +08:00
|
|
|
}
|
2011-07-07 00:37:43 +08:00
|
|
|
|
|
|
|
/* gpio-mxc can be a generic irq chip */
|
2015-08-23 21:11:52 +08:00
|
|
|
err = mxc_gpio_init_gc(port, irq_base);
|
|
|
|
if (err < 0)
|
|
|
|
goto out_irqdomain_remove;
|
2011-07-07 00:37:43 +08:00
|
|
|
|
2011-06-06 00:07:55 +08:00
|
|
|
list_add_tail(&port->node, &mxc_gpio_ports);
|
|
|
|
|
2018-07-18 09:25:32 +08:00
|
|
|
platform_set_drvdata(pdev, port);
|
|
|
|
|
2008-07-05 16:02:49 +08:00
|
|
|
return 0;
|
2011-06-06 00:07:55 +08:00
|
|
|
|
2015-08-23 21:11:52 +08:00
|
|
|
out_irqdomain_remove:
|
|
|
|
irq_domain_remove(port->domain);
|
2013-07-09 04:14:39 +08:00
|
|
|
out_bgio:
|
2018-05-22 11:05:40 +08:00
|
|
|
clk_disable_unprepare(port->clk);
|
2011-06-06 00:07:55 +08:00
|
|
|
dev_info(&pdev->dev, "%s failed with errno %d\n", __func__, err);
|
|
|
|
return err;
|
2008-07-05 16:02:49 +08:00
|
|
|
}
|
2011-06-06 00:07:55 +08:00
|
|
|
|
2018-07-18 09:25:32 +08:00
|
|
|
static void mxc_gpio_save_regs(struct mxc_gpio_port *port)
|
|
|
|
{
|
|
|
|
if (!port->power_off)
|
|
|
|
return;
|
|
|
|
|
|
|
|
port->gpio_saved_reg.icr1 = readl(port->base + GPIO_ICR1);
|
|
|
|
port->gpio_saved_reg.icr2 = readl(port->base + GPIO_ICR2);
|
|
|
|
port->gpio_saved_reg.imr = readl(port->base + GPIO_IMR);
|
|
|
|
port->gpio_saved_reg.gdir = readl(port->base + GPIO_GDIR);
|
|
|
|
port->gpio_saved_reg.edge_sel = readl(port->base + GPIO_EDGE_SEL);
|
|
|
|
port->gpio_saved_reg.dr = readl(port->base + GPIO_DR);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mxc_gpio_restore_regs(struct mxc_gpio_port *port)
|
|
|
|
{
|
|
|
|
if (!port->power_off)
|
|
|
|
return;
|
|
|
|
|
|
|
|
writel(port->gpio_saved_reg.icr1, port->base + GPIO_ICR1);
|
|
|
|
writel(port->gpio_saved_reg.icr2, port->base + GPIO_ICR2);
|
|
|
|
writel(port->gpio_saved_reg.imr, port->base + GPIO_IMR);
|
|
|
|
writel(port->gpio_saved_reg.gdir, port->base + GPIO_GDIR);
|
|
|
|
writel(port->gpio_saved_reg.edge_sel, port->base + GPIO_EDGE_SEL);
|
|
|
|
writel(port->gpio_saved_reg.dr, port->base + GPIO_DR);
|
|
|
|
}
|
|
|
|
|
2018-11-09 12:56:56 +08:00
|
|
|
static int mxc_gpio_syscore_suspend(void)
|
2018-07-18 09:25:32 +08:00
|
|
|
{
|
2018-11-09 12:56:56 +08:00
|
|
|
struct mxc_gpio_port *port;
|
2018-07-18 09:25:32 +08:00
|
|
|
|
2018-11-09 12:56:56 +08:00
|
|
|
/* walk through all ports */
|
|
|
|
list_for_each_entry(port, &mxc_gpio_ports, node) {
|
|
|
|
mxc_gpio_save_regs(port);
|
|
|
|
clk_disable_unprepare(port->clk);
|
|
|
|
}
|
2018-07-18 09:25:32 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-09 12:56:56 +08:00
|
|
|
static void mxc_gpio_syscore_resume(void)
|
2018-07-18 09:25:32 +08:00
|
|
|
{
|
2018-11-09 12:56:56 +08:00
|
|
|
struct mxc_gpio_port *port;
|
2018-07-18 09:25:32 +08:00
|
|
|
int ret;
|
|
|
|
|
2018-11-09 12:56:56 +08:00
|
|
|
/* walk through all ports */
|
|
|
|
list_for_each_entry(port, &mxc_gpio_ports, node) {
|
|
|
|
ret = clk_prepare_enable(port->clk);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("mxc: failed to enable gpio clock %d\n", ret);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mxc_gpio_restore_regs(port);
|
|
|
|
}
|
2018-07-18 09:25:32 +08:00
|
|
|
}
|
|
|
|
|
2018-11-09 12:56:56 +08:00
|
|
|
static struct syscore_ops mxc_gpio_syscore_ops = {
|
|
|
|
.suspend = mxc_gpio_syscore_suspend,
|
|
|
|
.resume = mxc_gpio_syscore_resume,
|
2018-07-18 09:25:32 +08:00
|
|
|
};
|
|
|
|
|
2011-06-06 00:07:55 +08:00
|
|
|
static struct platform_driver mxc_gpio_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = "gpio-mxc",
|
2011-07-07 00:37:43 +08:00
|
|
|
.of_match_table = mxc_gpio_dt_ids,
|
2017-08-09 20:25:00 +08:00
|
|
|
.suppress_bind_attrs = true,
|
2011-06-06 00:07:55 +08:00
|
|
|
},
|
|
|
|
.probe = mxc_gpio_probe,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init gpio_mxc_init(void)
|
|
|
|
{
|
2018-11-09 12:56:56 +08:00
|
|
|
register_syscore_ops(&mxc_gpio_syscore_ops);
|
|
|
|
|
2011-06-06 00:07:55 +08:00
|
|
|
return platform_driver_register(&mxc_gpio_driver);
|
|
|
|
}
|
2016-09-08 09:48:15 +08:00
|
|
|
subsys_initcall(gpio_mxc_init);
|
gpio: mxc: Support module build
Change config to tristate, add module device table, module author,
description and license to support module build for i.MX GPIO driver.
As this is a SoC GPIO module, it provides common functions for most
of the peripheral devices, such as GPIO pins control, secondary
interrupt controller for GPIO pins IRQ etc., without GPIO driver, most
of the peripheral devices will NOT work properly, so GPIO module is
similar with clock, pinctrl driver that should be loaded ONCE and
never unloaded.
Since MXC GPIO driver needs to have init function to register syscore
ops once, here still use subsys_initcall(), NOT module_platform_driver().
Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
Link: https://lore.kernel.org/r/1600320829-1453-1-git-send-email-Anson.Huang@nxp.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
2020-09-17 13:33:46 +08:00
|
|
|
|
|
|
|
MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
|
|
|
|
MODULE_DESCRIPTION("i.MX GPIO Driver");
|
|
|
|
MODULE_LICENSE("GPL");
|