xref: /openbmc/linux/drivers/pinctrl/spear/pinctrl-plgpio.c (revision 1ac731c529cd4d6adbce134754b51ff7d822b145)
1604bb7daSViresh Kumar /*
2604bb7daSViresh Kumar  * SPEAr platform PLGPIO driver
3604bb7daSViresh Kumar  *
4604bb7daSViresh Kumar  * Copyright (C) 2012 ST Microelectronics
5604bb7daSViresh Kumar  * Viresh Kumar <viresh.kumar@linaro.org>
6604bb7daSViresh Kumar  *
7604bb7daSViresh Kumar  * This file is licensed under the terms of the GNU General Public
8604bb7daSViresh Kumar  * License version 2. This program is licensed "as is" without any
9604bb7daSViresh Kumar  * warranty of any kind, whether express or implied.
10604bb7daSViresh Kumar  */
11604bb7daSViresh Kumar 
12604bb7daSViresh Kumar #include <linux/clk.h>
13604bb7daSViresh Kumar #include <linux/err.h>
1422763bf5SLinus Walleij #include <linux/gpio/driver.h>
15604bb7daSViresh Kumar #include <linux/io.h>
168429cba1SPaul Gortmaker #include <linux/init.h>
177151cef5SHerve Codina #include <linux/mfd/syscon.h>
1822763bf5SLinus Walleij #include <linux/of.h>
1922763bf5SLinus Walleij #include <linux/of_platform.h>
20604bb7daSViresh Kumar #include <linux/pinctrl/consumer.h>
21604bb7daSViresh Kumar #include <linux/platform_device.h>
22604bb7daSViresh Kumar #include <linux/pm.h>
237151cef5SHerve Codina #include <linux/regmap.h>
24604bb7daSViresh Kumar #include <linux/spinlock.h>
25604bb7daSViresh Kumar 
26604bb7daSViresh Kumar #define MAX_GPIO_PER_REG		32
27604bb7daSViresh Kumar #define PIN_OFFSET(pin)			(pin % MAX_GPIO_PER_REG)
28604bb7daSViresh Kumar #define REG_OFFSET(base, reg, pin)	(base + reg + (pin / MAX_GPIO_PER_REG) \
29604bb7daSViresh Kumar 							* sizeof(int *))
30604bb7daSViresh Kumar 
31604bb7daSViresh Kumar /*
32604bb7daSViresh Kumar  * plgpio pins in all machines are not one to one mapped, bitwise with registers
33604bb7daSViresh Kumar  * bits. These set of macros define register masks for which below functions
34604bb7daSViresh Kumar  * (pin_to_offset and offset_to_pin) are required to be called.
35604bb7daSViresh Kumar  */
36604bb7daSViresh Kumar #define PTO_ENB_REG		0x001
37604bb7daSViresh Kumar #define PTO_WDATA_REG		0x002
38604bb7daSViresh Kumar #define PTO_DIR_REG		0x004
39604bb7daSViresh Kumar #define PTO_IE_REG		0x008
40604bb7daSViresh Kumar #define PTO_RDATA_REG		0x010
41604bb7daSViresh Kumar #define PTO_MIS_REG		0x020
42604bb7daSViresh Kumar 
43604bb7daSViresh Kumar struct plgpio_regs {
44604bb7daSViresh Kumar 	u32 enb;		/* enable register */
45604bb7daSViresh Kumar 	u32 wdata;		/* write data register */
46604bb7daSViresh Kumar 	u32 dir;		/* direction set register */
47604bb7daSViresh Kumar 	u32 rdata;		/* read data register */
48604bb7daSViresh Kumar 	u32 ie;			/* interrupt enable register */
49604bb7daSViresh Kumar 	u32 mis;		/* mask interrupt status register */
50604bb7daSViresh Kumar 	u32 eit;		/* edge interrupt type */
51604bb7daSViresh Kumar };
52604bb7daSViresh Kumar 
53604bb7daSViresh Kumar /*
54604bb7daSViresh Kumar  * struct plgpio: plgpio driver specific structure
55604bb7daSViresh Kumar  *
56604bb7daSViresh Kumar  * lock: lock for guarding gpio registers
57604bb7daSViresh Kumar  * base: base address of plgpio block
58604bb7daSViresh Kumar  * chip: gpio framework specific chip information structure
59604bb7daSViresh Kumar  * p2o: function ptr for pin to offset conversion. This is required only for
60604bb7daSViresh Kumar  *	machines where mapping b/w pin and offset is not 1-to-1.
61604bb7daSViresh Kumar  * o2p: function ptr for offset to pin conversion. This is required only for
62604bb7daSViresh Kumar  *	machines where mapping b/w pin and offset is not 1-to-1.
63604bb7daSViresh Kumar  * p2o_regs: mask of registers for which p2o and o2p are applicable
64604bb7daSViresh Kumar  * regs: register offsets
65604bb7daSViresh Kumar  * csave_regs: context save registers for standby/sleep/hibernate cases
66604bb7daSViresh Kumar  */
67604bb7daSViresh Kumar struct plgpio {
68604bb7daSViresh Kumar 	spinlock_t		lock;
697151cef5SHerve Codina 	struct regmap		*regmap;
70604bb7daSViresh Kumar 	struct clk		*clk;
71604bb7daSViresh Kumar 	struct gpio_chip	chip;
72604bb7daSViresh Kumar 	int			(*p2o)(int pin);	/* pin_to_offset */
73604bb7daSViresh Kumar 	int			(*o2p)(int offset);	/* offset_to_pin */
74604bb7daSViresh Kumar 	u32			p2o_regs;
75604bb7daSViresh Kumar 	struct plgpio_regs	regs;
7637e49014SJingoo Han #ifdef CONFIG_PM_SLEEP
77604bb7daSViresh Kumar 	struct plgpio_regs	*csave_regs;
78604bb7daSViresh Kumar #endif
79604bb7daSViresh Kumar };
80604bb7daSViresh Kumar 
81604bb7daSViresh Kumar /* register manipulation inline functions */
is_plgpio_set(struct regmap * regmap,u32 pin,u32 reg)827151cef5SHerve Codina static inline u32 is_plgpio_set(struct regmap *regmap, u32 pin, u32 reg)
83604bb7daSViresh Kumar {
84604bb7daSViresh Kumar 	u32 offset = PIN_OFFSET(pin);
857151cef5SHerve Codina 	u32 reg_off = REG_OFFSET(0, reg, pin);
867151cef5SHerve Codina 	u32 val;
877151cef5SHerve Codina 
887151cef5SHerve Codina 	regmap_read(regmap, reg_off, &val);
89604bb7daSViresh Kumar 
90604bb7daSViresh Kumar 	return !!(val & (1 << offset));
91604bb7daSViresh Kumar }
92604bb7daSViresh Kumar 
plgpio_reg_set(struct regmap * regmap,u32 pin,u32 reg)937151cef5SHerve Codina static inline void plgpio_reg_set(struct regmap *regmap, u32 pin, u32 reg)
94604bb7daSViresh Kumar {
95604bb7daSViresh Kumar 	u32 offset = PIN_OFFSET(pin);
967151cef5SHerve Codina 	u32 reg_off = REG_OFFSET(0, reg, pin);
977151cef5SHerve Codina 	u32 mask;
98604bb7daSViresh Kumar 
997151cef5SHerve Codina 	mask = 1 << offset;
1007151cef5SHerve Codina 	regmap_update_bits(regmap, reg_off, mask, mask);
101604bb7daSViresh Kumar }
102604bb7daSViresh Kumar 
plgpio_reg_reset(struct regmap * regmap,u32 pin,u32 reg)1037151cef5SHerve Codina static inline void plgpio_reg_reset(struct regmap *regmap, u32 pin, u32 reg)
104604bb7daSViresh Kumar {
105604bb7daSViresh Kumar 	u32 offset = PIN_OFFSET(pin);
1067151cef5SHerve Codina 	u32 reg_off = REG_OFFSET(0, reg, pin);
1077151cef5SHerve Codina 	u32 mask;
108604bb7daSViresh Kumar 
1097151cef5SHerve Codina 	mask = 1 << offset;
1107151cef5SHerve Codina 	regmap_update_bits(regmap, reg_off, mask, 0);
111604bb7daSViresh Kumar }
112604bb7daSViresh Kumar 
1137151cef5SHerve Codina 
114604bb7daSViresh Kumar /* gpio framework specific routines */
plgpio_direction_input(struct gpio_chip * chip,unsigned offset)115604bb7daSViresh Kumar static int plgpio_direction_input(struct gpio_chip *chip, unsigned offset)
116604bb7daSViresh Kumar {
117cff4c7efSLinus Walleij 	struct plgpio *plgpio = gpiochip_get_data(chip);
118604bb7daSViresh Kumar 	unsigned long flags;
119604bb7daSViresh Kumar 
120604bb7daSViresh Kumar 	/* get correct offset for "offset" pin */
121604bb7daSViresh Kumar 	if (plgpio->p2o && (plgpio->p2o_regs & PTO_DIR_REG)) {
122604bb7daSViresh Kumar 		offset = plgpio->p2o(offset);
123604bb7daSViresh Kumar 		if (offset == -1)
124604bb7daSViresh Kumar 			return -EINVAL;
125604bb7daSViresh Kumar 	}
126604bb7daSViresh Kumar 
127604bb7daSViresh Kumar 	spin_lock_irqsave(&plgpio->lock, flags);
1287151cef5SHerve Codina 	plgpio_reg_set(plgpio->regmap, offset, plgpio->regs.dir);
129604bb7daSViresh Kumar 	spin_unlock_irqrestore(&plgpio->lock, flags);
130604bb7daSViresh Kumar 
131604bb7daSViresh Kumar 	return 0;
132604bb7daSViresh Kumar }
133604bb7daSViresh Kumar 
plgpio_direction_output(struct gpio_chip * chip,unsigned offset,int value)134604bb7daSViresh Kumar static int plgpio_direction_output(struct gpio_chip *chip, unsigned offset,
135604bb7daSViresh Kumar 		int value)
136604bb7daSViresh Kumar {
137cff4c7efSLinus Walleij 	struct plgpio *plgpio = gpiochip_get_data(chip);
138604bb7daSViresh Kumar 	unsigned long flags;
139604bb7daSViresh Kumar 	unsigned dir_offset = offset, wdata_offset = offset, tmp;
140604bb7daSViresh Kumar 
141604bb7daSViresh Kumar 	/* get correct offset for "offset" pin */
142604bb7daSViresh Kumar 	if (plgpio->p2o && (plgpio->p2o_regs & (PTO_DIR_REG | PTO_WDATA_REG))) {
143604bb7daSViresh Kumar 		tmp = plgpio->p2o(offset);
144604bb7daSViresh Kumar 		if (tmp == -1)
145604bb7daSViresh Kumar 			return -EINVAL;
146604bb7daSViresh Kumar 
147604bb7daSViresh Kumar 		if (plgpio->p2o_regs & PTO_DIR_REG)
148604bb7daSViresh Kumar 			dir_offset = tmp;
149604bb7daSViresh Kumar 		if (plgpio->p2o_regs & PTO_WDATA_REG)
150604bb7daSViresh Kumar 			wdata_offset = tmp;
151604bb7daSViresh Kumar 	}
152604bb7daSViresh Kumar 
153604bb7daSViresh Kumar 	spin_lock_irqsave(&plgpio->lock, flags);
154604bb7daSViresh Kumar 	if (value)
1557151cef5SHerve Codina 		plgpio_reg_set(plgpio->regmap, wdata_offset,
156604bb7daSViresh Kumar 				plgpio->regs.wdata);
157604bb7daSViresh Kumar 	else
1587151cef5SHerve Codina 		plgpio_reg_reset(plgpio->regmap, wdata_offset,
159604bb7daSViresh Kumar 				plgpio->regs.wdata);
160604bb7daSViresh Kumar 
1617151cef5SHerve Codina 	plgpio_reg_reset(plgpio->regmap, dir_offset, plgpio->regs.dir);
162604bb7daSViresh Kumar 	spin_unlock_irqrestore(&plgpio->lock, flags);
163604bb7daSViresh Kumar 
164604bb7daSViresh Kumar 	return 0;
165604bb7daSViresh Kumar }
166604bb7daSViresh Kumar 
plgpio_get_value(struct gpio_chip * chip,unsigned offset)167604bb7daSViresh Kumar static int plgpio_get_value(struct gpio_chip *chip, unsigned offset)
168604bb7daSViresh Kumar {
169cff4c7efSLinus Walleij 	struct plgpio *plgpio = gpiochip_get_data(chip);
170604bb7daSViresh Kumar 
171604bb7daSViresh Kumar 	if (offset >= chip->ngpio)
172604bb7daSViresh Kumar 		return -EINVAL;
173604bb7daSViresh Kumar 
174604bb7daSViresh Kumar 	/* get correct offset for "offset" pin */
175604bb7daSViresh Kumar 	if (plgpio->p2o && (plgpio->p2o_regs & PTO_RDATA_REG)) {
176604bb7daSViresh Kumar 		offset = plgpio->p2o(offset);
177604bb7daSViresh Kumar 		if (offset == -1)
178604bb7daSViresh Kumar 			return -EINVAL;
179604bb7daSViresh Kumar 	}
180604bb7daSViresh Kumar 
1817151cef5SHerve Codina 	return is_plgpio_set(plgpio->regmap, offset, plgpio->regs.rdata);
182604bb7daSViresh Kumar }
183604bb7daSViresh Kumar 
plgpio_set_value(struct gpio_chip * chip,unsigned offset,int value)184604bb7daSViresh Kumar static void plgpio_set_value(struct gpio_chip *chip, unsigned offset, int value)
185604bb7daSViresh Kumar {
186cff4c7efSLinus Walleij 	struct plgpio *plgpio = gpiochip_get_data(chip);
187604bb7daSViresh Kumar 
188604bb7daSViresh Kumar 	if (offset >= chip->ngpio)
189604bb7daSViresh Kumar 		return;
190604bb7daSViresh Kumar 
191604bb7daSViresh Kumar 	/* get correct offset for "offset" pin */
192604bb7daSViresh Kumar 	if (plgpio->p2o && (plgpio->p2o_regs & PTO_WDATA_REG)) {
193604bb7daSViresh Kumar 		offset = plgpio->p2o(offset);
194604bb7daSViresh Kumar 		if (offset == -1)
195604bb7daSViresh Kumar 			return;
196604bb7daSViresh Kumar 	}
197604bb7daSViresh Kumar 
198604bb7daSViresh Kumar 	if (value)
1997151cef5SHerve Codina 		plgpio_reg_set(plgpio->regmap, offset, plgpio->regs.wdata);
200604bb7daSViresh Kumar 	else
2017151cef5SHerve Codina 		plgpio_reg_reset(plgpio->regmap, offset, plgpio->regs.wdata);
202604bb7daSViresh Kumar }
203604bb7daSViresh Kumar 
plgpio_request(struct gpio_chip * chip,unsigned offset)204604bb7daSViresh Kumar static int plgpio_request(struct gpio_chip *chip, unsigned offset)
205604bb7daSViresh Kumar {
206cff4c7efSLinus Walleij 	struct plgpio *plgpio = gpiochip_get_data(chip);
207604bb7daSViresh Kumar 	int gpio = chip->base + offset;
208604bb7daSViresh Kumar 	unsigned long flags;
209604bb7daSViresh Kumar 	int ret = 0;
210604bb7daSViresh Kumar 
211604bb7daSViresh Kumar 	if (offset >= chip->ngpio)
212604bb7daSViresh Kumar 		return -EINVAL;
213604bb7daSViresh Kumar 
214a9a1d2a7SLinus Walleij 	ret = pinctrl_gpio_request(gpio);
215604bb7daSViresh Kumar 	if (ret)
216604bb7daSViresh Kumar 		return ret;
217604bb7daSViresh Kumar 
218604bb7daSViresh Kumar 	if (!IS_ERR(plgpio->clk)) {
219f92bc45fSViresh Kumar 		ret = clk_enable(plgpio->clk);
220604bb7daSViresh Kumar 		if (ret)
221604bb7daSViresh Kumar 			goto err0;
222604bb7daSViresh Kumar 	}
223604bb7daSViresh Kumar 
224604bb7daSViresh Kumar 	if (plgpio->regs.enb == -1)
225604bb7daSViresh Kumar 		return 0;
226604bb7daSViresh Kumar 
227604bb7daSViresh Kumar 	/*
228604bb7daSViresh Kumar 	 * put gpio in IN mode before enabling it. This make enabling gpio safe
229604bb7daSViresh Kumar 	 */
230604bb7daSViresh Kumar 	ret = plgpio_direction_input(chip, offset);
231604bb7daSViresh Kumar 	if (ret)
232604bb7daSViresh Kumar 		goto err1;
233604bb7daSViresh Kumar 
234604bb7daSViresh Kumar 	/* get correct offset for "offset" pin */
235604bb7daSViresh Kumar 	if (plgpio->p2o && (plgpio->p2o_regs & PTO_ENB_REG)) {
236604bb7daSViresh Kumar 		offset = plgpio->p2o(offset);
237604bb7daSViresh Kumar 		if (offset == -1) {
238604bb7daSViresh Kumar 			ret = -EINVAL;
239604bb7daSViresh Kumar 			goto err1;
240604bb7daSViresh Kumar 		}
241604bb7daSViresh Kumar 	}
242604bb7daSViresh Kumar 
243604bb7daSViresh Kumar 	spin_lock_irqsave(&plgpio->lock, flags);
2447151cef5SHerve Codina 	plgpio_reg_set(plgpio->regmap, offset, plgpio->regs.enb);
245604bb7daSViresh Kumar 	spin_unlock_irqrestore(&plgpio->lock, flags);
246604bb7daSViresh Kumar 	return 0;
247604bb7daSViresh Kumar 
248604bb7daSViresh Kumar err1:
24998040490SAxel Lin 	if (!IS_ERR(plgpio->clk))
250f92bc45fSViresh Kumar 		clk_disable(plgpio->clk);
251604bb7daSViresh Kumar err0:
252a9a1d2a7SLinus Walleij 	pinctrl_gpio_free(gpio);
253604bb7daSViresh Kumar 	return ret;
254604bb7daSViresh Kumar }
255604bb7daSViresh Kumar 
plgpio_free(struct gpio_chip * chip,unsigned offset)256604bb7daSViresh Kumar static void plgpio_free(struct gpio_chip *chip, unsigned offset)
257604bb7daSViresh Kumar {
258cff4c7efSLinus Walleij 	struct plgpio *plgpio = gpiochip_get_data(chip);
259604bb7daSViresh Kumar 	int gpio = chip->base + offset;
260604bb7daSViresh Kumar 	unsigned long flags;
261604bb7daSViresh Kumar 
262604bb7daSViresh Kumar 	if (offset >= chip->ngpio)
263604bb7daSViresh Kumar 		return;
264604bb7daSViresh Kumar 
265604bb7daSViresh Kumar 	if (plgpio->regs.enb == -1)
266604bb7daSViresh Kumar 		goto disable_clk;
267604bb7daSViresh Kumar 
268604bb7daSViresh Kumar 	/* get correct offset for "offset" pin */
269604bb7daSViresh Kumar 	if (plgpio->p2o && (plgpio->p2o_regs & PTO_ENB_REG)) {
270604bb7daSViresh Kumar 		offset = plgpio->p2o(offset);
271604bb7daSViresh Kumar 		if (offset == -1)
272604bb7daSViresh Kumar 			return;
273604bb7daSViresh Kumar 	}
274604bb7daSViresh Kumar 
275604bb7daSViresh Kumar 	spin_lock_irqsave(&plgpio->lock, flags);
2767151cef5SHerve Codina 	plgpio_reg_reset(plgpio->regmap, offset, plgpio->regs.enb);
277604bb7daSViresh Kumar 	spin_unlock_irqrestore(&plgpio->lock, flags);
278604bb7daSViresh Kumar 
279604bb7daSViresh Kumar disable_clk:
280604bb7daSViresh Kumar 	if (!IS_ERR(plgpio->clk))
281f92bc45fSViresh Kumar 		clk_disable(plgpio->clk);
282604bb7daSViresh Kumar 
283a9a1d2a7SLinus Walleij 	pinctrl_gpio_free(gpio);
284604bb7daSViresh Kumar }
285604bb7daSViresh Kumar 
286604bb7daSViresh Kumar /* PLGPIO IRQ */
plgpio_irq_disable(struct irq_data * d)287604bb7daSViresh Kumar static void plgpio_irq_disable(struct irq_data *d)
288604bb7daSViresh Kumar {
28922763bf5SLinus Walleij 	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
290cff4c7efSLinus Walleij 	struct plgpio *plgpio = gpiochip_get_data(gc);
29122763bf5SLinus Walleij 	int offset = d->hwirq;
292604bb7daSViresh Kumar 	unsigned long flags;
293604bb7daSViresh Kumar 
294604bb7daSViresh Kumar 	/* get correct offset for "offset" pin */
295604bb7daSViresh Kumar 	if (plgpio->p2o && (plgpio->p2o_regs & PTO_IE_REG)) {
296604bb7daSViresh Kumar 		offset = plgpio->p2o(offset);
297604bb7daSViresh Kumar 		if (offset == -1)
298604bb7daSViresh Kumar 			return;
299604bb7daSViresh Kumar 	}
300604bb7daSViresh Kumar 
301604bb7daSViresh Kumar 	spin_lock_irqsave(&plgpio->lock, flags);
3027151cef5SHerve Codina 	plgpio_reg_set(plgpio->regmap, offset, plgpio->regs.ie);
303604bb7daSViresh Kumar 	spin_unlock_irqrestore(&plgpio->lock, flags);
304*35d00867SLinus Walleij 	gpiochip_disable_irq(gc, irqd_to_hwirq(d));
305604bb7daSViresh Kumar }
306604bb7daSViresh Kumar 
plgpio_irq_enable(struct irq_data * d)307604bb7daSViresh Kumar static void plgpio_irq_enable(struct irq_data *d)
308604bb7daSViresh Kumar {
30922763bf5SLinus Walleij 	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
310cff4c7efSLinus Walleij 	struct plgpio *plgpio = gpiochip_get_data(gc);
31122763bf5SLinus Walleij 	int offset = d->hwirq;
312604bb7daSViresh Kumar 	unsigned long flags;
313604bb7daSViresh Kumar 
314604bb7daSViresh Kumar 	/* get correct offset for "offset" pin */
315604bb7daSViresh Kumar 	if (plgpio->p2o && (plgpio->p2o_regs & PTO_IE_REG)) {
316604bb7daSViresh Kumar 		offset = plgpio->p2o(offset);
317604bb7daSViresh Kumar 		if (offset == -1)
318604bb7daSViresh Kumar 			return;
319604bb7daSViresh Kumar 	}
320604bb7daSViresh Kumar 
321*35d00867SLinus Walleij 	gpiochip_enable_irq(gc, irqd_to_hwirq(d));
322604bb7daSViresh Kumar 	spin_lock_irqsave(&plgpio->lock, flags);
3237151cef5SHerve Codina 	plgpio_reg_reset(plgpio->regmap, offset, plgpio->regs.ie);
324604bb7daSViresh Kumar 	spin_unlock_irqrestore(&plgpio->lock, flags);
325604bb7daSViresh Kumar }
326604bb7daSViresh Kumar 
plgpio_irq_set_type(struct irq_data * d,unsigned trigger)327604bb7daSViresh Kumar static int plgpio_irq_set_type(struct irq_data *d, unsigned trigger)
328604bb7daSViresh Kumar {
32922763bf5SLinus Walleij 	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
330cff4c7efSLinus Walleij 	struct plgpio *plgpio = gpiochip_get_data(gc);
33122763bf5SLinus Walleij 	int offset = d->hwirq;
3327151cef5SHerve Codina 	u32 reg_off;
333604bb7daSViresh Kumar 	unsigned int supported_type = 0, val;
334604bb7daSViresh Kumar 
335604bb7daSViresh Kumar 	if (offset >= plgpio->chip.ngpio)
336604bb7daSViresh Kumar 		return -EINVAL;
337604bb7daSViresh Kumar 
338604bb7daSViresh Kumar 	if (plgpio->regs.eit == -1)
339604bb7daSViresh Kumar 		supported_type = IRQ_TYPE_LEVEL_HIGH;
340604bb7daSViresh Kumar 	else
341604bb7daSViresh Kumar 		supported_type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
342604bb7daSViresh Kumar 
343604bb7daSViresh Kumar 	if (!(trigger & supported_type))
344604bb7daSViresh Kumar 		return -EINVAL;
345604bb7daSViresh Kumar 
346604bb7daSViresh Kumar 	if (plgpio->regs.eit == -1)
347604bb7daSViresh Kumar 		return 0;
348604bb7daSViresh Kumar 
3497151cef5SHerve Codina 	reg_off = REG_OFFSET(0, plgpio->regs.eit, offset);
3507151cef5SHerve Codina 	regmap_read(plgpio->regmap, reg_off, &val);
351604bb7daSViresh Kumar 
352604bb7daSViresh Kumar 	offset = PIN_OFFSET(offset);
353604bb7daSViresh Kumar 	if (trigger & IRQ_TYPE_EDGE_RISING)
3547151cef5SHerve Codina 		regmap_write(plgpio->regmap, reg_off, val | (1 << offset));
355604bb7daSViresh Kumar 	else
3567151cef5SHerve Codina 		regmap_write(plgpio->regmap, reg_off, val & ~(1 << offset));
357604bb7daSViresh Kumar 
358604bb7daSViresh Kumar 	return 0;
359604bb7daSViresh Kumar }
360604bb7daSViresh Kumar 
361*35d00867SLinus Walleij static const struct irq_chip plgpio_irqchip = {
362604bb7daSViresh Kumar 	.name		= "PLGPIO",
363604bb7daSViresh Kumar 	.irq_enable	= plgpio_irq_enable,
364604bb7daSViresh Kumar 	.irq_disable	= plgpio_irq_disable,
365604bb7daSViresh Kumar 	.irq_set_type	= plgpio_irq_set_type,
366*35d00867SLinus Walleij 	.flags		= IRQCHIP_IMMUTABLE,
367*35d00867SLinus Walleij 	GPIOCHIP_IRQ_RESOURCE_HELPERS,
368604bb7daSViresh Kumar };
369604bb7daSViresh Kumar 
plgpio_irq_handler(struct irq_desc * desc)370bd0b9ac4SThomas Gleixner static void plgpio_irq_handler(struct irq_desc *desc)
371604bb7daSViresh Kumar {
37222763bf5SLinus Walleij 	struct gpio_chip *gc = irq_desc_get_handler_data(desc);
373cff4c7efSLinus Walleij 	struct plgpio *plgpio = gpiochip_get_data(gc);
374604bb7daSViresh Kumar 	struct irq_chip *irqchip = irq_desc_get_chip(desc);
375604bb7daSViresh Kumar 	int regs_count, count, pin, offset, i = 0;
3767151cef5SHerve Codina 	u32 pending;
3777151cef5SHerve Codina 	unsigned long pendingl;
378604bb7daSViresh Kumar 
379604bb7daSViresh Kumar 	count = plgpio->chip.ngpio;
380604bb7daSViresh Kumar 	regs_count = DIV_ROUND_UP(count, MAX_GPIO_PER_REG);
381604bb7daSViresh Kumar 
382604bb7daSViresh Kumar 	chained_irq_enter(irqchip, desc);
383604bb7daSViresh Kumar 	/* check all plgpio MIS registers for a possible interrupt */
384604bb7daSViresh Kumar 	for (; i < regs_count; i++) {
3857151cef5SHerve Codina 		regmap_read(plgpio->regmap, plgpio->regs.mis +
3867151cef5SHerve Codina 			i * sizeof(int *), &pending);
387604bb7daSViresh Kumar 		if (!pending)
388604bb7daSViresh Kumar 			continue;
389604bb7daSViresh Kumar 
390604bb7daSViresh Kumar 		/* clear interrupts */
3917151cef5SHerve Codina 		regmap_write(plgpio->regmap, plgpio->regs.mis +
3927151cef5SHerve Codina 			i * sizeof(int *), ~pending);
393604bb7daSViresh Kumar 		/*
394604bb7daSViresh Kumar 		 * clear extra bits in last register having gpios < MAX/REG
395604bb7daSViresh Kumar 		 * ex: Suppose there are max 102 plgpios. then last register
396604bb7daSViresh Kumar 		 * must have only (102 - MAX_GPIO_PER_REG * 3) = 6 relevant bits
397604bb7daSViresh Kumar 		 * so, we must not take other 28 bits into consideration for
398604bb7daSViresh Kumar 		 * checking interrupt. so clear those bits.
399604bb7daSViresh Kumar 		 */
400604bb7daSViresh Kumar 		count = count - i * MAX_GPIO_PER_REG;
401604bb7daSViresh Kumar 		if (count < MAX_GPIO_PER_REG)
402604bb7daSViresh Kumar 			pending &= (1 << count) - 1;
403604bb7daSViresh Kumar 
4047151cef5SHerve Codina 		pendingl = pending;
4057151cef5SHerve Codina 		for_each_set_bit(offset, &pendingl, MAX_GPIO_PER_REG) {
406604bb7daSViresh Kumar 			/* get correct pin for "offset" */
407604bb7daSViresh Kumar 			if (plgpio->o2p && (plgpio->p2o_regs & PTO_MIS_REG)) {
408604bb7daSViresh Kumar 				pin = plgpio->o2p(offset);
409604bb7daSViresh Kumar 				if (pin == -1)
410604bb7daSViresh Kumar 					continue;
411604bb7daSViresh Kumar 			} else
412604bb7daSViresh Kumar 				pin = offset;
413604bb7daSViresh Kumar 
414604bb7daSViresh Kumar 			/* get correct irq line number */
415604bb7daSViresh Kumar 			pin = i * MAX_GPIO_PER_REG + pin;
416a9cb09b7SMarc Zyngier 			generic_handle_domain_irq(gc->irq.domain, pin);
417604bb7daSViresh Kumar 		}
418604bb7daSViresh Kumar 	}
419604bb7daSViresh Kumar 	chained_irq_exit(irqchip, desc);
420604bb7daSViresh Kumar }
421604bb7daSViresh Kumar 
422604bb7daSViresh Kumar /*
423604bb7daSViresh Kumar  * pin to offset and offset to pin converter functions
424604bb7daSViresh Kumar  *
425604bb7daSViresh Kumar  * In spear310 there is inconsistency among bit positions in plgpio regiseters,
426604bb7daSViresh Kumar  * for different plgpio pins. For example: for pin 27, bit offset is 23, pin
427604bb7daSViresh Kumar  * 28-33 are not supported, pin 95 has offset bit 95, bit 100 has offset bit 1
428604bb7daSViresh Kumar  */
spear310_p2o(int pin)429604bb7daSViresh Kumar static int spear310_p2o(int pin)
430604bb7daSViresh Kumar {
431604bb7daSViresh Kumar 	int offset = pin;
432604bb7daSViresh Kumar 
433604bb7daSViresh Kumar 	if (pin <= 27)
434604bb7daSViresh Kumar 		offset += 4;
435604bb7daSViresh Kumar 	else if (pin <= 33)
436604bb7daSViresh Kumar 		offset = -1;
437604bb7daSViresh Kumar 	else if (pin <= 97)
438604bb7daSViresh Kumar 		offset -= 2;
439604bb7daSViresh Kumar 	else if (pin <= 101)
440604bb7daSViresh Kumar 		offset = 101 - pin;
441604bb7daSViresh Kumar 	else
442604bb7daSViresh Kumar 		offset = -1;
443604bb7daSViresh Kumar 
444604bb7daSViresh Kumar 	return offset;
445604bb7daSViresh Kumar }
446604bb7daSViresh Kumar 
spear310_o2p(int offset)447a59f0e21SSachin Kamat static int spear310_o2p(int offset)
448604bb7daSViresh Kumar {
449604bb7daSViresh Kumar 	if (offset <= 3)
450604bb7daSViresh Kumar 		return 101 - offset;
451604bb7daSViresh Kumar 	else if (offset <= 31)
452604bb7daSViresh Kumar 		return offset - 4;
453604bb7daSViresh Kumar 	else
454604bb7daSViresh Kumar 		return offset + 2;
455604bb7daSViresh Kumar }
456604bb7daSViresh Kumar 
plgpio_probe_dt(struct platform_device * pdev,struct plgpio * plgpio)457150632b0SGreg Kroah-Hartman static int plgpio_probe_dt(struct platform_device *pdev, struct plgpio *plgpio)
458604bb7daSViresh Kumar {
459604bb7daSViresh Kumar 	struct device_node *np = pdev->dev.of_node;
460604bb7daSViresh Kumar 	int ret = -EINVAL;
461604bb7daSViresh Kumar 	u32 val;
462604bb7daSViresh Kumar 
463604bb7daSViresh Kumar 	if (of_machine_is_compatible("st,spear310")) {
464604bb7daSViresh Kumar 		plgpio->p2o = spear310_p2o;
465604bb7daSViresh Kumar 		plgpio->o2p = spear310_o2p;
466604bb7daSViresh Kumar 		plgpio->p2o_regs = PTO_WDATA_REG | PTO_DIR_REG | PTO_IE_REG |
467604bb7daSViresh Kumar 			PTO_RDATA_REG | PTO_MIS_REG;
468604bb7daSViresh Kumar 	}
469604bb7daSViresh Kumar 
470604bb7daSViresh Kumar 	if (!of_property_read_u32(np, "st-plgpio,ngpio", &val)) {
471604bb7daSViresh Kumar 		plgpio->chip.ngpio = val;
472604bb7daSViresh Kumar 	} else {
473604bb7daSViresh Kumar 		dev_err(&pdev->dev, "DT: Invalid ngpio field\n");
474604bb7daSViresh Kumar 		goto end;
475604bb7daSViresh Kumar 	}
476604bb7daSViresh Kumar 
477604bb7daSViresh Kumar 	if (!of_property_read_u32(np, "st-plgpio,enb-reg", &val))
478604bb7daSViresh Kumar 		plgpio->regs.enb = val;
479604bb7daSViresh Kumar 	else
480604bb7daSViresh Kumar 		plgpio->regs.enb = -1;
481604bb7daSViresh Kumar 
482604bb7daSViresh Kumar 	if (!of_property_read_u32(np, "st-plgpio,wdata-reg", &val)) {
483604bb7daSViresh Kumar 		plgpio->regs.wdata = val;
484604bb7daSViresh Kumar 	} else {
485604bb7daSViresh Kumar 		dev_err(&pdev->dev, "DT: Invalid wdata reg\n");
486604bb7daSViresh Kumar 		goto end;
487604bb7daSViresh Kumar 	}
488604bb7daSViresh Kumar 
489604bb7daSViresh Kumar 	if (!of_property_read_u32(np, "st-plgpio,dir-reg", &val)) {
490604bb7daSViresh Kumar 		plgpio->regs.dir = val;
491604bb7daSViresh Kumar 	} else {
492604bb7daSViresh Kumar 		dev_err(&pdev->dev, "DT: Invalid dir reg\n");
493604bb7daSViresh Kumar 		goto end;
494604bb7daSViresh Kumar 	}
495604bb7daSViresh Kumar 
496604bb7daSViresh Kumar 	if (!of_property_read_u32(np, "st-plgpio,ie-reg", &val)) {
497604bb7daSViresh Kumar 		plgpio->regs.ie = val;
498604bb7daSViresh Kumar 	} else {
499604bb7daSViresh Kumar 		dev_err(&pdev->dev, "DT: Invalid ie reg\n");
500604bb7daSViresh Kumar 		goto end;
501604bb7daSViresh Kumar 	}
502604bb7daSViresh Kumar 
503604bb7daSViresh Kumar 	if (!of_property_read_u32(np, "st-plgpio,rdata-reg", &val)) {
504604bb7daSViresh Kumar 		plgpio->regs.rdata = val;
505604bb7daSViresh Kumar 	} else {
506604bb7daSViresh Kumar 		dev_err(&pdev->dev, "DT: Invalid rdata reg\n");
507604bb7daSViresh Kumar 		goto end;
508604bb7daSViresh Kumar 	}
509604bb7daSViresh Kumar 
510604bb7daSViresh Kumar 	if (!of_property_read_u32(np, "st-plgpio,mis-reg", &val)) {
511604bb7daSViresh Kumar 		plgpio->regs.mis = val;
512604bb7daSViresh Kumar 	} else {
513604bb7daSViresh Kumar 		dev_err(&pdev->dev, "DT: Invalid mis reg\n");
514604bb7daSViresh Kumar 		goto end;
515604bb7daSViresh Kumar 	}
516604bb7daSViresh Kumar 
517604bb7daSViresh Kumar 	if (!of_property_read_u32(np, "st-plgpio,eit-reg", &val))
518604bb7daSViresh Kumar 		plgpio->regs.eit = val;
519604bb7daSViresh Kumar 	else
520604bb7daSViresh Kumar 		plgpio->regs.eit = -1;
521604bb7daSViresh Kumar 
522604bb7daSViresh Kumar 	return 0;
523604bb7daSViresh Kumar 
524604bb7daSViresh Kumar end:
525604bb7daSViresh Kumar 	return ret;
526604bb7daSViresh Kumar }
5277151cef5SHerve Codina 
plgpio_probe(struct platform_device * pdev)528150632b0SGreg Kroah-Hartman static int plgpio_probe(struct platform_device *pdev)
529604bb7daSViresh Kumar {
5301288cadcSHerve Codina 	struct device_node *regmap_np;
531604bb7daSViresh Kumar 	struct plgpio *plgpio;
53222763bf5SLinus Walleij 	int ret, irq;
533604bb7daSViresh Kumar 
534604bb7daSViresh Kumar 	plgpio = devm_kzalloc(&pdev->dev, sizeof(*plgpio), GFP_KERNEL);
535b5623acbSMarkus Elfring 	if (!plgpio)
536604bb7daSViresh Kumar 		return -ENOMEM;
537604bb7daSViresh Kumar 
5381288cadcSHerve Codina 	regmap_np = of_parse_phandle(pdev->dev.of_node, "regmap", 0);
5391288cadcSHerve Codina 	if (regmap_np) {
5401288cadcSHerve Codina 		plgpio->regmap = device_node_to_regmap(regmap_np);
5411288cadcSHerve Codina 		of_node_put(regmap_np);
5421288cadcSHerve Codina 		if (IS_ERR(plgpio->regmap)) {
5431288cadcSHerve Codina 			dev_err(&pdev->dev, "Retrieve regmap failed (%pe)\n",
5441288cadcSHerve Codina 				plgpio->regmap);
5451288cadcSHerve Codina 			return PTR_ERR(plgpio->regmap);
5461288cadcSHerve Codina 		}
5471288cadcSHerve Codina 	} else {
5487151cef5SHerve Codina 		plgpio->regmap = device_node_to_regmap(pdev->dev.of_node);
5497151cef5SHerve Codina 		if (IS_ERR(plgpio->regmap)) {
5507151cef5SHerve Codina 			dev_err(&pdev->dev, "Init regmap failed (%pe)\n",
5517151cef5SHerve Codina 				plgpio->regmap);
5527151cef5SHerve Codina 			return PTR_ERR(plgpio->regmap);
5537151cef5SHerve Codina 		}
5541288cadcSHerve Codina 	}
555604bb7daSViresh Kumar 
556604bb7daSViresh Kumar 	ret = plgpio_probe_dt(pdev, plgpio);
557604bb7daSViresh Kumar 	if (ret) {
558604bb7daSViresh Kumar 		dev_err(&pdev->dev, "DT probe failed\n");
559604bb7daSViresh Kumar 		return ret;
560604bb7daSViresh Kumar 	}
561604bb7daSViresh Kumar 
562604bb7daSViresh Kumar 	plgpio->clk = devm_clk_get(&pdev->dev, NULL);
563604bb7daSViresh Kumar 	if (IS_ERR(plgpio->clk))
564604bb7daSViresh Kumar 		dev_warn(&pdev->dev, "clk_get() failed, work without it\n");
565604bb7daSViresh Kumar 
56637e49014SJingoo Han #ifdef CONFIG_PM_SLEEP
567a86854d0SKees Cook 	plgpio->csave_regs = devm_kcalloc(&pdev->dev,
568604bb7daSViresh Kumar 			DIV_ROUND_UP(plgpio->chip.ngpio, MAX_GPIO_PER_REG),
569a86854d0SKees Cook 			sizeof(*plgpio->csave_regs),
570604bb7daSViresh Kumar 			GFP_KERNEL);
571b5623acbSMarkus Elfring 	if (!plgpio->csave_regs)
572604bb7daSViresh Kumar 		return -ENOMEM;
573604bb7daSViresh Kumar #endif
574604bb7daSViresh Kumar 
575604bb7daSViresh Kumar 	platform_set_drvdata(pdev, plgpio);
576604bb7daSViresh Kumar 	spin_lock_init(&plgpio->lock);
577604bb7daSViresh Kumar 
578604bb7daSViresh Kumar 	plgpio->chip.base = -1;
579604bb7daSViresh Kumar 	plgpio->chip.request = plgpio_request;
580604bb7daSViresh Kumar 	plgpio->chip.free = plgpio_free;
581604bb7daSViresh Kumar 	plgpio->chip.direction_input = plgpio_direction_input;
582604bb7daSViresh Kumar 	plgpio->chip.direction_output = plgpio_direction_output;
583604bb7daSViresh Kumar 	plgpio->chip.get = plgpio_get_value;
584604bb7daSViresh Kumar 	plgpio->chip.set = plgpio_set_value;
585604bb7daSViresh Kumar 	plgpio->chip.label = dev_name(&pdev->dev);
58658383c78SLinus Walleij 	plgpio->chip.parent = &pdev->dev;
587604bb7daSViresh Kumar 	plgpio->chip.owner = THIS_MODULE;
588604bb7daSViresh Kumar 
589f92bc45fSViresh Kumar 	if (!IS_ERR(plgpio->clk)) {
590f92bc45fSViresh Kumar 		ret = clk_prepare(plgpio->clk);
591f92bc45fSViresh Kumar 		if (ret) {
592f92bc45fSViresh Kumar 			dev_err(&pdev->dev, "clk prepare failed\n");
593f92bc45fSViresh Kumar 			return ret;
594f92bc45fSViresh Kumar 		}
595f92bc45fSViresh Kumar 	}
596f92bc45fSViresh Kumar 
597face7c04SLinus Walleij 	irq = platform_get_irq(pdev, 0);
598face7c04SLinus Walleij 	if (irq > 0) {
599face7c04SLinus Walleij 		struct gpio_irq_chip *girq;
600face7c04SLinus Walleij 
601face7c04SLinus Walleij 		girq = &plgpio->chip.irq;
602*35d00867SLinus Walleij 		gpio_irq_chip_set_chip(girq, &plgpio_irqchip);
603face7c04SLinus Walleij 		girq->parent_handler = plgpio_irq_handler;
604face7c04SLinus Walleij 		girq->num_parents = 1;
605face7c04SLinus Walleij 		girq->parents = devm_kcalloc(&pdev->dev, 1,
606face7c04SLinus Walleij 					     sizeof(*girq->parents),
607face7c04SLinus Walleij 					     GFP_KERNEL);
608face7c04SLinus Walleij 		if (!girq->parents)
609face7c04SLinus Walleij 			return -ENOMEM;
610face7c04SLinus Walleij 		girq->parents[0] = irq;
611face7c04SLinus Walleij 		girq->default_type = IRQ_TYPE_NONE;
612face7c04SLinus Walleij 		girq->handler = handle_simple_irq;
613face7c04SLinus Walleij 		dev_info(&pdev->dev, "PLGPIO registering with IRQs\n");
614face7c04SLinus Walleij 	} else {
615face7c04SLinus Walleij 		dev_info(&pdev->dev, "PLGPIO registering without IRQs\n");
616face7c04SLinus Walleij 	}
617face7c04SLinus Walleij 
618cff4c7efSLinus Walleij 	ret = gpiochip_add_data(&plgpio->chip, plgpio);
619604bb7daSViresh Kumar 	if (ret) {
620604bb7daSViresh Kumar 		dev_err(&pdev->dev, "unable to add gpio chip\n");
621f92bc45fSViresh Kumar 		goto unprepare_clk;
622604bb7daSViresh Kumar 	}
623604bb7daSViresh Kumar 
624604bb7daSViresh Kumar 	return 0;
625604bb7daSViresh Kumar 
626f92bc45fSViresh Kumar unprepare_clk:
627f92bc45fSViresh Kumar 	if (!IS_ERR(plgpio->clk))
628f92bc45fSViresh Kumar 		clk_unprepare(plgpio->clk);
629604bb7daSViresh Kumar 
630604bb7daSViresh Kumar 	return ret;
631604bb7daSViresh Kumar }
632604bb7daSViresh Kumar 
63337e49014SJingoo Han #ifdef CONFIG_PM_SLEEP
plgpio_suspend(struct device * dev)634604bb7daSViresh Kumar static int plgpio_suspend(struct device *dev)
635604bb7daSViresh Kumar {
636604bb7daSViresh Kumar 	struct plgpio *plgpio = dev_get_drvdata(dev);
637604bb7daSViresh Kumar 	int i, reg_count = DIV_ROUND_UP(plgpio->chip.ngpio, MAX_GPIO_PER_REG);
6387151cef5SHerve Codina 	u32 off;
639604bb7daSViresh Kumar 
640604bb7daSViresh Kumar 	for (i = 0; i < reg_count; i++) {
6417151cef5SHerve Codina 		off = i * sizeof(int *);
642604bb7daSViresh Kumar 
643604bb7daSViresh Kumar 		if (plgpio->regs.enb != -1)
6447151cef5SHerve Codina 			regmap_read(plgpio->regmap, plgpio->regs.enb + off,
6457151cef5SHerve Codina 				&plgpio->csave_regs[i].enb);
646604bb7daSViresh Kumar 		if (plgpio->regs.eit != -1)
6477151cef5SHerve Codina 			regmap_read(plgpio->regmap, plgpio->regs.eit + off,
6487151cef5SHerve Codina 				&plgpio->csave_regs[i].eit);
6497151cef5SHerve Codina 		regmap_read(plgpio->regmap, plgpio->regs.wdata + off,
6507151cef5SHerve Codina 				&plgpio->csave_regs[i].wdata);
6517151cef5SHerve Codina 		regmap_read(plgpio->regmap, plgpio->regs.dir + off,
6527151cef5SHerve Codina 				&plgpio->csave_regs[i].dir);
6537151cef5SHerve Codina 		regmap_read(plgpio->regmap, plgpio->regs.ie + off,
6547151cef5SHerve Codina 				&plgpio->csave_regs[i].ie);
655604bb7daSViresh Kumar 	}
656604bb7daSViresh Kumar 
657604bb7daSViresh Kumar 	return 0;
658604bb7daSViresh Kumar }
659604bb7daSViresh Kumar 
660604bb7daSViresh Kumar /*
661604bb7daSViresh Kumar  * This is used to correct the values in end registers. End registers contain
662604bb7daSViresh Kumar  * extra bits that might be used for other purpose in platform. So, we shouldn't
663604bb7daSViresh Kumar  * overwrite these bits. This macro, reads given register again, preserves other
664604bb7daSViresh Kumar  * bit values (non-plgpio bits), and retain captured value (plgpio bits).
665604bb7daSViresh Kumar  */
666604bb7daSViresh Kumar #define plgpio_prepare_reg(__reg, _off, _mask, _tmp)		\
667604bb7daSViresh Kumar {								\
6687151cef5SHerve Codina 	regmap_read(plgpio->regmap, plgpio->regs.__reg + _off, &_tmp); \
669604bb7daSViresh Kumar 	_tmp &= ~_mask;						\
670604bb7daSViresh Kumar 	plgpio->csave_regs[i].__reg =				\
671604bb7daSViresh Kumar 		_tmp | (plgpio->csave_regs[i].__reg & _mask);	\
672604bb7daSViresh Kumar }
673604bb7daSViresh Kumar 
plgpio_resume(struct device * dev)674604bb7daSViresh Kumar static int plgpio_resume(struct device *dev)
675604bb7daSViresh Kumar {
676604bb7daSViresh Kumar 	struct plgpio *plgpio = dev_get_drvdata(dev);
677604bb7daSViresh Kumar 	int i, reg_count = DIV_ROUND_UP(plgpio->chip.ngpio, MAX_GPIO_PER_REG);
6787151cef5SHerve Codina 	u32 off;
679604bb7daSViresh Kumar 	u32 mask, tmp;
680604bb7daSViresh Kumar 
681604bb7daSViresh Kumar 	for (i = 0; i < reg_count; i++) {
6827151cef5SHerve Codina 		off = i * sizeof(int *);
683604bb7daSViresh Kumar 
684604bb7daSViresh Kumar 		if (i == reg_count - 1) {
685604bb7daSViresh Kumar 			mask = (1 << (plgpio->chip.ngpio - i *
686604bb7daSViresh Kumar 						MAX_GPIO_PER_REG)) - 1;
687604bb7daSViresh Kumar 
688604bb7daSViresh Kumar 			if (plgpio->regs.enb != -1)
689604bb7daSViresh Kumar 				plgpio_prepare_reg(enb, off, mask, tmp);
690604bb7daSViresh Kumar 
691604bb7daSViresh Kumar 			if (plgpio->regs.eit != -1)
692604bb7daSViresh Kumar 				plgpio_prepare_reg(eit, off, mask, tmp);
693604bb7daSViresh Kumar 
694604bb7daSViresh Kumar 			plgpio_prepare_reg(wdata, off, mask, tmp);
695604bb7daSViresh Kumar 			plgpio_prepare_reg(dir, off, mask, tmp);
696604bb7daSViresh Kumar 			plgpio_prepare_reg(ie, off, mask, tmp);
697604bb7daSViresh Kumar 		}
698604bb7daSViresh Kumar 
6997151cef5SHerve Codina 		regmap_write(plgpio->regmap, plgpio->regs.wdata + off,
7007151cef5SHerve Codina 			plgpio->csave_regs[i].wdata);
7017151cef5SHerve Codina 
7027151cef5SHerve Codina 		regmap_write(plgpio->regmap, plgpio->regs.dir + off,
7037151cef5SHerve Codina 			plgpio->csave_regs[i].dir);
704604bb7daSViresh Kumar 
705604bb7daSViresh Kumar 		if (plgpio->regs.eit != -1)
7067151cef5SHerve Codina 			regmap_write(plgpio->regmap, plgpio->regs.eit + off,
7077151cef5SHerve Codina 				plgpio->csave_regs[i].eit);
708604bb7daSViresh Kumar 
7097151cef5SHerve Codina 		regmap_write(plgpio->regmap, plgpio->regs.ie + off,
7107151cef5SHerve Codina 			plgpio->csave_regs[i].ie);
711604bb7daSViresh Kumar 
712604bb7daSViresh Kumar 		if (plgpio->regs.enb != -1)
7137151cef5SHerve Codina 			regmap_write(plgpio->regmap, plgpio->regs.enb + off,
7147151cef5SHerve Codina 				plgpio->csave_regs[i].enb);
715604bb7daSViresh Kumar 	}
716604bb7daSViresh Kumar 
717604bb7daSViresh Kumar 	return 0;
718604bb7daSViresh Kumar }
719604bb7daSViresh Kumar #endif
720604bb7daSViresh Kumar 
721604bb7daSViresh Kumar static SIMPLE_DEV_PM_OPS(plgpio_dev_pm_ops, plgpio_suspend, plgpio_resume);
722604bb7daSViresh Kumar 
723604bb7daSViresh Kumar static const struct of_device_id plgpio_of_match[] = {
724604bb7daSViresh Kumar 	{ .compatible = "st,spear-plgpio" },
725604bb7daSViresh Kumar 	{}
726604bb7daSViresh Kumar };
727604bb7daSViresh Kumar 
728604bb7daSViresh Kumar static struct platform_driver plgpio_driver = {
729604bb7daSViresh Kumar 	.probe = plgpio_probe,
730604bb7daSViresh Kumar 	.driver = {
731604bb7daSViresh Kumar 		.name = "spear-plgpio",
732604bb7daSViresh Kumar 		.pm = &plgpio_dev_pm_ops,
733606fca94SSachin Kamat 		.of_match_table = plgpio_of_match,
734604bb7daSViresh Kumar 	},
735604bb7daSViresh Kumar };
736604bb7daSViresh Kumar 
plgpio_init(void)737604bb7daSViresh Kumar static int __init plgpio_init(void)
738604bb7daSViresh Kumar {
739604bb7daSViresh Kumar 	return platform_driver_register(&plgpio_driver);
740604bb7daSViresh Kumar }
741604bb7daSViresh Kumar subsys_initcall(plgpio_init);
742