-
Notifications
You must be signed in to change notification settings - Fork 4
/
gpio.c
193 lines (170 loc) · 4.95 KB
/
gpio.c
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/*
* Copyright (C) 2021-2022 Skycharge GmbH
* Author: Roman Penyaev <[email protected]>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met: 1. Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
*
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/file.h>
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include "gpio.h"
int gpio_lock(void)
{
int rc, lockfd;
lockfd = open("/sys/class/gpio/export", O_WRONLY);
if (lockfd < 0)
return -errno;
rc = flock(lockfd, LOCK_EX);
if (rc) {
rc = -errno;
close(lockfd);
return rc;
}
return lockfd;
}
void gpio_unlock(int lockfd)
{
(void)flock(lockfd, LOCK_UN);
close(lockfd);
}
int gpio_configure(const char *gpio, int dir)
{
const char *cmd = "config-pin %s %s >/dev/null 2>&1";
char cmd_buf[64];
int rc;
snprintf(cmd_buf, sizeof(cmd_buf), cmd, gpio,
dir == GPIO_DIR_IN ? "in" : "out");
rc = system(cmd_buf);
if (rc < 0) {
rc = errno;
sky_err("%s: failed to created child process: %s\n",
__func__, strerror(errno));
return -rc;
} else if (WIFEXITED(rc)) {
rc = WEXITSTATUS(rc);
if (rc)
sky_err("%s: cmd \"%s\" failed with: %d\n",
__func__, cmd_buf, rc);
return rc;
} else if (WIFSIGNALED(rc)) {
sky_err("%s: cmd \"%s\" signaled\n", __func__, cmd);
/* What we can do? */
return -EINVAL;
}
sky_err("%s: unreachable line\n", __func__);
/* What we can do? */
return -EINVAL;
}
int gpio_read(const char *pin)
{
char cmd_buf[256], buf[3];
FILE *f;
int rc;
/* Convert GPIO name to kernel GPIO number and return value */
const char *cmd =
"GPIO=`cat /sys/kernel/debug/gpio | "
" grep -oP '(?<=gpio-)\\d+(?=.*%s)'`; "
" if [ $GPIO ]; then cat /sys/class/gpio/gpio$GPIO/value; fi";
snprintf(cmd_buf, sizeof(cmd_buf), cmd, pin);
f = popen(cmd_buf, "re");
if (!f) {
rc = errno;
sky_err("%s: popen failed: %s\n", __func__, strerror(errno));
return -rc;
}
rc = fread(buf, sizeof(buf), 1, f);
if (rc < 0) {
rc = errno;
sky_err("%s: fread failed: %s\n", __func__, strerror(errno));
return -rc;
}
rc = pclose(f);
if (rc < 0) {
rc = errno;
sky_err("%s: failed pclose: %s\n", __func__, strerror(errno));
return -rc;
}
else if (WIFEXITED(rc)) {
rc = WEXITSTATUS(rc);
if (rc) {
sky_err("%s: cmd %s failed with: %d\n",
__func__, cmd_buf, rc);
return rc;
}
return buf[0] == '1' ? 1 : 0;
} else if (WIFSIGNALED(rc)) {
sky_err("%s: cmd %s signaled\n", __func__, cmd);
/* What we can do? */
return -EINVAL;
} else if (WIFSTOPPED(rc)) {
sky_err("%s: cmd %s stopped\n", __func__, cmd);
/* What we can do? */
return -EINVAL;
}
sky_err("%s: unreachable line\n", __func__);
/* What we can do? */
return -EINVAL;
}
int gpio_write(const char *pin, bool value)
{
char cmd_buf[256];
int rc;
/* Convert GPIO name to kernel GPIO number and write value */
const char *cmd =
"GPIO=`cat /sys/kernel/debug/gpio | "
" grep -oP '(?<=gpio-)\\d+(?=.*%s)'`; "
" if [ $GPIO ]; then echo %s > /sys/class/gpio/gpio$GPIO/value; fi";
snprintf(cmd_buf, sizeof(cmd_buf), cmd, pin, value ? "1" : "0");
rc = system(cmd_buf);
if (rc < 0) {
rc = errno;
sky_err("%s: failed to created child process: %s\n",
__func__, strerror(errno));
return -rc;
} else if (WIFEXITED(rc)) {
rc = WEXITSTATUS(rc);
if (rc)
sky_err("%s: cmd \"%s\" failed with: %d\n",
__func__, cmd, rc);
return rc;
} else if (WIFSIGNALED(rc)) {
sky_err("%s: cmd \"%s\" signaled\n", __func__, cmd);
/* What we can do? */
return -EINVAL;
}
sky_err("%s: unreachable line\n", __func__);
/* What we can do? */
return -EINVAL;
}