1 /*
2  * Copyright (C) 2014-2015 Broadcom Corporation
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation version 2.
7  *
8  * This program is distributed "as is" WITHOUT ANY WARRANTY of any
9  * kind, whether express or implied; without even the implied warranty
10  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * This file contains the Broadcom Iproc GPIO driver that supports 3
14  * GPIO controllers on Iproc including the ASIU GPIO controller, the
15  * chipCommonG GPIO controller, and the always-on GPIO controller. Basic
16  * PINCONF such as bias pull up/down, and drive strength are also supported
17  * in this driver.
18  *
19  * It provides the functionality where pins from the GPIO can be
20  * individually muxed to GPIO function, if individual pad
21  * configuration is supported, through the interaction with respective
22  * SoCs IOMUX controller.
23  */
24 
25 #include <linux/kernel.h>
26 #include <linux/slab.h>
27 #include <linux/interrupt.h>
28 #include <linux/io.h>
29 #include <linux/gpio/driver.h>
30 #include <linux/ioport.h>
31 #include <linux/of_device.h>
32 #include <linux/of_irq.h>
33 #include <linux/pinctrl/pinctrl.h>
34 #include <linux/pinctrl/pinconf.h>
35 #include <linux/pinctrl/pinconf-generic.h>
36 
37 #include "../pinctrl-utils.h"
38 
39 #define IPROC_GPIO_DATA_IN_OFFSET   0x00
40 #define IPROC_GPIO_DATA_OUT_OFFSET  0x04
41 #define IPROC_GPIO_OUT_EN_OFFSET    0x08
42 #define IPROC_GPIO_INT_TYPE_OFFSET  0x0c
43 #define IPROC_GPIO_INT_DE_OFFSET    0x10
44 #define IPROC_GPIO_INT_EDGE_OFFSET  0x14
45 #define IPROC_GPIO_INT_MSK_OFFSET   0x18
46 #define IPROC_GPIO_INT_STAT_OFFSET  0x1c
47 #define IPROC_GPIO_INT_MSTAT_OFFSET 0x20
48 #define IPROC_GPIO_INT_CLR_OFFSET   0x24
49 #define IPROC_GPIO_PAD_RES_OFFSET   0x34
50 #define IPROC_GPIO_RES_EN_OFFSET    0x38
51 
52 /* drive strength control for ASIU GPIO */
53 #define IPROC_GPIO_ASIU_DRV0_CTRL_OFFSET 0x58
54 
55 /* drive strength control for CCM/CRMU (AON) GPIO */
56 #define IPROC_GPIO_DRV0_CTRL_OFFSET  0x00
57 
58 #define GPIO_BANK_SIZE 0x200
59 #define NGPIOS_PER_BANK 32
60 #define GPIO_BANK(pin) ((pin) / NGPIOS_PER_BANK)
61 
62 #define IPROC_GPIO_REG(pin, reg) (GPIO_BANK(pin) * GPIO_BANK_SIZE + (reg))
63 #define IPROC_GPIO_SHIFT(pin) ((pin) % NGPIOS_PER_BANK)
64 
65 #define GPIO_DRV_STRENGTH_BIT_SHIFT  20
66 #define GPIO_DRV_STRENGTH_BITS       3
67 #define GPIO_DRV_STRENGTH_BIT_MASK   ((1 << GPIO_DRV_STRENGTH_BITS) - 1)
68 
69 enum iproc_pinconf_param {
70 	IPROC_PINCONF_DRIVE_STRENGTH = 0,
71 	IPROC_PINCONF_BIAS_DISABLE,
72 	IPROC_PINCONF_BIAS_PULL_UP,
73 	IPROC_PINCONF_BIAS_PULL_DOWN,
74 	IPROC_PINCON_MAX,
75 };
76 
77 /*
78  * Iproc GPIO core
79  *
80  * @dev: pointer to device
81  * @base: I/O register base for Iproc GPIO controller
82  * @io_ctrl: I/O register base for certain type of Iproc GPIO controller that
83  * has the PINCONF support implemented outside of the GPIO block
84  * @lock: lock to protect access to I/O registers
85  * @gc: GPIO chip
86  * @num_banks: number of GPIO banks, each bank supports up to 32 GPIOs
87  * @pinmux_is_supported: flag to indicate this GPIO controller contains pins
88  * that can be individually muxed to GPIO
89  * @pinconf_disable: contains a list of PINCONF parameters that need to be
90  * disabled
91  * @nr_pinconf_disable: total number of PINCONF parameters that need to be
92  * disabled
93  * @pctl: pointer to pinctrl_dev
94  * @pctldesc: pinctrl descriptor
95  */
96 struct iproc_gpio {
97 	struct device *dev;
98 
99 	void __iomem *base;
100 	void __iomem *io_ctrl;
101 
102 	raw_spinlock_t lock;
103 
104 	struct gpio_chip gc;
105 	unsigned num_banks;
106 
107 	bool pinmux_is_supported;
108 
109 	enum pin_config_param *pinconf_disable;
110 	unsigned int nr_pinconf_disable;
111 
112 	struct pinctrl_dev *pctl;
113 	struct pinctrl_desc pctldesc;
114 };
115 
116 /*
117  * Mapping from PINCONF pins to GPIO pins is 1-to-1
118  */
119 static inline unsigned iproc_pin_to_gpio(unsigned pin)
120 {
121 	return pin;
122 }
123 
124 /**
125  *  iproc_set_bit - set or clear one bit (corresponding to the GPIO pin) in a
126  *  Iproc GPIO register
127  *
128  *  @iproc_gpio: Iproc GPIO device
129  *  @reg: register offset
130  *  @gpio: GPIO pin
131  *  @set: set or clear
132  */
133 static inline void iproc_set_bit(struct iproc_gpio *chip, unsigned int reg,
134 				  unsigned gpio, bool set)
135 {
136 	unsigned int offset = IPROC_GPIO_REG(gpio, reg);
137 	unsigned int shift = IPROC_GPIO_SHIFT(gpio);
138 	u32 val;
139 
140 	val = readl(chip->base + offset);
141 	if (set)
142 		val |= BIT(shift);
143 	else
144 		val &= ~BIT(shift);
145 	writel(val, chip->base + offset);
146 }
147 
148 static inline bool iproc_get_bit(struct iproc_gpio *chip, unsigned int reg,
149 				  unsigned gpio)
150 {
151 	unsigned int offset = IPROC_GPIO_REG(gpio, reg);
152 	unsigned int shift = IPROC_GPIO_SHIFT(gpio);
153 
154 	return !!(readl(chip->base + offset) & BIT(shift));
155 }
156 
157 static void iproc_gpio_irq_handler(struct irq_desc *desc)
158 {
159 	struct gpio_chip *gc = irq_desc_get_handler_data(desc);
160 	struct iproc_gpio *chip = gpiochip_get_data(gc);
161 	struct irq_chip *irq_chip = irq_desc_get_chip(desc);
162 	int i, bit;
163 
164 	chained_irq_enter(irq_chip, desc);
165 
166 	/* go through the entire GPIO banks and handle all interrupts */
167 	for (i = 0; i < chip->num_banks; i++) {
168 		unsigned long val = readl(chip->base + (i * GPIO_BANK_SIZE) +
169 					  IPROC_GPIO_INT_MSTAT_OFFSET);
170 
171 		for_each_set_bit(bit, &val, NGPIOS_PER_BANK) {
172 			unsigned pin = NGPIOS_PER_BANK * i + bit;
173 			int child_irq = irq_find_mapping(gc->irqdomain, pin);
174 
175 			/*
176 			 * Clear the interrupt before invoking the
177 			 * handler, so we do not leave any window
178 			 */
179 			writel(BIT(bit), chip->base + (i * GPIO_BANK_SIZE) +
180 			       IPROC_GPIO_INT_CLR_OFFSET);
181 
182 			generic_handle_irq(child_irq);
183 		}
184 	}
185 
186 	chained_irq_exit(irq_chip, desc);
187 }
188 
189 
190 static void iproc_gpio_irq_ack(struct irq_data *d)
191 {
192 	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
193 	struct iproc_gpio *chip = gpiochip_get_data(gc);
194 	unsigned gpio = d->hwirq;
195 	unsigned int offset = IPROC_GPIO_REG(gpio,
196 			IPROC_GPIO_INT_CLR_OFFSET);
197 	unsigned int shift = IPROC_GPIO_SHIFT(gpio);
198 	u32 val = BIT(shift);
199 
200 	writel(val, chip->base + offset);
201 }
202 
203 /**
204  *  iproc_gpio_irq_set_mask - mask/unmask a GPIO interrupt
205  *
206  *  @d: IRQ chip data
207  *  @unmask: mask/unmask GPIO interrupt
208  */
209 static void iproc_gpio_irq_set_mask(struct irq_data *d, bool unmask)
210 {
211 	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
212 	struct iproc_gpio *chip = gpiochip_get_data(gc);
213 	unsigned gpio = d->hwirq;
214 
215 	iproc_set_bit(chip, IPROC_GPIO_INT_MSK_OFFSET, gpio, unmask);
216 }
217 
218 static void iproc_gpio_irq_mask(struct irq_data *d)
219 {
220 	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
221 	struct iproc_gpio *chip = gpiochip_get_data(gc);
222 	unsigned long flags;
223 
224 	raw_spin_lock_irqsave(&chip->lock, flags);
225 	iproc_gpio_irq_set_mask(d, false);
226 	raw_spin_unlock_irqrestore(&chip->lock, flags);
227 }
228 
229 static void iproc_gpio_irq_unmask(struct irq_data *d)
230 {
231 	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
232 	struct iproc_gpio *chip = gpiochip_get_data(gc);
233 	unsigned long flags;
234 
235 	raw_spin_lock_irqsave(&chip->lock, flags);
236 	iproc_gpio_irq_set_mask(d, true);
237 	raw_spin_unlock_irqrestore(&chip->lock, flags);
238 }
239 
240 static int iproc_gpio_irq_set_type(struct irq_data *d, unsigned int type)
241 {
242 	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
243 	struct iproc_gpio *chip = gpiochip_get_data(gc);
244 	unsigned gpio = d->hwirq;
245 	bool level_triggered = false;
246 	bool dual_edge = false;
247 	bool rising_or_high = false;
248 	unsigned long flags;
249 
250 	switch (type & IRQ_TYPE_SENSE_MASK) {
251 	case IRQ_TYPE_EDGE_RISING:
252 		rising_or_high = true;
253 		break;
254 
255 	case IRQ_TYPE_EDGE_FALLING:
256 		break;
257 
258 	case IRQ_TYPE_EDGE_BOTH:
259 		dual_edge = true;
260 		break;
261 
262 	case IRQ_TYPE_LEVEL_HIGH:
263 		level_triggered = true;
264 		rising_or_high = true;
265 		break;
266 
267 	case IRQ_TYPE_LEVEL_LOW:
268 		level_triggered = true;
269 		break;
270 
271 	default:
272 		dev_err(chip->dev, "invalid GPIO IRQ type 0x%x\n",
273 			type);
274 		return -EINVAL;
275 	}
276 
277 	raw_spin_lock_irqsave(&chip->lock, flags);
278 	iproc_set_bit(chip, IPROC_GPIO_INT_TYPE_OFFSET, gpio,
279 		       level_triggered);
280 	iproc_set_bit(chip, IPROC_GPIO_INT_DE_OFFSET, gpio, dual_edge);
281 	iproc_set_bit(chip, IPROC_GPIO_INT_EDGE_OFFSET, gpio,
282 		       rising_or_high);
283 	raw_spin_unlock_irqrestore(&chip->lock, flags);
284 
285 	dev_dbg(chip->dev,
286 		"gpio:%u level_triggered:%d dual_edge:%d rising_or_high:%d\n",
287 		gpio, level_triggered, dual_edge, rising_or_high);
288 
289 	return 0;
290 }
291 
292 static struct irq_chip iproc_gpio_irq_chip = {
293 	.name = "bcm-iproc-gpio",
294 	.irq_ack = iproc_gpio_irq_ack,
295 	.irq_mask = iproc_gpio_irq_mask,
296 	.irq_unmask = iproc_gpio_irq_unmask,
297 	.irq_set_type = iproc_gpio_irq_set_type,
298 };
299 
300 /*
301  * Request the Iproc IOMUX pinmux controller to mux individual pins to GPIO
302  */
303 static int iproc_gpio_request(struct gpio_chip *gc, unsigned offset)
304 {
305 	struct iproc_gpio *chip = gpiochip_get_data(gc);
306 	unsigned gpio = gc->base + offset;
307 
308 	/* not all Iproc GPIO pins can be muxed individually */
309 	if (!chip->pinmux_is_supported)
310 		return 0;
311 
312 	return pinctrl_request_gpio(gpio);
313 }
314 
315 static void iproc_gpio_free(struct gpio_chip *gc, unsigned offset)
316 {
317 	struct iproc_gpio *chip = gpiochip_get_data(gc);
318 	unsigned gpio = gc->base + offset;
319 
320 	if (!chip->pinmux_is_supported)
321 		return;
322 
323 	pinctrl_free_gpio(gpio);
324 }
325 
326 static int iproc_gpio_direction_input(struct gpio_chip *gc, unsigned gpio)
327 {
328 	struct iproc_gpio *chip = gpiochip_get_data(gc);
329 	unsigned long flags;
330 
331 	raw_spin_lock_irqsave(&chip->lock, flags);
332 	iproc_set_bit(chip, IPROC_GPIO_OUT_EN_OFFSET, gpio, false);
333 	raw_spin_unlock_irqrestore(&chip->lock, flags);
334 
335 	dev_dbg(chip->dev, "gpio:%u set input\n", gpio);
336 
337 	return 0;
338 }
339 
340 static int iproc_gpio_direction_output(struct gpio_chip *gc, unsigned gpio,
341 					int val)
342 {
343 	struct iproc_gpio *chip = gpiochip_get_data(gc);
344 	unsigned long flags;
345 
346 	raw_spin_lock_irqsave(&chip->lock, flags);
347 	iproc_set_bit(chip, IPROC_GPIO_OUT_EN_OFFSET, gpio, true);
348 	iproc_set_bit(chip, IPROC_GPIO_DATA_OUT_OFFSET, gpio, !!(val));
349 	raw_spin_unlock_irqrestore(&chip->lock, flags);
350 
351 	dev_dbg(chip->dev, "gpio:%u set output, value:%d\n", gpio, val);
352 
353 	return 0;
354 }
355 
356 static void iproc_gpio_set(struct gpio_chip *gc, unsigned gpio, int val)
357 {
358 	struct iproc_gpio *chip = gpiochip_get_data(gc);
359 	unsigned long flags;
360 
361 	raw_spin_lock_irqsave(&chip->lock, flags);
362 	iproc_set_bit(chip, IPROC_GPIO_DATA_OUT_OFFSET, gpio, !!(val));
363 	raw_spin_unlock_irqrestore(&chip->lock, flags);
364 
365 	dev_dbg(chip->dev, "gpio:%u set, value:%d\n", gpio, val);
366 }
367 
368 static int iproc_gpio_get(struct gpio_chip *gc, unsigned gpio)
369 {
370 	struct iproc_gpio *chip = gpiochip_get_data(gc);
371 	unsigned int offset = IPROC_GPIO_REG(gpio,
372 					      IPROC_GPIO_DATA_IN_OFFSET);
373 	unsigned int shift = IPROC_GPIO_SHIFT(gpio);
374 
375 	return !!(readl(chip->base + offset) & BIT(shift));
376 }
377 
378 /*
379  * Mapping of the iProc PINCONF parameters to the generic pin configuration
380  * parameters
381  */
382 static const enum pin_config_param iproc_pinconf_disable_map[] = {
383 	[IPROC_PINCONF_DRIVE_STRENGTH] = PIN_CONFIG_DRIVE_STRENGTH,
384 	[IPROC_PINCONF_BIAS_DISABLE] = PIN_CONFIG_BIAS_DISABLE,
385 	[IPROC_PINCONF_BIAS_PULL_UP] = PIN_CONFIG_BIAS_PULL_UP,
386 	[IPROC_PINCONF_BIAS_PULL_DOWN] = PIN_CONFIG_BIAS_PULL_DOWN,
387 };
388 
389 static bool iproc_pinconf_param_is_disabled(struct iproc_gpio *chip,
390 					    enum pin_config_param param)
391 {
392 	unsigned int i;
393 
394 	if (!chip->nr_pinconf_disable)
395 		return false;
396 
397 	for (i = 0; i < chip->nr_pinconf_disable; i++)
398 		if (chip->pinconf_disable[i] == param)
399 			return true;
400 
401 	return false;
402 }
403 
404 static int iproc_pinconf_disable_map_create(struct iproc_gpio *chip,
405 					    unsigned long disable_mask)
406 {
407 	unsigned int map_size = ARRAY_SIZE(iproc_pinconf_disable_map);
408 	unsigned int bit, nbits = 0;
409 
410 	/* figure out total number of PINCONF parameters to disable */
411 	for_each_set_bit(bit, &disable_mask, map_size)
412 		nbits++;
413 
414 	if (!nbits)
415 		return 0;
416 
417 	/*
418 	 * Allocate an array to store PINCONF parameters that need to be
419 	 * disabled
420 	 */
421 	chip->pinconf_disable = devm_kcalloc(chip->dev, nbits,
422 					     sizeof(*chip->pinconf_disable),
423 					     GFP_KERNEL);
424 	if (!chip->pinconf_disable)
425 		return -ENOMEM;
426 
427 	chip->nr_pinconf_disable = nbits;
428 
429 	/* now store these parameters */
430 	nbits = 0;
431 	for_each_set_bit(bit, &disable_mask, map_size)
432 		chip->pinconf_disable[nbits++] = iproc_pinconf_disable_map[bit];
433 
434 	return 0;
435 }
436 
437 static int iproc_get_groups_count(struct pinctrl_dev *pctldev)
438 {
439 	return 1;
440 }
441 
442 /*
443  * Only one group: "gpio_grp", since this local pinctrl device only performs
444  * GPIO specific PINCONF configurations
445  */
446 static const char *iproc_get_group_name(struct pinctrl_dev *pctldev,
447 					 unsigned selector)
448 {
449 	return "gpio_grp";
450 }
451 
452 static const struct pinctrl_ops iproc_pctrl_ops = {
453 	.get_groups_count = iproc_get_groups_count,
454 	.get_group_name = iproc_get_group_name,
455 	.dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
456 	.dt_free_map = pinctrl_utils_free_map,
457 };
458 
459 static int iproc_gpio_set_pull(struct iproc_gpio *chip, unsigned gpio,
460 				bool disable, bool pull_up)
461 {
462 	unsigned long flags;
463 
464 	raw_spin_lock_irqsave(&chip->lock, flags);
465 
466 	if (disable) {
467 		iproc_set_bit(chip, IPROC_GPIO_RES_EN_OFFSET, gpio, false);
468 	} else {
469 		iproc_set_bit(chip, IPROC_GPIO_PAD_RES_OFFSET, gpio,
470 			       pull_up);
471 		iproc_set_bit(chip, IPROC_GPIO_RES_EN_OFFSET, gpio, true);
472 	}
473 
474 	raw_spin_unlock_irqrestore(&chip->lock, flags);
475 
476 	dev_dbg(chip->dev, "gpio:%u set pullup:%d\n", gpio, pull_up);
477 
478 	return 0;
479 }
480 
481 static void iproc_gpio_get_pull(struct iproc_gpio *chip, unsigned gpio,
482 				 bool *disable, bool *pull_up)
483 {
484 	unsigned long flags;
485 
486 	raw_spin_lock_irqsave(&chip->lock, flags);
487 	*disable = !iproc_get_bit(chip, IPROC_GPIO_RES_EN_OFFSET, gpio);
488 	*pull_up = iproc_get_bit(chip, IPROC_GPIO_PAD_RES_OFFSET, gpio);
489 	raw_spin_unlock_irqrestore(&chip->lock, flags);
490 }
491 
492 static int iproc_gpio_set_strength(struct iproc_gpio *chip, unsigned gpio,
493 				    unsigned strength)
494 {
495 	void __iomem *base;
496 	unsigned int i, offset, shift;
497 	u32 val;
498 	unsigned long flags;
499 
500 	/* make sure drive strength is supported */
501 	if (strength < 2 ||  strength > 16 || (strength % 2))
502 		return -ENOTSUPP;
503 
504 	if (chip->io_ctrl) {
505 		base = chip->io_ctrl;
506 		offset = IPROC_GPIO_DRV0_CTRL_OFFSET;
507 	} else {
508 		base = chip->base;
509 		offset = IPROC_GPIO_REG(gpio,
510 					 IPROC_GPIO_ASIU_DRV0_CTRL_OFFSET);
511 	}
512 
513 	shift = IPROC_GPIO_SHIFT(gpio);
514 
515 	dev_dbg(chip->dev, "gpio:%u set drive strength:%d mA\n", gpio,
516 		strength);
517 
518 	raw_spin_lock_irqsave(&chip->lock, flags);
519 	strength = (strength / 2) - 1;
520 	for (i = 0; i < GPIO_DRV_STRENGTH_BITS; i++) {
521 		val = readl(base + offset);
522 		val &= ~BIT(shift);
523 		val |= ((strength >> i) & 0x1) << shift;
524 		writel(val, base + offset);
525 		offset += 4;
526 	}
527 	raw_spin_unlock_irqrestore(&chip->lock, flags);
528 
529 	return 0;
530 }
531 
532 static int iproc_gpio_get_strength(struct iproc_gpio *chip, unsigned gpio,
533 				    u16 *strength)
534 {
535 	void __iomem *base;
536 	unsigned int i, offset, shift;
537 	u32 val;
538 	unsigned long flags;
539 
540 	if (chip->io_ctrl) {
541 		base = chip->io_ctrl;
542 		offset = IPROC_GPIO_DRV0_CTRL_OFFSET;
543 	} else {
544 		base = chip->base;
545 		offset = IPROC_GPIO_REG(gpio,
546 					 IPROC_GPIO_ASIU_DRV0_CTRL_OFFSET);
547 	}
548 
549 	shift = IPROC_GPIO_SHIFT(gpio);
550 
551 	raw_spin_lock_irqsave(&chip->lock, flags);
552 	*strength = 0;
553 	for (i = 0; i < GPIO_DRV_STRENGTH_BITS; i++) {
554 		val = readl(base + offset) & BIT(shift);
555 		val >>= shift;
556 		*strength += (val << i);
557 		offset += 4;
558 	}
559 
560 	/* convert to mA */
561 	*strength = (*strength + 1) * 2;
562 	raw_spin_unlock_irqrestore(&chip->lock, flags);
563 
564 	return 0;
565 }
566 
567 static int iproc_pin_config_get(struct pinctrl_dev *pctldev, unsigned pin,
568 				 unsigned long *config)
569 {
570 	struct iproc_gpio *chip = pinctrl_dev_get_drvdata(pctldev);
571 	enum pin_config_param param = pinconf_to_config_param(*config);
572 	unsigned gpio = iproc_pin_to_gpio(pin);
573 	u16 arg;
574 	bool disable, pull_up;
575 	int ret;
576 
577 	if (iproc_pinconf_param_is_disabled(chip, param))
578 		return -ENOTSUPP;
579 
580 	switch (param) {
581 	case PIN_CONFIG_BIAS_DISABLE:
582 		iproc_gpio_get_pull(chip, gpio, &disable, &pull_up);
583 		if (disable)
584 			return 0;
585 		else
586 			return -EINVAL;
587 
588 	case PIN_CONFIG_BIAS_PULL_UP:
589 		iproc_gpio_get_pull(chip, gpio, &disable, &pull_up);
590 		if (!disable && pull_up)
591 			return 0;
592 		else
593 			return -EINVAL;
594 
595 	case PIN_CONFIG_BIAS_PULL_DOWN:
596 		iproc_gpio_get_pull(chip, gpio, &disable, &pull_up);
597 		if (!disable && !pull_up)
598 			return 0;
599 		else
600 			return -EINVAL;
601 
602 	case PIN_CONFIG_DRIVE_STRENGTH:
603 		ret = iproc_gpio_get_strength(chip, gpio, &arg);
604 		if (ret)
605 			return ret;
606 		*config = pinconf_to_config_packed(param, arg);
607 
608 		return 0;
609 
610 	default:
611 		return -ENOTSUPP;
612 	}
613 
614 	return -ENOTSUPP;
615 }
616 
617 static int iproc_pin_config_set(struct pinctrl_dev *pctldev, unsigned pin,
618 				 unsigned long *configs, unsigned num_configs)
619 {
620 	struct iproc_gpio *chip = pinctrl_dev_get_drvdata(pctldev);
621 	enum pin_config_param param;
622 	u32 arg;
623 	unsigned i, gpio = iproc_pin_to_gpio(pin);
624 	int ret = -ENOTSUPP;
625 
626 	for (i = 0; i < num_configs; i++) {
627 		param = pinconf_to_config_param(configs[i]);
628 
629 		if (iproc_pinconf_param_is_disabled(chip, param))
630 			return -ENOTSUPP;
631 
632 		arg = pinconf_to_config_argument(configs[i]);
633 
634 		switch (param) {
635 		case PIN_CONFIG_BIAS_DISABLE:
636 			ret = iproc_gpio_set_pull(chip, gpio, true, false);
637 			if (ret < 0)
638 				goto out;
639 			break;
640 
641 		case PIN_CONFIG_BIAS_PULL_UP:
642 			ret = iproc_gpio_set_pull(chip, gpio, false, true);
643 			if (ret < 0)
644 				goto out;
645 			break;
646 
647 		case PIN_CONFIG_BIAS_PULL_DOWN:
648 			ret = iproc_gpio_set_pull(chip, gpio, false, false);
649 			if (ret < 0)
650 				goto out;
651 			break;
652 
653 		case PIN_CONFIG_DRIVE_STRENGTH:
654 			ret = iproc_gpio_set_strength(chip, gpio, arg);
655 			if (ret < 0)
656 				goto out;
657 			break;
658 
659 		default:
660 			dev_err(chip->dev, "invalid configuration\n");
661 			return -ENOTSUPP;
662 		}
663 	} /* for each config */
664 
665 out:
666 	return ret;
667 }
668 
669 static const struct pinconf_ops iproc_pconf_ops = {
670 	.is_generic = true,
671 	.pin_config_get = iproc_pin_config_get,
672 	.pin_config_set = iproc_pin_config_set,
673 };
674 
675 /*
676  * Iproc GPIO controller supports some PINCONF related configurations such as
677  * pull up, pull down, and drive strength, when the pin is configured to GPIO
678  *
679  * Here a local pinctrl device is created with simple 1-to-1 pin mapping to the
680  * local GPIO pins
681  */
682 static int iproc_gpio_register_pinconf(struct iproc_gpio *chip)
683 {
684 	struct pinctrl_desc *pctldesc = &chip->pctldesc;
685 	struct pinctrl_pin_desc *pins;
686 	struct gpio_chip *gc = &chip->gc;
687 	int i;
688 
689 	pins = devm_kcalloc(chip->dev, gc->ngpio, sizeof(*pins), GFP_KERNEL);
690 	if (!pins)
691 		return -ENOMEM;
692 
693 	for (i = 0; i < gc->ngpio; i++) {
694 		pins[i].number = i;
695 		pins[i].name = devm_kasprintf(chip->dev, GFP_KERNEL,
696 					      "gpio-%d", i);
697 		if (!pins[i].name)
698 			return -ENOMEM;
699 	}
700 
701 	pctldesc->name = dev_name(chip->dev);
702 	pctldesc->pctlops = &iproc_pctrl_ops;
703 	pctldesc->pins = pins;
704 	pctldesc->npins = gc->ngpio;
705 	pctldesc->confops = &iproc_pconf_ops;
706 
707 	chip->pctl = devm_pinctrl_register(chip->dev, pctldesc, chip);
708 	if (IS_ERR(chip->pctl)) {
709 		dev_err(chip->dev, "unable to register pinctrl device\n");
710 		return PTR_ERR(chip->pctl);
711 	}
712 
713 	return 0;
714 }
715 
716 static const struct of_device_id iproc_gpio_of_match[] = {
717 	{ .compatible = "brcm,iproc-gpio" },
718 	{ .compatible = "brcm,cygnus-ccm-gpio" },
719 	{ .compatible = "brcm,cygnus-asiu-gpio" },
720 	{ .compatible = "brcm,cygnus-crmu-gpio" },
721 	{ .compatible = "brcm,iproc-nsp-gpio" },
722 	{ .compatible = "brcm,iproc-stingray-gpio" },
723 	{ /* sentinel */ }
724 };
725 
726 static int iproc_gpio_probe(struct platform_device *pdev)
727 {
728 	struct device *dev = &pdev->dev;
729 	struct resource *res;
730 	struct iproc_gpio *chip;
731 	struct gpio_chip *gc;
732 	u32 ngpios, pinconf_disable_mask = 0;
733 	int irq, ret;
734 	bool no_pinconf = false;
735 
736 	/* NSP does not support drive strength config */
737 	if (of_device_is_compatible(dev->of_node, "brcm,iproc-nsp-gpio"))
738 		pinconf_disable_mask = BIT(IPROC_PINCONF_DRIVE_STRENGTH);
739 	/* Stingray does not support pinconf in this controller */
740 	else if (of_device_is_compatible(dev->of_node,
741 					 "brcm,iproc-stingray-gpio"))
742 		no_pinconf = true;
743 
744 	chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
745 	if (!chip)
746 		return -ENOMEM;
747 
748 	chip->dev = dev;
749 	platform_set_drvdata(pdev, chip);
750 
751 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
752 	chip->base = devm_ioremap_resource(dev, res);
753 	if (IS_ERR(chip->base)) {
754 		dev_err(dev, "unable to map I/O memory\n");
755 		return PTR_ERR(chip->base);
756 	}
757 
758 	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
759 	if (res) {
760 		chip->io_ctrl = devm_ioremap_resource(dev, res);
761 		if (IS_ERR(chip->io_ctrl)) {
762 			dev_err(dev, "unable to map I/O memory\n");
763 			return PTR_ERR(chip->io_ctrl);
764 		}
765 	}
766 
767 	if (of_property_read_u32(dev->of_node, "ngpios", &ngpios)) {
768 		dev_err(&pdev->dev, "missing ngpios DT property\n");
769 		return -ENODEV;
770 	}
771 
772 	raw_spin_lock_init(&chip->lock);
773 
774 	gc = &chip->gc;
775 	gc->base = -1;
776 	gc->ngpio = ngpios;
777 	chip->num_banks = (ngpios + NGPIOS_PER_BANK - 1) / NGPIOS_PER_BANK;
778 	gc->label = dev_name(dev);
779 	gc->parent = dev;
780 	gc->of_node = dev->of_node;
781 	gc->request = iproc_gpio_request;
782 	gc->free = iproc_gpio_free;
783 	gc->direction_input = iproc_gpio_direction_input;
784 	gc->direction_output = iproc_gpio_direction_output;
785 	gc->set = iproc_gpio_set;
786 	gc->get = iproc_gpio_get;
787 
788 	chip->pinmux_is_supported = of_property_read_bool(dev->of_node,
789 							"gpio-ranges");
790 
791 	ret = gpiochip_add_data(gc, chip);
792 	if (ret < 0) {
793 		dev_err(dev, "unable to add GPIO chip\n");
794 		return ret;
795 	}
796 
797 	if (!no_pinconf) {
798 		ret = iproc_gpio_register_pinconf(chip);
799 		if (ret) {
800 			dev_err(dev, "unable to register pinconf\n");
801 			goto err_rm_gpiochip;
802 		}
803 
804 		if (pinconf_disable_mask) {
805 			ret = iproc_pinconf_disable_map_create(chip,
806 							 pinconf_disable_mask);
807 			if (ret) {
808 				dev_err(dev,
809 					"unable to create pinconf disable map\n");
810 				goto err_rm_gpiochip;
811 			}
812 		}
813 	}
814 
815 	/* optional GPIO interrupt support */
816 	irq = platform_get_irq(pdev, 0);
817 	if (irq) {
818 		ret = gpiochip_irqchip_add(gc, &iproc_gpio_irq_chip, 0,
819 					   handle_simple_irq, IRQ_TYPE_NONE);
820 		if (ret) {
821 			dev_err(dev, "no GPIO irqchip\n");
822 			goto err_rm_gpiochip;
823 		}
824 
825 		gpiochip_set_chained_irqchip(gc, &iproc_gpio_irq_chip, irq,
826 					     iproc_gpio_irq_handler);
827 	}
828 
829 	return 0;
830 
831 err_rm_gpiochip:
832 	gpiochip_remove(gc);
833 
834 	return ret;
835 }
836 
837 static struct platform_driver iproc_gpio_driver = {
838 	.driver = {
839 		.name = "iproc-gpio",
840 		.of_match_table = iproc_gpio_of_match,
841 	},
842 	.probe = iproc_gpio_probe,
843 };
844 
845 static int __init iproc_gpio_init(void)
846 {
847 	return platform_driver_register(&iproc_gpio_driver);
848 }
849 arch_initcall_sync(iproc_gpio_init);
850