xref: /openbmc/linux/drivers/pinctrl/nomadik/pinctrl-abx500.c (revision 34d6f206a88c2651d216bd3487ac956a40b2ba8e)
1af873fceSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
23a198059SLinus Walleij /*
33a198059SLinus Walleij  * Copyright (C) ST-Ericsson SA 2013
43a198059SLinus Walleij  *
53a198059SLinus Walleij  * Author: Patrice Chotard <patrice.chotard@st.com>
63a198059SLinus Walleij  *
78b51fad0SPaul Gortmaker  * Driver allows to use AxB5xx unused pins to be used as GPIO
83a198059SLinus Walleij  */
9937e7a39SAndy Shevchenko #include <linux/bitops.h>
103a198059SLinus Walleij #include <linux/err.h>
11937e7a39SAndy Shevchenko #include <linux/gpio/driver.h>
12937e7a39SAndy Shevchenko #include <linux/init.h>
13937e7a39SAndy Shevchenko #include <linux/interrupt.h>
14937e7a39SAndy Shevchenko #include <linux/irq.h>
15937e7a39SAndy Shevchenko #include <linux/irqdomain.h>
16937e7a39SAndy Shevchenko #include <linux/kernel.h>
173a198059SLinus Walleij #include <linux/of.h>
183a198059SLinus Walleij #include <linux/of_device.h>
193a198059SLinus Walleij #include <linux/platform_device.h>
20*ccc7cdf4SRob Herring #include <linux/property.h>
21937e7a39SAndy Shevchenko #include <linux/seq_file.h>
22937e7a39SAndy Shevchenko #include <linux/slab.h>
23937e7a39SAndy Shevchenko #include <linux/types.h>
24937e7a39SAndy Shevchenko 
253a198059SLinus Walleij #include <linux/mfd/abx500.h>
263a198059SLinus Walleij #include <linux/mfd/abx500/ab8500.h>
273a198059SLinus Walleij 
28937e7a39SAndy Shevchenko #include <linux/pinctrl/consumer.h>
29937e7a39SAndy Shevchenko #include <linux/pinctrl/machine.h>
30937e7a39SAndy Shevchenko #include <linux/pinctrl/pinconf-generic.h>
31937e7a39SAndy Shevchenko #include <linux/pinctrl/pinconf.h>
32937e7a39SAndy Shevchenko #include <linux/pinctrl/pinctrl.h>
33937e7a39SAndy Shevchenko #include <linux/pinctrl/pinmux.h>
34937e7a39SAndy Shevchenko 
353a198059SLinus Walleij #include "../core.h"
363a198059SLinus Walleij #include "../pinconf.h"
37b07f92a2SLinus Walleij #include "../pinctrl-utils.h"
383a198059SLinus Walleij 
39937e7a39SAndy Shevchenko #include "pinctrl-abx500.h"
40937e7a39SAndy Shevchenko 
413a198059SLinus Walleij /*
423a198059SLinus Walleij  * GPIO registers offset
433a198059SLinus Walleij  * Bank: 0x10
443a198059SLinus Walleij  */
453a198059SLinus Walleij #define AB8500_GPIO_SEL1_REG	0x00
463a198059SLinus Walleij #define AB8500_GPIO_SEL2_REG	0x01
473a198059SLinus Walleij #define AB8500_GPIO_SEL3_REG	0x02
483a198059SLinus Walleij #define AB8500_GPIO_SEL4_REG	0x03
493a198059SLinus Walleij #define AB8500_GPIO_SEL5_REG	0x04
503a198059SLinus Walleij #define AB8500_GPIO_SEL6_REG	0x05
513a198059SLinus Walleij 
523a198059SLinus Walleij #define AB8500_GPIO_DIR1_REG	0x10
533a198059SLinus Walleij #define AB8500_GPIO_DIR2_REG	0x11
543a198059SLinus Walleij #define AB8500_GPIO_DIR3_REG	0x12
553a198059SLinus Walleij #define AB8500_GPIO_DIR4_REG	0x13
563a198059SLinus Walleij #define AB8500_GPIO_DIR5_REG	0x14
573a198059SLinus Walleij #define AB8500_GPIO_DIR6_REG	0x15
583a198059SLinus Walleij 
593a198059SLinus Walleij #define AB8500_GPIO_OUT1_REG	0x20
603a198059SLinus Walleij #define AB8500_GPIO_OUT2_REG	0x21
613a198059SLinus Walleij #define AB8500_GPIO_OUT3_REG	0x22
623a198059SLinus Walleij #define AB8500_GPIO_OUT4_REG	0x23
633a198059SLinus Walleij #define AB8500_GPIO_OUT5_REG	0x24
643a198059SLinus Walleij #define AB8500_GPIO_OUT6_REG	0x25
653a198059SLinus Walleij 
663a198059SLinus Walleij #define AB8500_GPIO_PUD1_REG	0x30
673a198059SLinus Walleij #define AB8500_GPIO_PUD2_REG	0x31
683a198059SLinus Walleij #define AB8500_GPIO_PUD3_REG	0x32
693a198059SLinus Walleij #define AB8500_GPIO_PUD4_REG	0x33
703a198059SLinus Walleij #define AB8500_GPIO_PUD5_REG	0x34
713a198059SLinus Walleij #define AB8500_GPIO_PUD6_REG	0x35
723a198059SLinus Walleij 
733a198059SLinus Walleij #define AB8500_GPIO_IN1_REG	0x40
743a198059SLinus Walleij #define AB8500_GPIO_IN2_REG	0x41
753a198059SLinus Walleij #define AB8500_GPIO_IN3_REG	0x42
763a198059SLinus Walleij #define AB8500_GPIO_IN4_REG	0x43
773a198059SLinus Walleij #define AB8500_GPIO_IN5_REG	0x44
783a198059SLinus Walleij #define AB8500_GPIO_IN6_REG	0x45
793a198059SLinus Walleij #define AB8500_GPIO_ALTFUN_REG	0x50
803a198059SLinus Walleij 
813a198059SLinus Walleij #define ABX500_GPIO_INPUT	0
823a198059SLinus Walleij #define ABX500_GPIO_OUTPUT	1
833a198059SLinus Walleij 
843a198059SLinus Walleij struct abx500_pinctrl {
853a198059SLinus Walleij 	struct device *dev;
863a198059SLinus Walleij 	struct pinctrl_dev *pctldev;
873a198059SLinus Walleij 	struct abx500_pinctrl_soc_data *soc;
883a198059SLinus Walleij 	struct gpio_chip chip;
893a198059SLinus Walleij 	struct ab8500 *parent;
903a198059SLinus Walleij 	struct abx500_gpio_irq_cluster *irq_cluster;
913a198059SLinus Walleij 	int irq_cluster_size;
923a198059SLinus Walleij };
933a198059SLinus Walleij 
abx500_gpio_get_bit(struct gpio_chip * chip,u8 reg,unsigned offset,bool * bit)943a198059SLinus Walleij static int abx500_gpio_get_bit(struct gpio_chip *chip, u8 reg,
953a198059SLinus Walleij 			       unsigned offset, bool *bit)
963a198059SLinus Walleij {
972b016d27SLinus Walleij 	struct abx500_pinctrl *pct = gpiochip_get_data(chip);
983a198059SLinus Walleij 	u8 pos = offset % 8;
993a198059SLinus Walleij 	u8 val;
1003a198059SLinus Walleij 	int ret;
1013a198059SLinus Walleij 
1023a198059SLinus Walleij 	reg += offset / 8;
1033a198059SLinus Walleij 	ret = abx500_get_register_interruptible(pct->dev,
1043a198059SLinus Walleij 						AB8500_MISC, reg, &val);
105c2944a9aSDan Carpenter 	if (ret < 0) {
1063a198059SLinus Walleij 		dev_err(pct->dev,
1073a198059SLinus Walleij 			"%s read reg =%x, offset=%x failed (%d)\n",
1083a198059SLinus Walleij 			__func__, reg, offset, ret);
1093a198059SLinus Walleij 		return ret;
1103a198059SLinus Walleij 	}
1113a198059SLinus Walleij 
112c2944a9aSDan Carpenter 	*bit = !!(val & BIT(pos));
113c2944a9aSDan Carpenter 
114c2944a9aSDan Carpenter 	return 0;
115c2944a9aSDan Carpenter }
116c2944a9aSDan Carpenter 
abx500_gpio_set_bits(struct gpio_chip * chip,u8 reg,unsigned offset,int val)1173a198059SLinus Walleij static int abx500_gpio_set_bits(struct gpio_chip *chip, u8 reg,
1183a198059SLinus Walleij 				unsigned offset, int val)
1193a198059SLinus Walleij {
1202b016d27SLinus Walleij 	struct abx500_pinctrl *pct = gpiochip_get_data(chip);
1213a198059SLinus Walleij 	u8 pos = offset % 8;
1223a198059SLinus Walleij 	int ret;
1233a198059SLinus Walleij 
1243a198059SLinus Walleij 	reg += offset / 8;
1253a198059SLinus Walleij 	ret = abx500_mask_and_set_register_interruptible(pct->dev,
1263a198059SLinus Walleij 				AB8500_MISC, reg, BIT(pos), val << pos);
1273a198059SLinus Walleij 	if (ret < 0)
1283a198059SLinus Walleij 		dev_err(pct->dev, "%s write reg, %x offset %x failed (%d)\n",
1293a198059SLinus Walleij 				__func__, reg, offset, ret);
1303a198059SLinus Walleij 
1313a198059SLinus Walleij 	return ret;
1323a198059SLinus Walleij }
1333a198059SLinus Walleij 
1343a198059SLinus Walleij /**
1353a198059SLinus Walleij  * abx500_gpio_get() - Get the particular GPIO value
1363a198059SLinus Walleij  * @chip:	Gpio device
1373a198059SLinus Walleij  * @offset:	GPIO number to read
1383a198059SLinus Walleij  */
abx500_gpio_get(struct gpio_chip * chip,unsigned offset)1393a198059SLinus Walleij static int abx500_gpio_get(struct gpio_chip *chip, unsigned offset)
1403a198059SLinus Walleij {
1412b016d27SLinus Walleij 	struct abx500_pinctrl *pct = gpiochip_get_data(chip);
1423a198059SLinus Walleij 	bool bit;
1433a198059SLinus Walleij 	bool is_out;
1443a198059SLinus Walleij 	u8 gpio_offset = offset - 1;
1453a198059SLinus Walleij 	int ret;
1463a198059SLinus Walleij 
1473a198059SLinus Walleij 	ret = abx500_gpio_get_bit(chip, AB8500_GPIO_DIR1_REG,
1483a198059SLinus Walleij 			gpio_offset, &is_out);
1493a198059SLinus Walleij 	if (ret < 0)
1503a198059SLinus Walleij 		goto out;
1513a198059SLinus Walleij 
1523a198059SLinus Walleij 	if (is_out)
1533a198059SLinus Walleij 		ret = abx500_gpio_get_bit(chip, AB8500_GPIO_OUT1_REG,
1543a198059SLinus Walleij 				gpio_offset, &bit);
1553a198059SLinus Walleij 	else
1563a198059SLinus Walleij 		ret = abx500_gpio_get_bit(chip, AB8500_GPIO_IN1_REG,
1573a198059SLinus Walleij 				gpio_offset, &bit);
1583a198059SLinus Walleij out:
1593a198059SLinus Walleij 	if (ret < 0) {
1603a198059SLinus Walleij 		dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
1613a198059SLinus Walleij 		return ret;
1623a198059SLinus Walleij 	}
1633a198059SLinus Walleij 
1643a198059SLinus Walleij 	return bit;
1653a198059SLinus Walleij }
1663a198059SLinus Walleij 
abx500_gpio_set(struct gpio_chip * chip,unsigned offset,int val)1673a198059SLinus Walleij static void abx500_gpio_set(struct gpio_chip *chip, unsigned offset, int val)
1683a198059SLinus Walleij {
1692b016d27SLinus Walleij 	struct abx500_pinctrl *pct = gpiochip_get_data(chip);
1703a198059SLinus Walleij 	int ret;
1713a198059SLinus Walleij 
1723a198059SLinus Walleij 	ret = abx500_gpio_set_bits(chip, AB8500_GPIO_OUT1_REG, offset, val);
1733a198059SLinus Walleij 	if (ret < 0)
1743a198059SLinus Walleij 		dev_err(pct->dev, "%s write failed (%d)\n", __func__, ret);
1753a198059SLinus Walleij }
1763a198059SLinus Walleij 
abx500_gpio_direction_output(struct gpio_chip * chip,unsigned offset,int val)1773a198059SLinus Walleij static int abx500_gpio_direction_output(struct gpio_chip *chip,
1783a198059SLinus Walleij 					unsigned offset,
1793a198059SLinus Walleij 					int val)
1803a198059SLinus Walleij {
1812b016d27SLinus Walleij 	struct abx500_pinctrl *pct = gpiochip_get_data(chip);
1823a198059SLinus Walleij 	int ret;
1833a198059SLinus Walleij 
1843a198059SLinus Walleij 	/* set direction as output */
1853a198059SLinus Walleij 	ret = abx500_gpio_set_bits(chip,
1863a198059SLinus Walleij 				AB8500_GPIO_DIR1_REG,
1873a198059SLinus Walleij 				offset,
1883a198059SLinus Walleij 				ABX500_GPIO_OUTPUT);
1893a198059SLinus Walleij 	if (ret < 0)
1903a198059SLinus Walleij 		goto out;
1913a198059SLinus Walleij 
1923a198059SLinus Walleij 	/* disable pull down */
1933a198059SLinus Walleij 	ret = abx500_gpio_set_bits(chip,
1943a198059SLinus Walleij 				AB8500_GPIO_PUD1_REG,
1953a198059SLinus Walleij 				offset,
1963a198059SLinus Walleij 				ABX500_GPIO_PULL_NONE);
1973a198059SLinus Walleij 
1983a198059SLinus Walleij out:
1993a198059SLinus Walleij 	if (ret < 0) {
2003a198059SLinus Walleij 		dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
2013a198059SLinus Walleij 		return ret;
2023a198059SLinus Walleij 	}
2033a198059SLinus Walleij 
2043a198059SLinus Walleij 	/* set the output as 1 or 0 */
2053a198059SLinus Walleij 	return abx500_gpio_set_bits(chip, AB8500_GPIO_OUT1_REG, offset, val);
2063a198059SLinus Walleij }
2073a198059SLinus Walleij 
abx500_gpio_direction_input(struct gpio_chip * chip,unsigned offset)2083a198059SLinus Walleij static int abx500_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
2093a198059SLinus Walleij {
2103a198059SLinus Walleij 	/* set the register as input */
2113a198059SLinus Walleij 	return abx500_gpio_set_bits(chip,
2123a198059SLinus Walleij 				AB8500_GPIO_DIR1_REG,
2133a198059SLinus Walleij 				offset,
2143a198059SLinus Walleij 				ABX500_GPIO_INPUT);
2153a198059SLinus Walleij }
2163a198059SLinus Walleij 
abx500_gpio_to_irq(struct gpio_chip * chip,unsigned offset)2173a198059SLinus Walleij static int abx500_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
2183a198059SLinus Walleij {
2192b016d27SLinus Walleij 	struct abx500_pinctrl *pct = gpiochip_get_data(chip);
2203a198059SLinus Walleij 	/* The AB8500 GPIO numbers are off by one */
2213a198059SLinus Walleij 	int gpio = offset + 1;
2223a198059SLinus Walleij 	int hwirq;
2233a198059SLinus Walleij 	int i;
2243a198059SLinus Walleij 
2253a198059SLinus Walleij 	for (i = 0; i < pct->irq_cluster_size; i++) {
2263a198059SLinus Walleij 		struct abx500_gpio_irq_cluster *cluster =
2273a198059SLinus Walleij 			&pct->irq_cluster[i];
2283a198059SLinus Walleij 
2293a198059SLinus Walleij 		if (gpio >= cluster->start && gpio <= cluster->end) {
2303a198059SLinus Walleij 			/*
2313a198059SLinus Walleij 			 * The ABx500 GPIO's associated IRQs are clustered together
2323a198059SLinus Walleij 			 * throughout the interrupt numbers at irregular intervals.
2333a198059SLinus Walleij 			 * To solve this quandry, we have placed the read-in values
2343a198059SLinus Walleij 			 * into the cluster information table.
2353a198059SLinus Walleij 			 */
2363a198059SLinus Walleij 			hwirq = gpio - cluster->start + cluster->to_irq;
2373a198059SLinus Walleij 			return irq_create_mapping(pct->parent->domain, hwirq);
2383a198059SLinus Walleij 		}
2393a198059SLinus Walleij 	}
2403a198059SLinus Walleij 
2413a198059SLinus Walleij 	return -EINVAL;
2423a198059SLinus Walleij }
2433a198059SLinus Walleij 
abx500_set_mode(struct pinctrl_dev * pctldev,struct gpio_chip * chip,unsigned gpio,int alt_setting)2443a198059SLinus Walleij static int abx500_set_mode(struct pinctrl_dev *pctldev, struct gpio_chip *chip,
2453a198059SLinus Walleij 			   unsigned gpio, int alt_setting)
2463a198059SLinus Walleij {
2473a198059SLinus Walleij 	struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
2483a198059SLinus Walleij 	struct alternate_functions af = pct->soc->alternate_functions[gpio];
2493a198059SLinus Walleij 	int ret;
2503a198059SLinus Walleij 	int val;
2513a198059SLinus Walleij 	unsigned offset;
2523a198059SLinus Walleij 
2533a198059SLinus Walleij 	const char *modes[] = {
2543a198059SLinus Walleij 		[ABX500_DEFAULT]	= "default",
2553a198059SLinus Walleij 		[ABX500_ALT_A]		= "altA",
2563a198059SLinus Walleij 		[ABX500_ALT_B]		= "altB",
2573a198059SLinus Walleij 		[ABX500_ALT_C]		= "altC",
2583a198059SLinus Walleij 	};
2593a198059SLinus Walleij 
2603a198059SLinus Walleij 	/* sanity check */
2613a198059SLinus Walleij 	if (((alt_setting == ABX500_ALT_A) && (af.gpiosel_bit == UNUSED)) ||
2623a198059SLinus Walleij 	    ((alt_setting == ABX500_ALT_B) && (af.alt_bit1 == UNUSED)) ||
2633a198059SLinus Walleij 	    ((alt_setting == ABX500_ALT_C) && (af.alt_bit2 == UNUSED))) {
2643a198059SLinus Walleij 		dev_dbg(pct->dev, "pin %d doesn't support %s mode\n", gpio,
2653a198059SLinus Walleij 				modes[alt_setting]);
2663a198059SLinus Walleij 		return -EINVAL;
2673a198059SLinus Walleij 	}
2683a198059SLinus Walleij 
2693a198059SLinus Walleij 	/* on ABx5xx, there is no GPIO0, so adjust the offset */
2703a198059SLinus Walleij 	offset = gpio - 1;
2713a198059SLinus Walleij 
2723a198059SLinus Walleij 	switch (alt_setting) {
2733a198059SLinus Walleij 	case ABX500_DEFAULT:
2743a198059SLinus Walleij 		/*
2753a198059SLinus Walleij 		 * for ABx5xx family, default mode is always selected by
2763a198059SLinus Walleij 		 * writing 0 to GPIOSELx register, except for pins which
2773a198059SLinus Walleij 		 * support at least ALT_B mode, default mode is selected
2783a198059SLinus Walleij 		 * by writing 1 to GPIOSELx register
2793a198059SLinus Walleij 		 */
2803a198059SLinus Walleij 		val = 0;
2813a198059SLinus Walleij 		if (af.alt_bit1 != UNUSED)
2823a198059SLinus Walleij 			val++;
2833a198059SLinus Walleij 
2843a198059SLinus Walleij 		ret = abx500_gpio_set_bits(chip, AB8500_GPIO_SEL1_REG,
2853a198059SLinus Walleij 					   offset, val);
2863a198059SLinus Walleij 		break;
2873a198059SLinus Walleij 
2883a198059SLinus Walleij 	case ABX500_ALT_A:
2893a198059SLinus Walleij 		/*
2903a198059SLinus Walleij 		 * for ABx5xx family, alt_a mode is always selected by
2913a198059SLinus Walleij 		 * writing 1 to GPIOSELx register, except for pins which
2923a198059SLinus Walleij 		 * support at least ALT_B mode, alt_a mode is selected
2933a198059SLinus Walleij 		 * by writing 0 to GPIOSELx register and 0 in ALTFUNC
2943a198059SLinus Walleij 		 * register
2953a198059SLinus Walleij 		 */
2963a198059SLinus Walleij 		if (af.alt_bit1 != UNUSED) {
2973a198059SLinus Walleij 			ret = abx500_gpio_set_bits(chip, AB8500_GPIO_SEL1_REG,
2983a198059SLinus Walleij 					offset, 0);
2993a198059SLinus Walleij 			if (ret < 0)
3003a198059SLinus Walleij 				goto out;
3013a198059SLinus Walleij 
3023a198059SLinus Walleij 			ret = abx500_gpio_set_bits(chip,
3033a198059SLinus Walleij 					AB8500_GPIO_ALTFUN_REG,
3043a198059SLinus Walleij 					af.alt_bit1,
3053a198059SLinus Walleij 					!!(af.alta_val & BIT(0)));
3063a198059SLinus Walleij 			if (ret < 0)
3073a198059SLinus Walleij 				goto out;
3083a198059SLinus Walleij 
3093a198059SLinus Walleij 			if (af.alt_bit2 != UNUSED)
3103a198059SLinus Walleij 				ret = abx500_gpio_set_bits(chip,
3113a198059SLinus Walleij 					AB8500_GPIO_ALTFUN_REG,
3123a198059SLinus Walleij 					af.alt_bit2,
3133a198059SLinus Walleij 					!!(af.alta_val & BIT(1)));
3143a198059SLinus Walleij 		} else
3153a198059SLinus Walleij 			ret = abx500_gpio_set_bits(chip, AB8500_GPIO_SEL1_REG,
3163a198059SLinus Walleij 					offset, 1);
3173a198059SLinus Walleij 		break;
3183a198059SLinus Walleij 
3193a198059SLinus Walleij 	case ABX500_ALT_B:
3203a198059SLinus Walleij 		ret = abx500_gpio_set_bits(chip, AB8500_GPIO_SEL1_REG,
3213a198059SLinus Walleij 				offset, 0);
3223a198059SLinus Walleij 		if (ret < 0)
3233a198059SLinus Walleij 			goto out;
3243a198059SLinus Walleij 
3253a198059SLinus Walleij 		ret = abx500_gpio_set_bits(chip, AB8500_GPIO_ALTFUN_REG,
3263a198059SLinus Walleij 				af.alt_bit1, !!(af.altb_val & BIT(0)));
3273a198059SLinus Walleij 		if (ret < 0)
3283a198059SLinus Walleij 			goto out;
3293a198059SLinus Walleij 
3303a198059SLinus Walleij 		if (af.alt_bit2 != UNUSED)
3313a198059SLinus Walleij 			ret = abx500_gpio_set_bits(chip,
3323a198059SLinus Walleij 					AB8500_GPIO_ALTFUN_REG,
3333a198059SLinus Walleij 					af.alt_bit2,
3343a198059SLinus Walleij 					!!(af.altb_val & BIT(1)));
3353a198059SLinus Walleij 		break;
3363a198059SLinus Walleij 
3373a198059SLinus Walleij 	case ABX500_ALT_C:
3383a198059SLinus Walleij 		ret = abx500_gpio_set_bits(chip, AB8500_GPIO_SEL1_REG,
3393a198059SLinus Walleij 				offset, 0);
3403a198059SLinus Walleij 		if (ret < 0)
3413a198059SLinus Walleij 			goto out;
3423a198059SLinus Walleij 
3433a198059SLinus Walleij 		ret = abx500_gpio_set_bits(chip, AB8500_GPIO_ALTFUN_REG,
3443a198059SLinus Walleij 				af.alt_bit2, !!(af.altc_val & BIT(0)));
3453a198059SLinus Walleij 		if (ret < 0)
3463a198059SLinus Walleij 			goto out;
3473a198059SLinus Walleij 
3483a198059SLinus Walleij 		ret = abx500_gpio_set_bits(chip, AB8500_GPIO_ALTFUN_REG,
3493a198059SLinus Walleij 				af.alt_bit2, !!(af.altc_val & BIT(1)));
3503a198059SLinus Walleij 		break;
3513a198059SLinus Walleij 
3523a198059SLinus Walleij 	default:
353f42cf8d6SMasanari Iida 		dev_dbg(pct->dev, "unknown alt_setting %d\n", alt_setting);
3543a198059SLinus Walleij 
3553a198059SLinus Walleij 		return -EINVAL;
3563a198059SLinus Walleij 	}
3573a198059SLinus Walleij out:
3583a198059SLinus Walleij 	if (ret < 0)
3593a198059SLinus Walleij 		dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
3603a198059SLinus Walleij 
3613a198059SLinus Walleij 	return ret;
3623a198059SLinus Walleij }
3633a198059SLinus Walleij 
36439178bb2SArnd Bergmann #ifdef CONFIG_DEBUG_FS
abx500_get_mode(struct pinctrl_dev * pctldev,struct gpio_chip * chip,unsigned gpio)3653a198059SLinus Walleij static int abx500_get_mode(struct pinctrl_dev *pctldev, struct gpio_chip *chip,
3663a198059SLinus Walleij 			  unsigned gpio)
3673a198059SLinus Walleij {
3683a198059SLinus Walleij 	u8 mode;
3693a198059SLinus Walleij 	bool bit_mode;
3703a198059SLinus Walleij 	bool alt_bit1;
3713a198059SLinus Walleij 	bool alt_bit2;
3723a198059SLinus Walleij 	struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
3733a198059SLinus Walleij 	struct alternate_functions af = pct->soc->alternate_functions[gpio];
3743a198059SLinus Walleij 	/* on ABx5xx, there is no GPIO0, so adjust the offset */
3753a198059SLinus Walleij 	unsigned offset = gpio - 1;
3763a198059SLinus Walleij 	int ret;
3773a198059SLinus Walleij 
3783a198059SLinus Walleij 	/*
3793a198059SLinus Walleij 	 * if gpiosel_bit is set to unused,
3803a198059SLinus Walleij 	 * it means no GPIO or special case
3813a198059SLinus Walleij 	 */
3823a198059SLinus Walleij 	if (af.gpiosel_bit == UNUSED)
3833a198059SLinus Walleij 		return ABX500_DEFAULT;
3843a198059SLinus Walleij 
3853a198059SLinus Walleij 	/* read GpioSelx register */
3863a198059SLinus Walleij 	ret = abx500_gpio_get_bit(chip, AB8500_GPIO_SEL1_REG + (offset / 8),
3873a198059SLinus Walleij 			af.gpiosel_bit, &bit_mode);
3883a198059SLinus Walleij 	if (ret < 0)
3893a198059SLinus Walleij 		goto out;
3903a198059SLinus Walleij 
3913a198059SLinus Walleij 	mode = bit_mode;
3923a198059SLinus Walleij 
3933a198059SLinus Walleij 	/* sanity check */
3943a198059SLinus Walleij 	if ((af.alt_bit1 < UNUSED) || (af.alt_bit1 > 7) ||
3953a198059SLinus Walleij 	    (af.alt_bit2 < UNUSED) || (af.alt_bit2 > 7)) {
3963a198059SLinus Walleij 		dev_err(pct->dev,
3973a198059SLinus Walleij 			"alt_bitX value not in correct range (-1 to 7)\n");
3983a198059SLinus Walleij 		return -EINVAL;
3993a198059SLinus Walleij 	}
4003a198059SLinus Walleij 
4013a198059SLinus Walleij 	/* if alt_bit2 is used, alt_bit1 must be used too */
4023a198059SLinus Walleij 	if ((af.alt_bit2 != UNUSED) && (af.alt_bit1 == UNUSED)) {
4033a198059SLinus Walleij 		dev_err(pct->dev,
4043a198059SLinus Walleij 			"if alt_bit2 is used, alt_bit1 can't be unused\n");
4053a198059SLinus Walleij 		return -EINVAL;
4063a198059SLinus Walleij 	}
4073a198059SLinus Walleij 
4083a198059SLinus Walleij 	/* check if pin use AlternateFunction register */
4093a198059SLinus Walleij 	if ((af.alt_bit1 == UNUSED) && (af.alt_bit2 == UNUSED))
4103a198059SLinus Walleij 		return mode;
4113a198059SLinus Walleij 	/*
4123a198059SLinus Walleij 	 * if pin GPIOSEL bit is set and pin supports alternate function,
4133a198059SLinus Walleij 	 * it means DEFAULT mode
4143a198059SLinus Walleij 	 */
4153a198059SLinus Walleij 	if (mode)
4163a198059SLinus Walleij 		return ABX500_DEFAULT;
4173a198059SLinus Walleij 
4183a198059SLinus Walleij 	/*
4193a198059SLinus Walleij 	 * pin use the AlternatFunction register
4203a198059SLinus Walleij 	 * read alt_bit1 value
4213a198059SLinus Walleij 	 */
4223a198059SLinus Walleij 	ret = abx500_gpio_get_bit(chip, AB8500_GPIO_ALTFUN_REG,
4233a198059SLinus Walleij 			    af.alt_bit1, &alt_bit1);
4243a198059SLinus Walleij 	if (ret < 0)
4253a198059SLinus Walleij 		goto out;
4263a198059SLinus Walleij 
4273a198059SLinus Walleij 	if (af.alt_bit2 != UNUSED) {
4283a198059SLinus Walleij 		/* read alt_bit2 value */
4293a198059SLinus Walleij 		ret = abx500_gpio_get_bit(chip, AB8500_GPIO_ALTFUN_REG,
4303a198059SLinus Walleij 				af.alt_bit2,
4313a198059SLinus Walleij 				&alt_bit2);
4323a198059SLinus Walleij 		if (ret < 0)
4333a198059SLinus Walleij 			goto out;
4343a198059SLinus Walleij 	} else
4353a198059SLinus Walleij 		alt_bit2 = 0;
4363a198059SLinus Walleij 
4373a198059SLinus Walleij 	mode = (alt_bit2 << 1) + alt_bit1;
4383a198059SLinus Walleij 	if (mode == af.alta_val)
4393a198059SLinus Walleij 		return ABX500_ALT_A;
4403a198059SLinus Walleij 	else if (mode == af.altb_val)
4413a198059SLinus Walleij 		return ABX500_ALT_B;
4423a198059SLinus Walleij 	else
4433a198059SLinus Walleij 		return ABX500_ALT_C;
4443a198059SLinus Walleij 
4453a198059SLinus Walleij out:
4463a198059SLinus Walleij 	dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
4473a198059SLinus Walleij 	return ret;
4483a198059SLinus Walleij }
4493a198059SLinus Walleij 
abx500_gpio_dbg_show_one(struct seq_file * s,struct pinctrl_dev * pctldev,struct gpio_chip * chip,unsigned offset,unsigned gpio)4503a198059SLinus Walleij static void abx500_gpio_dbg_show_one(struct seq_file *s,
4513a198059SLinus Walleij 				     struct pinctrl_dev *pctldev,
4523a198059SLinus Walleij 				     struct gpio_chip *chip,
4533a198059SLinus Walleij 				     unsigned offset, unsigned gpio)
4543a198059SLinus Walleij {
4553a198059SLinus Walleij 	struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
4563a198059SLinus Walleij 	const char *label = gpiochip_is_requested(chip, offset - 1);
4573a198059SLinus Walleij 	u8 gpio_offset = offset - 1;
4583a198059SLinus Walleij 	int mode = -1;
4593a198059SLinus Walleij 	bool is_out;
4603a198059SLinus Walleij 	bool pd;
4613a198059SLinus Walleij 	int ret;
4623a198059SLinus Walleij 
4633a198059SLinus Walleij 	const char *modes[] = {
4643a198059SLinus Walleij 		[ABX500_DEFAULT]	= "default",
4653a198059SLinus Walleij 		[ABX500_ALT_A]		= "altA",
4663a198059SLinus Walleij 		[ABX500_ALT_B]		= "altB",
4673a198059SLinus Walleij 		[ABX500_ALT_C]		= "altC",
4683a198059SLinus Walleij 	};
4693a198059SLinus Walleij 
4703a198059SLinus Walleij 	const char *pull_up_down[] = {
4713a198059SLinus Walleij 		[ABX500_GPIO_PULL_DOWN]		= "pull down",
4723a198059SLinus Walleij 		[ABX500_GPIO_PULL_NONE]		= "pull none",
4733a198059SLinus Walleij 		[ABX500_GPIO_PULL_NONE + 1]	= "pull none",
4743a198059SLinus Walleij 		[ABX500_GPIO_PULL_UP]		= "pull up",
4753a198059SLinus Walleij 	};
4763a198059SLinus Walleij 
4773a198059SLinus Walleij 	ret = abx500_gpio_get_bit(chip, AB8500_GPIO_DIR1_REG,
4783a198059SLinus Walleij 			gpio_offset, &is_out);
4793a198059SLinus Walleij 	if (ret < 0)
4803a198059SLinus Walleij 		goto out;
4813a198059SLinus Walleij 
4823a198059SLinus Walleij 	seq_printf(s, " gpio-%-3d (%-20.20s) %-3s",
4833a198059SLinus Walleij 		   gpio, label ?: "(none)",
4843a198059SLinus Walleij 		   is_out ? "out" : "in ");
4853a198059SLinus Walleij 
4863a198059SLinus Walleij 	if (!is_out) {
4873a198059SLinus Walleij 		ret = abx500_gpio_get_bit(chip, AB8500_GPIO_PUD1_REG,
4883a198059SLinus Walleij 				gpio_offset, &pd);
4893a198059SLinus Walleij 		if (ret < 0)
4903a198059SLinus Walleij 			goto out;
4913a198059SLinus Walleij 
4923a198059SLinus Walleij 		seq_printf(s, " %-9s", pull_up_down[pd]);
4933a198059SLinus Walleij 	} else
4943a198059SLinus Walleij 		seq_printf(s, " %-9s", chip->get(chip, offset) ? "hi" : "lo");
4953a198059SLinus Walleij 
4963a198059SLinus Walleij 	mode = abx500_get_mode(pctldev, chip, offset);
4973a198059SLinus Walleij 
4983a198059SLinus Walleij 	seq_printf(s, " %s", (mode < 0) ? "unknown" : modes[mode]);
4993a198059SLinus Walleij 
5003a198059SLinus Walleij out:
5013a198059SLinus Walleij 	if (ret < 0)
5023a198059SLinus Walleij 		dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
5033a198059SLinus Walleij }
5043a198059SLinus Walleij 
abx500_gpio_dbg_show(struct seq_file * s,struct gpio_chip * chip)5053a198059SLinus Walleij static void abx500_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
5063a198059SLinus Walleij {
5073a198059SLinus Walleij 	unsigned i;
5083a198059SLinus Walleij 	unsigned gpio = chip->base;
5092b016d27SLinus Walleij 	struct abx500_pinctrl *pct = gpiochip_get_data(chip);
5103a198059SLinus Walleij 	struct pinctrl_dev *pctldev = pct->pctldev;
5113a198059SLinus Walleij 
5123a198059SLinus Walleij 	for (i = 0; i < chip->ngpio; i++, gpio++) {
5133a198059SLinus Walleij 		/* On AB8500, there is no GPIO0, the first is the GPIO 1 */
5143a198059SLinus Walleij 		abx500_gpio_dbg_show_one(s, pctldev, chip, i + 1, gpio);
51502c9d285SMarkus Elfring 		seq_putc(s, '\n');
5163a198059SLinus Walleij 	}
5173a198059SLinus Walleij }
5183a198059SLinus Walleij 
5193a198059SLinus Walleij #else
abx500_gpio_dbg_show_one(struct seq_file * s,struct pinctrl_dev * pctldev,struct gpio_chip * chip,unsigned offset,unsigned gpio)5203a198059SLinus Walleij static inline void abx500_gpio_dbg_show_one(struct seq_file *s,
5213a198059SLinus Walleij 					    struct pinctrl_dev *pctldev,
5223a198059SLinus Walleij 					    struct gpio_chip *chip,
5233a198059SLinus Walleij 					    unsigned offset, unsigned gpio)
5243a198059SLinus Walleij {
5253a198059SLinus Walleij }
5263a198059SLinus Walleij #define abx500_gpio_dbg_show	NULL
5273a198059SLinus Walleij #endif
5283a198059SLinus Walleij 
529d3761023SGustavo A. R. Silva static const struct gpio_chip abx500gpio_chip = {
5303a198059SLinus Walleij 	.label			= "abx500-gpio",
5313a198059SLinus Walleij 	.owner			= THIS_MODULE,
53298c85d58SJonas Gorski 	.request		= gpiochip_generic_request,
53398c85d58SJonas Gorski 	.free			= gpiochip_generic_free,
5343a198059SLinus Walleij 	.direction_input	= abx500_gpio_direction_input,
5353a198059SLinus Walleij 	.get			= abx500_gpio_get,
5363a198059SLinus Walleij 	.direction_output	= abx500_gpio_direction_output,
5373a198059SLinus Walleij 	.set			= abx500_gpio_set,
5383a198059SLinus Walleij 	.to_irq			= abx500_gpio_to_irq,
5393a198059SLinus Walleij 	.dbg_show		= abx500_gpio_dbg_show,
5403a198059SLinus Walleij };
5413a198059SLinus Walleij 
abx500_pmx_get_funcs_cnt(struct pinctrl_dev * pctldev)5423a198059SLinus Walleij static int abx500_pmx_get_funcs_cnt(struct pinctrl_dev *pctldev)
5433a198059SLinus Walleij {
5443a198059SLinus Walleij 	struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
5453a198059SLinus Walleij 
5463a198059SLinus Walleij 	return pct->soc->nfunctions;
5473a198059SLinus Walleij }
5483a198059SLinus Walleij 
abx500_pmx_get_func_name(struct pinctrl_dev * pctldev,unsigned function)5493a198059SLinus Walleij static const char *abx500_pmx_get_func_name(struct pinctrl_dev *pctldev,
5503a198059SLinus Walleij 					 unsigned function)
5513a198059SLinus Walleij {
5523a198059SLinus Walleij 	struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
5533a198059SLinus Walleij 
5543a198059SLinus Walleij 	return pct->soc->functions[function].name;
5553a198059SLinus Walleij }
5563a198059SLinus Walleij 
abx500_pmx_get_func_groups(struct pinctrl_dev * pctldev,unsigned function,const char * const ** groups,unsigned * const num_groups)5573a198059SLinus Walleij static int abx500_pmx_get_func_groups(struct pinctrl_dev *pctldev,
5583a198059SLinus Walleij 				      unsigned function,
5593a198059SLinus Walleij 				      const char * const **groups,
5603a198059SLinus Walleij 				      unsigned * const num_groups)
5613a198059SLinus Walleij {
5623a198059SLinus Walleij 	struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
5633a198059SLinus Walleij 
5643a198059SLinus Walleij 	*groups = pct->soc->functions[function].groups;
5653a198059SLinus Walleij 	*num_groups = pct->soc->functions[function].ngroups;
5663a198059SLinus Walleij 
5673a198059SLinus Walleij 	return 0;
5683a198059SLinus Walleij }
5693a198059SLinus Walleij 
abx500_pmx_set(struct pinctrl_dev * pctldev,unsigned function,unsigned group)57003e9f0caSLinus Walleij static int abx500_pmx_set(struct pinctrl_dev *pctldev, unsigned function,
5713a198059SLinus Walleij 			  unsigned group)
5723a198059SLinus Walleij {
5733a198059SLinus Walleij 	struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
5743a198059SLinus Walleij 	struct gpio_chip *chip = &pct->chip;
5753a198059SLinus Walleij 	const struct abx500_pingroup *g;
5763a198059SLinus Walleij 	int i;
5773a198059SLinus Walleij 	int ret = 0;
5783a198059SLinus Walleij 
5793a198059SLinus Walleij 	g = &pct->soc->groups[group];
5803a198059SLinus Walleij 	if (g->altsetting < 0)
5813a198059SLinus Walleij 		return -EINVAL;
5823a198059SLinus Walleij 
5833a198059SLinus Walleij 	dev_dbg(pct->dev, "enable group %s, %u pins\n", g->name, g->npins);
5843a198059SLinus Walleij 
5853a198059SLinus Walleij 	for (i = 0; i < g->npins; i++) {
5863a198059SLinus Walleij 		dev_dbg(pct->dev, "setting pin %d to altsetting %d\n",
5873a198059SLinus Walleij 			g->pins[i], g->altsetting);
5883a198059SLinus Walleij 
5893a198059SLinus Walleij 		ret = abx500_set_mode(pctldev, chip, g->pins[i], g->altsetting);
5903a198059SLinus Walleij 	}
5913a198059SLinus Walleij 
5923a198059SLinus Walleij 	if (ret < 0)
5933a198059SLinus Walleij 		dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
5943a198059SLinus Walleij 
5953a198059SLinus Walleij 	return ret;
5963a198059SLinus Walleij }
5973a198059SLinus Walleij 
abx500_gpio_request_enable(struct pinctrl_dev * pctldev,struct pinctrl_gpio_range * range,unsigned offset)5983a198059SLinus Walleij static int abx500_gpio_request_enable(struct pinctrl_dev *pctldev,
5993a198059SLinus Walleij 			       struct pinctrl_gpio_range *range,
6003a198059SLinus Walleij 			       unsigned offset)
6013a198059SLinus Walleij {
6023a198059SLinus Walleij 	struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
6033a198059SLinus Walleij 	const struct abx500_pinrange *p;
6043a198059SLinus Walleij 	int ret;
6053a198059SLinus Walleij 	int i;
6063a198059SLinus Walleij 
6073a198059SLinus Walleij 	/*
6083a198059SLinus Walleij 	 * Different ranges have different ways to enable GPIO function on a
6093a198059SLinus Walleij 	 * pin, so refer back to our local range type, where we handily define
6103a198059SLinus Walleij 	 * what altfunc enables GPIO for a certain pin.
6113a198059SLinus Walleij 	 */
6123a198059SLinus Walleij 	for (i = 0; i < pct->soc->gpio_num_ranges; i++) {
6133a198059SLinus Walleij 		p = &pct->soc->gpio_ranges[i];
6143a198059SLinus Walleij 		if ((offset >= p->offset) &&
6153a198059SLinus Walleij 		    (offset < (p->offset + p->npins)))
6163a198059SLinus Walleij 		  break;
6173a198059SLinus Walleij 	}
6183a198059SLinus Walleij 
6193a198059SLinus Walleij 	if (i == pct->soc->gpio_num_ranges) {
6203a198059SLinus Walleij 		dev_err(pct->dev, "%s failed to locate range\n", __func__);
6213a198059SLinus Walleij 		return -ENODEV;
6223a198059SLinus Walleij 	}
6233a198059SLinus Walleij 
6243a198059SLinus Walleij 	dev_dbg(pct->dev, "enable GPIO by altfunc %d at gpio %d\n",
6253a198059SLinus Walleij 		p->altfunc, offset);
6263a198059SLinus Walleij 
6273a198059SLinus Walleij 	ret = abx500_set_mode(pct->pctldev, &pct->chip,
6283a198059SLinus Walleij 			      offset, p->altfunc);
6293a198059SLinus Walleij 	if (ret < 0)
6303a198059SLinus Walleij 		dev_err(pct->dev, "%s setting altfunc failed\n", __func__);
6313a198059SLinus Walleij 
6323a198059SLinus Walleij 	return ret;
6333a198059SLinus Walleij }
6343a198059SLinus Walleij 
abx500_gpio_disable_free(struct pinctrl_dev * pctldev,struct pinctrl_gpio_range * range,unsigned offset)6353a198059SLinus Walleij static void abx500_gpio_disable_free(struct pinctrl_dev *pctldev,
6363a198059SLinus Walleij 				     struct pinctrl_gpio_range *range,
6373a198059SLinus Walleij 				     unsigned offset)
6383a198059SLinus Walleij {
6393a198059SLinus Walleij }
6403a198059SLinus Walleij 
6413a198059SLinus Walleij static const struct pinmux_ops abx500_pinmux_ops = {
6423a198059SLinus Walleij 	.get_functions_count = abx500_pmx_get_funcs_cnt,
6433a198059SLinus Walleij 	.get_function_name = abx500_pmx_get_func_name,
6443a198059SLinus Walleij 	.get_function_groups = abx500_pmx_get_func_groups,
64503e9f0caSLinus Walleij 	.set_mux = abx500_pmx_set,
6463a198059SLinus Walleij 	.gpio_request_enable = abx500_gpio_request_enable,
6473a198059SLinus Walleij 	.gpio_disable_free = abx500_gpio_disable_free,
6483a198059SLinus Walleij };
6493a198059SLinus Walleij 
abx500_get_groups_cnt(struct pinctrl_dev * pctldev)6503a198059SLinus Walleij static int abx500_get_groups_cnt(struct pinctrl_dev *pctldev)
6513a198059SLinus Walleij {
6523a198059SLinus Walleij 	struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
6533a198059SLinus Walleij 
6543a198059SLinus Walleij 	return pct->soc->ngroups;
6553a198059SLinus Walleij }
6563a198059SLinus Walleij 
abx500_get_group_name(struct pinctrl_dev * pctldev,unsigned selector)6573a198059SLinus Walleij static const char *abx500_get_group_name(struct pinctrl_dev *pctldev,
6583a198059SLinus Walleij 					 unsigned selector)
6593a198059SLinus Walleij {
6603a198059SLinus Walleij 	struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
6613a198059SLinus Walleij 
6623a198059SLinus Walleij 	return pct->soc->groups[selector].name;
6633a198059SLinus Walleij }
6643a198059SLinus Walleij 
abx500_get_group_pins(struct pinctrl_dev * pctldev,unsigned selector,const unsigned ** pins,unsigned * num_pins)6653a198059SLinus Walleij static int abx500_get_group_pins(struct pinctrl_dev *pctldev,
6663a198059SLinus Walleij 				 unsigned selector,
6673a198059SLinus Walleij 				 const unsigned **pins,
6683a198059SLinus Walleij 				 unsigned *num_pins)
6693a198059SLinus Walleij {
6703a198059SLinus Walleij 	struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
6713a198059SLinus Walleij 
6723a198059SLinus Walleij 	*pins = pct->soc->groups[selector].pins;
6733a198059SLinus Walleij 	*num_pins = pct->soc->groups[selector].npins;
6743a198059SLinus Walleij 
6753a198059SLinus Walleij 	return 0;
6763a198059SLinus Walleij }
6773a198059SLinus Walleij 
abx500_pin_dbg_show(struct pinctrl_dev * pctldev,struct seq_file * s,unsigned offset)6783a198059SLinus Walleij static void abx500_pin_dbg_show(struct pinctrl_dev *pctldev,
6793a198059SLinus Walleij 				struct seq_file *s, unsigned offset)
6803a198059SLinus Walleij {
6813a198059SLinus Walleij 	struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
6823a198059SLinus Walleij 	struct gpio_chip *chip = &pct->chip;
6833a198059SLinus Walleij 
6843a198059SLinus Walleij 	abx500_gpio_dbg_show_one(s, pctldev, chip, offset,
6853a198059SLinus Walleij 				 chip->base + offset - 1);
6863a198059SLinus Walleij }
6873a198059SLinus Walleij 
abx500_dt_add_map_mux(struct pinctrl_map ** map,unsigned * reserved_maps,unsigned * num_maps,const char * group,const char * function)6883a198059SLinus Walleij static int abx500_dt_add_map_mux(struct pinctrl_map **map,
6893a198059SLinus Walleij 		unsigned *reserved_maps,
6903a198059SLinus Walleij 		unsigned *num_maps, const char *group,
6913a198059SLinus Walleij 		const char *function)
6923a198059SLinus Walleij {
6933a198059SLinus Walleij 	if (*num_maps == *reserved_maps)
6943a198059SLinus Walleij 		return -ENOSPC;
6953a198059SLinus Walleij 
6963a198059SLinus Walleij 	(*map)[*num_maps].type = PIN_MAP_TYPE_MUX_GROUP;
6973a198059SLinus Walleij 	(*map)[*num_maps].data.mux.group = group;
6983a198059SLinus Walleij 	(*map)[*num_maps].data.mux.function = function;
6993a198059SLinus Walleij 	(*num_maps)++;
7003a198059SLinus Walleij 
7013a198059SLinus Walleij 	return 0;
7023a198059SLinus Walleij }
7033a198059SLinus Walleij 
abx500_dt_add_map_configs(struct pinctrl_map ** map,unsigned * reserved_maps,unsigned * num_maps,const char * group,unsigned long * configs,unsigned num_configs)7043a198059SLinus Walleij static int abx500_dt_add_map_configs(struct pinctrl_map **map,
7053a198059SLinus Walleij 		unsigned *reserved_maps,
7063a198059SLinus Walleij 		unsigned *num_maps, const char *group,
7073a198059SLinus Walleij 		unsigned long *configs, unsigned num_configs)
7083a198059SLinus Walleij {
7093a198059SLinus Walleij 	unsigned long *dup_configs;
7103a198059SLinus Walleij 
7113a198059SLinus Walleij 	if (*num_maps == *reserved_maps)
7123a198059SLinus Walleij 		return -ENOSPC;
7133a198059SLinus Walleij 
7143a198059SLinus Walleij 	dup_configs = kmemdup(configs, num_configs * sizeof(*dup_configs),
7153a198059SLinus Walleij 			      GFP_KERNEL);
7163a198059SLinus Walleij 	if (!dup_configs)
7173a198059SLinus Walleij 		return -ENOMEM;
7183a198059SLinus Walleij 
7193a198059SLinus Walleij 	(*map)[*num_maps].type = PIN_MAP_TYPE_CONFIGS_PIN;
7203a198059SLinus Walleij 
7213a198059SLinus Walleij 	(*map)[*num_maps].data.configs.group_or_pin = group;
7223a198059SLinus Walleij 	(*map)[*num_maps].data.configs.configs = dup_configs;
7233a198059SLinus Walleij 	(*map)[*num_maps].data.configs.num_configs = num_configs;
7243a198059SLinus Walleij 	(*num_maps)++;
7253a198059SLinus Walleij 
7263a198059SLinus Walleij 	return 0;
7273a198059SLinus Walleij }
7283a198059SLinus Walleij 
abx500_find_pin_name(struct pinctrl_dev * pctldev,const char * pin_name)7293a198059SLinus Walleij static const char *abx500_find_pin_name(struct pinctrl_dev *pctldev,
7303a198059SLinus Walleij 					const char *pin_name)
7313a198059SLinus Walleij {
7323a198059SLinus Walleij 	int i, pin_number;
7333a198059SLinus Walleij 	struct abx500_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
7343a198059SLinus Walleij 
7353a198059SLinus Walleij 	if (sscanf((char *)pin_name, "GPIO%d", &pin_number) == 1)
7363a198059SLinus Walleij 		for (i = 0; i < npct->soc->npins; i++)
7373a198059SLinus Walleij 			if (npct->soc->pins[i].number == pin_number)
7383a198059SLinus Walleij 				return npct->soc->pins[i].name;
7393a198059SLinus Walleij 	return NULL;
7403a198059SLinus Walleij }
7413a198059SLinus Walleij 
abx500_dt_subnode_to_map(struct pinctrl_dev * pctldev,struct device_node * np,struct pinctrl_map ** map,unsigned * reserved_maps,unsigned * num_maps)7423a198059SLinus Walleij static int abx500_dt_subnode_to_map(struct pinctrl_dev *pctldev,
7433a198059SLinus Walleij 		struct device_node *np,
7443a198059SLinus Walleij 		struct pinctrl_map **map,
7453a198059SLinus Walleij 		unsigned *reserved_maps,
7463a198059SLinus Walleij 		unsigned *num_maps)
7473a198059SLinus Walleij {
7483a198059SLinus Walleij 	int ret;
7493a198059SLinus Walleij 	const char *function = NULL;
7503a198059SLinus Walleij 	unsigned long *configs;
7513a198059SLinus Walleij 	unsigned int nconfigs = 0;
7523a198059SLinus Walleij 	struct property *prop;
7533a198059SLinus Walleij 
75451d39936SLinus Walleij 	ret = of_property_read_string(np, "function", &function);
755259145feSLinus Walleij 	if (ret >= 0) {
75651d39936SLinus Walleij 		const char *group;
75751d39936SLinus Walleij 
75851d39936SLinus Walleij 		ret = of_property_count_strings(np, "groups");
759259145feSLinus Walleij 		if (ret < 0)
760259145feSLinus Walleij 			goto exit;
761259145feSLinus Walleij 
762259145feSLinus Walleij 		ret = pinctrl_utils_reserve_map(pctldev, map, reserved_maps,
763259145feSLinus Walleij 						num_maps, ret);
764259145feSLinus Walleij 		if (ret < 0)
765259145feSLinus Walleij 			goto exit;
766259145feSLinus Walleij 
76751d39936SLinus Walleij 		of_property_for_each_string(np, "groups", prop, group) {
768259145feSLinus Walleij 			ret = abx500_dt_add_map_mux(map, reserved_maps,
769259145feSLinus Walleij 					num_maps, group, function);
770259145feSLinus Walleij 			if (ret < 0)
771259145feSLinus Walleij 				goto exit;
772259145feSLinus Walleij 		}
773259145feSLinus Walleij 	}
7743a198059SLinus Walleij 
775dd4d01f7SSoren Brinkmann 	ret = pinconf_generic_parse_dt_config(np, pctldev, &configs, &nconfigs);
776eea11b0bSLinus Walleij 	if (nconfigs) {
77751d39936SLinus Walleij 		const char *gpio_name;
77851d39936SLinus Walleij 		const char *pin;
77951d39936SLinus Walleij 
7800564f7d9SLinus Walleij 		ret = of_property_count_strings(np, "pins");
7813a198059SLinus Walleij 		if (ret < 0)
7823a198059SLinus Walleij 			goto exit;
7833a198059SLinus Walleij 
784259145feSLinus Walleij 		ret = pinctrl_utils_reserve_map(pctldev, map,
785259145feSLinus Walleij 						reserved_maps,
786259145feSLinus Walleij 						num_maps, ret);
7873a198059SLinus Walleij 		if (ret < 0)
7883a198059SLinus Walleij 			goto exit;
7893a198059SLinus Walleij 
7900564f7d9SLinus Walleij 		of_property_for_each_string(np, "pins", prop, pin) {
79151d39936SLinus Walleij 			gpio_name = abx500_find_pin_name(pctldev, pin);
7923a198059SLinus Walleij 
7933a198059SLinus Walleij 			ret = abx500_dt_add_map_configs(map, reserved_maps,
7943a198059SLinus Walleij 					num_maps, gpio_name, configs, 1);
7953a198059SLinus Walleij 			if (ret < 0)
7963a198059SLinus Walleij 				goto exit;
7973a198059SLinus Walleij 		}
7983a198059SLinus Walleij 	}
799259145feSLinus Walleij 
8003a198059SLinus Walleij exit:
8013a198059SLinus Walleij 	return ret;
8023a198059SLinus Walleij }
8033a198059SLinus Walleij 
abx500_dt_node_to_map(struct pinctrl_dev * pctldev,struct device_node * np_config,struct pinctrl_map ** map,unsigned * num_maps)8043a198059SLinus Walleij static int abx500_dt_node_to_map(struct pinctrl_dev *pctldev,
8053a198059SLinus Walleij 				 struct device_node *np_config,
8063a198059SLinus Walleij 				 struct pinctrl_map **map, unsigned *num_maps)
8073a198059SLinus Walleij {
8083a198059SLinus Walleij 	unsigned reserved_maps;
8093a198059SLinus Walleij 	struct device_node *np;
8103a198059SLinus Walleij 	int ret;
8113a198059SLinus Walleij 
8123a198059SLinus Walleij 	reserved_maps = 0;
8133a198059SLinus Walleij 	*map = NULL;
8143a198059SLinus Walleij 	*num_maps = 0;
8153a198059SLinus Walleij 
8163a198059SLinus Walleij 	for_each_child_of_node(np_config, np) {
8173a198059SLinus Walleij 		ret = abx500_dt_subnode_to_map(pctldev, np, map,
8183a198059SLinus Walleij 				&reserved_maps, num_maps);
8193a198059SLinus Walleij 		if (ret < 0) {
820d32f7fd3SIrina Tirdea 			pinctrl_utils_free_map(pctldev, *map, *num_maps);
821f4524447SNishka Dasgupta 			of_node_put(np);
8223a198059SLinus Walleij 			return ret;
8233a198059SLinus Walleij 		}
8243a198059SLinus Walleij 	}
8253a198059SLinus Walleij 
8263a198059SLinus Walleij 	return 0;
8273a198059SLinus Walleij }
8283a198059SLinus Walleij 
8293a198059SLinus Walleij static const struct pinctrl_ops abx500_pinctrl_ops = {
8303a198059SLinus Walleij 	.get_groups_count = abx500_get_groups_cnt,
8313a198059SLinus Walleij 	.get_group_name = abx500_get_group_name,
8323a198059SLinus Walleij 	.get_group_pins = abx500_get_group_pins,
8333a198059SLinus Walleij 	.pin_dbg_show = abx500_pin_dbg_show,
8343a198059SLinus Walleij 	.dt_node_to_map = abx500_dt_node_to_map,
835d32f7fd3SIrina Tirdea 	.dt_free_map = pinctrl_utils_free_map,
8363a198059SLinus Walleij };
8373a198059SLinus Walleij 
abx500_pin_config_get(struct pinctrl_dev * pctldev,unsigned pin,unsigned long * config)8383a198059SLinus Walleij static int abx500_pin_config_get(struct pinctrl_dev *pctldev,
8393a198059SLinus Walleij 			  unsigned pin,
8403a198059SLinus Walleij 			  unsigned long *config)
8413a198059SLinus Walleij {
8423a198059SLinus Walleij 	return -ENOSYS;
8433a198059SLinus Walleij }
8443a198059SLinus Walleij 
abx500_pin_config_set(struct pinctrl_dev * pctldev,unsigned pin,unsigned long * configs,unsigned num_configs)8453a198059SLinus Walleij static int abx500_pin_config_set(struct pinctrl_dev *pctldev,
8463a198059SLinus Walleij 			  unsigned pin,
8473a198059SLinus Walleij 			  unsigned long *configs,
8483a198059SLinus Walleij 			  unsigned num_configs)
8493a198059SLinus Walleij {
8503a198059SLinus Walleij 	struct abx500_pinctrl *pct = pinctrl_dev_get_drvdata(pctldev);
8513a198059SLinus Walleij 	struct gpio_chip *chip = &pct->chip;
8523a198059SLinus Walleij 	unsigned offset;
8533a198059SLinus Walleij 	int ret = -EINVAL;
8543a198059SLinus Walleij 	int i;
8553a198059SLinus Walleij 	enum pin_config_param param;
8563a198059SLinus Walleij 	enum pin_config_param argument;
8573a198059SLinus Walleij 
8583a198059SLinus Walleij 	for (i = 0; i < num_configs; i++) {
8593a198059SLinus Walleij 		param = pinconf_to_config_param(configs[i]);
8603a198059SLinus Walleij 		argument = pinconf_to_config_argument(configs[i]);
8613a198059SLinus Walleij 
86258383c78SLinus Walleij 		dev_dbg(chip->parent, "pin %d [%#lx]: %s %s\n",
8633a198059SLinus Walleij 			pin, configs[i],
8643a198059SLinus Walleij 			(param == PIN_CONFIG_OUTPUT) ? "output " : "input",
8653a198059SLinus Walleij 			(param == PIN_CONFIG_OUTPUT) ?
8663a198059SLinus Walleij 			(argument ? "high" : "low") :
8673a198059SLinus Walleij 			(argument ? "pull up" : "pull down"));
8683a198059SLinus Walleij 
8693a198059SLinus Walleij 		/* on ABx500, there is no GPIO0, so adjust the offset */
8703a198059SLinus Walleij 		offset = pin - 1;
8713a198059SLinus Walleij 
8723a198059SLinus Walleij 		switch (param) {
8733a198059SLinus Walleij 		case PIN_CONFIG_BIAS_DISABLE:
8743a198059SLinus Walleij 			ret = abx500_gpio_direction_input(chip, offset);
8753a198059SLinus Walleij 			if (ret < 0)
8763a198059SLinus Walleij 				goto out;
877b6d09f78SLinus Walleij 
8783a198059SLinus Walleij 			/* Chip only supports pull down */
8793a198059SLinus Walleij 			ret = abx500_gpio_set_bits(chip,
8803a198059SLinus Walleij 				AB8500_GPIO_PUD1_REG, offset,
8813a198059SLinus Walleij 				ABX500_GPIO_PULL_NONE);
8823a198059SLinus Walleij 			break;
8833a198059SLinus Walleij 
8843a198059SLinus Walleij 		case PIN_CONFIG_BIAS_PULL_DOWN:
8853a198059SLinus Walleij 			ret = abx500_gpio_direction_input(chip, offset);
8863a198059SLinus Walleij 			if (ret < 0)
8873a198059SLinus Walleij 				goto out;
8883a198059SLinus Walleij 			/*
8893a198059SLinus Walleij 			 * if argument = 1 set the pull down
8903a198059SLinus Walleij 			 * else clear the pull down
891b6d09f78SLinus Walleij 			 * Chip only supports pull down
8923a198059SLinus Walleij 			 */
8933a198059SLinus Walleij 			ret = abx500_gpio_set_bits(chip,
8943a198059SLinus Walleij 			AB8500_GPIO_PUD1_REG,
8953a198059SLinus Walleij 				offset,
8963a198059SLinus Walleij 				argument ? ABX500_GPIO_PULL_DOWN :
8973a198059SLinus Walleij 				ABX500_GPIO_PULL_NONE);
8983a198059SLinus Walleij 			break;
8993a198059SLinus Walleij 
9003a198059SLinus Walleij 		case PIN_CONFIG_BIAS_PULL_UP:
9013a198059SLinus Walleij 			ret = abx500_gpio_direction_input(chip, offset);
9023a198059SLinus Walleij 			if (ret < 0)
9033a198059SLinus Walleij 				goto out;
9043a198059SLinus Walleij 			/*
9053a198059SLinus Walleij 			 * if argument = 1 set the pull up
9063a198059SLinus Walleij 			 * else clear the pull up
9073a198059SLinus Walleij 			 */
9083a198059SLinus Walleij 			ret = abx500_gpio_direction_input(chip, offset);
9093a198059SLinus Walleij 			break;
9103a198059SLinus Walleij 
9113a198059SLinus Walleij 		case PIN_CONFIG_OUTPUT:
9123a198059SLinus Walleij 			ret = abx500_gpio_direction_output(chip, offset,
9133a198059SLinus Walleij 				argument);
9143a198059SLinus Walleij 			break;
9153a198059SLinus Walleij 
9163a198059SLinus Walleij 		default:
91758383c78SLinus Walleij 			dev_err(chip->parent,
91858383c78SLinus Walleij 				"illegal configuration requested\n");
9193a198059SLinus Walleij 		}
9203a198059SLinus Walleij 	} /* for each config */
9213a198059SLinus Walleij out:
9223a198059SLinus Walleij 	if (ret < 0)
9233a198059SLinus Walleij 		dev_err(pct->dev, "%s failed (%d)\n", __func__, ret);
9243a198059SLinus Walleij 
9253a198059SLinus Walleij 	return ret;
9263a198059SLinus Walleij }
9273a198059SLinus Walleij 
9283a198059SLinus Walleij static const struct pinconf_ops abx500_pinconf_ops = {
9293a198059SLinus Walleij 	.pin_config_get = abx500_pin_config_get,
9303a198059SLinus Walleij 	.pin_config_set = abx500_pin_config_set,
93171ca917aSLinus Walleij 	.is_generic = true,
9323a198059SLinus Walleij };
9333a198059SLinus Walleij 
9343a198059SLinus Walleij static struct pinctrl_desc abx500_pinctrl_desc = {
9353a198059SLinus Walleij 	.name = "pinctrl-abx500",
9363a198059SLinus Walleij 	.pctlops = &abx500_pinctrl_ops,
9373a198059SLinus Walleij 	.pmxops = &abx500_pinmux_ops,
9383a198059SLinus Walleij 	.confops = &abx500_pinconf_ops,
9393a198059SLinus Walleij 	.owner = THIS_MODULE,
9403a198059SLinus Walleij };
9413a198059SLinus Walleij 
abx500_get_gpio_num(struct abx500_pinctrl_soc_data * soc)9423a198059SLinus Walleij static int abx500_get_gpio_num(struct abx500_pinctrl_soc_data *soc)
9433a198059SLinus Walleij {
9443a198059SLinus Walleij 	unsigned int lowest = 0;
9453a198059SLinus Walleij 	unsigned int highest = 0;
9463a198059SLinus Walleij 	unsigned int npins = 0;
9473a198059SLinus Walleij 	int i;
9483a198059SLinus Walleij 
9493a198059SLinus Walleij 	/*
9503a198059SLinus Walleij 	 * Compute number of GPIOs from the last SoC gpio range descriptors
9513a198059SLinus Walleij 	 * These ranges may include "holes" but the GPIO number space shall
9523a198059SLinus Walleij 	 * still be homogeneous, so we need to detect and account for any
9533a198059SLinus Walleij 	 * such holes so that these are included in the number of GPIO pins.
9543a198059SLinus Walleij 	 */
9553a198059SLinus Walleij 	for (i = 0; i < soc->gpio_num_ranges; i++) {
9563a198059SLinus Walleij 		unsigned gstart;
9573a198059SLinus Walleij 		unsigned gend;
9583a198059SLinus Walleij 		const struct abx500_pinrange *p;
9593a198059SLinus Walleij 
9603a198059SLinus Walleij 		p = &soc->gpio_ranges[i];
9613a198059SLinus Walleij 		gstart = p->offset;
9623a198059SLinus Walleij 		gend = p->offset + p->npins - 1;
9633a198059SLinus Walleij 
9643a198059SLinus Walleij 		if (i == 0) {
9653a198059SLinus Walleij 			/* First iteration, set start values */
9663a198059SLinus Walleij 			lowest = gstart;
9673a198059SLinus Walleij 			highest = gend;
9683a198059SLinus Walleij 		} else {
9693a198059SLinus Walleij 			if (gstart < lowest)
9703a198059SLinus Walleij 				lowest = gstart;
9713a198059SLinus Walleij 			if (gend > highest)
9723a198059SLinus Walleij 				highest = gend;
9733a198059SLinus Walleij 		}
9743a198059SLinus Walleij 	}
9753a198059SLinus Walleij 	/* this gives the absolute number of pins */
9763a198059SLinus Walleij 	npins = highest - lowest + 1;
9773a198059SLinus Walleij 	return npins;
9783a198059SLinus Walleij }
9793a198059SLinus Walleij 
9803a198059SLinus Walleij static const struct of_device_id abx500_gpio_match[] = {
9813a198059SLinus Walleij 	{ .compatible = "stericsson,ab8500-gpio", .data = (void *)PINCTRL_AB8500, },
9823a198059SLinus Walleij 	{ .compatible = "stericsson,ab8505-gpio", .data = (void *)PINCTRL_AB8505, },
9833a198059SLinus Walleij 	{ }
9843a198059SLinus Walleij };
9853a198059SLinus Walleij 
abx500_gpio_probe(struct platform_device * pdev)9863a198059SLinus Walleij static int abx500_gpio_probe(struct platform_device *pdev)
9873a198059SLinus Walleij {
9883a198059SLinus Walleij 	struct device_node *np = pdev->dev.of_node;
9893a198059SLinus Walleij 	struct abx500_pinctrl *pct;
9903a198059SLinus Walleij 	unsigned int id = -1;
9913a4b094dSLinus Walleij 	int ret;
9923a198059SLinus Walleij 	int i;
9933a198059SLinus Walleij 
9943a198059SLinus Walleij 	if (!np) {
9953a198059SLinus Walleij 		dev_err(&pdev->dev, "gpio dt node missing\n");
9963a198059SLinus Walleij 		return -ENODEV;
9973a198059SLinus Walleij 	}
9983a198059SLinus Walleij 
999cb1a42d5SMarkus Elfring 	pct = devm_kzalloc(&pdev->dev, sizeof(*pct), GFP_KERNEL);
10008931dc08SMarkus Elfring 	if (!pct)
10013a198059SLinus Walleij 		return -ENOMEM;
10023a198059SLinus Walleij 
10033a198059SLinus Walleij 	pct->dev = &pdev->dev;
10043a198059SLinus Walleij 	pct->parent = dev_get_drvdata(pdev->dev.parent);
10053a198059SLinus Walleij 	pct->chip = abx500gpio_chip;
100658383c78SLinus Walleij 	pct->chip.parent = &pdev->dev;
10073a198059SLinus Walleij 	pct->chip.base = -1; /* Dynamic allocation */
10083a198059SLinus Walleij 
1009*ccc7cdf4SRob Herring 	id = (unsigned long)device_get_match_data(&pdev->dev);
10103a198059SLinus Walleij 
10113a198059SLinus Walleij 	/* Poke in other ASIC variants here */
10123a198059SLinus Walleij 	switch (id) {
10133a198059SLinus Walleij 	case PINCTRL_AB8500:
10143a198059SLinus Walleij 		abx500_pinctrl_ab8500_init(&pct->soc);
10153a198059SLinus Walleij 		break;
10163a198059SLinus Walleij 	case PINCTRL_AB8505:
10173a198059SLinus Walleij 		abx500_pinctrl_ab8505_init(&pct->soc);
10183a198059SLinus Walleij 		break;
10193a198059SLinus Walleij 	default:
10203a198059SLinus Walleij 		dev_err(&pdev->dev, "Unsupported pinctrl sub driver (%d)\n", id);
10213a198059SLinus Walleij 		return -EINVAL;
10223a198059SLinus Walleij 	}
10233a198059SLinus Walleij 
10243a198059SLinus Walleij 	if (!pct->soc) {
10253a198059SLinus Walleij 		dev_err(&pdev->dev, "Invalid SOC data\n");
10263a198059SLinus Walleij 		return -EINVAL;
10273a198059SLinus Walleij 	}
10283a198059SLinus Walleij 
10293a198059SLinus Walleij 	pct->chip.ngpio = abx500_get_gpio_num(pct->soc);
10303a198059SLinus Walleij 	pct->irq_cluster = pct->soc->gpio_irq_cluster;
10313a198059SLinus Walleij 	pct->irq_cluster_size = pct->soc->ngpio_irq_cluster;
10323a198059SLinus Walleij 
10332b016d27SLinus Walleij 	ret = gpiochip_add_data(&pct->chip, pct);
10343a198059SLinus Walleij 	if (ret) {
10353a198059SLinus Walleij 		dev_err(&pdev->dev, "unable to add gpiochip: %d\n", ret);
10363a198059SLinus Walleij 		return ret;
10373a198059SLinus Walleij 	}
10383a198059SLinus Walleij 	dev_info(&pdev->dev, "added gpiochip\n");
10393a198059SLinus Walleij 
10403a198059SLinus Walleij 	abx500_pinctrl_desc.pins = pct->soc->pins;
10413a198059SLinus Walleij 	abx500_pinctrl_desc.npins = pct->soc->npins;
10420ee60110SLaxman Dewangan 	pct->pctldev = devm_pinctrl_register(&pdev->dev, &abx500_pinctrl_desc,
10430ee60110SLaxman Dewangan 					     pct);
1044323de9efSMasahiro Yamada 	if (IS_ERR(pct->pctldev)) {
10453a198059SLinus Walleij 		dev_err(&pdev->dev,
10463a198059SLinus Walleij 			"could not register abx500 pinctrl driver\n");
1047323de9efSMasahiro Yamada 		ret = PTR_ERR(pct->pctldev);
10483a198059SLinus Walleij 		goto out_rem_chip;
10493a198059SLinus Walleij 	}
10503a198059SLinus Walleij 	dev_info(&pdev->dev, "registered pin controller\n");
10513a198059SLinus Walleij 
10523a198059SLinus Walleij 	/* We will handle a range of GPIO pins */
10533a198059SLinus Walleij 	for (i = 0; i < pct->soc->gpio_num_ranges; i++) {
10543a198059SLinus Walleij 		const struct abx500_pinrange *p = &pct->soc->gpio_ranges[i];
10553a198059SLinus Walleij 
10563a198059SLinus Walleij 		ret = gpiochip_add_pin_range(&pct->chip,
10573a198059SLinus Walleij 					dev_name(&pdev->dev),
10583a198059SLinus Walleij 					p->offset - 1, p->offset, p->npins);
10593a198059SLinus Walleij 		if (ret < 0)
10603a198059SLinus Walleij 			goto out_rem_chip;
10613a198059SLinus Walleij 	}
10623a198059SLinus Walleij 
10633a198059SLinus Walleij 	platform_set_drvdata(pdev, pct);
10643a198059SLinus Walleij 	dev_info(&pdev->dev, "initialized abx500 pinctrl driver\n");
10653a198059SLinus Walleij 
10663a198059SLinus Walleij 	return 0;
10673a198059SLinus Walleij 
10683a198059SLinus Walleij out_rem_chip:
10692fcea6ceSLinus Walleij 	gpiochip_remove(&pct->chip);
10703a198059SLinus Walleij 	return ret;
10713a198059SLinus Walleij }
10723a198059SLinus Walleij 
10733a198059SLinus Walleij /**
10743a198059SLinus Walleij  * abx500_gpio_remove() - remove Ab8500-gpio driver
10753a198059SLinus Walleij  * @pdev:	Platform device registered
10763a198059SLinus Walleij  */
abx500_gpio_remove(struct platform_device * pdev)10773a198059SLinus Walleij static int abx500_gpio_remove(struct platform_device *pdev)
10783a198059SLinus Walleij {
10793a198059SLinus Walleij 	struct abx500_pinctrl *pct = platform_get_drvdata(pdev);
10803a198059SLinus Walleij 
10812fcea6ceSLinus Walleij 	gpiochip_remove(&pct->chip);
10823a198059SLinus Walleij 	return 0;
10833a198059SLinus Walleij }
10843a198059SLinus Walleij 
10853a198059SLinus Walleij static struct platform_driver abx500_gpio_driver = {
10863a198059SLinus Walleij 	.driver = {
10873a198059SLinus Walleij 		.name = "abx500-gpio",
10883a198059SLinus Walleij 		.of_match_table = abx500_gpio_match,
10893a198059SLinus Walleij 	},
10903a198059SLinus Walleij 	.probe = abx500_gpio_probe,
10913a198059SLinus Walleij 	.remove = abx500_gpio_remove,
10923a198059SLinus Walleij };
10933a198059SLinus Walleij 
abx500_gpio_init(void)10943a198059SLinus Walleij static int __init abx500_gpio_init(void)
10953a198059SLinus Walleij {
10963a198059SLinus Walleij 	return platform_driver_register(&abx500_gpio_driver);
10973a198059SLinus Walleij }
10983a198059SLinus Walleij core_initcall(abx500_gpio_init);
1099