eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 1 | /* |
Grant Likely | c103de2 | 2011-06-04 18:38:28 -0600 | [diff] [blame] | 2 | * PCA953x 4/8/16 bit I/O ports |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2005 Ben Gardner <bgardner@wabtec.com> |
| 5 | * Copyright (C) 2007 Marvell International Ltd. |
| 6 | * |
| 7 | * Derived from drivers/i2c/chips/pca9539.c |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; version 2 of the License. |
| 12 | */ |
| 13 | |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/init.h> |
H Hartley Sweeten | d120c17 | 2009-09-22 16:46:37 -0700 | [diff] [blame] | 16 | #include <linux/gpio.h> |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 17 | #include <linux/interrupt.h> |
| 18 | #include <linux/irq.h> |
Maxime Ripard | 55ecd26 | 2012-11-08 18:01:51 +0100 | [diff] [blame] | 19 | #include <linux/irqdomain.h> |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 20 | #include <linux/i2c.h> |
Vivien Didelot | 5877457 | 2013-08-29 15:24:14 -0400 | [diff] [blame] | 21 | #include <linux/platform_data/pca953x.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | #include <linux/slab.h> |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 23 | #ifdef CONFIG_OF_GPIO |
| 24 | #include <linux/of_platform.h> |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 25 | #endif |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 26 | |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 27 | #define PCA953X_INPUT 0 |
| 28 | #define PCA953X_OUTPUT 1 |
| 29 | #define PCA953X_INVERT 2 |
| 30 | #define PCA953X_DIRECTION 3 |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 31 | |
Andreas Schallenberg | ae79c19 | 2012-05-09 09:46:17 +0200 | [diff] [blame] | 32 | #define REG_ADDR_AI 0x80 |
| 33 | |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 34 | #define PCA957X_IN 0 |
| 35 | #define PCA957X_INVRT 1 |
| 36 | #define PCA957X_BKEN 2 |
| 37 | #define PCA957X_PUPD 3 |
| 38 | #define PCA957X_CFG 4 |
| 39 | #define PCA957X_OUT 5 |
| 40 | #define PCA957X_MSK 6 |
| 41 | #define PCA957X_INTS 7 |
| 42 | |
| 43 | #define PCA_GPIO_MASK 0x00FF |
| 44 | #define PCA_INT 0x0100 |
| 45 | #define PCA953X_TYPE 0x1000 |
| 46 | #define PCA957X_TYPE 0x2000 |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 47 | |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 48 | static const struct i2c_device_id pca953x_id[] = { |
Gregory CLEMENT | 89f5df0 | 2013-01-22 22:10:24 +0100 | [diff] [blame] | 49 | { "pca9505", 40 | PCA953X_TYPE | PCA_INT, }, |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 50 | { "pca9534", 8 | PCA953X_TYPE | PCA_INT, }, |
| 51 | { "pca9535", 16 | PCA953X_TYPE | PCA_INT, }, |
| 52 | { "pca9536", 4 | PCA953X_TYPE, }, |
| 53 | { "pca9537", 4 | PCA953X_TYPE | PCA_INT, }, |
| 54 | { "pca9538", 8 | PCA953X_TYPE | PCA_INT, }, |
| 55 | { "pca9539", 16 | PCA953X_TYPE | PCA_INT, }, |
| 56 | { "pca9554", 8 | PCA953X_TYPE | PCA_INT, }, |
| 57 | { "pca9555", 16 | PCA953X_TYPE | PCA_INT, }, |
| 58 | { "pca9556", 8 | PCA953X_TYPE, }, |
| 59 | { "pca9557", 8 | PCA953X_TYPE, }, |
| 60 | { "pca9574", 8 | PCA957X_TYPE | PCA_INT, }, |
| 61 | { "pca9575", 16 | PCA957X_TYPE | PCA_INT, }, |
David Brownell | ab5dc372 | 2009-01-06 14:42:27 -0800 | [diff] [blame] | 62 | |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 63 | { "max7310", 8 | PCA953X_TYPE, }, |
| 64 | { "max7312", 16 | PCA953X_TYPE | PCA_INT, }, |
| 65 | { "max7313", 16 | PCA953X_TYPE | PCA_INT, }, |
| 66 | { "max7315", 8 | PCA953X_TYPE | PCA_INT, }, |
| 67 | { "pca6107", 8 | PCA953X_TYPE | PCA_INT, }, |
| 68 | { "tca6408", 8 | PCA953X_TYPE | PCA_INT, }, |
| 69 | { "tca6416", 16 | PCA953X_TYPE | PCA_INT, }, |
Andreas Schallenberg | ae79c19 | 2012-05-09 09:46:17 +0200 | [diff] [blame] | 70 | { "tca6424", 24 | PCA953X_TYPE | PCA_INT, }, |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 71 | { } |
Guennadi Liakhovetski | f5e8ff4 | 2008-02-06 01:39:04 -0800 | [diff] [blame] | 72 | }; |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 73 | MODULE_DEVICE_TABLE(i2c, pca953x_id); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 74 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 75 | #define MAX_BANK 5 |
| 76 | #define BANK_SZ 8 |
| 77 | |
| 78 | #define NBANK(chip) (chip->gpio_chip.ngpio / BANK_SZ) |
| 79 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 80 | struct pca953x_chip { |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 81 | unsigned gpio_start; |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 82 | u8 reg_output[MAX_BANK]; |
| 83 | u8 reg_direction[MAX_BANK]; |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 84 | struct mutex i2c_lock; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 85 | |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 86 | #ifdef CONFIG_GPIO_PCA953X_IRQ |
| 87 | struct mutex irq_lock; |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 88 | u8 irq_mask[MAX_BANK]; |
| 89 | u8 irq_stat[MAX_BANK]; |
| 90 | u8 irq_trig_raise[MAX_BANK]; |
| 91 | u8 irq_trig_fall[MAX_BANK]; |
Maxime Ripard | 55ecd26 | 2012-11-08 18:01:51 +0100 | [diff] [blame] | 92 | struct irq_domain *domain; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 93 | #endif |
| 94 | |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 95 | struct i2c_client *client; |
| 96 | struct gpio_chip gpio_chip; |
Uwe Kleine-König | 6215499 | 2010-05-26 14:42:17 -0700 | [diff] [blame] | 97 | const char *const *names; |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 98 | int chip_type; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 99 | }; |
| 100 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 101 | static int pca953x_read_single(struct pca953x_chip *chip, int reg, u32 *val, |
| 102 | int off) |
| 103 | { |
| 104 | int ret; |
| 105 | int bank_shift = fls((chip->gpio_chip.ngpio - 1) / BANK_SZ); |
| 106 | int offset = off / BANK_SZ; |
| 107 | |
| 108 | ret = i2c_smbus_read_byte_data(chip->client, |
| 109 | (reg << bank_shift) + offset); |
| 110 | *val = ret; |
| 111 | |
| 112 | if (ret < 0) { |
| 113 | dev_err(&chip->client->dev, "failed reading register\n"); |
| 114 | return ret; |
| 115 | } |
| 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | |
| 120 | static int pca953x_write_single(struct pca953x_chip *chip, int reg, u32 val, |
| 121 | int off) |
| 122 | { |
| 123 | int ret = 0; |
| 124 | int bank_shift = fls((chip->gpio_chip.ngpio - 1) / BANK_SZ); |
| 125 | int offset = off / BANK_SZ; |
| 126 | |
| 127 | ret = i2c_smbus_write_byte_data(chip->client, |
| 128 | (reg << bank_shift) + offset, val); |
| 129 | |
| 130 | if (ret < 0) { |
| 131 | dev_err(&chip->client->dev, "failed writing register\n"); |
| 132 | return ret; |
| 133 | } |
| 134 | |
| 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | static int pca953x_write_regs(struct pca953x_chip *chip, int reg, u8 *val) |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 139 | { |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 140 | int ret = 0; |
Guennadi Liakhovetski | f5e8ff4 | 2008-02-06 01:39:04 -0800 | [diff] [blame] | 141 | |
| 142 | if (chip->gpio_chip.ngpio <= 8) |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 143 | ret = i2c_smbus_write_byte_data(chip->client, reg, *val); |
| 144 | else if (chip->gpio_chip.ngpio >= 24) { |
| 145 | int bank_shift = fls((chip->gpio_chip.ngpio - 1) / BANK_SZ); |
Andreas Schallenberg | 96b7064 | 2012-05-21 09:52:43 +0200 | [diff] [blame] | 146 | ret = i2c_smbus_write_i2c_block_data(chip->client, |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 147 | (reg << bank_shift) | REG_ADDR_AI, |
| 148 | NBANK(chip), val); |
Laurent Navet | 50e4443 | 2013-03-20 13:15:58 +0100 | [diff] [blame] | 149 | } else { |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 150 | switch (chip->chip_type) { |
| 151 | case PCA953X_TYPE: |
| 152 | ret = i2c_smbus_write_word_data(chip->client, |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 153 | reg << 1, (u16) *val); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 154 | break; |
| 155 | case PCA957X_TYPE: |
| 156 | ret = i2c_smbus_write_byte_data(chip->client, reg << 1, |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 157 | val[0]); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 158 | if (ret < 0) |
| 159 | break; |
| 160 | ret = i2c_smbus_write_byte_data(chip->client, |
| 161 | (reg << 1) + 1, |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 162 | val[1]); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 163 | break; |
| 164 | } |
| 165 | } |
Guennadi Liakhovetski | f5e8ff4 | 2008-02-06 01:39:04 -0800 | [diff] [blame] | 166 | |
| 167 | if (ret < 0) { |
| 168 | dev_err(&chip->client->dev, "failed writing register\n"); |
David Brownell | ab5dc372 | 2009-01-06 14:42:27 -0800 | [diff] [blame] | 169 | return ret; |
Guennadi Liakhovetski | f5e8ff4 | 2008-02-06 01:39:04 -0800 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | return 0; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 173 | } |
| 174 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 175 | static int pca953x_read_regs(struct pca953x_chip *chip, int reg, u8 *val) |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 176 | { |
| 177 | int ret; |
| 178 | |
Andreas Schallenberg | 96b7064 | 2012-05-21 09:52:43 +0200 | [diff] [blame] | 179 | if (chip->gpio_chip.ngpio <= 8) { |
Guennadi Liakhovetski | f5e8ff4 | 2008-02-06 01:39:04 -0800 | [diff] [blame] | 180 | ret = i2c_smbus_read_byte_data(chip->client, reg); |
Andreas Schallenberg | 96b7064 | 2012-05-21 09:52:43 +0200 | [diff] [blame] | 181 | *val = ret; |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 182 | } else if (chip->gpio_chip.ngpio >= 24) { |
| 183 | int bank_shift = fls((chip->gpio_chip.ngpio - 1) / BANK_SZ); |
| 184 | |
Andreas Schallenberg | 96b7064 | 2012-05-21 09:52:43 +0200 | [diff] [blame] | 185 | ret = i2c_smbus_read_i2c_block_data(chip->client, |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 186 | (reg << bank_shift) | REG_ADDR_AI, |
| 187 | NBANK(chip), val); |
Andreas Schallenberg | 96b7064 | 2012-05-21 09:52:43 +0200 | [diff] [blame] | 188 | } else { |
Guennadi Liakhovetski | f5e8ff4 | 2008-02-06 01:39:04 -0800 | [diff] [blame] | 189 | ret = i2c_smbus_read_word_data(chip->client, reg << 1); |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 190 | val[0] = (u16)ret & 0xFF; |
| 191 | val[1] = (u16)ret >> 8; |
Andreas Schallenberg | 96b7064 | 2012-05-21 09:52:43 +0200 | [diff] [blame] | 192 | } |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 193 | if (ret < 0) { |
| 194 | dev_err(&chip->client->dev, "failed reading register\n"); |
David Brownell | ab5dc372 | 2009-01-06 14:42:27 -0800 | [diff] [blame] | 195 | return ret; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 196 | } |
| 197 | |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 198 | return 0; |
| 199 | } |
| 200 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 201 | static int pca953x_gpio_direction_input(struct gpio_chip *gc, unsigned off) |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 202 | { |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 203 | struct pca953x_chip *chip; |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 204 | u8 reg_val; |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 205 | int ret, offset = 0; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 206 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 207 | chip = container_of(gc, struct pca953x_chip, gpio_chip); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 208 | |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 209 | mutex_lock(&chip->i2c_lock); |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 210 | reg_val = chip->reg_direction[off / BANK_SZ] | (1u << (off % BANK_SZ)); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 211 | |
| 212 | switch (chip->chip_type) { |
| 213 | case PCA953X_TYPE: |
| 214 | offset = PCA953X_DIRECTION; |
| 215 | break; |
| 216 | case PCA957X_TYPE: |
| 217 | offset = PCA957X_CFG; |
| 218 | break; |
| 219 | } |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 220 | ret = pca953x_write_single(chip, offset, reg_val, off); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 221 | if (ret) |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 222 | goto exit; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 223 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 224 | chip->reg_direction[off / BANK_SZ] = reg_val; |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 225 | ret = 0; |
| 226 | exit: |
| 227 | mutex_unlock(&chip->i2c_lock); |
| 228 | return ret; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 229 | } |
| 230 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 231 | static int pca953x_gpio_direction_output(struct gpio_chip *gc, |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 232 | unsigned off, int val) |
| 233 | { |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 234 | struct pca953x_chip *chip; |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 235 | u8 reg_val; |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 236 | int ret, offset = 0; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 237 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 238 | chip = container_of(gc, struct pca953x_chip, gpio_chip); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 239 | |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 240 | mutex_lock(&chip->i2c_lock); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 241 | /* set output level */ |
| 242 | if (val) |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 243 | reg_val = chip->reg_output[off / BANK_SZ] |
| 244 | | (1u << (off % BANK_SZ)); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 245 | else |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 246 | reg_val = chip->reg_output[off / BANK_SZ] |
| 247 | & ~(1u << (off % BANK_SZ)); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 248 | |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 249 | switch (chip->chip_type) { |
| 250 | case PCA953X_TYPE: |
| 251 | offset = PCA953X_OUTPUT; |
| 252 | break; |
| 253 | case PCA957X_TYPE: |
| 254 | offset = PCA957X_OUT; |
| 255 | break; |
| 256 | } |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 257 | ret = pca953x_write_single(chip, offset, reg_val, off); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 258 | if (ret) |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 259 | goto exit; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 260 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 261 | chip->reg_output[off / BANK_SZ] = reg_val; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 262 | |
| 263 | /* then direction */ |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 264 | reg_val = chip->reg_direction[off / BANK_SZ] & ~(1u << (off % BANK_SZ)); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 265 | switch (chip->chip_type) { |
| 266 | case PCA953X_TYPE: |
| 267 | offset = PCA953X_DIRECTION; |
| 268 | break; |
| 269 | case PCA957X_TYPE: |
| 270 | offset = PCA957X_CFG; |
| 271 | break; |
| 272 | } |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 273 | ret = pca953x_write_single(chip, offset, reg_val, off); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 274 | if (ret) |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 275 | goto exit; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 276 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 277 | chip->reg_direction[off / BANK_SZ] = reg_val; |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 278 | ret = 0; |
| 279 | exit: |
| 280 | mutex_unlock(&chip->i2c_lock); |
| 281 | return ret; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 282 | } |
| 283 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 284 | static int pca953x_gpio_get_value(struct gpio_chip *gc, unsigned off) |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 285 | { |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 286 | struct pca953x_chip *chip; |
Andreas Schallenberg | ae79c19 | 2012-05-09 09:46:17 +0200 | [diff] [blame] | 287 | u32 reg_val; |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 288 | int ret, offset = 0; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 289 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 290 | chip = container_of(gc, struct pca953x_chip, gpio_chip); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 291 | |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 292 | mutex_lock(&chip->i2c_lock); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 293 | switch (chip->chip_type) { |
| 294 | case PCA953X_TYPE: |
| 295 | offset = PCA953X_INPUT; |
| 296 | break; |
| 297 | case PCA957X_TYPE: |
| 298 | offset = PCA957X_IN; |
| 299 | break; |
| 300 | } |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 301 | ret = pca953x_read_single(chip, offset, ®_val, off); |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 302 | mutex_unlock(&chip->i2c_lock); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 303 | if (ret < 0) { |
| 304 | /* NOTE: diagnostic already emitted; that's all we should |
| 305 | * do unless gpio_*_value_cansleep() calls become different |
| 306 | * from their nonsleeping siblings (and report faults). |
| 307 | */ |
| 308 | return 0; |
| 309 | } |
| 310 | |
Andrew Ruder | 40a625d | 2013-08-07 16:52:40 -0500 | [diff] [blame] | 311 | return (reg_val & (1u << (off % BANK_SZ))) ? 1 : 0; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 312 | } |
| 313 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 314 | static void pca953x_gpio_set_value(struct gpio_chip *gc, unsigned off, int val) |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 315 | { |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 316 | struct pca953x_chip *chip; |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 317 | u8 reg_val; |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 318 | int ret, offset = 0; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 319 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 320 | chip = container_of(gc, struct pca953x_chip, gpio_chip); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 321 | |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 322 | mutex_lock(&chip->i2c_lock); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 323 | if (val) |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 324 | reg_val = chip->reg_output[off / BANK_SZ] |
| 325 | | (1u << (off % BANK_SZ)); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 326 | else |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 327 | reg_val = chip->reg_output[off / BANK_SZ] |
| 328 | & ~(1u << (off % BANK_SZ)); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 329 | |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 330 | switch (chip->chip_type) { |
| 331 | case PCA953X_TYPE: |
| 332 | offset = PCA953X_OUTPUT; |
| 333 | break; |
| 334 | case PCA957X_TYPE: |
| 335 | offset = PCA957X_OUT; |
| 336 | break; |
| 337 | } |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 338 | ret = pca953x_write_single(chip, offset, reg_val, off); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 339 | if (ret) |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 340 | goto exit; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 341 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 342 | chip->reg_output[off / BANK_SZ] = reg_val; |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 343 | exit: |
| 344 | mutex_unlock(&chip->i2c_lock); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 345 | } |
| 346 | |
Guennadi Liakhovetski | f5e8ff4 | 2008-02-06 01:39:04 -0800 | [diff] [blame] | 347 | static void pca953x_setup_gpio(struct pca953x_chip *chip, int gpios) |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 348 | { |
| 349 | struct gpio_chip *gc; |
| 350 | |
| 351 | gc = &chip->gpio_chip; |
| 352 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 353 | gc->direction_input = pca953x_gpio_direction_input; |
| 354 | gc->direction_output = pca953x_gpio_direction_output; |
| 355 | gc->get = pca953x_gpio_get_value; |
| 356 | gc->set = pca953x_gpio_set_value; |
Linus Walleij | 9fb1f39 | 2013-12-04 14:42:46 +0100 | [diff] [blame] | 357 | gc->can_sleep = true; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 358 | |
| 359 | gc->base = chip->gpio_start; |
Guennadi Liakhovetski | f5e8ff4 | 2008-02-06 01:39:04 -0800 | [diff] [blame] | 360 | gc->ngpio = gpios; |
| 361 | gc->label = chip->client->name; |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 362 | gc->dev = &chip->client->dev; |
Guennadi Liakhovetski | d72cbed | 2008-04-28 02:14:45 -0700 | [diff] [blame] | 363 | gc->owner = THIS_MODULE; |
Daniel Silverstone | 77906a54 | 2009-06-17 16:26:15 -0700 | [diff] [blame] | 364 | gc->names = chip->names; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 365 | } |
| 366 | |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 367 | #ifdef CONFIG_GPIO_PCA953X_IRQ |
| 368 | static int pca953x_gpio_to_irq(struct gpio_chip *gc, unsigned off) |
| 369 | { |
| 370 | struct pca953x_chip *chip; |
| 371 | |
| 372 | chip = container_of(gc, struct pca953x_chip, gpio_chip); |
Gregory CLEMENT | 0e8f2fd | 2013-01-25 17:59:27 +0100 | [diff] [blame] | 373 | return irq_create_mapping(chip->domain, off); |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 374 | } |
| 375 | |
Lennert Buytenhek | 6f5cfc0 | 2011-01-12 17:00:15 -0800 | [diff] [blame] | 376 | static void pca953x_irq_mask(struct irq_data *d) |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 377 | { |
Lennert Buytenhek | 6f5cfc0 | 2011-01-12 17:00:15 -0800 | [diff] [blame] | 378 | struct pca953x_chip *chip = irq_data_get_irq_chip_data(d); |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 379 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 380 | chip->irq_mask[d->hwirq / BANK_SZ] &= ~(1 << (d->hwirq % BANK_SZ)); |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 381 | } |
| 382 | |
Lennert Buytenhek | 6f5cfc0 | 2011-01-12 17:00:15 -0800 | [diff] [blame] | 383 | static void pca953x_irq_unmask(struct irq_data *d) |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 384 | { |
Lennert Buytenhek | 6f5cfc0 | 2011-01-12 17:00:15 -0800 | [diff] [blame] | 385 | struct pca953x_chip *chip = irq_data_get_irq_chip_data(d); |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 386 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 387 | chip->irq_mask[d->hwirq / BANK_SZ] |= 1 << (d->hwirq % BANK_SZ); |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 388 | } |
| 389 | |
Lennert Buytenhek | 6f5cfc0 | 2011-01-12 17:00:15 -0800 | [diff] [blame] | 390 | static void pca953x_irq_bus_lock(struct irq_data *d) |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 391 | { |
Lennert Buytenhek | 6f5cfc0 | 2011-01-12 17:00:15 -0800 | [diff] [blame] | 392 | struct pca953x_chip *chip = irq_data_get_irq_chip_data(d); |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 393 | |
| 394 | mutex_lock(&chip->irq_lock); |
| 395 | } |
| 396 | |
Lennert Buytenhek | 6f5cfc0 | 2011-01-12 17:00:15 -0800 | [diff] [blame] | 397 | static void pca953x_irq_bus_sync_unlock(struct irq_data *d) |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 398 | { |
Lennert Buytenhek | 6f5cfc0 | 2011-01-12 17:00:15 -0800 | [diff] [blame] | 399 | struct pca953x_chip *chip = irq_data_get_irq_chip_data(d); |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 400 | u8 new_irqs; |
| 401 | int level, i; |
Marc Zyngier | a2cb9ae | 2010-04-27 13:13:07 -0700 | [diff] [blame] | 402 | |
| 403 | /* Look for any newly setup interrupt */ |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 404 | for (i = 0; i < NBANK(chip); i++) { |
| 405 | new_irqs = chip->irq_trig_fall[i] | chip->irq_trig_raise[i]; |
| 406 | new_irqs &= ~chip->reg_direction[i]; |
Marc Zyngier | a2cb9ae | 2010-04-27 13:13:07 -0700 | [diff] [blame] | 407 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 408 | while (new_irqs) { |
| 409 | level = __ffs(new_irqs); |
| 410 | pca953x_gpio_direction_input(&chip->gpio_chip, |
| 411 | level + (BANK_SZ * i)); |
| 412 | new_irqs &= ~(1 << level); |
| 413 | } |
Marc Zyngier | a2cb9ae | 2010-04-27 13:13:07 -0700 | [diff] [blame] | 414 | } |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 415 | |
| 416 | mutex_unlock(&chip->irq_lock); |
| 417 | } |
| 418 | |
Lennert Buytenhek | 6f5cfc0 | 2011-01-12 17:00:15 -0800 | [diff] [blame] | 419 | static int pca953x_irq_set_type(struct irq_data *d, unsigned int type) |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 420 | { |
Lennert Buytenhek | 6f5cfc0 | 2011-01-12 17:00:15 -0800 | [diff] [blame] | 421 | struct pca953x_chip *chip = irq_data_get_irq_chip_data(d); |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 422 | int bank_nb = d->hwirq / BANK_SZ; |
| 423 | u8 mask = 1 << (d->hwirq % BANK_SZ); |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 424 | |
| 425 | if (!(type & IRQ_TYPE_EDGE_BOTH)) { |
| 426 | dev_err(&chip->client->dev, "irq %d: unsupported type %d\n", |
Lennert Buytenhek | 6f5cfc0 | 2011-01-12 17:00:15 -0800 | [diff] [blame] | 427 | d->irq, type); |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 428 | return -EINVAL; |
| 429 | } |
| 430 | |
| 431 | if (type & IRQ_TYPE_EDGE_FALLING) |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 432 | chip->irq_trig_fall[bank_nb] |= mask; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 433 | else |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 434 | chip->irq_trig_fall[bank_nb] &= ~mask; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 435 | |
| 436 | if (type & IRQ_TYPE_EDGE_RISING) |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 437 | chip->irq_trig_raise[bank_nb] |= mask; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 438 | else |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 439 | chip->irq_trig_raise[bank_nb] &= ~mask; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 440 | |
Marc Zyngier | a2cb9ae | 2010-04-27 13:13:07 -0700 | [diff] [blame] | 441 | return 0; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | static struct irq_chip pca953x_irq_chip = { |
| 445 | .name = "pca953x", |
Lennert Buytenhek | 6f5cfc0 | 2011-01-12 17:00:15 -0800 | [diff] [blame] | 446 | .irq_mask = pca953x_irq_mask, |
| 447 | .irq_unmask = pca953x_irq_unmask, |
| 448 | .irq_bus_lock = pca953x_irq_bus_lock, |
| 449 | .irq_bus_sync_unlock = pca953x_irq_bus_sync_unlock, |
| 450 | .irq_set_type = pca953x_irq_set_type, |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 451 | }; |
| 452 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 453 | static u8 pca953x_irq_pending(struct pca953x_chip *chip, u8 *pending) |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 454 | { |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 455 | u8 cur_stat[MAX_BANK]; |
| 456 | u8 old_stat[MAX_BANK]; |
| 457 | u8 pendings = 0; |
| 458 | u8 trigger[MAX_BANK], triggers = 0; |
| 459 | int ret, i, offset = 0; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 460 | |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 461 | switch (chip->chip_type) { |
| 462 | case PCA953X_TYPE: |
| 463 | offset = PCA953X_INPUT; |
| 464 | break; |
| 465 | case PCA957X_TYPE: |
| 466 | offset = PCA957X_IN; |
| 467 | break; |
| 468 | } |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 469 | ret = pca953x_read_regs(chip, offset, cur_stat); |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 470 | if (ret) |
| 471 | return 0; |
| 472 | |
| 473 | /* Remove output pins from the equation */ |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 474 | for (i = 0; i < NBANK(chip); i++) |
| 475 | cur_stat[i] &= chip->reg_direction[i]; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 476 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 477 | memcpy(old_stat, chip->irq_stat, NBANK(chip)); |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 478 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 479 | for (i = 0; i < NBANK(chip); i++) { |
| 480 | trigger[i] = (cur_stat[i] ^ old_stat[i]) & chip->irq_mask[i]; |
| 481 | triggers += trigger[i]; |
| 482 | } |
| 483 | |
| 484 | if (!triggers) |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 485 | return 0; |
| 486 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 487 | memcpy(chip->irq_stat, cur_stat, NBANK(chip)); |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 488 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 489 | for (i = 0; i < NBANK(chip); i++) { |
| 490 | pending[i] = (old_stat[i] & chip->irq_trig_fall[i]) | |
| 491 | (cur_stat[i] & chip->irq_trig_raise[i]); |
| 492 | pending[i] &= trigger[i]; |
| 493 | pendings += pending[i]; |
| 494 | } |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 495 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 496 | return pendings; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | static irqreturn_t pca953x_irq_handler(int irq, void *devid) |
| 500 | { |
| 501 | struct pca953x_chip *chip = devid; |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 502 | u8 pending[MAX_BANK]; |
| 503 | u8 level; |
| 504 | int i; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 505 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 506 | if (!pca953x_irq_pending(chip, pending)) |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 507 | return IRQ_HANDLED; |
| 508 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 509 | for (i = 0; i < NBANK(chip); i++) { |
| 510 | while (pending[i]) { |
| 511 | level = __ffs(pending[i]); |
| 512 | handle_nested_irq(irq_find_mapping(chip->domain, |
| 513 | level + (BANK_SZ * i))); |
| 514 | pending[i] &= ~(1 << level); |
| 515 | } |
| 516 | } |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 517 | |
| 518 | return IRQ_HANDLED; |
| 519 | } |
| 520 | |
Gregory CLEMENT | 0e8f2fd | 2013-01-25 17:59:27 +0100 | [diff] [blame] | 521 | static int pca953x_gpio_irq_map(struct irq_domain *d, unsigned int irq, |
| 522 | irq_hw_number_t hwirq) |
| 523 | { |
| 524 | irq_clear_status_flags(irq, IRQ_NOREQUEST); |
| 525 | irq_set_chip_data(irq, d->host_data); |
| 526 | irq_set_chip(irq, &pca953x_irq_chip); |
| 527 | irq_set_nested_thread(irq, true); |
| 528 | #ifdef CONFIG_ARM |
| 529 | set_irq_flags(irq, IRQF_VALID); |
| 530 | #else |
| 531 | irq_set_noprobe(irq); |
| 532 | #endif |
| 533 | |
| 534 | return 0; |
| 535 | } |
| 536 | |
| 537 | static const struct irq_domain_ops pca953x_irq_simple_ops = { |
| 538 | .map = pca953x_gpio_irq_map, |
| 539 | .xlate = irq_domain_xlate_twocell, |
| 540 | }; |
| 541 | |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 542 | static int pca953x_irq_setup(struct pca953x_chip *chip, |
David Jander | c6dcf59 | 2011-06-14 11:00:55 +0200 | [diff] [blame] | 543 | const struct i2c_device_id *id, |
| 544 | int irq_base) |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 545 | { |
| 546 | struct i2c_client *client = chip->client; |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 547 | int ret, i, offset = 0; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 548 | |
David Jander | c6dcf59 | 2011-06-14 11:00:55 +0200 | [diff] [blame] | 549 | if (irq_base != -1 |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 550 | && (id->driver_data & PCA_INT)) { |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 551 | |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 552 | switch (chip->chip_type) { |
| 553 | case PCA953X_TYPE: |
| 554 | offset = PCA953X_INPUT; |
| 555 | break; |
| 556 | case PCA957X_TYPE: |
| 557 | offset = PCA957X_IN; |
| 558 | break; |
| 559 | } |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 560 | ret = pca953x_read_regs(chip, offset, chip->irq_stat); |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 561 | if (ret) |
Linus Walleij | b42748c | 2013-01-25 17:59:28 +0100 | [diff] [blame] | 562 | return ret; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 563 | |
| 564 | /* |
| 565 | * There is no way to know which GPIO line generated the |
| 566 | * interrupt. We have to rely on the previous read for |
| 567 | * this purpose. |
| 568 | */ |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 569 | for (i = 0; i < NBANK(chip); i++) |
| 570 | chip->irq_stat[i] &= chip->reg_direction[i]; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 571 | mutex_init(&chip->irq_lock); |
| 572 | |
Gregory CLEMENT | 0e8f2fd | 2013-01-25 17:59:27 +0100 | [diff] [blame] | 573 | chip->domain = irq_domain_add_simple(client->dev.of_node, |
Maxime Ripard | 55ecd26 | 2012-11-08 18:01:51 +0100 | [diff] [blame] | 574 | chip->gpio_chip.ngpio, |
Gregory CLEMENT | 0e8f2fd | 2013-01-25 17:59:27 +0100 | [diff] [blame] | 575 | irq_base, |
| 576 | &pca953x_irq_simple_ops, |
Alexandre Belloni | e7a7f97 | 2013-04-03 19:40:14 +0200 | [diff] [blame] | 577 | chip); |
Gregory CLEMENT | 0e8f2fd | 2013-01-25 17:59:27 +0100 | [diff] [blame] | 578 | if (!chip->domain) |
| 579 | return -ENODEV; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 580 | |
Linus Walleij | b42748c | 2013-01-25 17:59:28 +0100 | [diff] [blame] | 581 | ret = devm_request_threaded_irq(&client->dev, |
| 582 | client->irq, |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 583 | NULL, |
| 584 | pca953x_irq_handler, |
David Jander | 17e8b42 | 2011-06-08 11:34:41 -0600 | [diff] [blame] | 585 | IRQF_TRIGGER_LOW | IRQF_ONESHOT, |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 586 | dev_name(&client->dev), chip); |
| 587 | if (ret) { |
| 588 | dev_err(&client->dev, "failed to request irq %d\n", |
| 589 | client->irq); |
Gregory CLEMENT | 0e8f2fd | 2013-01-25 17:59:27 +0100 | [diff] [blame] | 590 | return ret; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 591 | } |
| 592 | |
| 593 | chip->gpio_chip.to_irq = pca953x_gpio_to_irq; |
| 594 | } |
| 595 | |
| 596 | return 0; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 597 | } |
| 598 | |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 599 | #else /* CONFIG_GPIO_PCA953X_IRQ */ |
| 600 | static int pca953x_irq_setup(struct pca953x_chip *chip, |
David Jander | c6dcf59 | 2011-06-14 11:00:55 +0200 | [diff] [blame] | 601 | const struct i2c_device_id *id, |
| 602 | int irq_base) |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 603 | { |
| 604 | struct i2c_client *client = chip->client; |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 605 | |
David Jander | c6dcf59 | 2011-06-14 11:00:55 +0200 | [diff] [blame] | 606 | if (irq_base != -1 && (id->driver_data & PCA_INT)) |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 607 | dev_warn(&client->dev, "interrupt support not compiled in\n"); |
| 608 | |
| 609 | return 0; |
| 610 | } |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 611 | #endif |
| 612 | |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 613 | /* |
| 614 | * Handlers for alternative sources of platform_data |
| 615 | */ |
| 616 | #ifdef CONFIG_OF_GPIO |
| 617 | /* |
| 618 | * Translate OpenFirmware node properties into platform_data |
David Jander | a57339b | 2011-06-14 11:00:56 +0200 | [diff] [blame] | 619 | * WARNING: This is DEPRECATED and will be removed eventually! |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 620 | */ |
Mark Brown | 404ba2b | 2011-11-21 17:57:25 +0000 | [diff] [blame] | 621 | static void |
Chandrabhanu Mahapatra | 6a7b36a | 2012-07-10 19:05:37 +0530 | [diff] [blame] | 622 | pca953x_get_alt_pdata(struct i2c_client *client, int *gpio_base, u32 *invert) |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 623 | { |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 624 | struct device_node *node; |
Dirk Eibach | 1648237 | 2011-02-24 10:20:43 +0100 | [diff] [blame] | 625 | const __be32 *val; |
| 626 | int size; |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 627 | |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 628 | node = client->dev.of_node; |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 629 | if (node == NULL) |
David Jander | c6dcf59 | 2011-06-14 11:00:55 +0200 | [diff] [blame] | 630 | return; |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 631 | |
David Jander | c6dcf59 | 2011-06-14 11:00:55 +0200 | [diff] [blame] | 632 | *gpio_base = -1; |
Dirk Eibach | 1648237 | 2011-02-24 10:20:43 +0100 | [diff] [blame] | 633 | val = of_get_property(node, "linux,gpio-base", &size); |
David Jander | a57339b | 2011-06-14 11:00:56 +0200 | [diff] [blame] | 634 | WARN(val, "%s: device-tree property 'linux,gpio-base' is deprecated!", __func__); |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 635 | if (val) { |
Dirk Eibach | 1648237 | 2011-02-24 10:20:43 +0100 | [diff] [blame] | 636 | if (size != sizeof(*val)) |
| 637 | dev_warn(&client->dev, "%s: wrong linux,gpio-base\n", |
| 638 | node->full_name); |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 639 | else |
David Jander | c6dcf59 | 2011-06-14 11:00:55 +0200 | [diff] [blame] | 640 | *gpio_base = be32_to_cpup(val); |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | val = of_get_property(node, "polarity", NULL); |
David Jander | a57339b | 2011-06-14 11:00:56 +0200 | [diff] [blame] | 644 | WARN(val, "%s: device-tree property 'polarity' is deprecated!", __func__); |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 645 | if (val) |
David Jander | c6dcf59 | 2011-06-14 11:00:55 +0200 | [diff] [blame] | 646 | *invert = *val; |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 647 | } |
| 648 | #else |
Mark Brown | 404ba2b | 2011-11-21 17:57:25 +0000 | [diff] [blame] | 649 | static void |
Chandrabhanu Mahapatra | 6a7b36a | 2012-07-10 19:05:37 +0530 | [diff] [blame] | 650 | pca953x_get_alt_pdata(struct i2c_client *client, int *gpio_base, u32 *invert) |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 651 | { |
Hartmut Knaack | 25fcf2b | 2011-10-11 00:22:45 +0200 | [diff] [blame] | 652 | *gpio_base = -1; |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 653 | } |
| 654 | #endif |
| 655 | |
Bill Pemberton | 3836309 | 2012-11-19 13:22:34 -0500 | [diff] [blame] | 656 | static int device_pca953x_init(struct pca953x_chip *chip, u32 invert) |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 657 | { |
| 658 | int ret; |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 659 | u8 val[MAX_BANK]; |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 660 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 661 | ret = pca953x_read_regs(chip, PCA953X_OUTPUT, chip->reg_output); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 662 | if (ret) |
| 663 | goto out; |
| 664 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 665 | ret = pca953x_read_regs(chip, PCA953X_DIRECTION, |
| 666 | chip->reg_direction); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 667 | if (ret) |
| 668 | goto out; |
| 669 | |
| 670 | /* set platform specific polarity inversion */ |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 671 | if (invert) |
| 672 | memset(val, 0xFF, NBANK(chip)); |
| 673 | else |
| 674 | memset(val, 0, NBANK(chip)); |
| 675 | |
| 676 | ret = pca953x_write_regs(chip, PCA953X_INVERT, val); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 677 | out: |
| 678 | return ret; |
| 679 | } |
| 680 | |
Bill Pemberton | 3836309 | 2012-11-19 13:22:34 -0500 | [diff] [blame] | 681 | static int device_pca957x_init(struct pca953x_chip *chip, u32 invert) |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 682 | { |
| 683 | int ret; |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 684 | u8 val[MAX_BANK]; |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 685 | |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 686 | ret = pca953x_read_regs(chip, PCA957X_OUT, chip->reg_output); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 687 | if (ret) |
| 688 | goto out; |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 689 | ret = pca953x_read_regs(chip, PCA957X_CFG, chip->reg_direction); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 690 | if (ret) |
| 691 | goto out; |
| 692 | |
| 693 | /* set platform specific polarity inversion */ |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 694 | if (invert) |
| 695 | memset(val, 0xFF, NBANK(chip)); |
| 696 | else |
| 697 | memset(val, 0, NBANK(chip)); |
| 698 | pca953x_write_regs(chip, PCA957X_INVRT, val); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 699 | |
| 700 | /* To enable register 6, 7 to controll pull up and pull down */ |
Gregory CLEMENT | f5f0b7a | 2013-01-22 22:10:23 +0100 | [diff] [blame] | 701 | memset(val, 0x02, NBANK(chip)); |
| 702 | pca953x_write_regs(chip, PCA957X_BKEN, val); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 703 | |
| 704 | return 0; |
| 705 | out: |
| 706 | return ret; |
| 707 | } |
| 708 | |
Bill Pemberton | 3836309 | 2012-11-19 13:22:34 -0500 | [diff] [blame] | 709 | static int pca953x_probe(struct i2c_client *client, |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 710 | const struct i2c_device_id *id) |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 711 | { |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 712 | struct pca953x_platform_data *pdata; |
| 713 | struct pca953x_chip *chip; |
Chandrabhanu Mahapatra | 6a7b36a | 2012-07-10 19:05:37 +0530 | [diff] [blame] | 714 | int irq_base = 0; |
Wolfram Sang | 7ea2aa2 | 2011-10-14 15:32:00 +0200 | [diff] [blame] | 715 | int ret; |
Chandrabhanu Mahapatra | 6a7b36a | 2012-07-10 19:05:37 +0530 | [diff] [blame] | 716 | u32 invert = 0; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 717 | |
Linus Walleij | b42748c | 2013-01-25 17:59:28 +0100 | [diff] [blame] | 718 | chip = devm_kzalloc(&client->dev, |
| 719 | sizeof(struct pca953x_chip), GFP_KERNEL); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 720 | if (chip == NULL) |
| 721 | return -ENOMEM; |
| 722 | |
Jingoo Han | e56aee1 | 2013-07-30 17:08:05 +0900 | [diff] [blame] | 723 | pdata = dev_get_platdata(&client->dev); |
David Jander | c6dcf59 | 2011-06-14 11:00:55 +0200 | [diff] [blame] | 724 | if (pdata) { |
| 725 | irq_base = pdata->irq_base; |
| 726 | chip->gpio_start = pdata->gpio_base; |
| 727 | invert = pdata->invert; |
| 728 | chip->names = pdata->names; |
| 729 | } else { |
| 730 | pca953x_get_alt_pdata(client, &chip->gpio_start, &invert); |
David Jander | a57339b | 2011-06-14 11:00:56 +0200 | [diff] [blame] | 731 | #ifdef CONFIG_OF_GPIO |
| 732 | /* If I2C node has no interrupts property, disable GPIO interrupts */ |
| 733 | if (of_find_property(client->dev.of_node, "interrupts", NULL) == NULL) |
| 734 | irq_base = -1; |
| 735 | #endif |
Nate Case | 1965d30 | 2009-06-17 16:26:17 -0700 | [diff] [blame] | 736 | } |
| 737 | |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 738 | chip->client = client; |
| 739 | |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 740 | chip->chip_type = id->driver_data & (PCA953X_TYPE | PCA957X_TYPE); |
Daniel Silverstone | 77906a54 | 2009-06-17 16:26:15 -0700 | [diff] [blame] | 741 | |
Roland Stigge | 6e20fb1 | 2011-02-10 15:01:23 -0800 | [diff] [blame] | 742 | mutex_init(&chip->i2c_lock); |
| 743 | |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 744 | /* initialize cached registers from their original values. |
| 745 | * we can't share this chip with another i2c master. |
| 746 | */ |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 747 | pca953x_setup_gpio(chip, id->driver_data & PCA_GPIO_MASK); |
Guennadi Liakhovetski | f5e8ff4 | 2008-02-06 01:39:04 -0800 | [diff] [blame] | 748 | |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 749 | if (chip->chip_type == PCA953X_TYPE) |
Wolfram Sang | 7ea2aa2 | 2011-10-14 15:32:00 +0200 | [diff] [blame] | 750 | ret = device_pca953x_init(chip, invert); |
Haojian Zhuang | 33226ff | 2011-04-18 22:12:46 +0800 | [diff] [blame] | 751 | else |
Wolfram Sang | 7ea2aa2 | 2011-10-14 15:32:00 +0200 | [diff] [blame] | 752 | ret = device_pca957x_init(chip, invert); |
| 753 | if (ret) |
Linus Walleij | b42748c | 2013-01-25 17:59:28 +0100 | [diff] [blame] | 754 | return ret; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 755 | |
David Jander | c6dcf59 | 2011-06-14 11:00:55 +0200 | [diff] [blame] | 756 | ret = pca953x_irq_setup(chip, id, irq_base); |
Marc Zyngier | 89ea8bb | 2010-03-05 13:44:36 -0800 | [diff] [blame] | 757 | if (ret) |
Linus Walleij | b42748c | 2013-01-25 17:59:28 +0100 | [diff] [blame] | 758 | return ret; |
Guennadi Liakhovetski | f5e8ff4 | 2008-02-06 01:39:04 -0800 | [diff] [blame] | 759 | |
| 760 | ret = gpiochip_add(&chip->gpio_chip); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 761 | if (ret) |
Linus Walleij | b42748c | 2013-01-25 17:59:28 +0100 | [diff] [blame] | 762 | return ret; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 763 | |
David Jander | c6dcf59 | 2011-06-14 11:00:55 +0200 | [diff] [blame] | 764 | if (pdata && pdata->setup) { |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 765 | ret = pdata->setup(client, chip->gpio_chip.base, |
| 766 | chip->gpio_chip.ngpio, pdata->context); |
| 767 | if (ret < 0) |
| 768 | dev_warn(&client->dev, "setup failed, %d\n", ret); |
| 769 | } |
| 770 | |
| 771 | i2c_set_clientdata(client, chip); |
| 772 | return 0; |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 773 | } |
| 774 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 775 | static int pca953x_remove(struct i2c_client *client) |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 776 | { |
Jingoo Han | e56aee1 | 2013-07-30 17:08:05 +0900 | [diff] [blame] | 777 | struct pca953x_platform_data *pdata = dev_get_platdata(&client->dev); |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 778 | struct pca953x_chip *chip = i2c_get_clientdata(client); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 779 | int ret = 0; |
| 780 | |
David Jander | c6dcf59 | 2011-06-14 11:00:55 +0200 | [diff] [blame] | 781 | if (pdata && pdata->teardown) { |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 782 | ret = pdata->teardown(client, chip->gpio_chip.base, |
| 783 | chip->gpio_chip.ngpio, pdata->context); |
| 784 | if (ret < 0) { |
| 785 | dev_err(&client->dev, "%s failed, %d\n", |
| 786 | "teardown", ret); |
| 787 | return ret; |
| 788 | } |
| 789 | } |
| 790 | |
| 791 | ret = gpiochip_remove(&chip->gpio_chip); |
| 792 | if (ret) { |
| 793 | dev_err(&client->dev, "%s failed, %d\n", |
| 794 | "gpiochip_remove()", ret); |
| 795 | return ret; |
| 796 | } |
| 797 | |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 798 | return 0; |
| 799 | } |
| 800 | |
Maxime Ripard | ed32620 | 2012-11-08 18:01:52 +0100 | [diff] [blame] | 801 | static const struct of_device_id pca953x_dt_ids[] = { |
Gregory CLEMENT | 89f5df0 | 2013-01-22 22:10:24 +0100 | [diff] [blame] | 802 | { .compatible = "nxp,pca9505", }, |
Maxime Ripard | ed32620 | 2012-11-08 18:01:52 +0100 | [diff] [blame] | 803 | { .compatible = "nxp,pca9534", }, |
| 804 | { .compatible = "nxp,pca9535", }, |
| 805 | { .compatible = "nxp,pca9536", }, |
| 806 | { .compatible = "nxp,pca9537", }, |
| 807 | { .compatible = "nxp,pca9538", }, |
| 808 | { .compatible = "nxp,pca9539", }, |
| 809 | { .compatible = "nxp,pca9554", }, |
| 810 | { .compatible = "nxp,pca9555", }, |
| 811 | { .compatible = "nxp,pca9556", }, |
| 812 | { .compatible = "nxp,pca9557", }, |
| 813 | { .compatible = "nxp,pca9574", }, |
| 814 | { .compatible = "nxp,pca9575", }, |
| 815 | |
| 816 | { .compatible = "maxim,max7310", }, |
| 817 | { .compatible = "maxim,max7312", }, |
| 818 | { .compatible = "maxim,max7313", }, |
| 819 | { .compatible = "maxim,max7315", }, |
| 820 | |
| 821 | { .compatible = "ti,pca6107", }, |
| 822 | { .compatible = "ti,tca6408", }, |
| 823 | { .compatible = "ti,tca6416", }, |
| 824 | { .compatible = "ti,tca6424", }, |
| 825 | { } |
| 826 | }; |
| 827 | |
| 828 | MODULE_DEVICE_TABLE(of, pca953x_dt_ids); |
| 829 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 830 | static struct i2c_driver pca953x_driver = { |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 831 | .driver = { |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 832 | .name = "pca953x", |
Maxime Ripard | ed32620 | 2012-11-08 18:01:52 +0100 | [diff] [blame] | 833 | .of_match_table = pca953x_dt_ids, |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 834 | }, |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 835 | .probe = pca953x_probe, |
| 836 | .remove = pca953x_remove, |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 837 | .id_table = pca953x_id, |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 838 | }; |
| 839 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 840 | static int __init pca953x_init(void) |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 841 | { |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 842 | return i2c_add_driver(&pca953x_driver); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 843 | } |
David Brownell | 2f8d119 | 2008-10-15 22:03:13 -0700 | [diff] [blame] | 844 | /* register after i2c postcore initcall and before |
| 845 | * subsys initcalls that may rely on these GPIOs |
| 846 | */ |
| 847 | subsys_initcall(pca953x_init); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 848 | |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 849 | static void __exit pca953x_exit(void) |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 850 | { |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 851 | i2c_del_driver(&pca953x_driver); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 852 | } |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 853 | module_exit(pca953x_exit); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 854 | |
| 855 | MODULE_AUTHOR("eric miao <eric.miao@marvell.com>"); |
Guennadi Liakhovetski | f3dc363 | 2008-02-06 01:39:03 -0800 | [diff] [blame] | 856 | MODULE_DESCRIPTION("GPIO expander driver for PCA953x"); |
eric miao | 9e60fdc | 2008-02-04 22:28:26 -0800 | [diff] [blame] | 857 | MODULE_LICENSE("GPL"); |