Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 1 | /* |
Grant Likely | c103de2 | 2011-06-04 18:38:28 -0600 | [diff] [blame] | 2 | * MAX732x I2C Port Expander with 8/16 I/O |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2007 Marvell International Ltd. |
| 5 | * Copyright (C) 2008 Jack Ren <jack.ren@marvell.com> |
| 6 | * Copyright (C) 2008 Eric Miao <eric.miao@marvell.com> |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 7 | * Copyright (C) 2015 Linus Walleij <linus.walleij@linaro.org> |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 8 | * |
| 9 | * Derived from drivers/gpio/pca953x.c |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; version 2 of the License. |
| 14 | */ |
| 15 | |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/init.h> |
| 18 | #include <linux/slab.h> |
| 19 | #include <linux/string.h> |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 20 | #include <linux/gpio/driver.h> |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 21 | #include <linux/interrupt.h> |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 22 | #include <linux/i2c.h> |
| 23 | #include <linux/i2c/max732x.h> |
Semen Protsenko | 43c4bcf | 2015-01-13 15:41:42 +0200 | [diff] [blame] | 24 | #include <linux/of.h> |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 25 | |
| 26 | |
| 27 | /* |
| 28 | * Each port of MAX732x (including MAX7319) falls into one of the |
| 29 | * following three types: |
| 30 | * |
| 31 | * - Push Pull Output |
| 32 | * - Input |
| 33 | * - Open Drain I/O |
| 34 | * |
| 35 | * designated by 'O', 'I' and 'P' individually according to MAXIM's |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 36 | * datasheets. 'I' and 'P' ports are interrupt capables, some with |
| 37 | * a dedicated interrupt mask. |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 38 | * |
| 39 | * There are two groups of I/O ports, each group usually includes |
| 40 | * up to 8 I/O ports, and is accessed by a specific I2C address: |
| 41 | * |
| 42 | * - Group A : by I2C address 0b'110xxxx |
| 43 | * - Group B : by I2C address 0b'101xxxx |
| 44 | * |
| 45 | * where 'xxxx' is decided by the connections of pin AD2/AD0. The |
| 46 | * address used also affects the initial state of output signals. |
| 47 | * |
| 48 | * Within each group of ports, there are five known combinations of |
| 49 | * I/O ports: 4I4O, 4P4O, 8I, 8P, 8O, see the definitions below for |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 50 | * the detailed organization of these ports. Only Goup A is interrupt |
| 51 | * capable. |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 52 | * |
| 53 | * GPIO numbers start from 'gpio_base + 0' to 'gpio_base + 8/16', |
| 54 | * and GPIOs from GROUP_A are numbered before those from GROUP_B |
| 55 | * (if there are two groups). |
| 56 | * |
| 57 | * NOTE: MAX7328/MAX7329 are drop-in replacements for PCF8574/a, so |
| 58 | * they are not supported by this driver. |
| 59 | */ |
| 60 | |
| 61 | #define PORT_NONE 0x0 /* '/' No Port */ |
| 62 | #define PORT_OUTPUT 0x1 /* 'O' Push-Pull, Output Only */ |
| 63 | #define PORT_INPUT 0x2 /* 'I' Input Only */ |
| 64 | #define PORT_OPENDRAIN 0x3 /* 'P' Open-Drain, I/O */ |
| 65 | |
| 66 | #define IO_4I4O 0x5AA5 /* O7 O6 I5 I4 I3 I2 O1 O0 */ |
| 67 | #define IO_4P4O 0x5FF5 /* O7 O6 P5 P4 P3 P2 O1 O0 */ |
| 68 | #define IO_8I 0xAAAA /* I7 I6 I5 I4 I3 I2 I1 I0 */ |
| 69 | #define IO_8P 0xFFFF /* P7 P6 P5 P4 P3 P2 P1 P0 */ |
| 70 | #define IO_8O 0x5555 /* O7 O6 O5 O4 O3 O2 O1 O0 */ |
| 71 | |
| 72 | #define GROUP_A(x) ((x) & 0xffff) /* I2C Addr: 0b'110xxxx */ |
| 73 | #define GROUP_B(x) ((x) << 16) /* I2C Addr: 0b'101xxxx */ |
| 74 | |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 75 | #define INT_NONE 0x0 /* No interrupt capability */ |
| 76 | #define INT_NO_MASK 0x1 /* Has interrupts, no mask */ |
| 77 | #define INT_INDEP_MASK 0x2 /* Has interrupts, independent mask */ |
| 78 | #define INT_MERGED_MASK 0x3 /* Has interrupts, merged mask */ |
| 79 | |
| 80 | #define INT_CAPS(x) (((uint64_t)(x)) << 32) |
| 81 | |
| 82 | enum { |
| 83 | MAX7319, |
| 84 | MAX7320, |
| 85 | MAX7321, |
| 86 | MAX7322, |
| 87 | MAX7323, |
| 88 | MAX7324, |
| 89 | MAX7325, |
| 90 | MAX7326, |
| 91 | MAX7327, |
| 92 | }; |
| 93 | |
| 94 | static uint64_t max732x_features[] = { |
| 95 | [MAX7319] = GROUP_A(IO_8I) | INT_CAPS(INT_MERGED_MASK), |
| 96 | [MAX7320] = GROUP_B(IO_8O), |
| 97 | [MAX7321] = GROUP_A(IO_8P) | INT_CAPS(INT_NO_MASK), |
| 98 | [MAX7322] = GROUP_A(IO_4I4O) | INT_CAPS(INT_MERGED_MASK), |
| 99 | [MAX7323] = GROUP_A(IO_4P4O) | INT_CAPS(INT_INDEP_MASK), |
| 100 | [MAX7324] = GROUP_A(IO_8I) | GROUP_B(IO_8O) | INT_CAPS(INT_MERGED_MASK), |
| 101 | [MAX7325] = GROUP_A(IO_8P) | GROUP_B(IO_8O) | INT_CAPS(INT_NO_MASK), |
| 102 | [MAX7326] = GROUP_A(IO_4I4O) | GROUP_B(IO_8O) | INT_CAPS(INT_MERGED_MASK), |
| 103 | [MAX7327] = GROUP_A(IO_4P4O) | GROUP_B(IO_8O) | INT_CAPS(INT_NO_MASK), |
| 104 | }; |
| 105 | |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 106 | static const struct i2c_device_id max732x_id[] = { |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 107 | { "max7319", MAX7319 }, |
| 108 | { "max7320", MAX7320 }, |
| 109 | { "max7321", MAX7321 }, |
| 110 | { "max7322", MAX7322 }, |
| 111 | { "max7323", MAX7323 }, |
| 112 | { "max7324", MAX7324 }, |
| 113 | { "max7325", MAX7325 }, |
| 114 | { "max7326", MAX7326 }, |
| 115 | { "max7327", MAX7327 }, |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 116 | { }, |
| 117 | }; |
| 118 | MODULE_DEVICE_TABLE(i2c, max732x_id); |
| 119 | |
Semen Protsenko | 43c4bcf | 2015-01-13 15:41:42 +0200 | [diff] [blame] | 120 | #ifdef CONFIG_OF |
| 121 | static const struct of_device_id max732x_of_table[] = { |
| 122 | { .compatible = "maxim,max7319" }, |
| 123 | { .compatible = "maxim,max7320" }, |
| 124 | { .compatible = "maxim,max7321" }, |
| 125 | { .compatible = "maxim,max7322" }, |
| 126 | { .compatible = "maxim,max7323" }, |
| 127 | { .compatible = "maxim,max7324" }, |
| 128 | { .compatible = "maxim,max7325" }, |
| 129 | { .compatible = "maxim,max7326" }, |
| 130 | { .compatible = "maxim,max7327" }, |
| 131 | { } |
| 132 | }; |
| 133 | MODULE_DEVICE_TABLE(of, max732x_of_table); |
| 134 | #endif |
| 135 | |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 136 | struct max732x_chip { |
| 137 | struct gpio_chip gpio_chip; |
| 138 | |
| 139 | struct i2c_client *client; /* "main" client */ |
| 140 | struct i2c_client *client_dummy; |
| 141 | struct i2c_client *client_group_a; |
| 142 | struct i2c_client *client_group_b; |
| 143 | |
| 144 | unsigned int mask_group_a; |
| 145 | unsigned int dir_input; |
| 146 | unsigned int dir_output; |
| 147 | |
| 148 | struct mutex lock; |
| 149 | uint8_t reg_out[2]; |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 150 | |
| 151 | #ifdef CONFIG_GPIO_MAX732X_IRQ |
Semen Protsenko | 479f8a5 | 2015-01-13 15:41:43 +0200 | [diff] [blame] | 152 | struct mutex irq_lock; |
Semen Protsenko | 479f8a5 | 2015-01-13 15:41:43 +0200 | [diff] [blame] | 153 | uint8_t irq_mask; |
| 154 | uint8_t irq_mask_cur; |
| 155 | uint8_t irq_trig_raise; |
| 156 | uint8_t irq_trig_fall; |
| 157 | uint8_t irq_features; |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 158 | #endif |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 159 | }; |
| 160 | |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 161 | static int max732x_writeb(struct max732x_chip *chip, int group_a, uint8_t val) |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 162 | { |
| 163 | struct i2c_client *client; |
| 164 | int ret; |
| 165 | |
| 166 | client = group_a ? chip->client_group_a : chip->client_group_b; |
| 167 | ret = i2c_smbus_write_byte(client, val); |
| 168 | if (ret < 0) { |
| 169 | dev_err(&client->dev, "failed writing\n"); |
| 170 | return ret; |
| 171 | } |
| 172 | |
| 173 | return 0; |
| 174 | } |
| 175 | |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 176 | static int max732x_readb(struct max732x_chip *chip, int group_a, uint8_t *val) |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 177 | { |
| 178 | struct i2c_client *client; |
| 179 | int ret; |
| 180 | |
| 181 | client = group_a ? chip->client_group_a : chip->client_group_b; |
| 182 | ret = i2c_smbus_read_byte(client); |
| 183 | if (ret < 0) { |
| 184 | dev_err(&client->dev, "failed reading\n"); |
| 185 | return ret; |
| 186 | } |
| 187 | |
| 188 | *val = (uint8_t)ret; |
| 189 | return 0; |
| 190 | } |
| 191 | |
| 192 | static inline int is_group_a(struct max732x_chip *chip, unsigned off) |
| 193 | { |
| 194 | return (1u << off) & chip->mask_group_a; |
| 195 | } |
| 196 | |
| 197 | static int max732x_gpio_get_value(struct gpio_chip *gc, unsigned off) |
| 198 | { |
Linus Walleij | 0788b64 | 2015-12-07 09:58:28 +0100 | [diff] [blame] | 199 | struct max732x_chip *chip = gpiochip_get_data(gc); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 200 | uint8_t reg_val; |
| 201 | int ret; |
| 202 | |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 203 | ret = max732x_readb(chip, is_group_a(chip, off), ®_val); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 204 | if (ret < 0) |
Linus Walleij | f966008 | 2015-12-21 11:12:55 +0100 | [diff] [blame] | 205 | return ret; |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 206 | |
Linus Walleij | f966008 | 2015-12-21 11:12:55 +0100 | [diff] [blame] | 207 | return !!(reg_val & (1u << (off & 0x7))); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 208 | } |
| 209 | |
Mans Rullgard | 161af6c | 2015-01-21 17:17:49 +0000 | [diff] [blame] | 210 | static void max732x_gpio_set_mask(struct gpio_chip *gc, unsigned off, int mask, |
| 211 | int val) |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 212 | { |
Linus Walleij | 0788b64 | 2015-12-07 09:58:28 +0100 | [diff] [blame] | 213 | struct max732x_chip *chip = gpiochip_get_data(gc); |
Mans Rullgard | 161af6c | 2015-01-21 17:17:49 +0000 | [diff] [blame] | 214 | uint8_t reg_out; |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 215 | int ret; |
| 216 | |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 217 | mutex_lock(&chip->lock); |
| 218 | |
| 219 | reg_out = (off > 7) ? chip->reg_out[1] : chip->reg_out[0]; |
Mans Rullgard | 161af6c | 2015-01-21 17:17:49 +0000 | [diff] [blame] | 220 | reg_out = (reg_out & ~mask) | (val & mask); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 221 | |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 222 | ret = max732x_writeb(chip, is_group_a(chip, off), reg_out); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 223 | if (ret < 0) |
| 224 | goto out; |
| 225 | |
| 226 | /* update the shadow register then */ |
| 227 | if (off > 7) |
| 228 | chip->reg_out[1] = reg_out; |
| 229 | else |
| 230 | chip->reg_out[0] = reg_out; |
| 231 | out: |
| 232 | mutex_unlock(&chip->lock); |
| 233 | } |
| 234 | |
Mans Rullgard | 161af6c | 2015-01-21 17:17:49 +0000 | [diff] [blame] | 235 | static void max732x_gpio_set_value(struct gpio_chip *gc, unsigned off, int val) |
| 236 | { |
| 237 | unsigned base = off & ~0x7; |
| 238 | uint8_t mask = 1u << (off & 0x7); |
| 239 | |
| 240 | max732x_gpio_set_mask(gc, base, mask, val << (off & 0x7)); |
| 241 | } |
| 242 | |
| 243 | static void max732x_gpio_set_multiple(struct gpio_chip *gc, |
| 244 | unsigned long *mask, unsigned long *bits) |
| 245 | { |
| 246 | unsigned mask_lo = mask[0] & 0xff; |
| 247 | unsigned mask_hi = (mask[0] >> 8) & 0xff; |
| 248 | |
| 249 | if (mask_lo) |
| 250 | max732x_gpio_set_mask(gc, 0, mask_lo, bits[0] & 0xff); |
| 251 | if (mask_hi) |
| 252 | max732x_gpio_set_mask(gc, 8, mask_hi, (bits[0] >> 8) & 0xff); |
| 253 | } |
| 254 | |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 255 | static int max732x_gpio_direction_input(struct gpio_chip *gc, unsigned off) |
| 256 | { |
Linus Walleij | 0788b64 | 2015-12-07 09:58:28 +0100 | [diff] [blame] | 257 | struct max732x_chip *chip = gpiochip_get_data(gc); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 258 | unsigned int mask = 1u << off; |
| 259 | |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 260 | if ((mask & chip->dir_input) == 0) { |
| 261 | dev_dbg(&chip->client->dev, "%s port %d is output only\n", |
| 262 | chip->client->name, off); |
| 263 | return -EACCES; |
| 264 | } |
| 265 | |
Marc Zyngier | a13c186 | 2010-05-26 14:42:21 -0700 | [diff] [blame] | 266 | /* |
| 267 | * Open-drain pins must be set to high impedance (which is |
| 268 | * equivalent to output-high) to be turned into an input. |
| 269 | */ |
| 270 | if ((mask & chip->dir_output)) |
| 271 | max732x_gpio_set_value(gc, off, 1); |
| 272 | |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 273 | return 0; |
| 274 | } |
| 275 | |
| 276 | static int max732x_gpio_direction_output(struct gpio_chip *gc, |
| 277 | unsigned off, int val) |
| 278 | { |
Linus Walleij | 0788b64 | 2015-12-07 09:58:28 +0100 | [diff] [blame] | 279 | struct max732x_chip *chip = gpiochip_get_data(gc); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 280 | unsigned int mask = 1u << off; |
| 281 | |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 282 | if ((mask & chip->dir_output) == 0) { |
| 283 | dev_dbg(&chip->client->dev, "%s port %d is input only\n", |
| 284 | chip->client->name, off); |
| 285 | return -EACCES; |
| 286 | } |
| 287 | |
| 288 | max732x_gpio_set_value(gc, off, val); |
| 289 | return 0; |
| 290 | } |
| 291 | |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 292 | #ifdef CONFIG_GPIO_MAX732X_IRQ |
| 293 | static int max732x_writew(struct max732x_chip *chip, uint16_t val) |
| 294 | { |
| 295 | int ret; |
| 296 | |
| 297 | val = cpu_to_le16(val); |
| 298 | |
| 299 | ret = i2c_master_send(chip->client_group_a, (char *)&val, 2); |
| 300 | if (ret < 0) { |
| 301 | dev_err(&chip->client_group_a->dev, "failed writing\n"); |
| 302 | return ret; |
| 303 | } |
| 304 | |
| 305 | return 0; |
| 306 | } |
| 307 | |
| 308 | static int max732x_readw(struct max732x_chip *chip, uint16_t *val) |
| 309 | { |
| 310 | int ret; |
| 311 | |
| 312 | ret = i2c_master_recv(chip->client_group_a, (char *)val, 2); |
| 313 | if (ret < 0) { |
| 314 | dev_err(&chip->client_group_a->dev, "failed reading\n"); |
| 315 | return ret; |
| 316 | } |
| 317 | |
| 318 | *val = le16_to_cpu(*val); |
| 319 | return 0; |
| 320 | } |
| 321 | |
| 322 | static void max732x_irq_update_mask(struct max732x_chip *chip) |
| 323 | { |
| 324 | uint16_t msg; |
| 325 | |
| 326 | if (chip->irq_mask == chip->irq_mask_cur) |
| 327 | return; |
| 328 | |
| 329 | chip->irq_mask = chip->irq_mask_cur; |
| 330 | |
| 331 | if (chip->irq_features == INT_NO_MASK) |
| 332 | return; |
| 333 | |
| 334 | mutex_lock(&chip->lock); |
| 335 | |
| 336 | switch (chip->irq_features) { |
| 337 | case INT_INDEP_MASK: |
| 338 | msg = (chip->irq_mask << 8) | chip->reg_out[0]; |
| 339 | max732x_writew(chip, msg); |
| 340 | break; |
| 341 | |
| 342 | case INT_MERGED_MASK: |
| 343 | msg = chip->irq_mask | chip->reg_out[0]; |
| 344 | max732x_writeb(chip, 1, (uint8_t)msg); |
| 345 | break; |
| 346 | } |
| 347 | |
| 348 | mutex_unlock(&chip->lock); |
| 349 | } |
| 350 | |
Lennert Buytenhek | fbc4667a | 2011-01-12 17:00:14 -0800 | [diff] [blame] | 351 | static void max732x_irq_mask(struct irq_data *d) |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 352 | { |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 353 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | 0788b64 | 2015-12-07 09:58:28 +0100 | [diff] [blame] | 354 | struct max732x_chip *chip = gpiochip_get_data(gc); |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 355 | |
Semen Protsenko | 479f8a5 | 2015-01-13 15:41:43 +0200 | [diff] [blame] | 356 | chip->irq_mask_cur &= ~(1 << d->hwirq); |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 357 | } |
| 358 | |
Lennert Buytenhek | fbc4667a | 2011-01-12 17:00:14 -0800 | [diff] [blame] | 359 | static void max732x_irq_unmask(struct irq_data *d) |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 360 | { |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 361 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | 0788b64 | 2015-12-07 09:58:28 +0100 | [diff] [blame] | 362 | struct max732x_chip *chip = gpiochip_get_data(gc); |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 363 | |
Semen Protsenko | 479f8a5 | 2015-01-13 15:41:43 +0200 | [diff] [blame] | 364 | chip->irq_mask_cur |= 1 << d->hwirq; |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 365 | } |
| 366 | |
Lennert Buytenhek | fbc4667a | 2011-01-12 17:00:14 -0800 | [diff] [blame] | 367 | static void max732x_irq_bus_lock(struct irq_data *d) |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 368 | { |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 369 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | 0788b64 | 2015-12-07 09:58:28 +0100 | [diff] [blame] | 370 | struct max732x_chip *chip = gpiochip_get_data(gc); |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 371 | |
| 372 | mutex_lock(&chip->irq_lock); |
| 373 | chip->irq_mask_cur = chip->irq_mask; |
| 374 | } |
| 375 | |
Lennert Buytenhek | fbc4667a | 2011-01-12 17:00:14 -0800 | [diff] [blame] | 376 | static void max732x_irq_bus_sync_unlock(struct irq_data *d) |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 377 | { |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 378 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | 0788b64 | 2015-12-07 09:58:28 +0100 | [diff] [blame] | 379 | struct max732x_chip *chip = gpiochip_get_data(gc); |
Semen Protsenko | 09afa27 | 2015-01-13 15:41:44 +0200 | [diff] [blame] | 380 | uint16_t new_irqs; |
| 381 | uint16_t level; |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 382 | |
| 383 | max732x_irq_update_mask(chip); |
Semen Protsenko | 09afa27 | 2015-01-13 15:41:44 +0200 | [diff] [blame] | 384 | |
| 385 | new_irqs = chip->irq_trig_fall | chip->irq_trig_raise; |
| 386 | while (new_irqs) { |
| 387 | level = __ffs(new_irqs); |
| 388 | max732x_gpio_direction_input(&chip->gpio_chip, level); |
| 389 | new_irqs &= ~(1 << level); |
| 390 | } |
| 391 | |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 392 | mutex_unlock(&chip->irq_lock); |
| 393 | } |
| 394 | |
Lennert Buytenhek | fbc4667a | 2011-01-12 17:00:14 -0800 | [diff] [blame] | 395 | static int max732x_irq_set_type(struct irq_data *d, unsigned int type) |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 396 | { |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 397 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | 0788b64 | 2015-12-07 09:58:28 +0100 | [diff] [blame] | 398 | struct max732x_chip *chip = gpiochip_get_data(gc); |
Semen Protsenko | 479f8a5 | 2015-01-13 15:41:43 +0200 | [diff] [blame] | 399 | uint16_t off = d->hwirq; |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 400 | uint16_t mask = 1 << off; |
| 401 | |
| 402 | if (!(mask & chip->dir_input)) { |
| 403 | dev_dbg(&chip->client->dev, "%s port %d is output only\n", |
| 404 | chip->client->name, off); |
| 405 | return -EACCES; |
| 406 | } |
| 407 | |
| 408 | if (!(type & IRQ_TYPE_EDGE_BOTH)) { |
| 409 | dev_err(&chip->client->dev, "irq %d: unsupported type %d\n", |
Lennert Buytenhek | fbc4667a | 2011-01-12 17:00:14 -0800 | [diff] [blame] | 410 | d->irq, type); |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 411 | return -EINVAL; |
| 412 | } |
| 413 | |
| 414 | if (type & IRQ_TYPE_EDGE_FALLING) |
| 415 | chip->irq_trig_fall |= mask; |
| 416 | else |
| 417 | chip->irq_trig_fall &= ~mask; |
| 418 | |
| 419 | if (type & IRQ_TYPE_EDGE_RISING) |
| 420 | chip->irq_trig_raise |= mask; |
| 421 | else |
| 422 | chip->irq_trig_raise &= ~mask; |
| 423 | |
Semen Protsenko | 09afa27 | 2015-01-13 15:41:44 +0200 | [diff] [blame] | 424 | return 0; |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 425 | } |
| 426 | |
Semen Protsenko | 67ddd32 | 2015-04-21 20:27:37 +0300 | [diff] [blame] | 427 | static int max732x_irq_set_wake(struct irq_data *data, unsigned int on) |
| 428 | { |
| 429 | struct max732x_chip *chip = irq_data_get_irq_chip_data(data); |
| 430 | |
| 431 | irq_set_irq_wake(chip->client->irq, on); |
| 432 | return 0; |
| 433 | } |
| 434 | |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 435 | static struct irq_chip max732x_irq_chip = { |
| 436 | .name = "max732x", |
Lennert Buytenhek | fbc4667a | 2011-01-12 17:00:14 -0800 | [diff] [blame] | 437 | .irq_mask = max732x_irq_mask, |
| 438 | .irq_unmask = max732x_irq_unmask, |
| 439 | .irq_bus_lock = max732x_irq_bus_lock, |
| 440 | .irq_bus_sync_unlock = max732x_irq_bus_sync_unlock, |
| 441 | .irq_set_type = max732x_irq_set_type, |
Semen Protsenko | 67ddd32 | 2015-04-21 20:27:37 +0300 | [diff] [blame] | 442 | .irq_set_wake = max732x_irq_set_wake, |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 443 | }; |
| 444 | |
| 445 | static uint8_t max732x_irq_pending(struct max732x_chip *chip) |
| 446 | { |
| 447 | uint8_t cur_stat; |
| 448 | uint8_t old_stat; |
| 449 | uint8_t trigger; |
| 450 | uint8_t pending; |
| 451 | uint16_t status; |
| 452 | int ret; |
| 453 | |
| 454 | ret = max732x_readw(chip, &status); |
| 455 | if (ret) |
| 456 | return 0; |
| 457 | |
| 458 | trigger = status >> 8; |
| 459 | trigger &= chip->irq_mask; |
| 460 | |
| 461 | if (!trigger) |
| 462 | return 0; |
| 463 | |
| 464 | cur_stat = status & 0xFF; |
| 465 | cur_stat &= chip->irq_mask; |
| 466 | |
| 467 | old_stat = cur_stat ^ trigger; |
| 468 | |
| 469 | pending = (old_stat & chip->irq_trig_fall) | |
| 470 | (cur_stat & chip->irq_trig_raise); |
| 471 | pending &= trigger; |
| 472 | |
| 473 | return pending; |
| 474 | } |
| 475 | |
| 476 | static irqreturn_t max732x_irq_handler(int irq, void *devid) |
| 477 | { |
| 478 | struct max732x_chip *chip = devid; |
| 479 | uint8_t pending; |
| 480 | uint8_t level; |
| 481 | |
| 482 | pending = max732x_irq_pending(chip); |
| 483 | |
| 484 | if (!pending) |
| 485 | return IRQ_HANDLED; |
| 486 | |
| 487 | do { |
| 488 | level = __ffs(pending); |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 489 | handle_nested_irq(irq_find_mapping(chip->gpio_chip.irqdomain, |
| 490 | level)); |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 491 | |
| 492 | pending &= ~(1 << level); |
| 493 | } while (pending); |
| 494 | |
| 495 | return IRQ_HANDLED; |
| 496 | } |
| 497 | |
| 498 | static int max732x_irq_setup(struct max732x_chip *chip, |
| 499 | const struct i2c_device_id *id) |
| 500 | { |
| 501 | struct i2c_client *client = chip->client; |
Jingoo Han | e56aee1 | 2013-07-30 17:08:05 +0900 | [diff] [blame] | 502 | struct max732x_platform_data *pdata = dev_get_platdata(&client->dev); |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 503 | int has_irq = max732x_features[id->driver_data] >> 32; |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 504 | int irq_base = 0; |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 505 | int ret; |
| 506 | |
Semen Protsenko | 43c4bcf | 2015-01-13 15:41:42 +0200 | [diff] [blame] | 507 | if (((pdata && pdata->irq_base) || client->irq) |
| 508 | && has_irq != INT_NONE) { |
Semen Protsenko | 43c4bcf | 2015-01-13 15:41:42 +0200 | [diff] [blame] | 509 | if (pdata) |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 510 | irq_base = pdata->irq_base; |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 511 | chip->irq_features = has_irq; |
| 512 | mutex_init(&chip->irq_lock); |
| 513 | |
Semen Protsenko | 68689db | 2015-04-21 16:19:04 +0300 | [diff] [blame] | 514 | ret = devm_request_threaded_irq(&client->dev, client->irq, |
| 515 | NULL, max732x_irq_handler, IRQF_ONESHOT | |
| 516 | IRQF_TRIGGER_FALLING | IRQF_SHARED, |
| 517 | dev_name(&client->dev), chip); |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 518 | if (ret) { |
| 519 | dev_err(&client->dev, "failed to request irq %d\n", |
| 520 | client->irq); |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 521 | return ret; |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 522 | } |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 523 | ret = gpiochip_irqchip_add(&chip->gpio_chip, |
| 524 | &max732x_irq_chip, |
| 525 | irq_base, |
Semen Protsenko | 606f13e | 2015-04-22 16:20:41 +0300 | [diff] [blame] | 526 | handle_simple_irq, |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 527 | IRQ_TYPE_NONE); |
| 528 | if (ret) { |
| 529 | dev_err(&client->dev, |
| 530 | "could not connect irqchip to gpiochip\n"); |
| 531 | return ret; |
| 532 | } |
| 533 | gpiochip_set_chained_irqchip(&chip->gpio_chip, |
| 534 | &max732x_irq_chip, |
| 535 | client->irq, |
| 536 | NULL); |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 537 | } |
| 538 | |
| 539 | return 0; |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 540 | } |
| 541 | |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 542 | #else /* CONFIG_GPIO_MAX732X_IRQ */ |
| 543 | static int max732x_irq_setup(struct max732x_chip *chip, |
| 544 | const struct i2c_device_id *id) |
| 545 | { |
| 546 | struct i2c_client *client = chip->client; |
Jingoo Han | e56aee1 | 2013-07-30 17:08:05 +0900 | [diff] [blame] | 547 | struct max732x_platform_data *pdata = dev_get_platdata(&client->dev); |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 548 | int has_irq = max732x_features[id->driver_data] >> 32; |
| 549 | |
Semen Protsenko | 43c4bcf | 2015-01-13 15:41:42 +0200 | [diff] [blame] | 550 | if (((pdata && pdata->irq_base) || client->irq) && has_irq != INT_NONE) |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 551 | dev_warn(&client->dev, "interrupt support not compiled in\n"); |
| 552 | |
| 553 | return 0; |
| 554 | } |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 555 | #endif |
| 556 | |
Bill Pemberton | 3836309 | 2012-11-19 13:22:34 -0500 | [diff] [blame] | 557 | static int max732x_setup_gpio(struct max732x_chip *chip, |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 558 | const struct i2c_device_id *id, |
| 559 | unsigned gpio_start) |
| 560 | { |
| 561 | struct gpio_chip *gc = &chip->gpio_chip; |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 562 | uint32_t id_data = (uint32_t)max732x_features[id->driver_data]; |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 563 | int i, port = 0; |
| 564 | |
| 565 | for (i = 0; i < 16; i++, id_data >>= 2) { |
| 566 | unsigned int mask = 1 << port; |
| 567 | |
| 568 | switch (id_data & 0x3) { |
| 569 | case PORT_OUTPUT: |
| 570 | chip->dir_output |= mask; |
| 571 | break; |
| 572 | case PORT_INPUT: |
| 573 | chip->dir_input |= mask; |
| 574 | break; |
| 575 | case PORT_OPENDRAIN: |
| 576 | chip->dir_output |= mask; |
| 577 | chip->dir_input |= mask; |
| 578 | break; |
| 579 | default: |
| 580 | continue; |
| 581 | } |
| 582 | |
| 583 | if (i < 8) |
| 584 | chip->mask_group_a |= mask; |
| 585 | port++; |
| 586 | } |
| 587 | |
| 588 | if (chip->dir_input) |
| 589 | gc->direction_input = max732x_gpio_direction_input; |
| 590 | if (chip->dir_output) { |
| 591 | gc->direction_output = max732x_gpio_direction_output; |
| 592 | gc->set = max732x_gpio_set_value; |
Mans Rullgard | 161af6c | 2015-01-21 17:17:49 +0000 | [diff] [blame] | 593 | gc->set_multiple = max732x_gpio_set_multiple; |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 594 | } |
| 595 | gc->get = max732x_gpio_get_value; |
Linus Walleij | 9fb1f39 | 2013-12-04 14:42:46 +0100 | [diff] [blame] | 596 | gc->can_sleep = true; |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 597 | |
| 598 | gc->base = gpio_start; |
| 599 | gc->ngpio = port; |
| 600 | gc->label = chip->client->name; |
Linus Walleij | 58383c7 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 601 | gc->parent = &chip->client->dev; |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 602 | gc->owner = THIS_MODULE; |
| 603 | |
| 604 | return port; |
| 605 | } |
| 606 | |
Semen Protsenko | 43c4bcf | 2015-01-13 15:41:42 +0200 | [diff] [blame] | 607 | static struct max732x_platform_data *of_gpio_max732x(struct device *dev) |
| 608 | { |
| 609 | struct max732x_platform_data *pdata; |
| 610 | |
| 611 | pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL); |
| 612 | if (!pdata) |
| 613 | return NULL; |
| 614 | |
| 615 | pdata->gpio_base = -1; |
| 616 | |
| 617 | return pdata; |
| 618 | } |
| 619 | |
Bill Pemberton | 3836309 | 2012-11-19 13:22:34 -0500 | [diff] [blame] | 620 | static int max732x_probe(struct i2c_client *client, |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 621 | const struct i2c_device_id *id) |
| 622 | { |
| 623 | struct max732x_platform_data *pdata; |
Semen Protsenko | 43c4bcf | 2015-01-13 15:41:42 +0200 | [diff] [blame] | 624 | struct device_node *node; |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 625 | struct max732x_chip *chip; |
| 626 | struct i2c_client *c; |
| 627 | uint16_t addr_a, addr_b; |
| 628 | int ret, nr_port; |
| 629 | |
Jingoo Han | e56aee1 | 2013-07-30 17:08:05 +0900 | [diff] [blame] | 630 | pdata = dev_get_platdata(&client->dev); |
Semen Protsenko | 43c4bcf | 2015-01-13 15:41:42 +0200 | [diff] [blame] | 631 | node = client->dev.of_node; |
| 632 | |
| 633 | if (!pdata && node) |
| 634 | pdata = of_gpio_max732x(&client->dev); |
| 635 | |
| 636 | if (!pdata) { |
Ben Dooks | a342d21 | 2009-01-15 13:50:45 -0800 | [diff] [blame] | 637 | dev_dbg(&client->dev, "no platform data\n"); |
| 638 | return -EINVAL; |
| 639 | } |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 640 | |
Semen Protsenko | 43c4bcf | 2015-01-13 15:41:42 +0200 | [diff] [blame] | 641 | chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 642 | if (chip == NULL) |
| 643 | return -ENOMEM; |
| 644 | chip->client = client; |
| 645 | |
| 646 | nr_port = max732x_setup_gpio(chip, id, pdata->gpio_base); |
Linus Walleij | 58383c7 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 647 | chip->gpio_chip.parent = &client->dev; |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 648 | |
| 649 | addr_a = (client->addr & 0x0f) | 0x60; |
| 650 | addr_b = (client->addr & 0x0f) | 0x50; |
| 651 | |
| 652 | switch (client->addr & 0x70) { |
| 653 | case 0x60: |
| 654 | chip->client_group_a = client; |
Axel Lin | 5535cb6 | 2010-05-26 14:42:20 -0700 | [diff] [blame] | 655 | if (nr_port > 8) { |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 656 | c = i2c_new_dummy(client->adapter, addr_b); |
| 657 | chip->client_group_b = chip->client_dummy = c; |
| 658 | } |
| 659 | break; |
| 660 | case 0x50: |
| 661 | chip->client_group_b = client; |
Axel Lin | 5535cb6 | 2010-05-26 14:42:20 -0700 | [diff] [blame] | 662 | if (nr_port > 8) { |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 663 | c = i2c_new_dummy(client->adapter, addr_a); |
| 664 | chip->client_group_a = chip->client_dummy = c; |
| 665 | } |
| 666 | break; |
| 667 | default: |
| 668 | dev_err(&client->dev, "invalid I2C address specified %02x\n", |
| 669 | client->addr); |
| 670 | ret = -EINVAL; |
| 671 | goto out_failed; |
| 672 | } |
| 673 | |
Krzysztof Kozlowski | f561b42 | 2014-03-06 10:31:16 +0100 | [diff] [blame] | 674 | if (nr_port > 8 && !chip->client_dummy) { |
| 675 | dev_err(&client->dev, |
| 676 | "Failed to allocate second group I2C device\n"); |
| 677 | ret = -ENODEV; |
| 678 | goto out_failed; |
| 679 | } |
| 680 | |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 681 | mutex_init(&chip->lock); |
| 682 | |
Nicholas Krause | 78de5d5 | 2015-08-18 09:55:44 -0400 | [diff] [blame] | 683 | ret = max732x_readb(chip, is_group_a(chip, 0), &chip->reg_out[0]); |
| 684 | if (ret) |
| 685 | goto out_failed; |
| 686 | if (nr_port > 8) { |
| 687 | ret = max732x_readb(chip, is_group_a(chip, 8), &chip->reg_out[1]); |
| 688 | if (ret) |
| 689 | goto out_failed; |
| 690 | } |
Marc Zyngier | a80a0bb | 2010-05-26 14:42:16 -0700 | [diff] [blame] | 691 | |
Linus Walleij | 0788b64 | 2015-12-07 09:58:28 +0100 | [diff] [blame] | 692 | ret = gpiochip_add_data(&chip->gpio_chip, chip); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 693 | if (ret) |
| 694 | goto out_failed; |
| 695 | |
Linus Walleij | 984f664 | 2015-01-30 11:32:01 +0100 | [diff] [blame] | 696 | ret = max732x_irq_setup(chip, id); |
| 697 | if (ret) { |
| 698 | gpiochip_remove(&chip->gpio_chip); |
| 699 | goto out_failed; |
| 700 | } |
| 701 | |
Semen Protsenko | 43c4bcf | 2015-01-13 15:41:42 +0200 | [diff] [blame] | 702 | if (pdata && pdata->setup) { |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 703 | ret = pdata->setup(client, chip->gpio_chip.base, |
| 704 | chip->gpio_chip.ngpio, pdata->context); |
| 705 | if (ret < 0) |
| 706 | dev_warn(&client->dev, "setup failed, %d\n", ret); |
| 707 | } |
| 708 | |
| 709 | i2c_set_clientdata(client, chip); |
| 710 | return 0; |
| 711 | |
| 712 | out_failed: |
Krzysztof Kozlowski | c75793d | 2014-03-06 10:31:15 +0100 | [diff] [blame] | 713 | if (chip->client_dummy) |
| 714 | i2c_unregister_device(chip->client_dummy); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 715 | return ret; |
| 716 | } |
| 717 | |
Bill Pemberton | 206210c | 2012-11-19 13:25:50 -0500 | [diff] [blame] | 718 | static int max732x_remove(struct i2c_client *client) |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 719 | { |
Jingoo Han | e56aee1 | 2013-07-30 17:08:05 +0900 | [diff] [blame] | 720 | struct max732x_platform_data *pdata = dev_get_platdata(&client->dev); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 721 | struct max732x_chip *chip = i2c_get_clientdata(client); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 722 | |
Semen Protsenko | 43c4bcf | 2015-01-13 15:41:42 +0200 | [diff] [blame] | 723 | if (pdata && pdata->teardown) { |
| 724 | int ret; |
| 725 | |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 726 | ret = pdata->teardown(client, chip->gpio_chip.base, |
| 727 | chip->gpio_chip.ngpio, pdata->context); |
| 728 | if (ret < 0) { |
| 729 | dev_err(&client->dev, "%s failed, %d\n", |
| 730 | "teardown", ret); |
| 731 | return ret; |
| 732 | } |
| 733 | } |
| 734 | |
abdoulaye berthe | 9f5132a | 2014-07-12 22:30:12 +0200 | [diff] [blame] | 735 | gpiochip_remove(&chip->gpio_chip); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 736 | |
| 737 | /* unregister any dummy i2c_client */ |
| 738 | if (chip->client_dummy) |
| 739 | i2c_unregister_device(chip->client_dummy); |
| 740 | |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 741 | return 0; |
| 742 | } |
| 743 | |
| 744 | static struct i2c_driver max732x_driver = { |
| 745 | .driver = { |
Semen Protsenko | 43c4bcf | 2015-01-13 15:41:42 +0200 | [diff] [blame] | 746 | .name = "max732x", |
Semen Protsenko | 43c4bcf | 2015-01-13 15:41:42 +0200 | [diff] [blame] | 747 | .of_match_table = of_match_ptr(max732x_of_table), |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 748 | }, |
| 749 | .probe = max732x_probe, |
Bill Pemberton | 8283c4f | 2012-11-19 13:20:08 -0500 | [diff] [blame] | 750 | .remove = max732x_remove, |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 751 | .id_table = max732x_id, |
| 752 | }; |
| 753 | |
| 754 | static int __init max732x_init(void) |
| 755 | { |
| 756 | return i2c_add_driver(&max732x_driver); |
| 757 | } |
David Brownell | 2f8d119 | 2008-10-15 22:03:13 -0700 | [diff] [blame] | 758 | /* register after i2c postcore initcall and before |
| 759 | * subsys initcalls that may rely on these GPIOs |
| 760 | */ |
| 761 | subsys_initcall(max732x_init); |
Eric Miao | bbcd6d5 | 2008-07-25 01:46:14 -0700 | [diff] [blame] | 762 | |
| 763 | static void __exit max732x_exit(void) |
| 764 | { |
| 765 | i2c_del_driver(&max732x_driver); |
| 766 | } |
| 767 | module_exit(max732x_exit); |
| 768 | |
| 769 | MODULE_AUTHOR("Eric Miao <eric.miao@marvell.com>"); |
| 770 | MODULE_DESCRIPTION("GPIO expander driver for MAX732X"); |
| 771 | MODULE_LICENSE("GPL"); |