blob: a4ba217116eb4bdc81810c51890d14f010ae7523 [file] [log] [blame]
Anton Vorontsov863fbf42008-04-11 23:06:45 +10001/*
2 * OF helpers for the GPIO API
3 *
4 * Copyright (c) 2007-2008 MontaVista Software, Inc.
5 *
6 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <linux/kernel.h>
15#include <linux/errno.h>
16#include <linux/io.h>
17#include <linux/of.h>
18#include <linux/of_gpio.h>
19#include <asm/prom.h>
20
21/**
Anton Vorontsovb908b532008-12-01 06:30:04 +000022 * of_get_gpio_flags - Get a GPIO number and flags to use with GPIO API
Anton Vorontsov863fbf42008-04-11 23:06:45 +100023 * @np: device node to get GPIO from
24 * @index: index of the GPIO
Anton Vorontsovb908b532008-12-01 06:30:04 +000025 * @flags: a flags pointer to fill in
Anton Vorontsov863fbf42008-04-11 23:06:45 +100026 *
27 * Returns GPIO number to use with Linux generic GPIO API, or one of the errno
Anton Vorontsovb908b532008-12-01 06:30:04 +000028 * value on the error condition. If @flags is not NULL the function also fills
29 * in flags for the GPIO.
Anton Vorontsov863fbf42008-04-11 23:06:45 +100030 */
Anton Vorontsovb908b532008-12-01 06:30:04 +000031int of_get_gpio_flags(struct device_node *np, int index,
32 enum of_gpio_flags *flags)
Anton Vorontsov863fbf42008-04-11 23:06:45 +100033{
Anton Vorontsov64b60e02008-10-10 04:43:17 +000034 int ret;
Anton Vorontsov863fbf42008-04-11 23:06:45 +100035 struct device_node *gc;
36 struct of_gpio_chip *of_gc = NULL;
37 int size;
Anton Vorontsov863fbf42008-04-11 23:06:45 +100038 const void *gpio_spec;
39 const u32 *gpio_cells;
Anton Vorontsov863fbf42008-04-11 23:06:45 +100040
Anton Vorontsov64b60e02008-10-10 04:43:17 +000041 ret = of_parse_phandles_with_args(np, "gpios", "#gpio-cells", index,
42 &gc, &gpio_spec);
43 if (ret) {
44 pr_debug("%s: can't parse gpios property\n", __func__);
Anton Vorontsov863fbf42008-04-11 23:06:45 +100045 goto err0;
46 }
Anton Vorontsov863fbf42008-04-11 23:06:45 +100047
Anton Vorontsov64b60e02008-10-10 04:43:17 +000048 of_gc = gc->data;
Anton Vorontsov863fbf42008-04-11 23:06:45 +100049 if (!of_gc) {
Anton Vorontsov64b60e02008-10-10 04:43:17 +000050 pr_debug("%s: gpio controller %s isn't registered\n",
51 np->full_name, gc->full_name);
52 ret = -ENODEV;
53 goto err1;
54 }
55
56 gpio_cells = of_get_property(gc, "#gpio-cells", &size);
57 if (!gpio_cells || size != sizeof(*gpio_cells) ||
58 *gpio_cells != of_gc->gpio_cells) {
59 pr_debug("%s: wrong #gpio-cells for %s\n",
60 np->full_name, gc->full_name);
61 ret = -EINVAL;
62 goto err1;
Anton Vorontsov863fbf42008-04-11 23:06:45 +100063 }
64
Anton Vorontsovb908b532008-12-01 06:30:04 +000065 /* .xlate might decide to not fill in the flags, so clear it. */
66 if (flags)
67 *flags = 0;
68
69 ret = of_gc->xlate(of_gc, np, gpio_spec, flags);
Anton Vorontsov863fbf42008-04-11 23:06:45 +100070 if (ret < 0)
71 goto err1;
72
73 ret += of_gc->gc.base;
74err1:
75 of_node_put(gc);
76err0:
77 pr_debug("%s exited with status %d\n", __func__, ret);
78 return ret;
79}
Anton Vorontsovb908b532008-12-01 06:30:04 +000080EXPORT_SYMBOL(of_get_gpio_flags);
Anton Vorontsov863fbf42008-04-11 23:06:45 +100081
82/**
Anton Vorontsovb908b532008-12-01 06:30:04 +000083 * of_gpio_simple_xlate - translate gpio_spec to the GPIO number and flags
Anton Vorontsov863fbf42008-04-11 23:06:45 +100084 * @of_gc: pointer to the of_gpio_chip structure
85 * @np: device node of the GPIO chip
86 * @gpio_spec: gpio specifier as found in the device tree
Anton Vorontsovb908b532008-12-01 06:30:04 +000087 * @flags: a flags pointer to fill in
Anton Vorontsov863fbf42008-04-11 23:06:45 +100088 *
89 * This is simple translation function, suitable for the most 1:1 mapped
90 * gpio chips. This function performs only one sanity check: whether gpio
91 * is less than ngpios (that is specified in the gpio_chip).
92 */
93int of_gpio_simple_xlate(struct of_gpio_chip *of_gc, struct device_node *np,
Anton Vorontsovb908b532008-12-01 06:30:04 +000094 const void *gpio_spec, enum of_gpio_flags *flags)
Anton Vorontsov863fbf42008-04-11 23:06:45 +100095{
96 const u32 *gpio = gpio_spec;
97
Anton Vorontsovb908b532008-12-01 06:30:04 +000098 /*
99 * We're discouraging gpio_cells < 2, since that way you'll have to
100 * write your own xlate function (that will have to retrive the GPIO
101 * number and the flags from a single gpio cell -- this is possible,
102 * but not recommended).
103 */
104 if (of_gc->gpio_cells < 2) {
105 WARN_ON(1);
106 return -EINVAL;
107 }
108
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000109 if (*gpio > of_gc->gc.ngpio)
110 return -EINVAL;
111
Anton Vorontsovb908b532008-12-01 06:30:04 +0000112 if (flags)
113 *flags = gpio[1];
114
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000115 return *gpio;
116}
117EXPORT_SYMBOL(of_gpio_simple_xlate);
118
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000119/**
120 * of_mm_gpiochip_add - Add memory mapped GPIO chip (bank)
121 * @np: device node of the GPIO chip
122 * @mm_gc: pointer to the of_mm_gpio_chip allocated structure
123 *
124 * To use this function you should allocate and fill mm_gc with:
125 *
126 * 1) In the gpio_chip structure:
127 * - all the callbacks
128 *
129 * 2) In the of_gpio_chip structure:
130 * - gpio_cells
131 * - xlate callback (optional)
132 *
133 * 3) In the of_mm_gpio_chip structure:
134 * - save_regs callback (optional)
135 *
136 * If succeeded, this function will map bank's memory and will
137 * do all necessary work for you. Then you'll able to use .regs
138 * to manage GPIOs from the callbacks.
139 */
140int of_mm_gpiochip_add(struct device_node *np,
141 struct of_mm_gpio_chip *mm_gc)
142{
143 int ret = -ENOMEM;
144 struct of_gpio_chip *of_gc = &mm_gc->of_gc;
145 struct gpio_chip *gc = &of_gc->gc;
146
147 gc->label = kstrdup(np->full_name, GFP_KERNEL);
148 if (!gc->label)
149 goto err0;
150
151 mm_gc->regs = of_iomap(np, 0);
152 if (!mm_gc->regs)
153 goto err1;
154
Anton Vorontsov21451152008-04-30 00:05:24 +1000155 gc->base = -1;
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000156
157 if (!of_gc->xlate)
158 of_gc->xlate = of_gpio_simple_xlate;
159
160 if (mm_gc->save_regs)
161 mm_gc->save_regs(mm_gc);
162
163 np->data = of_gc;
164
165 ret = gpiochip_add(gc);
166 if (ret)
167 goto err2;
168
169 /* We don't want to lose the node and its ->data */
170 of_node_get(np);
171
172 pr_debug("%s: registered as generic GPIO chip, base is %d\n",
173 np->full_name, gc->base);
174 return 0;
175err2:
176 np->data = NULL;
177 iounmap(mm_gc->regs);
178err1:
179 kfree(gc->label);
180err0:
181 pr_err("%s: GPIO chip registration failed with status %d\n",
182 np->full_name, ret);
183 return ret;
184}
185EXPORT_SYMBOL(of_mm_gpiochip_add);