2 * max732x.c - I2C Port Expander with 8/16 I/O
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>
8 * Derived from drivers/gpio/pca953x.c
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; version 2 of the License.
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <linux/slab.h>
18 #include <linux/string.h>
19 #include <linux/gpio.h>
20 #include <linux/interrupt.h>
21 #include <linux/irq.h>
22 #include <linux/i2c.h>
23 #include <linux/i2c/max732x.h>
27 * Each port of MAX732x (including MAX7319) falls into one of the
28 * following three types:
34 * designated by 'O', 'I' and 'P' individually according to MAXIM's
35 * datasheets. 'I' and 'P' ports are interrupt capables, some with
36 * a dedicated interrupt mask.
38 * There are two groups of I/O ports, each group usually includes
39 * up to 8 I/O ports, and is accessed by a specific I2C address:
41 * - Group A : by I2C address 0b'110xxxx
42 * - Group B : by I2C address 0b'101xxxx
44 * where 'xxxx' is decided by the connections of pin AD2/AD0. The
45 * address used also affects the initial state of output signals.
47 * Within each group of ports, there are five known combinations of
48 * I/O ports: 4I4O, 4P4O, 8I, 8P, 8O, see the definitions below for
49 * the detailed organization of these ports. Only Goup A is interrupt
52 * GPIO numbers start from 'gpio_base + 0' to 'gpio_base + 8/16',
53 * and GPIOs from GROUP_A are numbered before those from GROUP_B
54 * (if there are two groups).
56 * NOTE: MAX7328/MAX7329 are drop-in replacements for PCF8574/a, so
57 * they are not supported by this driver.
60 #define PORT_NONE 0x0 /* '/' No Port */
61 #define PORT_OUTPUT 0x1 /* 'O' Push-Pull, Output Only */
62 #define PORT_INPUT 0x2 /* 'I' Input Only */
63 #define PORT_OPENDRAIN 0x3 /* 'P' Open-Drain, I/O */
65 #define IO_4I4O 0x5AA5 /* O7 O6 I5 I4 I3 I2 O1 O0 */
66 #define IO_4P4O 0x5FF5 /* O7 O6 P5 P4 P3 P2 O1 O0 */
67 #define IO_8I 0xAAAA /* I7 I6 I5 I4 I3 I2 I1 I0 */
68 #define IO_8P 0xFFFF /* P7 P6 P5 P4 P3 P2 P1 P0 */
69 #define IO_8O 0x5555 /* O7 O6 O5 O4 O3 O2 O1 O0 */
71 #define GROUP_A(x) ((x) & 0xffff) /* I2C Addr: 0b'110xxxx */
72 #define GROUP_B(x) ((x) << 16) /* I2C Addr: 0b'101xxxx */
74 #define INT_NONE 0x0 /* No interrupt capability */
75 #define INT_NO_MASK 0x1 /* Has interrupts, no mask */
76 #define INT_INDEP_MASK 0x2 /* Has interrupts, independent mask */
77 #define INT_MERGED_MASK 0x3 /* Has interrupts, merged mask */
79 #define INT_CAPS(x) (((uint64_t)(x)) << 32)
93 static uint64_t max732x_features
[] = {
94 [MAX7319
] = GROUP_A(IO_8I
) | INT_CAPS(INT_MERGED_MASK
),
95 [MAX7320
] = GROUP_B(IO_8O
),
96 [MAX7321
] = GROUP_A(IO_8P
) | INT_CAPS(INT_NO_MASK
),
97 [MAX7322
] = GROUP_A(IO_4I4O
) | INT_CAPS(INT_MERGED_MASK
),
98 [MAX7323
] = GROUP_A(IO_4P4O
) | INT_CAPS(INT_INDEP_MASK
),
99 [MAX7324
] = GROUP_A(IO_8I
) | GROUP_B(IO_8O
) | INT_CAPS(INT_MERGED_MASK
),
100 [MAX7325
] = GROUP_A(IO_8P
) | GROUP_B(IO_8O
) | INT_CAPS(INT_NO_MASK
),
101 [MAX7326
] = GROUP_A(IO_4I4O
) | GROUP_B(IO_8O
) | INT_CAPS(INT_MERGED_MASK
),
102 [MAX7327
] = GROUP_A(IO_4P4O
) | GROUP_B(IO_8O
) | INT_CAPS(INT_NO_MASK
),
105 static const struct i2c_device_id max732x_id
[] = {
106 { "max7319", MAX7319
},
107 { "max7320", MAX7320
},
108 { "max7321", MAX7321
},
109 { "max7322", MAX7322
},
110 { "max7323", MAX7323
},
111 { "max7324", MAX7324
},
112 { "max7325", MAX7325
},
113 { "max7326", MAX7326
},
114 { "max7327", MAX7327
},
117 MODULE_DEVICE_TABLE(i2c
, max732x_id
);
119 struct max732x_chip
{
120 struct gpio_chip gpio_chip
;
122 struct i2c_client
*client
; /* "main" client */
123 struct i2c_client
*client_dummy
;
124 struct i2c_client
*client_group_a
;
125 struct i2c_client
*client_group_b
;
127 unsigned int mask_group_a
;
128 unsigned int dir_input
;
129 unsigned int dir_output
;
134 #ifdef CONFIG_GPIO_MAX732X_IRQ
135 struct mutex irq_lock
;
138 uint8_t irq_mask_cur
;
139 uint8_t irq_trig_raise
;
140 uint8_t irq_trig_fall
;
141 uint8_t irq_features
;
145 static int max732x_writeb(struct max732x_chip
*chip
, int group_a
, uint8_t val
)
147 struct i2c_client
*client
;
150 client
= group_a
? chip
->client_group_a
: chip
->client_group_b
;
151 ret
= i2c_smbus_write_byte(client
, val
);
153 dev_err(&client
->dev
, "failed writing\n");
160 static int max732x_readb(struct max732x_chip
*chip
, int group_a
, uint8_t *val
)
162 struct i2c_client
*client
;
165 client
= group_a
? chip
->client_group_a
: chip
->client_group_b
;
166 ret
= i2c_smbus_read_byte(client
);
168 dev_err(&client
->dev
, "failed reading\n");
176 static inline int is_group_a(struct max732x_chip
*chip
, unsigned off
)
178 return (1u << off
) & chip
->mask_group_a
;
181 static int max732x_gpio_get_value(struct gpio_chip
*gc
, unsigned off
)
183 struct max732x_chip
*chip
;
187 chip
= container_of(gc
, struct max732x_chip
, gpio_chip
);
189 ret
= max732x_readb(chip
, is_group_a(chip
, off
), ®_val
);
193 return reg_val
& (1u << (off
& 0x7));
196 static void max732x_gpio_set_value(struct gpio_chip
*gc
, unsigned off
, int val
)
198 struct max732x_chip
*chip
;
199 uint8_t reg_out
, mask
= 1u << (off
& 0x7);
202 chip
= container_of(gc
, struct max732x_chip
, gpio_chip
);
204 mutex_lock(&chip
->lock
);
206 reg_out
= (off
> 7) ? chip
->reg_out
[1] : chip
->reg_out
[0];
207 reg_out
= (val
) ? reg_out
| mask
: reg_out
& ~mask
;
209 ret
= max732x_writeb(chip
, is_group_a(chip
, off
), reg_out
);
213 /* update the shadow register then */
215 chip
->reg_out
[1] = reg_out
;
217 chip
->reg_out
[0] = reg_out
;
219 mutex_unlock(&chip
->lock
);
222 static int max732x_gpio_direction_input(struct gpio_chip
*gc
, unsigned off
)
224 struct max732x_chip
*chip
;
225 unsigned int mask
= 1u << off
;
227 chip
= container_of(gc
, struct max732x_chip
, gpio_chip
);
229 if ((mask
& chip
->dir_input
) == 0) {
230 dev_dbg(&chip
->client
->dev
, "%s port %d is output only\n",
231 chip
->client
->name
, off
);
236 * Open-drain pins must be set to high impedance (which is
237 * equivalent to output-high) to be turned into an input.
239 if ((mask
& chip
->dir_output
))
240 max732x_gpio_set_value(gc
, off
, 1);
245 static int max732x_gpio_direction_output(struct gpio_chip
*gc
,
246 unsigned off
, int val
)
248 struct max732x_chip
*chip
;
249 unsigned int mask
= 1u << off
;
251 chip
= container_of(gc
, struct max732x_chip
, gpio_chip
);
253 if ((mask
& chip
->dir_output
) == 0) {
254 dev_dbg(&chip
->client
->dev
, "%s port %d is input only\n",
255 chip
->client
->name
, off
);
259 max732x_gpio_set_value(gc
, off
, val
);
263 #ifdef CONFIG_GPIO_MAX732X_IRQ
264 static int max732x_writew(struct max732x_chip
*chip
, uint16_t val
)
268 val
= cpu_to_le16(val
);
270 ret
= i2c_master_send(chip
->client_group_a
, (char *)&val
, 2);
272 dev_err(&chip
->client_group_a
->dev
, "failed writing\n");
279 static int max732x_readw(struct max732x_chip
*chip
, uint16_t *val
)
283 ret
= i2c_master_recv(chip
->client_group_a
, (char *)val
, 2);
285 dev_err(&chip
->client_group_a
->dev
, "failed reading\n");
289 *val
= le16_to_cpu(*val
);
293 static void max732x_irq_update_mask(struct max732x_chip
*chip
)
297 if (chip
->irq_mask
== chip
->irq_mask_cur
)
300 chip
->irq_mask
= chip
->irq_mask_cur
;
302 if (chip
->irq_features
== INT_NO_MASK
)
305 mutex_lock(&chip
->lock
);
307 switch (chip
->irq_features
) {
309 msg
= (chip
->irq_mask
<< 8) | chip
->reg_out
[0];
310 max732x_writew(chip
, msg
);
313 case INT_MERGED_MASK
:
314 msg
= chip
->irq_mask
| chip
->reg_out
[0];
315 max732x_writeb(chip
, 1, (uint8_t)msg
);
319 mutex_unlock(&chip
->lock
);
322 static int max732x_gpio_to_irq(struct gpio_chip
*gc
, unsigned off
)
324 struct max732x_chip
*chip
;
326 chip
= container_of(gc
, struct max732x_chip
, gpio_chip
);
327 return chip
->irq_base
+ off
;
330 static void max732x_irq_mask(struct irq_data
*d
)
332 struct max732x_chip
*chip
= irq_data_get_irq_chip_data(d
);
334 chip
->irq_mask_cur
&= ~(1 << (d
->irq
- chip
->irq_base
));
337 static void max732x_irq_unmask(struct irq_data
*d
)
339 struct max732x_chip
*chip
= irq_data_get_irq_chip_data(d
);
341 chip
->irq_mask_cur
|= 1 << (d
->irq
- chip
->irq_base
);
344 static void max732x_irq_bus_lock(struct irq_data
*d
)
346 struct max732x_chip
*chip
= irq_data_get_irq_chip_data(d
);
348 mutex_lock(&chip
->irq_lock
);
349 chip
->irq_mask_cur
= chip
->irq_mask
;
352 static void max732x_irq_bus_sync_unlock(struct irq_data
*d
)
354 struct max732x_chip
*chip
= irq_data_get_irq_chip_data(d
);
356 max732x_irq_update_mask(chip
);
357 mutex_unlock(&chip
->irq_lock
);
360 static int max732x_irq_set_type(struct irq_data
*d
, unsigned int type
)
362 struct max732x_chip
*chip
= irq_data_get_irq_chip_data(d
);
363 uint16_t off
= d
->irq
- chip
->irq_base
;
364 uint16_t mask
= 1 << off
;
366 if (!(mask
& chip
->dir_input
)) {
367 dev_dbg(&chip
->client
->dev
, "%s port %d is output only\n",
368 chip
->client
->name
, off
);
372 if (!(type
& IRQ_TYPE_EDGE_BOTH
)) {
373 dev_err(&chip
->client
->dev
, "irq %d: unsupported type %d\n",
378 if (type
& IRQ_TYPE_EDGE_FALLING
)
379 chip
->irq_trig_fall
|= mask
;
381 chip
->irq_trig_fall
&= ~mask
;
383 if (type
& IRQ_TYPE_EDGE_RISING
)
384 chip
->irq_trig_raise
|= mask
;
386 chip
->irq_trig_raise
&= ~mask
;
388 return max732x_gpio_direction_input(&chip
->gpio_chip
, off
);
391 static struct irq_chip max732x_irq_chip
= {
393 .irq_mask
= max732x_irq_mask
,
394 .irq_unmask
= max732x_irq_unmask
,
395 .irq_bus_lock
= max732x_irq_bus_lock
,
396 .irq_bus_sync_unlock
= max732x_irq_bus_sync_unlock
,
397 .irq_set_type
= max732x_irq_set_type
,
400 static uint8_t max732x_irq_pending(struct max732x_chip
*chip
)
409 ret
= max732x_readw(chip
, &status
);
413 trigger
= status
>> 8;
414 trigger
&= chip
->irq_mask
;
419 cur_stat
= status
& 0xFF;
420 cur_stat
&= chip
->irq_mask
;
422 old_stat
= cur_stat
^ trigger
;
424 pending
= (old_stat
& chip
->irq_trig_fall
) |
425 (cur_stat
& chip
->irq_trig_raise
);
431 static irqreturn_t
max732x_irq_handler(int irq
, void *devid
)
433 struct max732x_chip
*chip
= devid
;
437 pending
= max732x_irq_pending(chip
);
443 level
= __ffs(pending
);
444 handle_nested_irq(level
+ chip
->irq_base
);
446 pending
&= ~(1 << level
);
452 static int max732x_irq_setup(struct max732x_chip
*chip
,
453 const struct i2c_device_id
*id
)
455 struct i2c_client
*client
= chip
->client
;
456 struct max732x_platform_data
*pdata
= client
->dev
.platform_data
;
457 int has_irq
= max732x_features
[id
->driver_data
] >> 32;
460 if (pdata
->irq_base
&& has_irq
!= INT_NONE
) {
463 chip
->irq_base
= pdata
->irq_base
;
464 chip
->irq_features
= has_irq
;
465 mutex_init(&chip
->irq_lock
);
467 for (lvl
= 0; lvl
< chip
->gpio_chip
.ngpio
; lvl
++) {
468 int irq
= lvl
+ chip
->irq_base
;
470 if (!(chip
->dir_input
& (1 << lvl
)))
473 irq_set_chip_data(irq
, chip
);
474 irq_set_chip_and_handler(irq
, &max732x_irq_chip
,
476 irq_set_nested_thread(irq
, 1);
478 set_irq_flags(irq
, IRQF_VALID
);
480 irq_set_noprobe(irq
);
484 ret
= request_threaded_irq(client
->irq
,
487 IRQF_TRIGGER_FALLING
| IRQF_ONESHOT
,
488 dev_name(&client
->dev
), chip
);
490 dev_err(&client
->dev
, "failed to request irq %d\n",
495 chip
->gpio_chip
.to_irq
= max732x_gpio_to_irq
;
505 static void max732x_irq_teardown(struct max732x_chip
*chip
)
508 free_irq(chip
->client
->irq
, chip
);
510 #else /* CONFIG_GPIO_MAX732X_IRQ */
511 static int max732x_irq_setup(struct max732x_chip
*chip
,
512 const struct i2c_device_id
*id
)
514 struct i2c_client
*client
= chip
->client
;
515 struct max732x_platform_data
*pdata
= client
->dev
.platform_data
;
516 int has_irq
= max732x_features
[id
->driver_data
] >> 32;
518 if (pdata
->irq_base
&& has_irq
!= INT_NONE
)
519 dev_warn(&client
->dev
, "interrupt support not compiled in\n");
524 static void max732x_irq_teardown(struct max732x_chip
*chip
)
529 static int __devinit
max732x_setup_gpio(struct max732x_chip
*chip
,
530 const struct i2c_device_id
*id
,
533 struct gpio_chip
*gc
= &chip
->gpio_chip
;
534 uint32_t id_data
= (uint32_t)max732x_features
[id
->driver_data
];
537 for (i
= 0; i
< 16; i
++, id_data
>>= 2) {
538 unsigned int mask
= 1 << port
;
540 switch (id_data
& 0x3) {
542 chip
->dir_output
|= mask
;
545 chip
->dir_input
|= mask
;
548 chip
->dir_output
|= mask
;
549 chip
->dir_input
|= mask
;
556 chip
->mask_group_a
|= mask
;
561 gc
->direction_input
= max732x_gpio_direction_input
;
562 if (chip
->dir_output
) {
563 gc
->direction_output
= max732x_gpio_direction_output
;
564 gc
->set
= max732x_gpio_set_value
;
566 gc
->get
= max732x_gpio_get_value
;
569 gc
->base
= gpio_start
;
571 gc
->label
= chip
->client
->name
;
572 gc
->owner
= THIS_MODULE
;
577 static int __devinit
max732x_probe(struct i2c_client
*client
,
578 const struct i2c_device_id
*id
)
580 struct max732x_platform_data
*pdata
;
581 struct max732x_chip
*chip
;
582 struct i2c_client
*c
;
583 uint16_t addr_a
, addr_b
;
586 pdata
= client
->dev
.platform_data
;
588 dev_dbg(&client
->dev
, "no platform data\n");
592 chip
= kzalloc(sizeof(struct max732x_chip
), GFP_KERNEL
);
595 chip
->client
= client
;
597 nr_port
= max732x_setup_gpio(chip
, id
, pdata
->gpio_base
);
599 addr_a
= (client
->addr
& 0x0f) | 0x60;
600 addr_b
= (client
->addr
& 0x0f) | 0x50;
602 switch (client
->addr
& 0x70) {
604 chip
->client_group_a
= client
;
606 c
= i2c_new_dummy(client
->adapter
, addr_b
);
607 chip
->client_group_b
= chip
->client_dummy
= c
;
611 chip
->client_group_b
= client
;
613 c
= i2c_new_dummy(client
->adapter
, addr_a
);
614 chip
->client_group_a
= chip
->client_dummy
= c
;
618 dev_err(&client
->dev
, "invalid I2C address specified %02x\n",
624 mutex_init(&chip
->lock
);
626 max732x_readb(chip
, is_group_a(chip
, 0), &chip
->reg_out
[0]);
628 max732x_readb(chip
, is_group_a(chip
, 8), &chip
->reg_out
[1]);
630 ret
= max732x_irq_setup(chip
, id
);
634 ret
= gpiochip_add(&chip
->gpio_chip
);
639 ret
= pdata
->setup(client
, chip
->gpio_chip
.base
,
640 chip
->gpio_chip
.ngpio
, pdata
->context
);
642 dev_warn(&client
->dev
, "setup failed, %d\n", ret
);
645 i2c_set_clientdata(client
, chip
);
649 max732x_irq_teardown(chip
);
654 static int __devexit
max732x_remove(struct i2c_client
*client
)
656 struct max732x_platform_data
*pdata
= client
->dev
.platform_data
;
657 struct max732x_chip
*chip
= i2c_get_clientdata(client
);
660 if (pdata
->teardown
) {
661 ret
= pdata
->teardown(client
, chip
->gpio_chip
.base
,
662 chip
->gpio_chip
.ngpio
, pdata
->context
);
664 dev_err(&client
->dev
, "%s failed, %d\n",
670 ret
= gpiochip_remove(&chip
->gpio_chip
);
672 dev_err(&client
->dev
, "%s failed, %d\n",
673 "gpiochip_remove()", ret
);
677 max732x_irq_teardown(chip
);
679 /* unregister any dummy i2c_client */
680 if (chip
->client_dummy
)
681 i2c_unregister_device(chip
->client_dummy
);
687 static struct i2c_driver max732x_driver
= {
690 .owner
= THIS_MODULE
,
692 .probe
= max732x_probe
,
693 .remove
= __devexit_p(max732x_remove
),
694 .id_table
= max732x_id
,
697 static int __init
max732x_init(void)
699 return i2c_add_driver(&max732x_driver
);
701 /* register after i2c postcore initcall and before
702 * subsys initcalls that may rely on these GPIOs
704 subsys_initcall(max732x_init
);
706 static void __exit
max732x_exit(void)
708 i2c_del_driver(&max732x_driver
);
710 module_exit(max732x_exit
);
712 MODULE_AUTHOR("Eric Miao <eric.miao@marvell.com>");
713 MODULE_DESCRIPTION("GPIO expander driver for MAX732X");
714 MODULE_LICENSE("GPL");