blob: 54fdf59dd320def06f572e24eee826a770c0fa8b [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Linus Walleij2a144dd2016-04-26 10:47:09 +02002/*
3 * gpio-hammer - example swiss army knife to shake GPIO lines on a system
4 *
5 * Copyright (C) 2016 Linus Walleij
6 *
Linus Walleij2a144dd2016-04-26 10:47:09 +02007 * Usage:
8 * gpio-hammer -n <device-name> -o <offset1> -o <offset2>
9 */
10
11#include <unistd.h>
12#include <stdlib.h>
13#include <stdbool.h>
14#include <stdio.h>
15#include <dirent.h>
16#include <errno.h>
17#include <string.h>
18#include <poll.h>
19#include <fcntl.h>
20#include <getopt.h>
21#include <sys/ioctl.h>
22#include <linux/gpio.h>
Bamvor Jian Zhang74100bb2016-10-14 10:48:26 +080023#include "gpio-utils.h"
Linus Walleij2a144dd2016-04-26 10:47:09 +020024
Kent Gibsoned60aee2020-09-28 08:28:03 +080025int hammer_device(const char *device_name, unsigned int *lines, int num_lines,
Linus Walleij2a144dd2016-04-26 10:47:09 +020026 unsigned int loops)
27{
Kent Gibson7ff6d1d2020-09-28 08:28:04 +080028 struct gpio_v2_line_values values;
29 struct gpio_v2_line_config config;
Linus Walleij2a144dd2016-04-26 10:47:09 +020030 char swirr[] = "-\\|/";
31 int fd;
32 int ret;
33 int i, j;
34 unsigned int iteration = 0;
35
Kent Gibson7ff6d1d2020-09-28 08:28:04 +080036 memset(&config, 0, sizeof(config));
37 config.flags = GPIO_V2_LINE_FLAG_OUTPUT;
38
39 ret = gpiotools_request_line(device_name, lines, num_lines,
40 &config, "gpio-hammer");
Linus Walleij2a144dd2016-04-26 10:47:09 +020041 if (ret < 0)
Bamvor Jian Zhang74100bb2016-10-14 10:48:26 +080042 goto exit_error;
43 else
44 fd = ret;
Linus Walleij2a144dd2016-04-26 10:47:09 +020045
Kent Gibson7ff6d1d2020-09-28 08:28:04 +080046 values.mask = 0;
47 values.bits = 0;
48 for (i = 0; i < num_lines; i++)
49 gpiotools_set_bit(&values.mask, i);
50
51 ret = gpiotools_get_values(fd, &values);
Bamvor Jian Zhang74100bb2016-10-14 10:48:26 +080052 if (ret < 0)
Linus Walleij2a144dd2016-04-26 10:47:09 +020053 goto exit_close_error;
Linus Walleij2a144dd2016-04-26 10:47:09 +020054
Linus Walleij2a144dd2016-04-26 10:47:09 +020055 fprintf(stdout, "Hammer lines [");
Kent Gibsoned60aee2020-09-28 08:28:03 +080056 for (i = 0; i < num_lines; i++) {
Linus Walleij2a144dd2016-04-26 10:47:09 +020057 fprintf(stdout, "%d", lines[i]);
Kent Gibsoned60aee2020-09-28 08:28:03 +080058 if (i != (num_lines - 1))
Linus Walleij2a144dd2016-04-26 10:47:09 +020059 fprintf(stdout, ", ");
60 }
61 fprintf(stdout, "] on %s, initial states: [", device_name);
Kent Gibsoned60aee2020-09-28 08:28:03 +080062 for (i = 0; i < num_lines; i++) {
Kent Gibson7ff6d1d2020-09-28 08:28:04 +080063 fprintf(stdout, "%d", gpiotools_test_bit(values.bits, i));
Kent Gibsoned60aee2020-09-28 08:28:03 +080064 if (i != (num_lines - 1))
Linus Walleij2a144dd2016-04-26 10:47:09 +020065 fprintf(stdout, ", ");
66 }
67 fprintf(stdout, "]\n");
68
69 /* Hammertime! */
70 j = 0;
71 while (1) {
72 /* Invert all lines so we blink */
Kent Gibsoned60aee2020-09-28 08:28:03 +080073 for (i = 0; i < num_lines; i++)
Kent Gibson7ff6d1d2020-09-28 08:28:04 +080074 gpiotools_change_bit(&values.bits, i);
Linus Walleij2a144dd2016-04-26 10:47:09 +020075
Kent Gibson7ff6d1d2020-09-28 08:28:04 +080076 ret = gpiotools_set_values(fd, &values);
Bamvor Jian Zhang74100bb2016-10-14 10:48:26 +080077 if (ret < 0)
Linus Walleij2a144dd2016-04-26 10:47:09 +020078 goto exit_close_error;
Bamvor Jian Zhang74100bb2016-10-14 10:48:26 +080079
Linus Walleij2a144dd2016-04-26 10:47:09 +020080 /* Re-read values to get status */
Kent Gibson7ff6d1d2020-09-28 08:28:04 +080081 ret = gpiotools_get_values(fd, &values);
Bamvor Jian Zhang74100bb2016-10-14 10:48:26 +080082 if (ret < 0)
Linus Walleij2a144dd2016-04-26 10:47:09 +020083 goto exit_close_error;
Linus Walleij2a144dd2016-04-26 10:47:09 +020084
85 fprintf(stdout, "[%c] ", swirr[j]);
86 j++;
Gabriel Ravier1003bc12020-03-16 20:50:48 +010087 if (j == sizeof(swirr) - 1)
Linus Walleij2a144dd2016-04-26 10:47:09 +020088 j = 0;
89
90 fprintf(stdout, "[");
Kent Gibsoned60aee2020-09-28 08:28:03 +080091 for (i = 0; i < num_lines; i++) {
Kent Gibson7ff6d1d2020-09-28 08:28:04 +080092 fprintf(stdout, "%d: %d", lines[i],
93 gpiotools_test_bit(values.bits, i));
Kent Gibsoned60aee2020-09-28 08:28:03 +080094 if (i != (num_lines - 1))
Linus Walleij2a144dd2016-04-26 10:47:09 +020095 fprintf(stdout, ", ");
96 }
97 fprintf(stdout, "]\r");
98 fflush(stdout);
99 sleep(1);
100 iteration++;
101 if (loops && iteration == loops)
102 break;
103 }
104 fprintf(stdout, "\n");
105 ret = 0;
106
107exit_close_error:
Kent Gibson7ff6d1d2020-09-28 08:28:04 +0800108 gpiotools_release_line(fd);
Bamvor Jian Zhang74100bb2016-10-14 10:48:26 +0800109exit_error:
Linus Walleij2a144dd2016-04-26 10:47:09 +0200110 return ret;
111}
112
113void print_usage(void)
114{
115 fprintf(stderr, "Usage: gpio-hammer [options]...\n"
116 "Hammer GPIO lines, 0->1->0->1...\n"
117 " -n <name> Hammer GPIOs on a named device (must be stated)\n"
118 " -o <n> Offset[s] to hammer, at least one, several can be stated\n"
119 " [-c <n>] Do <n> loops (optional, infinite loop if not stated)\n"
120 " -? This helptext\n"
121 "\n"
122 "Example:\n"
123 "gpio-hammer -n gpiochip0 -o 4\n"
124 );
125}
126
127int main(int argc, char **argv)
128{
129 const char *device_name = NULL;
130 unsigned int lines[GPIOHANDLES_MAX];
131 unsigned int loops = 0;
Kent Gibsoned60aee2020-09-28 08:28:03 +0800132 int num_lines;
Linus Walleij2a144dd2016-04-26 10:47:09 +0200133 int c;
134 int i;
135
136 i = 0;
137 while ((c = getopt(argc, argv, "c:n:o:?")) != -1) {
138 switch (c) {
139 case 'c':
140 loops = strtoul(optarg, NULL, 10);
141 break;
142 case 'n':
143 device_name = optarg;
144 break;
145 case 'o':
Gabriel Ravierd1ee7e12020-03-12 15:50:21 +0100146 /*
147 * Avoid overflow. Do not immediately error, we want to
148 * be able to accurately report on the amount of times
149 * '-o' was given to give an accurate error message
150 */
151 if (i < GPIOHANDLES_MAX)
152 lines[i] = strtoul(optarg, NULL, 10);
153
Linus Walleij2a144dd2016-04-26 10:47:09 +0200154 i++;
155 break;
156 case '?':
157 print_usage();
158 return -1;
159 }
160 }
Gabriel Ravierd1ee7e12020-03-12 15:50:21 +0100161
162 if (i >= GPIOHANDLES_MAX) {
163 fprintf(stderr,
Colin Ian King55f17e22020-03-16 09:23:40 +0000164 "Only %d occurrences of '-o' are allowed, %d were found\n",
Gabriel Ravierd1ee7e12020-03-12 15:50:21 +0100165 GPIOHANDLES_MAX, i + 1);
166 return -1;
167 }
168
Kent Gibsoned60aee2020-09-28 08:28:03 +0800169 num_lines = i;
Linus Walleij2a144dd2016-04-26 10:47:09 +0200170
Kent Gibsoned60aee2020-09-28 08:28:03 +0800171 if (!device_name || !num_lines) {
Linus Walleij2a144dd2016-04-26 10:47:09 +0200172 print_usage();
173 return -1;
174 }
Kent Gibsoned60aee2020-09-28 08:28:03 +0800175 return hammer_device(device_name, lines, num_lines, loops);
Linus Walleij2a144dd2016-04-26 10:47:09 +0200176}