lantiq: Fix flash for targets with NO_XIP
[openwrt/svn-archive/archive.git] / target / linux / lantiq / patches-3.14 / 0030-GPIO-add-named-gpio-exports.patch
1 From cc809a441d8f2924f785eb863dfa6aef47a25b0b Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Tue, 12 Aug 2014 20:49:27 +0200
4 Subject: [PATCH 30/36] GPIO: add named gpio exports
5
6 Signed-off-by: John Crispin <blogic@openwrt.org>
7 ---
8 drivers/gpio/gpiolib-of.c | 68 +++++++++++++++++++++++++++++++++++++++++
9 drivers/gpio/gpiolib.c | 11 +++++--
10 include/asm-generic/gpio.h | 5 +++
11 include/linux/gpio/consumer.h | 8 +++++
12 4 files changed, 90 insertions(+), 2 deletions(-)
13
14 --- a/drivers/gpio/gpiolib-of.c
15 +++ b/drivers/gpio/gpiolib-of.c
16 @@ -21,6 +21,8 @@
17 #include <linux/of_gpio.h>
18 #include <linux/pinctrl/pinctrl.h>
19 #include <linux/slab.h>
20 +#include <linux/init.h>
21 +#include <linux/platform_device.h>
22
23 struct gpio_desc;
24
25 @@ -302,3 +304,69 @@ void of_gpiochip_remove(struct gpio_chip
26 if (chip->of_node)
27 of_node_put(chip->of_node);
28 }
29 +
30 +static struct of_device_id gpio_export_ids[] = {
31 + { .compatible = "gpio-export" },
32 + { /* sentinel */ }
33 +};
34 +
35 +static int __init of_gpio_export_probe(struct platform_device *pdev)
36 +{
37 + struct device_node *np = pdev->dev.of_node;
38 + struct device_node *cnp;
39 + u32 val;
40 + int nb = 0;
41 +
42 + for_each_child_of_node(np, cnp) {
43 + const char *name = NULL;
44 + int gpio;
45 + bool dmc;
46 + int max_gpio = 1;
47 + int i;
48 +
49 + of_property_read_string(cnp, "gpio-export,name", &name);
50 +
51 + if (!name)
52 + max_gpio = of_gpio_count(cnp);
53 +
54 + for (i = 0; i < max_gpio; i++) {
55 + unsigned flags = 0;
56 + enum of_gpio_flags of_flags;
57 +
58 + gpio = of_get_gpio_flags(cnp, i, &of_flags);
59 +
60 + if (of_flags == OF_GPIO_ACTIVE_LOW)
61 + flags |= GPIOF_ACTIVE_LOW;
62 +
63 + if (!of_property_read_u32(cnp, "gpio-export,output", &val))
64 + flags |= val ? GPIOF_OUT_INIT_HIGH : GPIOF_OUT_INIT_LOW;
65 + else
66 + flags |= GPIOF_IN;
67 +
68 + if (devm_gpio_request_one(&pdev->dev, gpio, flags, name ? name : of_node_full_name(np)))
69 + continue;
70 +
71 + dmc = of_property_read_bool(cnp, "gpio-export,direction_may_change");
72 + gpio_export_with_name(gpio, dmc, name);
73 + nb++;
74 + }
75 + }
76 +
77 + dev_info(&pdev->dev, "%d gpio(s) exported\n", nb);
78 +
79 + return 0;
80 +}
81 +
82 +static struct platform_driver gpio_export_driver = {
83 + .driver = {
84 + .name = "gpio-export",
85 + .owner = THIS_MODULE,
86 + .of_match_table = of_match_ptr(gpio_export_ids),
87 + },
88 +};
89 +
90 +static int __init of_gpio_export_init(void)
91 +{
92 + return platform_driver_probe(&gpio_export_driver, of_gpio_export_probe);
93 +}
94 +device_initcall(of_gpio_export_init);
95 --- a/drivers/gpio/gpiolib.c
96 +++ b/drivers/gpio/gpiolib.c
97 @@ -798,7 +798,7 @@ static struct class gpio_class = {
98 *
99 * Returns zero on success, else an error.
100 */
101 -int gpiod_export(struct gpio_desc *desc, bool direction_may_change)
102 +int _gpiod_export(struct gpio_desc *desc, bool direction_may_change, const char *name)
103 {
104 unsigned long flags;
105 int status;
106 @@ -839,6 +839,9 @@ int gpiod_export(struct gpio_desc *desc,
107 if (desc->chip->names && desc->chip->names[offset])
108 ioname = desc->chip->names[offset];
109
110 + if (name)
111 + ioname = name;
112 +
113 dev = device_create_with_groups(&gpio_class, desc->chip->dev,
114 MKDEV(0, 0), desc, gpio_groups,
115 ioname ? ioname : "gpio%u",
116 @@ -874,6 +877,12 @@ fail_unlock:
117 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
118 return status;
119 }
120 +EXPORT_SYMBOL_GPL(_gpiod_export);
121 +
122 +int gpiod_export(struct gpio_desc *desc, bool direction_may_change)
123 +{
124 + return _gpiod_export(desc, direction_may_change, NULL);
125 +}
126 EXPORT_SYMBOL_GPL(gpiod_export);
127
128 static int match_export(struct device *dev, const void *data)
129 --- a/include/asm-generic/gpio.h
130 +++ b/include/asm-generic/gpio.h
131 @@ -126,6 +126,11 @@ static inline int gpio_export(unsigned g
132 return gpiod_export(gpio_to_desc(gpio), direction_may_change);
133 }
134
135 +static inline int gpio_export_with_name(unsigned gpio, bool direction_may_change, const char *name)
136 +{
137 + return _gpiod_export(gpio_to_desc(gpio), direction_may_change, name);
138 +}
139 +
140 static inline int gpio_export_link(struct device *dev, const char *name,
141 unsigned gpio)
142 {
143 --- a/include/linux/gpio/consumer.h
144 +++ b/include/linux/gpio/consumer.h
145 @@ -219,6 +219,7 @@ static inline struct gpio_chip *gpiod_to
146
147 #if IS_ENABLED(CONFIG_GPIOLIB) && IS_ENABLED(CONFIG_GPIO_SYSFS)
148
149 +int _gpiod_export(struct gpio_desc *desc, bool direction_may_change, const char *name);
150 int gpiod_export(struct gpio_desc *desc, bool direction_may_change);
151 int gpiod_export_link(struct device *dev, const char *name,
152 struct gpio_desc *desc);
153 @@ -227,6 +228,13 @@ void gpiod_unexport(struct gpio_desc *de
154
155 #else /* CONFIG_GPIOLIB && CONFIG_GPIO_SYSFS */
156
157 +static inline int _gpiod_export(struct gpio_desc *desc,
158 + bool direction_may_change,
159 + const char *name)
160 +{
161 + return -ENOSYS;
162 +}
163 +
164 static inline int gpiod_export(struct gpio_desc *desc,
165 bool direction_may_change)
166 {