1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2016, BayLibre, SAS. All rights reserved.
4 * Author: Neil Armstrong <narmstrong@baylibre.com>
6 * Copyright (c) 2010, Code Aurora Forum. All rights reserved.
8 * Driver for Semtech SX150X I2C GPIO Expanders
9 * The handling of the 4-bit chips (SX1501/SX1504/SX1507) is untested.
11 * Author: Gregory Bean <gbean@codeaurora.org>
14 #include <linux/regmap.h>
15 #include <linux/i2c.h>
16 #include <linux/init.h>
17 #include <linux/interrupt.h>
18 #include <linux/irq.h>
19 #include <linux/mutex.h>
20 #include <linux/slab.h>
22 #include <linux/of_device.h>
23 #include <linux/gpio/driver.h>
24 #include <linux/pinctrl/pinconf.h>
25 #include <linux/pinctrl/pinctrl.h>
26 #include <linux/pinctrl/pinmux.h>
27 #include <linux/pinctrl/pinconf-generic.h>
31 #include "pinctrl-utils.h"
33 /* The chip models of sx150x */
40 SX150X_789_REG_MISC_AUTOCLEAR_OFF
= 1 << 0,
41 SX150X_MAX_REGISTER
= 0xad,
42 SX150X_IRQ_TYPE_EDGE_RISING
= 0x1,
43 SX150X_IRQ_TYPE_EDGE_FALLING
= 0x2,
44 SX150X_789_RESET_KEY1
= 0x12,
45 SX150X_789_RESET_KEY2
= 0x34,
48 struct sx150x_123_pri
{
58 struct sx150x_456_pri
{
68 struct sx150x_789_pri
{
77 struct sx150x_device_data
{
88 struct sx150x_123_pri x123
;
89 struct sx150x_456_pri x456
;
90 struct sx150x_789_pri x789
;
92 const struct pinctrl_pin_desc
*pins
;
96 struct sx150x_pinctrl
{
98 struct i2c_client
*client
;
99 struct pinctrl_dev
*pctldev
;
100 struct pinctrl_desc pinctrl_desc
;
101 struct gpio_chip gpio
;
102 struct irq_chip irq_chip
;
103 struct regmap
*regmap
;
109 const struct sx150x_device_data
*data
;
112 static const struct pinctrl_pin_desc sx150x_4_pins
[] = {
113 PINCTRL_PIN(0, "gpio0"),
114 PINCTRL_PIN(1, "gpio1"),
115 PINCTRL_PIN(2, "gpio2"),
116 PINCTRL_PIN(3, "gpio3"),
117 PINCTRL_PIN(4, "oscio"),
120 static const struct pinctrl_pin_desc sx150x_8_pins
[] = {
121 PINCTRL_PIN(0, "gpio0"),
122 PINCTRL_PIN(1, "gpio1"),
123 PINCTRL_PIN(2, "gpio2"),
124 PINCTRL_PIN(3, "gpio3"),
125 PINCTRL_PIN(4, "gpio4"),
126 PINCTRL_PIN(5, "gpio5"),
127 PINCTRL_PIN(6, "gpio6"),
128 PINCTRL_PIN(7, "gpio7"),
129 PINCTRL_PIN(8, "oscio"),
132 static const struct pinctrl_pin_desc sx150x_16_pins
[] = {
133 PINCTRL_PIN(0, "gpio0"),
134 PINCTRL_PIN(1, "gpio1"),
135 PINCTRL_PIN(2, "gpio2"),
136 PINCTRL_PIN(3, "gpio3"),
137 PINCTRL_PIN(4, "gpio4"),
138 PINCTRL_PIN(5, "gpio5"),
139 PINCTRL_PIN(6, "gpio6"),
140 PINCTRL_PIN(7, "gpio7"),
141 PINCTRL_PIN(8, "gpio8"),
142 PINCTRL_PIN(9, "gpio9"),
143 PINCTRL_PIN(10, "gpio10"),
144 PINCTRL_PIN(11, "gpio11"),
145 PINCTRL_PIN(12, "gpio12"),
146 PINCTRL_PIN(13, "gpio13"),
147 PINCTRL_PIN(14, "gpio14"),
148 PINCTRL_PIN(15, "gpio15"),
149 PINCTRL_PIN(16, "oscio"),
152 static const struct sx150x_device_data sx1501q_device_data
= {
158 .reg_irq_mask
= 0x05,
162 .reg_pld_mode
= 0x10,
163 .reg_pld_table0
= 0x11,
164 .reg_pld_table2
= 0x13,
165 .reg_advanced
= 0xad,
168 .pins
= sx150x_4_pins
,
169 .npins
= 4, /* oscio not available */
172 static const struct sx150x_device_data sx1502q_device_data
= {
178 .reg_irq_mask
= 0x05,
182 .reg_pld_mode
= 0x10,
183 .reg_pld_table0
= 0x11,
184 .reg_pld_table1
= 0x12,
185 .reg_pld_table2
= 0x13,
186 .reg_pld_table3
= 0x14,
187 .reg_pld_table4
= 0x15,
188 .reg_advanced
= 0xad,
191 .pins
= sx150x_8_pins
,
192 .npins
= 8, /* oscio not available */
195 static const struct sx150x_device_data sx1503q_device_data
= {
201 .reg_irq_mask
= 0x08,
205 .reg_pld_mode
= 0x20,
206 .reg_pld_table0
= 0x22,
207 .reg_pld_table1
= 0x24,
208 .reg_pld_table2
= 0x26,
209 .reg_pld_table3
= 0x28,
210 .reg_pld_table4
= 0x2a,
211 .reg_advanced
= 0xad,
214 .pins
= sx150x_16_pins
,
215 .npins
= 16, /* oscio not available */
218 static const struct sx150x_device_data sx1504q_device_data
= {
224 .reg_irq_mask
= 0x05,
228 .reg_pld_mode
= 0x10,
229 .reg_pld_table0
= 0x11,
230 .reg_pld_table2
= 0x13,
233 .pins
= sx150x_4_pins
,
234 .npins
= 4, /* oscio not available */
237 static const struct sx150x_device_data sx1505q_device_data
= {
243 .reg_irq_mask
= 0x05,
247 .reg_pld_mode
= 0x10,
248 .reg_pld_table0
= 0x11,
249 .reg_pld_table1
= 0x12,
250 .reg_pld_table2
= 0x13,
251 .reg_pld_table3
= 0x14,
252 .reg_pld_table4
= 0x15,
255 .pins
= sx150x_8_pins
,
256 .npins
= 8, /* oscio not available */
259 static const struct sx150x_device_data sx1506q_device_data
= {
265 .reg_irq_mask
= 0x08,
269 .reg_pld_mode
= 0x20,
270 .reg_pld_table0
= 0x22,
271 .reg_pld_table1
= 0x24,
272 .reg_pld_table2
= 0x26,
273 .reg_pld_table3
= 0x28,
274 .reg_pld_table4
= 0x2a,
275 .reg_advanced
= 0xad,
278 .pins
= sx150x_16_pins
,
279 .npins
= 16, /* oscio not available */
282 static const struct sx150x_device_data sx1507q_device_data
= {
288 .reg_irq_mask
= 0x09,
293 .reg_polarity
= 0x06,
299 .pins
= sx150x_4_pins
,
300 .npins
= ARRAY_SIZE(sx150x_4_pins
),
303 static const struct sx150x_device_data sx1508q_device_data
= {
309 .reg_irq_mask
= 0x09,
314 .reg_polarity
= 0x06,
320 .pins
= sx150x_8_pins
,
321 .npins
= ARRAY_SIZE(sx150x_8_pins
),
324 static const struct sx150x_device_data sx1509q_device_data
= {
330 .reg_irq_mask
= 0x12,
335 .reg_polarity
= 0x0c,
341 .pins
= sx150x_16_pins
,
342 .npins
= ARRAY_SIZE(sx150x_16_pins
),
345 static int sx150x_pinctrl_get_groups_count(struct pinctrl_dev
*pctldev
)
350 static const char *sx150x_pinctrl_get_group_name(struct pinctrl_dev
*pctldev
,
356 static int sx150x_pinctrl_get_group_pins(struct pinctrl_dev
*pctldev
,
358 const unsigned int **pins
,
359 unsigned int *num_pins
)
364 static const struct pinctrl_ops sx150x_pinctrl_ops
= {
365 .get_groups_count
= sx150x_pinctrl_get_groups_count
,
366 .get_group_name
= sx150x_pinctrl_get_group_name
,
367 .get_group_pins
= sx150x_pinctrl_get_group_pins
,
369 .dt_node_to_map
= pinconf_generic_dt_node_to_map_pin
,
370 .dt_free_map
= pinctrl_utils_free_map
,
374 static bool sx150x_pin_is_oscio(struct sx150x_pinctrl
*pctl
, unsigned int pin
)
376 if (pin
>= pctl
->data
->npins
)
379 /* OSCIO pin is only present in 789 devices */
380 if (pctl
->data
->model
!= SX150X_789
)
383 return !strcmp(pctl
->data
->pins
[pin
].name
, "oscio");
386 static int sx150x_gpio_get_direction(struct gpio_chip
*chip
,
389 struct sx150x_pinctrl
*pctl
= gpiochip_get_data(chip
);
393 if (sx150x_pin_is_oscio(pctl
, offset
))
394 return GPIO_LINE_DIRECTION_OUT
;
396 ret
= regmap_read(pctl
->regmap
, pctl
->data
->reg_dir
, &value
);
400 if (value
& BIT(offset
))
401 return GPIO_LINE_DIRECTION_IN
;
403 return GPIO_LINE_DIRECTION_OUT
;
406 static int sx150x_gpio_get(struct gpio_chip
*chip
, unsigned int offset
)
408 struct sx150x_pinctrl
*pctl
= gpiochip_get_data(chip
);
412 if (sx150x_pin_is_oscio(pctl
, offset
))
415 ret
= regmap_read(pctl
->regmap
, pctl
->data
->reg_data
, &value
);
419 return !!(value
& BIT(offset
));
422 static int __sx150x_gpio_set(struct sx150x_pinctrl
*pctl
, unsigned int offset
,
425 return regmap_write_bits(pctl
->regmap
, pctl
->data
->reg_data
,
426 BIT(offset
), value
? BIT(offset
) : 0);
429 static int sx150x_gpio_oscio_set(struct sx150x_pinctrl
*pctl
,
432 return regmap_write(pctl
->regmap
,
433 pctl
->data
->pri
.x789
.reg_clock
,
434 (value
? 0x1f : 0x10));
437 static void sx150x_gpio_set(struct gpio_chip
*chip
, unsigned int offset
,
440 struct sx150x_pinctrl
*pctl
= gpiochip_get_data(chip
);
442 if (sx150x_pin_is_oscio(pctl
, offset
))
443 sx150x_gpio_oscio_set(pctl
, value
);
445 __sx150x_gpio_set(pctl
, offset
, value
);
449 static void sx150x_gpio_set_multiple(struct gpio_chip
*chip
,
453 struct sx150x_pinctrl
*pctl
= gpiochip_get_data(chip
);
455 regmap_write_bits(pctl
->regmap
, pctl
->data
->reg_data
, *mask
, *bits
);
458 static int sx150x_gpio_direction_input(struct gpio_chip
*chip
,
461 struct sx150x_pinctrl
*pctl
= gpiochip_get_data(chip
);
463 if (sx150x_pin_is_oscio(pctl
, offset
))
466 return regmap_write_bits(pctl
->regmap
,
468 BIT(offset
), BIT(offset
));
471 static int sx150x_gpio_direction_output(struct gpio_chip
*chip
,
472 unsigned int offset
, int value
)
474 struct sx150x_pinctrl
*pctl
= gpiochip_get_data(chip
);
477 if (sx150x_pin_is_oscio(pctl
, offset
))
478 return sx150x_gpio_oscio_set(pctl
, value
);
480 ret
= __sx150x_gpio_set(pctl
, offset
, value
);
484 return regmap_write_bits(pctl
->regmap
,
489 static void sx150x_irq_mask(struct irq_data
*d
)
491 struct sx150x_pinctrl
*pctl
=
492 gpiochip_get_data(irq_data_get_irq_chip_data(d
));
493 unsigned int n
= d
->hwirq
;
495 pctl
->irq
.masked
|= BIT(n
);
498 static void sx150x_irq_unmask(struct irq_data
*d
)
500 struct sx150x_pinctrl
*pctl
=
501 gpiochip_get_data(irq_data_get_irq_chip_data(d
));
502 unsigned int n
= d
->hwirq
;
504 pctl
->irq
.masked
&= ~BIT(n
);
507 static void sx150x_irq_set_sense(struct sx150x_pinctrl
*pctl
,
508 unsigned int line
, unsigned int sense
)
511 * Every interrupt line is represented by two bits shifted
512 * proportionally to the line number
514 const unsigned int n
= line
* 2;
515 const unsigned int mask
= ~((SX150X_IRQ_TYPE_EDGE_RISING
|
516 SX150X_IRQ_TYPE_EDGE_FALLING
) << n
);
518 pctl
->irq
.sense
&= mask
;
519 pctl
->irq
.sense
|= sense
<< n
;
522 static int sx150x_irq_set_type(struct irq_data
*d
, unsigned int flow_type
)
524 struct sx150x_pinctrl
*pctl
=
525 gpiochip_get_data(irq_data_get_irq_chip_data(d
));
526 unsigned int n
, val
= 0;
528 if (flow_type
& (IRQ_TYPE_LEVEL_HIGH
| IRQ_TYPE_LEVEL_LOW
))
533 if (flow_type
& IRQ_TYPE_EDGE_RISING
)
534 val
|= SX150X_IRQ_TYPE_EDGE_RISING
;
535 if (flow_type
& IRQ_TYPE_EDGE_FALLING
)
536 val
|= SX150X_IRQ_TYPE_EDGE_FALLING
;
538 sx150x_irq_set_sense(pctl
, n
, val
);
542 static irqreturn_t
sx150x_irq_thread_fn(int irq
, void *dev_id
)
544 struct sx150x_pinctrl
*pctl
= (struct sx150x_pinctrl
*)dev_id
;
545 unsigned long n
, status
;
549 err
= regmap_read(pctl
->regmap
, pctl
->data
->reg_irq_src
, &val
);
553 err
= regmap_write(pctl
->regmap
, pctl
->data
->reg_irq_src
, val
);
558 for_each_set_bit(n
, &status
, pctl
->data
->ngpios
)
559 handle_nested_irq(irq_find_mapping(pctl
->gpio
.irq
.domain
, n
));
564 static void sx150x_irq_bus_lock(struct irq_data
*d
)
566 struct sx150x_pinctrl
*pctl
=
567 gpiochip_get_data(irq_data_get_irq_chip_data(d
));
569 mutex_lock(&pctl
->lock
);
572 static void sx150x_irq_bus_sync_unlock(struct irq_data
*d
)
574 struct sx150x_pinctrl
*pctl
=
575 gpiochip_get_data(irq_data_get_irq_chip_data(d
));
577 regmap_write(pctl
->regmap
, pctl
->data
->reg_irq_mask
, pctl
->irq
.masked
);
578 regmap_write(pctl
->regmap
, pctl
->data
->reg_sense
, pctl
->irq
.sense
);
579 mutex_unlock(&pctl
->lock
);
582 static int sx150x_pinconf_get(struct pinctrl_dev
*pctldev
, unsigned int pin
,
583 unsigned long *config
)
585 struct sx150x_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
586 unsigned int param
= pinconf_to_config_param(*config
);
591 if (sx150x_pin_is_oscio(pctl
, pin
)) {
593 case PIN_CONFIG_DRIVE_PUSH_PULL
:
594 case PIN_CONFIG_OUTPUT
:
595 ret
= regmap_read(pctl
->regmap
,
596 pctl
->data
->pri
.x789
.reg_clock
,
601 if (param
== PIN_CONFIG_DRIVE_PUSH_PULL
)
602 arg
= (data
& 0x1f) ? 1 : 0;
604 if ((data
& 0x1f) == 0x1f)
606 else if ((data
& 0x1f) == 0x10)
621 case PIN_CONFIG_BIAS_PULL_DOWN
:
622 ret
= regmap_read(pctl
->regmap
,
623 pctl
->data
->reg_pulldn
,
636 case PIN_CONFIG_BIAS_PULL_UP
:
637 ret
= regmap_read(pctl
->regmap
,
638 pctl
->data
->reg_pullup
,
651 case PIN_CONFIG_DRIVE_OPEN_DRAIN
:
652 if (pctl
->data
->model
!= SX150X_789
)
655 ret
= regmap_read(pctl
->regmap
,
656 pctl
->data
->pri
.x789
.reg_drain
,
669 case PIN_CONFIG_DRIVE_PUSH_PULL
:
670 if (pctl
->data
->model
!= SX150X_789
)
673 ret
= regmap_read(pctl
->regmap
,
674 pctl
->data
->pri
.x789
.reg_drain
,
688 case PIN_CONFIG_OUTPUT
:
689 ret
= sx150x_gpio_get_direction(&pctl
->gpio
, pin
);
693 if (ret
== GPIO_LINE_DIRECTION_IN
)
696 ret
= sx150x_gpio_get(&pctl
->gpio
, pin
);
708 *config
= pinconf_to_config_packed(param
, arg
);
713 static int sx150x_pinconf_set(struct pinctrl_dev
*pctldev
, unsigned int pin
,
714 unsigned long *configs
, unsigned int num_configs
)
716 struct sx150x_pinctrl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
717 enum pin_config_param param
;
722 for (i
= 0; i
< num_configs
; i
++) {
723 param
= pinconf_to_config_param(configs
[i
]);
724 arg
= pinconf_to_config_argument(configs
[i
]);
726 if (sx150x_pin_is_oscio(pctl
, pin
)) {
727 if (param
== PIN_CONFIG_OUTPUT
) {
728 ret
= sx150x_gpio_direction_output(&pctl
->gpio
,
739 case PIN_CONFIG_BIAS_PULL_PIN_DEFAULT
:
740 case PIN_CONFIG_BIAS_DISABLE
:
741 ret
= regmap_write_bits(pctl
->regmap
,
742 pctl
->data
->reg_pulldn
,
747 ret
= regmap_write_bits(pctl
->regmap
,
748 pctl
->data
->reg_pullup
,
755 case PIN_CONFIG_BIAS_PULL_UP
:
756 ret
= regmap_write_bits(pctl
->regmap
,
757 pctl
->data
->reg_pullup
,
764 case PIN_CONFIG_BIAS_PULL_DOWN
:
765 ret
= regmap_write_bits(pctl
->regmap
,
766 pctl
->data
->reg_pulldn
,
773 case PIN_CONFIG_DRIVE_OPEN_DRAIN
:
774 if (pctl
->data
->model
!= SX150X_789
||
775 sx150x_pin_is_oscio(pctl
, pin
))
778 ret
= regmap_write_bits(pctl
->regmap
,
779 pctl
->data
->pri
.x789
.reg_drain
,
786 case PIN_CONFIG_DRIVE_PUSH_PULL
:
787 if (pctl
->data
->model
!= SX150X_789
||
788 sx150x_pin_is_oscio(pctl
, pin
))
791 ret
= regmap_write_bits(pctl
->regmap
,
792 pctl
->data
->pri
.x789
.reg_drain
,
799 case PIN_CONFIG_OUTPUT
:
800 ret
= sx150x_gpio_direction_output(&pctl
->gpio
,
810 } /* for each config */
815 static const struct pinconf_ops sx150x_pinconf_ops
= {
816 .pin_config_get
= sx150x_pinconf_get
,
817 .pin_config_set
= sx150x_pinconf_set
,
821 static const struct i2c_device_id sx150x_id
[] = {
822 {"sx1501q", (kernel_ulong_t
) &sx1501q_device_data
},
823 {"sx1502q", (kernel_ulong_t
) &sx1502q_device_data
},
824 {"sx1503q", (kernel_ulong_t
) &sx1503q_device_data
},
825 {"sx1504q", (kernel_ulong_t
) &sx1504q_device_data
},
826 {"sx1505q", (kernel_ulong_t
) &sx1505q_device_data
},
827 {"sx1506q", (kernel_ulong_t
) &sx1506q_device_data
},
828 {"sx1507q", (kernel_ulong_t
) &sx1507q_device_data
},
829 {"sx1508q", (kernel_ulong_t
) &sx1508q_device_data
},
830 {"sx1509q", (kernel_ulong_t
) &sx1509q_device_data
},
834 static const struct of_device_id sx150x_of_match
[] = {
835 { .compatible
= "semtech,sx1501q", .data
= &sx1501q_device_data
},
836 { .compatible
= "semtech,sx1502q", .data
= &sx1502q_device_data
},
837 { .compatible
= "semtech,sx1503q", .data
= &sx1503q_device_data
},
838 { .compatible
= "semtech,sx1504q", .data
= &sx1504q_device_data
},
839 { .compatible
= "semtech,sx1505q", .data
= &sx1505q_device_data
},
840 { .compatible
= "semtech,sx1506q", .data
= &sx1506q_device_data
},
841 { .compatible
= "semtech,sx1507q", .data
= &sx1507q_device_data
},
842 { .compatible
= "semtech,sx1508q", .data
= &sx1508q_device_data
},
843 { .compatible
= "semtech,sx1509q", .data
= &sx1509q_device_data
},
847 static int sx150x_reset(struct sx150x_pinctrl
*pctl
)
851 err
= i2c_smbus_write_byte_data(pctl
->client
,
852 pctl
->data
->pri
.x789
.reg_reset
,
853 SX150X_789_RESET_KEY1
);
857 err
= i2c_smbus_write_byte_data(pctl
->client
,
858 pctl
->data
->pri
.x789
.reg_reset
,
859 SX150X_789_RESET_KEY2
);
863 static int sx150x_init_misc(struct sx150x_pinctrl
*pctl
)
867 switch (pctl
->data
->model
) {
869 reg
= pctl
->data
->pri
.x789
.reg_misc
;
870 value
= SX150X_789_REG_MISC_AUTOCLEAR_OFF
;
873 reg
= pctl
->data
->pri
.x456
.reg_advanced
;
877 * Only SX1506 has RegAdvanced, SX1504/5 are expected
878 * to initialize this offset to zero
884 reg
= pctl
->data
->pri
.x123
.reg_advanced
;
888 WARN(1, "Unknown chip model %d\n", pctl
->data
->model
);
892 return regmap_write(pctl
->regmap
, reg
, value
);
895 static int sx150x_init_hw(struct sx150x_pinctrl
*pctl
)
898 [SX150X_789
] = pctl
->data
->pri
.x789
.reg_polarity
,
899 [SX150X_456
] = pctl
->data
->pri
.x456
.reg_pld_mode
,
900 [SX150X_123
] = pctl
->data
->pri
.x123
.reg_pld_mode
,
904 if (pctl
->data
->model
== SX150X_789
&&
905 of_property_read_bool(pctl
->dev
->of_node
, "semtech,probe-reset")) {
906 err
= sx150x_reset(pctl
);
911 err
= sx150x_init_misc(pctl
);
915 /* Set all pins to work in normal mode */
916 return regmap_write(pctl
->regmap
, reg
[pctl
->data
->model
], 0);
919 static int sx150x_regmap_reg_width(struct sx150x_pinctrl
*pctl
,
922 const struct sx150x_device_data
*data
= pctl
->data
;
924 if (reg
== data
->reg_sense
) {
926 * RegSense packs two bits of configuration per GPIO,
927 * so we'd need to read twice as many bits as there
928 * are GPIO in our chip
930 return 2 * data
->ngpios
;
931 } else if ((data
->model
== SX150X_789
&&
932 (reg
== data
->pri
.x789
.reg_misc
||
933 reg
== data
->pri
.x789
.reg_clock
||
934 reg
== data
->pri
.x789
.reg_reset
))
936 (data
->model
== SX150X_123
&&
937 reg
== data
->pri
.x123
.reg_advanced
)
939 (data
->model
== SX150X_456
&&
940 data
->pri
.x456
.reg_advanced
&&
941 reg
== data
->pri
.x456
.reg_advanced
)) {
948 static unsigned int sx150x_maybe_swizzle(struct sx150x_pinctrl
*pctl
,
949 unsigned int reg
, unsigned int val
)
952 const struct sx150x_device_data
*data
= pctl
->data
;
955 * Whereas SX1509 presents RegSense in a simple layout as such:
956 * reg [ f f e e d d c c ]
957 * reg + 1 [ b b a a 9 9 8 8 ]
958 * reg + 2 [ 7 7 6 6 5 5 4 4 ]
959 * reg + 3 [ 3 3 2 2 1 1 0 0 ]
961 * SX1503 and SX1506 deviate from that data layout, instead storing
962 * their contents as follows:
964 * reg [ f f e e d d c c ]
965 * reg + 1 [ 7 7 6 6 5 5 4 4 ]
966 * reg + 2 [ b b a a 9 9 8 8 ]
967 * reg + 3 [ 3 3 2 2 1 1 0 0 ]
969 * so, taking that into account, we swap two
970 * inner bytes of a 4-byte result
973 if (reg
== data
->reg_sense
&&
974 data
->ngpios
== 16 &&
975 (data
->model
== SX150X_123
||
976 data
->model
== SX150X_456
)) {
977 a
= val
& 0x00ff0000;
978 b
= val
& 0x0000ff00;
989 * In order to mask the differences between 16 and 8 bit expander
990 * devices we set up a sligthly ficticious regmap that pretends to be
991 * a set of 32-bit (to accomodate RegSenseLow/RegSenseHigh
992 * pair/quartet) registers and transparently reconstructs those
993 * registers via multiple I2C/SMBus reads
995 * This way the rest of the driver code, interfacing with the chip via
996 * regmap API, can work assuming that each GPIO pin is represented by
997 * a group of bits at an offset proportional to GPIO number within a
1000 static int sx150x_regmap_reg_read(void *context
, unsigned int reg
,
1001 unsigned int *result
)
1004 struct sx150x_pinctrl
*pctl
= context
;
1005 struct i2c_client
*i2c
= pctl
->client
;
1006 const int width
= sx150x_regmap_reg_width(pctl
, reg
);
1007 unsigned int idx
, val
;
1010 * There are four potential cases covered by this function:
1012 * 1) 8-pin chip, single configuration bit register
1014 * This is trivial the code below just needs to read:
1015 * reg [ 7 6 5 4 3 2 1 0 ]
1017 * 2) 8-pin chip, double configuration bit register (RegSense)
1019 * The read will be done as follows:
1020 * reg [ 7 7 6 6 5 5 4 4 ]
1021 * reg + 1 [ 3 3 2 2 1 1 0 0 ]
1023 * 3) 16-pin chip, single configuration bit register
1025 * The read will be done as follows:
1026 * reg [ f e d c b a 9 8 ]
1027 * reg + 1 [ 7 6 5 4 3 2 1 0 ]
1029 * 4) 16-pin chip, double configuration bit register (RegSense)
1031 * The read will be done as follows:
1032 * reg [ f f e e d d c c ]
1033 * reg + 1 [ b b a a 9 9 8 8 ]
1034 * reg + 2 [ 7 7 6 6 5 5 4 4 ]
1035 * reg + 3 [ 3 3 2 2 1 1 0 0 ]
1038 for (n
= width
, val
= 0, idx
= reg
; n
> 0; n
-= 8, idx
++) {
1041 ret
= i2c_smbus_read_byte_data(i2c
, idx
);
1048 *result
= sx150x_maybe_swizzle(pctl
, reg
, val
);
1053 static int sx150x_regmap_reg_write(void *context
, unsigned int reg
,
1057 struct sx150x_pinctrl
*pctl
= context
;
1058 struct i2c_client
*i2c
= pctl
->client
;
1059 const int width
= sx150x_regmap_reg_width(pctl
, reg
);
1061 val
= sx150x_maybe_swizzle(pctl
, reg
, val
);
1063 n
= (width
- 1) & ~7;
1065 const u8 byte
= (val
>> n
) & 0xff;
1067 ret
= i2c_smbus_write_byte_data(i2c
, reg
, byte
);
1078 static bool sx150x_reg_volatile(struct device
*dev
, unsigned int reg
)
1080 struct sx150x_pinctrl
*pctl
= i2c_get_clientdata(to_i2c_client(dev
));
1082 return reg
== pctl
->data
->reg_irq_src
|| reg
== pctl
->data
->reg_data
;
1085 static const struct regmap_config sx150x_regmap_config
= {
1089 .cache_type
= REGCACHE_RBTREE
,
1091 .reg_read
= sx150x_regmap_reg_read
,
1092 .reg_write
= sx150x_regmap_reg_write
,
1094 .max_register
= SX150X_MAX_REGISTER
,
1095 .volatile_reg
= sx150x_reg_volatile
,
1098 static int sx150x_probe(struct i2c_client
*client
,
1099 const struct i2c_device_id
*id
)
1101 static const u32 i2c_funcs
= I2C_FUNC_SMBUS_BYTE_DATA
|
1102 I2C_FUNC_SMBUS_WRITE_WORD_DATA
;
1103 struct device
*dev
= &client
->dev
;
1104 struct sx150x_pinctrl
*pctl
;
1107 if (!i2c_check_functionality(client
->adapter
, i2c_funcs
))
1110 pctl
= devm_kzalloc(dev
, sizeof(*pctl
), GFP_KERNEL
);
1114 i2c_set_clientdata(client
, pctl
);
1117 pctl
->client
= client
;
1120 pctl
->data
= of_device_get_match_data(dev
);
1122 pctl
->data
= (struct sx150x_device_data
*)id
->driver_data
;
1127 pctl
->regmap
= devm_regmap_init(dev
, NULL
, pctl
,
1128 &sx150x_regmap_config
);
1129 if (IS_ERR(pctl
->regmap
)) {
1130 ret
= PTR_ERR(pctl
->regmap
);
1131 dev_err(dev
, "Failed to allocate register map: %d\n",
1136 mutex_init(&pctl
->lock
);
1138 ret
= sx150x_init_hw(pctl
);
1143 pctl
->pinctrl_desc
.name
= "sx150x-pinctrl";
1144 pctl
->pinctrl_desc
.pctlops
= &sx150x_pinctrl_ops
;
1145 pctl
->pinctrl_desc
.confops
= &sx150x_pinconf_ops
;
1146 pctl
->pinctrl_desc
.pins
= pctl
->data
->pins
;
1147 pctl
->pinctrl_desc
.npins
= pctl
->data
->npins
;
1148 pctl
->pinctrl_desc
.owner
= THIS_MODULE
;
1150 ret
= devm_pinctrl_register_and_init(dev
, &pctl
->pinctrl_desc
,
1151 pctl
, &pctl
->pctldev
);
1153 dev_err(dev
, "Failed to register pinctrl device\n");
1157 ret
= pinctrl_enable(pctl
->pctldev
);
1159 dev_err(dev
, "Failed to enable pinctrl device\n");
1163 /* Register GPIO controller */
1164 pctl
->gpio
.base
= -1;
1165 pctl
->gpio
.ngpio
= pctl
->data
->npins
;
1166 pctl
->gpio
.get_direction
= sx150x_gpio_get_direction
;
1167 pctl
->gpio
.direction_input
= sx150x_gpio_direction_input
;
1168 pctl
->gpio
.direction_output
= sx150x_gpio_direction_output
;
1169 pctl
->gpio
.get
= sx150x_gpio_get
;
1170 pctl
->gpio
.set
= sx150x_gpio_set
;
1171 pctl
->gpio
.set_config
= gpiochip_generic_config
;
1172 pctl
->gpio
.parent
= dev
;
1173 #ifdef CONFIG_OF_GPIO
1174 pctl
->gpio
.of_node
= dev
->of_node
;
1176 pctl
->gpio
.can_sleep
= true;
1177 pctl
->gpio
.label
= devm_kstrdup(dev
, client
->name
, GFP_KERNEL
);
1178 if (!pctl
->gpio
.label
)
1182 * Setting multiple pins is not safe when all pins are not
1183 * handled by the same regmap register. The oscio pin (present
1184 * on the SX150X_789 chips) lives in its own register, so
1185 * would require locking that is not in place at this time.
1187 if (pctl
->data
->model
!= SX150X_789
)
1188 pctl
->gpio
.set_multiple
= sx150x_gpio_set_multiple
;
1190 ret
= devm_gpiochip_add_data(dev
, &pctl
->gpio
, pctl
);
1194 ret
= gpiochip_add_pin_range(&pctl
->gpio
, dev_name(dev
),
1195 0, 0, pctl
->data
->npins
);
1199 /* Add Interrupt support if an irq is specified */
1200 if (client
->irq
> 0) {
1201 pctl
->irq_chip
.irq_mask
= sx150x_irq_mask
;
1202 pctl
->irq_chip
.irq_unmask
= sx150x_irq_unmask
;
1203 pctl
->irq_chip
.irq_set_type
= sx150x_irq_set_type
;
1204 pctl
->irq_chip
.irq_bus_lock
= sx150x_irq_bus_lock
;
1205 pctl
->irq_chip
.irq_bus_sync_unlock
= sx150x_irq_bus_sync_unlock
;
1206 pctl
->irq_chip
.name
= devm_kstrdup(dev
, client
->name
,
1208 if (!pctl
->irq_chip
.name
)
1211 pctl
->irq
.masked
= ~0;
1212 pctl
->irq
.sense
= 0;
1215 * Because sx150x_irq_threaded_fn invokes all of the
1216 * nested interrrupt handlers via handle_nested_irq,
1217 * any "handler" passed to gpiochip_irqchip_add()
1218 * below is going to be ignored, so the choice of the
1219 * function does not matter that much.
1221 * We set it to handle_bad_irq to avoid confusion,
1222 * plus it will be instantly noticeable if it is ever
1223 * called (should not happen)
1225 ret
= gpiochip_irqchip_add_nested(&pctl
->gpio
,
1227 handle_bad_irq
, IRQ_TYPE_NONE
);
1229 dev_err(dev
, "could not connect irqchip to gpiochip\n");
1233 ret
= devm_request_threaded_irq(dev
, client
->irq
, NULL
,
1234 sx150x_irq_thread_fn
,
1235 IRQF_ONESHOT
| IRQF_SHARED
|
1236 IRQF_TRIGGER_FALLING
,
1237 pctl
->irq_chip
.name
, pctl
);
1241 gpiochip_set_nested_irqchip(&pctl
->gpio
,
1249 static struct i2c_driver sx150x_driver
= {
1251 .name
= "sx150x-pinctrl",
1252 .of_match_table
= of_match_ptr(sx150x_of_match
),
1254 .probe
= sx150x_probe
,
1255 .id_table
= sx150x_id
,
1258 static int __init
sx150x_init(void)
1260 return i2c_add_driver(&sx150x_driver
);
1262 subsys_initcall(sx150x_init
);