2008-02-05 14:28:26 +08:00
|
|
|
/*
|
2014-02-08 06:35:48 +08:00
|
|
|
* PCA953x 4/8/16/24/40 bit I/O ports
|
2008-02-05 14:28:26 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Ben Gardner <bgardner@wabtec.com>
|
|
|
|
* Copyright (C) 2007 Marvell International Ltd.
|
|
|
|
*
|
|
|
|
* Derived from drivers/i2c/chips/pca9539.c
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*/
|
|
|
|
|
2017-03-22 22:11:12 +08:00
|
|
|
#include <linux/acpi.h>
|
2018-05-24 20:26:20 +08:00
|
|
|
#include <linux/gpio/driver.h>
|
2017-01-11 03:29:51 +08:00
|
|
|
#include <linux/gpio/consumer.h>
|
2008-02-05 14:28:26 +08:00
|
|
|
#include <linux/i2c.h>
|
2017-03-22 22:11:12 +08:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/of_platform.h>
|
2013-08-30 03:24:14 +08:00
|
|
|
#include <linux/platform_data/pca953x.h>
|
2017-03-22 22:11:12 +08:00
|
|
|
#include <linux/regulator/consumer.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2017-03-22 22:11:12 +08:00
|
|
|
|
2016-03-30 14:49:14 +08:00
|
|
|
#include <asm/unaligned.h>
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2018-04-29 00:31:31 +08:00
|
|
|
#define PCA953X_INPUT 0x00
|
|
|
|
#define PCA953X_OUTPUT 0x01
|
|
|
|
#define PCA953X_INVERT 0x02
|
|
|
|
#define PCA953X_DIRECTION 0x03
|
2011-04-18 22:12:46 +08:00
|
|
|
|
2012-05-09 15:46:17 +08:00
|
|
|
#define REG_ADDR_AI 0x80
|
|
|
|
|
2018-04-29 00:31:31 +08:00
|
|
|
#define PCA957X_IN 0x00
|
|
|
|
#define PCA957X_INVRT 0x01
|
|
|
|
#define PCA957X_BKEN 0x02
|
|
|
|
#define PCA957X_PUPD 0x03
|
|
|
|
#define PCA957X_CFG 0x04
|
|
|
|
#define PCA957X_OUT 0x05
|
|
|
|
#define PCA957X_MSK 0x06
|
|
|
|
#define PCA957X_INTS 0x07
|
2011-04-18 22:12:46 +08:00
|
|
|
|
2018-04-29 00:31:32 +08:00
|
|
|
#define PCAL953X_OUT_STRENGTH 0x20
|
2018-04-29 00:31:31 +08:00
|
|
|
#define PCAL953X_IN_LATCH 0x22
|
2018-04-29 00:31:32 +08:00
|
|
|
#define PCAL953X_PULL_EN 0x23
|
|
|
|
#define PCAL953X_PULL_SEL 0x24
|
2018-04-29 00:31:31 +08:00
|
|
|
#define PCAL953X_INT_MASK 0x25
|
|
|
|
#define PCAL953X_INT_STAT 0x26
|
2018-04-29 00:31:32 +08:00
|
|
|
#define PCAL953X_OUT_CONF 0x27
|
2016-04-07 12:56:32 +08:00
|
|
|
|
2018-04-29 00:31:33 +08:00
|
|
|
#define PCAL6524_INT_EDGE 0x28
|
|
|
|
#define PCAL6524_INT_CLR 0x2a
|
|
|
|
#define PCAL6524_IN_STATUS 0x2b
|
|
|
|
#define PCAL6524_OUT_INDCONF 0x2c
|
|
|
|
#define PCAL6524_DEBOUNCE 0x2d
|
|
|
|
|
2011-04-18 22:12:46 +08:00
|
|
|
#define PCA_GPIO_MASK 0x00FF
|
2018-05-17 12:59:48 +08:00
|
|
|
|
|
|
|
#define PCAL_GPIO_MASK 0x1f
|
2018-12-12 09:39:50 +08:00
|
|
|
#define PCAL_PINCTRL_MASK 0x60
|
2018-05-17 12:59:48 +08:00
|
|
|
|
2011-04-18 22:12:46 +08:00
|
|
|
#define PCA_INT 0x0100
|
2016-05-31 22:05:57 +08:00
|
|
|
#define PCA_PCAL 0x0200
|
2018-05-17 12:59:47 +08:00
|
|
|
#define PCA_LATCH_INT (PCA_PCAL | PCA_INT)
|
2011-04-18 22:12:46 +08:00
|
|
|
#define PCA953X_TYPE 0x1000
|
|
|
|
#define PCA957X_TYPE 0x2000
|
2015-10-01 19:20:27 +08:00
|
|
|
#define PCA_TYPE_MASK 0xF000
|
|
|
|
|
|
|
|
#define PCA_CHIP_TYPE(x) ((x) & PCA_TYPE_MASK)
|
2010-03-06 05:44:36 +08:00
|
|
|
|
2008-04-30 05:11:40 +08:00
|
|
|
static const struct i2c_device_id pca953x_id[] = {
|
2013-01-23 05:10:24 +08:00
|
|
|
{ "pca9505", 40 | PCA953X_TYPE | PCA_INT, },
|
2011-04-18 22:12:46 +08:00
|
|
|
{ "pca9534", 8 | PCA953X_TYPE | PCA_INT, },
|
|
|
|
{ "pca9535", 16 | PCA953X_TYPE | PCA_INT, },
|
|
|
|
{ "pca9536", 4 | PCA953X_TYPE, },
|
|
|
|
{ "pca9537", 4 | PCA953X_TYPE | PCA_INT, },
|
|
|
|
{ "pca9538", 8 | PCA953X_TYPE | PCA_INT, },
|
|
|
|
{ "pca9539", 16 | PCA953X_TYPE | PCA_INT, },
|
|
|
|
{ "pca9554", 8 | PCA953X_TYPE | PCA_INT, },
|
|
|
|
{ "pca9555", 16 | PCA953X_TYPE | PCA_INT, },
|
|
|
|
{ "pca9556", 8 | PCA953X_TYPE, },
|
|
|
|
{ "pca9557", 8 | PCA953X_TYPE, },
|
|
|
|
{ "pca9574", 8 | PCA957X_TYPE | PCA_INT, },
|
|
|
|
{ "pca9575", 16 | PCA957X_TYPE | PCA_INT, },
|
2014-02-13 20:59:23 +08:00
|
|
|
{ "pca9698", 40 | PCA953X_TYPE, },
|
2011-04-18 22:12:46 +08:00
|
|
|
|
2018-03-10 19:00:01 +08:00
|
|
|
{ "pcal6524", 24 | PCA953X_TYPE | PCA_INT | PCA_PCAL, },
|
2016-06-15 06:57:56 +08:00
|
|
|
{ "pcal9555a", 16 | PCA953X_TYPE | PCA_INT | PCA_PCAL, },
|
|
|
|
|
2011-04-18 22:12:46 +08:00
|
|
|
{ "max7310", 8 | PCA953X_TYPE, },
|
|
|
|
{ "max7312", 16 | PCA953X_TYPE | PCA_INT, },
|
|
|
|
{ "max7313", 16 | PCA953X_TYPE | PCA_INT, },
|
|
|
|
{ "max7315", 8 | PCA953X_TYPE | PCA_INT, },
|
2016-10-18 00:36:49 +08:00
|
|
|
{ "max7318", 16 | PCA953X_TYPE | PCA_INT, },
|
2011-04-18 22:12:46 +08:00
|
|
|
{ "pca6107", 8 | PCA953X_TYPE | PCA_INT, },
|
|
|
|
{ "tca6408", 8 | PCA953X_TYPE | PCA_INT, },
|
|
|
|
{ "tca6416", 16 | PCA953X_TYPE | PCA_INT, },
|
2012-05-09 15:46:17 +08:00
|
|
|
{ "tca6424", 24 | PCA953X_TYPE | PCA_INT, },
|
2015-09-29 18:55:44 +08:00
|
|
|
{ "tca9539", 16 | PCA953X_TYPE | PCA_INT, },
|
2017-04-21 20:46:30 +08:00
|
|
|
{ "tca9554", 8 | PCA953X_TYPE | PCA_INT, },
|
2014-02-08 06:36:21 +08:00
|
|
|
{ "xra1202", 8 | PCA953X_TYPE },
|
2008-04-30 05:11:40 +08:00
|
|
|
{ }
|
2008-02-06 17:39:04 +08:00
|
|
|
};
|
2008-04-30 05:11:40 +08:00
|
|
|
MODULE_DEVICE_TABLE(i2c, pca953x_id);
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2015-10-01 19:20:28 +08:00
|
|
|
static const struct acpi_device_id pca953x_acpi_ids[] = {
|
2016-04-07 12:56:32 +08:00
|
|
|
{ "INT3491", 16 | PCA953X_TYPE | PCA_INT | PCA_PCAL, },
|
2015-10-01 19:20:28 +08:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(acpi, pca953x_acpi_ids);
|
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
#define MAX_BANK 5
|
|
|
|
#define BANK_SZ 8
|
|
|
|
|
2016-06-09 13:32:04 +08:00
|
|
|
#define NBANK(chip) DIV_ROUND_UP(chip->gpio_chip.ngpio, BANK_SZ)
|
2013-01-23 05:10:23 +08:00
|
|
|
|
2016-09-09 17:17:34 +08:00
|
|
|
struct pca953x_reg_config {
|
|
|
|
int direction;
|
|
|
|
int output;
|
|
|
|
int input;
|
2018-12-12 09:39:55 +08:00
|
|
|
int invert;
|
2016-09-09 17:17:34 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct pca953x_reg_config pca953x_regs = {
|
|
|
|
.direction = PCA953X_DIRECTION,
|
|
|
|
.output = PCA953X_OUTPUT,
|
|
|
|
.input = PCA953X_INPUT,
|
2018-12-12 09:39:55 +08:00
|
|
|
.invert = PCA953X_INVERT,
|
2016-09-09 17:17:34 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct pca953x_reg_config pca957x_regs = {
|
|
|
|
.direction = PCA957X_CFG,
|
|
|
|
.output = PCA957X_OUT,
|
|
|
|
.input = PCA957X_IN,
|
2018-12-12 09:39:55 +08:00
|
|
|
.invert = PCA957X_INVRT,
|
2016-09-09 17:17:34 +08:00
|
|
|
};
|
|
|
|
|
2008-02-06 17:39:03 +08:00
|
|
|
struct pca953x_chip {
|
2008-02-05 14:28:26 +08:00
|
|
|
unsigned gpio_start;
|
2013-01-23 05:10:23 +08:00
|
|
|
u8 reg_output[MAX_BANK];
|
|
|
|
u8 reg_direction[MAX_BANK];
|
2011-02-11 07:01:23 +08:00
|
|
|
struct mutex i2c_lock;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2010-03-06 05:44:36 +08:00
|
|
|
#ifdef CONFIG_GPIO_PCA953X_IRQ
|
|
|
|
struct mutex irq_lock;
|
2013-01-23 05:10:23 +08:00
|
|
|
u8 irq_mask[MAX_BANK];
|
|
|
|
u8 irq_stat[MAX_BANK];
|
|
|
|
u8 irq_trig_raise[MAX_BANK];
|
|
|
|
u8 irq_trig_fall[MAX_BANK];
|
2010-03-06 05:44:36 +08:00
|
|
|
#endif
|
|
|
|
|
2008-02-05 14:28:26 +08:00
|
|
|
struct i2c_client *client;
|
|
|
|
struct gpio_chip gpio_chip;
|
2010-05-27 05:42:17 +08:00
|
|
|
const char *const *names;
|
2015-10-01 19:20:27 +08:00
|
|
|
unsigned long driver_data;
|
2016-07-29 11:39:55 +08:00
|
|
|
struct regulator *regulator;
|
2016-09-09 17:17:34 +08:00
|
|
|
|
|
|
|
const struct pca953x_reg_config *regs;
|
2008-02-05 14:28:26 +08:00
|
|
|
};
|
|
|
|
|
2018-12-12 09:39:49 +08:00
|
|
|
static int pca953x_bank_shift(struct pca953x_chip *chip)
|
|
|
|
{
|
|
|
|
return fls((chip->gpio_chip.ngpio - 1) / BANK_SZ);
|
|
|
|
}
|
|
|
|
|
2018-12-12 09:39:57 +08:00
|
|
|
static u8 pca953x_recalc_addr(struct pca953x_chip *chip, int reg, int off,
|
|
|
|
bool write, bool addrinc)
|
|
|
|
{
|
|
|
|
int bank_shift = pca953x_bank_shift(chip);
|
|
|
|
int addr = (reg & PCAL_GPIO_MASK) << bank_shift;
|
|
|
|
int pinctrl = (reg & PCAL_PINCTRL_MASK) << 1;
|
|
|
|
u8 regaddr = pinctrl | addr | (off / BANK_SZ);
|
|
|
|
|
|
|
|
/* Single byte read doesn't need AI bit set. */
|
|
|
|
if (!addrinc)
|
|
|
|
return regaddr;
|
|
|
|
|
|
|
|
/* Chips with 24 and more GPIOs always support Auto Increment */
|
|
|
|
if (write && NBANK(chip) > 2)
|
|
|
|
regaddr |= REG_ADDR_AI;
|
|
|
|
|
|
|
|
/* PCA9575 needs address-increment on multi-byte writes */
|
|
|
|
if (PCA_CHIP_TYPE(chip->driver_data) == PCA957X_TYPE)
|
|
|
|
regaddr |= REG_ADDR_AI;
|
|
|
|
|
|
|
|
return regaddr;
|
|
|
|
}
|
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
static int pca953x_read_single(struct pca953x_chip *chip, int reg, u32 *val,
|
|
|
|
int off)
|
|
|
|
{
|
2018-12-12 09:39:57 +08:00
|
|
|
u8 regaddr = pca953x_recalc_addr(chip, reg, off, false, false);
|
2013-01-23 05:10:23 +08:00
|
|
|
int ret;
|
|
|
|
|
2018-12-12 09:39:57 +08:00
|
|
|
ret = i2c_smbus_read_byte_data(chip->client, regaddr);
|
2013-01-23 05:10:23 +08:00
|
|
|
*val = ret;
|
|
|
|
if (ret < 0) {
|
|
|
|
dev_err(&chip->client->dev, "failed reading register\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pca953x_write_single(struct pca953x_chip *chip, int reg, u32 val,
|
|
|
|
int off)
|
|
|
|
{
|
2018-12-12 09:39:57 +08:00
|
|
|
u8 regaddr = pca953x_recalc_addr(chip, reg, off, true, false);
|
2016-05-31 22:05:57 +08:00
|
|
|
int ret;
|
2013-01-23 05:10:23 +08:00
|
|
|
|
2018-12-12 09:39:57 +08:00
|
|
|
ret = i2c_smbus_write_byte_data(chip->client, regaddr, val);
|
2013-01-23 05:10:23 +08:00
|
|
|
if (ret < 0) {
|
|
|
|
dev_err(&chip->client->dev, "failed writing register\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-12 09:39:54 +08:00
|
|
|
static int pca953x_write_regs(struct pca953x_chip *chip, int reg, u8 *val)
|
2016-09-09 17:17:35 +08:00
|
|
|
{
|
2018-12-12 09:39:57 +08:00
|
|
|
u8 regaddr = pca953x_recalc_addr(chip, reg, 0, true, true);
|
2018-12-12 09:39:54 +08:00
|
|
|
int ret;
|
2018-12-12 09:39:53 +08:00
|
|
|
|
2018-12-12 09:39:54 +08:00
|
|
|
ret = i2c_smbus_write_i2c_block_data(chip->client, regaddr,
|
|
|
|
NBANK(chip), val);
|
2008-02-06 17:39:04 +08:00
|
|
|
if (ret < 0) {
|
|
|
|
dev_err(&chip->client->dev, "failed writing register\n");
|
2009-01-07 06:42:27 +08:00
|
|
|
return ret;
|
2008-02-06 17:39:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2008-02-05 14:28:26 +08:00
|
|
|
}
|
|
|
|
|
2018-12-12 09:39:54 +08:00
|
|
|
static int pca953x_read_regs(struct pca953x_chip *chip, int reg, u8 *val)
|
2016-09-09 17:17:36 +08:00
|
|
|
{
|
2018-12-12 09:39:57 +08:00
|
|
|
u8 regaddr = pca953x_recalc_addr(chip, reg, 0, false, true);
|
2018-12-12 09:39:54 +08:00
|
|
|
int ret;
|
2018-12-12 09:39:53 +08:00
|
|
|
|
2018-12-12 09:39:54 +08:00
|
|
|
ret = i2c_smbus_read_i2c_block_data(chip->client, regaddr,
|
|
|
|
NBANK(chip), val);
|
2008-02-05 14:28:26 +08:00
|
|
|
if (ret < 0) {
|
|
|
|
dev_err(&chip->client->dev, "failed reading register\n");
|
2009-01-07 06:42:27 +08:00
|
|
|
return ret;
|
2008-02-05 14:28:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-02-06 17:39:03 +08:00
|
|
|
static int pca953x_gpio_direction_input(struct gpio_chip *gc, unsigned off)
|
2008-02-05 14:28:26 +08:00
|
|
|
{
|
2015-12-07 18:20:54 +08:00
|
|
|
struct pca953x_chip *chip = gpiochip_get_data(gc);
|
2013-01-23 05:10:23 +08:00
|
|
|
u8 reg_val;
|
2016-09-09 17:17:34 +08:00
|
|
|
int ret;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2011-02-11 07:01:23 +08:00
|
|
|
mutex_lock(&chip->i2c_lock);
|
2013-01-23 05:10:23 +08:00
|
|
|
reg_val = chip->reg_direction[off / BANK_SZ] | (1u << (off % BANK_SZ));
|
2011-04-18 22:12:46 +08:00
|
|
|
|
2016-09-09 17:17:34 +08:00
|
|
|
ret = pca953x_write_single(chip, chip->regs->direction, reg_val, off);
|
2008-02-05 14:28:26 +08:00
|
|
|
if (ret)
|
2011-02-11 07:01:23 +08:00
|
|
|
goto exit;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
chip->reg_direction[off / BANK_SZ] = reg_val;
|
2011-02-11 07:01:23 +08:00
|
|
|
exit:
|
|
|
|
mutex_unlock(&chip->i2c_lock);
|
|
|
|
return ret;
|
2008-02-05 14:28:26 +08:00
|
|
|
}
|
|
|
|
|
2008-02-06 17:39:03 +08:00
|
|
|
static int pca953x_gpio_direction_output(struct gpio_chip *gc,
|
2008-02-05 14:28:26 +08:00
|
|
|
unsigned off, int val)
|
|
|
|
{
|
2015-12-07 18:20:54 +08:00
|
|
|
struct pca953x_chip *chip = gpiochip_get_data(gc);
|
2013-01-23 05:10:23 +08:00
|
|
|
u8 reg_val;
|
2016-09-09 17:17:34 +08:00
|
|
|
int ret;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2011-02-11 07:01:23 +08:00
|
|
|
mutex_lock(&chip->i2c_lock);
|
2008-02-05 14:28:26 +08:00
|
|
|
/* set output level */
|
|
|
|
if (val)
|
2013-01-23 05:10:23 +08:00
|
|
|
reg_val = chip->reg_output[off / BANK_SZ]
|
|
|
|
| (1u << (off % BANK_SZ));
|
2008-02-05 14:28:26 +08:00
|
|
|
else
|
2013-01-23 05:10:23 +08:00
|
|
|
reg_val = chip->reg_output[off / BANK_SZ]
|
|
|
|
& ~(1u << (off % BANK_SZ));
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2016-09-09 17:17:34 +08:00
|
|
|
ret = pca953x_write_single(chip, chip->regs->output, reg_val, off);
|
2008-02-05 14:28:26 +08:00
|
|
|
if (ret)
|
2011-02-11 07:01:23 +08:00
|
|
|
goto exit;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
chip->reg_output[off / BANK_SZ] = reg_val;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
|
|
|
/* then direction */
|
2013-01-23 05:10:23 +08:00
|
|
|
reg_val = chip->reg_direction[off / BANK_SZ] & ~(1u << (off % BANK_SZ));
|
2016-09-09 17:17:34 +08:00
|
|
|
ret = pca953x_write_single(chip, chip->regs->direction, reg_val, off);
|
2008-02-05 14:28:26 +08:00
|
|
|
if (ret)
|
2011-02-11 07:01:23 +08:00
|
|
|
goto exit;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
chip->reg_direction[off / BANK_SZ] = reg_val;
|
2011-02-11 07:01:23 +08:00
|
|
|
exit:
|
|
|
|
mutex_unlock(&chip->i2c_lock);
|
|
|
|
return ret;
|
2008-02-05 14:28:26 +08:00
|
|
|
}
|
|
|
|
|
2008-02-06 17:39:03 +08:00
|
|
|
static int pca953x_gpio_get_value(struct gpio_chip *gc, unsigned off)
|
2008-02-05 14:28:26 +08:00
|
|
|
{
|
2015-12-07 18:20:54 +08:00
|
|
|
struct pca953x_chip *chip = gpiochip_get_data(gc);
|
2012-05-09 15:46:17 +08:00
|
|
|
u32 reg_val;
|
2016-09-09 17:17:34 +08:00
|
|
|
int ret;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2011-02-11 07:01:23 +08:00
|
|
|
mutex_lock(&chip->i2c_lock);
|
2016-09-09 17:17:34 +08:00
|
|
|
ret = pca953x_read_single(chip, chip->regs->input, ®_val, off);
|
2011-02-11 07:01:23 +08:00
|
|
|
mutex_unlock(&chip->i2c_lock);
|
2008-02-05 14:28:26 +08:00
|
|
|
if (ret < 0) {
|
|
|
|
/* NOTE: diagnostic already emitted; that's all we should
|
|
|
|
* do unless gpio_*_value_cansleep() calls become different
|
|
|
|
* from their nonsleeping siblings (and report faults).
|
|
|
|
*/
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-08 05:52:40 +08:00
|
|
|
return (reg_val & (1u << (off % BANK_SZ))) ? 1 : 0;
|
2008-02-05 14:28:26 +08:00
|
|
|
}
|
|
|
|
|
2008-02-06 17:39:03 +08:00
|
|
|
static void pca953x_gpio_set_value(struct gpio_chip *gc, unsigned off, int val)
|
2008-02-05 14:28:26 +08:00
|
|
|
{
|
2015-12-07 18:20:54 +08:00
|
|
|
struct pca953x_chip *chip = gpiochip_get_data(gc);
|
2013-01-23 05:10:23 +08:00
|
|
|
u8 reg_val;
|
2016-09-09 17:17:34 +08:00
|
|
|
int ret;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2011-02-11 07:01:23 +08:00
|
|
|
mutex_lock(&chip->i2c_lock);
|
2008-02-05 14:28:26 +08:00
|
|
|
if (val)
|
2013-01-23 05:10:23 +08:00
|
|
|
reg_val = chip->reg_output[off / BANK_SZ]
|
|
|
|
| (1u << (off % BANK_SZ));
|
2008-02-05 14:28:26 +08:00
|
|
|
else
|
2013-01-23 05:10:23 +08:00
|
|
|
reg_val = chip->reg_output[off / BANK_SZ]
|
|
|
|
& ~(1u << (off % BANK_SZ));
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2016-09-09 17:17:34 +08:00
|
|
|
ret = pca953x_write_single(chip, chip->regs->output, reg_val, off);
|
2008-02-05 14:28:26 +08:00
|
|
|
if (ret)
|
2011-02-11 07:01:23 +08:00
|
|
|
goto exit;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
chip->reg_output[off / BANK_SZ] = reg_val;
|
2011-02-11 07:01:23 +08:00
|
|
|
exit:
|
|
|
|
mutex_unlock(&chip->i2c_lock);
|
2008-02-05 14:28:26 +08:00
|
|
|
}
|
|
|
|
|
2017-03-22 22:11:11 +08:00
|
|
|
static int pca953x_gpio_get_direction(struct gpio_chip *gc, unsigned off)
|
|
|
|
{
|
|
|
|
struct pca953x_chip *chip = gpiochip_get_data(gc);
|
|
|
|
u32 reg_val;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
mutex_lock(&chip->i2c_lock);
|
|
|
|
ret = pca953x_read_single(chip, chip->regs->direction, ®_val, off);
|
|
|
|
mutex_unlock(&chip->i2c_lock);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return !!(reg_val & (1u << (off % BANK_SZ)));
|
|
|
|
}
|
|
|
|
|
2015-12-04 15:52:30 +08:00
|
|
|
static void pca953x_gpio_set_multiple(struct gpio_chip *gc,
|
2016-09-09 17:17:38 +08:00
|
|
|
unsigned long *mask, unsigned long *bits)
|
2015-12-04 15:52:30 +08:00
|
|
|
{
|
2015-12-07 18:20:54 +08:00
|
|
|
struct pca953x_chip *chip = gpiochip_get_data(gc);
|
2016-09-09 17:17:38 +08:00
|
|
|
unsigned int bank_mask, bank_val;
|
2018-12-12 09:39:49 +08:00
|
|
|
int bank;
|
2015-12-04 15:52:30 +08:00
|
|
|
u8 reg_val[MAX_BANK];
|
2016-09-09 17:17:34 +08:00
|
|
|
int ret;
|
2016-09-09 17:17:38 +08:00
|
|
|
|
2015-12-04 15:52:30 +08:00
|
|
|
mutex_lock(&chip->i2c_lock);
|
2016-11-08 13:18:11 +08:00
|
|
|
memcpy(reg_val, chip->reg_output, NBANK(chip));
|
2016-09-09 17:17:38 +08:00
|
|
|
for (bank = 0; bank < NBANK(chip); bank++) {
|
|
|
|
bank_mask = mask[bank / sizeof(*mask)] >>
|
|
|
|
((bank % sizeof(*mask)) * 8);
|
|
|
|
if (bank_mask) {
|
|
|
|
bank_val = bits[bank / sizeof(*bits)] >>
|
|
|
|
((bank % sizeof(*bits)) * 8);
|
2016-11-08 14:00:45 +08:00
|
|
|
bank_val &= bank_mask;
|
2016-09-09 17:17:38 +08:00
|
|
|
reg_val[bank] = (reg_val[bank] & ~bank_mask) | bank_val;
|
2015-12-04 15:52:30 +08:00
|
|
|
}
|
|
|
|
}
|
2016-09-09 17:17:38 +08:00
|
|
|
|
2018-12-12 09:39:56 +08:00
|
|
|
ret = pca953x_write_regs(chip, chip->regs->output, reg_val);
|
2015-12-04 15:52:30 +08:00
|
|
|
if (ret)
|
|
|
|
goto exit;
|
|
|
|
|
|
|
|
memcpy(chip->reg_output, reg_val, NBANK(chip));
|
|
|
|
exit:
|
|
|
|
mutex_unlock(&chip->i2c_lock);
|
|
|
|
}
|
|
|
|
|
2008-02-06 17:39:04 +08:00
|
|
|
static void pca953x_setup_gpio(struct pca953x_chip *chip, int gpios)
|
2008-02-05 14:28:26 +08:00
|
|
|
{
|
|
|
|
struct gpio_chip *gc;
|
|
|
|
|
|
|
|
gc = &chip->gpio_chip;
|
|
|
|
|
2008-02-06 17:39:03 +08:00
|
|
|
gc->direction_input = pca953x_gpio_direction_input;
|
|
|
|
gc->direction_output = pca953x_gpio_direction_output;
|
|
|
|
gc->get = pca953x_gpio_get_value;
|
|
|
|
gc->set = pca953x_gpio_set_value;
|
2017-03-22 22:11:11 +08:00
|
|
|
gc->get_direction = pca953x_gpio_get_direction;
|
2015-12-04 15:52:30 +08:00
|
|
|
gc->set_multiple = pca953x_gpio_set_multiple;
|
2013-12-04 21:42:46 +08:00
|
|
|
gc->can_sleep = true;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
|
|
|
gc->base = chip->gpio_start;
|
2008-02-06 17:39:04 +08:00
|
|
|
gc->ngpio = gpios;
|
|
|
|
gc->label = chip->client->name;
|
2015-11-04 16:56:26 +08:00
|
|
|
gc->parent = &chip->client->dev;
|
2008-04-28 17:14:45 +08:00
|
|
|
gc->owner = THIS_MODULE;
|
2009-06-18 07:26:15 +08:00
|
|
|
gc->names = chip->names;
|
2008-02-05 14:28:26 +08:00
|
|
|
}
|
|
|
|
|
2010-03-06 05:44:36 +08:00
|
|
|
#ifdef CONFIG_GPIO_PCA953X_IRQ
|
2011-01-13 09:00:15 +08:00
|
|
|
static void pca953x_irq_mask(struct irq_data *d)
|
2010-03-06 05:44:36 +08:00
|
|
|
{
|
2014-05-09 19:27:57 +08:00
|
|
|
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
2015-12-07 18:20:54 +08:00
|
|
|
struct pca953x_chip *chip = gpiochip_get_data(gc);
|
2010-03-06 05:44:36 +08:00
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
chip->irq_mask[d->hwirq / BANK_SZ] &= ~(1 << (d->hwirq % BANK_SZ));
|
2010-03-06 05:44:36 +08:00
|
|
|
}
|
|
|
|
|
2011-01-13 09:00:15 +08:00
|
|
|
static void pca953x_irq_unmask(struct irq_data *d)
|
2010-03-06 05:44:36 +08:00
|
|
|
{
|
2014-05-09 19:27:57 +08:00
|
|
|
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
2015-12-07 18:20:54 +08:00
|
|
|
struct pca953x_chip *chip = gpiochip_get_data(gc);
|
2010-03-06 05:44:36 +08:00
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
chip->irq_mask[d->hwirq / BANK_SZ] |= 1 << (d->hwirq % BANK_SZ);
|
2010-03-06 05:44:36 +08:00
|
|
|
}
|
|
|
|
|
2011-01-13 09:00:15 +08:00
|
|
|
static void pca953x_irq_bus_lock(struct irq_data *d)
|
2010-03-06 05:44:36 +08:00
|
|
|
{
|
2014-05-09 19:27:57 +08:00
|
|
|
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
2015-12-07 18:20:54 +08:00
|
|
|
struct pca953x_chip *chip = gpiochip_get_data(gc);
|
2010-03-06 05:44:36 +08:00
|
|
|
|
|
|
|
mutex_lock(&chip->irq_lock);
|
|
|
|
}
|
|
|
|
|
2011-01-13 09:00:15 +08:00
|
|
|
static void pca953x_irq_bus_sync_unlock(struct irq_data *d)
|
2010-03-06 05:44:36 +08:00
|
|
|
{
|
2014-05-09 19:27:57 +08:00
|
|
|
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
2015-12-07 18:20:54 +08:00
|
|
|
struct pca953x_chip *chip = gpiochip_get_data(gc);
|
2013-01-23 05:10:23 +08:00
|
|
|
u8 new_irqs;
|
|
|
|
int level, i;
|
2016-04-07 12:56:32 +08:00
|
|
|
u8 invert_irq_mask[MAX_BANK];
|
|
|
|
|
|
|
|
if (chip->driver_data & PCA_PCAL) {
|
|
|
|
/* Enable latch on interrupt-enabled inputs */
|
|
|
|
pca953x_write_regs(chip, PCAL953X_IN_LATCH, chip->irq_mask);
|
|
|
|
|
|
|
|
for (i = 0; i < NBANK(chip); i++)
|
|
|
|
invert_irq_mask[i] = ~chip->irq_mask[i];
|
|
|
|
|
|
|
|
/* Unmask enabled interrupts */
|
|
|
|
pca953x_write_regs(chip, PCAL953X_INT_MASK, invert_irq_mask);
|
|
|
|
}
|
2010-04-28 04:13:07 +08:00
|
|
|
|
|
|
|
/* Look for any newly setup interrupt */
|
2013-01-23 05:10:23 +08:00
|
|
|
for (i = 0; i < NBANK(chip); i++) {
|
|
|
|
new_irqs = chip->irq_trig_fall[i] | chip->irq_trig_raise[i];
|
|
|
|
new_irqs &= ~chip->reg_direction[i];
|
|
|
|
|
|
|
|
while (new_irqs) {
|
|
|
|
level = __ffs(new_irqs);
|
|
|
|
pca953x_gpio_direction_input(&chip->gpio_chip,
|
|
|
|
level + (BANK_SZ * i));
|
|
|
|
new_irqs &= ~(1 << level);
|
|
|
|
}
|
2010-04-28 04:13:07 +08:00
|
|
|
}
|
2010-03-06 05:44:36 +08:00
|
|
|
|
|
|
|
mutex_unlock(&chip->irq_lock);
|
|
|
|
}
|
|
|
|
|
2011-01-13 09:00:15 +08:00
|
|
|
static int pca953x_irq_set_type(struct irq_data *d, unsigned int type)
|
2010-03-06 05:44:36 +08:00
|
|
|
{
|
2014-05-09 19:27:57 +08:00
|
|
|
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
2015-12-07 18:20:54 +08:00
|
|
|
struct pca953x_chip *chip = gpiochip_get_data(gc);
|
2013-01-23 05:10:23 +08:00
|
|
|
int bank_nb = d->hwirq / BANK_SZ;
|
|
|
|
u8 mask = 1 << (d->hwirq % BANK_SZ);
|
2010-03-06 05:44:36 +08:00
|
|
|
|
|
|
|
if (!(type & IRQ_TYPE_EDGE_BOTH)) {
|
|
|
|
dev_err(&chip->client->dev, "irq %d: unsupported type %d\n",
|
2011-01-13 09:00:15 +08:00
|
|
|
d->irq, type);
|
2010-03-06 05:44:36 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type & IRQ_TYPE_EDGE_FALLING)
|
2013-01-23 05:10:23 +08:00
|
|
|
chip->irq_trig_fall[bank_nb] |= mask;
|
2010-03-06 05:44:36 +08:00
|
|
|
else
|
2013-01-23 05:10:23 +08:00
|
|
|
chip->irq_trig_fall[bank_nb] &= ~mask;
|
2010-03-06 05:44:36 +08:00
|
|
|
|
|
|
|
if (type & IRQ_TYPE_EDGE_RISING)
|
2013-01-23 05:10:23 +08:00
|
|
|
chip->irq_trig_raise[bank_nb] |= mask;
|
2010-03-06 05:44:36 +08:00
|
|
|
else
|
2013-01-23 05:10:23 +08:00
|
|
|
chip->irq_trig_raise[bank_nb] &= ~mask;
|
2010-03-06 05:44:36 +08:00
|
|
|
|
2010-04-28 04:13:07 +08:00
|
|
|
return 0;
|
2010-03-06 05:44:36 +08:00
|
|
|
}
|
|
|
|
|
2018-05-05 00:53:18 +08:00
|
|
|
static void pca953x_irq_shutdown(struct irq_data *d)
|
|
|
|
{
|
|
|
|
struct pca953x_chip *chip = irq_data_get_irq_chip_data(d);
|
|
|
|
u8 mask = 1 << (d->hwirq % BANK_SZ);
|
|
|
|
|
|
|
|
chip->irq_trig_raise[d->hwirq / BANK_SZ] &= ~mask;
|
|
|
|
chip->irq_trig_fall[d->hwirq / BANK_SZ] &= ~mask;
|
|
|
|
}
|
|
|
|
|
2010-03-06 05:44:36 +08:00
|
|
|
static struct irq_chip pca953x_irq_chip = {
|
|
|
|
.name = "pca953x",
|
2011-01-13 09:00:15 +08:00
|
|
|
.irq_mask = pca953x_irq_mask,
|
|
|
|
.irq_unmask = pca953x_irq_unmask,
|
|
|
|
.irq_bus_lock = pca953x_irq_bus_lock,
|
|
|
|
.irq_bus_sync_unlock = pca953x_irq_bus_sync_unlock,
|
|
|
|
.irq_set_type = pca953x_irq_set_type,
|
2018-05-05 00:53:18 +08:00
|
|
|
.irq_shutdown = pca953x_irq_shutdown,
|
2010-03-06 05:44:36 +08:00
|
|
|
};
|
|
|
|
|
2015-05-22 08:35:12 +08:00
|
|
|
static bool pca953x_irq_pending(struct pca953x_chip *chip, u8 *pending)
|
2010-03-06 05:44:36 +08:00
|
|
|
{
|
2013-01-23 05:10:23 +08:00
|
|
|
u8 cur_stat[MAX_BANK];
|
|
|
|
u8 old_stat[MAX_BANK];
|
2015-05-22 08:35:12 +08:00
|
|
|
bool pending_seen = false;
|
|
|
|
bool trigger_seen = false;
|
|
|
|
u8 trigger[MAX_BANK];
|
2016-09-09 17:17:34 +08:00
|
|
|
int ret, i;
|
2011-04-18 22:12:46 +08:00
|
|
|
|
2016-04-07 12:56:32 +08:00
|
|
|
if (chip->driver_data & PCA_PCAL) {
|
|
|
|
/* Read the current interrupt status from the device */
|
|
|
|
ret = pca953x_read_regs(chip, PCAL953X_INT_STAT, trigger);
|
|
|
|
if (ret)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Check latched inputs and clear interrupt status */
|
|
|
|
ret = pca953x_read_regs(chip, PCA953X_INPUT, cur_stat);
|
|
|
|
if (ret)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (i = 0; i < NBANK(chip); i++) {
|
|
|
|
/* Apply filter for rising/falling edge selection */
|
|
|
|
pending[i] = (~cur_stat[i] & chip->irq_trig_fall[i]) |
|
|
|
|
(cur_stat[i] & chip->irq_trig_raise[i]);
|
|
|
|
pending[i] &= trigger[i];
|
|
|
|
if (pending[i])
|
|
|
|
pending_seen = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return pending_seen;
|
|
|
|
}
|
|
|
|
|
2016-09-09 17:17:34 +08:00
|
|
|
ret = pca953x_read_regs(chip, chip->regs->input, cur_stat);
|
2010-03-06 05:44:36 +08:00
|
|
|
if (ret)
|
2015-05-22 08:35:12 +08:00
|
|
|
return false;
|
2010-03-06 05:44:36 +08:00
|
|
|
|
|
|
|
/* Remove output pins from the equation */
|
2013-01-23 05:10:23 +08:00
|
|
|
for (i = 0; i < NBANK(chip); i++)
|
|
|
|
cur_stat[i] &= chip->reg_direction[i];
|
2010-03-06 05:44:36 +08:00
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
memcpy(old_stat, chip->irq_stat, NBANK(chip));
|
2010-03-06 05:44:36 +08:00
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
for (i = 0; i < NBANK(chip); i++) {
|
|
|
|
trigger[i] = (cur_stat[i] ^ old_stat[i]) & chip->irq_mask[i];
|
2015-05-22 08:35:12 +08:00
|
|
|
if (trigger[i])
|
|
|
|
trigger_seen = true;
|
2013-01-23 05:10:23 +08:00
|
|
|
}
|
|
|
|
|
2015-05-22 08:35:12 +08:00
|
|
|
if (!trigger_seen)
|
|
|
|
return false;
|
2010-03-06 05:44:36 +08:00
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
memcpy(chip->irq_stat, cur_stat, NBANK(chip));
|
2010-03-06 05:44:36 +08:00
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
for (i = 0; i < NBANK(chip); i++) {
|
|
|
|
pending[i] = (old_stat[i] & chip->irq_trig_fall[i]) |
|
|
|
|
(cur_stat[i] & chip->irq_trig_raise[i]);
|
|
|
|
pending[i] &= trigger[i];
|
2015-05-22 08:35:12 +08:00
|
|
|
if (pending[i])
|
|
|
|
pending_seen = true;
|
2013-01-23 05:10:23 +08:00
|
|
|
}
|
2010-03-06 05:44:36 +08:00
|
|
|
|
2015-05-22 08:35:12 +08:00
|
|
|
return pending_seen;
|
2010-03-06 05:44:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static irqreturn_t pca953x_irq_handler(int irq, void *devid)
|
|
|
|
{
|
|
|
|
struct pca953x_chip *chip = devid;
|
2013-01-23 05:10:23 +08:00
|
|
|
u8 pending[MAX_BANK];
|
|
|
|
u8 level;
|
2014-04-30 16:01:40 +08:00
|
|
|
unsigned nhandled = 0;
|
2013-01-23 05:10:23 +08:00
|
|
|
int i;
|
2010-03-06 05:44:36 +08:00
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
if (!pca953x_irq_pending(chip, pending))
|
2014-04-30 16:01:40 +08:00
|
|
|
return IRQ_NONE;
|
2010-03-06 05:44:36 +08:00
|
|
|
|
2013-01-23 05:10:23 +08:00
|
|
|
for (i = 0; i < NBANK(chip); i++) {
|
|
|
|
while (pending[i]) {
|
|
|
|
level = __ffs(pending[i]);
|
2017-11-08 02:15:47 +08:00
|
|
|
handle_nested_irq(irq_find_mapping(chip->gpio_chip.irq.domain,
|
2013-01-23 05:10:23 +08:00
|
|
|
level + (BANK_SZ * i)));
|
|
|
|
pending[i] &= ~(1 << level);
|
2014-04-30 16:01:40 +08:00
|
|
|
nhandled++;
|
2013-01-23 05:10:23 +08:00
|
|
|
}
|
|
|
|
}
|
2010-03-06 05:44:36 +08:00
|
|
|
|
2014-04-30 16:01:40 +08:00
|
|
|
return (nhandled > 0) ? IRQ_HANDLED : IRQ_NONE;
|
2010-03-06 05:44:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pca953x_irq_setup(struct pca953x_chip *chip,
|
2011-06-14 17:00:55 +08:00
|
|
|
int irq_base)
|
2010-03-06 05:44:36 +08:00
|
|
|
{
|
|
|
|
struct i2c_client *client = chip->client;
|
2016-09-09 17:17:34 +08:00
|
|
|
int ret, i;
|
2010-03-06 05:44:36 +08:00
|
|
|
|
2014-07-29 15:24:43 +08:00
|
|
|
if (client->irq && irq_base != -1
|
2015-10-01 19:20:27 +08:00
|
|
|
&& (chip->driver_data & PCA_INT)) {
|
2016-09-09 17:17:34 +08:00
|
|
|
ret = pca953x_read_regs(chip,
|
|
|
|
chip->regs->input, chip->irq_stat);
|
2010-03-06 05:44:36 +08:00
|
|
|
if (ret)
|
2013-01-26 00:59:28 +08:00
|
|
|
return ret;
|
2010-03-06 05:44:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* There is no way to know which GPIO line generated the
|
|
|
|
* interrupt. We have to rely on the previous read for
|
|
|
|
* this purpose.
|
|
|
|
*/
|
2013-01-23 05:10:23 +08:00
|
|
|
for (i = 0; i < NBANK(chip); i++)
|
|
|
|
chip->irq_stat[i] &= chip->reg_direction[i];
|
2010-03-06 05:44:36 +08:00
|
|
|
mutex_init(&chip->irq_lock);
|
|
|
|
|
2013-01-26 00:59:28 +08:00
|
|
|
ret = devm_request_threaded_irq(&client->dev,
|
|
|
|
client->irq,
|
2010-03-06 05:44:36 +08:00
|
|
|
NULL,
|
|
|
|
pca953x_irq_handler,
|
2014-04-30 16:01:41 +08:00
|
|
|
IRQF_TRIGGER_LOW | IRQF_ONESHOT |
|
|
|
|
IRQF_SHARED,
|
2010-03-06 05:44:36 +08:00
|
|
|
dev_name(&client->dev), chip);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(&client->dev, "failed to request irq %d\n",
|
|
|
|
client->irq);
|
2013-01-26 00:59:27 +08:00
|
|
|
return ret;
|
2010-03-06 05:44:36 +08:00
|
|
|
}
|
|
|
|
|
2016-11-24 17:57:25 +08:00
|
|
|
ret = gpiochip_irqchip_add_nested(&chip->gpio_chip,
|
|
|
|
&pca953x_irq_chip,
|
|
|
|
irq_base,
|
|
|
|
handle_simple_irq,
|
|
|
|
IRQ_TYPE_NONE);
|
2014-05-09 19:27:57 +08:00
|
|
|
if (ret) {
|
|
|
|
dev_err(&client->dev,
|
|
|
|
"could not connect irqchip to gpiochip\n");
|
|
|
|
return ret;
|
|
|
|
}
|
2015-07-07 22:34:49 +08:00
|
|
|
|
2016-11-24 17:57:25 +08:00
|
|
|
gpiochip_set_nested_irqchip(&chip->gpio_chip,
|
|
|
|
&pca953x_irq_chip,
|
|
|
|
client->irq);
|
2010-03-06 05:44:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* CONFIG_GPIO_PCA953X_IRQ */
|
|
|
|
static int pca953x_irq_setup(struct pca953x_chip *chip,
|
2011-06-14 17:00:55 +08:00
|
|
|
int irq_base)
|
2010-03-06 05:44:36 +08:00
|
|
|
{
|
|
|
|
struct i2c_client *client = chip->client;
|
|
|
|
|
2018-06-21 21:38:46 +08:00
|
|
|
if (client->irq && irq_base != -1 && (chip->driver_data & PCA_INT))
|
2010-03-06 05:44:36 +08:00
|
|
|
dev_warn(&client->dev, "interrupt support not compiled in\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-12-12 09:39:55 +08:00
|
|
|
static int device_pca95xx_init(struct pca953x_chip *chip, u32 invert)
|
2011-04-18 22:12:46 +08:00
|
|
|
{
|
|
|
|
int ret;
|
2013-01-23 05:10:23 +08:00
|
|
|
u8 val[MAX_BANK];
|
2011-04-18 22:12:46 +08:00
|
|
|
|
2016-09-09 17:17:34 +08:00
|
|
|
ret = pca953x_read_regs(chip, chip->regs->output, chip->reg_output);
|
2011-04-18 22:12:46 +08:00
|
|
|
if (ret)
|
|
|
|
goto out;
|
|
|
|
|
2016-09-09 17:17:34 +08:00
|
|
|
ret = pca953x_read_regs(chip, chip->regs->direction,
|
|
|
|
chip->reg_direction);
|
2011-04-18 22:12:46 +08:00
|
|
|
if (ret)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* set platform specific polarity inversion */
|
2013-01-23 05:10:23 +08:00
|
|
|
if (invert)
|
|
|
|
memset(val, 0xFF, NBANK(chip));
|
|
|
|
else
|
|
|
|
memset(val, 0, NBANK(chip));
|
|
|
|
|
2018-12-12 09:39:55 +08:00
|
|
|
ret = pca953x_write_regs(chip, chip->regs->invert, val);
|
2011-04-18 22:12:46 +08:00
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-11-20 02:22:34 +08:00
|
|
|
static int device_pca957x_init(struct pca953x_chip *chip, u32 invert)
|
2011-04-18 22:12:46 +08:00
|
|
|
{
|
|
|
|
int ret;
|
2013-01-23 05:10:23 +08:00
|
|
|
u8 val[MAX_BANK];
|
2011-04-18 22:12:46 +08:00
|
|
|
|
2018-12-12 09:39:55 +08:00
|
|
|
ret = device_pca95xx_init(chip, invert);
|
2015-08-27 05:52:19 +08:00
|
|
|
if (ret)
|
|
|
|
goto out;
|
2011-04-18 22:12:46 +08:00
|
|
|
|
2015-05-19 02:41:43 +08:00
|
|
|
/* To enable register 6, 7 to control pull up and pull down */
|
2013-01-23 05:10:23 +08:00
|
|
|
memset(val, 0x02, NBANK(chip));
|
2015-08-27 05:52:19 +08:00
|
|
|
ret = pca953x_write_regs(chip, PCA957X_BKEN, val);
|
|
|
|
if (ret)
|
|
|
|
goto out;
|
2011-04-18 22:12:46 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-12-08 18:19:26 +08:00
|
|
|
static const struct of_device_id pca953x_dt_ids[];
|
|
|
|
|
2012-11-20 02:22:34 +08:00
|
|
|
static int pca953x_probe(struct i2c_client *client,
|
2016-09-24 17:06:29 +08:00
|
|
|
const struct i2c_device_id *i2c_id)
|
2008-02-05 14:28:26 +08:00
|
|
|
{
|
2008-02-06 17:39:03 +08:00
|
|
|
struct pca953x_platform_data *pdata;
|
|
|
|
struct pca953x_chip *chip;
|
2012-07-10 21:35:37 +08:00
|
|
|
int irq_base = 0;
|
2011-10-14 21:32:00 +08:00
|
|
|
int ret;
|
2012-07-10 21:35:37 +08:00
|
|
|
u32 invert = 0;
|
2016-07-29 11:39:55 +08:00
|
|
|
struct regulator *reg;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2013-01-26 00:59:28 +08:00
|
|
|
chip = devm_kzalloc(&client->dev,
|
|
|
|
sizeof(struct pca953x_chip), GFP_KERNEL);
|
2009-06-18 07:26:17 +08:00
|
|
|
if (chip == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2013-07-30 16:08:05 +08:00
|
|
|
pdata = dev_get_platdata(&client->dev);
|
2011-06-14 17:00:55 +08:00
|
|
|
if (pdata) {
|
|
|
|
irq_base = pdata->irq_base;
|
|
|
|
chip->gpio_start = pdata->gpio_base;
|
|
|
|
invert = pdata->invert;
|
|
|
|
chip->names = pdata->names;
|
|
|
|
} else {
|
2017-01-11 03:29:51 +08:00
|
|
|
struct gpio_desc *reset_gpio;
|
|
|
|
|
2014-07-29 15:24:43 +08:00
|
|
|
chip->gpio_start = -1;
|
|
|
|
irq_base = 0;
|
2017-01-11 03:29:51 +08:00
|
|
|
|
2017-03-22 22:11:13 +08:00
|
|
|
/*
|
|
|
|
* See if we need to de-assert a reset pin.
|
|
|
|
*
|
|
|
|
* There is no known ACPI-enabled platforms that are
|
|
|
|
* using "reset" GPIO. Otherwise any of those platform
|
|
|
|
* must use _DSD method with corresponding property.
|
|
|
|
*/
|
2017-01-11 03:29:51 +08:00
|
|
|
reset_gpio = devm_gpiod_get_optional(&client->dev, "reset",
|
|
|
|
GPIOD_OUT_LOW);
|
|
|
|
if (IS_ERR(reset_gpio))
|
|
|
|
return PTR_ERR(reset_gpio);
|
2009-06-18 07:26:17 +08:00
|
|
|
}
|
2008-02-05 14:28:26 +08:00
|
|
|
|
|
|
|
chip->client = client;
|
|
|
|
|
2016-07-29 11:39:55 +08:00
|
|
|
reg = devm_regulator_get(&client->dev, "vcc");
|
|
|
|
if (IS_ERR(reg)) {
|
|
|
|
ret = PTR_ERR(reg);
|
|
|
|
if (ret != -EPROBE_DEFER)
|
|
|
|
dev_err(&client->dev, "reg get err: %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret = regulator_enable(reg);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(&client->dev, "reg en err: %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
chip->regulator = reg;
|
|
|
|
|
2016-09-24 17:06:29 +08:00
|
|
|
if (i2c_id) {
|
|
|
|
chip->driver_data = i2c_id->driver_data;
|
2015-10-01 19:20:28 +08:00
|
|
|
} else {
|
2016-09-24 17:06:29 +08:00
|
|
|
const struct acpi_device_id *acpi_id;
|
2018-04-30 15:38:14 +08:00
|
|
|
struct device *dev = &client->dev;
|
2015-10-01 19:20:28 +08:00
|
|
|
|
2018-04-30 15:38:14 +08:00
|
|
|
chip->driver_data = (uintptr_t)of_device_get_match_data(dev);
|
|
|
|
if (!chip->driver_data) {
|
|
|
|
acpi_id = acpi_match_device(pca953x_acpi_ids, dev);
|
2016-10-08 05:12:21 +08:00
|
|
|
if (!acpi_id) {
|
2016-07-29 11:39:55 +08:00
|
|
|
ret = -ENODEV;
|
|
|
|
goto err_exit;
|
|
|
|
}
|
2015-10-01 19:20:28 +08:00
|
|
|
|
2016-09-24 17:06:29 +08:00
|
|
|
chip->driver_data = acpi_id->driver_data;
|
2015-12-08 18:19:26 +08:00
|
|
|
}
|
2015-10-01 19:20:28 +08:00
|
|
|
}
|
|
|
|
|
2011-02-11 07:01:23 +08:00
|
|
|
mutex_init(&chip->i2c_lock);
|
2016-09-26 17:54:15 +08:00
|
|
|
/*
|
|
|
|
* In case we have an i2c-mux controlled by a GPIO provided by an
|
|
|
|
* expander using the same driver higher on the device tree, read the
|
|
|
|
* i2c adapter nesting depth and use the retrieved value as lockdep
|
|
|
|
* subclass for chip->i2c_lock.
|
|
|
|
*
|
|
|
|
* REVISIT: This solution is not complete. It protects us from lockdep
|
|
|
|
* false positives when the expander controlling the i2c-mux is on
|
|
|
|
* a different level on the device tree, but not when it's on the same
|
|
|
|
* level on a different branch (in which case the subclass number
|
|
|
|
* would be the same).
|
|
|
|
*
|
|
|
|
* TODO: Once a correct solution is developed, a similar fix should be
|
|
|
|
* applied to all other i2c-controlled GPIO expanders (and potentially
|
|
|
|
* regmap-i2c).
|
|
|
|
*/
|
2016-09-17 00:02:45 +08:00
|
|
|
lockdep_set_subclass(&chip->i2c_lock,
|
|
|
|
i2c_adapter_depth(client->adapter));
|
2011-02-11 07:01:23 +08:00
|
|
|
|
2008-02-05 14:28:26 +08:00
|
|
|
/* initialize cached registers from their original values.
|
|
|
|
* we can't share this chip with another i2c master.
|
|
|
|
*/
|
2015-10-01 19:20:27 +08:00
|
|
|
pca953x_setup_gpio(chip, chip->driver_data & PCA_GPIO_MASK);
|
2008-02-06 17:39:04 +08:00
|
|
|
|
2018-12-12 09:39:55 +08:00
|
|
|
if (PCA_CHIP_TYPE(chip->driver_data) == PCA953X_TYPE) {
|
|
|
|
chip->regs = &pca953x_regs;
|
|
|
|
ret = device_pca95xx_init(chip, invert);
|
|
|
|
} else {
|
|
|
|
chip->regs = &pca957x_regs;
|
2011-10-14 21:32:00 +08:00
|
|
|
ret = device_pca957x_init(chip, invert);
|
2018-12-12 09:39:55 +08:00
|
|
|
}
|
2011-10-14 21:32:00 +08:00
|
|
|
if (ret)
|
2016-07-29 11:39:55 +08:00
|
|
|
goto err_exit;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2016-02-22 20:13:28 +08:00
|
|
|
ret = devm_gpiochip_add_data(&client->dev, &chip->gpio_chip, chip);
|
2010-03-06 05:44:36 +08:00
|
|
|
if (ret)
|
2016-07-29 11:39:55 +08:00
|
|
|
goto err_exit;
|
2008-02-06 17:39:04 +08:00
|
|
|
|
2015-10-01 19:20:27 +08:00
|
|
|
ret = pca953x_irq_setup(chip, irq_base);
|
2008-02-05 14:28:26 +08:00
|
|
|
if (ret)
|
2016-07-29 11:39:55 +08:00
|
|
|
goto err_exit;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2011-06-14 17:00:55 +08:00
|
|
|
if (pdata && pdata->setup) {
|
2008-02-05 14:28:26 +08:00
|
|
|
ret = pdata->setup(client, chip->gpio_chip.base,
|
|
|
|
chip->gpio_chip.ngpio, pdata->context);
|
|
|
|
if (ret < 0)
|
|
|
|
dev_warn(&client->dev, "setup failed, %d\n", ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
i2c_set_clientdata(client, chip);
|
|
|
|
return 0;
|
2016-07-29 11:39:55 +08:00
|
|
|
|
|
|
|
err_exit:
|
|
|
|
regulator_disable(chip->regulator);
|
|
|
|
return ret;
|
2008-02-05 14:28:26 +08:00
|
|
|
}
|
|
|
|
|
2008-02-06 17:39:03 +08:00
|
|
|
static int pca953x_remove(struct i2c_client *client)
|
2008-02-05 14:28:26 +08:00
|
|
|
{
|
2013-07-30 16:08:05 +08:00
|
|
|
struct pca953x_platform_data *pdata = dev_get_platdata(&client->dev);
|
2008-02-06 17:39:03 +08:00
|
|
|
struct pca953x_chip *chip = i2c_get_clientdata(client);
|
2016-09-13 20:43:23 +08:00
|
|
|
int ret;
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2011-06-14 17:00:55 +08:00
|
|
|
if (pdata && pdata->teardown) {
|
2008-02-05 14:28:26 +08:00
|
|
|
ret = pdata->teardown(client, chip->gpio_chip.base,
|
|
|
|
chip->gpio_chip.ngpio, pdata->context);
|
2016-07-29 11:39:55 +08:00
|
|
|
if (ret < 0)
|
2008-02-05 14:28:26 +08:00
|
|
|
dev_err(&client->dev, "%s failed, %d\n",
|
|
|
|
"teardown", ret);
|
2016-08-26 23:25:42 +08:00
|
|
|
} else {
|
|
|
|
ret = 0;
|
2008-02-05 14:28:26 +08:00
|
|
|
}
|
|
|
|
|
2016-07-29 11:39:55 +08:00
|
|
|
regulator_disable(chip->regulator);
|
|
|
|
|
|
|
|
return ret;
|
2008-02-05 14:28:26 +08:00
|
|
|
}
|
|
|
|
|
2015-12-08 18:19:26 +08:00
|
|
|
/* convenience to stop overlong match-table lines */
|
|
|
|
#define OF_953X(__nrgpio, __int) (void *)(__nrgpio | PCA953X_TYPE | __int)
|
|
|
|
#define OF_957X(__nrgpio, __int) (void *)(__nrgpio | PCA957X_TYPE | __int)
|
|
|
|
|
2012-11-09 01:01:52 +08:00
|
|
|
static const struct of_device_id pca953x_dt_ids[] = {
|
2015-12-08 18:19:26 +08:00
|
|
|
{ .compatible = "nxp,pca9505", .data = OF_953X(40, PCA_INT), },
|
|
|
|
{ .compatible = "nxp,pca9534", .data = OF_953X( 8, PCA_INT), },
|
|
|
|
{ .compatible = "nxp,pca9535", .data = OF_953X(16, PCA_INT), },
|
|
|
|
{ .compatible = "nxp,pca9536", .data = OF_953X( 4, 0), },
|
|
|
|
{ .compatible = "nxp,pca9537", .data = OF_953X( 4, PCA_INT), },
|
|
|
|
{ .compatible = "nxp,pca9538", .data = OF_953X( 8, PCA_INT), },
|
|
|
|
{ .compatible = "nxp,pca9539", .data = OF_953X(16, PCA_INT), },
|
|
|
|
{ .compatible = "nxp,pca9554", .data = OF_953X( 8, PCA_INT), },
|
|
|
|
{ .compatible = "nxp,pca9555", .data = OF_953X(16, PCA_INT), },
|
|
|
|
{ .compatible = "nxp,pca9556", .data = OF_953X( 8, 0), },
|
|
|
|
{ .compatible = "nxp,pca9557", .data = OF_953X( 8, 0), },
|
|
|
|
{ .compatible = "nxp,pca9574", .data = OF_957X( 8, PCA_INT), },
|
|
|
|
{ .compatible = "nxp,pca9575", .data = OF_957X(16, PCA_INT), },
|
|
|
|
{ .compatible = "nxp,pca9698", .data = OF_953X(40, 0), },
|
|
|
|
|
2018-05-17 12:59:47 +08:00
|
|
|
{ .compatible = "nxp,pcal6524", .data = OF_953X(24, PCA_LATCH_INT), },
|
|
|
|
{ .compatible = "nxp,pcal9555a", .data = OF_953X(16, PCA_LATCH_INT), },
|
2018-03-10 19:00:01 +08:00
|
|
|
|
2015-12-08 18:19:26 +08:00
|
|
|
{ .compatible = "maxim,max7310", .data = OF_953X( 8, 0), },
|
|
|
|
{ .compatible = "maxim,max7312", .data = OF_953X(16, PCA_INT), },
|
|
|
|
{ .compatible = "maxim,max7313", .data = OF_953X(16, PCA_INT), },
|
|
|
|
{ .compatible = "maxim,max7315", .data = OF_953X( 8, PCA_INT), },
|
2016-10-18 00:36:49 +08:00
|
|
|
{ .compatible = "maxim,max7318", .data = OF_953X(16, PCA_INT), },
|
2015-12-08 18:19:26 +08:00
|
|
|
|
|
|
|
{ .compatible = "ti,pca6107", .data = OF_953X( 8, PCA_INT), },
|
2016-05-19 14:47:29 +08:00
|
|
|
{ .compatible = "ti,pca9536", .data = OF_953X( 4, 0), },
|
2015-12-08 18:19:26 +08:00
|
|
|
{ .compatible = "ti,tca6408", .data = OF_953X( 8, PCA_INT), },
|
|
|
|
{ .compatible = "ti,tca6416", .data = OF_953X(16, PCA_INT), },
|
|
|
|
{ .compatible = "ti,tca6424", .data = OF_953X(24, PCA_INT), },
|
|
|
|
|
2017-11-17 04:18:32 +08:00
|
|
|
{ .compatible = "onnn,pca9654", .data = OF_953X( 8, PCA_INT), },
|
2015-12-08 18:19:26 +08:00
|
|
|
|
|
|
|
{ .compatible = "exar,xra1202", .data = OF_953X( 8, 0), },
|
2012-11-09 01:01:52 +08:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_DEVICE_TABLE(of, pca953x_dt_ids);
|
|
|
|
|
2008-02-06 17:39:03 +08:00
|
|
|
static struct i2c_driver pca953x_driver = {
|
2008-02-05 14:28:26 +08:00
|
|
|
.driver = {
|
2008-02-06 17:39:03 +08:00
|
|
|
.name = "pca953x",
|
2012-11-09 01:01:52 +08:00
|
|
|
.of_match_table = pca953x_dt_ids,
|
2015-10-01 19:20:28 +08:00
|
|
|
.acpi_match_table = ACPI_PTR(pca953x_acpi_ids),
|
2008-02-05 14:28:26 +08:00
|
|
|
},
|
2008-02-06 17:39:03 +08:00
|
|
|
.probe = pca953x_probe,
|
|
|
|
.remove = pca953x_remove,
|
2008-04-30 05:11:40 +08:00
|
|
|
.id_table = pca953x_id,
|
2008-02-05 14:28:26 +08:00
|
|
|
};
|
|
|
|
|
2008-02-06 17:39:03 +08:00
|
|
|
static int __init pca953x_init(void)
|
2008-02-05 14:28:26 +08:00
|
|
|
{
|
2008-02-06 17:39:03 +08:00
|
|
|
return i2c_add_driver(&pca953x_driver);
|
2008-02-05 14:28:26 +08:00
|
|
|
}
|
2008-10-16 13:03:13 +08:00
|
|
|
/* register after i2c postcore initcall and before
|
|
|
|
* subsys initcalls that may rely on these GPIOs
|
|
|
|
*/
|
|
|
|
subsys_initcall(pca953x_init);
|
2008-02-05 14:28:26 +08:00
|
|
|
|
2008-02-06 17:39:03 +08:00
|
|
|
static void __exit pca953x_exit(void)
|
2008-02-05 14:28:26 +08:00
|
|
|
{
|
2008-02-06 17:39:03 +08:00
|
|
|
i2c_del_driver(&pca953x_driver);
|
2008-02-05 14:28:26 +08:00
|
|
|
}
|
2008-02-06 17:39:03 +08:00
|
|
|
module_exit(pca953x_exit);
|
2008-02-05 14:28:26 +08:00
|
|
|
|
|
|
|
MODULE_AUTHOR("eric miao <eric.miao@marvell.com>");
|
2008-02-06 17:39:03 +08:00
|
|
|
MODULE_DESCRIPTION("GPIO expander driver for PCA953x");
|
2008-02-05 14:28:26 +08:00
|
|
|
MODULE_LICENSE("GPL");
|