blob: c8673a5d941223c0b27e3a4062f2d7685e0ed178 [file] [log] [blame]
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +02001/*
Liu Gang42178e22016-02-03 19:27:34 +08002 * GPIOs on MPC512x/8349/8572/8610/QorIQ and compatible
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +02003 *
4 * Copyright (C) 2008 Peter Korsgaard <jacmet@sunsite.dk>
Liu Gang42178e22016-02-03 19:27:34 +08005 * Copyright (C) 2016 Freescale Semiconductor Inc.
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +02006 *
7 * This file is licensed under the terms of the GNU General Public License
8 * version 2. This program is licensed "as is" without any warranty of any
9 * kind, whether express or implied.
10 */
11
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/spinlock.h>
15#include <linux/io.h>
16#include <linux/of.h>
17#include <linux/of_gpio.h>
Liu Gang42178e22016-02-03 19:27:34 +080018#include <linux/of_address.h>
Rob Herring5af50732013-09-17 14:28:33 -050019#include <linux/of_irq.h>
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +010020#include <linux/of_platform.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Peter Korsgaard345e5c82010-01-07 17:57:46 +010022#include <linux/irq.h>
Liu Gang42178e22016-02-03 19:27:34 +080023#include <linux/gpio/driver.h>
Linus Walleijb3222f72017-10-20 16:08:12 +020024#include <linux/bitops.h>
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +020025
26#define MPC8XXX_GPIO_PINS 32
27
28#define GPIO_DIR 0x00
29#define GPIO_ODR 0x04
30#define GPIO_DAT 0x08
31#define GPIO_IER 0x0c
32#define GPIO_IMR 0x10
33#define GPIO_ICR 0x14
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +020034#define GPIO_ICR2 0x18
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +020035
36struct mpc8xxx_gpio_chip {
Liu Gang42178e22016-02-03 19:27:34 +080037 struct gpio_chip gc;
38 void __iomem *regs;
Alexander Stein50593612015-07-21 15:54:30 +020039 raw_spinlock_t lock;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +020040
Liu Gang42178e22016-02-03 19:27:34 +080041 int (*direction_output)(struct gpio_chip *chip,
42 unsigned offset, int value);
43
Grant Likelybae1d8f2012-02-14 14:06:50 -070044 struct irq_domain *irq;
Ricardo Ribalda Delgado257e1072015-01-18 12:39:33 +010045 unsigned int irqn;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +020046};
47
Linus Walleijb3222f72017-10-20 16:08:12 +020048/*
49 * This hardware has a big endian bit assignment such that GPIO line 0 is
50 * connected to bit 31, line 1 to bit 30 ... line 31 to bit 0.
51 * This inline helper give the right bitmask for a certain line.
52 */
53static inline u32 mpc_pin2mask(unsigned int offset)
54{
55 return BIT(31 - offset);
56}
57
Felix Radenskyc1a676d2009-08-12 08:57:39 +030058/* Workaround GPIO 1 errata on MPC8572/MPC8536. The status of GPIOs
59 * defined as output cannot be determined by reading GPDAT register,
60 * so we use shadow data register instead. The status of input pins
61 * is determined by reading GPDAT register.
62 */
63static int mpc8572_gpio_get(struct gpio_chip *gc, unsigned int gpio)
64{
65 u32 val;
Linus Walleij709d71a2015-12-07 10:34:28 +010066 struct mpc8xxx_gpio_chip *mpc8xxx_gc = gpiochip_get_data(gc);
Liu Gang1aeef302013-11-22 16:12:40 +080067 u32 out_mask, out_shadow;
Felix Radenskyc1a676d2009-08-12 08:57:39 +030068
Axel Lincd0d3f52016-02-22 15:24:01 +080069 out_mask = gc->read_reg(mpc8xxx_gc->regs + GPIO_DIR);
70 val = gc->read_reg(mpc8xxx_gc->regs + GPIO_DAT) & ~out_mask;
Liu Gang42178e22016-02-03 19:27:34 +080071 out_shadow = gc->bgpio_data & out_mask;
Felix Radenskyc1a676d2009-08-12 08:57:39 +030072
Linus Walleijb3222f72017-10-20 16:08:12 +020073 return !!((val | out_shadow) & mpc_pin2mask(gpio));
Felix Radenskyc1a676d2009-08-12 08:57:39 +030074}
75
Liu Gang42178e22016-02-03 19:27:34 +080076static int mpc5121_gpio_dir_out(struct gpio_chip *gc,
77 unsigned int gpio, int val)
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +020078{
Linus Walleij709d71a2015-12-07 10:34:28 +010079 struct mpc8xxx_gpio_chip *mpc8xxx_gc = gpiochip_get_data(gc);
Wolfram Sang28538df2011-12-13 10:12:48 +010080 /* GPIO 28..31 are input only on MPC5121 */
81 if (gpio >= 28)
82 return -EINVAL;
83
Liu Gang42178e22016-02-03 19:27:34 +080084 return mpc8xxx_gc->direction_output(gc, gpio, val);
Wolfram Sang28538df2011-12-13 10:12:48 +010085}
86
Liu Gang42178e22016-02-03 19:27:34 +080087static int mpc5125_gpio_dir_out(struct gpio_chip *gc,
88 unsigned int gpio, int val)
Uwe Kleine-König0ba69e02015-07-16 21:08:23 +020089{
Liu Gang42178e22016-02-03 19:27:34 +080090 struct mpc8xxx_gpio_chip *mpc8xxx_gc = gpiochip_get_data(gc);
Uwe Kleine-König0ba69e02015-07-16 21:08:23 +020091 /* GPIO 0..3 are input only on MPC5125 */
92 if (gpio <= 3)
93 return -EINVAL;
94
Liu Gang42178e22016-02-03 19:27:34 +080095 return mpc8xxx_gc->direction_output(gc, gpio, val);
Uwe Kleine-König0ba69e02015-07-16 21:08:23 +020096}
97
Peter Korsgaard345e5c82010-01-07 17:57:46 +010098static int mpc8xxx_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
99{
Linus Walleij709d71a2015-12-07 10:34:28 +0100100 struct mpc8xxx_gpio_chip *mpc8xxx_gc = gpiochip_get_data(gc);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100101
102 if (mpc8xxx_gc->irq && offset < MPC8XXX_GPIO_PINS)
103 return irq_create_mapping(mpc8xxx_gc->irq, offset);
104 else
105 return -ENXIO;
106}
107
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200108static void mpc8xxx_gpio_irq_cascade(struct irq_desc *desc)
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100109{
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100110 struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_desc_get_handler_data(desc);
Felix Radenskycfadd832011-10-11 10:24:21 +0200111 struct irq_chip *chip = irq_desc_get_chip(desc);
Axel Lincd0d3f52016-02-22 15:24:01 +0800112 struct gpio_chip *gc = &mpc8xxx_gc->gc;
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100113 unsigned int mask;
114
Axel Lincd0d3f52016-02-22 15:24:01 +0800115 mask = gc->read_reg(mpc8xxx_gc->regs + GPIO_IER)
116 & gc->read_reg(mpc8xxx_gc->regs + GPIO_IMR);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100117 if (mask)
118 generic_handle_irq(irq_linear_revmap(mpc8xxx_gc->irq,
119 32 - ffs(mask)));
Thomas Gleixnerd6de85e2012-05-03 12:22:06 +0200120 if (chip->irq_eoi)
121 chip->irq_eoi(&desc->irq_data);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100122}
123
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000124static void mpc8xxx_irq_unmask(struct irq_data *d)
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100125{
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000126 struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d);
Liu Gang42178e22016-02-03 19:27:34 +0800127 struct gpio_chip *gc = &mpc8xxx_gc->gc;
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100128 unsigned long flags;
129
Alexander Stein50593612015-07-21 15:54:30 +0200130 raw_spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100131
Axel Lincd0d3f52016-02-22 15:24:01 +0800132 gc->write_reg(mpc8xxx_gc->regs + GPIO_IMR,
133 gc->read_reg(mpc8xxx_gc->regs + GPIO_IMR)
Linus Walleijb3222f72017-10-20 16:08:12 +0200134 | mpc_pin2mask(irqd_to_hwirq(d)));
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100135
Alexander Stein50593612015-07-21 15:54:30 +0200136 raw_spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100137}
138
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000139static void mpc8xxx_irq_mask(struct irq_data *d)
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100140{
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000141 struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d);
Liu Gang42178e22016-02-03 19:27:34 +0800142 struct gpio_chip *gc = &mpc8xxx_gc->gc;
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100143 unsigned long flags;
144
Alexander Stein50593612015-07-21 15:54:30 +0200145 raw_spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100146
Axel Lincd0d3f52016-02-22 15:24:01 +0800147 gc->write_reg(mpc8xxx_gc->regs + GPIO_IMR,
148 gc->read_reg(mpc8xxx_gc->regs + GPIO_IMR)
Linus Walleijb3222f72017-10-20 16:08:12 +0200149 & ~mpc_pin2mask(irqd_to_hwirq(d)));
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100150
Alexander Stein50593612015-07-21 15:54:30 +0200151 raw_spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100152}
153
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000154static void mpc8xxx_irq_ack(struct irq_data *d)
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100155{
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000156 struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d);
Liu Gang42178e22016-02-03 19:27:34 +0800157 struct gpio_chip *gc = &mpc8xxx_gc->gc;
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100158
Axel Lincd0d3f52016-02-22 15:24:01 +0800159 gc->write_reg(mpc8xxx_gc->regs + GPIO_IER,
Linus Walleijb3222f72017-10-20 16:08:12 +0200160 mpc_pin2mask(irqd_to_hwirq(d)));
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100161}
162
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000163static int mpc8xxx_irq_set_type(struct irq_data *d, unsigned int flow_type)
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100164{
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000165 struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d);
Liu Gang42178e22016-02-03 19:27:34 +0800166 struct gpio_chip *gc = &mpc8xxx_gc->gc;
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100167 unsigned long flags;
168
169 switch (flow_type) {
170 case IRQ_TYPE_EDGE_FALLING:
Alexander Stein50593612015-07-21 15:54:30 +0200171 raw_spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
Axel Lincd0d3f52016-02-22 15:24:01 +0800172 gc->write_reg(mpc8xxx_gc->regs + GPIO_ICR,
173 gc->read_reg(mpc8xxx_gc->regs + GPIO_ICR)
Linus Walleijb3222f72017-10-20 16:08:12 +0200174 | mpc_pin2mask(irqd_to_hwirq(d)));
Alexander Stein50593612015-07-21 15:54:30 +0200175 raw_spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100176 break;
177
178 case IRQ_TYPE_EDGE_BOTH:
Alexander Stein50593612015-07-21 15:54:30 +0200179 raw_spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
Axel Lincd0d3f52016-02-22 15:24:01 +0800180 gc->write_reg(mpc8xxx_gc->regs + GPIO_ICR,
181 gc->read_reg(mpc8xxx_gc->regs + GPIO_ICR)
Linus Walleijb3222f72017-10-20 16:08:12 +0200182 & ~mpc_pin2mask(irqd_to_hwirq(d)));
Alexander Stein50593612015-07-21 15:54:30 +0200183 raw_spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100184 break;
185
186 default:
187 return -EINVAL;
188 }
189
190 return 0;
191}
192
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000193static int mpc512x_irq_set_type(struct irq_data *d, unsigned int flow_type)
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200194{
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000195 struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d);
Axel Lincd0d3f52016-02-22 15:24:01 +0800196 struct gpio_chip *gc = &mpc8xxx_gc->gc;
Grant Likely476eb492011-05-04 15:02:15 +1000197 unsigned long gpio = irqd_to_hwirq(d);
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200198 void __iomem *reg;
199 unsigned int shift;
200 unsigned long flags;
201
202 if (gpio < 16) {
Liu Gang42178e22016-02-03 19:27:34 +0800203 reg = mpc8xxx_gc->regs + GPIO_ICR;
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200204 shift = (15 - gpio) * 2;
205 } else {
Liu Gang42178e22016-02-03 19:27:34 +0800206 reg = mpc8xxx_gc->regs + GPIO_ICR2;
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200207 shift = (15 - (gpio % 16)) * 2;
208 }
209
210 switch (flow_type) {
211 case IRQ_TYPE_EDGE_FALLING:
212 case IRQ_TYPE_LEVEL_LOW:
Alexander Stein50593612015-07-21 15:54:30 +0200213 raw_spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
Axel Lincd0d3f52016-02-22 15:24:01 +0800214 gc->write_reg(reg, (gc->read_reg(reg) & ~(3 << shift))
Liu Gang42178e22016-02-03 19:27:34 +0800215 | (2 << shift));
Alexander Stein50593612015-07-21 15:54:30 +0200216 raw_spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200217 break;
218
219 case IRQ_TYPE_EDGE_RISING:
220 case IRQ_TYPE_LEVEL_HIGH:
Alexander Stein50593612015-07-21 15:54:30 +0200221 raw_spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
Axel Lincd0d3f52016-02-22 15:24:01 +0800222 gc->write_reg(reg, (gc->read_reg(reg) & ~(3 << shift))
Liu Gang42178e22016-02-03 19:27:34 +0800223 | (1 << shift));
Alexander Stein50593612015-07-21 15:54:30 +0200224 raw_spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200225 break;
226
227 case IRQ_TYPE_EDGE_BOTH:
Alexander Stein50593612015-07-21 15:54:30 +0200228 raw_spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
Axel Lincd0d3f52016-02-22 15:24:01 +0800229 gc->write_reg(reg, (gc->read_reg(reg) & ~(3 << shift)));
Alexander Stein50593612015-07-21 15:54:30 +0200230 raw_spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200231 break;
232
233 default:
234 return -EINVAL;
235 }
236
237 return 0;
238}
239
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100240static struct irq_chip mpc8xxx_irq_chip = {
241 .name = "mpc8xxx-gpio",
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000242 .irq_unmask = mpc8xxx_irq_unmask,
243 .irq_mask = mpc8xxx_irq_mask,
244 .irq_ack = mpc8xxx_irq_ack,
Uwe Kleine-König82e39b02015-07-16 21:08:22 +0200245 /* this might get overwritten in mpc8xxx_probe() */
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000246 .irq_set_type = mpc8xxx_irq_set_type,
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100247};
248
Linus Walleij5ba17ae2013-10-11 19:37:30 +0200249static int mpc8xxx_gpio_irq_map(struct irq_domain *h, unsigned int irq,
250 irq_hw_number_t hwirq)
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100251{
Linus Walleij5ba17ae2013-10-11 19:37:30 +0200252 irq_set_chip_data(irq, h->host_data);
Liu Gangd71cf152016-10-21 15:31:28 +0800253 irq_set_chip_and_handler(irq, &mpc8xxx_irq_chip, handle_edge_irq);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100254
255 return 0;
256}
257
Krzysztof Kozlowski0b354dc2015-04-27 21:54:07 +0900258static const struct irq_domain_ops mpc8xxx_gpio_irq_ops = {
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100259 .map = mpc8xxx_gpio_irq_map,
Grant Likelyff8c3ab2012-01-24 17:09:13 -0700260 .xlate = irq_domain_xlate_twocell,
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100261};
262
Uwe Kleine-König82e39b02015-07-16 21:08:22 +0200263struct mpc8xxx_gpio_devtype {
264 int (*gpio_dir_out)(struct gpio_chip *, unsigned int, int);
265 int (*gpio_get)(struct gpio_chip *, unsigned int);
266 int (*irq_set_type)(struct irq_data *, unsigned int);
267};
268
269static const struct mpc8xxx_gpio_devtype mpc512x_gpio_devtype = {
270 .gpio_dir_out = mpc5121_gpio_dir_out,
271 .irq_set_type = mpc512x_irq_set_type,
272};
273
Uwe Kleine-König0ba69e02015-07-16 21:08:23 +0200274static const struct mpc8xxx_gpio_devtype mpc5125_gpio_devtype = {
275 .gpio_dir_out = mpc5125_gpio_dir_out,
276 .irq_set_type = mpc512x_irq_set_type,
277};
278
Uwe Kleine-König82e39b02015-07-16 21:08:22 +0200279static const struct mpc8xxx_gpio_devtype mpc8572_gpio_devtype = {
280 .gpio_get = mpc8572_gpio_get,
281};
282
283static const struct mpc8xxx_gpio_devtype mpc8xxx_gpio_devtype_default = {
Uwe Kleine-König82e39b02015-07-16 21:08:22 +0200284 .irq_set_type = mpc8xxx_irq_set_type,
285};
286
Uwe Kleine-König4183afe2015-07-16 21:08:21 +0200287static const struct of_device_id mpc8xxx_gpio_ids[] = {
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200288 { .compatible = "fsl,mpc8349-gpio", },
Uwe Kleine-König82e39b02015-07-16 21:08:22 +0200289 { .compatible = "fsl,mpc8572-gpio", .data = &mpc8572_gpio_devtype, },
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200290 { .compatible = "fsl,mpc8610-gpio", },
Uwe Kleine-König82e39b02015-07-16 21:08:22 +0200291 { .compatible = "fsl,mpc5121-gpio", .data = &mpc512x_gpio_devtype, },
Uwe Kleine-König0ba69e02015-07-16 21:08:23 +0200292 { .compatible = "fsl,mpc5125-gpio", .data = &mpc5125_gpio_devtype, },
Kumar Gala15a51482011-10-22 16:20:42 -0500293 { .compatible = "fsl,pq3-gpio", },
Anatolij Gustschind1dcfbb2011-01-08 16:51:16 +0100294 { .compatible = "fsl,qoriq-gpio", },
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200295 {}
296};
297
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +0100298static int mpc8xxx_probe(struct platform_device *pdev)
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200299{
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +0100300 struct device_node *np = pdev->dev.of_node;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200301 struct mpc8xxx_gpio_chip *mpc8xxx_gc;
Liu Gang42178e22016-02-03 19:27:34 +0800302 struct gpio_chip *gc;
Uwe Kleine-König82e39b02015-07-16 21:08:22 +0200303 const struct mpc8xxx_gpio_devtype *devtype =
304 of_device_get_match_data(&pdev->dev);
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200305 int ret;
306
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +0100307 mpc8xxx_gc = devm_kzalloc(&pdev->dev, sizeof(*mpc8xxx_gc), GFP_KERNEL);
308 if (!mpc8xxx_gc)
309 return -ENOMEM;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200310
Ricardo Ribalda Delgado257e1072015-01-18 12:39:33 +0100311 platform_set_drvdata(pdev, mpc8xxx_gc);
312
Alexander Stein50593612015-07-21 15:54:30 +0200313 raw_spin_lock_init(&mpc8xxx_gc->lock);
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200314
Liu Gang42178e22016-02-03 19:27:34 +0800315 mpc8xxx_gc->regs = of_iomap(np, 0);
316 if (!mpc8xxx_gc->regs)
317 return -ENOMEM;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200318
Liu Gang42178e22016-02-03 19:27:34 +0800319 gc = &mpc8xxx_gc->gc;
320
321 if (of_property_read_bool(np, "little-endian")) {
322 ret = bgpio_init(gc, &pdev->dev, 4,
323 mpc8xxx_gc->regs + GPIO_DAT,
324 NULL, NULL,
325 mpc8xxx_gc->regs + GPIO_DIR, NULL,
326 BGPIOF_BIG_ENDIAN);
327 if (ret)
328 goto err;
329 dev_dbg(&pdev->dev, "GPIO registers are LITTLE endian\n");
330 } else {
331 ret = bgpio_init(gc, &pdev->dev, 4,
332 mpc8xxx_gc->regs + GPIO_DAT,
333 NULL, NULL,
334 mpc8xxx_gc->regs + GPIO_DIR, NULL,
335 BGPIOF_BIG_ENDIAN
336 | BGPIOF_BIG_ENDIAN_BYTE_ORDER);
337 if (ret)
338 goto err;
339 dev_dbg(&pdev->dev, "GPIO registers are BIG endian\n");
340 }
341
Axel Linfa4007c2016-02-22 15:22:52 +0800342 mpc8xxx_gc->direction_output = gc->direction_output;
Uwe Kleine-König82e39b02015-07-16 21:08:22 +0200343
344 if (!devtype)
345 devtype = &mpc8xxx_gpio_devtype_default;
346
347 /*
348 * It's assumed that only a single type of gpio controller is available
349 * on the current machine, so overwriting global data is fine.
350 */
351 mpc8xxx_irq_chip.irq_set_type = devtype->irq_set_type;
352
Axel Linadf32ea2016-02-22 15:24:54 +0800353 if (devtype->gpio_dir_out)
354 gc->direction_output = devtype->gpio_dir_out;
355 if (devtype->gpio_get)
356 gc->get = devtype->gpio_get;
357
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100358 gc->to_irq = mpc8xxx_gpio_to_irq;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200359
Liu Gang42178e22016-02-03 19:27:34 +0800360 ret = gpiochip_add_data(gc, mpc8xxx_gc);
361 if (ret) {
Rob Herring7eb6ce22017-07-18 16:43:03 -0500362 pr_err("%pOF: GPIO chip registration failed with status %d\n",
363 np, ret);
Liu Gang42178e22016-02-03 19:27:34 +0800364 goto err;
365 }
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200366
Ricardo Ribalda Delgado257e1072015-01-18 12:39:33 +0100367 mpc8xxx_gc->irqn = irq_of_parse_and_map(np, 0);
Liu Gang42178e22016-02-03 19:27:34 +0800368 if (!mpc8xxx_gc->irqn)
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +0100369 return 0;
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100370
Grant Likelya8db8cf2012-02-14 14:06:54 -0700371 mpc8xxx_gc->irq = irq_domain_add_linear(np, MPC8XXX_GPIO_PINS,
372 &mpc8xxx_gpio_irq_ops, mpc8xxx_gc);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100373 if (!mpc8xxx_gc->irq)
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +0100374 return 0;
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100375
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100376 /* ack and mask all irqs */
Axel Lincd0d3f52016-02-22 15:24:01 +0800377 gc->write_reg(mpc8xxx_gc->regs + GPIO_IER, 0xffffffff);
378 gc->write_reg(mpc8xxx_gc->regs + GPIO_IMR, 0);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100379
Thomas Gleixner05379812015-06-21 21:10:46 +0200380 irq_set_chained_handler_and_data(mpc8xxx_gc->irqn,
381 mpc8xxx_gpio_irq_cascade, mpc8xxx_gc);
Ricardo Ribalda Delgado257e1072015-01-18 12:39:33 +0100382 return 0;
Liu Gang42178e22016-02-03 19:27:34 +0800383err:
384 iounmap(mpc8xxx_gc->regs);
385 return ret;
Ricardo Ribalda Delgado257e1072015-01-18 12:39:33 +0100386}
387
388static int mpc8xxx_remove(struct platform_device *pdev)
389{
390 struct mpc8xxx_gpio_chip *mpc8xxx_gc = platform_get_drvdata(pdev);
391
392 if (mpc8xxx_gc->irq) {
Thomas Gleixner05379812015-06-21 21:10:46 +0200393 irq_set_chained_handler_and_data(mpc8xxx_gc->irqn, NULL, NULL);
Ricardo Ribalda Delgado257e1072015-01-18 12:39:33 +0100394 irq_domain_remove(mpc8xxx_gc->irq);
395 }
396
Liu Gang42178e22016-02-03 19:27:34 +0800397 gpiochip_remove(&mpc8xxx_gc->gc);
398 iounmap(mpc8xxx_gc->regs);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100399
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200400 return 0;
401}
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +0100402
403static struct platform_driver mpc8xxx_plat_driver = {
404 .probe = mpc8xxx_probe,
Ricardo Ribalda Delgado257e1072015-01-18 12:39:33 +0100405 .remove = mpc8xxx_remove,
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +0100406 .driver = {
407 .name = "gpio-mpc8xxx",
408 .of_match_table = mpc8xxx_gpio_ids,
409 },
410};
411
412static int __init mpc8xxx_init(void)
413{
414 return platform_driver_register(&mpc8xxx_plat_driver);
415}
416
417arch_initcall(mpc8xxx_init);