blob: 57eb794b6fc9e057e8d8baa82a3dc3e5bb647bd2 [file] [log] [blame]
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +02001/*
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +02002 * GPIOs on MPC512x/8349/8572/8610 and compatible
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +02003 *
4 * Copyright (C) 2008 Peter Korsgaard <jacmet@sunsite.dk>
5 *
6 * This file is licensed under the terms of the GNU General Public License
7 * version 2. This program is licensed "as is" without any warranty of any
8 * kind, whether express or implied.
9 */
10
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/spinlock.h>
14#include <linux/io.h>
15#include <linux/of.h>
16#include <linux/of_gpio.h>
Rob Herring5af50732013-09-17 14:28:33 -050017#include <linux/of_irq.h>
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +010018#include <linux/of_platform.h>
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +020019#include <linux/gpio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Peter Korsgaard345e5c82010-01-07 17:57:46 +010021#include <linux/irq.h>
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +020022
23#define MPC8XXX_GPIO_PINS 32
24
25#define GPIO_DIR 0x00
26#define GPIO_ODR 0x04
27#define GPIO_DAT 0x08
28#define GPIO_IER 0x0c
29#define GPIO_IMR 0x10
30#define GPIO_ICR 0x14
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +020031#define GPIO_ICR2 0x18
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +020032
33struct mpc8xxx_gpio_chip {
34 struct of_mm_gpio_chip mm_gc;
35 spinlock_t lock;
36
37 /*
38 * shadowed data register to be able to clear/set output pins in
39 * open drain mode safely
40 */
41 u32 data;
Grant Likelybae1d8f2012-02-14 14:06:50 -070042 struct irq_domain *irq;
Uwe Kleine-König01a04dd2012-05-21 21:57:39 +020043 const void *of_dev_id_data;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +020044};
45
46static inline u32 mpc8xxx_gpio2mask(unsigned int gpio)
47{
48 return 1u << (MPC8XXX_GPIO_PINS - 1 - gpio);
49}
50
51static inline struct mpc8xxx_gpio_chip *
52to_mpc8xxx_gpio_chip(struct of_mm_gpio_chip *mm)
53{
54 return container_of(mm, struct mpc8xxx_gpio_chip, mm_gc);
55}
56
57static void mpc8xxx_gpio_save_regs(struct of_mm_gpio_chip *mm)
58{
59 struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm);
60
61 mpc8xxx_gc->data = in_be32(mm->regs + GPIO_DAT);
62}
63
Felix Radenskyc1a676d2009-08-12 08:57:39 +030064/* Workaround GPIO 1 errata on MPC8572/MPC8536. The status of GPIOs
65 * defined as output cannot be determined by reading GPDAT register,
66 * so we use shadow data register instead. The status of input pins
67 * is determined by reading GPDAT register.
68 */
69static int mpc8572_gpio_get(struct gpio_chip *gc, unsigned int gpio)
70{
71 u32 val;
72 struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc);
73 struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm);
Liu Gang1aeef302013-11-22 16:12:40 +080074 u32 out_mask, out_shadow;
Felix Radenskyc1a676d2009-08-12 08:57:39 +030075
Liu Gang1aeef302013-11-22 16:12:40 +080076 out_mask = in_be32(mm->regs + GPIO_DIR);
Felix Radenskyc1a676d2009-08-12 08:57:39 +030077
Liu Gang1aeef302013-11-22 16:12:40 +080078 val = in_be32(mm->regs + GPIO_DAT) & ~out_mask;
79 out_shadow = mpc8xxx_gc->data & out_mask;
80
81 return (val | out_shadow) & mpc8xxx_gpio2mask(gpio);
Felix Radenskyc1a676d2009-08-12 08:57:39 +030082}
83
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +020084static int mpc8xxx_gpio_get(struct gpio_chip *gc, unsigned int gpio)
85{
86 struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc);
87
88 return in_be32(mm->regs + GPIO_DAT) & mpc8xxx_gpio2mask(gpio);
89}
90
91static void mpc8xxx_gpio_set(struct gpio_chip *gc, unsigned int gpio, int val)
92{
93 struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc);
94 struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm);
95 unsigned long flags;
96
97 spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
98
99 if (val)
100 mpc8xxx_gc->data |= mpc8xxx_gpio2mask(gpio);
101 else
102 mpc8xxx_gc->data &= ~mpc8xxx_gpio2mask(gpio);
103
104 out_be32(mm->regs + GPIO_DAT, mpc8xxx_gc->data);
105
106 spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
107}
108
Rojhalat Ibrahime5db3b32014-11-04 17:12:09 +0100109static void mpc8xxx_gpio_set_multiple(struct gpio_chip *gc,
110 unsigned long *mask, unsigned long *bits)
111{
112 struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc);
113 struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm);
114 unsigned long flags;
115 int i;
116
117 spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
118
119 for (i = 0; i < gc->ngpio; i++) {
120 if (*mask == 0)
121 break;
122 if (__test_and_clear_bit(i, mask)) {
123 if (test_bit(i, bits))
124 mpc8xxx_gc->data |= mpc8xxx_gpio2mask(i);
125 else
126 mpc8xxx_gc->data &= ~mpc8xxx_gpio2mask(i);
127 }
128 }
129
130 out_be32(mm->regs + GPIO_DAT, mpc8xxx_gc->data);
131
132 spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
133}
134
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200135static int mpc8xxx_gpio_dir_in(struct gpio_chip *gc, unsigned int gpio)
136{
137 struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc);
138 struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm);
139 unsigned long flags;
140
141 spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
142
143 clrbits32(mm->regs + GPIO_DIR, mpc8xxx_gpio2mask(gpio));
144
145 spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
146
147 return 0;
148}
149
150static int mpc8xxx_gpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
151{
152 struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc);
153 struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm);
154 unsigned long flags;
155
156 mpc8xxx_gpio_set(gc, gpio, val);
157
158 spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
159
160 setbits32(mm->regs + GPIO_DIR, mpc8xxx_gpio2mask(gpio));
161
162 spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
163
164 return 0;
165}
166
Wolfram Sang28538df2011-12-13 10:12:48 +0100167static int mpc5121_gpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
168{
169 /* GPIO 28..31 are input only on MPC5121 */
170 if (gpio >= 28)
171 return -EINVAL;
172
173 return mpc8xxx_gpio_dir_out(gc, gpio, val);
174}
175
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100176static int mpc8xxx_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
177{
178 struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc);
179 struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm);
180
181 if (mpc8xxx_gc->irq && offset < MPC8XXX_GPIO_PINS)
182 return irq_create_mapping(mpc8xxx_gc->irq, offset);
183 else
184 return -ENXIO;
185}
186
187static void mpc8xxx_gpio_irq_cascade(unsigned int irq, struct irq_desc *desc)
188{
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100189 struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_desc_get_handler_data(desc);
Felix Radenskycfadd832011-10-11 10:24:21 +0200190 struct irq_chip *chip = irq_desc_get_chip(desc);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100191 struct of_mm_gpio_chip *mm = &mpc8xxx_gc->mm_gc;
192 unsigned int mask;
193
194 mask = in_be32(mm->regs + GPIO_IER) & in_be32(mm->regs + GPIO_IMR);
195 if (mask)
196 generic_handle_irq(irq_linear_revmap(mpc8xxx_gc->irq,
197 32 - ffs(mask)));
Thomas Gleixnerd6de85e2012-05-03 12:22:06 +0200198 if (chip->irq_eoi)
199 chip->irq_eoi(&desc->irq_data);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100200}
201
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000202static void mpc8xxx_irq_unmask(struct irq_data *d)
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100203{
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000204 struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100205 struct of_mm_gpio_chip *mm = &mpc8xxx_gc->mm_gc;
206 unsigned long flags;
207
208 spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
209
Grant Likely476eb492011-05-04 15:02:15 +1000210 setbits32(mm->regs + GPIO_IMR, mpc8xxx_gpio2mask(irqd_to_hwirq(d)));
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100211
212 spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
213}
214
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000215static void mpc8xxx_irq_mask(struct irq_data *d)
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100216{
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000217 struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100218 struct of_mm_gpio_chip *mm = &mpc8xxx_gc->mm_gc;
219 unsigned long flags;
220
221 spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
222
Grant Likely476eb492011-05-04 15:02:15 +1000223 clrbits32(mm->regs + GPIO_IMR, mpc8xxx_gpio2mask(irqd_to_hwirq(d)));
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100224
225 spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
226}
227
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000228static void mpc8xxx_irq_ack(struct irq_data *d)
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100229{
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000230 struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100231 struct of_mm_gpio_chip *mm = &mpc8xxx_gc->mm_gc;
232
Grant Likely476eb492011-05-04 15:02:15 +1000233 out_be32(mm->regs + GPIO_IER, mpc8xxx_gpio2mask(irqd_to_hwirq(d)));
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100234}
235
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000236static int mpc8xxx_irq_set_type(struct irq_data *d, unsigned int flow_type)
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100237{
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000238 struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100239 struct of_mm_gpio_chip *mm = &mpc8xxx_gc->mm_gc;
240 unsigned long flags;
241
242 switch (flow_type) {
243 case IRQ_TYPE_EDGE_FALLING:
244 spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
245 setbits32(mm->regs + GPIO_ICR,
Grant Likely476eb492011-05-04 15:02:15 +1000246 mpc8xxx_gpio2mask(irqd_to_hwirq(d)));
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100247 spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
248 break;
249
250 case IRQ_TYPE_EDGE_BOTH:
251 spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
252 clrbits32(mm->regs + GPIO_ICR,
Grant Likely476eb492011-05-04 15:02:15 +1000253 mpc8xxx_gpio2mask(irqd_to_hwirq(d)));
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100254 spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
255 break;
256
257 default:
258 return -EINVAL;
259 }
260
261 return 0;
262}
263
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000264static int mpc512x_irq_set_type(struct irq_data *d, unsigned int flow_type)
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200265{
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000266 struct mpc8xxx_gpio_chip *mpc8xxx_gc = irq_data_get_irq_chip_data(d);
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200267 struct of_mm_gpio_chip *mm = &mpc8xxx_gc->mm_gc;
Grant Likely476eb492011-05-04 15:02:15 +1000268 unsigned long gpio = irqd_to_hwirq(d);
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200269 void __iomem *reg;
270 unsigned int shift;
271 unsigned long flags;
272
273 if (gpio < 16) {
274 reg = mm->regs + GPIO_ICR;
275 shift = (15 - gpio) * 2;
276 } else {
277 reg = mm->regs + GPIO_ICR2;
278 shift = (15 - (gpio % 16)) * 2;
279 }
280
281 switch (flow_type) {
282 case IRQ_TYPE_EDGE_FALLING:
283 case IRQ_TYPE_LEVEL_LOW:
284 spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
285 clrsetbits_be32(reg, 3 << shift, 2 << shift);
286 spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
287 break;
288
289 case IRQ_TYPE_EDGE_RISING:
290 case IRQ_TYPE_LEVEL_HIGH:
291 spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
292 clrsetbits_be32(reg, 3 << shift, 1 << shift);
293 spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
294 break;
295
296 case IRQ_TYPE_EDGE_BOTH:
297 spin_lock_irqsave(&mpc8xxx_gc->lock, flags);
298 clrbits32(reg, 3 << shift);
299 spin_unlock_irqrestore(&mpc8xxx_gc->lock, flags);
300 break;
301
302 default:
303 return -EINVAL;
304 }
305
306 return 0;
307}
308
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100309static struct irq_chip mpc8xxx_irq_chip = {
310 .name = "mpc8xxx-gpio",
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000311 .irq_unmask = mpc8xxx_irq_unmask,
312 .irq_mask = mpc8xxx_irq_mask,
313 .irq_ack = mpc8xxx_irq_ack,
314 .irq_set_type = mpc8xxx_irq_set_type,
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100315};
316
Linus Walleij5ba17ae2013-10-11 19:37:30 +0200317static int mpc8xxx_gpio_irq_map(struct irq_domain *h, unsigned int irq,
318 irq_hw_number_t hwirq)
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100319{
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200320 struct mpc8xxx_gpio_chip *mpc8xxx_gc = h->host_data;
321
322 if (mpc8xxx_gc->of_dev_id_data)
Lennert Buytenhek94347cb2011-03-08 22:26:58 +0000323 mpc8xxx_irq_chip.irq_set_type = mpc8xxx_gc->of_dev_id_data;
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200324
Linus Walleij5ba17ae2013-10-11 19:37:30 +0200325 irq_set_chip_data(irq, h->host_data);
326 irq_set_chip_and_handler(irq, &mpc8xxx_irq_chip, handle_level_irq);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100327
328 return 0;
329}
330
Grant Likelybae1d8f2012-02-14 14:06:50 -0700331static struct irq_domain_ops mpc8xxx_gpio_irq_ops = {
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100332 .map = mpc8xxx_gpio_irq_map,
Grant Likelyff8c3ab2012-01-24 17:09:13 -0700333 .xlate = irq_domain_xlate_twocell,
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100334};
335
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200336static struct of_device_id mpc8xxx_gpio_ids[] __initdata = {
337 { .compatible = "fsl,mpc8349-gpio", },
338 { .compatible = "fsl,mpc8572-gpio", },
339 { .compatible = "fsl,mpc8610-gpio", },
340 { .compatible = "fsl,mpc5121-gpio", .data = mpc512x_irq_set_type, },
Kumar Gala15a51482011-10-22 16:20:42 -0500341 { .compatible = "fsl,pq3-gpio", },
Anatolij Gustschind1dcfbb2011-01-08 16:51:16 +0100342 { .compatible = "fsl,qoriq-gpio", },
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200343 {}
344};
345
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +0100346static int mpc8xxx_probe(struct platform_device *pdev)
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200347{
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +0100348 struct device_node *np = pdev->dev.of_node;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200349 struct mpc8xxx_gpio_chip *mpc8xxx_gc;
350 struct of_mm_gpio_chip *mm_gc;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200351 struct gpio_chip *gc;
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200352 const struct of_device_id *id;
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100353 unsigned hwirq;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200354 int ret;
355
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +0100356 mpc8xxx_gc = devm_kzalloc(&pdev->dev, sizeof(*mpc8xxx_gc), GFP_KERNEL);
357 if (!mpc8xxx_gc)
358 return -ENOMEM;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200359
360 spin_lock_init(&mpc8xxx_gc->lock);
361
362 mm_gc = &mpc8xxx_gc->mm_gc;
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600363 gc = &mm_gc->gc;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200364
365 mm_gc->save_regs = mpc8xxx_gpio_save_regs;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200366 gc->ngpio = MPC8XXX_GPIO_PINS;
367 gc->direction_input = mpc8xxx_gpio_dir_in;
Wolfram Sang28538df2011-12-13 10:12:48 +0100368 gc->direction_output = of_device_is_compatible(np, "fsl,mpc5121-gpio") ?
369 mpc5121_gpio_dir_out : mpc8xxx_gpio_dir_out;
370 gc->get = of_device_is_compatible(np, "fsl,mpc8572-gpio") ?
371 mpc8572_gpio_get : mpc8xxx_gpio_get;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200372 gc->set = mpc8xxx_gpio_set;
Rojhalat Ibrahime5db3b32014-11-04 17:12:09 +0100373 gc->set_multiple = mpc8xxx_gpio_set_multiple;
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100374 gc->to_irq = mpc8xxx_gpio_to_irq;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200375
376 ret = of_mm_gpiochip_add(np, mm_gc);
377 if (ret)
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +0100378 return ret;
Peter Korsgaard1e16dfc2008-09-23 17:35:38 +0200379
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100380 hwirq = irq_of_parse_and_map(np, 0);
381 if (hwirq == NO_IRQ)
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +0100382 return 0;
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100383
Grant Likelya8db8cf2012-02-14 14:06:54 -0700384 mpc8xxx_gc->irq = irq_domain_add_linear(np, MPC8XXX_GPIO_PINS,
385 &mpc8xxx_gpio_irq_ops, mpc8xxx_gc);
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100386 if (!mpc8xxx_gc->irq)
Ricardo Ribalda Delgado98686d9a52015-01-18 12:39:32 +0100387 return 0;
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100388
Anatolij Gustschine39d5ef2010-08-09 07:58:48 +0200389 id = of_match_node(mpc8xxx_gpio_ids, np);
390 if (id)
391 mpc8xxx_gc->of_dev_id_data = id->data;
392
Peter Korsgaard345e5c82010-01-07 17:57:46 +0100393 /* ack and mask all irqs */
394 out_be32(mm_gc->regs + GPIO_IER, 0xffffffff);
395 out_be32(mm_gc->regs + GPIO_IMR, 0);
396
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100397 irq_set_handler_data(hwirq, mpc8xxx_gc);
398 irq_set_chained_handler(hwirq, mpc8xxx_gpio_irq_cascade);
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,
405 .driver = {
406 .name = "gpio-mpc8xxx",
407 .of_match_table = mpc8xxx_gpio_ids,
408 },
409};
410
411static int __init mpc8xxx_init(void)
412{
413 return platform_driver_register(&mpc8xxx_plat_driver);
414}
415
416arch_initcall(mpc8xxx_init);