pinctrl: sx150x: access the correct bits in the 4-bit regs of sx150[147]
[linux-2.6-block.git] / drivers / pinctrl / pinctrl-sx150x.c
1 /*
2  * Copyright (c) 2016, BayLibre, SAS. All rights reserved.
3  * Author: Neil Armstrong <narmstrong@baylibre.com>
4  *
5  * Copyright (c) 2010, Code Aurora Forum. All rights reserved.
6  *
7  * Driver for Semtech SX150X I2C GPIO Expanders
8  * The handling of the 4-bit chips (SX1501/SX1504/SX1507) is untested.
9  *
10  * Author: Gregory Bean <gbean@codeaurora.org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License version 2 and
14  * only version 2 as published by the Free Software Foundation.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  */
21
22 #include <linux/regmap.h>
23 #include <linux/i2c.h>
24 #include <linux/init.h>
25 #include <linux/interrupt.h>
26 #include <linux/irq.h>
27 #include <linux/mutex.h>
28 #include <linux/slab.h>
29 #include <linux/of.h>
30 #include <linux/of_device.h>
31 #include <linux/gpio/driver.h>
32 #include <linux/pinctrl/pinconf.h>
33 #include <linux/pinctrl/pinctrl.h>
34 #include <linux/pinctrl/pinmux.h>
35 #include <linux/pinctrl/pinconf-generic.h>
36
37 #include "core.h"
38 #include "pinconf.h"
39 #include "pinctrl-utils.h"
40
41 /* The chip models of sx150x */
42 enum {
43         SX150X_123 = 0,
44         SX150X_456,
45         SX150X_789,
46 };
47 enum {
48         SX150X_789_REG_MISC_AUTOCLEAR_OFF = 1 << 0,
49         SX150X_MAX_REGISTER = 0xad,
50         SX150X_IRQ_TYPE_EDGE_RISING = 0x1,
51         SX150X_IRQ_TYPE_EDGE_FALLING = 0x2,
52         SX150X_789_RESET_KEY1 = 0x12,
53         SX150X_789_RESET_KEY2 = 0x34,
54 };
55
56 struct sx150x_123_pri {
57         u8 reg_pld_mode;
58         u8 reg_pld_table0;
59         u8 reg_pld_table1;
60         u8 reg_pld_table2;
61         u8 reg_pld_table3;
62         u8 reg_pld_table4;
63         u8 reg_advance;
64 };
65
66 struct sx150x_456_pri {
67         u8 reg_pld_mode;
68         u8 reg_pld_table0;
69         u8 reg_pld_table1;
70         u8 reg_pld_table2;
71         u8 reg_pld_table3;
72         u8 reg_pld_table4;
73         u8 reg_advance;
74 };
75
76 struct sx150x_789_pri {
77         u8 reg_drain;
78         u8 reg_polarity;
79         u8 reg_clock;
80         u8 reg_misc;
81         u8 reg_reset;
82         u8 ngpios;
83 };
84
85 struct sx150x_device_data {
86         u8 model;
87         u8 reg_pullup;
88         u8 reg_pulldn;
89         u8 reg_dir;
90         u8 reg_data;
91         u8 reg_irq_mask;
92         u8 reg_irq_src;
93         u8 reg_sense;
94         u8 ngpios;
95         union {
96                 struct sx150x_123_pri x123;
97                 struct sx150x_456_pri x456;
98                 struct sx150x_789_pri x789;
99         } pri;
100         const struct pinctrl_pin_desc *pins;
101         unsigned int npins;
102 };
103
104 struct sx150x_pinctrl {
105         struct device *dev;
106         struct i2c_client *client;
107         struct pinctrl_dev *pctldev;
108         struct pinctrl_desc pinctrl_desc;
109         struct gpio_chip gpio;
110         struct irq_chip irq_chip;
111         struct regmap *regmap;
112         struct {
113                 u32 sense;
114                 u32 masked;
115         } irq;
116         struct mutex lock;
117         const struct sx150x_device_data *data;
118 };
119
120 static const struct pinctrl_pin_desc sx150x_4_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, "oscio"),
126 };
127
128 static const struct pinctrl_pin_desc sx150x_8_pins[] = {
129         PINCTRL_PIN(0, "gpio0"),
130         PINCTRL_PIN(1, "gpio1"),
131         PINCTRL_PIN(2, "gpio2"),
132         PINCTRL_PIN(3, "gpio3"),
133         PINCTRL_PIN(4, "gpio4"),
134         PINCTRL_PIN(5, "gpio5"),
135         PINCTRL_PIN(6, "gpio6"),
136         PINCTRL_PIN(7, "gpio7"),
137         PINCTRL_PIN(8, "oscio"),
138 };
139
140 static const struct pinctrl_pin_desc sx150x_16_pins[] = {
141         PINCTRL_PIN(0, "gpio0"),
142         PINCTRL_PIN(1, "gpio1"),
143         PINCTRL_PIN(2, "gpio2"),
144         PINCTRL_PIN(3, "gpio3"),
145         PINCTRL_PIN(4, "gpio4"),
146         PINCTRL_PIN(5, "gpio5"),
147         PINCTRL_PIN(6, "gpio6"),
148         PINCTRL_PIN(7, "gpio7"),
149         PINCTRL_PIN(8, "gpio8"),
150         PINCTRL_PIN(9, "gpio9"),
151         PINCTRL_PIN(10, "gpio10"),
152         PINCTRL_PIN(11, "gpio11"),
153         PINCTRL_PIN(12, "gpio12"),
154         PINCTRL_PIN(13, "gpio13"),
155         PINCTRL_PIN(14, "gpio14"),
156         PINCTRL_PIN(15, "gpio15"),
157         PINCTRL_PIN(16, "oscio"),
158 };
159
160 static const struct sx150x_device_data sx1501q_device_data = {
161         .model = SX150X_123,
162         .reg_pullup     = 0x02,
163         .reg_pulldn     = 0x03,
164         .reg_dir        = 0x01,
165         .reg_data       = 0x00,
166         .reg_irq_mask   = 0x05,
167         .reg_irq_src    = 0x08,
168         .reg_sense      = 0x07,
169         .pri.x123 = {
170                 .reg_pld_mode   = 0x10,
171                 .reg_pld_table0 = 0x11,
172                 .reg_pld_table2 = 0x13,
173                 .reg_advance    = 0xad,
174         },
175         .ngpios = 4,
176         .pins = sx150x_4_pins,
177         .npins = 4, /* oscio not available */
178 };
179
180 static const struct sx150x_device_data sx1502q_device_data = {
181         .model = SX150X_123,
182         .reg_pullup     = 0x02,
183         .reg_pulldn     = 0x03,
184         .reg_dir        = 0x01,
185         .reg_data       = 0x00,
186         .reg_irq_mask   = 0x05,
187         .reg_irq_src    = 0x08,
188         .reg_sense      = 0x06,
189         .pri.x123 = {
190                 .reg_pld_mode   = 0x10,
191                 .reg_pld_table0 = 0x11,
192                 .reg_pld_table1 = 0x12,
193                 .reg_pld_table2 = 0x13,
194                 .reg_pld_table3 = 0x14,
195                 .reg_pld_table4 = 0x15,
196                 .reg_advance    = 0xad,
197         },
198         .ngpios = 8,
199         .pins = sx150x_8_pins,
200         .npins = 8, /* oscio not available */
201 };
202
203 static const struct sx150x_device_data sx1503q_device_data = {
204         .model = SX150X_123,
205         .reg_pullup     = 0x04,
206         .reg_pulldn     = 0x06,
207         .reg_dir        = 0x02,
208         .reg_data       = 0x00,
209         .reg_irq_mask   = 0x08,
210         .reg_irq_src    = 0x0e,
211         .reg_sense      = 0x0a,
212         .pri.x123 = {
213                 .reg_pld_mode   = 0x20,
214                 .reg_pld_table0 = 0x22,
215                 .reg_pld_table1 = 0x24,
216                 .reg_pld_table2 = 0x26,
217                 .reg_pld_table3 = 0x28,
218                 .reg_pld_table4 = 0x2a,
219                 .reg_advance    = 0xad,
220         },
221         .ngpios = 16,
222         .pins = sx150x_16_pins,
223         .npins  = 16, /* oscio not available */
224 };
225
226 static const struct sx150x_device_data sx1504q_device_data = {
227         .model = SX150X_456,
228         .reg_pullup     = 0x02,
229         .reg_pulldn     = 0x03,
230         .reg_dir        = 0x01,
231         .reg_data       = 0x00,
232         .reg_irq_mask   = 0x05,
233         .reg_irq_src    = 0x08,
234         .reg_sense      = 0x07,
235         .pri.x456 = {
236                 .reg_pld_mode   = 0x10,
237                 .reg_pld_table0 = 0x11,
238                 .reg_pld_table2 = 0x13,
239         },
240         .ngpios = 4,
241         .pins = sx150x_4_pins,
242         .npins = 4, /* oscio not available */
243 };
244
245 static const struct sx150x_device_data sx1505q_device_data = {
246         .model = SX150X_456,
247         .reg_pullup     = 0x02,
248         .reg_pulldn     = 0x03,
249         .reg_dir        = 0x01,
250         .reg_data       = 0x00,
251         .reg_irq_mask   = 0x05,
252         .reg_irq_src    = 0x08,
253         .reg_sense      = 0x06,
254         .pri.x456 = {
255                 .reg_pld_mode   = 0x10,
256                 .reg_pld_table0 = 0x11,
257                 .reg_pld_table1 = 0x12,
258                 .reg_pld_table2 = 0x13,
259                 .reg_pld_table3 = 0x14,
260                 .reg_pld_table4 = 0x15,
261         },
262         .ngpios = 8,
263         .pins = sx150x_8_pins,
264         .npins = 8, /* oscio not available */
265 };
266
267 static const struct sx150x_device_data sx1506q_device_data = {
268         .model = SX150X_456,
269         .reg_pullup     = 0x04,
270         .reg_pulldn     = 0x06,
271         .reg_dir        = 0x02,
272         .reg_data       = 0x00,
273         .reg_irq_mask   = 0x08,
274         .reg_irq_src    = 0x0e,
275         .reg_sense      = 0x0a,
276         .pri.x456 = {
277                 .reg_pld_mode   = 0x20,
278                 .reg_pld_table0 = 0x22,
279                 .reg_pld_table1 = 0x24,
280                 .reg_pld_table2 = 0x26,
281                 .reg_pld_table3 = 0x28,
282                 .reg_pld_table4 = 0x2a,
283                 .reg_advance    = 0xad,
284         },
285         .ngpios = 16,
286         .pins = sx150x_16_pins,
287         .npins = 16, /* oscio not available */
288 };
289
290 static const struct sx150x_device_data sx1507q_device_data = {
291         .model = SX150X_789,
292         .reg_pullup     = 0x03,
293         .reg_pulldn     = 0x04,
294         .reg_dir        = 0x07,
295         .reg_data       = 0x08,
296         .reg_irq_mask   = 0x09,
297         .reg_irq_src    = 0x0b,
298         .reg_sense      = 0x0a,
299         .pri.x789 = {
300                 .reg_drain      = 0x05,
301                 .reg_polarity   = 0x06,
302                 .reg_clock      = 0x0d,
303                 .reg_misc       = 0x0e,
304                 .reg_reset      = 0x7d,
305         },
306         .ngpios = 4,
307         .pins = sx150x_4_pins,
308         .npins = ARRAY_SIZE(sx150x_4_pins),
309 };
310
311 static const struct sx150x_device_data sx1508q_device_data = {
312         .model = SX150X_789,
313         .reg_pullup     = 0x03,
314         .reg_pulldn     = 0x04,
315         .reg_dir        = 0x07,
316         .reg_data       = 0x08,
317         .reg_irq_mask   = 0x09,
318         .reg_irq_src    = 0x0c,
319         .reg_sense      = 0x0a,
320         .pri.x789 = {
321                 .reg_drain      = 0x05,
322                 .reg_polarity   = 0x06,
323                 .reg_clock      = 0x0f,
324                 .reg_misc       = 0x10,
325                 .reg_reset      = 0x7d,
326         },
327         .ngpios = 8,
328         .pins = sx150x_8_pins,
329         .npins = ARRAY_SIZE(sx150x_8_pins),
330 };
331
332 static const struct sx150x_device_data sx1509q_device_data = {
333         .model = SX150X_789,
334         .reg_pullup     = 0x06,
335         .reg_pulldn     = 0x08,
336         .reg_dir        = 0x0e,
337         .reg_data       = 0x10,
338         .reg_irq_mask   = 0x12,
339         .reg_irq_src    = 0x18,
340         .reg_sense      = 0x14,
341         .pri.x789 = {
342                 .reg_drain      = 0x0a,
343                 .reg_polarity   = 0x0c,
344                 .reg_clock      = 0x1e,
345                 .reg_misc       = 0x1f,
346                 .reg_reset      = 0x7d,
347         },
348         .ngpios = 16,
349         .pins = sx150x_16_pins,
350         .npins = ARRAY_SIZE(sx150x_16_pins),
351 };
352
353 static int sx150x_pinctrl_get_groups_count(struct pinctrl_dev *pctldev)
354 {
355         return 0;
356 }
357
358 static const char *sx150x_pinctrl_get_group_name(struct pinctrl_dev *pctldev,
359                                                 unsigned int group)
360 {
361         return NULL;
362 }
363
364 static int sx150x_pinctrl_get_group_pins(struct pinctrl_dev *pctldev,
365                                         unsigned int group,
366                                         const unsigned int **pins,
367                                         unsigned int *num_pins)
368 {
369         return -ENOTSUPP;
370 }
371
372 static const struct pinctrl_ops sx150x_pinctrl_ops = {
373         .get_groups_count = sx150x_pinctrl_get_groups_count,
374         .get_group_name = sx150x_pinctrl_get_group_name,
375         .get_group_pins = sx150x_pinctrl_get_group_pins,
376 #ifdef CONFIG_OF
377         .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
378         .dt_free_map = pinctrl_utils_free_map,
379 #endif
380 };
381
382 static bool sx150x_pin_is_oscio(struct sx150x_pinctrl *pctl, unsigned int pin)
383 {
384         if (pin >= pctl->data->npins)
385                 return false;
386
387         /* OSCIO pin is only present in 789 devices */
388         if (pctl->data->model != SX150X_789)
389                 return false;
390
391         return !strcmp(pctl->data->pins[pin].name, "oscio");
392 }
393
394 static int sx150x_gpio_get_direction(struct gpio_chip *chip,
395                                       unsigned int offset)
396 {
397         struct sx150x_pinctrl *pctl = gpiochip_get_data(chip);
398         unsigned int value;
399         int ret;
400
401         if (sx150x_pin_is_oscio(pctl, offset))
402                 return false;
403
404         ret = regmap_read(pctl->regmap, pctl->data->reg_dir, &value);
405         if (ret < 0)
406                 return ret;
407
408         return !!(value & BIT(offset));
409 }
410
411 static int sx150x_gpio_get(struct gpio_chip *chip, unsigned int offset)
412 {
413         struct sx150x_pinctrl *pctl = gpiochip_get_data(chip);
414         unsigned int value;
415         int ret;
416
417         if (sx150x_pin_is_oscio(pctl, offset))
418                 return -EINVAL;
419
420         ret = regmap_read(pctl->regmap, pctl->data->reg_data, &value);
421         if (ret < 0)
422                 return ret;
423
424         return !!(value & BIT(offset));
425 }
426
427 static int sx150x_gpio_set_single_ended(struct gpio_chip *chip,
428                                         unsigned int offset,
429                                         enum single_ended_mode mode)
430 {
431         struct sx150x_pinctrl *pctl = gpiochip_get_data(chip);
432         int ret;
433
434         switch (mode) {
435         case LINE_MODE_PUSH_PULL:
436                 if (pctl->data->model != SX150X_789 ||
437                     sx150x_pin_is_oscio(pctl, offset))
438                         return 0;
439
440                 ret = regmap_write_bits(pctl->regmap,
441                                         pctl->data->pri.x789.reg_drain,
442                                         BIT(offset), 0);
443                 break;
444
445         case LINE_MODE_OPEN_DRAIN:
446                 if (pctl->data->model != SX150X_789 ||
447                     sx150x_pin_is_oscio(pctl, offset))
448                         return -ENOTSUPP;
449
450                 ret = regmap_write_bits(pctl->regmap,
451                                         pctl->data->pri.x789.reg_drain,
452                                         BIT(offset), BIT(offset));
453                 break;
454         default:
455                 ret = -ENOTSUPP;
456                 break;
457         }
458
459         return ret;
460 }
461
462 static int __sx150x_gpio_set(struct sx150x_pinctrl *pctl, unsigned int offset,
463                              int value)
464 {
465         return regmap_write_bits(pctl->regmap, pctl->data->reg_data,
466                                  BIT(offset), value ? BIT(offset) : 0);
467 }
468
469 static int sx150x_gpio_oscio_set(struct sx150x_pinctrl *pctl,
470                                  int value)
471 {
472         return regmap_write(pctl->regmap,
473                             pctl->data->pri.x789.reg_clock,
474                             (value ? 0x1f : 0x10));
475 }
476
477 static void sx150x_gpio_set(struct gpio_chip *chip, unsigned int offset,
478                             int value)
479 {
480         struct sx150x_pinctrl *pctl = gpiochip_get_data(chip);
481
482         if (sx150x_pin_is_oscio(pctl, offset))
483                 sx150x_gpio_oscio_set(pctl, value);
484         else
485                 __sx150x_gpio_set(pctl, offset, value);
486
487 }
488
489 static void sx150x_gpio_set_multiple(struct gpio_chip *chip,
490                                      unsigned long *mask,
491                                      unsigned long *bits)
492 {
493         struct sx150x_pinctrl *pctl = gpiochip_get_data(chip);
494
495         regmap_write_bits(pctl->regmap, pctl->data->reg_data, *mask, *bits);
496 }
497
498 static int sx150x_gpio_direction_input(struct gpio_chip *chip,
499                                        unsigned int offset)
500 {
501         struct sx150x_pinctrl *pctl = gpiochip_get_data(chip);
502
503         if (sx150x_pin_is_oscio(pctl, offset))
504                 return -EINVAL;
505
506         return regmap_write_bits(pctl->regmap,
507                                  pctl->data->reg_dir,
508                                  BIT(offset), BIT(offset));
509 }
510
511 static int sx150x_gpio_direction_output(struct gpio_chip *chip,
512                                         unsigned int offset, int value)
513 {
514         struct sx150x_pinctrl *pctl = gpiochip_get_data(chip);
515         int ret;
516
517         if (sx150x_pin_is_oscio(pctl, offset))
518                 return sx150x_gpio_oscio_set(pctl, value);
519
520         ret = __sx150x_gpio_set(pctl, offset, value);
521         if (ret < 0)
522                 return ret;
523
524         return regmap_write_bits(pctl->regmap,
525                                  pctl->data->reg_dir,
526                                  BIT(offset), 0);
527 }
528
529 static void sx150x_irq_mask(struct irq_data *d)
530 {
531         struct sx150x_pinctrl *pctl =
532                         gpiochip_get_data(irq_data_get_irq_chip_data(d));
533         unsigned int n = d->hwirq;
534
535         pctl->irq.masked |= BIT(n);
536 }
537
538 static void sx150x_irq_unmask(struct irq_data *d)
539 {
540         struct sx150x_pinctrl *pctl =
541                         gpiochip_get_data(irq_data_get_irq_chip_data(d));
542         unsigned int n = d->hwirq;
543
544         pctl->irq.masked &= ~BIT(n);
545 }
546
547 static void sx150x_irq_set_sense(struct sx150x_pinctrl *pctl,
548                                  unsigned int line, unsigned int sense)
549 {
550         /*
551          * Every interrupt line is represented by two bits shifted
552          * proportionally to the line number
553          */
554         const unsigned int n = line * 2;
555         const unsigned int mask = ~((SX150X_IRQ_TYPE_EDGE_RISING |
556                                      SX150X_IRQ_TYPE_EDGE_FALLING) << n);
557
558         pctl->irq.sense &= mask;
559         pctl->irq.sense |= sense << n;
560 }
561
562 static int sx150x_irq_set_type(struct irq_data *d, unsigned int flow_type)
563 {
564         struct sx150x_pinctrl *pctl =
565                         gpiochip_get_data(irq_data_get_irq_chip_data(d));
566         unsigned int n, val = 0;
567
568         if (flow_type & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW))
569                 return -EINVAL;
570
571         n = d->hwirq;
572
573         if (flow_type & IRQ_TYPE_EDGE_RISING)
574                 val |= SX150X_IRQ_TYPE_EDGE_RISING;
575         if (flow_type & IRQ_TYPE_EDGE_FALLING)
576                 val |= SX150X_IRQ_TYPE_EDGE_FALLING;
577
578         sx150x_irq_set_sense(pctl, n, val);
579         return 0;
580 }
581
582 static irqreturn_t sx150x_irq_thread_fn(int irq, void *dev_id)
583 {
584         struct sx150x_pinctrl *pctl = (struct sx150x_pinctrl *)dev_id;
585         unsigned long n, status;
586         unsigned int val;
587         int err;
588
589         err = regmap_read(pctl->regmap, pctl->data->reg_irq_src, &val);
590         if (err < 0)
591                 return IRQ_NONE;
592
593         err = regmap_write(pctl->regmap, pctl->data->reg_irq_src, val);
594         if (err < 0)
595                 return IRQ_NONE;
596
597         status = val;
598         for_each_set_bit(n, &status, pctl->data->ngpios)
599                 handle_nested_irq(irq_find_mapping(pctl->gpio.irqdomain, n));
600
601         return IRQ_HANDLED;
602 }
603
604 static void sx150x_irq_bus_lock(struct irq_data *d)
605 {
606         struct sx150x_pinctrl *pctl =
607                         gpiochip_get_data(irq_data_get_irq_chip_data(d));
608
609         mutex_lock(&pctl->lock);
610 }
611
612 static void sx150x_irq_bus_sync_unlock(struct irq_data *d)
613 {
614         struct sx150x_pinctrl *pctl =
615                         gpiochip_get_data(irq_data_get_irq_chip_data(d));
616
617         regmap_write(pctl->regmap, pctl->data->reg_irq_mask, pctl->irq.masked);
618         regmap_write(pctl->regmap, pctl->data->reg_sense, pctl->irq.sense);
619         mutex_unlock(&pctl->lock);
620 }
621
622 static int sx150x_pinconf_get(struct pinctrl_dev *pctldev, unsigned int pin,
623                               unsigned long *config)
624 {
625         struct sx150x_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
626         unsigned int param = pinconf_to_config_param(*config);
627         int ret;
628         u32 arg;
629         unsigned int data;
630
631         if (sx150x_pin_is_oscio(pctl, pin)) {
632                 switch (param) {
633                 case PIN_CONFIG_DRIVE_PUSH_PULL:
634                 case PIN_CONFIG_OUTPUT:
635                         ret = regmap_read(pctl->regmap,
636                                           pctl->data->pri.x789.reg_clock,
637                                           &data);
638                         if (ret < 0)
639                                 return ret;
640
641                         if (param == PIN_CONFIG_DRIVE_PUSH_PULL)
642                                 arg = (data & 0x1f) ? 1 : 0;
643                         else {
644                                 if ((data & 0x1f) == 0x1f)
645                                         arg = 1;
646                                 else if ((data & 0x1f) == 0x10)
647                                         arg = 0;
648                                 else
649                                         return -EINVAL;
650                         }
651
652                         break;
653                 default:
654                         return -ENOTSUPP;
655                 }
656
657                 goto out;
658         }
659
660         switch (param) {
661         case PIN_CONFIG_BIAS_PULL_DOWN:
662                 ret = regmap_read(pctl->regmap,
663                                   pctl->data->reg_pulldn,
664                                   &data);
665                 data &= BIT(pin);
666
667                 if (ret < 0)
668                         return ret;
669
670                 if (!ret)
671                         return -EINVAL;
672
673                 arg = 1;
674                 break;
675
676         case PIN_CONFIG_BIAS_PULL_UP:
677                 ret = regmap_read(pctl->regmap,
678                                   pctl->data->reg_pullup,
679                                   &data);
680                 data &= BIT(pin);
681
682                 if (ret < 0)
683                         return ret;
684
685                 if (!ret)
686                         return -EINVAL;
687
688                 arg = 1;
689                 break;
690
691         case PIN_CONFIG_DRIVE_OPEN_DRAIN:
692                 if (pctl->data->model != SX150X_789)
693                         return -ENOTSUPP;
694
695                 ret = regmap_read(pctl->regmap,
696                                   pctl->data->pri.x789.reg_drain,
697                                   &data);
698                 data &= BIT(pin);
699
700                 if (ret < 0)
701                         return ret;
702
703                 if (!data)
704                         return -EINVAL;
705
706                 arg = 1;
707                 break;
708
709         case PIN_CONFIG_DRIVE_PUSH_PULL:
710                 if (pctl->data->model != SX150X_789)
711                         arg = true;
712                 else {
713                         ret = regmap_read(pctl->regmap,
714                                           pctl->data->pri.x789.reg_drain,
715                                           &data);
716                         data &= BIT(pin);
717
718                         if (ret < 0)
719                                 return ret;
720
721                         if (data)
722                                 return -EINVAL;
723
724                         arg = 1;
725                 }
726                 break;
727
728         case PIN_CONFIG_OUTPUT:
729                 ret = sx150x_gpio_get_direction(&pctl->gpio, pin);
730                 if (ret < 0)
731                         return ret;
732
733                 if (ret)
734                         return -EINVAL;
735
736                 ret = sx150x_gpio_get(&pctl->gpio, pin);
737                 if (ret < 0)
738                         return ret;
739
740                 arg = ret;
741                 break;
742
743         default:
744                 return -ENOTSUPP;
745         }
746
747 out:
748         *config = pinconf_to_config_packed(param, arg);
749
750         return 0;
751 }
752
753 static int sx150x_pinconf_set(struct pinctrl_dev *pctldev, unsigned int pin,
754                               unsigned long *configs, unsigned int num_configs)
755 {
756         struct sx150x_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
757         enum pin_config_param param;
758         u32 arg;
759         int i;
760         int ret;
761
762         for (i = 0; i < num_configs; i++) {
763                 param = pinconf_to_config_param(configs[i]);
764                 arg = pinconf_to_config_argument(configs[i]);
765
766                 if (sx150x_pin_is_oscio(pctl, pin)) {
767                         if (param == PIN_CONFIG_OUTPUT) {
768                                 ret = sx150x_gpio_direction_output(&pctl->gpio,
769                                                                    pin, arg);
770                                 if (ret < 0)
771                                         return ret;
772
773                                 continue;
774                         } else
775                                 return -ENOTSUPP;
776                 }
777
778                 switch (param) {
779                 case PIN_CONFIG_BIAS_PULL_PIN_DEFAULT:
780                 case PIN_CONFIG_BIAS_DISABLE:
781                         ret = regmap_write_bits(pctl->regmap,
782                                                 pctl->data->reg_pulldn,
783                                                 BIT(pin), 0);
784                         if (ret < 0)
785                                 return ret;
786
787                         ret = regmap_write_bits(pctl->regmap,
788                                                 pctl->data->reg_pullup,
789                                                 BIT(pin), 0);
790                         if (ret < 0)
791                                 return ret;
792
793                         break;
794
795                 case PIN_CONFIG_BIAS_PULL_UP:
796                         ret = regmap_write_bits(pctl->regmap,
797                                                 pctl->data->reg_pullup,
798                                                 BIT(pin), BIT(pin));
799                         if (ret < 0)
800                                 return ret;
801
802                         break;
803
804                 case PIN_CONFIG_BIAS_PULL_DOWN:
805                         ret = regmap_write_bits(pctl->regmap,
806                                                 pctl->data->reg_pulldn,
807                                                 BIT(pin), BIT(pin));
808                         if (ret < 0)
809                                 return ret;
810
811                         break;
812
813                 case PIN_CONFIG_DRIVE_OPEN_DRAIN:
814                         ret = sx150x_gpio_set_single_ended(&pctl->gpio,
815                                                 pin, LINE_MODE_OPEN_DRAIN);
816                         if (ret < 0)
817                                 return ret;
818
819                         break;
820
821                 case PIN_CONFIG_DRIVE_PUSH_PULL:
822                         ret = sx150x_gpio_set_single_ended(&pctl->gpio,
823                                                 pin, LINE_MODE_PUSH_PULL);
824                         if (ret < 0)
825                                 return ret;
826
827                         break;
828
829                 case PIN_CONFIG_OUTPUT:
830                         ret = sx150x_gpio_direction_output(&pctl->gpio,
831                                                            pin, arg);
832                         if (ret < 0)
833                                 return ret;
834
835                         break;
836
837                 default:
838                         return -ENOTSUPP;
839                 }
840         } /* for each config */
841
842         return 0;
843 }
844
845 static const struct pinconf_ops sx150x_pinconf_ops = {
846         .pin_config_get = sx150x_pinconf_get,
847         .pin_config_set = sx150x_pinconf_set,
848         .is_generic = true,
849 };
850
851 static const struct i2c_device_id sx150x_id[] = {
852         {"sx1501q", (kernel_ulong_t) &sx1501q_device_data },
853         {"sx1502q", (kernel_ulong_t) &sx1502q_device_data },
854         {"sx1503q", (kernel_ulong_t) &sx1503q_device_data },
855         {"sx1504q", (kernel_ulong_t) &sx1504q_device_data },
856         {"sx1505q", (kernel_ulong_t) &sx1505q_device_data },
857         {"sx1506q", (kernel_ulong_t) &sx1506q_device_data },
858         {"sx1507q", (kernel_ulong_t) &sx1507q_device_data },
859         {"sx1508q", (kernel_ulong_t) &sx1508q_device_data },
860         {"sx1509q", (kernel_ulong_t) &sx1509q_device_data },
861         {}
862 };
863
864 static const struct of_device_id sx150x_of_match[] = {
865         { .compatible = "semtech,sx1501q", .data = &sx1501q_device_data },
866         { .compatible = "semtech,sx1502q", .data = &sx1502q_device_data },
867         { .compatible = "semtech,sx1503q", .data = &sx1503q_device_data },
868         { .compatible = "semtech,sx1504q", .data = &sx1504q_device_data },
869         { .compatible = "semtech,sx1505q", .data = &sx1505q_device_data },
870         { .compatible = "semtech,sx1506q", .data = &sx1506q_device_data },
871         { .compatible = "semtech,sx1507q", .data = &sx1507q_device_data },
872         { .compatible = "semtech,sx1508q", .data = &sx1508q_device_data },
873         { .compatible = "semtech,sx1509q", .data = &sx1509q_device_data },
874         {},
875 };
876
877 static int sx150x_reset(struct sx150x_pinctrl *pctl)
878 {
879         int err;
880
881         err = i2c_smbus_write_byte_data(pctl->client,
882                                         pctl->data->pri.x789.reg_reset,
883                                         SX150X_789_RESET_KEY1);
884         if (err < 0)
885                 return err;
886
887         err = i2c_smbus_write_byte_data(pctl->client,
888                                         pctl->data->pri.x789.reg_reset,
889                                         SX150X_789_RESET_KEY2);
890         return err;
891 }
892
893 static int sx150x_init_misc(struct sx150x_pinctrl *pctl)
894 {
895         u8 reg, value;
896
897         switch (pctl->data->model) {
898         case SX150X_789:
899                 reg   = pctl->data->pri.x789.reg_misc;
900                 value = SX150X_789_REG_MISC_AUTOCLEAR_OFF;
901                 break;
902         case SX150X_456:
903                 reg   = pctl->data->pri.x456.reg_advance;
904                 value = 0x00;
905
906                 /*
907                  * Only SX1506 has RegAdvanced, SX1504/5 are expected
908                  * to initialize this offset to zero
909                  */
910                 if (!reg)
911                         return 0;
912                 break;
913         case SX150X_123:
914                 reg   = pctl->data->pri.x123.reg_advance;
915                 value = 0x00;
916                 break;
917         default:
918                 WARN(1, "Unknown chip model %d\n", pctl->data->model);
919                 return -EINVAL;
920         }
921
922         return regmap_write(pctl->regmap, reg, value);
923 }
924
925 static int sx150x_init_hw(struct sx150x_pinctrl *pctl)
926 {
927         const u8 reg[] = {
928                 [SX150X_789] = pctl->data->pri.x789.reg_polarity,
929                 [SX150X_456] = pctl->data->pri.x456.reg_pld_mode,
930                 [SX150X_123] = pctl->data->pri.x123.reg_pld_mode,
931         };
932         int err;
933
934         if (pctl->data->model == SX150X_789 &&
935             of_property_read_bool(pctl->dev->of_node, "semtech,probe-reset")) {
936                 err = sx150x_reset(pctl);
937                 if (err < 0)
938                         return err;
939         }
940
941         err = sx150x_init_misc(pctl);
942         if (err < 0)
943                 return err;
944
945         /* Set all pins to work in normal mode */
946         return regmap_write(pctl->regmap, reg[pctl->data->model], 0);
947 }
948
949 static int sx150x_regmap_reg_width(struct sx150x_pinctrl *pctl,
950                                    unsigned int reg)
951 {
952         const struct sx150x_device_data *data = pctl->data;
953
954         if (reg == data->reg_sense) {
955                 /*
956                  * RegSense packs two bits of configuration per GPIO,
957                  * so we'd need to read twice as many bits as there
958                  * are GPIO in our chip
959                  */
960                 return 2 * data->ngpios;
961         } else if ((data->model == SX150X_789 &&
962                     (reg == data->pri.x789.reg_misc ||
963                      reg == data->pri.x789.reg_clock ||
964                      reg == data->pri.x789.reg_reset))
965                    ||
966                    (data->model == SX150X_123 &&
967                     reg == data->pri.x123.reg_advance)
968                    ||
969                    (data->model == SX150X_456 &&
970                     reg == data->pri.x456.reg_advance)) {
971                 return 8;
972         } else {
973                 return data->ngpios;
974         }
975 }
976
977 static unsigned int sx150x_maybe_swizzle(struct sx150x_pinctrl *pctl,
978                                          unsigned int reg, unsigned int val)
979 {
980         unsigned int a, b;
981         const struct sx150x_device_data *data = pctl->data;
982
983         /*
984          * Whereas SX1509 presents RegSense in a simple layout as such:
985          *      reg     [ f f e e d d c c ]
986          *      reg + 1 [ b b a a 9 9 8 8 ]
987          *      reg + 2 [ 7 7 6 6 5 5 4 4 ]
988          *      reg + 3 [ 3 3 2 2 1 1 0 0 ]
989          *
990          * SX1503 and SX1506 deviate from that data layout, instead storing
991          * their contents as follows:
992          *
993          *      reg     [ f f e e d d c c ]
994          *      reg + 1 [ 7 7 6 6 5 5 4 4 ]
995          *      reg + 2 [ b b a a 9 9 8 8 ]
996          *      reg + 3 [ 3 3 2 2 1 1 0 0 ]
997          *
998          * so, taking that into account, we swap two
999          * inner bytes of a 4-byte result
1000          */
1001
1002         if (reg == data->reg_sense &&
1003             data->ngpios == 16 &&
1004             (data->model == SX150X_123 ||
1005              data->model == SX150X_456)) {
1006                 a = val & 0x00ff0000;
1007                 b = val & 0x0000ff00;
1008
1009                 val &= 0xff0000ff;
1010                 val |= b << 8;
1011                 val |= a >> 8;
1012         }
1013
1014         return val;
1015 }
1016
1017 /*
1018  * In order to mask the differences between 16 and 8 bit expander
1019  * devices we set up a sligthly ficticious regmap that pretends to be
1020  * a set of 32-bit (to accomodate RegSenseLow/RegSenseHigh
1021  * pair/quartet) registers and transparently reconstructs those
1022  * registers via multiple I2C/SMBus reads
1023  *
1024  * This way the rest of the driver code, interfacing with the chip via
1025  * regmap API, can work assuming that each GPIO pin is represented by
1026  * a group of bits at an offset proportional to GPIO number within a
1027  * given register.
1028  */
1029 static int sx150x_regmap_reg_read(void *context, unsigned int reg,
1030                                   unsigned int *result)
1031 {
1032         int ret, n;
1033         struct sx150x_pinctrl *pctl = context;
1034         struct i2c_client *i2c = pctl->client;
1035         const int width = sx150x_regmap_reg_width(pctl, reg);
1036         unsigned int idx, val;
1037
1038         /*
1039          * There are four potential cases covered by this function:
1040          *
1041          * 1) 8-pin chip, single configuration bit register
1042          *
1043          *      This is trivial the code below just needs to read:
1044          *              reg  [ 7 6 5 4 3 2 1 0 ]
1045          *
1046          * 2) 8-pin chip, double configuration bit register (RegSense)
1047          *
1048          *      The read will be done as follows:
1049          *              reg      [ 7 7 6 6 5 5 4 4 ]
1050          *              reg + 1  [ 3 3 2 2 1 1 0 0 ]
1051          *
1052          * 3) 16-pin chip, single configuration bit register
1053          *
1054          *      The read will be done as follows:
1055          *              reg     [ f e d c b a 9 8 ]
1056          *              reg + 1 [ 7 6 5 4 3 2 1 0 ]
1057          *
1058          * 4) 16-pin chip, double configuration bit register (RegSense)
1059          *
1060          *      The read will be done as follows:
1061          *              reg     [ f f e e d d c c ]
1062          *              reg + 1 [ b b a a 9 9 8 8 ]
1063          *              reg + 2 [ 7 7 6 6 5 5 4 4 ]
1064          *              reg + 3 [ 3 3 2 2 1 1 0 0 ]
1065          */
1066
1067         for (n = width, val = 0, idx = reg; n > 0; n -= 8, idx++) {
1068                 val <<= 8;
1069
1070                 ret = i2c_smbus_read_byte_data(i2c, idx);
1071                 if (ret < 0)
1072                         return ret;
1073
1074                 val |= ret;
1075         }
1076
1077         *result = sx150x_maybe_swizzle(pctl, reg, val);
1078
1079         return 0;
1080 }
1081
1082 static int sx150x_regmap_reg_write(void *context, unsigned int reg,
1083                                    unsigned int val)
1084 {
1085         int ret, n;
1086         struct sx150x_pinctrl *pctl = context;
1087         struct i2c_client *i2c = pctl->client;
1088         const int width = sx150x_regmap_reg_width(pctl, reg);
1089
1090         val = sx150x_maybe_swizzle(pctl, reg, val);
1091
1092         n = (width - 1) & ~7;
1093         do {
1094                 const u8 byte = (val >> n) & 0xff;
1095
1096                 ret = i2c_smbus_write_byte_data(i2c, reg, byte);
1097                 if (ret < 0)
1098                         return ret;
1099
1100                 reg++;
1101                 n -= 8;
1102         } while (n >= 0);
1103
1104         return 0;
1105 }
1106
1107 static bool sx150x_reg_volatile(struct device *dev, unsigned int reg)
1108 {
1109         struct sx150x_pinctrl *pctl = i2c_get_clientdata(to_i2c_client(dev));
1110
1111         return reg == pctl->data->reg_irq_src || reg == pctl->data->reg_data;
1112 }
1113
1114 const struct regmap_config sx150x_regmap_config = {
1115         .reg_bits = 8,
1116         .val_bits = 32,
1117
1118         .cache_type = REGCACHE_RBTREE,
1119
1120         .reg_read = sx150x_regmap_reg_read,
1121         .reg_write = sx150x_regmap_reg_write,
1122
1123         .max_register = SX150X_MAX_REGISTER,
1124         .volatile_reg = sx150x_reg_volatile,
1125 };
1126
1127 static int sx150x_probe(struct i2c_client *client,
1128                         const struct i2c_device_id *id)
1129 {
1130         static const u32 i2c_funcs = I2C_FUNC_SMBUS_BYTE_DATA |
1131                                      I2C_FUNC_SMBUS_WRITE_WORD_DATA;
1132         struct device *dev = &client->dev;
1133         struct sx150x_pinctrl *pctl;
1134         int ret;
1135
1136         if (!i2c_check_functionality(client->adapter, i2c_funcs))
1137                 return -ENOSYS;
1138
1139         pctl = devm_kzalloc(dev, sizeof(*pctl), GFP_KERNEL);
1140         if (!pctl)
1141                 return -ENOMEM;
1142
1143         i2c_set_clientdata(client, pctl);
1144
1145         pctl->dev = dev;
1146         pctl->client = client;
1147
1148         if (dev->of_node)
1149                 pctl->data = of_device_get_match_data(dev);
1150         else
1151                 pctl->data = (struct sx150x_device_data *)id->driver_data;
1152
1153         if (!pctl->data)
1154                 return -EINVAL;
1155
1156         pctl->regmap = devm_regmap_init(dev, NULL, pctl,
1157                                         &sx150x_regmap_config);
1158         if (IS_ERR(pctl->regmap)) {
1159                 ret = PTR_ERR(pctl->regmap);
1160                 dev_err(dev, "Failed to allocate register map: %d\n",
1161                         ret);
1162                 return ret;
1163         }
1164
1165         mutex_init(&pctl->lock);
1166
1167         ret = sx150x_init_hw(pctl);
1168         if (ret)
1169                 return ret;
1170
1171         /* Register GPIO controller */
1172         pctl->gpio.label = devm_kstrdup(dev, client->name, GFP_KERNEL);
1173         pctl->gpio.base = -1;
1174         pctl->gpio.ngpio = pctl->data->npins;
1175         pctl->gpio.get_direction = sx150x_gpio_get_direction;
1176         pctl->gpio.direction_input = sx150x_gpio_direction_input;
1177         pctl->gpio.direction_output = sx150x_gpio_direction_output;
1178         pctl->gpio.get = sx150x_gpio_get;
1179         pctl->gpio.set = sx150x_gpio_set;
1180         pctl->gpio.set_single_ended = sx150x_gpio_set_single_ended;
1181         pctl->gpio.parent = dev;
1182 #ifdef CONFIG_OF_GPIO
1183         pctl->gpio.of_node = dev->of_node;
1184 #endif
1185         pctl->gpio.can_sleep = true;
1186         /*
1187          * Setting multiple pins is not safe when all pins are not
1188          * handled by the same regmap register. The oscio pin (present
1189          * on the SX150X_789 chips) lives in its own register, so
1190          * would require locking that is not in place at this time.
1191          */
1192         if (pctl->data->model != SX150X_789)
1193                 pctl->gpio.set_multiple = sx150x_gpio_set_multiple;
1194
1195         ret = devm_gpiochip_add_data(dev, &pctl->gpio, pctl);
1196         if (ret)
1197                 return ret;
1198
1199         /* Add Interrupt support if an irq is specified */
1200         if (client->irq > 0) {
1201                 pctl->irq_chip.name = devm_kstrdup(dev, client->name,
1202                                                    GFP_KERNEL);
1203                 pctl->irq_chip.irq_mask = sx150x_irq_mask;
1204                 pctl->irq_chip.irq_unmask = sx150x_irq_unmask;
1205                 pctl->irq_chip.irq_set_type = sx150x_irq_set_type;
1206                 pctl->irq_chip.irq_bus_lock = sx150x_irq_bus_lock;
1207                 pctl->irq_chip.irq_bus_sync_unlock = sx150x_irq_bus_sync_unlock;
1208
1209                 pctl->irq.masked = ~0;
1210                 pctl->irq.sense = 0;
1211
1212                 /*
1213                  * Because sx150x_irq_threaded_fn invokes all of the
1214                  * nested interrrupt handlers via handle_nested_irq,
1215                  * any "handler" passed to gpiochip_irqchip_add()
1216                  * below is going to be ignored, so the choice of the
1217                  * function does not matter that much.
1218                  *
1219                  * We set it to handle_bad_irq to avoid confusion,
1220                  * plus it will be instantly noticeable if it is ever
1221                  * called (should not happen)
1222                  */
1223                 ret = gpiochip_irqchip_add(&pctl->gpio,
1224                                            &pctl->irq_chip, 0,
1225                                            handle_bad_irq, IRQ_TYPE_NONE);
1226                 if (ret) {
1227                         dev_err(dev, "could not connect irqchip to gpiochip\n");
1228                         return ret;
1229                 }
1230
1231                 ret = devm_request_threaded_irq(dev, client->irq, NULL,
1232                                                 sx150x_irq_thread_fn,
1233                                                 IRQF_ONESHOT | IRQF_SHARED |
1234                                                 IRQF_TRIGGER_FALLING,
1235                                                 pctl->irq_chip.name, pctl);
1236                 if (ret < 0)
1237                         return ret;
1238         }
1239
1240         /* Pinctrl_desc */
1241         pctl->pinctrl_desc.name = "sx150x-pinctrl";
1242         pctl->pinctrl_desc.pctlops = &sx150x_pinctrl_ops;
1243         pctl->pinctrl_desc.confops = &sx150x_pinconf_ops;
1244         pctl->pinctrl_desc.pins = pctl->data->pins;
1245         pctl->pinctrl_desc.npins = pctl->data->npins;
1246         pctl->pinctrl_desc.owner = THIS_MODULE;
1247
1248         pctl->pctldev = pinctrl_register(&pctl->pinctrl_desc, dev, pctl);
1249         if (IS_ERR(pctl->pctldev)) {
1250                 dev_err(dev, "Failed to register pinctrl device\n");
1251                 return PTR_ERR(pctl->pctldev);
1252         }
1253
1254         return 0;
1255 }
1256
1257 static struct i2c_driver sx150x_driver = {
1258         .driver = {
1259                 .name = "sx150x-pinctrl",
1260                 .of_match_table = of_match_ptr(sx150x_of_match),
1261         },
1262         .probe    = sx150x_probe,
1263         .id_table = sx150x_id,
1264 };
1265
1266 static int __init sx150x_init(void)
1267 {
1268         return i2c_add_driver(&sx150x_driver);
1269 }
1270 subsys_initcall(sx150x_init);