2 * OF helpers for the GPIO API
4 * Copyright (c) 2007-2008 MontaVista Software, Inc.
6 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
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.
14 #include <linux/device.h>
15 #include <linux/err.h>
16 #include <linux/errno.h>
17 #include <linux/module.h>
19 #include <linux/gpio/consumer.h>
21 #include <linux/of_address.h>
22 #include <linux/of_gpio.h>
23 #include <linux/pinctrl/pinctrl.h>
24 #include <linux/slab.h>
28 /* Private data structure for of_gpiochip_find_and_xlate */
30 enum of_gpio_flags
*flags
;
31 struct of_phandle_args gpiospec
;
33 struct gpio_desc
*out_gpio
;
36 /* Private function for resolving node pointer to gpio_chip */
37 static int of_gpiochip_find_and_xlate(struct gpio_chip
*gc
, void *data
)
39 struct gg_data
*gg_data
= data
;
42 if ((gc
->of_node
!= gg_data
->gpiospec
.np
) ||
43 (gc
->of_gpio_n_cells
!= gg_data
->gpiospec
.args_count
) ||
47 ret
= gc
->of_xlate(gc
, &gg_data
->gpiospec
, gg_data
->flags
);
49 /* We've found a gpio chip, but the translation failed.
50 * Store translation error in out_gpio.
51 * Return false to keep looking, as more than one gpio chip
52 * could be registered per of-node.
54 gg_data
->out_gpio
= ERR_PTR(ret
);
58 gg_data
->out_gpio
= gpiochip_get_desc(gc
, ret
);
63 * of_get_named_gpiod_flags() - Get a GPIO descriptor and flags for GPIO API
64 * @np: device node to get GPIO from
65 * @propname: property name containing gpio specifier(s)
66 * @index: index of the GPIO
67 * @flags: a flags pointer to fill in
69 * Returns GPIO descriptor to use with Linux GPIO API, or one of the errno
70 * value on the error condition. If @flags is not NULL the function also fills
71 * in flags for the GPIO.
73 struct gpio_desc
*of_get_named_gpiod_flags(struct device_node
*np
,
74 const char *propname
, int index
, enum of_gpio_flags
*flags
)
76 /* Return -EPROBE_DEFER to support probe() functions to be called
77 * later when the GPIO actually becomes available
79 struct gg_data gg_data
= {
81 .out_gpio
= ERR_PTR(-EPROBE_DEFER
)
85 /* .of_xlate might decide to not fill in the flags, so clear it. */
89 ret
= of_parse_phandle_with_args(np
, propname
, "#gpio-cells", index
,
92 pr_debug("%s: can't parse '%s' property of node '%s[%d]'\n",
93 __func__
, propname
, np
->full_name
, index
);
97 gpiochip_find(&gg_data
, of_gpiochip_find_and_xlate
);
99 of_node_put(gg_data
.gpiospec
.np
);
100 pr_debug("%s: parsed '%s' property of node '%s[%d]' - status (%d)\n",
101 __func__
, propname
, np
->full_name
, index
,
102 PTR_ERR_OR_ZERO(gg_data
.out_gpio
));
103 return gg_data
.out_gpio
;
106 int of_get_named_gpio_flags(struct device_node
*np
, const char *list_name
,
107 int index
, enum of_gpio_flags
*flags
)
109 struct gpio_desc
*desc
;
111 desc
= of_get_named_gpiod_flags(np
, list_name
, index
, flags
);
114 return PTR_ERR(desc
);
116 return desc_to_gpio(desc
);
118 EXPORT_SYMBOL(of_get_named_gpio_flags
);
121 * of_gpio_simple_xlate - translate gpio_spec to the GPIO number and flags
122 * @gc: pointer to the gpio_chip structure
123 * @np: device node of the GPIO chip
124 * @gpio_spec: gpio specifier as found in the device tree
125 * @flags: a flags pointer to fill in
127 * This is simple translation function, suitable for the most 1:1 mapped
128 * gpio chips. This function performs only one sanity check: whether gpio
129 * is less than ngpios (that is specified in the gpio_chip).
131 int of_gpio_simple_xlate(struct gpio_chip
*gc
,
132 const struct of_phandle_args
*gpiospec
, u32
*flags
)
135 * We're discouraging gpio_cells < 2, since that way you'll have to
136 * write your own xlate function (that will have to retrive the GPIO
137 * number and the flags from a single gpio cell -- this is possible,
138 * but not recommended).
140 if (gc
->of_gpio_n_cells
< 2) {
145 if (WARN_ON(gpiospec
->args_count
< gc
->of_gpio_n_cells
))
148 if (gpiospec
->args
[0] >= gc
->ngpio
)
152 *flags
= gpiospec
->args
[1];
154 return gpiospec
->args
[0];
156 EXPORT_SYMBOL(of_gpio_simple_xlate
);
159 * of_mm_gpiochip_add - Add memory mapped GPIO chip (bank)
160 * @np: device node of the GPIO chip
161 * @mm_gc: pointer to the of_mm_gpio_chip allocated structure
163 * To use this function you should allocate and fill mm_gc with:
165 * 1) In the gpio_chip structure:
166 * - all the callbacks
168 * - of_xlate callback (optional)
170 * 3) In the of_mm_gpio_chip structure:
171 * - save_regs callback (optional)
173 * If succeeded, this function will map bank's memory and will
174 * do all necessary work for you. Then you'll able to use .regs
175 * to manage GPIOs from the callbacks.
177 int of_mm_gpiochip_add(struct device_node
*np
,
178 struct of_mm_gpio_chip
*mm_gc
)
181 struct gpio_chip
*gc
= &mm_gc
->gc
;
183 gc
->label
= kstrdup(np
->full_name
, GFP_KERNEL
);
187 mm_gc
->regs
= of_iomap(np
, 0);
193 if (mm_gc
->save_regs
)
194 mm_gc
->save_regs(mm_gc
);
196 mm_gc
->gc
.of_node
= np
;
198 ret
= gpiochip_add(gc
);
204 iounmap(mm_gc
->regs
);
208 pr_err("%s: GPIO chip registration failed with status %d\n",
212 EXPORT_SYMBOL(of_mm_gpiochip_add
);
215 * of_mm_gpiochip_remove - Remove memory mapped GPIO chip (bank)
216 * @mm_gc: pointer to the of_mm_gpio_chip allocated structure
218 void of_mm_gpiochip_remove(struct of_mm_gpio_chip
*mm_gc
)
220 struct gpio_chip
*gc
= &mm_gc
->gc
;
226 iounmap(mm_gc
->regs
);
229 EXPORT_SYMBOL(of_mm_gpiochip_remove
);
231 #ifdef CONFIG_PINCTRL
232 static void of_gpiochip_add_pin_range(struct gpio_chip
*chip
)
234 struct device_node
*np
= chip
->of_node
;
235 struct of_phandle_args pinspec
;
236 struct pinctrl_dev
*pctldev
;
239 static const char group_names_propname
[] = "gpio-ranges-group-names";
240 struct property
*group_names
;
245 group_names
= of_find_property(np
, group_names_propname
, NULL
);
248 ret
= of_parse_phandle_with_fixed_args(np
, "gpio-ranges", 3,
253 pctldev
= of_pinctrl_get(pinspec
.np
);
257 if (pinspec
.args
[2]) {
259 ret
= of_property_read_string_index(np
,
260 group_names_propname
,
263 pr_err("%s: Group name of numeric GPIO ranges must be the empty string.\n",
268 /* npins != 0: linear range */
269 ret
= gpiochip_add_pin_range(chip
,
270 pinctrl_dev_get_devname(pctldev
),
277 /* npins == 0: special range */
278 if (pinspec
.args
[1]) {
279 pr_err("%s: Illegal gpio-range format.\n",
285 pr_err("%s: GPIO group range requested but no %s property.\n",
286 np
->full_name
, group_names_propname
);
290 ret
= of_property_read_string_index(np
,
291 group_names_propname
,
297 pr_err("%s: Group name of GPIO group range cannot be the empty string.\n",
302 ret
= gpiochip_add_pingroup_range(chip
, pctldev
,
303 pinspec
.args
[0], name
);
311 static void of_gpiochip_add_pin_range(struct gpio_chip
*chip
) {}
314 void of_gpiochip_add(struct gpio_chip
*chip
)
316 if ((!chip
->of_node
) && (chip
->dev
))
317 chip
->of_node
= chip
->dev
->of_node
;
322 if (!chip
->of_xlate
) {
323 chip
->of_gpio_n_cells
= 2;
324 chip
->of_xlate
= of_gpio_simple_xlate
;
327 of_gpiochip_add_pin_range(chip
);
328 of_node_get(chip
->of_node
);
331 void of_gpiochip_remove(struct gpio_chip
*chip
)
333 gpiochip_remove_pin_ranges(chip
);
334 of_node_put(chip
->of_node
);