blob: 905960338fb21d905a21153b7e8bcc3832ab691a [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
Grant Likely2e13cba2010-07-05 16:11:55 -060014#include <linux/device.h>
Anton Vorontsov863fbf42008-04-11 23:06:45 +100015#include <linux/errno.h>
Grant Likely2e13cba2010-07-05 16:11:55 -060016#include <linux/module.h>
Anton Vorontsov863fbf42008-04-11 23:06:45 +100017#include <linux/io.h>
18#include <linux/of.h>
Grant Likely2e13cba2010-07-05 16:11:55 -060019#include <linux/of_address.h>
Anton Vorontsov863fbf42008-04-11 23:06:45 +100020#include <linux/of_gpio.h>
Grant Likely2e13cba2010-07-05 16:11:55 -060021#include <linux/slab.h>
Anton Vorontsov863fbf42008-04-11 23:06:45 +100022
23/**
Anton Vorontsovb908b532008-12-01 06:30:04 +000024 * of_get_gpio_flags - Get a GPIO number and flags to use with GPIO API
Anton Vorontsov863fbf42008-04-11 23:06:45 +100025 * @np: device node to get GPIO from
26 * @index: index of the GPIO
Anton Vorontsovb908b532008-12-01 06:30:04 +000027 * @flags: a flags pointer to fill in
Anton Vorontsov863fbf42008-04-11 23:06:45 +100028 *
29 * Returns GPIO number to use with Linux generic GPIO API, or one of the errno
Anton Vorontsovb908b532008-12-01 06:30:04 +000030 * value on the error condition. If @flags is not NULL the function also fills
31 * in flags for the GPIO.
Anton Vorontsov863fbf42008-04-11 23:06:45 +100032 */
Anton Vorontsovb908b532008-12-01 06:30:04 +000033int of_get_gpio_flags(struct device_node *np, int index,
34 enum of_gpio_flags *flags)
Anton Vorontsov863fbf42008-04-11 23:06:45 +100035{
Anton Vorontsov64b60e02008-10-10 04:43:17 +000036 int ret;
Anton Vorontsova19e3da2010-06-08 07:48:16 -060037 struct device_node *gpio_np;
38 struct gpio_chip *gc;
Anton Vorontsov863fbf42008-04-11 23:06:45 +100039 int size;
Anton Vorontsov863fbf42008-04-11 23:06:45 +100040 const void *gpio_spec;
Jeremy Kerr33714882010-01-30 01:45:26 -070041 const __be32 *gpio_cells;
Anton Vorontsov863fbf42008-04-11 23:06:45 +100042
Anton Vorontsov64b60e02008-10-10 04:43:17 +000043 ret = of_parse_phandles_with_args(np, "gpios", "#gpio-cells", index,
Anton Vorontsova19e3da2010-06-08 07:48:16 -060044 &gpio_np, &gpio_spec);
Anton Vorontsov64b60e02008-10-10 04:43:17 +000045 if (ret) {
46 pr_debug("%s: can't parse gpios property\n", __func__);
Anton Vorontsov863fbf42008-04-11 23:06:45 +100047 goto err0;
48 }
Anton Vorontsov863fbf42008-04-11 23:06:45 +100049
Grant Likely594fa262010-06-08 07:48:16 -060050 gc = of_node_to_gpiochip(gpio_np);
Anton Vorontsova19e3da2010-06-08 07:48:16 -060051 if (!gc) {
Anton Vorontsov64b60e02008-10-10 04:43:17 +000052 pr_debug("%s: gpio controller %s isn't registered\n",
Anton Vorontsova19e3da2010-06-08 07:48:16 -060053 np->full_name, gpio_np->full_name);
Anton Vorontsov64b60e02008-10-10 04:43:17 +000054 ret = -ENODEV;
55 goto err1;
56 }
57
Anton Vorontsova19e3da2010-06-08 07:48:16 -060058 gpio_cells = of_get_property(gpio_np, "#gpio-cells", &size);
Anton Vorontsov64b60e02008-10-10 04:43:17 +000059 if (!gpio_cells || size != sizeof(*gpio_cells) ||
Anton Vorontsova19e3da2010-06-08 07:48:16 -060060 be32_to_cpup(gpio_cells) != gc->of_gpio_n_cells) {
Anton Vorontsov64b60e02008-10-10 04:43:17 +000061 pr_debug("%s: wrong #gpio-cells for %s\n",
Anton Vorontsova19e3da2010-06-08 07:48:16 -060062 np->full_name, gpio_np->full_name);
Anton Vorontsov64b60e02008-10-10 04:43:17 +000063 ret = -EINVAL;
64 goto err1;
Anton Vorontsov863fbf42008-04-11 23:06:45 +100065 }
66
Anton Vorontsovb908b532008-12-01 06:30:04 +000067 /* .xlate might decide to not fill in the flags, so clear it. */
68 if (flags)
69 *flags = 0;
70
Anton Vorontsova19e3da2010-06-08 07:48:16 -060071 ret = gc->of_xlate(gc, np, gpio_spec, flags);
Anton Vorontsov863fbf42008-04-11 23:06:45 +100072 if (ret < 0)
73 goto err1;
74
Anton Vorontsova19e3da2010-06-08 07:48:16 -060075 ret += gc->base;
Anton Vorontsov863fbf42008-04-11 23:06:45 +100076err1:
Anton Vorontsova19e3da2010-06-08 07:48:16 -060077 of_node_put(gpio_np);
Anton Vorontsov863fbf42008-04-11 23:06:45 +100078err0:
79 pr_debug("%s exited with status %d\n", __func__, ret);
80 return ret;
81}
Anton Vorontsovb908b532008-12-01 06:30:04 +000082EXPORT_SYMBOL(of_get_gpio_flags);
Anton Vorontsov863fbf42008-04-11 23:06:45 +100083
84/**
Anton Vorontsov74982092008-12-05 08:15:54 +000085 * of_gpio_count - Count GPIOs for a device
86 * @np: device node to count GPIOs for
87 *
88 * The function returns the count of GPIOs specified for a node.
89 *
90 * Note that the empty GPIO specifiers counts too. For example,
91 *
92 * gpios = <0
93 * &pio1 1 2
94 * 0
95 * &pio2 3 4>;
96 *
97 * defines four GPIOs (so this function will return 4), two of which
98 * are not specified.
99 */
100unsigned int of_gpio_count(struct device_node *np)
101{
102 unsigned int cnt = 0;
103
104 do {
105 int ret;
106
107 ret = of_parse_phandles_with_args(np, "gpios", "#gpio-cells",
108 cnt, NULL, NULL);
109 /* A hole in the gpios = <> counts anyway. */
110 if (ret < 0 && ret != -EEXIST)
111 break;
112 } while (++cnt);
113
114 return cnt;
115}
116EXPORT_SYMBOL(of_gpio_count);
117
118/**
Anton Vorontsovb908b532008-12-01 06:30:04 +0000119 * of_gpio_simple_xlate - translate gpio_spec to the GPIO number and flags
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600120 * @gc: pointer to the gpio_chip structure
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000121 * @np: device node of the GPIO chip
122 * @gpio_spec: gpio specifier as found in the device tree
Anton Vorontsovb908b532008-12-01 06:30:04 +0000123 * @flags: a flags pointer to fill in
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000124 *
125 * This is simple translation function, suitable for the most 1:1 mapped
126 * gpio chips. This function performs only one sanity check: whether gpio
127 * is less than ngpios (that is specified in the gpio_chip).
128 */
Anton Vorontsov391c9702010-06-08 07:48:17 -0600129static int of_gpio_simple_xlate(struct gpio_chip *gc, struct device_node *np,
130 const void *gpio_spec, u32 *flags)
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000131{
Jeremy Kerr33714882010-01-30 01:45:26 -0700132 const __be32 *gpio = gpio_spec;
133 const u32 n = be32_to_cpup(gpio);
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000134
Anton Vorontsovb908b532008-12-01 06:30:04 +0000135 /*
136 * We're discouraging gpio_cells < 2, since that way you'll have to
137 * write your own xlate function (that will have to retrive the GPIO
138 * number and the flags from a single gpio cell -- this is possible,
139 * but not recommended).
140 */
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600141 if (gc->of_gpio_n_cells < 2) {
Anton Vorontsovb908b532008-12-01 06:30:04 +0000142 WARN_ON(1);
143 return -EINVAL;
144 }
145
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600146 if (n > gc->ngpio)
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000147 return -EINVAL;
148
Anton Vorontsovb908b532008-12-01 06:30:04 +0000149 if (flags)
Jeremy Kerr33714882010-01-30 01:45:26 -0700150 *flags = be32_to_cpu(gpio[1]);
Anton Vorontsovb908b532008-12-01 06:30:04 +0000151
Jeremy Kerr33714882010-01-30 01:45:26 -0700152 return n;
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000153}
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000154
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000155/**
156 * of_mm_gpiochip_add - Add memory mapped GPIO chip (bank)
157 * @np: device node of the GPIO chip
158 * @mm_gc: pointer to the of_mm_gpio_chip allocated structure
159 *
160 * To use this function you should allocate and fill mm_gc with:
161 *
162 * 1) In the gpio_chip structure:
163 * - all the callbacks
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600164 * - of_gpio_n_cells
165 * - of_xlate callback (optional)
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000166 *
167 * 3) In the of_mm_gpio_chip structure:
168 * - save_regs callback (optional)
169 *
170 * If succeeded, this function will map bank's memory and will
171 * do all necessary work for you. Then you'll able to use .regs
172 * to manage GPIOs from the callbacks.
173 */
174int of_mm_gpiochip_add(struct device_node *np,
175 struct of_mm_gpio_chip *mm_gc)
176{
177 int ret = -ENOMEM;
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600178 struct gpio_chip *gc = &mm_gc->gc;
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000179
180 gc->label = kstrdup(np->full_name, GFP_KERNEL);
181 if (!gc->label)
182 goto err0;
183
184 mm_gc->regs = of_iomap(np, 0);
185 if (!mm_gc->regs)
186 goto err1;
187
Anton Vorontsov21451152008-04-30 00:05:24 +1000188 gc->base = -1;
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000189
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000190 if (mm_gc->save_regs)
191 mm_gc->save_regs(mm_gc);
192
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600193 mm_gc->gc.of_node = np;
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000194
195 ret = gpiochip_add(gc);
196 if (ret)
197 goto err2;
198
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000199 pr_debug("%s: registered as generic GPIO chip, base is %d\n",
200 np->full_name, gc->base);
201 return 0;
202err2:
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000203 iounmap(mm_gc->regs);
204err1:
205 kfree(gc->label);
206err0:
207 pr_err("%s: GPIO chip registration failed with status %d\n",
208 np->full_name, ret);
209 return ret;
210}
211EXPORT_SYMBOL(of_mm_gpiochip_add);
Grant Likely594fa262010-06-08 07:48:16 -0600212
Anton Vorontsov391c9702010-06-08 07:48:17 -0600213void of_gpiochip_add(struct gpio_chip *chip)
214{
215 if ((!chip->of_node) && (chip->dev))
216 chip->of_node = chip->dev->of_node;
217
218 if (!chip->of_node)
219 return;
220
221 if (!chip->of_xlate) {
222 chip->of_gpio_n_cells = 2;
223 chip->of_xlate = of_gpio_simple_xlate;
224 }
225
226 of_node_get(chip->of_node);
227}
228
229void of_gpiochip_remove(struct gpio_chip *chip)
230{
231 if (chip->of_node)
232 of_node_put(chip->of_node);
233}
234
Grant Likely594fa262010-06-08 07:48:16 -0600235/* Private function for resolving node pointer to gpio_chip */
236static int of_gpiochip_is_match(struct gpio_chip *chip, void *data)
237{
238 return chip->of_node == data;
239}
240
241struct gpio_chip *of_node_to_gpiochip(struct device_node *np)
242{
243 return gpiochip_find(np, of_gpiochip_is_match);
244}