]> Git Repo - J-u-boot.git/blame - cmd/gpio.c
Merge patch series "Enable OSPI on j721e"
[J-u-boot.git] / cmd / gpio.c
CommitLineData
a972b8d7
MF
1/*
2 * Control GPIO pins on the fly
3 *
4 * Copyright (c) 2008-2011 Analog Devices Inc.
5 *
6 * Licensed under the GPL-2 or later.
7 */
8
9#include <common.h>
10#include <command.h>
9165e842 11#include <errno.h>
95a260a9 12#include <dm.h>
f7ae49fc 13#include <log.h>
336d4615 14#include <malloc.h>
dd2b8c11
DR
15#ifdef CONFIG_CMD_GPIO_READ
16#include <env.h>
17#endif
a972b8d7 18#include <asm/gpio.h>
61b29b82 19#include <linux/err.h>
ee0522f5 20#include <dm/device_compat.h>
a972b8d7 21
5b5ac645 22__weak int name_to_gpio(const char *name)
fd11bea2 23{
0b1284eb 24 return dectoul(name, NULL);
fd11bea2 25}
a972b8d7
MF
26
27enum gpio_cmd {
66f657d1
SG
28 GPIOC_INPUT,
29 GPIOC_SET,
30 GPIOC_CLEAR,
31 GPIOC_TOGGLE,
dd2b8c11
DR
32#ifdef CONFIG_CMD_GPIO_READ
33 GPIOC_READ,
34#endif
a972b8d7
MF
35};
36
95a260a9 37#if defined(CONFIG_DM_GPIO) && !defined(gpio_status)
95a260a9 38
89e64054
SG
39/* A few flags used by show_gpio() */
40enum {
41 FLAG_SHOW_ALL = 1 << 0,
42 FLAG_SHOW_BANK = 1 << 1,
43 FLAG_SHOW_NEWLINE = 1 << 2,
44};
45
0757535a 46static void gpio_get_description(struct udevice *dev, const char *bank_name,
b8989b53 47 int offset, int *flagsp, bool show_all)
95a260a9 48{
95a260a9
SG
49 char buf[80];
50 int ret;
51
0757535a
SG
52 ret = gpio_get_function(dev, offset, NULL);
53 if (ret < 0)
54 goto err;
b8989b53 55 if (!show_all && !(*flagsp & FLAG_SHOW_ALL) && ret == GPIOF_UNUSED)
89e64054
SG
56 return;
57 if ((*flagsp & FLAG_SHOW_BANK) && bank_name) {
58 if (*flagsp & FLAG_SHOW_NEWLINE) {
59 putc('\n');
60 *flagsp &= ~FLAG_SHOW_NEWLINE;
61 }
62 printf("Bank %s:\n", bank_name);
63 *flagsp &= ~FLAG_SHOW_BANK;
64 }
95a260a9 65
0757535a
SG
66 ret = gpio_get_status(dev, offset, buf, sizeof(buf));
67 if (ret)
68 goto err;
69
70 printf("%s\n", buf);
71 return;
72err:
ee0522f5
PB
73 if (ret != -ENOENT)
74 printf("Error %d\n", ret);
95a260a9
SG
75}
76
89e64054 77static int do_gpio_status(bool all, const char *gpio_name)
95a260a9 78{
54c5d08a 79 struct udevice *dev;
89e64054
SG
80 int banklen;
81 int flags;
8676ae36 82 int ret, err = 0;
95a260a9 83
89e64054 84 flags = 0;
95a260a9
SG
85 if (gpio_name && !*gpio_name)
86 gpio_name = NULL;
8676ae36 87 for (ret = uclass_first_device_check(UCLASS_GPIO, &dev);
95a260a9 88 dev;
8676ae36 89 ret = uclass_next_device_check(&dev)) {
95a260a9
SG
90 const char *bank_name;
91 int num_bits;
92
8676ae36
MS
93 if (ret) {
94 printf("GPIO device %s probe error %i\n",
95 dev->name, ret);
96 err = ret;
97 continue;
98 }
99
89e64054
SG
100 flags |= FLAG_SHOW_BANK;
101 if (all)
102 flags |= FLAG_SHOW_ALL;
95a260a9 103 bank_name = gpio_get_bank_info(dev, &num_bits);
0757535a
SG
104 if (!num_bits) {
105 debug("GPIO device %s has no bits\n", dev->name);
89e64054 106 continue;
0757535a 107 }
89e64054 108 banklen = bank_name ? strlen(bank_name) : 0;
95a260a9
SG
109
110 if (!gpio_name || !bank_name ||
48ca6909 111 !strncasecmp(gpio_name, bank_name, banklen)) {
e946b5d2 112 const char *p;
95a260a9
SG
113 int offset;
114
89e64054
SG
115 p = gpio_name + banklen;
116 if (gpio_name && *p) {
0b1284eb 117 offset = dectoul(p, NULL);
0757535a 118 gpio_get_description(dev, bank_name, offset,
b8989b53 119 &flags, true);
95a260a9 120 } else {
89e64054 121 for (offset = 0; offset < num_bits; offset++) {
0757535a 122 gpio_get_description(dev, bank_name,
b8989b53 123 offset, &flags, false);
89e64054 124 }
95a260a9
SG
125 }
126 }
89e64054
SG
127 /* Add a newline between bank names */
128 if (!(flags & FLAG_SHOW_BANK))
129 flags |= FLAG_SHOW_NEWLINE;
95a260a9
SG
130 }
131
8676ae36 132 return err;
95a260a9
SG
133}
134#endif
135
09140113
SG
136static int do_gpio(struct cmd_tbl *cmdtp, int flag, int argc,
137 char *const argv[])
a972b8d7 138{
95a260a9 139 unsigned int gpio;
a972b8d7 140 enum gpio_cmd sub_cmd;
b71bea71 141 int value;
95a260a9 142 const char *str_cmd, *str_gpio = NULL;
dd2b8c11
DR
143#ifdef CONFIG_CMD_GPIO_READ
144 const char *str_var = NULL;
145#endif
9165e842 146 int ret;
95a260a9 147#ifdef CONFIG_DM_GPIO
89e64054 148 bool all = false;
95a260a9 149#endif
a972b8d7 150
95a260a9
SG
151 if (argc < 2)
152 show_usage:
153 return CMD_RET_USAGE;
154 str_cmd = argv[1];
89e64054
SG
155 argc -= 2;
156 argv += 2;
157#ifdef CONFIG_DM_GPIO
dd2b8c11 158 if (argc > 0 && !strncmp(str_cmd, "status", 2) && !strcmp(*argv, "-a")) {
89e64054
SG
159 all = true;
160 argc--;
161 argv++;
162 }
dd2b8c11
DR
163#endif
164#ifdef CONFIG_CMD_GPIO_READ
165 if (argc > 0 && !strncmp(str_cmd, "read", 2)) {
166 if (argc < 2)
167 goto show_usage;
168 str_var = *argv;
169 argc--;
170 argv++;
171 }
89e64054
SG
172#endif
173 if (argc > 0)
174 str_gpio = *argv;
4c80c53c 175 if (!strncmp(str_cmd, "status", 2)) {
95a260a9 176 /* Support deprecated gpio_status() */
a972b8d7 177#ifdef gpio_status
a972b8d7
MF
178 gpio_status();
179 return 0;
95a260a9 180#elif defined(CONFIG_DM_GPIO)
89e64054 181 return cmd_process_error(cmdtp, do_gpio_status(all, str_gpio));
95a260a9
SG
182#else
183 goto show_usage;
a972b8d7 184#endif
95a260a9 185 }
a972b8d7 186
95a260a9
SG
187 if (!str_gpio)
188 goto show_usage;
a972b8d7
MF
189
190 /* parse the behavior */
191 switch (*str_cmd) {
66f657d1
SG
192 case 'i':
193 sub_cmd = GPIOC_INPUT;
194 break;
195 case 's':
196 sub_cmd = GPIOC_SET;
197 break;
198 case 'c':
199 sub_cmd = GPIOC_CLEAR;
200 break;
201 case 't':
202 sub_cmd = GPIOC_TOGGLE;
203 break;
dd2b8c11
DR
204#ifdef CONFIG_CMD_GPIO_READ
205 case 'r':
206 sub_cmd = GPIOC_READ;
207 break;
208#endif
66f657d1
SG
209 default:
210 goto show_usage;
a972b8d7
MF
211 }
212
95a260a9
SG
213#if defined(CONFIG_DM_GPIO)
214 /*
215 * TODO([email protected]): For now we must fit into the existing GPIO
216 * framework, so we look up the name here and convert it to a GPIO number.
217 * Once all GPIO drivers are converted to driver model, we can change the
218 * code here to use the GPIO uclass interface instead of the numbered
219 * GPIO compatibility layer.
220 */
221 ret = gpio_lookup_name(str_gpio, NULL, NULL, &gpio);
66280e82
SG
222 if (ret) {
223 printf("GPIO: '%s' not found\n", str_gpio);
95a260a9 224 return cmd_process_error(cmdtp, ret);
66280e82 225 }
95a260a9 226#else
a972b8d7
MF
227 /* turn the gpio name into a gpio number */
228 gpio = name_to_gpio(str_gpio);
229 if (gpio < 0)
230 goto show_usage;
95a260a9 231#endif
a972b8d7 232 /* grab the pin before we tweak it */
9165e842
SG
233 ret = gpio_request(gpio, "cmd_gpio");
234 if (ret && ret != -EBUSY) {
6801201e
MF
235 printf("gpio: requesting pin %u failed\n", gpio);
236 return -1;
237 }
a972b8d7
MF
238
239 /* finally, let's do it: set direction and exec command */
dd2b8c11
DR
240 if (sub_cmd == GPIOC_INPUT
241#ifdef CONFIG_CMD_GPIO_READ
242 || sub_cmd == GPIOC_READ
243#endif
244 ) {
a972b8d7
MF
245 gpio_direction_input(gpio);
246 value = gpio_get_value(gpio);
247 } else {
248 switch (sub_cmd) {
66f657d1 249 case GPIOC_SET:
b71bea71
SG
250 value = 1;
251 break;
66f657d1 252 case GPIOC_CLEAR:
b71bea71
SG
253 value = 0;
254 break;
66f657d1 255 case GPIOC_TOGGLE:
b71bea71
SG
256 value = gpio_get_value(gpio);
257 if (!IS_ERR_VALUE(value))
258 value = !value;
259 break;
260 default:
261 goto show_usage;
a972b8d7
MF
262 }
263 gpio_direction_output(gpio, value);
264 }
b1970013 265 printf("gpio: pin %s (gpio %u) value is ", str_gpio, gpio);
4dbc107f
LK
266
267 if (IS_ERR_VALUE(value)) {
b71bea71 268 printf("unknown (ret=%d)\n", value);
4dbc107f
LK
269 goto err;
270 } else {
b71bea71 271 printf("%d\n", value);
dd2b8c11
DR
272#ifdef CONFIG_CMD_GPIO_READ
273 if (sub_cmd == GPIOC_READ)
274 env_set_ulong(str_var, (ulong)value);
275#endif
4dbc107f
LK
276 }
277
dd2b8c11
DR
278 if (sub_cmd != GPIOC_INPUT && !IS_ERR_VALUE(value)
279#ifdef CONFIG_CMD_GPIO_READ
280 && sub_cmd != GPIOC_READ
281#endif
282 ) {
b71bea71
SG
283 int nval = gpio_get_value(gpio);
284
4dbc107f 285 if (IS_ERR_VALUE(nval)) {
b71bea71 286 printf(" Warning: no access to GPIO output value\n");
4dbc107f
LK
287 goto err;
288 } else if (nval != value) {
b71bea71 289 printf(" Warning: value of pin is still %d\n", nval);
4dbc107f
LK
290 goto err;
291 }
b71bea71 292 }
a972b8d7 293
9165e842
SG
294 if (ret != -EBUSY)
295 gpio_free(gpio);
a972b8d7 296
4af2a33e
AK
297 /*
298 * Whilst wrong, the legacy gpio input command returns the pin
299 * value, or CMD_RET_FAILURE (which is indistinguishable from a
300 * valid pin value).
301 */
302 return (sub_cmd == GPIOC_INPUT) ? value : CMD_RET_SUCCESS;
4dbc107f
LK
303
304err:
305 if (ret != -EBUSY)
306 gpio_free(gpio);
307 return CMD_RET_FAILURE;
a972b8d7
MF
308}
309
89e64054
SG
310U_BOOT_CMD(gpio, 4, 0, do_gpio,
311 "query and control gpio pins",
312 "<input|set|clear|toggle> <pin>\n"
313 " - input/set/clear/toggle the specified pin\n"
dd2b8c11
DR
314#ifdef CONFIG_CMD_GPIO_READ
315 "gpio read <name> <pin>\n"
316 " - set environment variable 'name' to the specified pin\n"
317#endif
89e64054 318 "gpio status [-a] [<bank> | <pin>] - show [all/claimed] GPIOs");
This page took 0.510475 seconds and 4 git commands to generate.