aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/gpio/gpio-line-name.c
blob: e635cfadbded376067f11b2b50a39ad1c69e4e37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * GPIO character device helper for reading line names.
 *
 * Copyright (C) 2021 Bartosz Golaszewski <brgl@bgdev.pl>
 */

#include <fcntl.h>
#include <linux/gpio.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/types.h>

static void print_usage(void)
{
	printf("usage:\n");
	printf("  gpio-line-name <chip path> <line offset>\n");
}

int main(int argc, char **argv)
{
	struct gpio_v2_line_info info;
	int fd, ret;
	char *endp;

	if (argc != 3) {
		print_usage();
		return EXIT_FAILURE;
	}

	fd = open(argv[1], O_RDWR);
	if (fd < 0) {
		perror("unable to open the GPIO chip");
		return EXIT_FAILURE;
	}

	memset(&info, 0, sizeof(info));
	info.offset = strtoul(argv[2], &endp, 10);
	if (*endp != '\0') {
		print_usage();
		return EXIT_FAILURE;
	}

	ret = ioctl(fd, GPIO_V2_GET_LINEINFO_IOCTL, &info);
	if (ret) {
		perror("line info ioctl failed");
		return EXIT_FAILURE;
	}

	printf("%s\n", info.name);

	return EXIT_SUCCESS;
}