Correct .gbs.conf settings
[platform/adaptation/renesas_rcar/renesas_kernel.git] / drivers / pinctrl / pinctrl-abx500.c
1 /*
2  * Copyright (C) ST-Ericsson SA 2013
3  *
4  * Author: Patrice Chotard <patrice.chotard@st.com>
5  * License terms: GNU General Public License (GPL) version 2
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  */
11 #include <linux/kernel.h>
12 #include <linux/types.h>
13 #include <linux/slab.h>
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/err.h>
17 #include <linux/of.h>
18 #include <linux/of_device.h>
19 #include <linux/platform_device.h>
20 #include <linux/gpio.h>
21 #include <linux/irq.h>
22 #include <linux/irqdomain.h>
23 #include <linux/interrupt.h>
24 #include <linux/bitops.h>
25 #include <linux/mfd/abx500.h>
26 #include <linux/mfd/abx500/ab8500.h>
27 #include <linux/pinctrl/pinctrl.h>
28 #include <linux/pinctrl/consumer.h>
29 #include <linux/pinctrl/pinmux.h>
30 #include <linux/pinctrl/pinconf.h>
31 #include <linux/pinctrl/pinconf-generic.h>
32 #include <linux/pinctrl/machine.h>
33
34 #include "pinctrl-abx500.h"
35 #include "core.h"
36 #include "pinconf.h"
37
38 /*
39  * The AB9540 and AB8540 GPIO support are extended versions
40  * of the AB8500 GPIO support.
41  * The AB9540 supports an additional (7th) register so that
42  * more GPIO may be configured and used.
43  * The AB8540 supports 4 new gpios (GPIOx_VBAT) that have
44  * internal pull-up and pull-down capabilities.
45  */
46
47 /*
48  * GPIO registers offset
49  * Bank: 0x10
50  */
51 #define AB8500_GPIO_SEL1_REG    0x00
52 #define AB8500_GPIO_SEL2_REG    0x01
53 #define AB8500_GPIO_SEL3_REG    0x02
54 #define AB8500_GPIO_SEL4_REG    0x03
55 #define AB8500_GPIO_SEL5_REG    0x04
56 #define AB8500_GPIO_SEL6_REG    0x05
57 #define AB9540_GPIO_SEL7_REG    0x06
58
59 #define AB8500_GPIO_DIR1_REG    0x10
60 #define AB8500_GPIO_DIR2_REG    0x11
61 #define AB8500_GPIO_DIR3_REG    0x12
62 #define AB8500_GPIO_DIR4_REG    0x13
63 #define AB8500_GPIO_DIR5_REG    0x14
64 #define AB8500_GPIO_DIR6_REG    0x15
65 #define AB9540_GPIO_DIR7_REG    0x16
66
67 #define AB8500_GPIO_OUT1_REG    0x20
68 #define AB8500_GPIO_OUT2_REG    0x21
69 #define AB8500_GPIO_OUT3_REG    0x22
70 #define AB8500_GPIO_OUT4_REG    0x23
71 #define AB8500_GPIO_OUT5_REG    0x24
72 #define AB8500_GPIO_OUT6_REG    0x25
73 #define AB9540_GPIO_OUT7_REG    0x26
74
75 #define AB8500_GPIO_PUD1_REG    0x30
76 #define AB8500_GPIO_PUD2_REG    0x31
77 #define AB8500_GPIO_PUD3_REG    0x32
78 #define AB8500_GPIO_PUD4_REG    0x33
79 #define AB8500_GPIO_PUD5_REG    0x34
80 #define AB8500_GPIO_PUD6_REG    0x35
81 #define AB9540_GPIO_PUD7_REG    0x36
82
83 #define AB8500_GPIO_IN1_REG     0x40
84 #define AB8500_GPIO_IN2_REG     0x41
85 #define AB8500_GPIO_IN3_REG     0x42
86 #define AB8500_GPIO_IN4_REG     0x43
87 #define AB8500_GPIO_IN5_REG     0x44
88 #define AB8500_GPIO_IN6_REG     0x45
89 #define AB9540_GPIO_IN7_REG     0x46
90 #define AB8540_GPIO_VINSEL_REG  0x47
91 #define AB8540_GPIO_PULL_UPDOWN_REG     0x48
92 #define AB8500_GPIO_ALTFUN_REG  0x50
93 #define AB8540_GPIO_PULL_UPDOWN_MASK    0x03
94 #define AB8540_GPIO_VINSEL_MASK 0x03
95 #define AB8540_GPIOX_VBAT_START 51
96 #define AB8540_GPIOX_VBAT_END   54
97
98 #define ABX500_GPIO_INPUT       0
99 #define ABX500_GPIO_OUTPUT      1
100
101 struct abx500_pinctrl {
102         struct device *dev;
103         struct pinctrl_dev *pctldev;
104         struct abx500_pinctrl_soc_data *soc;
105         struct gpio_chip chip;
106         struct ab8500 *parent;
107         struct abx500_gpio_irq_cluster *irq_cluster;
108         int irq_cluster_size;
109 };
110
111 /**
112  * to_abx500_pinctrl() - get the pointer to abx500_pinctrl
113  * @chip:       Member of the structure abx500_pinctrl
114  */
115 static inline struct abx500_pinctrl *to_abx500_pinctrl(struct gpio_chip *chip)
116 {
117         return container_of(chip, struct abx500_pinctrl, chip);
118 }
119
120 static int abx500_gpio_get_bit(struct gpio_chip *chip, u8 reg,
121                                unsigned offset, bool *bit)
122 {
123         struct abx500_pinctrl *pct = to_abx500_pinctrl(chip);
124         u8 pos = offset % 8;
125         u8 val;
126         int ret;
127
128         reg += offset / 8;
129         ret = abx500_get_register_interruptible(pct->dev,
130                                                 AB8500_MISC, reg, &val);
131
132         *bit = !!(val & BIT(pos));
133
134         if (ret < 0)
135                 dev_err(pct->dev,
136                         "%s read reg =%x, offset=%x failed (%d)\n",
137                         __func__, reg, offset, ret);
138
139         return ret;
140 }
141
142 static int abx500_gpio_set_bits(struct gpio_chip *chip, u8 reg,
143                                 unsigned offset, int val)
144 {
145         struct abx500_pinctrl *pct = to_abx500_pinctrl(chip);
146         u8 pos = offset % 8;
147         int ret;
148
149         reg += offset / 8;
150         ret = abx500_mask_and_set_register_interruptible(pct->dev,
151                                 AB8500_MISC, reg, BIT(pos), val << pos);
152         if (ret < 0)
153                 dev_err(pct->dev, "%s write reg, %x offset %x failed (%d)\n",
154                                 __func__, reg, offset, ret);
155
156         return ret;
157 }
158
159 /**
160  * abx500_gpio_get() - Get the particular GPIO value
161  * @chip:       Gpio device
162  * @offset:     GPIO number to read
163  */
164 static int abx500_gpio_get(struct gpio_chip *chip, unsigned offset)
165 {
166         struct abx500_pinctrl *pct = to_abx500_pinctrl(chip);
167         bool bit;
168         bool is_out;
169         u8 gpio_offset = offset - 1;
170         int ret;
171
172         ret = abx500_gpio_get_bit(chip, AB8500_GPIO_DIR1_REG,
173                         gpio_offset, &is_out);
174         if (ret < 0)
175                 goto out;
176
177         if (is_out)
178                 ret = abx500_gpio_get_bit(chip, AB8500_GPIO_OUT1_REG,
179                                 gpio_offset, &bit);
180         else
181                 ret = abx500_gpio_get_bit(chip, AB8500_GPIO_IN1_REG,
182                                 gpio_offset, &bit);
183 out:
184         if (ret < 0) {
185                 dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
186                 return ret;
187         }
188
189         return bit;
190 }
191
192 static void abx500_gpio_set(struct gpio_chip *chip, unsigned offset, int val)
193 {
194         struct abx500_pinctrl *pct = to_abx500_pinctrl(chip);
195         int ret;
196
197         ret = abx500_gpio_set_bits(chip, AB8500_GPIO_OUT1_REG, offset, val);
198         if (ret < 0)
199                 dev_err(pct->dev, "%s write failed (%d)\n", __func__, ret);
200 }
201
202 static int abx500_get_pull_updown(struct abx500_pinctrl *pct, int offset,
203                                   enum abx500_gpio_pull_updown *pull_updown)
204 {
205         u8 pos;
206         u8 val;
207         int ret;
208         struct pullud *pullud;
209
210         if (!pct->soc->pullud) {
211                 dev_err(pct->dev, "%s AB chip doesn't support pull up/down feature",
212                                 __func__);
213                 ret = -EPERM;
214                 goto out;
215         }
216
217         pullud = pct->soc->pullud;
218
219         if ((offset < pullud->first_pin)
220                 || (offset > pullud->last_pin)) {
221                 ret = -EINVAL;
222                 goto out;
223         }
224
225         ret = abx500_get_register_interruptible(pct->dev,
226                         AB8500_MISC, AB8540_GPIO_PULL_UPDOWN_REG, &val);
227
228         pos = (offset - pullud->first_pin) << 1;
229         *pull_updown = (val >> pos) & AB8540_GPIO_PULL_UPDOWN_MASK;
230
231 out:
232         if (ret < 0)
233                 dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
234
235         return ret;
236 }
237
238 static int abx500_set_pull_updown(struct abx500_pinctrl *pct,
239                                   int offset, enum abx500_gpio_pull_updown val)
240 {
241         u8 pos;
242         int ret;
243         struct pullud *pullud;
244
245         if (!pct->soc->pullud) {
246                 dev_err(pct->dev, "%s AB chip doesn't support pull up/down feature",
247                                 __func__);
248                 ret = -EPERM;
249                 goto out;
250         }
251
252         pullud = pct->soc->pullud;
253
254         if ((offset < pullud->first_pin)
255                 || (offset > pullud->last_pin)) {
256                 ret = -EINVAL;
257                 goto out;
258         }
259         pos = (offset - pullud->first_pin) << 1;
260
261         ret = abx500_mask_and_set_register_interruptible(pct->dev,
262                         AB8500_MISC, AB8540_GPIO_PULL_UPDOWN_REG,
263                         AB8540_GPIO_PULL_UPDOWN_MASK << pos, val << pos);
264
265 out:
266         if (ret < 0)
267                 dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
268
269         return ret;
270 }
271
272 static bool abx500_pullud_supported(struct gpio_chip *chip, unsigned gpio)
273 {
274         struct abx500_pinctrl *pct = to_abx500_pinctrl(chip);
275         struct pullud *pullud = pct->soc->pullud;
276
277         return (pullud &&
278                 gpio >= pullud->first_pin &&
279                 gpio <= pullud->last_pin);
280 }
281
282 static int abx500_gpio_direction_output(struct gpio_chip *chip,
283                                         unsigned offset,
284                                         int val)
285 {
286         struct abx500_pinctrl *pct = to_abx500_pinctrl(chip);
287         unsigned gpio;
288         int ret;
289
290         /* set direction as output */
291         ret = abx500_gpio_set_bits(chip,
292                                 AB8500_GPIO_DIR1_REG,
293                                 offset,
294                                 ABX500_GPIO_OUTPUT);
295         if (ret < 0)
296                 goto out;
297
298         /* disable pull down */
299         ret = abx500_gpio_set_bits(chip,
300                                 AB8500_GPIO_PUD1_REG,
301                                 offset,
302                                 ABX500_GPIO_PULL_NONE);
303         if (ret < 0)
304                 goto out;
305
306         /* if supported, disable both pull down and pull up */
307         gpio = offset + 1;
308         if (abx500_pullud_supported(chip, gpio)) {
309                 ret = abx500_set_pull_updown(pct,
310                                 gpio,
311                                 ABX500_GPIO_PULL_NONE);
312         }
313 out:
314         if (ret < 0) {
315                 dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
316                 return ret;
317         }
318
319         /* set the output as 1 or 0 */
320         return abx500_gpio_set_bits(chip, AB8500_GPIO_OUT1_REG, offset, val);
321 }
322
323 static int abx500_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
324 {
325         /* set the register as input */
326         return abx500_gpio_set_bits(chip,
327                                 AB8500_GPIO_DIR1_REG,
328                                 offset,
329                                 ABX500_GPIO_INPUT);
330 }
331
332 static int abx500_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
333 {
334         struct abx500_pinctrl *pct = to_abx500_pinctrl(chip);
335         /* The AB8500 GPIO numbers are off by one */
336         int gpio = offset + 1;
337         int hwirq;
338         int i;
339
340         for (i = 0; i < pct->irq_cluster_size; i++) {
341                 struct abx500_gpio_irq_cluster *cluster =
342                         &pct->irq_cluster[i];
343
344                 if (gpio >= cluster->start && gpio <= cluster->end) {
345                         /*
346                          * The ABx500 GPIO's associated IRQs are clustered together
347                          * throughout the interrupt numbers at irregular intervals.
348                          * To solve this quandry, we have placed the read-in values
349                          * into the cluster information table.
350                          */
351                         hwirq = gpio - cluster->start + cluster->to_irq;
352                         return irq_create_mapping(pct->parent->domain, hwirq);
353                 }
354         }
355
356         return -EINVAL;
357 }
358
359 static int abx500_set_mode(struct pinctrl_dev *pctldev, struct gpio_chip *chip,
360                            unsigned gpio, int alt_setting)
361 {
362         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
363         struct alternate_functions af = pct->soc->alternate_functions[gpio];
364         int ret;
365         int val;
366         unsigned offset;
367
368         const char *modes[] = {
369                 [ABX500_DEFAULT]        = "default",
370                 [ABX500_ALT_A]          = "altA",
371                 [ABX500_ALT_B]          = "altB",
372                 [ABX500_ALT_C]          = "altC",
373         };
374
375         /* sanity check */
376         if (((alt_setting == ABX500_ALT_A) && (af.gpiosel_bit == UNUSED)) ||
377             ((alt_setting == ABX500_ALT_B) && (af.alt_bit1 == UNUSED)) ||
378             ((alt_setting == ABX500_ALT_C) && (af.alt_bit2 == UNUSED))) {
379                 dev_dbg(pct->dev, "pin %d doesn't support %s mode\n", gpio,
380                                 modes[alt_setting]);
381                 return -EINVAL;
382         }
383
384         /* on ABx5xx, there is no GPIO0, so adjust the offset */
385         offset = gpio - 1;
386
387         switch (alt_setting) {
388         case ABX500_DEFAULT:
389                 /*
390                  * for ABx5xx family, default mode is always selected by
391                  * writing 0 to GPIOSELx register, except for pins which
392                  * support at least ALT_B mode, default mode is selected
393                  * by writing 1 to GPIOSELx register
394                  */
395                 val = 0;
396                 if (af.alt_bit1 != UNUSED)
397                         val++;
398
399                 ret = abx500_gpio_set_bits(chip, AB8500_GPIO_SEL1_REG,
400                                            offset, val);
401                 break;
402
403         case ABX500_ALT_A:
404                 /*
405                  * for ABx5xx family, alt_a mode is always selected by
406                  * writing 1 to GPIOSELx register, except for pins which
407                  * support at least ALT_B mode, alt_a mode is selected
408                  * by writing 0 to GPIOSELx register and 0 in ALTFUNC
409                  * register
410                  */
411                 if (af.alt_bit1 != UNUSED) {
412                         ret = abx500_gpio_set_bits(chip, AB8500_GPIO_SEL1_REG,
413                                         offset, 0);
414                         if (ret < 0)
415                                 goto out;
416
417                         ret = abx500_gpio_set_bits(chip,
418                                         AB8500_GPIO_ALTFUN_REG,
419                                         af.alt_bit1,
420                                         !!(af.alta_val & BIT(0)));
421                         if (ret < 0)
422                                 goto out;
423
424                         if (af.alt_bit2 != UNUSED)
425                                 ret = abx500_gpio_set_bits(chip,
426                                         AB8500_GPIO_ALTFUN_REG,
427                                         af.alt_bit2,
428                                         !!(af.alta_val & BIT(1)));
429                 } else
430                         ret = abx500_gpio_set_bits(chip, AB8500_GPIO_SEL1_REG,
431                                         offset, 1);
432                 break;
433
434         case ABX500_ALT_B:
435                 ret = abx500_gpio_set_bits(chip, AB8500_GPIO_SEL1_REG,
436                                 offset, 0);
437                 if (ret < 0)
438                         goto out;
439
440                 ret = abx500_gpio_set_bits(chip, AB8500_GPIO_ALTFUN_REG,
441                                 af.alt_bit1, !!(af.altb_val & BIT(0)));
442                 if (ret < 0)
443                         goto out;
444
445                 if (af.alt_bit2 != UNUSED)
446                         ret = abx500_gpio_set_bits(chip,
447                                         AB8500_GPIO_ALTFUN_REG,
448                                         af.alt_bit2,
449                                         !!(af.altb_val & BIT(1)));
450                 break;
451
452         case ABX500_ALT_C:
453                 ret = abx500_gpio_set_bits(chip, AB8500_GPIO_SEL1_REG,
454                                 offset, 0);
455                 if (ret < 0)
456                         goto out;
457
458                 ret = abx500_gpio_set_bits(chip, AB8500_GPIO_ALTFUN_REG,
459                                 af.alt_bit2, !!(af.altc_val & BIT(0)));
460                 if (ret < 0)
461                         goto out;
462
463                 ret = abx500_gpio_set_bits(chip, AB8500_GPIO_ALTFUN_REG,
464                                 af.alt_bit2, !!(af.altc_val & BIT(1)));
465                 break;
466
467         default:
468                 dev_dbg(pct->dev, "unknow alt_setting %d\n", alt_setting);
469
470                 return -EINVAL;
471         }
472 out:
473         if (ret < 0)
474                 dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
475
476         return ret;
477 }
478
479 static int abx500_get_mode(struct pinctrl_dev *pctldev, struct gpio_chip *chip,
480                           unsigned gpio)
481 {
482         u8 mode;
483         bool bit_mode;
484         bool alt_bit1;
485         bool alt_bit2;
486         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
487         struct alternate_functions af = pct->soc->alternate_functions[gpio];
488         /* on ABx5xx, there is no GPIO0, so adjust the offset */
489         unsigned offset = gpio - 1;
490         int ret;
491
492         /*
493          * if gpiosel_bit is set to unused,
494          * it means no GPIO or special case
495          */
496         if (af.gpiosel_bit == UNUSED)
497                 return ABX500_DEFAULT;
498
499         /* read GpioSelx register */
500         ret = abx500_gpio_get_bit(chip, AB8500_GPIO_SEL1_REG + (offset / 8),
501                         af.gpiosel_bit, &bit_mode);
502         if (ret < 0)
503                 goto out;
504
505         mode = bit_mode;
506
507         /* sanity check */
508         if ((af.alt_bit1 < UNUSED) || (af.alt_bit1 > 7) ||
509             (af.alt_bit2 < UNUSED) || (af.alt_bit2 > 7)) {
510                 dev_err(pct->dev,
511                         "alt_bitX value not in correct range (-1 to 7)\n");
512                 return -EINVAL;
513         }
514
515         /* if alt_bit2 is used, alt_bit1 must be used too */
516         if ((af.alt_bit2 != UNUSED) && (af.alt_bit1 == UNUSED)) {
517                 dev_err(pct->dev,
518                         "if alt_bit2 is used, alt_bit1 can't be unused\n");
519                 return -EINVAL;
520         }
521
522         /* check if pin use AlternateFunction register */
523         if ((af.alt_bit1 == UNUSED) && (af.alt_bit2 == UNUSED))
524                 return mode;
525         /*
526          * if pin GPIOSEL bit is set and pin supports alternate function,
527          * it means DEFAULT mode
528          */
529         if (mode)
530                 return ABX500_DEFAULT;
531
532         /*
533          * pin use the AlternatFunction register
534          * read alt_bit1 value
535          */
536         ret = abx500_gpio_get_bit(chip, AB8500_GPIO_ALTFUN_REG,
537                             af.alt_bit1, &alt_bit1);
538         if (ret < 0)
539                 goto out;
540
541         if (af.alt_bit2 != UNUSED) {
542                 /* read alt_bit2 value */
543                 ret = abx500_gpio_get_bit(chip, AB8500_GPIO_ALTFUN_REG,
544                                 af.alt_bit2,
545                                 &alt_bit2);
546                 if (ret < 0)
547                         goto out;
548         } else
549                 alt_bit2 = 0;
550
551         mode = (alt_bit2 << 1) + alt_bit1;
552         if (mode == af.alta_val)
553                 return ABX500_ALT_A;
554         else if (mode == af.altb_val)
555                 return ABX500_ALT_B;
556         else
557                 return ABX500_ALT_C;
558
559 out:
560         dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
561         return ret;
562 }
563
564 #ifdef CONFIG_DEBUG_FS
565
566 #include <linux/seq_file.h>
567
568 static void abx500_gpio_dbg_show_one(struct seq_file *s,
569                                      struct pinctrl_dev *pctldev,
570                                      struct gpio_chip *chip,
571                                      unsigned offset, unsigned gpio)
572 {
573         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
574         const char *label = gpiochip_is_requested(chip, offset - 1);
575         u8 gpio_offset = offset - 1;
576         int mode = -1;
577         bool is_out;
578         bool pd;
579         enum abx500_gpio_pull_updown pud = 0;
580         int ret;
581
582         const char *modes[] = {
583                 [ABX500_DEFAULT]        = "default",
584                 [ABX500_ALT_A]          = "altA",
585                 [ABX500_ALT_B]          = "altB",
586                 [ABX500_ALT_C]          = "altC",
587         };
588
589         const char *pull_up_down[] = {
590                 [ABX500_GPIO_PULL_DOWN]         = "pull down",
591                 [ABX500_GPIO_PULL_NONE]         = "pull none",
592                 [ABX500_GPIO_PULL_NONE + 1]     = "pull none",
593                 [ABX500_GPIO_PULL_UP]           = "pull up",
594         };
595
596         ret = abx500_gpio_get_bit(chip, AB8500_GPIO_DIR1_REG,
597                         gpio_offset, &is_out);
598         if (ret < 0)
599                 goto out;
600
601         seq_printf(s, " gpio-%-3d (%-20.20s) %-3s",
602                    gpio, label ?: "(none)",
603                    is_out ? "out" : "in ");
604
605         if (!is_out) {
606                 if (abx500_pullud_supported(chip, offset)) {
607                         ret = abx500_get_pull_updown(pct, offset, &pud);
608                         if (ret < 0)
609                                 goto out;
610
611                         seq_printf(s, " %-9s", pull_up_down[pud]);
612                 } else {
613                         ret = abx500_gpio_get_bit(chip, AB8500_GPIO_PUD1_REG,
614                                         gpio_offset, &pd);
615                         if (ret < 0)
616                                 goto out;
617
618                         seq_printf(s, " %-9s", pull_up_down[pd]);
619                 }
620         } else
621                 seq_printf(s, " %-9s", chip->get(chip, offset) ? "hi" : "lo");
622
623         if (pctldev)
624                 mode = abx500_get_mode(pctldev, chip, offset);
625
626         seq_printf(s, " %s", (mode < 0) ? "unknown" : modes[mode]);
627
628 out:
629         if (ret < 0)
630                 dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
631 }
632
633 static void abx500_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
634 {
635         unsigned i;
636         unsigned gpio = chip->base;
637         struct abx500_pinctrl *pct = to_abx500_pinctrl(chip);
638         struct pinctrl_dev *pctldev = pct->pctldev;
639
640         for (i = 0; i < chip->ngpio; i++, gpio++) {
641                 /* On AB8500, there is no GPIO0, the first is the GPIO 1 */
642                 abx500_gpio_dbg_show_one(s, pctldev, chip, i + 1, gpio);
643                 seq_printf(s, "\n");
644         }
645 }
646
647 #else
648 static inline void abx500_gpio_dbg_show_one(struct seq_file *s,
649                                             struct pinctrl_dev *pctldev,
650                                             struct gpio_chip *chip,
651                                             unsigned offset, unsigned gpio)
652 {
653 }
654 #define abx500_gpio_dbg_show    NULL
655 #endif
656
657 static int abx500_gpio_request(struct gpio_chip *chip, unsigned offset)
658 {
659         int gpio = chip->base + offset;
660
661         return pinctrl_request_gpio(gpio);
662 }
663
664 static void abx500_gpio_free(struct gpio_chip *chip, unsigned offset)
665 {
666         int gpio = chip->base + offset;
667
668         pinctrl_free_gpio(gpio);
669 }
670
671 static struct gpio_chip abx500gpio_chip = {
672         .label                  = "abx500-gpio",
673         .owner                  = THIS_MODULE,
674         .request                = abx500_gpio_request,
675         .free                   = abx500_gpio_free,
676         .direction_input        = abx500_gpio_direction_input,
677         .get                    = abx500_gpio_get,
678         .direction_output       = abx500_gpio_direction_output,
679         .set                    = abx500_gpio_set,
680         .to_irq                 = abx500_gpio_to_irq,
681         .dbg_show               = abx500_gpio_dbg_show,
682 };
683
684 static int abx500_pmx_get_funcs_cnt(struct pinctrl_dev *pctldev)
685 {
686         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
687
688         return pct->soc->nfunctions;
689 }
690
691 static const char *abx500_pmx_get_func_name(struct pinctrl_dev *pctldev,
692                                          unsigned function)
693 {
694         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
695
696         return pct->soc->functions[function].name;
697 }
698
699 static int abx500_pmx_get_func_groups(struct pinctrl_dev *pctldev,
700                                       unsigned function,
701                                       const char * const **groups,
702                                       unsigned * const num_groups)
703 {
704         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
705
706         *groups = pct->soc->functions[function].groups;
707         *num_groups = pct->soc->functions[function].ngroups;
708
709         return 0;
710 }
711
712 static int abx500_pmx_enable(struct pinctrl_dev *pctldev, unsigned function,
713                              unsigned group)
714 {
715         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
716         struct gpio_chip *chip = &pct->chip;
717         const struct abx500_pingroup *g;
718         int i;
719         int ret = 0;
720
721         g = &pct->soc->groups[group];
722         if (g->altsetting < 0)
723                 return -EINVAL;
724
725         dev_dbg(pct->dev, "enable group %s, %u pins\n", g->name, g->npins);
726
727         for (i = 0; i < g->npins; i++) {
728                 dev_dbg(pct->dev, "setting pin %d to altsetting %d\n",
729                         g->pins[i], g->altsetting);
730
731                 ret = abx500_set_mode(pctldev, chip, g->pins[i], g->altsetting);
732         }
733
734         if (ret < 0)
735                 dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
736
737         return ret;
738 }
739
740 static void abx500_pmx_disable(struct pinctrl_dev *pctldev,
741                                unsigned function, unsigned group)
742 {
743         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
744         const struct abx500_pingroup *g;
745
746         g = &pct->soc->groups[group];
747         if (g->altsetting < 0)
748                 return;
749
750         /* FIXME: poke out the mux, set the pin to some default state? */
751         dev_dbg(pct->dev, "disable group %s, %u pins\n", g->name, g->npins);
752 }
753
754 static int abx500_gpio_request_enable(struct pinctrl_dev *pctldev,
755                                struct pinctrl_gpio_range *range,
756                                unsigned offset)
757 {
758         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
759         const struct abx500_pinrange *p;
760         int ret;
761         int i;
762
763         /*
764          * Different ranges have different ways to enable GPIO function on a
765          * pin, so refer back to our local range type, where we handily define
766          * what altfunc enables GPIO for a certain pin.
767          */
768         for (i = 0; i < pct->soc->gpio_num_ranges; i++) {
769                 p = &pct->soc->gpio_ranges[i];
770                 if ((offset >= p->offset) &&
771                     (offset < (p->offset + p->npins)))
772                   break;
773         }
774
775         if (i == pct->soc->gpio_num_ranges) {
776                 dev_err(pct->dev, "%s failed to locate range\n", __func__);
777                 return -ENODEV;
778         }
779
780         dev_dbg(pct->dev, "enable GPIO by altfunc %d at gpio %d\n",
781                 p->altfunc, offset);
782
783         ret = abx500_set_mode(pct->pctldev, &pct->chip,
784                               offset, p->altfunc);
785         if (ret < 0)
786                 dev_err(pct->dev, "%s setting altfunc failed\n", __func__);
787
788         return ret;
789 }
790
791 static void abx500_gpio_disable_free(struct pinctrl_dev *pctldev,
792                                      struct pinctrl_gpio_range *range,
793                                      unsigned offset)
794 {
795 }
796
797 static const struct pinmux_ops abx500_pinmux_ops = {
798         .get_functions_count = abx500_pmx_get_funcs_cnt,
799         .get_function_name = abx500_pmx_get_func_name,
800         .get_function_groups = abx500_pmx_get_func_groups,
801         .enable = abx500_pmx_enable,
802         .disable = abx500_pmx_disable,
803         .gpio_request_enable = abx500_gpio_request_enable,
804         .gpio_disable_free = abx500_gpio_disable_free,
805 };
806
807 static int abx500_get_groups_cnt(struct pinctrl_dev *pctldev)
808 {
809         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
810
811         return pct->soc->ngroups;
812 }
813
814 static const char *abx500_get_group_name(struct pinctrl_dev *pctldev,
815                                          unsigned selector)
816 {
817         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
818
819         return pct->soc->groups[selector].name;
820 }
821
822 static int abx500_get_group_pins(struct pinctrl_dev *pctldev,
823                                  unsigned selector,
824                                  const unsigned **pins,
825                                  unsigned *num_pins)
826 {
827         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
828
829         *pins = pct->soc->groups[selector].pins;
830         *num_pins = pct->soc->groups[selector].npins;
831
832         return 0;
833 }
834
835 static void abx500_pin_dbg_show(struct pinctrl_dev *pctldev,
836                                 struct seq_file *s, unsigned offset)
837 {
838         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
839         struct gpio_chip *chip = &pct->chip;
840
841         abx500_gpio_dbg_show_one(s, pctldev, chip, offset,
842                                  chip->base + offset - 1);
843 }
844
845 static void abx500_dt_free_map(struct pinctrl_dev *pctldev,
846                 struct pinctrl_map *map, unsigned num_maps)
847 {
848         int i;
849
850         for (i = 0; i < num_maps; i++)
851                 if (map[i].type == PIN_MAP_TYPE_CONFIGS_PIN)
852                         kfree(map[i].data.configs.configs);
853         kfree(map);
854 }
855
856 static int abx500_dt_reserve_map(struct pinctrl_map **map,
857                 unsigned *reserved_maps,
858                 unsigned *num_maps,
859                 unsigned reserve)
860 {
861         unsigned old_num = *reserved_maps;
862         unsigned new_num = *num_maps + reserve;
863         struct pinctrl_map *new_map;
864
865         if (old_num >= new_num)
866                 return 0;
867
868         new_map = krealloc(*map, sizeof(*new_map) * new_num, GFP_KERNEL);
869         if (!new_map)
870                 return -ENOMEM;
871
872         memset(new_map + old_num, 0, (new_num - old_num) * sizeof(*new_map));
873
874         *map = new_map;
875         *reserved_maps = new_num;
876
877         return 0;
878 }
879
880 static int abx500_dt_add_map_mux(struct pinctrl_map **map,
881                 unsigned *reserved_maps,
882                 unsigned *num_maps, const char *group,
883                 const char *function)
884 {
885         if (*num_maps == *reserved_maps)
886                 return -ENOSPC;
887
888         (*map)[*num_maps].type = PIN_MAP_TYPE_MUX_GROUP;
889         (*map)[*num_maps].data.mux.group = group;
890         (*map)[*num_maps].data.mux.function = function;
891         (*num_maps)++;
892
893         return 0;
894 }
895
896 static int abx500_dt_add_map_configs(struct pinctrl_map **map,
897                 unsigned *reserved_maps,
898                 unsigned *num_maps, const char *group,
899                 unsigned long *configs, unsigned num_configs)
900 {
901         unsigned long *dup_configs;
902
903         if (*num_maps == *reserved_maps)
904                 return -ENOSPC;
905
906         dup_configs = kmemdup(configs, num_configs * sizeof(*dup_configs),
907                               GFP_KERNEL);
908         if (!dup_configs)
909                 return -ENOMEM;
910
911         (*map)[*num_maps].type = PIN_MAP_TYPE_CONFIGS_PIN;
912
913         (*map)[*num_maps].data.configs.group_or_pin = group;
914         (*map)[*num_maps].data.configs.configs = dup_configs;
915         (*map)[*num_maps].data.configs.num_configs = num_configs;
916         (*num_maps)++;
917
918         return 0;
919 }
920
921 static const char *abx500_find_pin_name(struct pinctrl_dev *pctldev,
922                                         const char *pin_name)
923 {
924         int i, pin_number;
925         struct abx500_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
926
927         if (sscanf((char *)pin_name, "GPIO%d", &pin_number) == 1)
928                 for (i = 0; i < npct->soc->npins; i++)
929                         if (npct->soc->pins[i].number == pin_number)
930                                 return npct->soc->pins[i].name;
931         return NULL;
932 }
933
934 static int abx500_dt_subnode_to_map(struct pinctrl_dev *pctldev,
935                 struct device_node *np,
936                 struct pinctrl_map **map,
937                 unsigned *reserved_maps,
938                 unsigned *num_maps)
939 {
940         int ret;
941         const char *function = NULL;
942         unsigned long *configs;
943         unsigned int nconfigs = 0;
944         bool has_config = 0;
945         unsigned reserve = 0;
946         struct property *prop;
947         const char *group, *gpio_name;
948         struct device_node *np_config;
949
950         ret = of_property_read_string(np, "ste,function", &function);
951         if (ret >= 0)
952                 reserve = 1;
953
954         ret = pinconf_generic_parse_dt_config(np, &configs, &nconfigs);
955         if (nconfigs)
956                 has_config = 1;
957
958         np_config = of_parse_phandle(np, "ste,config", 0);
959         if (np_config) {
960                 ret = pinconf_generic_parse_dt_config(np_config, &configs,
961                                 &nconfigs);
962                 if (ret)
963                         goto exit;
964                 has_config |= nconfigs;
965         }
966
967         ret = of_property_count_strings(np, "ste,pins");
968         if (ret < 0)
969                 goto exit;
970
971         if (has_config)
972                 reserve++;
973
974         reserve *= ret;
975
976         ret = abx500_dt_reserve_map(map, reserved_maps, num_maps, reserve);
977         if (ret < 0)
978                 goto exit;
979
980         of_property_for_each_string(np, "ste,pins", prop, group) {
981                 if (function) {
982                         ret = abx500_dt_add_map_mux(map, reserved_maps,
983                                         num_maps, group, function);
984                         if (ret < 0)
985                                 goto exit;
986                 }
987                 if (has_config) {
988                         gpio_name = abx500_find_pin_name(pctldev, group);
989
990                         ret = abx500_dt_add_map_configs(map, reserved_maps,
991                                         num_maps, gpio_name, configs, 1);
992                         if (ret < 0)
993                                 goto exit;
994                 }
995
996         }
997 exit:
998         return ret;
999 }
1000
1001 static int abx500_dt_node_to_map(struct pinctrl_dev *pctldev,
1002                                  struct device_node *np_config,
1003                                  struct pinctrl_map **map, unsigned *num_maps)
1004 {
1005         unsigned reserved_maps;
1006         struct device_node *np;
1007         int ret;
1008
1009         reserved_maps = 0;
1010         *map = NULL;
1011         *num_maps = 0;
1012
1013         for_each_child_of_node(np_config, np) {
1014                 ret = abx500_dt_subnode_to_map(pctldev, np, map,
1015                                 &reserved_maps, num_maps);
1016                 if (ret < 0) {
1017                         abx500_dt_free_map(pctldev, *map, *num_maps);
1018                         return ret;
1019                 }
1020         }
1021
1022         return 0;
1023 }
1024
1025 static const struct pinctrl_ops abx500_pinctrl_ops = {
1026         .get_groups_count = abx500_get_groups_cnt,
1027         .get_group_name = abx500_get_group_name,
1028         .get_group_pins = abx500_get_group_pins,
1029         .pin_dbg_show = abx500_pin_dbg_show,
1030         .dt_node_to_map = abx500_dt_node_to_map,
1031         .dt_free_map = abx500_dt_free_map,
1032 };
1033
1034 static int abx500_pin_config_get(struct pinctrl_dev *pctldev,
1035                           unsigned pin,
1036                           unsigned long *config)
1037 {
1038         return -ENOSYS;
1039 }
1040
1041 static int abx500_pin_config_set(struct pinctrl_dev *pctldev,
1042                           unsigned pin,
1043                           unsigned long *configs,
1044                           unsigned num_configs)
1045 {
1046         struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
1047         struct gpio_chip *chip = &pct->chip;
1048         unsigned offset;
1049         int ret = -EINVAL;
1050         int i;
1051         enum pin_config_param param;
1052         enum pin_config_param argument;
1053
1054         for (i = 0; i < num_configs; i++) {
1055                 param = pinconf_to_config_param(configs[i]);
1056                 argument = pinconf_to_config_argument(configs[i]);
1057
1058                 dev_dbg(chip->dev, "pin %d [%#lx]: %s %s\n",
1059                         pin, configs[i],
1060                         (param == PIN_CONFIG_OUTPUT) ? "output " : "input",
1061                         (param == PIN_CONFIG_OUTPUT) ?
1062                         (argument ? "high" : "low") :
1063                         (argument ? "pull up" : "pull down"));
1064
1065                 /* on ABx500, there is no GPIO0, so adjust the offset */
1066                 offset = pin - 1;
1067
1068                 switch (param) {
1069                 case PIN_CONFIG_BIAS_DISABLE:
1070                         ret = abx500_gpio_direction_input(chip, offset);
1071                         if (ret < 0)
1072                                 goto out;
1073                         /*
1074                          * Some chips only support pull down, while some
1075                          * actually support both pull up and pull down. Such
1076                          * chips have a "pullud" range specified for the pins
1077                          * that support both features. If the pin is not
1078                          * within that range, we fall back to the old bit set
1079                          * that only support pull down.
1080                          */
1081                         if (abx500_pullud_supported(chip, pin))
1082                                 ret = abx500_set_pull_updown(pct,
1083                                         pin,
1084                                         ABX500_GPIO_PULL_NONE);
1085                         else
1086                                 /* Chip only supports pull down */
1087                                 ret = abx500_gpio_set_bits(chip,
1088                                         AB8500_GPIO_PUD1_REG, offset,
1089                                         ABX500_GPIO_PULL_NONE);
1090                         break;
1091
1092                 case PIN_CONFIG_BIAS_PULL_DOWN:
1093                         ret = abx500_gpio_direction_input(chip, offset);
1094                         if (ret < 0)
1095                                 goto out;
1096                         /*
1097                          * if argument = 1 set the pull down
1098                          * else clear the pull down
1099                          * Some chips only support pull down, while some
1100                          * actually support both pull up and pull down. Such
1101                          * chips have a "pullud" range specified for the pins
1102                          * that support both features. If the pin is not
1103                          * within that range, we fall back to the old bit set
1104                          * that only support pull down.
1105                          */
1106                         if (abx500_pullud_supported(chip, pin))
1107                                 ret = abx500_set_pull_updown(pct,
1108                                         pin,
1109                                         argument ? ABX500_GPIO_PULL_DOWN :
1110                                         ABX500_GPIO_PULL_NONE);
1111                         else
1112                                 /* Chip only supports pull down */
1113                                 ret = abx500_gpio_set_bits(chip,
1114                                 AB8500_GPIO_PUD1_REG,
1115                                         offset,
1116                                         argument ? ABX500_GPIO_PULL_DOWN :
1117                                         ABX500_GPIO_PULL_NONE);
1118                         break;
1119
1120                 case PIN_CONFIG_BIAS_PULL_UP:
1121                         ret = abx500_gpio_direction_input(chip, offset);
1122                         if (ret < 0)
1123                                 goto out;
1124                         /*
1125                          * if argument = 1 set the pull up
1126                          * else clear the pull up
1127                          */
1128                         ret = abx500_gpio_direction_input(chip, offset);
1129                         /*
1130                          * Some chips only support pull down, while some
1131                          * actually support both pull up and pull down. Such
1132                          * chips have a "pullud" range specified for the pins
1133                          * that support both features. If the pin is not
1134                          * within that range, do nothing
1135                          */
1136                         if (abx500_pullud_supported(chip, pin))
1137                                 ret = abx500_set_pull_updown(pct,
1138                                         pin,
1139                                         argument ? ABX500_GPIO_PULL_UP :
1140                                         ABX500_GPIO_PULL_NONE);
1141                         break;
1142
1143                 case PIN_CONFIG_OUTPUT:
1144                         ret = abx500_gpio_direction_output(chip, offset,
1145                                 argument);
1146                         break;
1147
1148                 default:
1149                         dev_err(chip->dev, "illegal configuration requested\n");
1150                 }
1151         } /* for each config */
1152 out:
1153         if (ret < 0)
1154                 dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
1155
1156         return ret;
1157 }
1158
1159 static const struct pinconf_ops abx500_pinconf_ops = {
1160         .pin_config_get = abx500_pin_config_get,
1161         .pin_config_set = abx500_pin_config_set,
1162 };
1163
1164 static struct pinctrl_desc abx500_pinctrl_desc = {
1165         .name = "pinctrl-abx500",
1166         .pctlops = &abx500_pinctrl_ops,
1167         .pmxops = &abx500_pinmux_ops,
1168         .confops = &abx500_pinconf_ops,
1169         .owner = THIS_MODULE,
1170 };
1171
1172 static int abx500_get_gpio_num(struct abx500_pinctrl_soc_data *soc)
1173 {
1174         unsigned int lowest = 0;
1175         unsigned int highest = 0;
1176         unsigned int npins = 0;
1177         int i;
1178
1179         /*
1180          * Compute number of GPIOs from the last SoC gpio range descriptors
1181          * These ranges may include "holes" but the GPIO number space shall
1182          * still be homogeneous, so we need to detect and account for any
1183          * such holes so that these are included in the number of GPIO pins.
1184          */
1185         for (i = 0; i < soc->gpio_num_ranges; i++) {
1186                 unsigned gstart;
1187                 unsigned gend;
1188                 const struct abx500_pinrange *p;
1189
1190                 p = &soc->gpio_ranges[i];
1191                 gstart = p->offset;
1192                 gend = p->offset + p->npins - 1;
1193
1194                 if (i == 0) {
1195                         /* First iteration, set start values */
1196                         lowest = gstart;
1197                         highest = gend;
1198                 } else {
1199                         if (gstart < lowest)
1200                                 lowest = gstart;
1201                         if (gend > highest)
1202                                 highest = gend;
1203                 }
1204         }
1205         /* this gives the absolute number of pins */
1206         npins = highest - lowest + 1;
1207         return npins;
1208 }
1209
1210 static const struct of_device_id abx500_gpio_match[] = {
1211         { .compatible = "stericsson,ab8500-gpio", .data = (void *)PINCTRL_AB8500, },
1212         { .compatible = "stericsson,ab8505-gpio", .data = (void *)PINCTRL_AB8505, },
1213         { .compatible = "stericsson,ab8540-gpio", .data = (void *)PINCTRL_AB8540, },
1214         { .compatible = "stericsson,ab9540-gpio", .data = (void *)PINCTRL_AB9540, },
1215         { }
1216 };
1217
1218 static int abx500_gpio_probe(struct platform_device *pdev)
1219 {
1220         struct device_node *np = pdev->dev.of_node;
1221         const struct of_device_id *match;
1222         struct abx500_pinctrl *pct;
1223         unsigned int id = -1;
1224         int ret, err;
1225         int i;
1226
1227         if (!np) {
1228                 dev_err(&pdev->dev, "gpio dt node missing\n");
1229                 return -ENODEV;
1230         }
1231
1232         pct = devm_kzalloc(&pdev->dev, sizeof(struct abx500_pinctrl),
1233                                    GFP_KERNEL);
1234         if (pct == NULL) {
1235                 dev_err(&pdev->dev,
1236                         "failed to allocate memory for pct\n");
1237                 return -ENOMEM;
1238         }
1239
1240         pct->dev = &pdev->dev;
1241         pct->parent = dev_get_drvdata(pdev->dev.parent);
1242         pct->chip = abx500gpio_chip;
1243         pct->chip.dev = &pdev->dev;
1244         pct->chip.base = -1; /* Dynamic allocation */
1245
1246         match = of_match_device(abx500_gpio_match, &pdev->dev);
1247         if (!match) {
1248                 dev_err(&pdev->dev, "gpio dt not matching\n");
1249                 return -ENODEV;
1250         }
1251         id = (unsigned long)match->data;
1252
1253         /* Poke in other ASIC variants here */
1254         switch (id) {
1255         case PINCTRL_AB8500:
1256                 abx500_pinctrl_ab8500_init(&pct->soc);
1257                 break;
1258         case PINCTRL_AB8540:
1259                 abx500_pinctrl_ab8540_init(&pct->soc);
1260                 break;
1261         case PINCTRL_AB9540:
1262                 abx500_pinctrl_ab9540_init(&pct->soc);
1263                 break;
1264         case PINCTRL_AB8505:
1265                 abx500_pinctrl_ab8505_init(&pct->soc);
1266                 break;
1267         default:
1268                 dev_err(&pdev->dev, "Unsupported pinctrl sub driver (%d)\n", id);
1269                 return -EINVAL;
1270         }
1271
1272         if (!pct->soc) {
1273                 dev_err(&pdev->dev, "Invalid SOC data\n");
1274                 return -EINVAL;
1275         }
1276
1277         pct->chip.ngpio = abx500_get_gpio_num(pct->soc);
1278         pct->irq_cluster = pct->soc->gpio_irq_cluster;
1279         pct->irq_cluster_size = pct->soc->ngpio_irq_cluster;
1280
1281         ret = gpiochip_add(&pct->chip);
1282         if (ret) {
1283                 dev_err(&pdev->dev, "unable to add gpiochip: %d\n", ret);
1284                 return ret;
1285         }
1286         dev_info(&pdev->dev, "added gpiochip\n");
1287
1288         abx500_pinctrl_desc.pins = pct->soc->pins;
1289         abx500_pinctrl_desc.npins = pct->soc->npins;
1290         pct->pctldev = pinctrl_register(&abx500_pinctrl_desc, &pdev->dev, pct);
1291         if (!pct->pctldev) {
1292                 dev_err(&pdev->dev,
1293                         "could not register abx500 pinctrl driver\n");
1294                 ret = -EINVAL;
1295                 goto out_rem_chip;
1296         }
1297         dev_info(&pdev->dev, "registered pin controller\n");
1298
1299         /* We will handle a range of GPIO pins */
1300         for (i = 0; i < pct->soc->gpio_num_ranges; i++) {
1301                 const struct abx500_pinrange *p = &pct->soc->gpio_ranges[i];
1302
1303                 ret = gpiochip_add_pin_range(&pct->chip,
1304                                         dev_name(&pdev->dev),
1305                                         p->offset - 1, p->offset, p->npins);
1306                 if (ret < 0)
1307                         goto out_rem_chip;
1308         }
1309
1310         platform_set_drvdata(pdev, pct);
1311         dev_info(&pdev->dev, "initialized abx500 pinctrl driver\n");
1312
1313         return 0;
1314
1315 out_rem_chip:
1316         err = gpiochip_remove(&pct->chip);
1317         if (err)
1318                 dev_info(&pdev->dev, "failed to remove gpiochip\n");
1319
1320         return ret;
1321 }
1322
1323 /**
1324  * abx500_gpio_remove() - remove Ab8500-gpio driver
1325  * @pdev:       Platform device registered
1326  */
1327 static int abx500_gpio_remove(struct platform_device *pdev)
1328 {
1329         struct abx500_pinctrl *pct = platform_get_drvdata(pdev);
1330         int ret;
1331
1332         ret = gpiochip_remove(&pct->chip);
1333         if (ret < 0) {
1334                 dev_err(pct->dev, "unable to remove gpiochip: %d\n",
1335                         ret);
1336                 return ret;
1337         }
1338
1339         return 0;
1340 }
1341
1342 static struct platform_driver abx500_gpio_driver = {
1343         .driver = {
1344                 .name = "abx500-gpio",
1345                 .owner = THIS_MODULE,
1346                 .of_match_table = abx500_gpio_match,
1347         },
1348         .probe = abx500_gpio_probe,
1349         .remove = abx500_gpio_remove,
1350 };
1351
1352 static int __init abx500_gpio_init(void)
1353 {
1354         return platform_driver_register(&abx500_gpio_driver);
1355 }
1356 core_initcall(abx500_gpio_init);
1357
1358 MODULE_AUTHOR("Patrice Chotard <patrice.chotard@st.com>");
1359 MODULE_DESCRIPTION("Driver allows to use AxB5xx unused pins to be used as GPIO");
1360 MODULE_ALIAS("platform:abx500-gpio");
1361 MODULE_LICENSE("GPL v2");