forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
selftests: gpio: add a helper for reading GPIO line names
Add a simple program that allows to read GPIO line names from the character device. This will be used in gpio-sim selftests. Signed-off-by: Bartosz Golaszewski <[email protected]>
- Loading branch information
Showing
3 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
gpio-mockup-cdev | ||
gpio-chip-info | ||
gpio-line-name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
/* | ||
* GPIO character device helper for reading line names. | ||
* | ||
* Copyright (C) 2021 Bartosz Golaszewski <[email protected]> | ||
*/ | ||
|
||
#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; | ||
} |