blob: e96413b6390ffc391334ac71f4408e64cebe09b8 [file] [log] [blame]
Mike Frysingerc5530552010-06-02 04:34:49 -04001/*
2 * Control GPIO pins on the fly
3 *
4 * Copyright (c) 2008-2010 Analog Devices Inc.
5 *
6 * Licensed under the GPL-2 or later.
7 */
8
9#include <common.h>
10#include <command.h>
Mike Frysingercec11d52010-09-24 15:34:08 -040011#include <linux/ctype.h>
Mike Frysingerc5530552010-06-02 04:34:49 -040012
13#include <asm/blackfin.h>
14#include <asm/gpio.h>
15
16enum {
17 GPIO_INPUT,
18 GPIO_SET,
19 GPIO_CLEAR,
20 GPIO_TOGGLE,
21};
22
23int do_gpio(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
24{
25 if (argc == 2 && !strcmp(argv[1], "status")) {
26 bfin_gpio_labels();
27 return 0;
28 }
29
Mike Frysingerc8cf4fc2010-07-23 04:24:46 -040030 if (argc != 3)
Mike Frysingerc5530552010-06-02 04:34:49 -040031 show_usage:
Mike Frysingerc8cf4fc2010-07-23 04:24:46 -040032 return cmd_usage(cmdtp);
Mike Frysingerc5530552010-06-02 04:34:49 -040033
34 /* parse the behavior */
35 ulong sub_cmd;
36 switch (argv[1][0]) {
37 case 'i': sub_cmd = GPIO_INPUT; break;
38 case 's': sub_cmd = GPIO_SET; break;
39 case 'c': sub_cmd = GPIO_CLEAR; break;
40 case 't': sub_cmd = GPIO_TOGGLE; break;
41 default: goto show_usage;
42 }
43
44 /* parse the pin with format: [p][port]<#> */
45 const char *str_pin = argv[2];
46
47 /* grab the [p]<port> portion */
48 ulong port_base;
Mike Frysingercec11d52010-09-24 15:34:08 -040049 if (tolower(*str_pin) == 'p') ++str_pin;
50 switch (tolower(*str_pin)) {
Mike Frysingerc5530552010-06-02 04:34:49 -040051#ifdef GPIO_PA0
52 case 'a': port_base = GPIO_PA0; break;
53#endif
54#ifdef GPIO_PB0
55 case 'b': port_base = GPIO_PB0; break;
56#endif
57#ifdef GPIO_PC0
58 case 'c': port_base = GPIO_PC0; break;
59#endif
60#ifdef GPIO_PD0
61 case 'd': port_base = GPIO_PD0; break;
62#endif
63#ifdef GPIO_PE0
64 case 'e': port_base = GPIO_PE0; break;
65#endif
66#ifdef GPIO_PF0
67 case 'f': port_base = GPIO_PF0; break;
68#endif
69#ifdef GPIO_PG0
70 case 'g': port_base = GPIO_PG0; break;
71#endif
72#ifdef GPIO_PH0
73 case 'h': port_base = GPIO_PH0; break;
74#endif
75#ifdef GPIO_PI0
76 case 'i': port_base = GPIO_PI0; break;
77#endif
78#ifdef GPIO_PJ
79 case 'j': port_base = GPIO_PJ0; break;
80#endif
81 default: goto show_usage;
82 }
83
84 /* grab the <#> portion */
85 ulong pin = simple_strtoul(str_pin + 1, NULL, 10);
86 if (pin > 15)
87 goto show_usage;
88
89 /* grab the pin before we tweak it */
90 ulong gpio = port_base + pin;
91 gpio_request(gpio, "cmd_gpio");
92
93 /* finally, let's do it: set direction and exec command */
Mike Frysinger17296152010-08-13 15:48:09 -040094 ulong value;
Mike Frysingerc5530552010-06-02 04:34:49 -040095 if (sub_cmd == GPIO_INPUT) {
96 gpio_direction_input(gpio);
Mike Frysinger17296152010-08-13 15:48:09 -040097 value = gpio_get_value(gpio);
98 } else {
99 switch (sub_cmd) {
100 case GPIO_SET: value = 1; break;
101 case GPIO_CLEAR: value = 0; break;
102 case GPIO_TOGGLE: value = !gpio_get_value(gpio); break;
103 default: goto show_usage;
104 }
105 gpio_direction_output(gpio, value);
Mike Frysingerc5530552010-06-02 04:34:49 -0400106 }
Mike Frysingerc5530552010-06-02 04:34:49 -0400107 printf("gpio: pin %lu on port %c (gpio %lu) value is %lu\n",
108 pin, *str_pin, gpio, value);
109
110 gpio_free(gpio);
111
Mike Frysinger73b6f402010-09-20 13:46:29 -0400112 return value;
Mike Frysingerc5530552010-06-02 04:34:49 -0400113}
114
115U_BOOT_CMD(gpio, 3, 0, do_gpio,
Mike Frysinger17296152010-08-13 15:48:09 -0400116 "input/set/clear/toggle gpio output pins",
117 "<input|set|clear|toggle> <port><pin>\n"
118 " - input/set/clear/toggle the specified pin (e.g. PF10)");