-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgpioapi.c
187 lines (175 loc) · 3.84 KB
/
gpioapi.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
/**
*/
#include "gpioapi.h"
/**
* Reads the value of the specified pin.
*
* @return Less than 0 on error, otherwise the value of the GPIO pin.
*/
int readGPIO(gpio *node){
int fd, retval;
char value;
char file[MAX_LEN];
memset(file, '\0', MAX_LEN);
sprintf(file, GPIO_VALUE, node->pin);
if ((fd = open(file, O_RDONLY)) < 0){
retval = errno;
perror("open");
if (retval == ENOENT){
return EGPIONOINIT;
}
return ESYSCALLFAIL;
}
if (lseek(fd, 0, SEEK_SET) < 0){
perror("lseek");
return ESYSCALLFAIL;
}
if ((read(fd, &value, 1)) < 0){
perror("read");
return ESYSCALLFAIL;
}
close(fd);
return value;
}
/**
*/
int setGPIO(gpio *node, int direction, int value){
int fd, retval;
char file[MAX_LEN];
memset(file, '\0', MAX_LEN);
retval = 0;
sprintf(file, GPIO_DIRECTION, node->pin);
if ((fd = open(file, O_WRONLY)) < 0){
retval = errno;
perror("open");
if (retval == ENOENT){
return EGPIONOINIT;
}
return ESYSCALLFAIL;
}
if (lseek(fd, 0, SEEK_SET) < 0){
perror("lseek");
return ESYSCALLFAIL;
}
if (direction == IN){
if ((write(fd, "in", 2)) < 2){
perror("write1");
return ESYSCALLFAIL;
}
}
else if (direction == OUT){
if (value == 0){
if ((write(fd, "low", 3)) < 3){
perror("write2");
return ESYSCALLFAIL;
}
}
else if (value > 0){
if ((write(fd, "high", 4)) < 4){
perror("write3");
return ESYSCALLFAIL;
}
}
else {
return EINVALPARAM;
}
}
else{
return EINVALPARAM;
}
close(fd);
return retval;
}
/**
* Initializes the GPIO pin specified.
* If chip doesn't match any of the predefined values then pin is taken as
* an absolute pin number. This should only be called once.
*
* @param chip The device to reference pin from.
* @param pin The pin to initialize.
*
* @return 0 on success and anything else is an error.
*/
int initGPIO(int chip, int pin, gpio *node){
int retval, fd;
char pins[MAX_LEN];
memset(pins, '\0', MAX_LEN);
retval = 0;
switch(chip){
case PIO_A:
if (pin >= 32){
return EINVALPIN;
}
node->pin = PIO_A_BASE + pin;
break;
case PIO_B:
if (pin >= 32){
return EINVALPIN;
}
node->pin = PIO_B_BASE + pin;
break;
case PIO_C:
if (pin >= 32){
return EINVALPIN;
}
node->pin = PIO_C_BASE + pin;
break;
case EXPANDER:
if (pin >= 16){
return EINVALPIN;
}
node->pin = EXPANDER_BASE + pin;
break;
default:
node->pin = pin;
break;
}
fd = open(GPIO_EXPORT, O_WRONLY);
if (fd < 0){
perror("open");
return ESYSCALLFAIL;
}
if (lseek(fd, 0, SEEK_SET) < 0){
perror("lseek");
return ESYSCALLFAIL;
}
if (sprintf(pins, "%d", node->pin) < 0){
fprintf(stderr, "sprintf fail\n");
return ESYSCALLFAIL;
}
if(write(fd, pins, strlen(pins)) < strlen(pins)){
retval = errno;
perror("write");
if (retval == EBUSY){
return EGPIONA;
}
return ESYSCALLFAIL;
}
close(fd);
return retval;
}
/*
*/
int freeGPIO(gpio *node){
int fd;
char pins[MAX_LEN];
memset(pins, '\0', MAX_LEN);
fd = open(GPIO_UNEXPORT, O_WRONLY);
if (fd < 0){
perror("open");
return ESYSCALLFAIL;
}
if (lseek(fd, 0, SEEK_SET) < 0){
perror("lseek");
return ESYSCALLFAIL;
}
if (sprintf(pins, "%d", node->pin) < 0){
return ESYSCALLFAIL;
}
if (write(fd, pins, strlen(pins)) < strlen(pins)){
perror("write");
return ESYSCALLFAIL;
}
close(fd);
return 0;
}