blob: 4c542153e9234a0fecfada2e9da67df9ad028f6a [file] [log] [blame]
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +10001/*
2 * MPC52xx gpio driver
3 *
4 * Copyright (c) 2008 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/of.h>
21#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +100023#include <linux/of_gpio.h>
24#include <linux/io.h>
25#include <linux/of_platform.h>
Paul Gortmakerbb207ef2011-07-03 13:38:09 -040026#include <linux/module.h>
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +100027
28#include <asm/gpio.h>
29#include <asm/mpc52xx.h>
30#include <sysdev/fsl_soc.h>
31
32static DEFINE_SPINLOCK(gpio_lock);
33
34struct mpc52xx_gpiochip {
35 struct of_mm_gpio_chip mmchip;
36 unsigned int shadow_dvo;
37 unsigned int shadow_gpioe;
38 unsigned int shadow_ddr;
39};
40
41/*
42 * GPIO LIB API implementation for wakeup GPIOs.
43 *
44 * There's a maximum of 8 wakeup GPIOs. Which of these are available
45 * for use depends on your board setup.
46 *
47 * 0 -> GPIO_WKUP_7
48 * 1 -> GPIO_WKUP_6
49 * 2 -> PSC6_1
50 * 3 -> PSC6_0
51 * 4 -> ETH_17
52 * 5 -> PSC3_9
53 * 6 -> PSC2_4
54 * 7 -> PSC1_4
55 *
56 */
57static int mpc52xx_wkup_gpio_get(struct gpio_chip *gc, unsigned int gpio)
58{
59 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
60 struct mpc52xx_gpio_wkup __iomem *regs = mm_gc->regs;
61 unsigned int ret;
62
63 ret = (in_8(&regs->wkup_ival) >> (7 - gpio)) & 1;
64
65 pr_debug("%s: gpio: %d ret: %d\n", __func__, gpio, ret);
66
67 return ret;
68}
69
70static inline void
71__mpc52xx_wkup_gpio_set(struct gpio_chip *gc, unsigned int gpio, int val)
72{
73 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
74 struct mpc52xx_gpiochip *chip = container_of(mm_gc,
75 struct mpc52xx_gpiochip, mmchip);
76 struct mpc52xx_gpio_wkup __iomem *regs = mm_gc->regs;
77
78 if (val)
79 chip->shadow_dvo |= 1 << (7 - gpio);
80 else
81 chip->shadow_dvo &= ~(1 << (7 - gpio));
82
83 out_8(&regs->wkup_dvo, chip->shadow_dvo);
84}
85
86static void
87mpc52xx_wkup_gpio_set(struct gpio_chip *gc, unsigned int gpio, int val)
88{
89 unsigned long flags;
90
91 spin_lock_irqsave(&gpio_lock, flags);
92
93 __mpc52xx_wkup_gpio_set(gc, gpio, val);
94
95 spin_unlock_irqrestore(&gpio_lock, flags);
96
97 pr_debug("%s: gpio: %d val: %d\n", __func__, gpio, val);
98}
99
100static int mpc52xx_wkup_gpio_dir_in(struct gpio_chip *gc, unsigned int gpio)
101{
102 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
103 struct mpc52xx_gpiochip *chip = container_of(mm_gc,
104 struct mpc52xx_gpiochip, mmchip);
Al Viro93072452008-06-02 10:59:02 +0100105 struct mpc52xx_gpio_wkup __iomem *regs = mm_gc->regs;
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000106 unsigned long flags;
107
108 spin_lock_irqsave(&gpio_lock, flags);
109
110 /* set the direction */
111 chip->shadow_ddr &= ~(1 << (7 - gpio));
112 out_8(&regs->wkup_ddr, chip->shadow_ddr);
113
114 /* and enable the pin */
115 chip->shadow_gpioe |= 1 << (7 - gpio);
116 out_8(&regs->wkup_gpioe, chip->shadow_gpioe);
117
118 spin_unlock_irqrestore(&gpio_lock, flags);
119
120 return 0;
121}
122
123static int
124mpc52xx_wkup_gpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
125{
126 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
Al Viro93072452008-06-02 10:59:02 +0100127 struct mpc52xx_gpio_wkup __iomem *regs = mm_gc->regs;
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000128 struct mpc52xx_gpiochip *chip = container_of(mm_gc,
129 struct mpc52xx_gpiochip, mmchip);
130 unsigned long flags;
131
132 spin_lock_irqsave(&gpio_lock, flags);
133
134 __mpc52xx_wkup_gpio_set(gc, gpio, val);
135
136 /* Then set direction */
137 chip->shadow_ddr |= 1 << (7 - gpio);
138 out_8(&regs->wkup_ddr, chip->shadow_ddr);
139
140 /* Finally enable the pin */
141 chip->shadow_gpioe |= 1 << (7 - gpio);
142 out_8(&regs->wkup_gpioe, chip->shadow_gpioe);
143
144 spin_unlock_irqrestore(&gpio_lock, flags);
145
146 pr_debug("%s: gpio: %d val: %d\n", __func__, gpio, val);
147
148 return 0;
149}
150
Bill Pemberton38363092012-11-19 13:22:34 -0500151static int mpc52xx_wkup_gpiochip_probe(struct platform_device *ofdev)
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000152{
153 struct mpc52xx_gpiochip *chip;
Al Viro93072452008-06-02 10:59:02 +0100154 struct mpc52xx_gpio_wkup __iomem *regs;
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600155 struct gpio_chip *gc;
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000156 int ret;
157
Ricardo Ribalda Delgadof91b2db2015-01-18 12:39:26 +0100158 chip = devm_kzalloc(&ofdev->dev, sizeof(*chip), GFP_KERNEL);
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000159 if (!chip)
160 return -ENOMEM;
161
Ricardo Ribalda Delgadof91b2db2015-01-18 12:39:26 +0100162 platform_set_drvdata(ofdev, chip);
163
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600164 gc = &chip->mmchip.gc;
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000165
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600166 gc->ngpio = 8;
167 gc->direction_input = mpc52xx_wkup_gpio_dir_in;
168 gc->direction_output = mpc52xx_wkup_gpio_dir_out;
169 gc->get = mpc52xx_wkup_gpio_get;
170 gc->set = mpc52xx_wkup_gpio_set;
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000171
Grant Likely61c7a082010-04-13 16:12:29 -0700172 ret = of_mm_gpiochip_add(ofdev->dev.of_node, &chip->mmchip);
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000173 if (ret)
174 return ret;
175
176 regs = chip->mmchip.regs;
177 chip->shadow_gpioe = in_8(&regs->wkup_gpioe);
178 chip->shadow_ddr = in_8(&regs->wkup_ddr);
179 chip->shadow_dvo = in_8(&regs->wkup_dvo);
180
181 return 0;
182}
183
Grant Likelya454dc52010-07-22 15:52:34 -0600184static int mpc52xx_gpiochip_remove(struct platform_device *ofdev)
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000185{
Ricardo Ribalda Delgadof91b2db2015-01-18 12:39:26 +0100186 struct mpc52xx_gpiochip *chip = platform_get_drvdata(ofdev);
187
188 of_mm_gpiochip_remove(&chip->mmchip);
189
190 return 0;
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000191}
192
193static const struct of_device_id mpc52xx_wkup_gpiochip_match[] = {
Grant Likely6eae1ac2011-07-06 11:54:19 -0600194 { .compatible = "fsl,mpc5200-gpio-wkup", },
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000195 {}
196};
197
Grant Likely00006122011-02-22 19:59:54 -0700198static struct platform_driver mpc52xx_wkup_gpiochip_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700199 .driver = {
Grant Likely6eae1ac2011-07-06 11:54:19 -0600200 .name = "mpc5200-gpio-wkup",
Grant Likely40182942010-04-13 16:13:02 -0700201 .of_match_table = mpc52xx_wkup_gpiochip_match,
202 },
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000203 .probe = mpc52xx_wkup_gpiochip_probe,
204 .remove = mpc52xx_gpiochip_remove,
205};
206
207/*
208 * GPIO LIB API implementation for simple GPIOs
209 *
210 * There's a maximum of 32 simple GPIOs. Which of these are available
211 * for use depends on your board setup.
212 * The numbering reflects the bit numbering in the port registers:
213 *
214 * 0..1 > reserved
215 * 2..3 > IRDA
216 * 4..7 > ETHR
217 * 8..11 > reserved
218 * 12..15 > USB
219 * 16..17 > reserved
220 * 18..23 > PSC3
221 * 24..27 > PSC2
222 * 28..31 > PSC1
223 */
224static int mpc52xx_simple_gpio_get(struct gpio_chip *gc, unsigned int gpio)
225{
226 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
227 struct mpc52xx_gpio __iomem *regs = mm_gc->regs;
228 unsigned int ret;
229
230 ret = (in_be32(&regs->simple_ival) >> (31 - gpio)) & 1;
231
232 return ret;
233}
234
235static inline void
236__mpc52xx_simple_gpio_set(struct gpio_chip *gc, unsigned int gpio, int val)
237{
238 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
239 struct mpc52xx_gpiochip *chip = container_of(mm_gc,
240 struct mpc52xx_gpiochip, mmchip);
241 struct mpc52xx_gpio __iomem *regs = mm_gc->regs;
242
243 if (val)
244 chip->shadow_dvo |= 1 << (31 - gpio);
245 else
246 chip->shadow_dvo &= ~(1 << (31 - gpio));
247 out_be32(&regs->simple_dvo, chip->shadow_dvo);
248}
249
250static void
251mpc52xx_simple_gpio_set(struct gpio_chip *gc, unsigned int gpio, int val)
252{
253 unsigned long flags;
254
255 spin_lock_irqsave(&gpio_lock, flags);
256
257 __mpc52xx_simple_gpio_set(gc, gpio, val);
258
259 spin_unlock_irqrestore(&gpio_lock, flags);
260
261 pr_debug("%s: gpio: %d val: %d\n", __func__, gpio, val);
262}
263
264static int mpc52xx_simple_gpio_dir_in(struct gpio_chip *gc, unsigned int gpio)
265{
266 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
267 struct mpc52xx_gpiochip *chip = container_of(mm_gc,
268 struct mpc52xx_gpiochip, mmchip);
Al Viro93072452008-06-02 10:59:02 +0100269 struct mpc52xx_gpio __iomem *regs = mm_gc->regs;
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000270 unsigned long flags;
271
272 spin_lock_irqsave(&gpio_lock, flags);
273
274 /* set the direction */
275 chip->shadow_ddr &= ~(1 << (31 - gpio));
276 out_be32(&regs->simple_ddr, chip->shadow_ddr);
277
278 /* and enable the pin */
279 chip->shadow_gpioe |= 1 << (31 - gpio);
280 out_be32(&regs->simple_gpioe, chip->shadow_gpioe);
281
282 spin_unlock_irqrestore(&gpio_lock, flags);
283
284 return 0;
285}
286
287static int
288mpc52xx_simple_gpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
289{
290 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
291 struct mpc52xx_gpiochip *chip = container_of(mm_gc,
292 struct mpc52xx_gpiochip, mmchip);
Al Viro93072452008-06-02 10:59:02 +0100293 struct mpc52xx_gpio __iomem *regs = mm_gc->regs;
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000294 unsigned long flags;
295
296 spin_lock_irqsave(&gpio_lock, flags);
297
298 /* First set initial value */
299 __mpc52xx_simple_gpio_set(gc, gpio, val);
300
301 /* Then set direction */
302 chip->shadow_ddr |= 1 << (31 - gpio);
303 out_be32(&regs->simple_ddr, chip->shadow_ddr);
304
305 /* Finally enable the pin */
306 chip->shadow_gpioe |= 1 << (31 - gpio);
307 out_be32(&regs->simple_gpioe, chip->shadow_gpioe);
308
309 spin_unlock_irqrestore(&gpio_lock, flags);
310
311 pr_debug("%s: gpio: %d val: %d\n", __func__, gpio, val);
312
313 return 0;
314}
315
Bill Pemberton38363092012-11-19 13:22:34 -0500316static int mpc52xx_simple_gpiochip_probe(struct platform_device *ofdev)
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000317{
318 struct mpc52xx_gpiochip *chip;
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600319 struct gpio_chip *gc;
Al Viro93072452008-06-02 10:59:02 +0100320 struct mpc52xx_gpio __iomem *regs;
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000321 int ret;
322
Ricardo Ribalda Delgadof91b2db2015-01-18 12:39:26 +0100323 chip = devm_kzalloc(&ofdev->dev, sizeof(*chip), GFP_KERNEL);
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000324 if (!chip)
325 return -ENOMEM;
326
Ricardo Ribalda Delgadof91b2db2015-01-18 12:39:26 +0100327 platform_set_drvdata(ofdev, chip);
328
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600329 gc = &chip->mmchip.gc;
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000330
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600331 gc->ngpio = 32;
332 gc->direction_input = mpc52xx_simple_gpio_dir_in;
333 gc->direction_output = mpc52xx_simple_gpio_dir_out;
334 gc->get = mpc52xx_simple_gpio_get;
335 gc->set = mpc52xx_simple_gpio_set;
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000336
Grant Likely61c7a082010-04-13 16:12:29 -0700337 ret = of_mm_gpiochip_add(ofdev->dev.of_node, &chip->mmchip);
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000338 if (ret)
339 return ret;
340
341 regs = chip->mmchip.regs;
342 chip->shadow_gpioe = in_be32(&regs->simple_gpioe);
343 chip->shadow_ddr = in_be32(&regs->simple_ddr);
344 chip->shadow_dvo = in_be32(&regs->simple_dvo);
345
346 return 0;
347}
348
349static const struct of_device_id mpc52xx_simple_gpiochip_match[] = {
Grant Likely6eae1ac2011-07-06 11:54:19 -0600350 { .compatible = "fsl,mpc5200-gpio", },
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000351 {}
352};
353
Grant Likely00006122011-02-22 19:59:54 -0700354static struct platform_driver mpc52xx_simple_gpiochip_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700355 .driver = {
Grant Likely6eae1ac2011-07-06 11:54:19 -0600356 .name = "mpc5200-gpio",
Grant Likely40182942010-04-13 16:13:02 -0700357 .of_match_table = mpc52xx_simple_gpiochip_match,
358 },
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000359 .probe = mpc52xx_simple_gpiochip_probe,
360 .remove = mpc52xx_gpiochip_remove,
361};
362
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000363static int __init mpc52xx_gpio_init(void)
364{
Grant Likely00006122011-02-22 19:59:54 -0700365 if (platform_driver_register(&mpc52xx_wkup_gpiochip_driver))
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000366 printk(KERN_ERR "Unable to register wakeup GPIO driver\n");
367
Grant Likely00006122011-02-22 19:59:54 -0700368 if (platform_driver_register(&mpc52xx_simple_gpiochip_driver))
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000369 printk(KERN_ERR "Unable to register simple GPIO driver\n");
370
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000371 return 0;
372}
373
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000374/* Make sure we get initialised before anyone else tries to use us */
375subsys_initcall(mpc52xx_gpio_init);
376
Ricardo Ribalda Delgadof91b2db2015-01-18 12:39:26 +0100377static void __exit mpc52xx_gpio_exit(void)
378{
379 platform_driver_unregister(&mpc52xx_wkup_gpiochip_driver);
380
381 platform_driver_unregister(&mpc52xx_simple_gpiochip_driver);
382}
383module_exit(mpc52xx_gpio_exit);
s.hauer@pengutronix.de3cd2550c2008-04-25 20:56:04 +1000384
385MODULE_DESCRIPTION("Freescale MPC52xx gpio driver");
386MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de");
387MODULE_LICENSE("GPL v2");
388